diff -Nru libreoffice-7.3.4/avmedia/source/viewer/mediawindow.cxx libreoffice-7.3.5/avmedia/source/viewer/mediawindow.cxx --- libreoffice-7.3.4/avmedia/source/viewer/mediawindow.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/avmedia/source/viewer/mediawindow.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -352,10 +352,10 @@ return priv::MediaWindowImpl::createPlayer( rURL, rReferer, pMimeType ); } - uno::Reference< graphic::XGraphic > MediaWindow::grabFrame( const OUString& rURL, const OUString& rReferer, - const OUString& sMimeType ) + const OUString& sMimeType, + const uno::Reference& rGraphic) { uno::Reference< media::XPlayer > xPlayer( createPlayer( rURL, rReferer, &sMimeType ) ); uno::Reference< graphic::XGraphic > xRet; @@ -394,7 +394,11 @@ } if (xGraphic) + { + if (rGraphic) + xGraphic.reset(new Graphic(rGraphic)); xRet = xGraphic->GetXGraphic(); + } return xRet; } diff -Nru libreoffice-7.3.4/basctl/source/basicide/iderdll.cxx libreoffice-7.3.5/basctl/source/basicide/iderdll.cxx --- libreoffice-7.3.4/basctl/source/basicide/iderdll.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/basctl/source/basicide/iderdll.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -145,6 +145,7 @@ ExtraData::ExtraData () : + m_aLastEntryDesc(EntryDescriptor()), bChoosingMacro(false), bShellInCriticalSection(false) { diff -Nru libreoffice-7.3.4/basctl/source/basicide/macrodlg.cxx libreoffice-7.3.5/basctl/source/basicide/macrodlg.cxx --- libreoffice-7.3.4/basctl/source/basicide/macrodlg.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/basctl/source/basicide/macrodlg.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -153,6 +153,13 @@ aDesc = pData->GetLastEntryDescriptor(); } + // No valid EntryDescriptor found + if (aDesc.GetMethodName().isEmpty()) + { + m_xMacroNameEdit->select_region(0, 0); + return; + } + m_xBasicBox->SetCurrentEntry(aDesc); BasicSelectHdl(m_xBasicBox->get_widget()); diff -Nru libreoffice-7.3.4/basic/qa/cppunit/test_compiler_checks.cxx libreoffice-7.3.5/basic/qa/cppunit/test_compiler_checks.cxx --- libreoffice-7.3.4/basic/qa/cppunit/test_compiler_checks.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/basic/qa/cppunit/test_compiler_checks.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -33,4 +33,85 @@ CPPUNIT_ASSERT_EQUAL(ERRCODE_BASIC_VAR_DEFINED, aMacro.getError().StripDynamic()); } +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157) +{ + MacroSnippet aMacro("Function extentComment() As Integer\n" + " ' _\n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_compatible) +{ + MacroSnippet aMacro("Option Compatible\n" + "Function extentComment() As Integer\n" + " ' _\n" + "\n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_vba) +{ + MacroSnippet aMacro("Option VBASupport 1\n" + "Function extentComment() As Integer\n" + " ' _\n" + "\n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402) +{ + MacroSnippet aMacro("Function extentComment() As Integer\n" + " ' _ \n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " Else\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402_compatible) +{ + MacroSnippet aMacro("Option Compatible\n" + "Function extentComment() As Integer\n" + " ' _ \n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " Else\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402_vba) +{ + MacroSnippet aMacro("Option VBASupport 1\n" + "Function extentComment() As Integer\n" + " ' _ \n" + " If Not extentComment Then\n" + " extentComment = 1\n" + " Else\n" + " End If\n" + "End Function\n"); + aMacro.Compile(); + CPPUNIT_ASSERT(!aMacro.HasError()); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ diff -Nru libreoffice-7.3.4/basic/source/comp/scanner.cxx libreoffice-7.3.5/basic/source/comp/scanner.cxx --- libreoffice-7.3.4/basic/source/comp/scanner.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/basic/source/comp/scanner.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -53,6 +53,7 @@ , bVBASupportOn(false) , bPrevLineExtentsComment(false) , bClosingUnderscore(false) + , bLineEndsWithWhitespace(false) , bInStatement(false) { } @@ -186,6 +187,8 @@ while(nBufPos < nEnd && BasicCharClass::isWhitespace(aBuf[nEnd - 1])) --nEnd; + // tdf#149402 - check if line ends with a whitespace + bLineEndsWithWhitespace = (n > nEnd); aLine = aBuf.copy(nBufPos, nEnd - nBufPos); // Fast-forward past the line ending @@ -663,7 +666,9 @@ bPrevLineExtentsComment = false; aSym = "REM"; sal_Int32 nLen = aLine.getLength() - nLineIdx; - if( bCompatible && aLine[nLineIdx + nLen - 1] == '_' && aLine[nLineIdx + nLen - 2] == ' ' ) + // tdf#149402 - don't extend comment if line ends in a whitespace (asicCharClass::isWhitespace) + if (bCompatible && !bLineEndsWithWhitespace && aLine[nLineIdx + nLen - 1] == '_' + && aLine[nLineIdx + nLen - 2] == ' ') bPrevLineExtentsComment = true; nCol2 = nCol2 + nLen; nLineIdx = -1; @@ -701,6 +706,8 @@ aSym = "\n"; nColLock = 0; bClosingUnderscore = false; + // tdf#149157 - break multiline continuation in a comment after a new line + bPrevLineExtentsComment = false; return true; } } diff -Nru libreoffice-7.3.4/basic/source/inc/scanner.hxx libreoffice-7.3.5/basic/source/inc/scanner.hxx --- libreoffice-7.3.4/basic/source/inc/scanner.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/basic/source/inc/scanner.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -62,6 +62,7 @@ bool bVBASupportOn; // true: OPTION VBASupport 1 otherwise default False bool bPrevLineExtentsComment; // true: Previous line is comment and ends on "... _" bool bClosingUnderscore; // true: Closing underscore followed by end of line + bool bLineEndsWithWhitespace; // true: Line ends with whitespace (BasicCharClass::isWhitespace) bool bInStatement; void GenError( ErrCode ); diff -Nru libreoffice-7.3.4/binaryurp/source/binaryurp.component libreoffice-7.3.5/binaryurp/source/binaryurp.component --- libreoffice-7.3.4/binaryurp/source/binaryurp.component 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/binaryurp/source/binaryurp.component 2022-07-15 19:12:51.000000000 +0000 @@ -20,7 +20,7 @@ + constructor="com_sun_star_comp_bridge_BridgeFactory_get_implementation" single-instance="true"> diff -Nru libreoffice-7.3.4/ChangeLog libreoffice-7.3.5/ChangeLog --- libreoffice-7.3.4/ChangeLog 2022-06-01 21:08:56.000000000 +0000 +++ libreoffice-7.3.5/ChangeLog 2022-07-15 19:15:50.000000000 +0000 @@ -1,51 +1,2881 @@ -2022-06-01 Christian Lohmaier [728fec16bd5f605073805c3c9e7c4212a0120dc5] +2022-07-15 Christian Lohmaier [184fe81b8c8c30d8b5082578aee2fed2ea847c01] - Version 7.3.4.2, tag libreoffice-7.3.4.2 + Version 7.3.5.2, tag libreoffice-7.3.5.2 -2022-06-01 Christian Lohmaier [43dd079b414d5185783c1a5f9064ec23869f7f6d] +2022-07-15 Christian Lohmaier [0189aeeda49ea34cb843ac3dc71404cf38438743] - bump product version to 7.3.4.2 + bump product version to 7.3.5.2 - Change-Id: Ic25fb3ac53bc2443dddeeb34df54bec518c5ca9b + Change-Id: Id5a3985ed61b70abe8b333800a092b369b1cea55 -2022-06-01 Michael Stahl [4f6f8f371e053860604ce6664bb64276f3c4450f] +2022-07-15 Christian Lohmaier [c829a37bcc9da01edc8ff410e49df2b6ee40bb51] + + update credits + + Change-Id: Ia00bbfe76a95eb72687fb46eedf934c8327e3f03 + (cherry picked from commit 3a9cf24468d7c3c67ef44c3cc8fa618a56565d32) + (cherry picked from commit 8e1f1b26d7cce3f85d15fa7b3ee4b99f09375247) + +2022-07-15 Christian Lohmaier [2632f2ddaef1eff71060c7789b2888d068b72970] + + fix bluetooth entitlement, was added to the flipped condition + + of course it should only be added when the bluetooth part of the + sdremote is enabled, not the other way round... + fixes c78b49ec132eb5126445ebee7d259d3df7fcaa68 + + Change-Id: I0085c61a4bafece80be92c56928095c2726e11b4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137025 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit bdd97cb83e09225905a6272caf91579a0a77d3c2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137054 + Reviewed-by: Adolfo Jayme Barrientos + Tested-by: Christian Lohmaier + (cherry picked from commit 9a2a837ae6ac35ec098359aa1c09590c7ccda69f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137058 + Reviewed-by: Michael Stahl + Reviewed-by: Xisco Fauli + +2022-07-15 Christian Lohmaier [70334c419caab17870ab560632cfc5e90843d584] + + macOS sandbox: disable donation info bar & help entries + + even when you are a verified non-profit, you still cannot just point to + a donation site/you still would have to offer apple-pay... + + the helpmenu one is ugly since it changes the endresult compared to + what is assembled in instdir, but is the least intrusive way for now... + + Change-Id: Id348d69371048bdd04d2961cad564fc73f11fd45 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137050 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit babd850db840eebd59b71730b446c0d89de87d3a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137063 + (cherry picked from commit 371865d606c84bfe394867c152691b668e9342eb) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137065 + Tested-by: Christian Lohmaier + +2022-07-15 Noel Grandin [80fdbbfe0b985aa91180eaaa554e4369c993b59b] + + tdf#149890 SVG: pattern is displayed with black fill + + regression from + commit 3cbe3a0259bea4dec70e72191ec3c03441926a07 + Author: Noel Grandin + Date: Mon Jun 14 15:05:59 2021 +0200 + tdf#101083 speed up SVG rendering with pattern fill + + Change-Id: Ifabe5dd0de92c3b27033c49af5713bc5825d10c7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136912 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 77ead3d8c01b3663b0ff701a934f10b602252412) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136926 + Reviewed-by: Xisco Fauli + (cherry picked from commit 4d1ddc52f359d68bd2b677b12d7eba7b08086fd2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136928 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2022-07-15 Xisco Fauli [d94c45ee261473bf1947d7588721fe2782feff41] + + sfx2: fix null derefs of SfxViewFrame::Current() + + See https://crashreport.libreoffice.org/stats/signature/%60anonymous%20namespace'::lcl_tryLoadBibliography + + Change-Id: I80d764c4bbcf0c5affa3386fbb11f5a79e98b699 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136767 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 54d40fef93f1194bf29440cf66a567c9fc612158) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136862 + Reviewed-by: Xisco Fauli + Reviewed-by: Thorsten Behrens + Reviewed-by: Christian Lohmaier + Tested-by: Christian Lohmaier + +2022-07-15 Christian Lohmaier [e87f84290d81290e7f8be5a9fce3b3e636d56dd7] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3-5' + to 75d63f3d8a3480299d96b2ea1c208a924497e966 + - update translations for 7.3.5 rc2 + + and force-fix errors using pocheck + + Change-Id: If09d5f7305b44fe87fff8b4061233344000eb9c3 + (cherry picked from commit 714c5355fcd9c5c4f6e373229d5206be175c60fb) + +2022-07-14 Michael Stahl [c8ffae5a0c52193a91ebd8b0d9511308418f2534] + + tdf#149649 sw_fieldmarkhide: delete any fieldmarks overlapping cells + + The DOCX bugdoc has a field that starts in the first cell of a table, but + ends outside the table. + + [ 28] 0x3690e10 TableNode , + [ 29] 0x78d6f80 StartNode , + [ 30] 0x6cfb408 TextNode "\a FORMTEXT \003Data File", + [ 31] 0x6bf9620 EndNode , + + [ 631] 0x779c768 TextNode "", + [ 632] 0x69bd5f8 TextNode "\b", + [ 633] 0x656f150 EndNode }, + + This triggers an assert in layout: + soffice.bin: sw/source/core/layout/frmtool.cxx:1971: void InsertCnt_(SwLayoutFrame*, SwDoc*, SwNodeOffset, bool, SwNodeOffset, SwFrame*, sw::FrameMode): Assertion `!pLayout->HasMergedParas() || pNd->GetRedlineMergeFlag() != SwNode::Merge::Hidden' failed. + + This bad documnet model is created from writerfilter in a call to + SwXText::convertToTable(), so add some preventive code there. + + The end of the field is erroneously also at the end of the body instead + of a few paragraphs below the 1st table, because in PopFieldContext() the + xTextAppend->createTextCursorByRange(pContext->GetStartRange()) throws, + due to the bad document model. + + It turns out that Word can actually load this document, but the + behaviour is rather funny and would be difficult to replicate... + + Change-Id: I20b9293db8888511bc0066c775d54fc59fcaa349 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136906 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 436ae10ec546391ce21875c69b0ec4bb3a06fa1f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136921 + Reviewed-by: Thorsten Behrens + (cherry picked from commit dab6149b056b0be51dbeefdd33397bf6a482a6da) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136930 + Reviewed-by: Xisco Fauli + Tested-by: Miklos Vajna + Reviewed-by: Miklos Vajna + +2022-07-14 Xisco Fauli [1ebc056a807b8e77cf24a9eae530b3434168ad92] + + sw: fix null derefs of GetCurrShell() + + See https://crashreport.libreoffice.org/stats/signature/SwContentFrame::Cut() + + Change-Id: I00267b480d9c123f68996572d2e6fdebc4fb383f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136769 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 0411e70f45d9b0ac05cad557b6b0c0f45952c279) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136918 + Reviewed-by: Xisco Fauli + Reviewed-by: Thorsten Behrens + Tested-by: Miklos Vajna + Reviewed-by: Miklos Vajna + +2022-07-01 Christian Lohmaier [035ef6ad02988339107eb3cf43cbc45a4ca1f48f] + + bump product version to 7.3.5.1.0+ + + Change-Id: Ief0b78fa3fe4ec16b6672320c7080181d01430b0 + +2022-07-01 Christian Lohmaier [d7427a86b53e152553870355bf863de14c4479a4] + + Branch libreoffice-7-3-5 + + This is 'libreoffice-7-3-5' - the stable branch for the 7.3.5 release. + Only very safe changes, reviewed by three people are allowed. + + If you want to commit more complicated fix for the next 7.3.x release, + please use the 'libreoffice-7-3' branch. + + If you want to build something cool, unstable, and risky, use master. + +2022-07-01 Christian Lohmaier [720db024133b42e92fd3258f953819a6d9a456d5] + + allow to specify a macOS provisioning profile + + having one is one of the prerequisites of using TestFlight + + Change-Id: I9e20eb99905071fade4179dfbe2da5b7e5dd1c24 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136618 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit b43f0b0295953c8d5d16c5b9eccaddb5ec214bab) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136695 + +2022-07-01 Christian Lohmaier [5460aadf5b8539f6dc5f0215e89d0feb6730ce6f] + + tdf#149603 macOS: fix workaround to use web help if Safari is the default browser + + Safari won't access the local helpfiles from LO's app folder unless you + enable Safari's webdeveloper menu. The workaround broke since + f31f0038f5fd9254584a06665066faf9715d1cd8 switched from window to widget + references and hence using a different codepath, skipping the workaround + added in 44893662d510c4173e55ba27af02d0258a697a5d + + Change-Id: I0c59066fe1cef1514c6595e0439d31d3e60e02f3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136685 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 82acd35e3cc5dc458930daaf6de9f41c7deb73dc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136704 + +2022-07-01 Christian Lohmaier [fb294b87ae95579189895738f0faf62357e6be46] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3' + to e46d7675a9759e2bc9fcc6895e14095abb3eba83 + - update translations for 7.3.5 rc1 + + and force-fix errors using pocheck + + Change-Id: I6b8f0f326c1ef1f3804409057e3081bf2b2caaa0 + +2022-07-01 Xisco Fauli [d5875107e505802ab8de9e759e295ed12b36e22b] + + sw: avoid another EXCEPTION_INT_DIVIDE_BY_ZERO + + See https://crashreport.libreoffice.org/stats/signature/lcl_ModifyBoxes + + Change-Id: I786bbf87734dd3963bd84caecc5c5f45693d42c4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135185 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit aeeb0141aca4f1698b09bc8f06ded41247b54279) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135255 + Reviewed-by: Christian Lohmaier + +2022-07-01 Caolán McNamara [744439e73038ea5bdbdd18b10e0e90c22bb9928c] + + tdf#149787 capture a copy of mpViewShell and mpView + + so the callback can outlive the FuArea + + Change-Id: I392ffa46b6f13795faef7284c1cae74428655b5f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136694 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-30 Christian Lohmaier [1709c90e4d5bdf5a7b5201baac49249e22e11588] + + allow pretty names in --enable-macosx-code/package-signing + + also reorder the logic to avoid duplicating the matches for default + value and manually provided one. + + Change-Id: I4466cbeaf5abd7168f21e22cd910f63568c14e24 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136224 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 2f5b54ba51157a2346e10dfb82e3d434d6030aaa) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136551 + Reviewed-by: Xisco Fauli + +2022-06-30 Christian Lohmaier [d4b9f5219fa9aa9426f9815f1844c178a934205f] + + related tdf#126961 don't crash when access to the macOS address book is denied + + quick'n'dirty fix, ideally the user should get a message to reset the + privacy setting and try again... + + Change-Id: I51cb852e305e285c87ff3a0e15b5198a2b1c5970 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136620 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 5ab29d945a18824eec53426edece4f19a02610ed) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136640 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-30 Christian Lohmaier [23b81098bd580eada788986682ab3bb4e1f53c83] + + don't specify entitlements that are not used (sdremote w/o bluetooth) + + the network.server entitlement is only needed when the sdremote is + enabled, and the bluetooth one only when the bluetooth part is built. + Also warn about bluetooth not being built because of obsoleted/removed + API. It was "silently" dropped before (lost in the flood of configure + output). + + Change-Id: I38d83aa1132307b5b4b5d6dceba8f9020ffb2373 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136617 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136626 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-30 Christian Lohmaier [6782748ca5ffa036de58cf9ad63d568703180390] + + tdf#126961 fix access to the macOS address book + + Having the personal-information.addressbook entitlement is not enough. + Without the plist key NSContactsUsageDescription, macOS will not ask the + user to grant access and the request is implicitly denied without any + feedback/logging. + + Change-Id: I954fa86b35a128f08e5c498191bc0949e0edeebf + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136619 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit ccf518a6fd2819e6a328e953d5e7356d8d9bd11f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136637 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-30 Christian Lohmaier [f1c415c638f11329b9cd7b415aefa4652499403a] + + tdf#141313 only hide Impress Remote option if there is no sdremote at all + + it was incorrectly based on bluetooth support, but the remote can also + be used in the local network. + Regression from 4cdb960a79aff565f956f618116f3ea4b3836aa4 still worked + for users who had it enabled in earlier versions, but not with new + profiles. + + Change-Id: Ib4026c60fed0842b3bad483d78e46dd73d1d75f5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136615 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 8d7c441097cc0279a9819fe0673b8cad40ae94db) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136642 + Tested-by: Christian Lohmaier + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-30 Christian Lohmaier [01ffd406553c40bc91daf6bd5d63b1fe3a171a37] + + impress remote connection dialog must also work without bluetooth + + as otherwise you can never confirm the pin to approve new devices. + old regression from 7c8c73dd5cf84050a8a2c51b04d7f5278b409fd7 + still worked for users who had it enabled/linked in a previous + version... + + Change-Id: Icf9fb6ae4259252da47c3709ab99fb7a2a70aeac + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136616 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit c7147cd2504d1d3f91ca5b0a5e119ca9d2185b37) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136635 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-30 Christian Lohmaier [2fbf4831617f13daedf0a80cfe6042f5ac088da1] + + Don't link against private CoreUI framework when sandboxed + + Actual use of the code was already disabled since 2014 with + b8bee05dbf85bc4f5834520aa5d64e9ae18aba4e - but the link flags were not + conditionalized. + + Change-Id: Ia1dd299cb78274850eb6a7b10259991bb4970ab9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136614 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 7a493a7d64dc634ae2d5d6931b8ce33223cb3985) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136553 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-29 Noel Grandin [28f8f7c411a2b965be6306d76fd2ed6ab4d5be1b] + + BridgeFactory should be a singleton + + regression from + commit 9be078ae0d4cc4e4c01952bb42c9bb5943bbde86 + Date: Sat Jul 4 09:12:35 2020 +0200 + binaryurp: create instances with uno constructors + + Change-Id: Ib7a7316fdee4afffac35b282adaf437ff8bdd009 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135904 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 7531f027c742a601c13a7a849dfae795a148d899) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135989 + Reviewed-by: Xisco Fauli + (cherry picked from commit e04635f338b9a39df0ed62b0909b0ac56c9a5b76) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136030 + Reviewed-by: Michael Stahl + +2022-06-29 Mike Kaganski [e8a2be942f1c0f9cfb008d4ab81a57a3b3fb8da0] + + tdf#126263: do not try to delete non-temporary files + + Change-Id: I5df7db7eac6224fce833e6b9d4ea220cade44e4b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136483 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136491 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136506 + +2022-06-29 Mike Kaganski [9cef4bd3795d9f98a00baaf06005a7b3ac064517] + + tdf#126263: make sure to convert system path to file URLs + + Change-Id: Ia21f29e3a1eb078a7df2366399c59d46ab26ff3a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136482 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136490 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136505 + +2022-06-28 Mike Kaganski [c0c1145d9f7aa82417bfa8194de0a27c2c556aab] + + Integer division could cancel small values of wrong sign + + ... as seen at some documents where the values are like -1. There + the checks in pushToPropMap may pass (the division result would be 0), + but the original small negative values would fail the asserts that + were introduced in commit 5772cef244dbee5834efbc693bc714d89ae6301d + Author Mike Kaganski + Date Wed Jun 15 18:33:38 2022 +0300 + tdf#134210: Reimplement cropping from srcRect and fillRect + + Change-Id: I114588862b5cfd2b2e4491424430cc139bdbaae9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136492 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 2d9f3c066a065d6aa98f1e594dcf8a091fec2bde) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136471 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136556 + +2022-06-28 Mike Kaganski [66ae8a2c0e6d01d06a01fa877cf03507c0656f8d] + + tdf#134210: Reimplement cropping from srcRect and fillRect + + This avoids the scaling after the crop, since scaling is performed + anyway when applying BitmapMode_STRETCH. This improves resulting + bitmap quality. + + Also consider the "crop to zero" case (when the sum of cropped + parts is equal to 100%). In that case, just use an empty graphic + as the fill bitmap. + + This makes the differences between srcRect and fillRect processing + explicit, simplifies the code, avoids extra rounding inaccuracies, + and takes care of the edge cases that were considered in commit + 2859ec288f2c1323ea3123d82cb1684b349ff598 + Author Miklos Vajna + Date Wed Jun 15 15:52:18 2022 +0200 + oox: fix div by zero in lclCalculateCropPercentage() + + The change in SdImportTest2::testTdf134210 is because we now don't + scale the cropped image. The previous value was an interpolated + color, while the new value is the actual color of pixel [0, 41] of + the original image. + + Change-Id: I24fa9928cff32bcaa6a7b3e34def14700fddd7ca + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135917 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit 5772cef244dbee5834efbc693bc714d89ae6301d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136038 + Reviewed-by: Xisco Fauli + (cherry picked from commit c7a21bfed044154cac23328d37b46f34aeda0709) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136155 + +2022-06-28 Noel Grandin [ff6e536111a966f465c4756cbfa74935752df612] + + tdf#149692 crash importing document with vba forms + + This bug appears to date back to + commit a43cc9ec8dde4f311bcf8ff96e6a26d56b2abdcf + Author: Noel Power + Date: Wed Apr 17 17:08:59 2013 +0100 + implement MultiPage, Page & TabStrip import for oox + + Change-Id: Ia4784e4c34189f05e516704fa2e2485e4560fa4b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136500 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit a15fe37bf1dc50fcf88cea9c0038b217119671b8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136472 + Reviewed-by: Caolán McNamara + (cherry picked from commit ef79ccd5bbd5fbc0f0c132c4fc5a48fcd1fbbc16) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136535 + Reviewed-by: Xisco Fauli + +2022-06-27 Noel Grandin [f4be84dfd1714c9084ffa772ff62d63d51e6d0de] + + tdf#149647 LibreOffice Calc cursor not positioned correctly + + Revert the offending commit + commit feec8e3c34e08b621098a17f1011dccd0b4f7f4c + reduce iteration in ScViewData::GetScrPos + + Change-Id: Id1df2bf7f87e6b800b40871c1472ed466b7eb6a0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136442 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 34c6d02661949fcc9c15bd77d6e837623bbddcdb) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136458 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136488 + +2022-06-27 Caolán McNamara [cff4a8943cd7bfd5b0e77dbc7e614a61de41276e] + + sw: avoid divide by zero in SwTextGridPage::CharorLineChangedHdl + + See https://crashreport.libreoffice.org/stats/signature/SwTextGridPage::CharorLineChangedHdl(weld::SpinButton%20&) + + disable the offending widget if the value is zero. + + crash reproducible under gen with CJK features enabled by: format, page + style, text grid, grid (lines and characters), max base text size of + 1000 and then click in "characters per line" and then click in "lines + per page". + + Change-Id: Ic0f8131955ab01412dd54bdd5d3bffe518938fb5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136470 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-27 Xisco Fauli [2368f4de682edfff5092b5a4bf68d947706ef1e7] + + svtools: avoid divide by zero in calcCustomItemSize + + See https://crashreport.libreoffice.org/stats/signature/%60anonymous%20namespace'::calcCustomItemSize + + Change-Id: I5f1b19b7679c73cf29952629469e5151395b2b12 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136254 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit ec03eef9b431048ea21a733c39c79b792b0f653c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136393 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136451 + +2022-06-27 Miklos Vajna [965a4583af233114985c14d49b9c476135bcfa45] + + tdf#148522 svx: fix undo of cell border changes text alignment in other cells + + The Impress table properties dialog has multiple purposes: normally it + only affects the properties of the currently active cell, but shadow is + applied on the whole shape. + + Regression from commit fdeb04f7c59cf8032fe17072ed779e70505cc6ab + (tdf#129961 svx: finish UI for table shadow as direct format, + 2020-12-15), we started to apply properties to the current cell, and + then to the whole shape as well, unconditionally. This affects + undo/redo, as there is a separate undo manager while the text edit of a + table cell is active and when the text edit is ended. + + Fix the problem by only applying properties on the shape when there we + actually have some properties: this way the text edit is typically not + ended, bringing back the old undo/redo behavior. + + Note that we still need to end the text edit if the user explicitly sets + some shadow properties, that part is unchanged with this commit. + + Change-Id: I78e28bd326a2c12c3775b33957adca4cd95ac582 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136357 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 3edfbc19950610bb2061d29cb58b3811b1a0b1a5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136460 + Reviewed-by: Xisco Fauli + (cherry picked from commit 750568d77812202c9c01fa87945b507a358c6db5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136468 + +2022-06-27 Caolán McNamara [83923eb10c198ae86e20bf9eb7def400a8c08268] + + crashtesting: fix assert seen with forum-mso-en-8349.docx + + a string that ends in spaces + + Change-Id: I808f046be816d0d4a76f801a349e284024a2061c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136465 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-27 Balazs Varga [7613fa06e52e10130357898c5205b9ec7fc4e348] + + tdf#148820 sc: fix conditional formatted cell color + + Store foreground color for color filtering, because in OOXML + the foreground color is used for color filtering and we overwrote + it with the background color which is used for conditional formatted cells too. + + Regression from commit: 6f908b48373b71d45c8119b296b0504fb586f6f8 + (tdf#143104 Fix xlsx import/export of color filter colors) + + Change-Id: I737e6f1170851822a2689fa477db59e62f0d47fa + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136055 + Tested-by: Jenkins + Tested-by: Gabor Kelemen + Reviewed-by: Thorsten Behrens + (cherry picked from commit 415dc3bb1c03dbdbc3cbca274bc435ac7557ba2d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136457 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136479 + +2022-06-27 Caolán McNamara [a095f58d981569cbe79d724a301ed04f0f92748d] + + crashtesting: fix assert seen on loading forum-nl-1226.ods + + Change-Id: If8c08a51b11a459a03b4a0604c1fb9897351e598 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136467 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2022-06-26 Luboš Luňák [4e2f3912440e555f62ea9f5b8182fd6c07560001] + + handle nullptr SharedString in ScQueryEvaluator (tdf#149679) + + This may be the case if the string comes from ScMatrix::Get() + for ScMatValType::Empty. + + Change-Id: I35013449611bf7ffd1bc74e023d76597af010724 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136347 + Tested-by: Jenkins + Reviewed-by: Luboš Luňák + (cherry picked from commit ba59bd11521373f800c6b718e7e21439c1452e84) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136376 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-25 Xisco Fauli [e8763ec437f66926196707b803c60dc7032e6e0c] + + sw: fix crash in SwLayoutFrame::GetContentPos + + FindPageFrame might return nullptr + + See https://crashreport.libreoffice.org/stats/signature/SwLayoutFrame::GetContentPos(Point%20&,bool,bool,SwCursorMoveState%20*,bool) + + Change-Id: Ic69d26de4ab234ebd6283ace640d689f0ebe8eb3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136307 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 7500c243fea02acbeaddf91f6b48a53d698c1cab) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136383 + Reviewed-by: Caolán McNamara + +2022-06-25 Stephan Bergmann [8e30b8be3ae348dce83bed40206ee2e66492f1cd] + + external/liborcus: Fix heap-buffer-overflow + + ...as seen during CppunitTest_vcl_pdfexport: + + > ==573913==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x62b0001dba0e at pc 0x560576627186 bp 0x7ffeab9fa730 sp 0x7ffeab9f9ef0 + > READ of size 26624 at 0x62b0001dba0e thread T0 + > #0 in StrtolFixAndCheck(void*, char const*, char**, char*, int) at ~/github.com/llvm/llvm-project/compiler-rt/lib/asan/../sanitizer_common/sanitizer_common_interceptors.inc:3629:3 + > #1 in strtol at ~/github.com/llvm/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp:485:3 + > #2 in orcus::sax_token_handler_wrapper_base::attribute(std::basic_string_view>, std::basic_string_view>) at workdir/UnpackedTarball/liborcus/src/parser/sax_token_parser.cpp:344:22 + > #3 in orcus::sax_ns_parser::handler_wrapper>::handler_wrapper::attribute(orcus::sax::parser_attribute const&) at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_ns_parser.hpp:212:27 + > #4 in orcus::sax_parser::handler_wrapper>::handler_wrapper, orcus::sax_parser_default_config>::attribute() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_parser.hpp:570:15 + > #5 in orcus::sax_parser::handler_wrapper>::handler_wrapper, orcus::sax_parser_default_config>::declaration(char const*) at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_parser.hpp:389:9 + > #6 in orcus::sax_parser::handler_wrapper>::handler_wrapper, orcus::sax_parser_default_config>::element() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_parser.hpp:242:13 + > #7 in orcus::sax_parser::handler_wrapper>::handler_wrapper, orcus::sax_parser_default_config>::body() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_parser.hpp:214:13 + > #8 in orcus::sax_parser::handler_wrapper>::handler_wrapper, orcus::sax_parser_default_config>::parse() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_parser.hpp:182:5 + > #9 in orcus::sax_ns_parser::handler_wrapper>::parse() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_ns_parser.hpp:277:14 + > #10 in orcus::sax_token_parser::parse() at workdir/UnpackedTarball/liborcus/src/liborcus/../../include/orcus/sax_token_parser.hpp:215:14 + > #11 in orcus::xml_stream_parser::parse() at workdir/UnpackedTarball/liborcus/src/liborcus/xml_stream_parser.cpp:68:9 + > #12 in orcus::orcus_xls_xml::detect(unsigned char const*, unsigned long) at workdir/UnpackedTarball/liborcus/src/liborcus/orcus_xls_xml.cpp:94:16 + > #13 in orcus::detect(unsigned char const*, unsigned long) at workdir/UnpackedTarball/liborcus/src/liborcus/format_detection.cpp:68:9 + > #14 in (anonymous namespace)::OrcusFormatDetect::detect(com::sun::star::uno::Sequence&) at sc/source/filter/orcus/filterdetect.cxx:83:31 + > 0x62b0001dba0e is located 0 bytes to the right of 26638-byte region [0x62b0001d5200,0x62b0001dba0e) + > allocated by thread T0 here: + > #0 in operator new[](unsigned long) at ~/github.com/llvm/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp:98:3 + > #1 in SvMemoryStream::AllocateMemory(unsigned long) at tools/source/stream/stream.cxx:1698:12 + > #2 in SvMemoryStream::SvMemoryStream(unsigned long, unsigned long) at tools/source/stream/stream.cxx:1544:9 + > #3 in (anonymous namespace)::OrcusFormatDetect::detect(com::sun::star::uno::Sequence&) at sc/source/filter/orcus/filterdetect.cxx:71:20 + + This started to occur now after a95c585433246813096e8890b7ed6ef4fe30c621 "Pump + XInputStream into an SvMemoryStream rather than an OStringBuffer" no longer + guarantees that the memory range passed into + + orcus::detect(const unsigned char* buffer, size_t length) + + is followed by a null byte at buffer[length]. (There appears to be no + documentation for that function, but it looks unreasonable to me that it should + require callers to provide a buffer thus terminated, and I rather assume that + what is observed here is an orcus bug.) + + The problematic calls of std::strtol were used in code apparently meant to parse + strings matching the XML VersionNum grammar production, and then store the two + dot-separated numbers each as uint8_t. The new code using a local readUint8 + accepts a different set of strings now than the original code using std::strtol, + but the new set is arguably closer to what the actual XML VersionNum grammar + production accepts (which is '1.' [0-9]+ for XML 1.0 and '1.1' for XML 1.1), so + this change should be OK. + + Change-Id: I1668542c96ced64667cb9f251e79126e1a54ac30 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136405 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 3f17a643d0f943d02c7cb2b5d8e702fe0e63e38d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136417 + Reviewed-by: Noel Grandin + +2022-06-25 Caolán McNamara [04c481f7b276087699c6aa4f923e427298ac9cfa] + + tdf#149626 use recursive_mutex to fix hang in macro callback during dnd + + See frame #5 and frame #45 where + + both the same DNDEventDispatcher object and both functions lock m_aMutex which is a std::mutex since + + commit 8de81db4e3fca488d50db2d74734109b31541a6f + Date: Mon Aug 2 09:21:17 2021 +0200 + + osl::Mutex->std::mutex in DNDEventDispatcher + + #0 0x00007ff094530c40 in __lll_lock_wait () at /lib64/libc.so.6 + #1 0x00007ff0945371d2 in pthread_mutex_lock@@GLIBC_2.2.5 () at /lib64/libc.so.6 + #2 0x00007ff08b901663 in __gthread_mutex_lock(pthread_mutex_t*) (__mutex=0x1a32c60) + at /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/x86_64-redhat-linux/bits/gthr-default.h:749 + #3 0x00007ff08b9024d5 in std::mutex::lock() (this=0x1a32c60) at /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/std_mutex.h:100 + #4 0x00007ff08b9018f3 in std::scoped_lock::scoped_lock(std::mutex&) (this=0x7ffdd0d79240, __m=...) + at /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/mutex:731 + #5 0x00007ff08b9006a8 in DNDEventDispatcher::dragOver(com::sun::star::datatransfer::dnd::DropTargetDragEvent const&) (this=0x1a32c10, dtde=...) + at vcl/source/window/dndeventdispatcher.cxx:156 + #6 0x00007ff075f47658 in GtkInstDropTarget::fire_dragOver(com::sun::star::datatransfer::dnd::DropTargetDragEvent const&) (this=0x199eb40, dtde=...) + at vcl/unx/gtk3/gtkinst.cxx:1710 + #7 0x00007ff0760a7010 in GtkInstDropTarget::signalDragMotion(_GtkWidget*, _GdkDragContext*, int, int, unsigned int) + (this=0x199eb40, pWidget=0x1c67e40, context=0x1957450, x=89, y=175, time=0) at vcl/unx/gtk3/gtkframe.cxx:5026 + #8 0x00007ff07609bb77 in GtkSalFrame::signalDragMotion(_GtkWidget*, _GdkDragContext*, int, int, unsigned int, void*) + (pWidget=0x1c67e40, context=0x1957450, x=89, y=175, time=0, frame=0x19b7d70) at vcl/unx/gtk3/gtkframe.cxx:4922 + #9 0x00007ff075649527 in _gtk_marshal_BOOLEAN__OBJECT_INT_INT_UINTv () at /lib64/libgtk-3.so.0 + #10 0x00007ff0865dcd5b in g_signal_emit_valist () at /lib64/libgobject-2.0.so.0 + #11 0x00007ff0865ddeb8 in g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0 + #12 0x00007ff07595b491 in gtk_drag_dest_motion.lto_priv () at /lib64/libgtk-3.so.0 + #13 0x00007ff0757b8f7d in gtk_main_do_event () at /lib64/libgtk-3.so.0 + #14 0x00007ff0754e5463 in _gdk_event_emit () at /lib64/libgdk-3.so.0 + #15 0x00007ff075518056 in gdk_event_source_dispatch () at /lib64/libgdk-3.so.0 + #16 0x00007ff0864c3faf in g_main_context_dispatch () at /lib64/libglib-2.0.so.0 + #17 0x00007ff0865192c8 in g_main_context_iterate.constprop () at /lib64/libglib-2.0.so.0 + #18 0x00007ff0864c1940 in g_main_context_iteration () at /lib64/libglib-2.0.so.0 + #19 0x00007ff075f3e60f in GtkSalData::Yield(bool, bool) (this=0x952930, bWait=false, bHandleAllCurrentEvents=false) at vcl/unx/gtk3/gtkdata.cxx:405 + #20 0x00007ff075f43e43 in GtkInstance::DoYield(bool, bool) (this=0x9527e0, bWait=false, bHandleAllCurrentEvents=false) at vcl/unx/gtk3/gtkinst.cxx:428 + #21 0x00007ff08c2dc5df in ImplYield(bool, bool) (i_bWait=false, i_bAllEvents=false) at vcl/source/app/svapp.cxx:474 + #22 0x00007ff08c2dc24d in Application::Reschedule(bool) (i_bAllEvents=false) at vcl/source/app/svapp.cxx:493 + #23 0x00007ff091eeeb55 in SbiRuntime::Step() (this=0xa21eb20) at basic/source/runtime/runtime.cxx:801 + #24 0x00007ff091e0e659 in (anonymous namespace)::RunInitGuard::run() (this=0x76a6290) at basic/source/classes/sbxmod.cxx:1015 + #25 0x00007ff091e0d135 in SbModule::Run(SbMethod*) (this=0xa0ada00, pMeth=0xa16d7e0) at basic/source/classes/sbxmod.cxx:1176 + #26 0x00007ff091e0c503 in SbModule::Notify(SfxBroadcaster&, SfxHint const&) (this=0xa0ada00, rBC=..., rHint=...) at basic/source/classes/sbxmod.cxx:775 + #27 0x00007ff090b3ee6e in SfxBroadcaster::Broadcast(SfxHint const&) (this=0xa231de0, rHint=...) at svl/source/notify/SfxBroadcaster.cxx:39 + #28 0x00007ff091e1372e in SbMethod::Broadcast(SfxHintId) (this=0xa231ca0, nHintId=SfxHintId::BasicDataWanted) at basic/source/classes/sbxmod.cxx:2113 + #29 0x00007ff091f6ddfa in SbxObject::Call(rtl::OUString const&, SbxArray*) (this=0xa258670, rName="DTL_dragOver", pParam=0xa1e47d0) + at basic/source/sbx/sbxobj.cxx:274 + #30 0x00007ff091d9dd76 in StarBASIC::Call(rtl::OUString const&, SbxArray*) (this=0xa258670, rName="DTL_dragOver", pParam=0xa1e47d0) + at basic/source/classes/sb.cxx:1324 + #31 0x00007ff091dd7127 in (anonymous namespace)::BasicAllListener_Impl::firing_impl(com::sun::star::script::AllEventObject const&, com::sun::star::uno::Any*) + (this=0xa2344a0, Event=..., pRet=0x0) at basic/source/classes/sbunoobj.cxx:3831 + #32 0x00007ff091dd6ba1 in (anonymous namespace)::BasicAllListener_Impl::firing(com::sun::star::script::AllEventObject const&) (this=0xa2344a0, Event=...) + at basic/source/classes/sbunoobj.cxx:3855 + #33 0x00007ff091dd792f in (anonymous namespace)::InvocationToAllListenerMapper::invoke(rtl::OUString const&, com::sun::star::uno::Sequence const&, com::sun::star::uno::Sequence&, com::sun::star::uno::Sequence&) + (this=0xa110b70, FunctionName="dragOver", Params=uno::Sequence of length 1 = {...}) at basic/source/classes/sbunoobj.cxx:3983 + #34 0x00007ff091dd7be7 in non-virtual thunk to (anonymous namespace)::InvocationToAllListenerMapper::invoke(rtl::OUString const&, com::sun::star::uno::Sequence const&, com::sun::star::uno::Sequence&, com::sun::star::uno::Sequence&) () + at /home/caolan/LibreOffice/core/instdir/program/libsblo.so + #35 0x00007ff072d19921 in gcc3::callVirtualMethod(void*, unsigned int, void*, _typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) + (pThis=0xa110b98, nVtableIndex=4, pRegisterReturn=0x7ffdd0d7b5c0, pReturnTypeRef=0xa875c0, bSimpleReturn=false, pStack=0x7ffdd0d7b5e0, nStack=0, pGPR=0x7ffdd0d7b900, pFPR=0x7ffdd0d7b8c0) at bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:77 + #36 0x00007ff072d184fc in cpp_call(bridges::cpp_uno::shared::UnoInterfaceProxy*, bridges::cpp_uno::shared::VtableSlot, _typelib_TypeDescriptionReference*, int, _typelib_MethodParameter*, void*, void**, _uno_Any**) + (pThis=0xa238bb0, aVtableSlot=..., pReturnTypeRef=0xa875c0, nParams=4, pParams=0x2470e40, pUnoReturn=0x7ffdd0d7bb80, pUnoArgs=0x7ffdd0d7bbb0, ppUnoExc=0x7ffdd0d7bb60) at bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:233 + #37 0x00007ff072d17c58 in unoInterfaceProxyDispatch(uno_Interface*, typelib_TypeDescription const*, void*, void**, uno_Any**) + (pUnoI=0xa238bb0, pMemberDescr=0x24c98c0, pReturn=0x7ffdd0d7bb80, pArgs=0x7ffdd0d7bbb0, ppException=0x7ffdd0d7bb60) + at bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:413 + #38 0x00007ff0472645ca in stoc_invadp::(anonymous namespace)::AdapterImpl::invoke(_typelib_TypeDescription const*, void*, void**, _uno_Any**) + (this=0xa112060, pMemberType=0xa11be80, pReturn=0x7ffdd0d7c4f0, pArgs=0x7ffdd0d7bca0, ppException=0x7ffdd0d7bde0) + at stoc/source/invocation_adapterfactory/iafactory.cxx:457 + #39 0x00007ff04726379d in stoc_invadp::adapter_dispatch(_uno_Interface*, _typelib_TypeDescription const*, void*, void**, _uno_Any**) + (pUnoI=0xa118a50, pMemberType=0xa11be80, pReturn=0x7ffdd0d7c4f0, pArgs=0x7ffdd0d7bca0, ppException=0x7ffdd0d7bde0) + at stoc/source/invocation_adapterfactory/iafactory.cxx:605 + #40 0x00007ff072d04e95 in cpp2uno_call(bridges::cpp_uno::shared::CppInterfaceProxy*, _typelib_TypeDescription const*, _typelib_TypeDescriptionReference*, int, _typelib_MethodParameter*, void**, void**, void**, unsigned long*) + (pThis=0xa11b350, pMemberTypeDescr=0xa11be80, pReturnTypeRef=0x939280, nParams=1, pParams=0xa112460, gpreg=0x7ffdd0d7c520, fpreg=0x7ffdd0d7c540, ovrflw=0x7ffdd0d7c590, pRegisterReturn=0x7ffdd0d7c4f0) at bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:191 + #41 0x00007ff072d04611 in cpp_vtable_call(sal_Int32, sal_Int32, void**, void**, void**, sal_uInt64*) + (nFunctionIndex=7, nVtableOffset=0, gpreg=0x7ffdd0d7c510, fpreg=0x7ffdd0d7c540, ovrflw=0x7ffdd0d7c590, pRegisterReturn=0x7ffdd0d7c4f0) + at bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:389 + #42 0x00007ff072d29836 in privateSnippetExecutor () at /home/caolan/LibreOffice/core/instdir/program/libgcc3_uno.so + #43 0x00007ff08b903787 in DNDListenerContainer::fireDragOverEvent(com::sun::star::uno::Reference const&, signed char, int, int, signed char) + (this=0x5a444c0, context=uno::Reference to ((anonymous namespace)::GtkDropTargetDragContext *) 0xa1dda68, dropAction=1 '\001', locationX=89, locationY=33, sourceActions=3 '\003') at vcl/source/window/dndlistenercontainer.cxx:224 + #44 0x00007ff08b900b7d in DNDEventDispatcher::fireDragOverEvent(vcl::Window*, com::sun::star::uno::Reference const&, signed char, Point const&, signed char) + (pWindow=0x5a27060, xContext=uno::Reference to ((anonymous namespace)::GtkDropTargetDragContext *) 0xa1dda68, nDropAction=1 '\001', rLocation=Point = {...}, nSourceActions=3 '\003') at vcl/source/window/dndeventdispatcher.cxx:297 + #45 0x00007ff08b9007f5 in DNDEventDispatcher::dragOver(com::sun::star::datatransfer::dnd::DropTargetDragEvent const&) (this=0x1a32c10, dtde=...) + at vcl/source/window/dndeventdispatcher.cxx:178 + #46 0x00007ff075f47658 in GtkInstDropTarget::fire_dragOver(com::sun::star::datatransfer::dnd::DropTargetDragEvent const&) (this=0x199eb40, dtde=...) + at vcl/unx/gtk3/gtkinst.cxx:1710 + + Change-Id: I06f24ac50d6d029803d46974162e1afec898d866 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136391 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + +2022-06-25 Roman Kuznetsov [c65eaa70a8a192cc25059a78e408279b84780ce6] + + tdf#148138 change Text Boundaries color to Gray for Dark mode + + Change-Id: I276896d0ea94e741be8c0ae49f79f95769e0c2a7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136234 + Tested-by: Jenkins + Reviewed-by: Heiko Tietze + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 4412044340ea8447058bb99f529310c2be56a5a9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136415 + +2022-06-24 Nathan Pratta Teodosio [71fb0151f985924af60c383331b214a5a27790a5] + + Follow-up for Poppler 22.06 update + + Change-Id: I8ee9f1a53cc4389e6a4d44e9765b478b5edfffd4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136342 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit ad1ffc62e40c2409b610dfff25a8483b1f2556ad) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136382 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-24 Nathan Pratta Teodosio [56c7e666ebf47d6cdf29adf85fc5de56246be86d] + + Update for Poppler 22.06 + + Change-Id: I8ee9f1a53cc4389e6a4d44e9765b478b5edfffd3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136261 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 0d0469b4302dfe95b016a6f04b145834b79d5ed3) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136319 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-24 Attila Szűcs [dc8d912884f4893f2a3f553ecfe732a234d04e0d] + + tdf#149574 sc: fix missing nullptr check + + Regression from commit 605b4ba57b2daa447af9d43d3759079e15df8148 + "tdf#43958 sc: fix fill by selecting merged cell". + + Check if GetPattern(actual cell) is not nullptr, before using it. + This is not the real problem of Bug 149574, but it is a problem + anyway, and it fixes this bug. The real problem is the wrong + ViewData::nTabNo, that point to an already deleted table, + (fixed in 954d119db932434dc976ef739c643be0d9c7023c + "tdf#149502 sc: crash fix: Change in Table destruction"). + + Co-authored-by: Tibor Nagy (NISZ) + + Change-Id: I26fc629ccf354c9e0c2662d61254d01be91d08f2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136230 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit c4c827e1d370dcc351c4dddc601b3c37fc71564b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136323 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-23 Stephan Bergmann [5a0b9af53650c8a54f159d6677fc653d28539a54] + + Pump XInputStream into an SvMemoryStream rather than an OStringBuffer + + ...to avoid overflow with streams >= 2^31 bytes. This should fix + + which I could reproduce with a recent master Linux build with + + > $ truncate -s 3G test.xml + > $ instdir/program/soffice test.xml + + causing a SIGSEGV at + + > #0 0x00007ffff7f193a0 in rtl::str::stringbuffer_insert<_rtl_String, char>(_rtl_String**, int*, int, char const*, int) (ppThis=0x7fffffffb330, capacity=, offset=2147479552, pStr=0x20a92e8 "", len=4096) at sal/rtl/strtmpl.hxx:1424 + > #1 0x00007fffb6af04e5 in rtl::OStringBuffer::append(char const*, int) (len=4096, str=, this=0x7fffffffb330) at include/rtl/strbuf.hxx:594 + > #2 (anonymous namespace)::OrcusFormatDetect::detect(com::sun::star::uno::Sequence&) (this=, rMediaDescSeq=) at sc/source/filter/orcus/filterdetect.cxx:80 + [...] + + (Ideally, orcus::detect would only need a short prefix of the stream's content, + but the implementation in + workdir/UnpackedTarball/liborcus/src/liborcus/format_detection.cpp delegates to + functions like orcus_ods::detect in + workdir/UnpackedTarball/liborcus/src/liborcus/orcus_ods.cpp, which passes the + content through some zip_archive that presumably needs the full content.) + + Change-Id: Ifaa37ee887d8296cbcf971313bde347ddfb17c12 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136297 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit a95c585433246813096e8890b7ed6ef4fe30c621) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136253 + Reviewed-by: Michael Stahl + +2022-06-23 Caolán McNamara [08166a27b1c1fb1b2058a3bfc4304cbfc7bad258] + + gtk: fix leak in treeview tooltip + + Change-Id: Ib268729abf501da7e9f217ac3c3700cd853dfd43 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134781 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2022-06-23 Caolán McNamara [dff039e61ac737c779b538d20a57a5e0a401cf60] + + crashtesting: assert seen with forum-mso-de-53682 + + not reproducible for me, but appears to be an empty string here + sometimes. + + Change-Id: I8465f178cc7e5a6efdc08c1d15c154eeb2277c7b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136247 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-22 Eike Rathke [2f6b667ce9bf3d3d1bfd13d25b6c7605fc01577c] + + Resolves: tdf#149589 No "+ or - may start formula" when editing content + + If it was a formula already it would start with = anyway. + + Change-Id: Ib3c0ebcaf99231d387f1aace8e1a5642061de3a0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136208 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 909cdd552199d35f7c10be0a8be370158aea0815) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136173 + Tested-by: Eike Rathke + Reviewed-by: Caolán McNamara + +2022-06-22 Christian Lohmaier [9ccd84fb9df1767ff01a99378ff240c4d5fed7c3] + + Update git submodules + + * Update helpcontent2 from branch 'libreoffice-7-3' + to fa41fa02307248077c426b0916004b43c13d46c2 + - make generated help files deterministic/reproducible + + generate-id() is only stable within a single invocation, the results + vary from run to run, causing two builds of the same codebase result in + different output. + Due to help including snippets from different files, a simple count + won't be unique enough, but combining it with the sourcefile's topic-ID + does the trick. + + Change-Id: I2ab8988bc34c9136fcd99d074cf0b189a8f40eb7 + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136197 + Tested-by: Jenkins + Reviewed-by: Olivier Hallot + (cherry picked from commit b48ace599e8c109c4090c178823c6718f78103da) + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136171 + Reviewed-by: Caolán McNamara + +2022-06-22 Xisco Fauli [c55559cacb99123b420a593a8fa857dfac451085] + + sw: fix crash in SwEditWin::MouseButtonDown + + Since GetPageAtPos might return nullptr + + See https://crashreport.libreoffice.org/stats/signature/SwEditWin::MouseButtonDown(MouseEvent%20const%20&) + + Change-Id: I4ad3492ef46bcd7b263a4de92efd9439a966fb56 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136243 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-22 Caolán McNamara [13161a02952470d06e86cbed711ce69c93e10bca] + + crashreporting: apparent null derefs of SfxViewFrame::Current() + + Change-Id: I0e2c07a7eaa0a13be0a44c7cd187feec8ed4c2c7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136241 + Reviewed-by: Xisco Fauli + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-21 Samuel Mehrbrodt [f894fa135bea1b33c51fd94e2138a7c9b16b2776] + + Fix crash when no valid EntryDescriptor found + + When opening macro run dlg, the last selected entry is displayed again. + When no entry was found, a crash occured in some situations + (GetLastEntryDescriptor() returned garbage). + + Initialize m_aLastEntryDesc properly, and make sure the method returns + when no last selected macro was found. + + Also fix some nullptr crashes which occurred during UITests + + Change-Id: I7bd1a0b8824725f9935876ae26d8222410a3bc25 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136140 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 499ecbf3a36990c29dc7e1fb9b0ecb1d297c2848) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136170 + Reviewed-by: Xisco Fauli + (cherry picked from commit 2545a7700f8a4872fd18cb8b1fffeaa4599136d9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136236 + Reviewed-by: Thorsten Behrens + +2022-06-21 Eike Rathke [3e24263d6174cd1e33c4216acbd0130b4ffa2dce] + + Resolves: tdf#147265 Return correct default if currency format is duplicate + + For the default currency format + SvNumberFormatter::GetCurrencyFormatStrings() returned always the + last added position, regardless whether that format was added or + not, which it isn't if the format code is a duplicate. Let + addToCurrencyFormatsList() return the position of the existing + format if the duplicate was rejected and use that for default. + + Change-Id: I148d7379de75cae402b063f7b2f92947e345176f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136187 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 36cf12d449c892e6bbacb7da5f4b008f7762232b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136166 + Reviewed-by: Xisco Fauli + +2022-06-20 Luboš Luňák [c0d9d30d8e2900c23b5d0ccac49064d2fb6650f3] + + fix SwViewShellImp::AddPaintRect() for sub-rects (tdf#146536) + + Using just two corners to build the new resulting rect works only + if the new rectangle actually really extends the previous one, + but the <= means that this may compress also rects that are already + contained in the previous rect, in which case it's necessary to + make sure to use union to get the larger coordinate). + + Change-Id: Ie4303dfef903bded6d63625531e424a32cc01b06 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136144 + Tested-by: Luboš Luňák + Reviewed-by: Luboš Luňák + (cherry picked from commit a6b9fbfc15b9e1756ac8ea939b4c588e3f170c1d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136158 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-20 Stephan Bergmann [5fb04477e6850fdfb54bb481c1901accea397ffe] + + tdf#149639 Missing #include in various external code + + ...which is a problem presumably since GCC 13 trunk + + "libstdc++: Avoid including for std::char_traits". (All the broken + C++ code used unqualified uintptr_t etc. rather than std::uintptr_t etc., so I + deemed it more appropriate to include rather than .) + + Change-Id: Id9dfc383c5986126a425971c4557b90ac45ac963 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134760 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 1e51a325a8e21eb5f900336a0c9e1bd78ed330ab) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136163 + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + +2022-06-20 Rizal Muttaqin [db59cbaed268aa9e19a88e34fea2c465c55c1f0c] + + Sukapura: tdf#149008 differentiate Description and Caption icons + + Change-Id: I063e2d881fb17516dd2a76ede76d8d5b2831b1fb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136130 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + +2022-06-20 Rizal Muttaqin [183ed958b0c6d49cdae4d72e23f8c0b9d5abc579] + + Sifr: tdf#149008 differentiate Description and Caption icons + + Change-Id: I5fdcd8bc72516153fd027460dcf5c58285573cab + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136128 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-20 Caolán McNamara [6d9bcfabc727e97536364f6f0bda12fc85876ac2] + + tdf#141186 ensure child of collapsed expander is not mapped + + If the expander is initially collapsed then when mapped all its children + are mapped too. + + If they are mapped then the mnemonics of the children are taken into + account on shortcuts and non-visible children in a collapsed expander + can be triggered which is confusing. + + If the expander is expanded and collapsed the child is unmapped + and the problem doesn't occur. + + So to avoid the problem of an initially collapsed expander, listen to + the map event and if the expander is mapped but collapsed then unmap the + child of the expander. + + Change-Id: Ib4c7a704295b338230357c4c4102a3692f8a9707 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134453 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2022-06-20 Julien Nabet [b95071969d95cbf3d56b53286ccefd4c43033fc1] + + tdf#128196: filenames containing # get truncated when saving to GVFS + + + replace getLength() by a call to isEmpty() since we're here + + Change-Id: I77a318ea3e8ceeeddd6c64cee25aa6700cb3457b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136084 + Reviewed-by: Julien Nabet + (cherry picked from commit 2a38c834c8b7712421f1125aa0e382de70767b55) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136122 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-20 Samuel Mehrbrodt [41ff8b83e04366020785bcfb3d2af3f165d007e1] + + Show start center when closing last document + + also when there are active UNO connections. + + (Behavior was different when there were active UNO connections) + + Change-Id: Ief37b0f362b7e2a47eccbec985ee3017c475046c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135905 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 539374caa5deac788f394a54a75b6e167ab04864) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135940 + Reviewed-by: Thorsten Behrens + +2022-06-20 Michael Stahl [03834f003c56e6646e3b274c418acd4fc344fd8e] + + tdf#135976 sw: preserve flys on backspace/delete with redlining enabled + + This is a continuation of commit 85376a02348810812d515ee72140dbf56f2b6040 + for the case when redlining is turned on. + + Also try to restore the anchors in SwUndoRedlineDelete. + + (regression from commit 3345feb67f2c49a1b76639965b56968e1c5f03ee) + + Change-Id: I4199f5755398d469a606618c037ad9756cb7aeba + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135909 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 932a8efce878547bfd81521d0cf1ddfe8dc33ec6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135968 + Reviewed-by: Thorsten Behrens + +2022-06-20 Rizal Muttaqin [33b6a9c3107da31cd1d45f315610ec443b89271d] + + KJ: tdf#149008 differentiate Description and Caption icons + + Change-Id: I6f02d336c1da9108199a3aa83efe033b84784a48 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136134 + Tested-by: Rizal Muttaqin + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 39ffe421047e69554e601cedf0fde931ccc18ca7) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136132 + Tested-by: Jenkins + +2022-06-19 Luboš Luňák [5704c346eac79f211f0487e369c0020c0595e1d8] + + upstream Skia fix for Vulkan crash on texture binding (tdf#148624) + + Change-Id: Ic16a516bfde04aba0336baca58f605d6cf9fd413 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136035 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-19 Rizal Muttaqin [68ccb7bc516ee9baf08f1955c76330e8d7738bb6] + + elementary tdf#149008 differentiate Description and Caption icons + + Change-Id: Ie05280cb594a748f9189eafccea2b219316065ab + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136098 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit a1b01a1840e119a055d1c237e65892f69d3f45a9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136116 + +2022-06-19 Rizal Muttaqin [4278c6420edfc122a048c08b2e8a29d281e5f92e] + + elementary Sifr: tdf#144303 Calc cross cursor + + Change-Id: I2805060487720a434f3b68b24ca05d576d10d717 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136097 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 5b4d85247d96e4e70d35fff4b4e08f3cd2453c20) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136114 + +2022-06-18 Rizal Muttaqin [4aa61f7cf13cfc2bc9f0af0a4ac2110d350e7bc1] + + Breeze: tdf#138400 update General Format icons + + Change-Id: I7daad09129c505e300d84634768f4bcf14653500 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136069 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 4207f5c291902cd157f204e4f025b040f4445912) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136041 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-17 Miklos Vajna [8581413deb7715dde56b84739e71301f12a4e326] + + sw HTML export, XHTML mode: fix lost
  • with a list header + item + + There is a general mismatch between XHTML and Writer lists: XHTML can + only contain list items (for ordered or unordered lists), while Writer + can contain list headers and list items. List headers have no bullet or + number at the start, list items are the normal text nodes. + + Commit 8c2607ae3ce143586e623532b8ae5288277ec3ac (sw HTML export, XHTML + mode: fix lost
  • when last list item is not numbered, 2022-02-21) + fixed the list item end side of this problem: if all text nodes in a + list are headers, then don't write ul/ol at all, otherwise end list + headers with as well to make sure the output XML is valid. + However, this created a mis-match, the starting
  • for list headers in + a list which have non-header text nodes at as was not adapted. + + Fix the problem by extending OutHTML_SwFormat() so list headers in a + list with non-header text nodes always have a
  • and
  • , and this + condition is the same on the start/end side. + + Calculating if at least one text node is non-header in a list may not be + cheap, so reuse the already calculated info from + OutHTML_NumberBulletListStart() in OutHTML_SwFormat(). + + Change-Id: I3817a489f16166fc5b4c33ee64e2283c41a4402c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135999 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit b2bee5a4db5552c4d408800908ca717b4ea2564a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135990 + Reviewed-by: Xisco Fauli + (cherry picked from commit 472a40b022ef685610faa663421a00cfe6121c24) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136019 + Reviewed-by: Michael Stahl + +2022-06-17 Stephan Bergmann [e90f3bef395cd4a1dd0302202476531a6ecb735d] + + rhbz#2097411 Avoid obsolete PyThreadState_Delete crashing Python 3.11 + + 1fb53a637597f76bea86514b62ddfad34f60c889 "pyuno_loader::CreateInstance: delete + the initial PyThreadState" had added the PyThreadState_Delete for claimed + benefits but whose details appear lost to history (cf. the comment thread + starting at + + "pyuno_loader::CreateInstance: delete the initial PyThreadState"). And at least + a recent master Linux --enable-python=fully-internal build with the bundled + Python 3.8.12 appears to succeed `make check` just fine with the + PyThreadState_Delete temporarily removed. + + But on the other hand, building against upcoming Python 3.11 now started to make + CppunitTest_services fail with + + > Fatal Python error: init_threadstate: thread state already initialized + > Python runtime state: initialized + > Thread 0x0000ffff81c8b020 (most recent call first): + > + > Fatal exception: Signal 6 + > Stack: + > /builddir/build/BUILD/libreoffice-7.3.4.2/instdir/program/libuno_sal.so.3(+0x37c28)[0xffff81be7c28] + > /builddir/build/BUILD/libreoffice-7.3.4.2/instdir/program/libuno_sal.so.3(+0x37e40)[0xffff81be7e40] + > linux-vdso.so.1(__kernel_rt_sigreturn+0x0)[0xffff81ccb7ec] + > /lib64/libc.so.6(+0x82878)[0xffff81742878] + > /lib64/libc.so.6(raise+0x20)[0xffff816fae00] + > /lib64/libc.so.6(abort+0xe8)[0xffff816e72b8] + > /lib64/libpython3.11.so.1.0(+0x104e28)[0xfffee4de4e28] + > /lib64/libpython3.11.so.1.0(+0x105200)[0xfffee4de5200] + > /lib64/libpython3.11.so.1.0(PyThread_get_thread_native_id+0x0)[0xfffee4ed6764] + > /lib64/libpython3.11.so.1.0(PyThreadState_New+0x14)[0xfffee4ed6628] + > /builddir/build/BUILD/libreoffice-7.3.4.2/instdir/program/libpyuno.so(_ZN5pyuno14PyThreadAttachC2EP3_is+0x78)[0xfffee4c8c52c] + > /builddir/build/BUILD/libreoffice-7.3.4.2/instdir/program/libpythonloaderlo.so(pyuno_Loader_get_implementation+0x5c)[0xfffee5243060] + > /builddir/build/BUILD/libreoffice-7.3.4.2/instdir/program/libuno_cppuhelpergcc3.so.3(+0x544b4)[0xffff815544b4] + + because of the PyThreadState_Delete. (The deleted PyThreadState, while not + reused again directly, is still recorded in the state obtained from + PyInterpreterState_Head() later.) + + So conservatively keep the PyThreadState_Delete of unclear benefit for older + Python versions and only drop it for 3.11 where it is known to have negative + effects now. + + Change-Id: I9b99f1e947f0b165ddc95c2bfbd764858dda39db + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136006 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 1638b4f78af70b7b97d0a081ed51390dd87bf1f9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136025 + Reviewed-by: Michael Stahl + +2022-06-17 Eike Rathke [0750bc969ac515fb9390f02ddcaa022c846f2d8a] + + Resolves: tdf#147822 ScUnoListenerEntry container must be std::list + + ... instead of std::vector to not get invalidated iterators when + the container is resized. + + Regression from + + commit f8defe59ff75df2b516ee407f1dac22b0ac72a19 + CommitDate: Wed Sep 6 22:45:10 2017 +0200 + + Replace some lists by vectors in unoobj (sc) + + which was bad for this case. + + Change-Id: I8d3a001242865cadc82b359a3198906d26373a41 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136007 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 7a0a0e23b7e81c1ee0601824a4ee990a2178f98b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136023 + Reviewed-by: Xisco Fauli + +2022-06-16 Caolán McNamara [7e259e7b6e28e08a1ac2055b5a4c9d6bc97f78d2] + + tdf#149529 crash on deref deleted ScDocument* + + maybe a problem since + + commit 46419cd7a2d453c6f252c28dfb9dbfb08605e1c4 + Date: Tue Jun 18 15:11:30 2013 -0400 + + ScFormulaCell is no longer a child class of ScBaseCell. + + Change-Id: Id33072f193045e2eaf51373b47dac803f9a5d52c + + presumably the cloned ScColorScaleEntry should end up with + a ScFormulaCell for the destination document and not the source one + + Change-Id: I451d5827be183198b61116ab8c582cfda03b2031 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135998 + Tested-by: Jenkins + Reviewed-by: Eike Rathke + (cherry picked from commit 10404751bcb643605c50d530e3855ae005e60a5e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135992 + +2022-06-16 Miklos Vajna [01f4878da9bcb844c3c871df808f24fdc7a189ab] + + oox: fix div by zero in lclCalculateCropPercentage() + + Similar to what oox::vml::ShapeType::getAbsRectangle() already does. + + Crashreport signature: + + Fatal signal received: SIGFPE code: 1 for address: 0x7fcd55eeff59 + + program/libooxlo.so + oox::drawingml::GraphicProperties::pushToPropMap(oox::PropertyMap&, oox::GraphicHelper const&, bool, bool) const + oox/source/drawingml/fillproperties.cxx:103 + + Change-Id: I0f82cbc955d9e60bad103682638b07153a5589e7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135910 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 2859ec288f2c1323ea3123d82cb1684b349ff598) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135944 + Reviewed-by: Xisco Fauli + +2022-06-16 Eike Rathke [45f2ad8f0ec4088217233132cab093180edec79c] + + Related: tdf#149325 Fix yet another VbaRange empty ScRangeList access + + Change-Id: If2c44795ab794482b841138bdd55f37c4d30b592 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135824 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 9470c5531dc928d438a6a7f4d47f2d82f2296cc1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135874 + Reviewed-by: Xisco Fauli + +2022-06-16 Michael Stahl [249dbfec5174218d57ce6452e45ccb629884d08c] + + sw: fix odd m_bCanGroup check in SwUndoRedlineDelete + + This looks like copypasta, presumably both flags must be true to allow + grouping. + + Change-Id: I96afeac98f94b122a3b1a155940776a3aa44b0a2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135908 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit f31f11f3222933dbc96dc672e6fa52233cda12be) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135934 + Reviewed-by: Xisco Fauli + +2022-06-16 Samuel Mehrbrodt [d22dc69d7c8f9134457c18303950d65ae5b0db31] + + Make sure pEntry is not null + + Crash seen: + > mergedlo.dll!SvTreeList::GetDepth(const SvTreeListEntry * pEntry) line 106 + mergedlo.dll!SalInstanceTreeView::get_iter_depth(const weld::TreeIter & rIter) line 4230 + basctllo.dll!basctl::SbTreeListBox::FindVariable(const weld::TreeIter * pEntry) line 271 + basctllo.dll!basctl::SbTreeListBox::FindModule(const weld::TreeIter * pEntry) line 695 + basctllo.dll!basctl::MacroChooser::BasicSelectHdl(weld::TreeView & __formal) line 473 + basctllo.dll!basctl::MacroChooser::RestoreMacroDescription() line 158 + basctllo.dll!basctl::MacroChooser::run() line 178 + + Change-Id: Ic85758c0bbee952d0a23b1d52e8bbdd231e8de26 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135914 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 21747f8ef471080817db464a91ef203813e84677) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135938 + Reviewed-by: Xisco Fauli + +2022-06-16 Michael Stahl [b7ab83bd96c70932c2223c8d0b3bc0f24327cef2] + + tdf#139982 sw: preserve flys in Replace with redlining enabled + + The problem is that there isn't a redline type "Replace" so it's + represented as Delete+Insert. + + To prevent the flys anchored in the text from being deleted, move the + anchors to the point between the old (deleted) and new (inserted) text. + + (regression from commit 28b77c89dfcafae82cf2a6d85731b643ff9290e5) + + Change-Id: Ib600c9dbfb9421917e4b8d61195c48cf0b364f06 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135604 + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + (cherry picked from commit 646c6ddd91a98afddf914e3889cb269fc814c060) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135737 + Tested-by: Jenkins + Reviewed-by: Thorsten Behrens + +2022-06-16 Michael Stahl [918f435d48de3f29814f187c8621c1a564c5b835] + + sw_redlinehide: skip unnecessary updates when undoing redlined delete + + When reproducing tdf#135976 and then Undo, an UAF crash happens here: + + assert(!pFrame->GetDrawObjs() || !pObjs->Contains(*pObj)); + + The pObjs was actually deleted and then re-created, because the pObj was + removed from the frame and added again to the same frame. + + This is a bit unexpected, so prevent it by taking a shortcut in the + caller UpdateFramesForRemoveDeleteRedline() to insert a check that had + been removed in commit 14e87a4b15d31a34e6053f6194688f3aa23af991. + + If the rPam is inside a single node, the sw::RedlineUnDelText hint that + was sent to the SwTextFrame should be sufficient to update it and the + rest of the code in the loop that deals with newly split paragraph can + be skipped. + + Change-Id: I5f36eb91bc20003887ee0bad03ea4a6e67135de9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135907 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit cf9a16caf5012d65b2a45a5525e36e40585dd35c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135892 + Reviewed-by: Thorsten Behrens + +2022-06-15 Bartosz Kosiorek [8419e2909aef8916111e4dce9c0a070464a06e66] + + tdf#131506 tdf#143031 EMF+ Fix displaying PathGradient fill + + With previous implementation, the EMF+ import is calculating + gradient positions wrongly. It is causing warning: + + SvgGradientHelper got invalid SvgGradientEntries outside [0.0 .. 1.0] + + and the gradient was not displayed at all. + This patch fixes that and gradient is displayed correctly + + Change-Id: I6229c516165436d0c7ae187d9eb69b5494da396f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135607 + Tested-by: Jenkins + Reviewed-by: Bartosz Kosiorek + (cherry picked from commit 7b12c659842eb53b96dd98ecea65c6071506dfbb) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135746 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135858 + +2022-06-15 Samuel Mehrbrodt [45d400ec42a59b03aca00cf1e08e3a9be2488537] + + Fix leak with stock widgets in a dialog from an extension + + When loading a dialog from XDL, buttons can have dlg:button-type="cancel" + or dlg:button-type="help". These buttons might not have a peer when + they are not referenced from the extension. + + In this case, they also weren't disposed when the dialog was disposed, + leading to an abort on exit. + + Change-Id: I799d7535b766984fde47cafbe41ee6e89e476205 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135266 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 4879f99b824036b3d409ed52f74dc3eb3b4949e4) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135745 + Reviewed-by: Michael Stahl + +2022-06-15 Caolán McNamara [d26e960fb3cb6dcff887654b3ec51e5cdea5a878] + + crashtesting: negative index seen on loading forum-de3-15472.ods + + Change-Id: I737e6132f117a85c4d7e5df4a33561d09eff86af + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135837 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-15 Miklos Vajna [2e02e73ce7c4ea6375f2f73b856c12a97488d190] + + vcl: restore lost spinner images + + This went wrong in commit 13aa5081793f133077610cd01b7f01ee765b4add + (remove unused defines, 2021-11-19), the trouble is that + postprocess/CustomTarget_images.mk needs these images to be listed in + bitmaps.hlst explictly, and the makefile won't see that the same names + are used in Throbber::getDefaultImageURLs(), constructed dynamically. + + (cherry picked from commit 214438f1dcce52043c27c39e529cf60ff96c98cf) + + Change-Id: Ie7ea1734ed417d17e1ce54d6a755509ef52572d1 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135829 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 358391950bf67b689668bc7b4018371d5a846ae3) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135850 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-14 Aron Budea [2c37dc951b08f92406d1fc74052e20eb7cba98f9] + + tdf#149536 Move Up/Down in Data Table switched enabled statuses + + Regression from aa7e7747f4296b3b92379c3c7703b80ad8af6a8b. + + Change-Id: Id2b66b2e87fdb13a55b32a4989cae2c7796fd003 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135801 + Tested-by: Jenkins + Reviewed-by: Aron Budea + (cherry picked from commit b33d89d8e97ba4bfb17743632dee471727d11ac5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135848 + Reviewed-by: Xisco Fauli + +2022-06-14 Caolán McNamara [adc0d38ea1b434e0f5c996acce87fc9106706801] + + crashtesting: assert seen on loading forum-en-38962.ods + + mismatched Push/Pop, catch offending exception + + Change-Id: Ib2297a8ab04a2f2491e4c922d9e4db82a66ea911 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135841 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-14 Michael Stahl [67eec140556edb42280def88e987448aaa221c5e] + + tdf#148868 sw: handle selection then Insert similar to Replace + + ... if the selection is inside one paragraph, to avoid deleting flys + anchored in the selection. + + From a code point of view it's a bit inconsistent to do this, but + from user point of view there are some ways to conveniently create + a selection such as by double clicking a word. + + (see also tdf#133957) + + Also in SwWrtShell::AutoCorrect(), which oddly enough might get called + with a selection from textsh*.cxx, at least in theory. + + Change-Id: I8cf9459e5a7ec7754ce8fe323cd158c7e84a5c93 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135606 + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + (cherry picked from commit d72bee64a97650507d042f17846b6fc427b8434c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135839 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-14 Caolán McNamara [8e14296fcf11bafe91f3ec45598841ba117b20b8] + + crashtesting: crash seen on exporting forum-it-5909.ods to xlsx + + Change-Id: I64b629e2f5b0ece7f903049bd006775463f97586 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135752 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-14 Michael Stahl [c935e6d68c06e50fb8de81a8497b4d9a9c5dda1f] + + tdf#149507 sw: don't delete bookmarks in SwUndoInsLayFormat::UndoImpl() + + The problem is that the CorrAbs() here deletes the bookmarks in the fly, + and this isn't supposed to happen at this point, because DelFly() will + call SaveSection(), which saves the bookmarks in the m_pHistory via + DelContentIndex(), so that they can be re-inserted in Redo/InsFly(). + + Also change the code that was inserted in commit + 0ee28fdf3e9a0bd8763eda6299af1d5c873a9dcf to not call CorrAbs(). + + (although this bug has existed forever, crashing is a regression from + commit 657de5fba12b0e9afcdee361654d2a2d0dbd7311) + + Change-Id: Iabac0ccf5587d5d974e88cbbc3e05bbaed3526f3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135728 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 6de844c5da695bf4605bef5510d33e74a7ff04ee) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135750 + Reviewed-by: Caolán McNamara + +2022-06-14 Michael Stahl [1c9e7e9342612f9db59eb8b2d6dc28d475459e34] + + sc: ODF export: fix style:font-name on EE text/paragraph styles + + The problem is that sc contains its own duplicate export of EditEngine + styles, where the SvxFontItem aFamilyName is exported directly to + style:font-name. + + But style:font-name refers to a style:font-face, and for a given font + family name there may be multiple font-face elements whose names have a + counter appended, and they are written in some non-deterministic order, + so effectively this picks font-face at random. + + In XMLTextExportPropertySetMapper::ContextFontFilter() there is already + code to do the lookup, and also a fallback when the lookup fails to a + set of individual attributes fo:font-family style:font-style-name + style:font-family-generic etc., which is actually used for fonts in + control shapes, which have "unknown" for one of the components, so there + could be some other problem with them. + + It doesn't look possible for the lookup to fail for EditEngine items, as + ScXMLFontAutoStylePool_Impl should have added all of them. + + This problem was detected by current ODFunDiff in 22 of 2000 ODS files; + with this fix only other problems remain. + + Change-Id: I276f705296df628b0869526f4ea676c47a014328 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135684 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 32dd76143bdf55ac73f03f705097453521b4bf2c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135735 + Reviewed-by: Eike Rathke + +2022-06-14 Michael Stahl [7df50ecd9dea623058dc7bf9095fd13d9bb49860] + + tdf#140007 sw: fix SwUndoReplace + + (regression from commit d6b0e84b236b78f4b21bd16e46dda3fa0876096d) + + Change-Id: I1facf1584a349d1d087438f4e6fd3a63a80c6f7e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135585 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 45613274794636ba98d0e978fe872511297d275d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135549 + Reviewed-by: Xisco Fauli + +2022-06-14 Miklos Vajna [3263893a50e3cdb40b69811b0829ea2c74de8731] + + sw XHTML export: avoid writing default transparent background for ReqIF + + We started writing properties of tables and rows since commit + c3c3303516c3da9372dce3f05f38f15a104e961c (sw XHTML export: output table + / table row background format using CSS, 2022-05-10). + + In case the SwTableLine has an explicit SvxBrushItem with its color set + to COL_TRANSPARENT, we turn that into a "background: transparent" CSS by + default. This is a 1:1 mapping from the doc model, but HTML defaults to + this already, so this is considered as noise. + + Extend IgnorePropertyForReqIF() to filter out these unwanted defaults, + and fix SwHTMLWriter::OutCSS1_Property(), because it used to not pass + the CSS value for the filter function. + + The behavior for table cells is unchanged, we continue to not export + cell properties (in the ReqIF case) at all. + + Change-Id: Idbcd07809e159def694f4de017eebc7ad4104575 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135576 + Tested-by: Jenkins + Reviewed-by: Miklos Vajna + (cherry picked from commit 04cc6e079e3122c183054fde046c054ed6c7b737) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135707 + Reviewed-by: Michael Stahl + +2022-06-14 Eike Rathke [e463c3d6e1e657a2a281f3cf0ae1dc01bdc25c5b] + + tdf#149531 tdf#149325 Eliminate unconditional ScRangeList::front() access + + This is a combination of 2 commits. + + Resolves: tdf#149531 Use initial sheet range for VBA Columns and Rows + + ... if the ScTableSheetObj's ScRangeList is empty. It might even + be that was never intended to be used and worked only by accident + in the past (pre 6.0), but it's somewhat unclear. It may even get + in the way in case it exists and the (first) range was modified, + e.g. shrunk by a Delete, as the resulting column or row object + could be different from the initial sheet range. + + xChange-Id: Ib9911df1b23802054a5bb0621bb7f5559ef3f39b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135732 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 3ad12672e924f7aef394119f9fe5f0b06a900b9e) + + Related: tdf#149325 Eliminate all unconditional ScRangeList::front() access + + ... to prevent crashes, and where possible substitute a missing + element with the original sheet object range. + + xChange-Id: I245844e89fa3eb7d6ec07e279bdd23022fd77958 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135773 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit d6331fc7abe545ff0a369c41ab3f55b8f44a2cc1) + + Change-Id: Ib9911df1b23802054a5bb0621bb7f5559ef3f39b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135739 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2022-06-13 Caolán McNamara [e0b98f2446eca90773c83831287e1037fa5e4a57] + + crashtesting: fix crash seen on loading forum-mso-de-98993.xlsx + + which may explain the backtraces seen with BitmapFilterStackBlur::filter + and BitmapBasicMorphologyFilter::filter in crashreporting + + Change-Id: Ib55cde1603d354b8ca0e336a08fe2d73b548f73f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135695 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-13 Xisco Fauli [50ee953b0edc571ac9518c3e1be9242b78df0554] + + tdf#149503: Check size of vectors + + Crash introduced by 41f95c4a35a6335e9edb2f51c11d136d88bd0749 + "Remove SC_DPOUT_MAXLEVELS limit in Pivot" + + This brings back the old behaviour and now the + "You cannot change this part of the pivot table." message + is displayed again + + Change-Id: Ibad84c0a279d7d67b709b7e311ac875739cdb210 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135578 + Tested-by: Eike Rathke + Reviewed-by: Eike Rathke + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135717 + Tested-by: Jenkins + +2022-06-13 Christian Lohmaier [8875411275808f24668057c6b95a5ed726ae5631] + + autocorr for da: fx can appear at end of sentence + + as in e.g. "Vi kunne jo tage bussen, fx." so remove the "fx." entry from + the autocorrect list + + Change-Id: I5c03f46bd1e35fcf8fa731983c7459f2ba99b174 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134107 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 3a688ca467cebd65ef30ab80d4211715b1665348) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135706 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-13 Caolán McNamara [f57b4c7e8bf83d9e59782a478b105aa9cdb7a042] + + Related: tdf#149490 OLE Object dialog should be modal + + Change-Id: I909f2afbf149c4d92c97e04c2d8f93648e1e3162 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135636 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-13 Eike Rathke [801303c4d9e02fbc46216fd3b58186b48aec0258] + + Resolves: tdf#149484 Handle with + + Backport as the current handling when writing such format (even if it + doesn't display the text literals) is utterly broken and results in + + + -- + + + so an implementation correctly reading such (e.g. now upcoming + LibreOffice 7.4) would create a format "--" and display that for any + value, true or false. + + This is a combination of 3 commits. + + Related: tdf#149484 Display BOOLEAN literal string text additions + + xChange-Id: Ifbaf0b18178091c3a340a7c4bc66f78397aadc18 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135506 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 2932dc7aa0c1239d39e060e6b7627317f1305549) + + Resolves: tdf#149484 Read and handle in + + xChange-Id: I1be5f2be908eb88aa4ef7436ea7c09f35b076acf + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135507 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 025231224b8b076e280235cd2b943addd2fb0755) + + Related: tdf#149484 Write proper with + + xChange-Id: I46b7987dde25840ae0b6e5871b14e3806c6e4ac8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135508 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 33a8c4bd0e8533ab42894280e7e04c13a47aefa9) + + Change-Id: I1be5f2be908eb88aa4ef7436ea7c09f35b076acf + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135586 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-12 Eike Rathke [cf2963b07b85dbf789d2b55640214523cc38f963] + + Resolves: tdf#148072 Restore sheet-local names for Undo of Cut + + Undo of Cut uses CopyToTable() and not UndoToTab() as Copy does, + so copy the sheet-local names also *from* Undo and not only *to* + Undo. And mark for ScAreasChanged broadcast. + + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135568 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit b7eddf3e9c2db503dde632b35513844806be3c36) + + Conflicts: + sc/source/core/data/table2.cxx + + Change-Id: Ib07f711a7d407dafdf548873291f1ccc81b85d47 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135587 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-10 Tomaž Vajngerl [5319087ab75a01793462c8c41cebfa1996cc688a] + + tdf148321: convert OOXML inset values to text distance values + + Inset values for top, bottom are calcualted differently in OOXML + and need to be coverted on import to the text distance LO values, + that place the text relative to the shape correctly. + + At export, the values can be converted back to the OOXML inset + compatible values, but the values are not always converted back to + the same values as the conversion is not bijective, however they + do render the same. + + This also adds the test for the conversion when importing and + checks that the exported values are expected. + + Change-Id: Ic64eec1a2a80ddad997f916da3e87dc30aaa12be + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135463 + Tested-by: Jenkins + Reviewed-by: Tomaž Vajngerl + (cherry picked from commit e216988657e20a1e52986f742ab60464697bcb41) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135504 + Reviewed-by: Miklos Vajna + +2022-06-10 Michael Stahl [054c248127c78521b4a4e7aacd8936bd54259996] + + (related: tdf#139514) sw: fix Undo of delete with at-para fly + + Nonobviously, there are situations where the anchor node must be + preserved and restored when it's not on the node that is being deleted. + + (probably regression from commit 91b2325808a75174f284c48c8b8afc118fad74e4) + + Change-Id: I39f09ddb631204c8ad522f9ec7068d235ca94ad2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135509 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 12acdce71dd6b6af2c52ba8fa3248d3166418543) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135518 + Reviewed-by: Miklos Vajna + +2022-06-10 Michael Stahl [5192cd430e8cab0ed04f8c70c5194397455ac705] + + tdf#133957 sw: don't delete flys on Backspace/Delete keys + + Also fixes: tdf#134007 tdf#138835 tdf#139514 + + When a character is deleted via the keyboard by Backspace or Delete key, + an artificial selection is created in SwWrtShell::DelLeft()/DelRight(). + + Ideally this should not delete flys that may be anchored to the + paragraphs, but unfortunately this may happen if there are only 2 empty + paragraphs in the section, because then the artificial selection cannot + be distinguished by the SwDoc implementation from a selection from + Ctrl+A (Select All), which *should* delete the flys. + + So introduce a new flag that needs to be passed down multiple layers so + that SwUndoDelete can use it to determine if flys should be deleted, and + translating it to a flag that had been introduced to preserve flys in + ReplaceRange() previously. + + There are a couple more callers that look like they want to "replace" + some text, so guess a bit at where to set this new flag. + + (note: of course fly anchored *as char* must be deleted via keys.) + + (regression from commit e75dd1fc992f168f24d66595265a978071cdd277) + + Change-Id: Ib4467476b12a12aefbbcb74ab9802f9318cf9aa0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135476 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 85376a02348810812d515ee72140dbf56f2b6040) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135517 + Reviewed-by: Miklos Vajna + +2022-06-10 Miklos Vajna [2744a1d2a2ccc6ddf8c5c939af6480a5e72b9e1a] + + sw XHTML export: avoid writing background of table cells in ReqIF mode + + ReqIF mostly forbids using CSS styling on elements: + IgnorePropertyForReqIF() only allows 2 CSS keys by default. + + This restriction was relaxed in commit + c3c3303516c3da9372dce3f05f38f15a104e961c (sw XHTML export: output table + / table row background format using CSS, 2022-05-10), to allow + background for tables and table rows, using CSS markup. An unwanted side + effect of this is background for table cells, which is still considered + invalid. To make this nontrivial to fix, Css1Background::Table is used + to track formatting for all of tables, rows and cells. + + Fix the problem by extending Css1Background with a TableRow and + TableCell and then audit all uses of Css1Background::Table to explicitly + say if they mean table, row or cell. This keeps table and row + backgrounds, but fixes the unwanted cell background. + + Also document the 3 functions doing the export of table / row / cell + background export to improve readability. + + Change-Id: I03301b1fd25593cbe83489dbf140e80138d4a0de + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135570 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit d701eff3519287db599a2612a635bc5f610ba082) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135542 + Reviewed-by: Michael Stahl + +2022-06-10 Miklos Vajna [6e6b381b520def141f99c9350bc79d5177fd76f5] + + sw: fix use-after-free in SwFrame::ImplFindPageFrame() + + Header-footer controls have a non-owning pointer to their page frames in + Writer views, so whenever a page frame gets deleted, we need to manually + make sure that the header-footer control doesn't have a pointer to the + deleted page frame. + + This already works with a single view, but in case one view has a + visible header-footer control and an other view deletes the page frame + that is known to the header-footer control, then we have a problem. + + Fix the problematic outdated SwFrameMenuButtonBase::m_pFrame by + extending SwPageFrame::DestroyImpl(), so it un-registers itself (before + deletion) not only from the current view, but from all views. + + Found by online.git's: + + tst=/tmp/testfoo.odt + cp test/data/hello-world.odt $tst + ./coolstress wss://localhost:9980 $tst test/traces/writer-hello-shape.txt $tst test/traces/writer-document-edit.txt $tst test/traces/writer-mash-text-table.txt $tst test/traces/writer-rambling-text-table.txt $tst test/traces/writer-add-bullet.txt + + although also reproducible on the + desktop, in case you have two views (windows), do cltr-enter to have 2 + pages, go to the 2nd page in both views, view 1 clicks on the 2nd page's + header, view 2 deletes the page (backspace) and finally view 1 clicks in + the body text of the current page. + + Change-Id: I35e5d82256ab5db8e5f0ba198f5d2638cbff7d3c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135573 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit c3787043db572ff4b9933fad53dbcfec3428b75d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135543 + Reviewed-by: Michael Stahl + +2022-06-10 Tomaž Vajngerl [03e18e8035092d0d95504131e2722722f1edfe0f] + + tdf#135346 clear page row map to avoid invalid "hidden" flags + + With the print range cache surviving a longer time, we can get to + a state where we reuse the page row map (m_xPageRows) that had + older "hidden rows" flags still set, but they aren't valid for + our new recalculated ranges. The result for this is that in the + bug document, the print preview is empty (as hidden flags for the + rows was kept but not valid anymore). + + We don't really benefit from keeping this map, so we can just + clear it when we need to recalculate the print ranges. + + Change-Id: I1f8de889d6f006e700c6f21ef5bfa52a36bcdfc9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135567 + Tested-by: Tomaž Vajngerl + Reviewed-by: Tomaž Vajngerl + (cherry picked from commit 317dc8569723d434fe4175a2b665b84fd15f6f99) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135540 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-10 Caolán McNamara [65738d67321bbe2aedd67edd5a43b3f3ed7bf960] + + Resolves: tdf#142368 drop popover on ControlLoseFocus + + which is what appears when the Control derived inputbar loses focus + while the main window losing focus gives WindowLoseFocus + + Change-Id: Iae9a2874c3dd513a1a092a18846858f819542370 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135534 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-09 Caolán McNamara [82ed441f8ad1538501f3dd2655e04d81ae9031a0] + + GtkIconView uses a different way to link model and view + + Change-Id: I1ad2734c9f28568433de8b9532cf20da8a27f7cb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135391 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2022-06-09 Michael Stahl [5fcee251c35002ae1362f018a381a8bbd3059578] + + sw: fix pasting multiple flys in SwFEShell::Paste() + + This was most recently fixed in 3cfd63cb55ab1a7e6df53eaeb2a7623be05983d0 + but that didn't take into account that now with Ctrl+A multiple flys can + be selected and copied, and all of them should be pasted; remove the odd + restriction to paste only one text frame. + + This reveals that pasting a text frame will actually select the text + frame, so subsequent flys end up anchored inside the text frame; delay + selection until all flys have been pasted. + + Change-Id: I049f60ca9656e5075d481d4501bb1ffdd28a4e21 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135366 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit badad69848f10b462a11f5b5e784cb468a94b180) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135390 + Reviewed-by: Caolán McNamara + +2022-06-09 Julien Nabet [605298a6e06ccb02b206f90fb9d0b8f831349fd8] + + tdf#149470: Firebird, Clob may need several segments to store a very long input + + Change-Id: I85c7789f46d834d2ae1b251f915382f833bd529d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135480 + Reviewed-by: Julien Nabet + (cherry picked from commit a943e7ddd13315b18d7b33cd1b2f852144f54344) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135392 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-08 Miklos Vajna [28f1385bbc9d18051d2c10fb03dd0ba13e7fb915] + + sw: fix crash in SwFEShell::SelectObj() + + Fatal signal received: SIGSEGV code: 1 for address: 0x0 + + SwLayoutFrame::Lower() const + sw/source/core/inc/layfrm.hxx:101 + SwFEShell::SelectObj(Point const&, unsigned char, SdrObject*) + sw/source/core/frmedt/feshview.cxx:317 + SwEditWin::MouseButtonDown(MouseEvent const&) + sw/source/uibase/docvw/edtwin.cxx:? + + Change-Id: I6c4076eef21dd80381b37ed89aa2dc8bc20fbc98 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135491 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 437acab38f2404886a2b83138eb9eb11c4146a76) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135383 + Reviewed-by: Xisco Fauli + +2022-06-08 Luboš Luňák [76b284455ffee76d843fd8ee43a2f23c576efd23] + + fix SwViewShellImp::AddPaintRect() rectangle compression (tdf#148255) + + Both the checks test whether a follow-up rectangle can be merged + with the previous one by merging it at the bottom or the right of it, + so the previous one should be always the top-left and the follow-up + one should be the bottom-right. + + Change-Id: Ie5809595ec9bf28bd169fc503a6b391c6188d0b2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135468 + Tested-by: Jenkins + Reviewed-by: Luboš Luňák + (cherry picked from commit 0372da98bf9b2af82afc2e4ff919068bdcaae7db) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135381 + Reviewed-by: Miklos Vajna + +2022-06-07 Eike Rathke [ea91f8f9b1bccce73a22af8b4c1626ccb834b9d1] + + Resolves: tdf#148163 Preserve names of bad cell reference input again + + A regression of + + commit e247262327d04ad9933f4af354050f4420c6e303 + CommitDate: Tue Jul 30 23:49:55 2013 -0400 + + More on avoiding direct access to data members. + + that changed, for example, invalid sheet references + + - aRef.nTab = MAXTAB+3; + + aRef.SetTabDeleted(true); + + The then following + + commit 8a19af57bbcc57a02a7d87c6408d1e3212a6deba + CommitDate: Tue Jul 30 23:50:03 2013 -0400 + + Now nobody accesses reference members directly. Make them private. + + changed ScSingleRefData::Valid() + + - return nCol >= 0 && nCol <= MAXCOL && + - nRow >= 0 && nRow <= MAXROW && + - nTab >= 0 && nTab <= MAXTAB; + + return ColValid() && RowValid() && TabValid(); + + without taking the deleted flags into account, where previous to + commit e247262327d04ad9933f4af354050f4420c6e303 nTab > MAXTAB + fulfilled the condition of not valid. + + This makes it necessary to adjust the + TestFormula::testFuncRangeOp() test case that relied on the broken + behaviour. + + Change-Id: I42e769ca0d56a2eb786bb6f65917f0c15d082763 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135453 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 104596d005b32bd2bba15554e8c9ae740327aa46) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135379 + Reviewed-by: Xisco Fauli + +2022-06-07 Eike Rathke [b545b6b2bf7e56047211ea4ec974054a522cc2e9] + + Related: tdf#147390 Accept oc-FR-lengadoc and oc-ES-aranes for oc-FR and oc-ES + + ... as aliases for forward compatibility with the change in LO 7.4 + + Change-Id: I13848f982a0c76abd8e2186d81bbfc9770c89a7d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135473 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-07 Michael Stahl [21e0122310dedf3b33144cc77f880ec51446186b] + + sw: SwNodeIndex GCC12 spurious -Werror=dangling-pointer= + + It doesn't understand that ~SwNodeIndex() will remove the pointer, + which is obfuscated by over-boostified code. + + In member function ‘void SwNodeIndex::RegisterIndex(SwNodes&)’, + inlined from ‘SwNodeIndex::SwNodeIndex(SwNodes&, SwNodeOffset)’ at sw/inc/ndindex.hxx:54:22, + inlined from ‘bool SwNodes::InsBoxen(SwTableNode*, SwTableLine*, SwTableBoxFormat*, SwTextFormatColl*, const SfxItemSet*, sal_uInt16, sal_uInt16)’ at sw/source/core/docnode/ndtbl.cxx:301:41: + sw/inc/ndindex.hxx:37:31: error: storing the address of local variable ‘aEndIdx’ in ‘*this.SwNodes::m_vIndices’ [-Werror=dangling-pointer=] + 37 | rNodes.m_vIndices = this; + | ~~~~~~~~~~~~~~~~~~^~~~~~ + sw/source/core/docnode/ndtbl.cxx: In member function ‘bool SwNodes::InsBoxen(SwTableNode*, SwTableLine*, SwTableBoxFormat*, SwTextFormatColl*, const SfxItemSet*, sal_uInt16, sal_uInt16)’: + sw/source/core/docnode/ndtbl.cxx:301:17: note: ‘aEndIdx’ declared here + 301 | SwNodeIndex aEndIdx( *this, nIdxPos ); + | ^~~~~~~ + sw/source/core/docnode/ndtbl.cxx:301:17: note: ‘’ declared here + + Change-Id: I3f24cd8e3e0b1fd0a0943150d3d83d09f2c984fc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134741 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 486991b8ec2b63324c8cf5a26e9091942c24b3d9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134774 + Reviewed-by: Thorsten Behrens + +2022-06-07 Michael Stahl [13bbabd0a7d52b8a823f9fce704c32818b44ceb3] + + svx: work around GCC12 spurious -Werror=stringop-overflow + + /usr/include/c++/12/bits/stl_algobase.h:431:30: error: ‘void* + __builtin_memcpy(void*, const void*, long unsigned int)’ writing 1 or + more bytes into a region of size 0 overflows the destination + [-Werror=stringop-overflow=] + + Change-Id: Ib581b5788ff5d363b688000e700a42074c3b78eb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134740 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit d37486537e7d404b19acdfaec358cb0ad706940c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134633 + Reviewed-by: Thorsten Behrens + +2022-06-07 Michael Stahl [0a49da180c1e071360bb1b5bf664cb6264173885] + + vcl: WhitespaceToSpace() spurious -Werror=maybe-uninitialized + + vcl/source/helper/strhelper.cxx:366:9: error: ‘pBuffer[-1]’ may be used uninitialized [-Werror=maybe-uninitialized] + + Change-Id: I37250b0790bd9c33eb01c552c8267251bc0026f0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134738 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit cd4976646dc2e5b28c3328a7fa96361e147b23b9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134631 + Reviewed-by: Thorsten Behrens + +2022-06-06 Andreas Heinisch [ed3d572b730d1873dd66fa2a31695248d506a335] + + tdf#149402 - BASIC: Don't extend comment if line ends in a whitespace + + Change-Id: I8adf530e77a0e65329fa59ac2873b99f48befac4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135336 + Tested-by: Jenkins + Reviewed-by: Andreas Heinisch + (cherry picked from commit fbce18558a58cddf910b788a67c2f2d4d25d68e9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135378 + Reviewed-by: Xisco Fauli + +2022-06-06 Jan-Marek Glogowski [ced641a34f8312a7fb93ee87bf6f13f30914da3a] + + tdf#137471 Qt return frame pos + client area size + + My code comment about "drawable area" and Michaels bug comment + 12 about the "frameGeometry()" usage were both half right. LO + expects the window's frame position and the drawable client area + size almost everywhere when "geometry" is involved. The frame's + border is stored in the decorations members of SalFrameGeometry. + + Change-Id: Ic00ad1f1d74d7afadcaca0c01e1a41ea7f2833de + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135434 + Tested-by: Jenkins + Reviewed-by: Jan-Marek Glogowski + (cherry picked from commit 3f8d3fd4649ef09e86c735617383a4bda0425540) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135375 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-06 Caolán McNamara [44bbe7dd3ca3dc924395eb9aa5ef7aa9ccac25bc] + + tdf#147708 create floating menubutton on demand + + and destroy when it is fully faded out. Otherwise windows runs out of + gdi handles with document with large number of page breaks + + todo: rename some things in a follow up commit after this more easily + backportable commit is merged + + Change-Id: Ibbe3cd00d1027ac34915c4bff73e3a330e300f38 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135138 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-06 Noel Grandin [f1c695f214620aa11c54dc2e9ee33118c83f0e3f] + + tdf#149304 Stylist does not show upper/lower case font effects + + SvxFont has code to handle these extra features, we just need + to call that + + Change-Id: I45691efeeead3ea60ab838eeb081fa5f19a76b90 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135428 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 6aaa3e617523783b98bc68e260a3a7b4912d11b8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135377 + Reviewed-by: Adolfo Jayme Barrientos + +2022-06-06 Gülşah Köse [7eb4f92ed90e13ce5cbf7286fae623770e71324c] + + tdf#136787 Add control to create 1-bit B&W bitmap while creating mask. + + Glow effect creates half transparent pixels on shadow. Creating 1-bit + B&W bitmap mask treates that half transparent pixels as black. + We control 1-bit B&W bitmap creation when we have half transparent + pixels. + + Change-Id: Iaf298a0e5ffeeb6637fe5d3f56cf4f8e30a203e4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134981 + Tested-by: Jenkins + Reviewed-by: Gülşah Köse + (cherry picked from commit a658129012f1d183f95f8bf5dd6d7ff6926cd495) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135269 + +2022-06-05 Michael Stahl [57cd4735a7312174e63d2a1a3dd3831443169530] + + tdf#148309 sw_redlinehide: fix mail merge performance regression + + The problem is that in the call to pTargetShell->EndAllAction(), the + cursor is on the node before the newly appended one that has the page + break, and only this node is formatted (via GetFormatted()), so no new + page frames are inserted in the layout, which then creates massive + performance problems later, particularly since the bugdoc contains + multiple at-page anchored flys. + + (regression from commit 42448f48bb48a13d6618a181b12840db6d85c574) + + Change-Id: I05cd2a515a7f67132ab1c8c6fa0d675252ea3a15 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135356 + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + (cherry picked from commit ff525d0d70ea9d189a430bde944b56d048b03e55) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135273 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-06-05 Noel Grandin [6aaac2a8f0330e7efb4bf6d6385f9fadb086702e] + + tdf#145603 Drag-n-drop in formula bar creates mismatch + + Revert + commit 60d35f767781de4b8f1e7b264b12015f655c647d + tdf#132740 don't broadcast if modified status has not changed + + Change-Id: I5a0292499522e21708a2d5607966e4c2b3a18ba0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135301 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 0030fa0d5174b45ae7f99e3ae923bbec83e50cd1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135264 + Reviewed-by: Caolán McNamara + +2022-06-05 Noel Grandin [dd5113883ae49def80e34f1d6ee4190ace9c52c9] + + tdf#143964 insert/overwrite cursor shape lags in formula editing + + Revert "tdf#132740 bypass work if selection has not changed" + + This reverts commit 865641047be4a693f7a51635ce06eab15675126d. + + Change-Id: I69244a1e57ce979bf21946e31df7165f8791423c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135302 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 30703dbe59e909e257876524785836e7f4d993b2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135265 + Reviewed-by: Caolán McNamara + +2022-06-05 Eike Rathke [68a595755c82817ee8672aec2c57cd90e3190534] + + InsertMatrixFormula: correct references for across sheets array formulas + + Inserting an array/matrix formula across two or more + selected/marked sheets generated wrong matrix offset references + starting with the second sheet, pointing to the top left of the + first array formula. Only the top left cell of the inserted + formula on each sheet displayed the correct value. Deleting the + array formula on the first sheet then left all matrix offset + references on the remaining sheets with #REF! errors and those + cells could not be deleted anymore because their original parent + cell was gone. + + Change-Id: If5d53311f9aabdcd7432ff26ab555bb91b0b121d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135147 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit dfd5081ff3973d5d0f216b06dda6360fa490cc9c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135154 + Reviewed-by: Caolán McNamara + +2022-06-01 Caolán McNamara [232523e1303b3ed6b8f1916a0a28f32b4a258f53] + + Related: tdf#149408 inspector crash with a writer OLE inside calc + + also on *leaving* the OLE mode + + Change-Id: I97e9cd7cd4dc1803c4bc40865a08a194819c9ff2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135261 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-01 Michael Stahl [bb5216e345c42be440bce60b127af517c036c8ef] nss: upgrade to release 3.79 - Fixes CVE-2022-1097 and moz#1767590 "memory safety violations" + Fixes CVE-2022-1097 and moz#1767590 "memory safety violations" + + Change-Id: I6895f066ad943402231b616dae0d7ed6f5678b5e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135234 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135248 + Reviewed-by: Christian Lohmaier + +2022-06-01 Caolán McNamara [31b4e6df39687f4366ff1ac36bb6a727dfa41b10] + + Related: tdf#149408 various crashes seen in redline panel + + with this writer in calc ole case + + Change-Id: I1ecd7725703674cc1bcfc9b3d411ec890bfe4bcc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135238 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-01 Xisco Fauli [6bbc42687b795b6279b1b96bb721991f90eca4da] + + sw: avoid EXCEPTION_INT_DIVIDE_BY_ZERO + + See https://crashreport.libreoffice.org/stats/signature/SwFormatCol::Calc(unsigned%20short,unsigned%20short) + + Change-Id: I79321737b7bed3acff3418d0b51dc6225baaf57f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135184 + Reviewed-by: Michael Stahl + Tested-by: Xisco Fauli + (cherry picked from commit ea4cd397300120a0f825752182eb3b943eb8a1b2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135254 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-06-01 Xisco Fauli [104917ab65aa25f00358fdb56ae37f66b52e9b20] + + sw: fix crash in SwDoc::CopyMasterHeader and SwDoc::CopyMasterFooter + + Similar to 3eda5d345f14f8926358df7b425c452a8a165c7d + "tdf#149184 DOCX: fix crash removing footer, then saving to doc" + check that GetHeaderFormat and GetFooterFormat are not nullptr + Also restructure the code a bit to reduce the scope of pRight + + See https://crashreport.libreoffice.org/stats/signature/SwDoc::CopyMasterHeader(SwPageDesc%20const%20&,SwFormatHeader%20const%20&,SwPageDesc%20&,bool,bool) + and + https://crashreport.libreoffice.org/stats/signature/SwDoc::CopyMasterFooter(SwPageDesc%20const%20&,SwFormatFooter%20const%20&,SwPageDesc%20&,bool,bool) + + Change-Id: Ia30d06593124d90b88f7d26ed7be9a5d7a64872c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135230 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 89b0d94850aeda0a97907945538e4d5f41bac970) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135256 + Reviewed-by: Xisco Fauli + +2022-06-01 Caolán McNamara [f23faaa44b8bde98bd979032fda9bfce71f7ff96] + + Resolves: tdf#149408 inspector crash with a writer OLE inside calc + + toplevel isn't a SwDocShell at this point, its a ScDocShell + + Change-Id: I3aa3c72e494cf6c0ceff1286a7026ca01385ab8e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135173 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2022-06-01 Christian Lohmaier [0f9c606064ab6da2eb602c9ab93c35e18b1b4ac4] + + update credits + + Change-Id: I159625c29c07188e991ad55de291594f31715f02 + (cherry picked from commit 6c3e1ec7d2177271ea6e01da4cedce022823c622) + +2022-06-01 Christian Lohmaier [24362f80e10c88de9486b9ec5e54780f5dfd4c44] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3' + to 55ec674bc94926ed47072222f51bc1be121fd351 + - update translations for 7.3.4 rc2 + + and force-fix errors using pocheck + + Change-Id: I1c546a8267022fa3412f19d9a4c656a2d76339b3 + +2022-06-01 Xisco Fauli [15ba58dfb4be1920f562927273cc867eb556a3ec] + + sw: fix crash in SwAnchoredObject::UpdateObjInSortedList + + See https://crashreport.libreoffice.org/stats/signature/SwAnchoredObject::UpdateObjInSortedList() + + Just a few lines above (line 636) the same checks are used inside + the DocumentSettingId::CONSIDER_WRAP_ON_OBJECT_POSITION condition + so I don't understand why they weren't added here as well + Change-Id: Id8ade0a506d5996d9e357d45c20fe56a68a93eec + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135188 + Reviewed-by: Miklos Vajna + Tested-by: Xisco Fauli + (cherry picked from commit 64f8a70298695d1952c3a399e897755ab861add5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135170 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-05-31 Andreas Heinisch [73e46d86335e60f1b11a91b23522402cd34466a8] + + tdf#149157 - Break multiline continuation in a comment after a new line + + Change-Id: I3dd875152a6f2cfafb67f13f597c36f01a4759b4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135018 + Tested-by: Jenkins + Reviewed-by: Andreas Heinisch + (cherry picked from commit b94275f6d2cb4dc28d1563fd7994251042b6d51a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135164 + Reviewed-by: Xisco Fauli + +2022-05-31 Stephan Bergmann [f167224bd9643824393039a57b3d4cd6654dbb4c] + + tdf#145527 Revert "Related tdf#116767: Call URLClassLoader.close" - Change-Id: I6895f066ad943402231b616dae0d7ed6f5678b5e - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135234 + This reverts commit 418533f0af7cd303d559c8fb136c49e7e9fb0d79. Turned out that + closing the given URLClassLoader once the script's main class has been loaded + prevents the script from loading further classes located next to that main + class. So abandon the Coverity suggestion that such class loaders should be + closed promptly to avoid resource leaks. + + Change-Id: I1bcf83117836cfe317eac9850d413f2c3767bd8e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135158 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 2a263cbdaf16c723a93af020ebc11b3e07210242) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135165 + +2022-05-31 Andras Timar [726019784580f67ec9e52ea063b839a7c8e389bb] + + date picker should rather show the current date instead of February 14, 2019 + + Change-Id: Ie449873aad40b6f02198a8a44a7eae1aaba1cfae + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135148 + Tested-by: Jenkins + Reviewed-by: Andras Timar + (cherry picked from commit 090ed6199ec8ed805d645b62387bc89df01b9564) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135166 + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-31 Michael Stahl [7b9eab0fa510c8ab189b30a6b197fd85cd32ebcf] + + g: we are not, in fact, in the BUILDDIR + + For an out-of-tree build, "make fetch" poinlessly clones all git + submodules. + + Change-Id: If4afb218946f49ba934f68b35806fd8143c39387 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135143 Tested-by: Jenkins Reviewed-by: Michael Stahl - Signed-off-by: Xisco Fauli - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135248 - Reviewed-by: Christian Lohmaier - (cherry picked from commit bb5216e345c42be440bce60b127af517c036c8ef) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135262 - Tested-by: Christian Lohmaier + (cherry picked from commit aa8ef74b475a6fbd6e4ec27c42941aa274998df6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135159 + Reviewed-by: Caolán McNamara -2022-06-01 Xisco Fauli [9b2d3afe413f3bffcee169bd48d945f849896b7f] +2022-05-31 Caolán McNamara [6d6d8860995576b8e20afb4dfd13c42f5a9bcc10] - vcl: avoid EXCEPTION_INT_DIVIDE_BY_ZERO + tdf#117006 gtk: detect High Contrast - See https://crashreport.libreoffice.org/stats/signature/FormattedField::Down() - or https://crashreport.libreoffice.org/stats/signature/FormattedField::Up() + similar to https://bugzilla.mozilla.org/show_bug.cgi?id=1606038 - Change-Id: I30dfb06a1261a48a75b9d9c2380ed78121758ec2 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134674 + .e.g. gnome a11y menu, pick "High Contrast" + + Change-Id: I60643b3a37b722230d5ed47082e4a6491d005ce4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135160 + Reviewed-by: Michael Stahl + Tested-by: Caolán McNamara + +2022-05-31 Caolán McNamara [fffb3bc365be55010fdb4e4a7c5738c6dfdb66f5] + + tdf#149186: Table of contents editor not showing buttons in Dutch UI + + an alternative approach that doesn't leave things too wide for the + English UI + + Change-Id: Idbdd75790607b1928bfc583004041f7f98688ae6 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134852 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-31 Caolán McNamara [48adb09c2032285bc7d02f495cbdb3fc5185f0c5] + + tdf#148168 set built-in gtk search box to search "document name" column + + rather than column 0 which is used for icons + + Change-Id: Idef015e575fe6a4f76ad0cc67481ca8454a07206 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134782 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-31 Julien Nabet [2aeee5a0f545e9fb628fc7b02bee6b07e89a77bf] + + tdf#149096: don't translate "Get" and "Post" submit methods + + Change-Id: I4427618dad0c168642225eaaf828a96e37936d8f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134718 + Tested-by: Julien Nabet + Reviewed-by: Julien Nabet + (cherry picked from commit 93b4191cefa5062b120c77335776beee34ee4392) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134789 Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-31 Caolán McNamara [7c411a6df34ce5b04f964b0410b6d2535389918d] + + Related: tdf#89131 draw up/down spins disabled if value is at max/min + + if there is a max/min set. + + Change-Id: I2dc7ccccad9ec2aa7eb89d8b5fa137e077a846fd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135105 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara - (cherry picked from commit ce39195e533336ce1482e2be6b1bec2b7f992125) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134627 - (cherry picked from commit def9e701c83e7283b3580490c881a5b692c4ec12) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134779 + (cherry picked from commit 2896c5dad1799addd72b626d93d7e89b1cf19ff6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135070 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2022-05-30 Szymon Kłos [daafc32c5625757091e7cf80711a18639bd36bf0] + + tdf#145875 don't open Insert section dialog when pasting image + + This happens when we "copy image" in Firefox of the resource which + cannot be accessed without logging in on some website. + + In that case we used HTML format and that resulted in pasting + login webpage as a section. + + This patch detects simple HTML containing only an image while it also + contains BITMAP format in the clipboard which we can use directly. + That way we paste image data from the clipboard. + + Change-Id: Ia2ee7e246f8c71e1d0958c6c955ec056a0a96f8c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135011 + Tested-by: Jenkins + Reviewed-by: Andras Timar + (cherry picked from commit 0599a73c3c2bffdbfa4e695e2d694f1947215a07) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135013 + Reviewed-by: Caolán McNamara + +2022-05-30 Stephan Bergmann [a4412bff3ed4b193f791ac1168fb7010c2936a1f] + + Avoid uninitialized temp_file_handle + + ...in case osl_create_temp_file_impl_ doesn't assign to it, for whatever + osl_error reason, which then apparently leads to + + SIGSEGV at (relative to libreoffice-7-1) + + > 0 libuno_sal.so.3 osl_closeFile sal/osl/unx/file.cxx:1154 + > 1 libuno_sal.so.3 osl_createTempFile sal/osl/unx/tempfile.cxx:330 + > 2 libmergedlo.so PackedFile::flush include/osl/file.hxx:310 + > 3 libmergedlo.so comphelper::BackupFileHelper::tryPush_file comphelper/source/misc/backupfilehelper.cxx:2090 + [...] + + Change-Id: I2e81bbeab7daaaa3c19de4accce8a76ad24faa47 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135111 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit bbcf26337cd2933205248909c55d5c1d161e9b9b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135067 + Reviewed-by: Xisco Fauli + +2022-05-30 Vasily Melenchuk [de0312e81c86d3a9a1fdf1e4be4df32e2a4c6546] + + tdf#149200: docx export: transparent color fix + + If there is no color value we should not also try to write + transparency information: otherwise w:srgbClr will have no + parameter value and MS Word won't open such documents. + + Change-Id: Id67f174c5ae9aadf90ae54c126aef9a43ff3ba17 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134945 + Tested-by: Jenkins Reviewed-by: Thorsten Behrens - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135121 + +2022-05-30 Rizal Muttaqin [a07e9bfeabc51a3ee536cb1a402cab35b98f4f42] + + Breeze: tdf#149368 ^ radio & checbox button to follow up latest Plasma UI + + Change-Id: I2674ea52bc6217aa7cf9283c17f1d63533baaa49 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135107 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit f1d1555028c9e99ad1817fd15d68e24fb754d979) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135066 + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-30 Attila Bakos (NISZ) [906151f18771418ee899f59fc98c774b07dadf16] + + tdf#148365 sw: fix freezing with FrameIsAutomaticHeight + + Lock layout update temporarily during setting horizontal + and after that, vertical orientations of textboxes + with FrameIsAutomaticHeight to avoid freezing + SwObjectFormatter, and depending on the platform, + freezing Writer completely. + + Regression from commit 3b0a0e70cb67fc2e1f9999d2e8cbb9cfcd8c670e + "Related tdf#66039 DOCX import: fix Z-order of group shapes". + + Change-Id: Ib106182b9f0d3d74ebdc3e746345380c8b685fdf + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134480 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 182d2a47a2b4ed0affdc828a534c1659cc2e926d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135007 + Tested-by: Jenkins + Reviewed-by: Attila Bakos + +2022-05-30 Michael Stahl [2a996c90ed1fc1b89ffd276e84ae4567595ff619] + + tdf#145178 xmloff: ODF import: fix another bad attribute + + ...in XMLSectionFootnoteConfigImport. + + (regression from commit 9814c1f2edf56ecc0f31001db9234ef335488879) + + Change-Id: I79ab3b74853bd3ec9058fea72c341768e916bbd3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135048 + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + (cherry picked from commit 9896f330cdb3df67b74b16a2c2177a8505fd2485) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135056 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-05-29 Jan-Marek Glogowski [5758469c11fbe199f0136941f9ffc8c29815f562] + + tdf#144601 Qt fix creating QImage with alpha mask + + Rechecking the QImage documentation, this actually can be easily + done; no more bit twiddling, which I got wrong to begin with. + + LO's alpha mask is inverted to Qt's expectations, but we have + invertPixels() and then apply it with setAlphaChannel(). And we + can even set the fAlpha using setOpacity()! + + Change-Id: If2030d3f87d3a4698d1cd9af005d307c2ee63061 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135044 + Reviewed-by: Michael Weghorn + Reviewed-by: Jan-Marek Glogowski + Tested-by: Jenkins + (cherry picked from commit 6959a18d1a8fea4d65498083dc3ba05f640d0f39) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135060 + +2022-05-28 Michael Stahl [c3a1f4cc50fa4a17589ca1b4643a554964af59a3] + + sw: fix mysterious layout loop in CppunitTest_sw_uiwriter3 testTdf104649 + + This didn't happen with master from a week ago on Fedora 35, but happens + with Monday's master on Fedora 36. Also happens with libreoffice-7-3 + branch. + + Fundamentally the problem with the bugdoc is that there are tables in + footnotes, which aren't really supported and can't split across pages + like they would need to. + + The loop happens because a footnote on page 48 invalidates position of + its anchor frame 549 on page 45. + + This is probably pointless, let's only invalidate if the anchor is on + the same page (it should be on the same page, but probably the tables in + other footnotes get in the way). + + Change-Id: I87976c7f8b35725bc8e642133bebb396d37ff0be + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134877 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 0496252c2c7fd2d694c4a73f387ef75e0021de3e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134894 + Reviewed-by: Caolán McNamara + +2022-05-28 Jan-Marek Glogowski [8e92328c3f7d93810f0b40bafb62b981d8e98f9f] + + tdf#149329 Qt change cursor via QWidget + + ... instead of its QWindow + + No idea, why my initial implementation used the QWindow. Neither + do I know, why it's now somehow broken. The code is called, but + the cursor doesn't change. But it seems to work via QWidget, so + just do that. IMHO less QWindow is preferable generally; let Qt + handle more of the low-level stuff. + + Change-Id: Id23fba719c9a4d7e760991c51e6021c6f89be345 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135051 + Reviewed-by: Michael Weghorn + Reviewed-by: Jan-Marek Glogowski + Tested-by: Jenkins + (cherry picked from commit caf862fc843c89cceae2121f743a3822e09bbd46) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135080 + +2022-05-28 Louis Possoz [aa8aab0a753d6ee79cb371b2a4f141070715449a] + + tdf#145178 Formats in section Foot/Endnotes not read from saved files + + Imported, 'num-suffix' & 'num-format' properties generate debug warnings: + + warn:xmloff:10220:10220:xmloff/source/text/ + XMLSectionFootnoteConfigImport.cxx:123: unknown attribute urn:oasis + :names:tc:opendocument:xmlns:style:1.0 style:num-suffix value=]] + warn:xmloff:10220:10220:xmloff/source/text/ + XMLSectionFootnoteConfigImport.cxx:123: unknown attribute urn:oasis + :names:tc:opendocument:xmlns:style:1.0 style:num-format value=One + + The faulty code is within XMLSectionFootnoteConfigImport::startFastElement() + + The namespace for these two properties must be set to 'STYLE' + (it is wrongly set to 'TEXT') + + Change-Id: I923f12e19ed15779c67b2159d88d80a2ccb04e17 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133605 + Reviewed-by: Michael Stahl + Tested-by: Michael Stahl + (cherry picked from commit bbec710bd25fc5da27636cde73fe4ab23c76904f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135054 + Tested-by: Jenkins + +2022-05-27 Heiko Tietze [f3b93f48ee65273cfee63e54f831c199110a20b7] + + Resolves tdf#119447 - Improve sidebar height in start center + + Reduced the font size multiplier from 1.4 to 1.2 to fit + the window into 768px height and added the branding image to + the height calculation + + Change-Id: I05473155f0068880298a461fe8491468b07079b6 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134867 + Tested-by: Jenkins + Reviewed-by: Heiko Tietze + (cherry picked from commit ed45b67db66ef0f6c69887c75013a178c4412f74) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135006 + +2022-05-26 Rizal Muttaqin [f98a8950da526e8a9952e22dade08c108f48d961] + + Breeze: tdf#149036 add Label Field icons + + Change-Id: I37b2f965edffbc8ff803ca84389e06b61d27f225 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135000 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + +2022-05-26 Rizal Muttaqin [97980ac82ca02d2f9fd5d18bc7f4463f9f1d85e5] -2022-06-01 Xisco Fauli [69d213526f3c1a6c08c5be8c35a9f8bcc02bf178] + Revert "Breeze: tdf#149036 add Label Field icons" + + This reverts commit 06b61b0b89829f2cb66540c39e336a313b462a48. + + Reason for revert: misstyped tdf number + + Change-Id: I2cc5bb0a3019c7ed57f0c25d8e2d8b3664c26322 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134998 + Tested-by: Rizal Muttaqin + Reviewed-by: Rizal Muttaqin + +2022-05-26 Rizal Muttaqin [06b61b0b89829f2cb66540c39e336a313b462a48] + + Breeze: td#149036 add Label Field icons + + Change-Id: I3843420f896c8913267ec7d699804304c1bc2af4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134976 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit a4a62ea283e20a01c0c0c99359c6e029484fedb0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134997 + +2022-05-26 Rizal Muttaqin [f56cbeccb35c569d6ca1c6ecffed160379845957] + + Breeze & Sifr tdf#136916 add dark underlines variant icons + + Change-Id: Ic15b8e56959606d8dbacb073d6e80d5188dc7502 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134975 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 84706376e333ca5cf9ccb9a2c08daef93fa3b16d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134996 + +2022-05-25 Xisco Fauli [663abd7162c29d289f84781eac56ca2c28b3a356] svx: fix one more EXCEPTION_INT_DIVIDE_BY_ZERO @@ -55,56 +2885,156 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134899 Tested-by: Jenkins Reviewed-by: Caolán McNamara - (cherry picked from commit 663abd7162c29d289f84781eac56ca2c28b3a356) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134909 - Reviewed-by: Thorsten Behrens - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-06-01 Xisco Fauli [b44c53bd1c39aacc58987c9f77a1e3d0638da0fc] +2022-05-25 Caolán McNamara [b121e772350fa5e7e5be597e79e7487debd060c2] - sw: avoid EXCEPTION_INT_DIVIDE_BY_ZERO + tdf#149280 modified called after dialog was destroyed - See https://crashreport.libreoffice.org/stats/signature/SwFormatCol::Calc(unsigned%20short,unsigned%20short) + just ignore it in that case - Change-Id: I79321737b7bed3acff3418d0b51dc6225baaf57f - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135184 + Change-Id: I8f294acd9ee16d2f9c8662614fac3672f80b3376 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134902 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-05-25 Jan-Marek Glogowski [70e497f786dad6bda3aa593c07c778b06381c0e4] + + tdf#148864 Qt switch QtObjectWindow to QWidget + + ... and therefore rename it to QtObjectWidget + + Replacement of the QWidget with QWindow originally happened in + commit 56b19f9a814ae5a39ed760ee542d715493cd0bf3 ("tdf#121247, + tdf#121266 KDE5: Add basic support for OpenGL"), but that + unfortunately has a very sparce commit message with no reason + for this change. Then the code was further complicated in commit + 25edbded9946801effd117b9c46de0f8b4bc5632 ("tdf#125517 Qt5 + implement a minimal Qt5ObjectWindow") and a few follow up fixes + to restore input and focus handling. + + But appearingly all this QWindow handling isn't necessary and just + returning to a QWidget based class fixes the problems with the + video overlay (AKA QWidget::winId()) and video playback for good. + + The OpenGL Impress transition (Fade) mentioned in the original + tdf#121266 bug still works. + + This also adds the previously missing SolarMutexGuard to all the + overridden QtObjectWidget functions, which call the SalObject's + Callback function. I accidently triggered a DBG_TESTSOLARMUTEX + crashing Impress while debugging this. + + Change-Id: Ia22cabfd4f3585dc7fa3f9f18a913c5bd1987dd8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134864 + Reviewed-by: Michael Weghorn + Tested-by: Jenkins + (cherry picked from commit 4366e0605214260e55a937173b0c2e02225dc843) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134903 + Reviewed-by: Ilmari Lauhakangas + +2022-05-25 Caolán McNamara [29674e43755d18ece03c30719add0f403f9d90b4] + + 50 null derefs seen in crashreporting report + + Change-Id: I42f1179ad1d60ac70ccda5362590853a69fd3712 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134901 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-05-25 Caolán McNamara [0c12c167d87faf98ba544ff8abae3aae2e759a1b] + + 91 null derefs seen in crashreporting report + + Change-Id: I8114f57cf5a5f74b2debac963813dcf6aac1bd0b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134900 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-05-25 Jan-Marek Glogowski [4b37e526d118501ff718b49640938e00fbaea10f] + + tdf#125925 Qt migrate KF5 theme font settings code + + Currently all implemented Qt platforms use freetype and fontconfig + to handle the font selection, so just move the font styling code + from the kf5 VCL plugin to qt. + + This really minimizes kf5 by just keeping the special file picker + handling in that VCL plugin. + + Change-Id: I0bbb2496379396afc46e34fe0d026702dce1492e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134862 + Reviewed-by: Michael Weghorn + Reviewed-by: Jan-Marek Glogowski + Tested-by: Jenkins + (cherry picked from commit 7bf9629d4f3e8504b5d09685d7721275b3287443) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134917 + +2022-05-25 Caolán McNamara [298815eab4724a9ac9a11f865d9b04edfd73ac66] + + tdf#145248 don't start a drag if actively selecting + + Change-Id: I00565adbb32a6d9109a75548a544e79ba1951650 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134896 + Tested-by: Jenkins Reviewed-by: Michael Stahl - Tested-by: Xisco Fauli - (cherry picked from commit ea4cd397300120a0f825752182eb3b943eb8a1b2) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135254 + +2022-05-24 Michael Stahl [aedb674394960a294535f35d19f7ae532ee5d35a] + + vcl: GCC12 says fclose() causes -Werror=use-after-free on any use of FILE* + + In file included from vcl/inc/unx/cpdmgr.hxx:34, + from vcl/unx/generic/printer/cpdmgr.cxx:25: + In member function ‘size_t psp::FPtrHash::operator()(const FILE*) const’, + inlined from ‘std::__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Hash, _RangeHash, _Unused, __cache_hash_code>::__hash_code std::__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Hash, _RangeHash, _Unused, __cache_hash_code>::_M_hash_code(const _Key&) const [with _Key = _IO_FILE*; _Value = std::pair<_IO_FILE* const, rtl::OString>; _ExtractKey = std::__detail::_Select1st; _Hash = psp::FPtrHash; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; bool __cache_hash_code = true]’ at /usr/include/c++/12/bits/hashtable_policy.h:1268:18, + inlined from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::size_type std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::_M_erase(std::true_type, const key_type&) [with _Key = _IO_FILE*; _Value = std::pair<_IO_FILE* const, rtl::OString>; _Alloc = std::allocator >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<_IO_FILE*>; _Hash = psp::FPtrHash; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits]’ at /usr/include/c++/12/bits/hashtable.h:2358:43, + inlined from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::size_type std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(const key_type&) [with _Key = _IO_FILE*; _Value = std::pair<_IO_FILE* const, rtl::OString>; _Alloc = std::allocator >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<_IO_FILE*>; _Hash = psp::FPtrHash; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits]’ at /usr/include/c++/12/bits/hashtable.h:971:24, + inlined from ‘std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::size_type std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(const key_type&) [with _Key = _IO_FILE*; _Tp = rtl::OString; _Hash = psp::FPtrHash; _Pred = std::equal_to<_IO_FILE*>; _Alloc = std::allocator >]’ at /usr/include/c++/12/bits/unordered_map.h:763:26, + inlined from ‘virtual bool psp::CPDManager::endSpool(const rtl::OUString&, const rtl::OUString&, FILE*, const psp::JobData&, bool, const rtl::OUString&)’ at vcl/unx/generic/printer/cpdmgr.cxx:725:28: + vcl/inc/unx/cupsmgr.hxx:35:43: error: pointer may be used after ‘int fclose(FILE*)’ [-Werror=use-after-free] + 35 | { return reinterpret_cast(pPtr); } + | ^ + vcl/unx/generic/printer/cpdmgr.cxx: In member function ‘virtual bool psp::CPDManager::endSpool(const rtl::OUString&, const rtl::OUString&, FILE*, const psp::JobData&, bool, const rtl::OUString&)’: + vcl/unx/generic/printer/cpdmgr.cxx:695:15: note: call to ‘int fclose(FILE*)’ here + 695 | fclose( pFile ); + | ~~~~~~^~~~~~~~~ + + Change-Id: Ib035f2287649dcf9a2d37bda85ebcf52c6c51aaa + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134739 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 02ebfb8ed6175934a1985786e6816ecef1bd59f8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134632 + Reviewed-by: Caolán McNamara + +2022-05-24 Michael Stahl [ca41437a880a3c40d22557ed3a29203b06eec993] + + sw: avoid ~SwIndexReg() assert in SwFEShell::PastePages() + + Change-Id: I5337dc8568255a778d29b676a39c99f72c42486b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134693 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 6bbc42687b795b6279b1b96bb721991f90eca4da) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135259 + Reviewed-by: Michael Stahl + (cherry picked from commit 1b8c42f8b007d690a85676f260b28b44639fc79a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134777 + Tested-by: Thorsten Behrens Reviewed-by: Thorsten Behrens - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Reviewed-by: Caolán McNamara -2022-06-01 Stephan Bergmann [a994ee5b1f1270eefbe1b3e9b7a5cf866ba924d9] +2022-05-24 Michael Stahl [30c171ab3dc07a0a8423775619631f6ad514f916] - tdf#145527 Revert "Related tdf#116767: Call URLClassLoader.close" + sw: copy grab bags in mail merge - This reverts commit 418533f0af7cd303d559c8fb136c49e7e9fb0d79. Turned out that - closing the given URLClassLoader once the script's main class has been loaded - prevents the script from loading further classes located next to that main - class. So abandon the Coverity suggestion that such class loaders should be - closed promptly to avoid resource leaks. + Otherwise formatting may get lost when the result is stored as DOCX. - Change-Id: I1bcf83117836cfe317eac9850d413f2c3767bd8e - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135158 + Change-Id: I62cbeb1fc9f120dd9c424daf5dc0471686715537 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134694 Tested-by: Jenkins - Reviewed-by: Stephan Bergmann - (cherry picked from commit 2a263cbdaf16c723a93af020ebc11b3e07210242) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135165 - (cherry picked from commit f167224bd9643824393039a57b3d4cd6654dbb4c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135167 Reviewed-by: Michael Stahl - Reviewed-by: Samuel Mehrbrodt - Reviewed-by: Thorsten Behrens - Tested-by: Thorsten Behrens + (cherry picked from commit 123d3a9301c90925c23cfb4806d7b0be01b975d6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134762 + Reviewed-by: Caolán McNamara -2022-06-01 Jim Raykowski [ad55cb3e5550ea92f2aee4bd424065436a900221] +2022-05-24 Jim Raykowski [ee67c82c210ec4bcac0a6e92a13dc63b06006239] tdf#149231 Fix crash on print preview of master @@ -117,113 +3047,123 @@ (cherry picked from commit f817b3de1aa827d93e2a622735c4d570514f4849) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134788 Reviewed-by: Michael Stahl - (cherry picked from commit ee67c82c210ec4bcac0a6e92a13dc63b06006239) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134907 - Reviewed-by: Miklos Vajna - Reviewed-by: Xisco Fauli - Reviewed-by: Thorsten Behrens - Tested-by: Thorsten Behrens -2022-06-01 Caolán McNamara [a7c8b4063aae13812f23c7a7aea4ffe8799a4b76] +2022-05-24 Michael Stahl [9b7670155553115b967bb2a9215a4ee49f7b0ef2] - 91 null derefs seen in crashreporting report + sw_redlinehide: fix crash in IsMarkHidden() if pointing to table node - Change-Id: I8114f57cf5a5f74b2debac963813dcf6aac1bd0b - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134900 + This is called during mail merge from documentStartPageNumber() + and if the document starts with a table, the passed UNO mark will point + to SwTableNode. + + (regression from commit 943d9be770e550d20ca72274fa5e914d1f61e605) + + Change-Id: Ic69c12ba0d819eda85de5dde95e35a8071466c2e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134692 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 0c12c167d87faf98ba544ff8abae3aae2e759a1b) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134905 Reviewed-by: Michael Stahl - Reviewed-by: Thorsten Behrens - Tested-by: Thorsten Behrens + (cherry picked from commit 4d3b750d08d05c475fb38f8b3961696d9cc9882f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134776 + Reviewed-by: Caolán McNamara -2022-06-01 Caolán McNamara [333b83e9f0f5d1ba8774bb2a1d444e50cbe1c9dc] +2022-05-24 Michael Stahl [4dcc03681395a894adb0179045fc4be2339a1f10] - 50 null derefs seen in crashreporting report + starmath: fix real use-after-free detected by GCC 12 - Change-Id: I42f1179ad1d60ac70ccda5362590853a69fd3712 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134901 + In file included from starmath/inc/mathml/iterator.hxx:12, + from starmath/source/mathml/iterator.cxx:10: + In member function ‘SmMlElement* SmMlElement::getParentElement()’, + inlined from ‘void mathml::SmMlIteratorBottomToTop(SmMlElement*, runType, void*) [with runType = void (*)(SmMlElement*, void*)]’ at starmath/inc/mathml/iterator.hxx:43:39, + inlined from ‘void mathml::SmMlIteratorFree(SmMlElement*)’ at starmath/source/mathml/iterator.cxx:57:28: + starmath/inc/mathml/element.hxx:263:46: error: pointer ‘pCurrent’ used after ‘void operator delete(void*, std::size_t)’ [-Werror=use-after-free] + 263 | SmMlElement* getParentElement() { return m_aParentElement; }; + | ^~~~~~~~~~~~~~~~ + In function ‘void mathml::deleteElement(SmMlElement*, void*)’, + inlined from ‘void mathml::deleteElement(SmMlElement*, void*)’ at starmath/source/mathml/iterator.cxx:19:20, + inlined from ‘void mathml::SmMlIteratorBottomToTop(SmMlElement*, runType, void*) [with runType = void (*)(SmMlElement*, void*)]’ at starmath/inc/mathml/iterator.hxx:65:21, + inlined from ‘void mathml::SmMlIteratorFree(SmMlElement*)’ at starmath/source/mathml/iterator.cxx:57:28: + starmath/source/mathml/iterator.cxx:19:77: note: call to ‘void operator delete(void*, std::size_t)’ here + 19 | static inline void deleteElement(SmMlElement* aSmMlElement, void*) { delete aSmMlElement; } + | ^~~~~~~~~~~~ + + Change-Id: I09acfe3f7e90bd7f919cfba161f72bdd7a8da70a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134742 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 29674e43755d18ece03c30719add0f403f9d90b4) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134906 Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + (cherry picked from commit 32c43ee75c094ffe3c34f7a713aa252479515ad0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134775 + Reviewed-by: Caolán McNamara -2022-06-01 Caolán McNamara [8d2421f69afead098003eec63c809c2403924b6c] +2022-05-24 Michael Stahl [27ff58ddd6e48d9247f8befb16d1ca8ddddcb750] - Resolves: tdf#149408 inspector crash with a writer OLE inside calc + svl: spurious GCC12 -Werror=maybe-uninitialized - toplevel isn't a SwDocShell at this point, its a ScDocShell + In file included from svl/source/misc/sharedstringpool.cxx:11: + In constructor ‘svl::SharedString::SharedString(rtl_uString*, rtl_uString*)’, + inlined from ‘svl::SharedString svl::SharedStringPool::intern(const rtl::OUString&)’ at svl/source/misc/sharedstringpool.cxx:129:51: + include/svl/sharedstring.hxx:56:20: error: ‘pResultUpper’ may be used uninitialized [-Werror=maybe-uninitialized] + 56 | mpData(pData), mpDataIgnoreCase(pDataIgnoreCase) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + svl/source/misc/sharedstringpool.cxx: In member function ‘svl::SharedString svl::SharedStringPool::intern(const rtl::OUString&)’: + svl/source/misc/sharedstringpool.cxx:93:33: note: ‘pResultUpper’ was declared here + 93 | rtl_uString *pResultLower, *pResultUpper; + | ^~~~~~~~~~~~ - Change-Id: I3aa3c72e494cf6c0ceff1286a7026ca01385ab8e - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135173 - Reviewed-by: Michael Stahl + Change-Id: I2171855844c76ad3b2a72c1eca737691ca96fc46 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134736 Tested-by: Jenkins - (cherry picked from commit f23faaa44b8bde98bd979032fda9bfce71f7ff96) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135258 - Reviewed-by: Xisco Fauli - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Reviewed-by: Michael Stahl + (cherry picked from commit 694db7d3e7be0caf81dd52dba1a865db206ac145) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134629 + Reviewed-by: Caolán McNamara -2022-06-01 Xisco Fauli [ac8ca487f7d065fa590eda1d95d7fd75e59cefd1] +2022-05-24 Stephan Bergmann [6d1b32befcaaa1f61a4879a5dcd04289f6b95f96] - sw: fix crash in SwAnchoredObject::UpdateObjInSortedList + tdf#149202 Allow for java.version consisting of four dotted segments - See https://crashreport.libreoffice.org/stats/signature/SwAnchoredObject::UpdateObjInSortedList() + ...like "11.0.14.1" reported now by + java-11-openjdk-headless-11.0.14.1.1-5.fc35.x86_64, and which caused - Just a few lines above (line 636) the same checks are used inside - the DocumentSettingId::CONSIDER_WRAP_ON_OBJECT_POSITION condition - so I don't understand why they weren't added here as well - Change-Id: Id8ade0a506d5996d9e357d45c20fe56a68a93eec - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135188 - Reviewed-by: Miklos Vajna - Tested-by: Xisco Fauli - (cherry picked from commit 64f8a70298695d1952c3a399e897755ab861add5) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135170 + > warn:jfw:274674:274674:jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx:100: [Java framework] sunjavaplugin.so does not know the version: 11.0.14.1 as valid for a SUN/Oracle JRE. + + (For simplicity, cover it with the same code block that already covers a + potential "_01" etc. part following the official(?) three dotted segments.) + + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131586 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 15ba58dfb4be1920f562927273cc867eb556a3ec) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135172 - Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Reviewed-by: Stephan Bergmann + (cherry picked from commit 8e6462571bb4cb872f607b4ac9dfde7f43b79ac3) + + Change-Id: Id98235d3be59653ab412f9b6c1ffbf3b0470bd6f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134820 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara -2022-06-01 Louis Possoz [b58c969f11a9ce5824ace49d21ead73afb776874] +2022-05-24 Hossein [7b09579295579045c4ad76578df09356f3d5b8d0] - tdf#145178 Formats in section Foot/Endnotes not read from saved files + tdf#149184 DOCX: fix crash removing footer, then saving to doc - Imported, 'num-suffix' & 'num-format' properties generate debug warnings: + When openeing the simplefooter.docx, after removing the footer and + exporting to .doc, LibreOffice crashes. This regression was + introduced with 88e6a1bfeac86e0c89d2ff08c908c2b5ae061177 which is + titled: "DOCX: export hidden (shared) headers/footers". - warn:xmloff:10220:10220:xmloff/source/text/ - XMLSectionFootnoteConfigImport.cxx:123: unknown attribute urn:oasis - :names:tc:opendocument:xmlns:style:1.0 style:num-suffix value=]] - warn:xmloff:10220:10220:xmloff/source/text/ - XMLSectionFootnoteConfigImport.cxx:123: unknown attribute urn:oasis - :names:tc:opendocument:xmlns:style:1.0 style:num-format value=One + The current patch fixes this problem by checking to see if the header + or footer text is there or not. - The faulty code is within XMLSectionFootnoteConfigImport::startFastElement() + A unit test is added to avoid this problem in the future. One can run + the test with: - The namespace for these two properties must be set to 'STYLE' - (it is wrongly set to 'TEXT') + make CPPUNIT_TEST_NAME="testTdf149184" -sr CppunitTest_sw_uiwriter7 - Change-Id: I923f12e19ed15779c67b2159d88d80a2ccb04e17 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133605 - Reviewed-by: Michael Stahl - Tested-by: Michael Stahl - (cherry picked from commit bbec710bd25fc5da27636cde73fe4ab23c76904f) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135054 + Change-Id: I5586561677b3c490e49b4b10bd987aecdf3fc134 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134684 Tested-by: Jenkins - (cherry picked from commit aa8aab0a753d6ee79cb371b2a4f141070715449a) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135057 - Reviewed-by: Xisco Fauli Reviewed-by: Miklos Vajna - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134829 -2022-06-01 Stephan Bergmann [33e1d55aba6b6f91c056de7ed6c9aff2832782bf] +2022-05-23 Stephan Bergmann [6f6d61ea5d7700fb18bfb49c6e1d16a55944e581] tdf#149198 Fix use of nullptr @@ -244,93 +3184,92 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134780 Tested-by: Jenkins Reviewed-by: Xisco Fauli - (cherry picked from commit 6f6d61ea5d7700fb18bfb49c6e1d16a55944e581) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134784 - Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-06-01 Stephan Bergmann [53765732330043effb197529e759e21fca93ae1b] +2022-05-23 Caolán McNamara [a37577f9fd74c5f84ee7d24adca3755b6f26a55c] - Avoid uninitialized temp_file_handle - - ...in case osl_create_temp_file_impl_ doesn't assign to it, for whatever - osl_error reason, which then apparently leads to - - SIGSEGV at (relative to libreoffice-7-1) + tdf#149068 reject OpenGL versions that don't support glGenVertexArrays - > 0 libuno_sal.so.3 osl_closeFile sal/osl/unx/file.cxx:1154 - > 1 libuno_sal.so.3 osl_createTempFile sal/osl/unx/tempfile.cxx:330 - > 2 libmergedlo.so PackedFile::flush include/osl/file.hxx:310 - > 3 libmergedlo.so comphelper::BackupFileHelper::tryPush_file comphelper/source/misc/backupfilehelper.cxx:2090 - [...] + use a throwaway toplevel to figure that out, because if the current + window is used then gtk will always call glGenVertexArrays on it due + to the creation of a GLContext which is the problem we want to avoid. - Change-Id: I2e81bbeab7daaaa3c19de4accce8a76ad24faa47 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135111 + Change-Id: I40ccc48b5ed2d9fd99d3c242244847c8448c3803 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134350 Tested-by: Jenkins - Reviewed-by: Stephan Bergmann - (cherry picked from commit bbcf26337cd2933205248909c55d5c1d161e9b9b) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135067 - Reviewed-by: Xisco Fauli - (cherry picked from commit a4412bff3ed4b193f791ac1168fb7010c2936a1f) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135069 + Reviewed-by: Caolán McNamara + (cherry picked from commit da50382b366d6f3de778d8a52136cd812ef5b751) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134628 Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-06-01 Michael Stahl [0292bf35109ec5eeb8d2fd098aae76c7db9fb1f4] +2022-05-22 Xisco Fauli [def9e701c83e7283b3580490c881a5b692c4ec12] - tdf#145178 xmloff: ODF import: fix another bad attribute + vcl: avoid EXCEPTION_INT_DIVIDE_BY_ZERO - ...in XMLSectionFootnoteConfigImport. + See https://crashreport.libreoffice.org/stats/signature/FormattedField::Down() + or https://crashreport.libreoffice.org/stats/signature/FormattedField::Up() - (regression from commit 9814c1f2edf56ecc0f31001db9234ef335488879) + Change-Id: I30dfb06a1261a48a75b9d9c2380ed78121758ec2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134674 + Tested-by: Jenkins + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit ce39195e533336ce1482e2be6b1bec2b7f992125) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134627 + +2022-05-20 Caolán McNamara [3a1db3389993fe9a52330fe36bb7bdfcea905242] + + follow org.freedesktop.appearance.color-scheme setting - Change-Id: I79ab3b74853bd3ec9058fea72c341768e916bbd3 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135048 - Tested-by: Michael Stahl + Change-Id: Id26d01fd19cc3ee12c0e14b785b3a5149d22baf5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134634 Reviewed-by: Michael Stahl - (cherry picked from commit 9896f330cdb3df67b74b16a2c2177a8505fd2485) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135056 - Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 2a996c90ed1fc1b89ffd276e84ae4567595ff619) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135064 - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + Tested-by: Caolán McNamara -2022-06-01 Caolán McNamara [cd4a3750ca5473f7dc45250f686c75cdc6a59f83] +2022-05-20 Michael Stahl [f6ced2a3c3d013e904e33cba0e71997ae2437877] - Related: tdf#149408 various crashes seen in redline panel + svx: fix double-free if SvxShape of SwDrawVirtObj is disposed - with this writer in calc ole case + First SvxShape::dispose() deletes it, then ~SwDrawFrameFormat() via + ~SwDrawContact() calls SwDrawContact::RemoveAllVirtObjs() and deletes it + again. - Change-Id: I1ecd7725703674cc1bcfc9b3d411ec890bfe4bcc - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135238 + Back in 2009, CWS dba32 (60698c8a619f219129dbeac7da1f962f3fa63f6a) + added this OSL_ENSURE, let's actually try to fix this now. + + Change-Id: I5c391aa425aa75fb87cecccbf9e41c9f90196f9f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134609 + Reviewed-by: Michael Stahl Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit 31b4e6df39687f4366ff1ac36bb6a727dfa41b10) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135260 - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + (cherry picked from commit 5eb25f6a7ecb215f7bc81116cd930c1dec645e8d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134621 + Reviewed-by: Caolán McNamara -2022-06-01 Caolán McNamara [06fb42fbb3edc5dbabbaf87590e58761247c9e9e] +2022-05-20 Michael Stahl [e940b48617b29b0bccf0491a1aa5162a10c2616b] - tdf#149280 modified called after dialog was destroyed + sw_fieldmarkhide: fix wrong handling of SwInsText for fieldmarks - just ignore it in that case + For redlines, typically DocumentContentOperationsManager::InsertString() + will insert text, and it explicitly removes any redlines on the text + that has been inserted, hence it is always visible - so effectively the + sw::MergedPara is updated correctly. - Change-Id: I8f294acd9ee16d2f9c8662614fac3672f80b3376 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134902 + However for fieldmarks the situation is different, if the insertion + happens inside of the part that is hidden in the layout, then it must + not be inserted into the sw::MergedPara. + + Try to figure out which part(s) of a fieldmark the insertion position is + in and ignore the inserted text as appropriate in + SwTextFrame::SwClientNotify(). + + Change-Id: Ic5066b20e9609f50438ca64ac7d2cbd09baeef23 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134611 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit b121e772350fa5e7e5be597e79e7487debd060c2) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134908 Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + (cherry picked from commit 288ad999090d3f88d87f52ff9b292f473f869601) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134616 + Reviewed-by: Caolán McNamara -2022-06-01 Miklos Vajna [a8ca3af40324c89ea9ec5f58674ed42bec8ca809] +2022-05-20 Miklos Vajna [24d8300c1b5a44c4b30c1e062b449df8507d80dc] sw: fix crash in SwHeaderFooterWin::IsEmptyHeaderFooter() @@ -357,106 +3296,62 @@ (cherry picked from commit 68da277559597c52833067c1749323ac38f3364a) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134622 Reviewed-by: Xisco Fauli - (cherry picked from commit 24d8300c1b5a44c4b30c1e062b449df8507d80dc) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134778 - Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-06-01 Christian Lohmaier [43759a9929fc11acb72740d13d9db6a64377ddfb] +2022-05-20 Tünde Tóth [47b0a2935bf1b73647326cb1748b48cb0aeeeaa6] - update credits - - Change-Id: I159625c29c07188e991ad55de291594f31715f02 - (cherry picked from commit 6c3e1ec7d2177271ea6e01da4cedce022823c622) - (cherry picked from commit 0f9c606064ab6da2eb602c9ab93c35e18b1b4ac4) - -2022-06-01 Christian Lohmaier [71c5e2137305bffde69352106498552c5030c56d] - - Update git submodules - - * Update translations from branch 'libreoffice-7-3-4' - to 7954a3945c09debcc3f1baab7921bb00ec5827a0 - - update translations for 7.3.4 rc2 - - and force-fix errors using pocheck - - Change-Id: I1c546a8267022fa3412f19d9a4c656a2d76339b3 - (cherry picked from commit 55ec674bc94926ed47072222f51bc1be121fd351) - -2022-06-01 Hossein [18c2a7d4cf10564b3f9c48ec190c1c3be8122f6a] - - tdf#149184 DOCX: fix crash removing footer, then saving to doc + tdf#148923 PPTX import: fix incorrect image in media file - When openeing the simplefooter.docx, after removing the footer and - exporting to .doc, LibreOffice crashes. This regression was - introduced with 88e6a1bfeac86e0c89d2ff08c908c2b5ae061177 which is - titled: "DOCX: export hidden (shared) headers/footers". - - The current patch fixes this problem by checking to see if the header - or footer text is there or not. - - A unit test is added to avoid this problem in the future. One can run - the test with: + Linked media file was imported with incorrect image, + if the Impress couldn't play the media file. - make CPPUNIT_TEST_NAME="testTdf149184" -sr CppunitTest_sw_uiwriter7 + Regression from commit 9564747d2fd5d2c859a359dd7fa6242c6859c0d7 + (tdf#53970 PPTX: fix import of linked media files). - Change-Id: I5586561677b3c490e49b4b10bd987aecdf3fc134 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134684 + Change-Id: Ib277a61e83c3794376d2c090b7f742707e779832 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134394 Tested-by: Jenkins - Reviewed-by: Miklos Vajna + Tested-by: László Németh + Reviewed-by: László Németh Signed-off-by: Xisco Fauli - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134829 - (cherry picked from commit 7b09579295579045c4ad76578df09356f3d5b8d0) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134787 - Reviewed-by: Michael Stahl - Tested-by: Miklos Vajna + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134635 -2022-05-24 Stephan Bergmann [ad4983fd26ffc52e6c47ef857907e79b3bd6853b] +2022-05-19 Caolán McNamara [4aef8133f522be2f2d51456990cd64faaa90d080] - tdf#149202 Allow for java.version consisting of four dotted segments + icon-theme not dynamically changing to match desktop if set to 'auto' - ...like "11.0.14.1" reported now by - java-11-openjdk-headless-11.0.14.1.1-5.fc35.x86_64, and which caused + Change-Id: Id5700cff1000fe4b6df6e73c1ce9ff4f206e0a96 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134613 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-05-19 Vasily Melenchuk [a309c671b5f7ac536d7624a2bbc95e23f19bb42d] + + tdf#148132: Revert "n#758883 dmapper: paragraph-level..." - > warn:jfw:274674:274674:jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx:100: [Java framework] sunjavaplugin.so does not know the version: 11.0.14.1 as valid for a SUN/Oracle JRE. + Seems original problem is no longer reprodicible with recent builds + but ovewriting of numbering style params with inline values leads + to another problems. - (For simplicity, cover it with the same code block that already covers a - potential "_01" etc. part following the official(?) three dotted segments.) + Removing this mechanics do some impact on RTF filter: it tries to + modify numbering styles, so this was also corrected. It is not ideal + yet but looks better in support numbering char properties different + from paragraph ones. - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131586 - Tested-by: Jenkins - Reviewed-by: Stephan Bergmann - (cherry picked from commit 8e6462571bb4cb872f607b4ac9dfde7f43b79ac3) + This reverts commit 2123ede032ca64f696ef54af4ad3238974ca2b5d. - Change-Id: Id98235d3be59653ab412f9b6c1ffbf3b0470bd6f - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134820 - Tested-by: Jenkins - Reviewed-by: Caolán McNamara - (cherry picked from commit 6d1b32befcaaa1f61a4879a5dcd04289f6b95f96) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134790 - Reviewed-by: Xisco Fauli + Change-Id: If8c79d6191de13b2f09c128b59d17efcfdb1a4ea + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133877 Reviewed-by: Michael Stahl - Reviewed-by: Stephan Bergmann - Tested-by: Stephan Bergmann - -2022-05-18 Christian Lohmaier [bfbbddba77d60174be690d47d2e165d4fbad00ae] - - bump product version to 7.3.4.1.0+ - - Change-Id: I5ab7f4abadca3ae8aea809708cd3818632b87db6 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134636 -2022-05-18 Christian Lohmaier [f950f6fce23f03332ea394a6aaf23723c459d4fb] +2022-05-18 Christian Lohmaier [ecf9b8609ee45ef49a230a005d06658748f47c2b] - Branch libreoffice-7-3-4 - - This is 'libreoffice-7-3-4' - the stable branch for the 7.3.4 release. - Only very safe changes, reviewed by three people are allowed. + bump product version to 7.3.5.0.0+ - If you want to commit more complicated fix for the next 7.3.x release, - please use the 'libreoffice-7-3' branch. - - If you want to build something cool, unstable, and risky, use master. + Change-Id: I7d01d3f4b475ea6d55199e4babccac2b9338b180 2022-05-18 Luboš Luňák [b93421cf715dae0f05530b2e08796e1c57692a00] diff -Nru libreoffice-7.3.4/chart2/source/controller/dialogs/dlg_DataEditor.cxx libreoffice-7.3.5/chart2/source/controller/dialogs/dlg_DataEditor.cxx --- libreoffice-7.3.4/chart2/source/controller/dialogs/dlg_DataEditor.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/chart2/source/controller/dialogs/dlg_DataEditor.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -113,8 +113,8 @@ m_xTbxData->set_item_sensitive("MoveLeftColumn", bIsDataValid && m_xBrwData->MayMoveLeftColumns() ); m_xTbxData->set_item_sensitive("MoveRightColumn", bIsDataValid && m_xBrwData->MayMoveRightColumns() ); - m_xTbxData->set_item_sensitive("MoveUpRow", bIsDataValid && m_xBrwData->MayMoveDownRows() ); - m_xTbxData->set_item_sensitive("MoveDownRow", bIsDataValid && m_xBrwData->MayMoveUpRows() ); + m_xTbxData->set_item_sensitive("MoveDownRow", bIsDataValid && m_xBrwData->MayMoveDownRows() ); + m_xTbxData->set_item_sensitive("MoveUpRow", bIsDataValid && m_xBrwData->MayMoveUpRows() ); } // disable all modifying controls diff -Nru libreoffice-7.3.4/config_host.mk.in libreoffice-7.3.5/config_host.mk.in --- libreoffice-7.3.4/config_host.mk.in 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/config_host.mk.in 2022-07-15 19:12:51.000000000 +0000 @@ -425,6 +425,7 @@ export MACOSX_CODESIGNING_IDENTITY=@MACOSX_CODESIGNING_IDENTITY@ export MACOSX_DEPLOYMENT_TARGET=@MACOSX_DEPLOYMENT_TARGET@ export MACOSX_PACKAGE_SIGNING_IDENTITY=@MACOSX_PACKAGE_SIGNING_IDENTITY@ +export MACOSX_PROVISIONING_PROFILE=@MACOSX_PROVISIONING_PROFILE@ export MACOSX_SDK_PATH=@MACOSX_SDK_PATH@ export MAC_OS_X_VERSION_MAX_ALLOWED=@MAC_OS_X_VERSION_MAX_ALLOWED@ export MAC_OS_X_VERSION_MIN_REQUIRED=@MAC_OS_X_VERSION_MIN_REQUIRED@ diff -Nru libreoffice-7.3.4/configure libreoffice-7.3.5/configure --- libreoffice-7.3.4/configure 2022-06-01 21:09:01.000000000 +0000 +++ libreoffice-7.3.5/configure 2022-07-15 19:15:53.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.70 for LibreOffice 7.3.4.2. +# Generated by GNU Autoconf 2.70 for LibreOffice 7.3.5.2. # # # Copyright (C) 1992-1996, 1998-2017, 2020 Free Software Foundation, Inc. @@ -607,8 +607,8 @@ # Identity of this package. PACKAGE_NAME='LibreOffice' PACKAGE_TARNAME='libreoffice' -PACKAGE_VERSION='7.3.4.2' -PACKAGE_STRING='LibreOffice 7.3.4.2' +PACKAGE_VERSION='7.3.5.2' +PACKAGE_STRING='LibreOffice 7.3.5.2' PACKAGE_BUGREPORT='' PACKAGE_URL='http://documentfoundation.org/' @@ -844,6 +844,7 @@ GIO_LIBS GIO_CFLAGS SYSTEM_BLUEZ +SDREMOTE_ENTITLEMENT ENABLE_SDREMOTE_BLUETOOTH ENABLE_SDREMOTE DBUS_HAVE_GLIB @@ -1361,6 +1362,8 @@ LIBO_LIB_FOLDER LIBO_ETC_FOLDER LIBO_BIN_FOLDER +MACOSX_PROVISIONING_PROFILE +MACOSX_PROVISIONING_INFO MACOSX_BUNDLE_IDENTIFIER ENABLE_MACOSX_SANDBOX MACOSX_PACKAGE_SIGNING_IDENTITY @@ -1579,6 +1582,7 @@ enable_macosx_package_signing enable_macosx_sandbox with_macosx_bundle_identifier +with_macosx_provisioning_profile with_product_name enable_community_flavor with_package_version @@ -2492,7 +2496,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures LibreOffice 7.3.4.2 to adapt to many kinds of systems. +\`configure' configures LibreOffice 7.3.5.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2562,7 +2566,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of LibreOffice 7.3.4.2:";; + short | recursive ) echo "Configuration of LibreOffice 7.3.5.2:";; esac cat <<\_ACEOF @@ -2958,11 +2962,13 @@ Define the macOS bundle identifier. Default is the somewhat weird org.libreoffice.script ("script", huh?). + --with-macosx-provisioning-profile=/path/to/mac.provisionprofile + Specify the path to a provisioning profile to use --with-product-name='My Own Office Suite' Define the product name. Default is LibreOffice. --with-package-version='3.1.4.5' Define the package version. Default is - 7.3.4.2. Use only if you distribute an + 7.3.5.2. Use only if you distribute an own build for macOS. --with-gcc-home Specify the location of gcc/g++ manually. This can be used in conjunction with --enable-icecream when @@ -3811,7 +3817,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -LibreOffice configure 7.3.4.2 +LibreOffice configure 7.3.5.2 generated by GNU Autoconf 2.70 Copyright (C) 2020 Free Software Foundation, Inc. @@ -4559,7 +4565,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by LibreOffice $as_me 7.3.4.2, which was +It was created by LibreOffice $as_me 7.3.5.2, which was generated by GNU Autoconf 2.70. Invocation command line was $ $0$ac_configure_args_raw @@ -10108,6 +10114,14 @@ +# Check whether --with-macosx-provisioning-profile was given. +if test ${with_macosx_provisioning_profile+y} +then : + withval=$with_macosx_provisioning_profile; +fi + + + # Check whether --with-product-name was given. if test ${with_product_name+y} then : @@ -12716,16 +12730,23 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to do code signing" >&5 printf %s "checking whether to do code signing... " >&6; } - if test "$enable_macosx_code_signing" = yes; then - # By default use the first suitable certificate (?). - - # http://stackoverflow.com/questions/13196291/difference-between-mac-developer-and-3rd-party-mac-developer-application - # says that the "Mac Developer" certificate is useful just for self-testing. For distribution - # outside the Mac App Store, use the "Developer ID Application" one, and for distribution in - # the App Store, the "3rd Party Mac Developer" one. I think it works best to the - # "Developer ID Application" one. + if test -z "$enable_macosx_code_signing" -o "$enable_macosx_code_signing" == "no" ; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } + else + if test "$enable_macosx_code_signing" = yes; then + # By default use the first suitable certificate (?). - identity=`security find-identity -p codesigning -v 2>/dev/null | grep 'Developer ID Application:' | $AWK '{print $2}' |head -1` + # http://stackoverflow.com/questions/13196291/difference-between-mac-developer-and-3rd-party-mac-developer-application + # says that the "Mac Developer" certificate is useful just for self-testing. For distribution + # outside the Mac App Store, use the "Developer ID Application" one, and for distribution in + # the App Store, the "3rd Party Mac Developer" one. I think it works best to the + # "Developer ID Application" one. + identity="Developer ID Application:" + else + identity=$enable_macosx_code_signing + fi + identity=`security find-identity -p codesigning -v 2>/dev/null | $AWK "/$identity/{print \\$2; exit}"` if test -n "$identity"; then MACOSX_CODESIGNING_IDENTITY=$identity pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[^"]*"//' -e 's/"//'` @@ -12734,14 +12755,6 @@ else as_fn_error $? "cannot determine identity to use" "$LINENO" 5 fi - elif test -n "$enable_macosx_code_signing" -a "$enable_macosx_code_signing" != no ; then - MACOSX_CODESIGNING_IDENTITY=$enable_macosx_code_signing - pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[^"]*"//' -e 's/"//'` - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes, using the identity $MACOSX_CODESIGNING_IDENTITY for $pretty_name" >&5 -printf "%s\n" "yes, using the identity $MACOSX_CODESIGNING_IDENTITY for $pretty_name" >&6; } - else - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 -printf "%s\n" "no" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to create a Mac App Store package" >&5 @@ -12752,11 +12765,15 @@ printf "%s\n" "no" >&6; } elif test -z "$MACOSX_CODESIGNING_IDENTITY"; then as_fn_error $? "You forgot --enable-macosx-code-signing" "$LINENO" 5 - elif test "$enable_macosx_package_signing" = yes; then - # By default use the first suitable certificate. - # It should be a "3rd Party Mac Developer Installer" one - - identity=`security find-identity -v 2>/dev/null | grep '3rd Party Mac Developer Installer:' | awk '{print $2}' |head -1` + else + if test "$enable_macosx_package_signing" = yes; then + # By default use the first suitable certificate. + # It should be a "3rd Party Mac Developer Installer" one + identity="3rd Party Mac Developer Installer:" + else + identity=$enable_macosx_package_signing + fi + identity=`security find-identity -v 2>/dev/null | $AWK "/$identity/ {print \\$2; exit}"` if test -n "$identity"; then MACOSX_PACKAGE_SIGNING_IDENTITY=$identity pretty_name=`security find-identity -v | grep "$MACOSX_PACKAGE_SIGNING_IDENTITY" | sed -e 's/^[^"]*"//' -e 's/"//'` @@ -12765,11 +12782,6 @@ else as_fn_error $? "Could not find any suitable '3rd Party Mac Developer Installer' certificate" "$LINENO" 5 fi - else - MACOSX_PACKAGE_SIGNING_IDENTITY=$enable_macosx_package_signing - pretty_name=`security find-identity -v | grep "$MACOSX_PACKAGE_SIGNING_IDENTITY" | sed -e 's/^[^"]*"//' -e 's/"//'` - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes, using the identity $MACOSX_PACKAGE_SIGNING_IDENTITY for $pretty_name" >&5 -printf "%s\n" "yes, using the identity $MACOSX_PACKAGE_SIGNING_IDENTITY for $pretty_name" >&6; } fi if test -n "$MACOSX_CODESIGNING_IDENTITY" -a -n "$MACOSX_PACKAGE_SIGNING_IDENTITY" -a "$MACOSX_CODESIGNING_IDENTITY" = "$MACOSX_PACKAGE_SIGNING_IDENTITY"; then @@ -12797,6 +12809,18 @@ MACOSX_BUNDLE_IDENTIFIER=$with_macosx_bundle_identifier { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MACOSX_BUNDLE_IDENTIFIER" >&5 printf "%s\n" "$MACOSX_BUNDLE_IDENTIFIER" >&6; } + + if test -n "$with_macosx_provisioning_profile" ; then + if test ! -f "$with_macosx_provisioning_profile"; then + as_fn_error $? "provisioning profile not found at $with_macosx_provisioning_profile" "$LINENO" 5 + else + MACOSX_PROVISIONING_PROFILE=$with_macosx_provisioning_profile + MACOSX_PROVISIONING_INFO=$(security cms -D -i "$MACOSX_PROVISIONING_PROFILE" | \ + xmllint --xpath "//key[.='com.apple.application-identifier' or .='com.apple.developer.team-identifier'] \ + | //key[.='com.apple.application-identifier' or .='com.apple.developer.team-identifier']/following-sibling::string[1]" - | \ + sed -e 's#><#>\n\t<#g' -e 's#^#\t#') + fi + fi fi @@ -12810,6 +12834,8 @@ + + if test $_os = iOS; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking what iOS SDK to use" >&5 printf %s "checking what iOS SDK to use... " >&6; } @@ -15104,6 +15130,7 @@ config_host.mk.in \ config_host_lang.mk.in \ Makefile.in \ + lo.xcent.in \ bin/bffvalidator.sh.in \ bin/odfvalidator.sh.in \ bin/officeotron.sh.in \ @@ -23652,7 +23679,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the assembler ($NASM $NAFLAGS) works" >&5 printf %s "checking whether the assembler ($NASM $NAFLAGS) works... " >&6; } cat > conftest.asm << EOF - %line 23655 "configure" + %line 23682 "configure" section .text global _main,main _main: @@ -38788,6 +38815,8 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } ENABLE_SDREMOTE=TRUE + SDREMOTE_ENTITLEMENT=" com.apple.security.network.server + " { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable Bluetooth support in Impress remote control" >&5 printf %s "checking whether to enable Bluetooth support in Impress remote control... " >&6; } @@ -38796,6 +38825,7 @@ if test "$enable_sdremote_bluetooth" = yes; then as_fn_error $? "macOS SDK $macosx_sdk does not currently support --enable-sdremote-bluetooth" "$LINENO" 5 fi + add_warning "not building the bluetooth part of the sdremote - used api was removed from macOS SDK 10.15" enable_sdremote_bluetooth=no fi # If not explicitly enabled or disabled, default @@ -38849,6 +38879,9 @@ printf "%s\n" "yes" >&6; } ENABLE_SDREMOTE_BLUETOOTH=TRUE SYSTEM_BLUEZ= + SDREMOTE_ENTITLEMENT="$SDREMOTE_ENTITLEMENT + com.apple.security.device.bluetooth + " fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 @@ -38866,6 +38899,7 @@ + if test "$ENABLE_GTK4" = "TRUE" -o "$ENABLE_GTK3" = "TRUE" -o "$ENABLE_GTK3_KDE5" = "TRUE"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable GIO support" >&5 printf %s "checking whether to enable GIO support... " >&6; } @@ -44507,7 +44541,7 @@ # Keep in sync with list of files far up, at AC_MSG_CHECKING([for # BUILD platform configuration] - otherwise breaks cross building -ac_config_files="$ac_config_files config_host.mk config_host_lang.mk Makefile bin/bffvalidator.sh bin/odfvalidator.sh bin/officeotron.sh hardened_runtime.xcent instsetoo_native/util/openoffice.lst sysui/desktop/macosx/Info.plist vs-code-template.code-workspace:.vscode/vs-code-template.code-workspace.in" +ac_config_files="$ac_config_files config_host.mk config_host_lang.mk Makefile lo.xcent bin/bffvalidator.sh bin/odfvalidator.sh bin/officeotron.sh hardened_runtime.xcent instsetoo_native/util/openoffice.lst sysui/desktop/macosx/Info.plist vs-code-template.code-workspace:.vscode/vs-code-template.code-workspace.in" ac_config_headers="$ac_config_headers config_host/config_buildid.h" @@ -45089,7 +45123,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by LibreOffice $as_me 7.3.4.2, which was +This file was extended by LibreOffice $as_me 7.3.5.2, which was generated by GNU Autoconf 2.70. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -45158,7 +45192,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -LibreOffice config.status 7.3.4.2 +LibreOffice config.status 7.3.5.2 configured by $0, generated by GNU Autoconf 2.70, with options \\"\$ac_cs_config\\" @@ -45285,6 +45319,7 @@ "config_host.mk") CONFIG_FILES="$CONFIG_FILES config_host.mk" ;; "config_host_lang.mk") CONFIG_FILES="$CONFIG_FILES config_host_lang.mk" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "lo.xcent") CONFIG_FILES="$CONFIG_FILES lo.xcent" ;; "bin/bffvalidator.sh") CONFIG_FILES="$CONFIG_FILES bin/bffvalidator.sh" ;; "bin/odfvalidator.sh") CONFIG_FILES="$CONFIG_FILES bin/odfvalidator.sh" ;; "bin/officeotron.sh") CONFIG_FILES="$CONFIG_FILES bin/officeotron.sh" ;; diff -Nru libreoffice-7.3.4/configure.ac libreoffice-7.3.5/configure.ac --- libreoffice-7.3.4/configure.ac 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/configure.ac 2022-07-15 19:12:51.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.3.4.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[7.3.5.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 @@ -1848,6 +1848,11 @@ org.libreoffice.script ("script", huh?).]), ,with_macosx_bundle_identifier=org.libreoffice.script) +AC_ARG_WITH(macosx-provisioning-profile, + AS_HELP_STRING([--with-macosx-provisioning-profile=/path/to/mac.provisionprofile], + [Specify the path to a provisioning profile to use]), +,) + AC_ARG_WITH(product-name, AS_HELP_STRING([--with-product-name='My Own Office Suite'], [Define the product name. Default is AC_PACKAGE_NAME.]), @@ -3481,16 +3486,22 @@ AC_MSG_CHECKING([whether to do code signing]) - if test "$enable_macosx_code_signing" = yes; then - # By default use the first suitable certificate (?). - - # http://stackoverflow.com/questions/13196291/difference-between-mac-developer-and-3rd-party-mac-developer-application - # says that the "Mac Developer" certificate is useful just for self-testing. For distribution - # outside the Mac App Store, use the "Developer ID Application" one, and for distribution in - # the App Store, the "3rd Party Mac Developer" one. I think it works best to the - # "Developer ID Application" one. + if test -z "$enable_macosx_code_signing" -o "$enable_macosx_code_signing" == "no" ; then + AC_MSG_RESULT([no]) + else + if test "$enable_macosx_code_signing" = yes; then + # By default use the first suitable certificate (?). - identity=`security find-identity -p codesigning -v 2>/dev/null | grep 'Developer ID Application:' | $AWK '{print $2}' |head -1` + # http://stackoverflow.com/questions/13196291/difference-between-mac-developer-and-3rd-party-mac-developer-application + # says that the "Mac Developer" certificate is useful just for self-testing. For distribution + # outside the Mac App Store, use the "Developer ID Application" one, and for distribution in + # the App Store, the "3rd Party Mac Developer" one. I think it works best to the + # "Developer ID Application" one. + identity="Developer ID Application:" + else + identity=$enable_macosx_code_signing + fi + identity=`security find-identity -p codesigning -v 2>/dev/null | $AWK "/$identity/{print \\$2; exit}"` if test -n "$identity"; then MACOSX_CODESIGNING_IDENTITY=$identity pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'` @@ -3498,12 +3509,6 @@ else AC_MSG_ERROR([cannot determine identity to use]) fi - elif test -n "$enable_macosx_code_signing" -a "$enable_macosx_code_signing" != no ; then - MACOSX_CODESIGNING_IDENTITY=$enable_macosx_code_signing - pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'` - AC_MSG_RESULT([yes, using the identity $MACOSX_CODESIGNING_IDENTITY for $pretty_name]) - else - AC_MSG_RESULT([no]) fi AC_MSG_CHECKING([whether to create a Mac App Store package]) @@ -3512,11 +3517,15 @@ AC_MSG_RESULT([no]) elif test -z "$MACOSX_CODESIGNING_IDENTITY"; then AC_MSG_ERROR([You forgot --enable-macosx-code-signing]) - elif test "$enable_macosx_package_signing" = yes; then - # By default use the first suitable certificate. - # It should be a "3rd Party Mac Developer Installer" one - - identity=`security find-identity -v 2>/dev/null | grep '3rd Party Mac Developer Installer:' | awk '{print $2}' |head -1` + else + if test "$enable_macosx_package_signing" = yes; then + # By default use the first suitable certificate. + # It should be a "3rd Party Mac Developer Installer" one + identity="3rd Party Mac Developer Installer:" + else + identity=$enable_macosx_package_signing + fi + identity=`security find-identity -v 2>/dev/null | $AWK "/$identity/ {print \\$2; exit}"` if test -n "$identity"; then MACOSX_PACKAGE_SIGNING_IDENTITY=$identity pretty_name=`security find-identity -v | grep "$MACOSX_PACKAGE_SIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'` @@ -3524,10 +3533,6 @@ else AC_MSG_ERROR([Could not find any suitable '3rd Party Mac Developer Installer' certificate]) fi - else - MACOSX_PACKAGE_SIGNING_IDENTITY=$enable_macosx_package_signing - pretty_name=`security find-identity -v | grep "$MACOSX_PACKAGE_SIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'` - AC_MSG_RESULT([yes, using the identity $MACOSX_PACKAGE_SIGNING_IDENTITY for $pretty_name]) fi if test -n "$MACOSX_CODESIGNING_IDENTITY" -a -n "$MACOSX_PACKAGE_SIGNING_IDENTITY" -a "$MACOSX_CODESIGNING_IDENTITY" = "$MACOSX_PACKAGE_SIGNING_IDENTITY"; then @@ -3549,6 +3554,18 @@ AC_MSG_CHECKING([what macOS app bundle identifier to use]) MACOSX_BUNDLE_IDENTIFIER=$with_macosx_bundle_identifier AC_MSG_RESULT([$MACOSX_BUNDLE_IDENTIFIER]) + + if test -n "$with_macosx_provisioning_profile" ; then + if test ! -f "$with_macosx_provisioning_profile"; then + AC_MSG_ERROR([provisioning profile not found at $with_macosx_provisioning_profile]) + else + MACOSX_PROVISIONING_PROFILE=$with_macosx_provisioning_profile + MACOSX_PROVISIONING_INFO=$([security cms -D -i "$MACOSX_PROVISIONING_PROFILE" | \ + xmllint --xpath "//key[.='com.apple.application-identifier' or .='com.apple.developer.team-identifier'] \ + | //key[.='com.apple.application-identifier' or .='com.apple.developer.team-identifier']/following-sibling::string[1]" - | \ + sed -e 's#><#>\n\t<#g' -e 's#^#\t#']) + fi + fi fi AC_SUBST(MACOSX_SDK_PATH) AC_SUBST(MACOSX_DEPLOYMENT_TARGET) @@ -3560,6 +3577,8 @@ AC_SUBST(MACOSX_PACKAGE_SIGNING_IDENTITY) AC_SUBST(ENABLE_MACOSX_SANDBOX) AC_SUBST(MACOSX_BUNDLE_IDENTIFIER) +AC_SUBST(MACOSX_PROVISIONING_INFO) +AC_SUBST(MACOSX_PROVISIONING_PROFILE) dnl =================================================================== dnl Check iOS SDK and compiler @@ -5490,6 +5509,7 @@ config_host.mk.in \ config_host_lang.mk.in \ Makefile.in \ + lo.xcent.in \ bin/bffvalidator.sh.in \ bin/odfvalidator.sh.in \ bin/officeotron.sh.in \ @@ -11796,6 +11816,8 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then AC_MSG_RESULT([yes]) ENABLE_SDREMOTE=TRUE + SDREMOTE_ENTITLEMENT=" com.apple.security.network.server + " AC_MSG_CHECKING([whether to enable Bluetooth support in Impress remote control]) if test $OS = MACOSX && test "$MACOSX_SDK_VERSION" -ge 101500; then @@ -11803,6 +11825,7 @@ if test "$enable_sdremote_bluetooth" = yes; then AC_MSG_ERROR([macOS SDK $macosx_sdk does not currently support --enable-sdremote-bluetooth]) fi + add_warning "not building the bluetooth part of the sdremote - used api was removed from macOS SDK 10.15" enable_sdremote_bluetooth=no fi # If not explicitly enabled or disabled, default @@ -11847,6 +11870,9 @@ AC_MSG_RESULT([yes]) ENABLE_SDREMOTE_BLUETOOTH=TRUE SYSTEM_BLUEZ= + SDREMOTE_ENTITLEMENT="$SDREMOTE_ENTITLEMENT + com.apple.security.device.bluetooth + " fi else AC_MSG_RESULT([no]) @@ -11860,6 +11886,7 @@ fi AC_SUBST(ENABLE_SDREMOTE) AC_SUBST(ENABLE_SDREMOTE_BLUETOOTH) +AC_SUBST(SDREMOTE_ENTITLEMENT) AC_SUBST(SYSTEM_BLUEZ) dnl =================================================================== @@ -14667,6 +14694,7 @@ AC_CONFIG_FILES([config_host.mk config_host_lang.mk Makefile + lo.xcent bin/bffvalidator.sh bin/odfvalidator.sh bin/officeotron.sh diff -Nru libreoffice-7.3.4/connectivity/source/drivers/firebird/PreparedStatement.cxx libreoffice-7.3.5/connectivity/source/drivers/firebird/PreparedStatement.cxx --- libreoffice-7.3.4/connectivity/source/drivers/firebird/PreparedStatement.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/connectivity/source/drivers/firebird/PreparedStatement.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -52,6 +52,8 @@ IMPLEMENT_SERVICE_INFO(OPreparedStatement,"com.sun.star.sdbcx.firebird.PreparedStatement","com.sun.star.sdbc.PreparedStatement"); +constexpr size_t MAX_SIZE_SEGMENT = 65535; // max value of a segment of CLOB, if we want more than 65535 bytes, we need more segments + OPreparedStatement::OPreparedStatement( Connection* _pConnection, const OUString& sql) @@ -663,10 +665,41 @@ OString sData = OUStringToOString( rStr, RTL_TEXTENCODING_UTF8); - ISC_STATUS aErr = isc_put_segment( m_statusVector, + size_t nDataSize = sData.getLength(); + ISC_STATUS aErr = 0; + // we can't store more than MAX_SIZE_SEGMENT in a segment + if (nDataSize <= MAX_SIZE_SEGMENT) + { + aErr = isc_put_segment( m_statusVector, &aBlobHandle, sData.getLength(), sData.getStr() ); + } + else + { + // if we need more, let's split the input and first let's calculate the nb of entire chunks needed + size_t nNbEntireChunks = nDataSize / MAX_SIZE_SEGMENT; + for (size_t i = 0; i < nNbEntireChunks; ++i) + { + OString strCurrentChunk = sData.copy(i * MAX_SIZE_SEGMENT, MAX_SIZE_SEGMENT); + aErr = isc_put_segment( m_statusVector, + &aBlobHandle, + strCurrentChunk.getLength(), + strCurrentChunk.getStr() ); + if (aErr) + break; + } + size_t nRemainingBytes = nDataSize - (nNbEntireChunks * MAX_SIZE_SEGMENT); + if (nRemainingBytes && !aErr) + { + // then copy the remaining + OString strCurrentChunk = sData.copy(nNbEntireChunks * MAX_SIZE_SEGMENT, nRemainingBytes); + aErr = isc_put_segment( m_statusVector, + &aBlobHandle, + strCurrentChunk.getLength(), + strCurrentChunk.getStr() ); + } + } // We need to make sure we close the Blob even if there are errors, hence evaluate // errors after closing. diff -Nru libreoffice-7.3.4/connectivity/source/drivers/macab/MacabAddressBook.cxx libreoffice-7.3.5/connectivity/source/drivers/macab/MacabAddressBook.cxx --- libreoffice-7.3.4/connectivity/source/drivers/macab/MacabAddressBook.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/connectivity/source/drivers/macab/MacabAddressBook.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -82,6 +82,13 @@ m_xMacabRecords(nullptr), m_bRetrievedGroups(false) { + if(m_aAddressBook == nullptr) + { + // TODO: tell the user to reset the permission via "tccutil reset AddressBook" + // or the system preferences and try again, this time granting the access + throw RuntimeException( + "failed to access the macOS address book - permission not granted?" ); + } } diff -Nru libreoffice-7.3.4/debian/changelog libreoffice-7.3.5/debian/changelog --- libreoffice-7.3.4/debian/changelog 2022-06-02 05:47:06.000000000 +0000 +++ libreoffice-7.3.5/debian/changelog 2022-07-16 10:39:11.000000000 +0000 @@ -1,3 +1,9 @@ +libreoffice (1:7.3.5-0ubuntu0.22.04.1) jammy; urgency=medium + + * New upstream release (LP: #1981966) + + -- Rico Tzschichholz Sat, 16 Jul 2022 12:39:11 +0200 + libreoffice (1:7.3.4-0ubuntu0.22.04.1) jammy; urgency=medium * New upstream release (LP: #1977525) diff -Nru libreoffice-7.3.4/debian/rules libreoffice-7.3.5/debian/rules --- libreoffice-7.3.4/debian/rules 2022-06-02 05:47:06.000000000 +0000 +++ libreoffice-7.3.5/debian/rules 2022-07-16 10:39:11.000000000 +0000 @@ -73,11 +73,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.3.4.2 +lo_sources_ver=7.3.5.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-3-4 +GIT_BRANCH=libreoffice-7-3-5 endif ifeq "$(USE_SOURCE_TARBALLS)" "y" lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2) diff -Nru libreoffice-7.3.4/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx libreoffice-7.3.5/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx --- libreoffice-7.3.4/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -982,11 +982,12 @@ nTransparency defines minimal transparency level. */ AlphaMask ProcessAndBlurAlphaMask(const Bitmap& rMask, double fErodeDilateRadius, - double fBlurRadius, sal_uInt8 nTransparency) + double fBlurRadius, sal_uInt8 nTransparency, + bool bConvertTo1Bit = true) { // Only completely white pixels on the initial mask must be considered for transparency. Any // other color must be treated as black. This creates 1-bit B&W bitmap. - BitmapEx mask(rMask.CreateMask(COL_WHITE)); + BitmapEx mask(bConvertTo1Bit ? rMask.CreateMask(COL_WHITE) : rMask); // Scaling down increases performance without noticeable quality loss. Additionally, // current blur implementation can only handle blur radius between 2 and 254. @@ -1178,7 +1179,7 @@ BitmapEx bitmapEx = mpOutputDevice->GetBitmapEx(aRect.TopLeft(), aRect.GetSize()); - AlphaMask mask = ProcessAndBlurAlphaMask(bitmapEx.GetAlpha(), 0, fBlurRadius, 0); + AlphaMask mask = ProcessAndBlurAlphaMask(bitmapEx.GetAlpha(), 0, fBlurRadius, 0, false); const basegfx::BColor aShadowColor( maBColorModifierStack.getModifiedColor(rCandidate.getShadowColor())); @@ -1267,7 +1268,9 @@ { mpOutputDevice->Push(vcl::PushFlags::CLIPREGION); mpOutputDevice->IntersectClipRegion(vcl::Region(aMask)); - mpOutputDevice->DrawWallpaper(aMaskRect, Wallpaper(aTileImage)); + Wallpaper aWallpaper(aTileImage); + aWallpaper.SetColor(COL_TRANSPARENT); + mpOutputDevice->DrawWallpaper(aMaskRect, aWallpaper); mpOutputDevice->Pop(); return; } @@ -1290,7 +1293,11 @@ mpOutputDevice->DrawRect(aMaskRect); } else - mpOutputDevice->DrawWallpaper(aMaskRect, Wallpaper(aTileImage)); + { + Wallpaper aWallpaper(aTileImage); + aWallpaper.SetColor(COL_TRANSPARENT); + mpOutputDevice->DrawWallpaper(aMaskRect, aWallpaper); + } // back to old OutDev mpOutputDevice = pLastOutputDevice; diff -Nru libreoffice-7.3.4/drawinglayer/source/tools/emfpbrush.cxx libreoffice-7.3.5/drawinglayer/source/tools/emfpbrush.cxx --- libreoffice-7.3.4/drawinglayer/source/tools/emfpbrush.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/drawinglayer/source/tools/emfpbrush.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -187,6 +187,12 @@ SAL_INFO("drawinglayer.emf", "EMF+\t\t\t\tUse brush transformation: " << brush_transformation); } + // BrushDataPresetColors and BrushDataBlendFactorsH + if ((additionalFlags & 0x04) && (additionalFlags & 0x08)) + { + SAL_WARN("drawinglayer.emf", "EMF+\t Brush must not contain both BrushDataPresetColors and BrushDataBlendFactorsH"); + return; + } if (additionalFlags & 0x08) { s.ReadInt32(blendPoints); @@ -268,6 +274,12 @@ hasTransformation = true; SAL_INFO("drawinglayer.emf", "EMF+\t\t\t\tUse brush transformation: " << brush_transformation); } + // BrushDataPresetColors and BrushDataBlendFactorsH + if ((additionalFlags & 0x04) && (additionalFlags & 0x08)) + { + SAL_WARN("drawinglayer.emf", "EMF+\t Brush must not contain both BrushDataPresetColors and BrushDataBlendFactorsH"); + return; + } if (additionalFlags & 0x08) { diff -Nru libreoffice-7.3.4/drawinglayer/source/tools/emfphelperdata.cxx libreoffice-7.3.5/drawinglayer/source/tools/emfphelperdata.cxx --- libreoffice-7.3.4/drawinglayer/source/tools/emfphelperdata.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/drawinglayer/source/tools/emfphelperdata.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -784,21 +784,12 @@ // store the blendpoints in the vector for (int i = 0; i < brush->blendPoints; i++) { - double aBlendPoint; + const double aBlendPoint = brush->blendPositions[i]; basegfx::BColor aColor; - if (brush->type == BrushTypeLinearGradient) - { - aBlendPoint = brush->blendPositions [i]; - } - else - { - // seems like SvgRadialGradientPrimitive2D needs doubled, inverted radius - aBlendPoint = 2. * ( 1. - brush->blendPositions [i] ); - } - aColor.setGreen( aStartColor.getGreen() + brush->blendFactors[i] * ( aEndColor.getGreen() - aStartColor.getGreen() ) ); - aColor.setBlue ( aStartColor.getBlue() + brush->blendFactors[i] * ( aEndColor.getBlue() - aStartColor.getBlue() ) ); - aColor.setRed ( aStartColor.getRed() + brush->blendFactors[i] * ( aEndColor.getRed() - aStartColor.getRed() ) ); - const double aAlpha = brush->solidColor.GetAlpha() + brush->blendFactors[i] * ( brush->secondColor.GetAlpha() - brush->solidColor.GetAlpha() ); + aColor.setGreen(aStartColor.getGreen() + brush->blendFactors[i] * (aEndColor.getGreen() - aStartColor.getGreen())); + aColor.setBlue (aStartColor.getBlue() + brush->blendFactors[i] * (aEndColor.getBlue() - aStartColor.getBlue())); + aColor.setRed (aStartColor.getRed() + brush->blendFactors[i] * (aEndColor.getRed() - aStartColor.getRed())); + const double aAlpha = brush->solidColor.GetAlpha() + brush->blendFactors[i] * (brush->secondColor.GetAlpha() - brush->solidColor.GetAlpha()); aVector.emplace_back(aBlendPoint, aColor, aAlpha / 255.0); } } @@ -809,33 +800,15 @@ // store the colorBlends in the vector for (int i = 0; i < brush->colorblendPoints; i++) { - double aBlendPoint; - basegfx::BColor aColor; - if (brush->type == BrushTypeLinearGradient) - { - aBlendPoint = brush->colorblendPositions [i]; - } - else - { - // seems like SvgRadialGradientPrimitive2D needs doubled, inverted radius - aBlendPoint = 2. * ( 1. - brush->colorblendPositions [i] ); - } - aColor = brush->colorblendColors[i].getBColor(); - aVector.emplace_back(aBlendPoint, aColor, brush->colorblendColors[i].GetAlpha() / 255.0 ); + const double aBlendPoint = brush->colorblendPositions[i]; + const basegfx::BColor aColor = brush->colorblendColors[i].getBColor(); + aVector.emplace_back(aBlendPoint, aColor, brush->colorblendColors[i].GetAlpha() / 255.0); } } else // ok, no extra points: just start and end { - if (brush->type == BrushTypeLinearGradient) - { - aVector.emplace_back(0.0, aStartColor, brush->solidColor.GetAlpha() / 255.0); - aVector.emplace_back(1.0, aEndColor, brush->secondColor.GetAlpha() / 255.0); - } - else // again, here reverse - { - aVector.emplace_back(0.0, aEndColor, brush->secondColor.GetAlpha() / 255.0); - aVector.emplace_back(1.0, aStartColor, brush->solidColor.GetAlpha() / 255.0); - } + aVector.emplace_back(0.0, aStartColor, brush->solidColor.GetAlpha() / 255.0); + aVector.emplace_back(1.0, aEndColor, brush->secondColor.GetAlpha() / 255.0); } // get the polygon range to be able to map the start/end/center point correctly @@ -886,7 +859,7 @@ aSpreadMethod)); } else // BrushTypePathGradient - { + { // TODO The PathGradient is not implemented, and Radial Gradient is used instead basegfx::B2DPoint aCenterPoint = Map(brush->firstPointX, brush->firstPointY); aCenterPoint = aPolygonTransformation * aCenterPoint; @@ -897,9 +870,9 @@ polygon, std::move(aVector), aCenterPoint, - 0.5, // relative radius - true, // use UnitCoordinates to stretch the gradient - drawinglayer::primitive2d::SpreadMethod::Repeat, + 0.7, // relative radius little bigger to cover all elements + true, // use UnitCoordinates to stretch the gradient + drawinglayer::primitive2d::SpreadMethod::Pad, nullptr)); } } diff -Nru libreoffice-7.3.4/drawinglayer/source/tools/primitive2dxmldump.cxx libreoffice-7.3.5/drawinglayer/source/tools/primitive2dxmldump.cxx --- libreoffice-7.3.4/drawinglayer/source/tools/primitive2dxmldump.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/drawinglayer/source/tools/primitive2dxmldump.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -458,6 +458,25 @@ rWriter.endElement(); } +void writeSpreadMethod(::tools::XmlWriter& rWriter, + const drawinglayer::primitive2d::SpreadMethod& rSpreadMethod) +{ + switch (rSpreadMethod) + { + case drawinglayer::primitive2d::SpreadMethod::Pad: + rWriter.attribute("spreadmethod", "pad"); + break; + case drawinglayer::primitive2d::SpreadMethod::Reflect: + rWriter.attribute("spreadmethod", "reflect"); + break; + case drawinglayer::primitive2d::SpreadMethod::Repeat: + rWriter.attribute("spreadmethod", "repeat"); + break; + default: + rWriter.attribute("spreadmethod", "unknown"); + } +} + } // end anonymous namespace Primitive2dXmlDump::Primitive2dXmlDump() @@ -887,13 +906,28 @@ const SvgRadialGradientPrimitive2D& rSvgRadialGradientPrimitive2D = dynamic_cast(*pBasePrimitive); rWriter.startElement("svgradialgradient"); - basegfx::B2DPoint aFocusAttribute = rSvgRadialGradientPrimitive2D.getFocal(); + if (rSvgRadialGradientPrimitive2D.isFocalSet()) + { + basegfx::B2DPoint aFocalAttribute = rSvgRadialGradientPrimitive2D.getFocal(); + rWriter.attribute("focalx", aFocalAttribute.getX()); + rWriter.attribute("focaly", aFocalAttribute.getY()); + } + basegfx::B2DPoint aStartPoint = rSvgRadialGradientPrimitive2D.getStart(); + rWriter.attribute("startx", aStartPoint.getX()); + rWriter.attribute("starty", aStartPoint.getY()); rWriter.attribute("radius", OString::number(rSvgRadialGradientPrimitive2D.getRadius())); - rWriter.attribute("focusx", aFocusAttribute.getX()); - rWriter.attribute("focusy", aFocusAttribute.getY()); + writeSpreadMethod(rWriter, rSvgRadialGradientPrimitive2D.getSpreadMethod()); + rWriter.attributeDouble( + "opacity", + rSvgRadialGradientPrimitive2D.getGradientEntries().front().getOpacity()); + + rWriter.startElement("transform"); + writeMatrix(rWriter, rSvgRadialGradientPrimitive2D.getGradientTransform()); + rWriter.endElement(); + writePolyPolygon(rWriter, rSvgRadialGradientPrimitive2D.getPolyPolygon()); rWriter.endElement(); } break; @@ -910,7 +944,7 @@ rWriter.attribute("starty", aStartAttribute.getY()); rWriter.attribute("endx", aEndAttribute.getX()); rWriter.attribute("endy", aEndAttribute.getY()); - //rWriter.attribute("spreadmethod", (int)rSvgLinearGradientPrimitive2D.getSpreadMethod()); + writeSpreadMethod(rWriter, rSvgLinearGradientPrimitive2D.getSpreadMethod()); rWriter.attributeDouble( "opacity", rSvgLinearGradientPrimitive2D.getGradientEntries().front().getOpacity()); diff -Nru libreoffice-7.3.4/editeng/source/editeng/editdoc.cxx libreoffice-7.3.5/editeng/source/editeng/editdoc.cxx --- libreoffice-7.3.4/editeng/source/editeng/editdoc.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/editeng/source/editeng/editdoc.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2216,8 +2216,6 @@ void EditDoc::SetModified( bool b ) { - if (bModified == b) - return; bModified = b; if ( bModified ) { diff -Nru libreoffice-7.3.4/editeng/source/editeng/impedit.cxx libreoffice-7.3.5/editeng/source/editeng/impedit.cxx --- libreoffice-7.3.4/editeng/source/editeng/impedit.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/editeng/source/editeng/impedit.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -241,9 +241,6 @@ void ImpEditView::SetEditSelection( const EditSelection& rEditSelection ) { - if (aEditSelection == rEditSelection) - return; - // set state before notification aEditSelection = rEditSelection; diff -Nru libreoffice-7.3.4/editeng/source/items/frmitems.cxx libreoffice-7.3.5/editeng/source/items/frmitems.cxx --- libreoffice-7.3.4/editeng/source/items/frmitems.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/editeng/source/items/frmitems.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2809,6 +2809,7 @@ SvxBrushItem::SvxBrushItem(sal_uInt16 _nWhich) : SfxPoolItem(_nWhich) , aColor(COL_TRANSPARENT) + , aFilterColor(COL_TRANSPARENT) , nShadingValue(ShadingPattern::CLEAR) , nGraphicTransparency(0) , eGraphicPos(GPOS_NONE) @@ -2819,6 +2820,7 @@ SvxBrushItem::SvxBrushItem(const Color& rColor, sal_uInt16 _nWhich) : SfxPoolItem(_nWhich) , aColor(rColor) + , aFilterColor(COL_TRANSPARENT) , nShadingValue(ShadingPattern::CLEAR) , nGraphicTransparency(0) , eGraphicPos(GPOS_NONE) @@ -2829,6 +2831,7 @@ SvxBrushItem::SvxBrushItem(const Graphic& rGraphic, SvxGraphicPosition ePos, sal_uInt16 _nWhich) : SfxPoolItem(_nWhich) , aColor(COL_TRANSPARENT) + , aFilterColor(COL_TRANSPARENT) , nShadingValue(ShadingPattern::CLEAR) , xGraphicObject(new GraphicObject(rGraphic)) , nGraphicTransparency(0) @@ -2841,6 +2844,7 @@ SvxBrushItem::SvxBrushItem(const GraphicObject& rGraphicObj, SvxGraphicPosition ePos, sal_uInt16 _nWhich) : SfxPoolItem(_nWhich) , aColor(COL_TRANSPARENT) + , aFilterColor(COL_TRANSPARENT) , nShadingValue(ShadingPattern::CLEAR) , xGraphicObject(new GraphicObject(rGraphicObj)) , nGraphicTransparency(0) @@ -2854,6 +2858,7 @@ SvxGraphicPosition ePos, sal_uInt16 _nWhich) : SfxPoolItem(_nWhich) , aColor(COL_TRANSPARENT) + , aFilterColor(COL_TRANSPARENT) , nShadingValue(ShadingPattern::CLEAR) , nGraphicTransparency(0) , maStrLink(rLink) @@ -2867,6 +2872,7 @@ SvxBrushItem::SvxBrushItem(const SvxBrushItem& rItem) : SfxPoolItem(rItem) , aColor(rItem.aColor) + , aFilterColor(rItem.aFilterColor) , nShadingValue(rItem.nShadingValue) , xGraphicObject(rItem.xGraphicObject ? new GraphicObject(*rItem.xGraphicObject) : nullptr) , nGraphicTransparency(rItem.nGraphicTransparency) @@ -2880,6 +2886,7 @@ SvxBrushItem::SvxBrushItem(SvxBrushItem&& rItem) : SfxPoolItem(std::move(rItem)) , aColor(std::move(rItem.aColor)) + , aFilterColor(std::move(rItem.aFilterColor)) , nShadingValue(std::move(rItem.nShadingValue)) , xGraphicObject(std::move(rItem.xGraphicObject)) , nGraphicTransparency(std::move(rItem.nGraphicTransparency)) @@ -3134,8 +3141,8 @@ assert(SfxPoolItem::operator==(rAttr)); const SvxBrushItem& rCmp = static_cast(rAttr); - bool bEqual = ( aColor == rCmp.aColor && eGraphicPos == rCmp.eGraphicPos && - nGraphicTransparency == rCmp.nGraphicTransparency); + bool bEqual = ( aColor == rCmp.aColor && aFilterColor == rCmp.aFilterColor && + eGraphicPos == rCmp.eGraphicPos && nGraphicTransparency == rCmp.nGraphicTransparency); if ( bEqual ) { @@ -3343,6 +3350,7 @@ (void)xmlTextWriterStartElement(pWriter, BAD_CAST("SvxBrushItem")); (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("whichId"), BAD_CAST(OString::number(Which()).getStr())); (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("color"), BAD_CAST(aColor.AsRGBHexString().toUtf8().getStr())); + (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("filtercolor"), BAD_CAST(aFilterColor.AsRGBHexString().toUtf8().getStr())); (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("shadingValue"), BAD_CAST(OString::number(nShadingValue).getStr())); (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("link"), BAD_CAST(maStrLink.toUtf8().getStr())); (void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("filter"), BAD_CAST(maStrFilter.toUtf8().getStr())); Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/emfio/qa/cppunit/emf/data/TestEmfPlusBrushPathGradientWithBlendColors.emf and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/emfio/qa/cppunit/emf/data/TestEmfPlusBrushPathGradientWithBlendColors.emf differ diff -Nru libreoffice-7.3.4/emfio/qa/cppunit/emf/EmfImportTest.cxx libreoffice-7.3.5/emfio/qa/cppunit/emf/EmfImportTest.cxx --- libreoffice-7.3.4/emfio/qa/cppunit/emf/EmfImportTest.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/emfio/qa/cppunit/emf/EmfImportTest.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -65,6 +65,7 @@ void TestSetArcDirection(); void TestDrawPolyLine16WithClip(); void TestFillRegion(); + void TestEmfPlusBrushPathGradientWithBlendColors(); void TestExtTextOutOpaqueAndClipTransform(); void TestBitBltStretchBltWMF(); @@ -109,6 +110,7 @@ CPPUNIT_TEST(TestSetArcDirection); CPPUNIT_TEST(TestDrawPolyLine16WithClip); CPPUNIT_TEST(TestFillRegion); + CPPUNIT_TEST(TestEmfPlusBrushPathGradientWithBlendColors); CPPUNIT_TEST(TestExtTextOutOpaqueAndClipTransform); CPPUNIT_TEST(TestBitBltStretchBltWMF); @@ -452,6 +454,7 @@ assertXPath(pDocument, aXPathPrefix + "mask/polypolygon", "width", "15232"); assertXPath(pDocument, aXPathPrefix + "mask/polypolygon", "path", "m0 0h15232v7610h-15232z"); + assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[1]", "spreadmethod", "repeat"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[1]", "startx", "0"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[1]", "starty", "-1"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[1]", "endx", "0"); @@ -460,6 +463,8 @@ "0.392156862745098"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[1]/polypolygon", "path", "m0 0.216110019646294h7615.75822989746v7610.21611001965h-7615.75822989746z"); + + assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[2]", "spreadmethod", "repeat"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[2]", "startx", "-1"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[2]", "starty", "-1"); assertXPath(pDocument, aXPathPrefix + "mask/svglineargradient[2]", "endx", "0"); @@ -890,6 +895,25 @@ assertXPath(pDocument, aXPathPrefix + "polygonhairline[2]", "color", "#000000"); } +void Test::TestEmfPlusBrushPathGradientWithBlendColors() +{ + // tdf#131506 EMF+ records: FillRects, Brush with PathGradient and BlendColor, FillRects + Primitive2DSequence aSequence + = parseEmf(u"emfio/qa/cppunit/emf/data/TestEmfPlusBrushPathGradientWithBlendColors.emf"); + CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); + drawinglayer::Primitive2dXmlDump dumper; + xmlDocUniquePtr pDocument + = dumper.dumpAndParse(comphelper::sequenceToContainer(aSequence)); + CPPUNIT_ASSERT(pDocument); + + assertXPath(pDocument, aXPathPrefix + "svgradialgradient", "radius", "0.7"); + assertXPath(pDocument, aXPathPrefix + "svgradialgradient/focalx", 0); + assertXPath(pDocument, aXPathPrefix + "svgradialgradient/focaly", 0); + assertXPath(pDocument, aXPathPrefix + "svgradialgradient", "startx", "0"); + assertXPath(pDocument, aXPathPrefix + "svgradialgradient", "starty", "0"); + assertXPath(pDocument, aXPathPrefix + "svgradialgradient", "spreadmethod", "pad"); +} + void Test::TestExtTextOutOpaqueAndClipTransform() { // tdf#142495 EMF records: SETBKCOLOR, SELECTOBJECT, EXTTEXTOUTW, MODIFYWORLDTRANSFORM, CREATEFONTINDIRECT. diff -Nru libreoffice-7.3.4/extensions/inc/stringarrays.hrc libreoffice-7.3.5/extensions/inc/stringarrays.hrc --- libreoffice-7.3.4/extensions/inc/stringarrays.hrc 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/extensions/inc/stringarrays.hrc 2022-07-15 19:12:51.000000000 +0000 @@ -76,12 +76,6 @@ NC_("RID_RSC_ENUM_BUTTONTYPE", "Refresh form") }; -const TranslateId RID_RSC_ENUM_SUBMIT_METHOD[] = -{ - NC_("RID_RSC_ENUM_SUBMIT_METHOD", "Get"), - NC_("RID_RSC_ENUM_SUBMIT_METHOD", "Post" ) -}; - const TranslateId RID_RSC_ENUM_SUBMIT_ENCODING[] = { NC_("RID_RSC_ENUM_SUBMIT_ENCODING", "URL"), diff -Nru libreoffice-7.3.4/extensions/source/propctrlr/formmetadata.cxx libreoffice-7.3.5/extensions/source/propctrlr/formmetadata.cxx --- libreoffice-7.3.4/extensions/source/propctrlr/formmetadata.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/extensions/source/propctrlr/formmetadata.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -410,6 +410,10 @@ OSL_ENSURE( ( ( getPropertyUIFlags( _nId ) & PROP_FLAG_ENUM ) != 0 ) || ( _nId == PROPERTY_ID_TARGET_FRAME ), "OPropertyInfoService::getPropertyEnumRepresentations: this is no enum property!" ); + if (_nId == PROPERTY_ID_SUBMIT_METHOD) + { + return { "Get", "Post" }; + } const TranslateId* pStringItemsResId = nullptr; int nElements = 0; switch ( _nId ) @@ -450,10 +454,6 @@ pStringItemsResId = RID_RSC_ENUM_PUSHBUTTONTYPE; nElements = SAL_N_ELEMENTS(RID_RSC_ENUM_PUSHBUTTONTYPE); break; - case PROPERTY_ID_SUBMIT_METHOD: - pStringItemsResId = RID_RSC_ENUM_SUBMIT_METHOD; - nElements = SAL_N_ELEMENTS(RID_RSC_ENUM_SUBMIT_METHOD); - break; case PROPERTY_ID_SUBMIT_ENCODING: pStringItemsResId = RID_RSC_ENUM_SUBMIT_ENCODING; nElements = SAL_N_ELEMENTS(RID_RSC_ENUM_SUBMIT_ENCODING); diff -Nru libreoffice-7.3.4/external/breakpad/include.patch libreoffice-7.3.5/external/breakpad/include.patch --- libreoffice-7.3.4/external/breakpad/include.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/breakpad/include.patch 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,10 @@ +--- src/client/linux/handler/minidump_descriptor.h ++++ src/client/linux/handler/minidump_descriptor.h +@@ -31,6 +31,7 @@ + #define CLIENT_LINUX_HANDLER_MINIDUMP_DESCRIPTOR_H_ + + #include ++#include + #include + + #include diff -Nru libreoffice-7.3.4/external/breakpad/UnpackedTarball_breakpad.mk libreoffice-7.3.5/external/breakpad/UnpackedTarball_breakpad.mk --- libreoffice-7.3.4/external/breakpad/UnpackedTarball_breakpad.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/breakpad/UnpackedTarball_breakpad.mk 2022-07-15 19:12:51.000000000 +0000 @@ -29,6 +29,7 @@ external/breakpad/breakpad-no-env.patch.1 \ external/breakpad/SIGSTKSZ.patch \ external/breakpad/sanitizer.patch \ + external/breakpad/include.patch \ )) $(eval $(call gb_UnpackedTarball_add_files,breakpad,src/tools/windows/dump_syms,\ diff -Nru libreoffice-7.3.4/external/libnumbertext/EmptyString.patch1 libreoffice-7.3.5/external/libnumbertext/EmptyString.patch1 --- libreoffice-7.3.4/external/libnumbertext/EmptyString.patch1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/libnumbertext/EmptyString.patch1 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,13 @@ +--- a/src/Soros.cxx 2022-06-27 09:36:46.486075920 +0100 ++++ b/src/Soros.cxx 2022-06-27 09:37:52.594072196 +0100 +@@ -98,8 +98,8 @@ + s = regex_replace(s, quoteEnd, L""); + s = translate(s, c.substr(1), m.substr(1), L""); + replace(s, slash, L"\\\\"); // -> \\, ", ;, # +- begins.push_back(s[0] == L'^'); +- ends.push_back(s[s.length()-1] == L'$'); ++ begins.push_back(!s.empty() && s[0] == L'^'); ++ ends.push_back(!s.empty() && s[s.length()-1] == L'$'); + s = L"^" + regex_replace(s, wregex(L"^\\^"), L""); + s = regex_replace(s, wregex(L"\\$$"), L"") + L"$"; + try diff -Nru libreoffice-7.3.4/external/libnumbertext/UnpackedTarball_libnumbertext.mk libreoffice-7.3.5/external/libnumbertext/UnpackedTarball_libnumbertext.mk --- libreoffice-7.3.4/external/libnumbertext/UnpackedTarball_libnumbertext.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/libnumbertext/UnpackedTarball_libnumbertext.mk 2022-07-15 19:12:51.000000000 +0000 @@ -18,6 +18,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,libnumbertext, \ external/libnumbertext/MSVCNonBMPBug.patch1 \ external/libnumbertext/WinUnicodePath.patch1 \ + external/libnumbertext/EmptyString.patch1 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.4/external/liborcus/include.patch.0 libreoffice-7.3.5/external/liborcus/include.patch.0 --- libreoffice-7.3.4/external/liborcus/include.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/liborcus/include.patch.0 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,20 @@ +--- include/orcus/base64.hpp ++++ include/orcus/base64.hpp +@@ -9,6 +9,7 @@ + #define __ORCUS_BASE64_HPP__ + + #include "env.hpp" ++#include + #include + #include + +--- include/orcus/types.hpp ++++ include/orcus/types.hpp +@@ -16,6 +16,7 @@ + #pragma GCC diagnostic ignored "-Wshadow" + #endif + ++#include + #include + #include + #include diff -Nru libreoffice-7.3.4/external/liborcus/overrun.patch.0 libreoffice-7.3.5/external/liborcus/overrun.patch.0 --- libreoffice-7.3.4/external/liborcus/overrun.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/liborcus/overrun.patch.0 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,63 @@ +--- src/parser/sax_token_parser.cpp ++++ src/parser/sax_token_parser.cpp +@@ -10,6 +10,7 @@ + + #include + #include ++#include + + namespace orcus { + +@@ -329,6 +330,28 @@ + m_elem.raw_name = elem.name; + } + ++static uint8_t readUint8(char const * begin, char const * end, char const ** endptr) { ++ unsigned n = 0; ++ char const * p = begin; ++ for (; p != end; ++p) { ++ char const c = *p; ++ if (c < '0' || c > '9') { ++ break; ++ } ++ n = 10 * n + (c - '0'); ++ if (n > std::numeric_limits::max()) { ++ *endptr = nullptr; ++ return 0; ++ } ++ } ++ if (p == begin) { ++ *endptr = nullptr; ++ return 0; ++ } ++ *endptr = p; ++ return n; ++} ++ + void sax_token_handler_wrapper_base::attribute(std::string_view name, std::string_view val) + { + decl_attr_type dat = decl_attr::get().find(name.data(), name.size()); +@@ -340,18 +362,18 @@ + const char* p = val.data(); + const char* p_end = p + val.size(); + +- char* endptr = nullptr; +- long v = std::strtol(p, &endptr, 10); ++ const char* endptr = nullptr; ++ uint8_t v = readUint8(p, p_end, &endptr); + +- if (!endptr || endptr >= p_end || *endptr != '.') ++ if (!endptr || endptr == p_end || *endptr != '.') + break; + + m_declaration.version_major = v; + p = endptr + 1; + +- v = std::strtol(p, &endptr, 10); ++ v = readUint8(p, p_end, &endptr); + +- if (!endptr || endptr > p_end) ++ if (!endptr) + break; + + m_declaration.version_minor = v; diff -Nru libreoffice-7.3.4/external/liborcus/UnpackedTarball_liborcus.mk libreoffice-7.3.5/external/liborcus/UnpackedTarball_liborcus.mk --- libreoffice-7.3.4/external/liborcus/UnpackedTarball_liborcus.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/liborcus/UnpackedTarball_liborcus.mk 2022-07-15 19:12:51.000000000 +0000 @@ -38,6 +38,8 @@ external/liborcus/forcepoint-87.patch.1 \ external/liborcus/forcepoint-88.patch.1 \ external/liborcus/forcepoint-95.patch.1 \ + external/liborcus/include.patch.0 \ + external/liborcus/overrun.patch.0 \ )) ifeq ($(OS),WNT) diff -Nru libreoffice-7.3.4/external/pdfium/include.patch libreoffice-7.3.5/external/pdfium/include.patch --- libreoffice-7.3.4/external/pdfium/include.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/pdfium/include.patch 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,11 @@ +--- constants/annotation_flags.h ++++ constants/annotation_flags.h +@@ -5,6 +5,8 @@ + #ifndef CONSTANTS_ANNOTATION_FLAGS_H_ + #define CONSTANTS_ANNOTATION_FLAGS_H_ + ++#include ++ + namespace pdfium { + namespace annotation_flags { + diff -Nru libreoffice-7.3.4/external/pdfium/UnpackedTarball_pdfium.mk libreoffice-7.3.5/external/pdfium/UnpackedTarball_pdfium.mk --- libreoffice-7.3.4/external/pdfium/UnpackedTarball_pdfium.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/pdfium/UnpackedTarball_pdfium.mk 2022-07-15 19:12:51.000000000 +0000 @@ -24,6 +24,8 @@ # --with-latest-c++: pdfium_patches += gcc-c++20-comparison.patch +pdfium_patches += include.patch + $(eval $(call gb_UnpackedTarball_UnpackedTarball,pdfium)) $(eval $(call gb_UnpackedTarball_set_tarball,pdfium,$(PDFIUM_TARBALL))) diff -Nru libreoffice-7.3.4/external/skia/tdf148624.patch.1 libreoffice-7.3.5/external/skia/tdf148624.patch.1 --- libreoffice-7.3.4/external/skia/tdf148624.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/skia/tdf148624.patch.1 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,60 @@ +commit b2cecde549c76cbd1c8b7d0cee2c6799936c1e7a +Author: Greg Daniel +Date: Thu Jun 16 11:29:08 2022 -0400 + + Fix not using texture barrier on StrokeTessOp. + + Previously we were overwriting the renderpassXferBarriers flag on + ProgramInfo to set it to kNone. This flag is meant to say whether or not + the entire render pass uses barriers or not. This is needed in Vulkan + because all pipelines in a render pass that has an input attachment + must bind the input attachment regardless if it is used or not. So the + pipeline must be created with a layout for an input attachment + descriptor set. + + This change just removes to performance optimization to only use the + barrier on the stencil and not fill draw. This use case shouldn't + come up too often and also shouldn't be a big perf hit regardless. + The way GrAppliedClip is created/used it is hard for us to create + multiple different Pipeline objects: one for stencil and one for the + fill. + + Bug: skia:13402 + Change-Id: I15ce74b4d41b90d3dd4169a1f4fb77ed87c8b26d + Reviewed-on: https://skia-review.googlesource.com/c/skia/+/549898 + Reviewed-by: Michael Ludwig + Commit-Queue: Greg Daniel + +diff --git a/src/gpu/ops/StrokeTessellateOp.cpp b/src/gpu/ops/StrokeTessellateOp.cpp +index e9f1c77136..5564d99185 100644 +--- a/src/gpu/ops/StrokeTessellateOp.cpp ++++ b/src/gpu/ops/StrokeTessellateOp.cpp +@@ -210,7 +210,12 @@ void StrokeTessellateOp::prePrepareTessellator(GrTessellationShader::ProgramArgs + fStencilProgram = GrTessellationShader::MakeProgram(args, fTessellator->shader(), pipeline, + &kMarkStencil); + fillStencil = &kTestAndResetStencil; +- args.fXferBarrierFlags = GrXferBarrierFlags::kNone; ++ // TODO: Currently if we have a texture barrier for a dst read it will get put in before ++ // both the stencil draw and the fill draw. In reality we only really need the barrier ++ // once to guard the reads of the color buffer in the fill from the previous writes. Maybe ++ // we can investigate how to remove one of these barriers but it is probably not something ++ // that is required a lot and thus the extra barrier shouldn't be too much of a perf hit to ++ // general Skia use. + } + + fFillProgram = GrTessellationShader::MakeProgram(args, fTessellator->shader(), pipeline, +diff --git a/src/gpu/vk/GrVkPipelineStateBuilder.cpp b/src/gpu/vk/GrVkPipelineStateBuilder.cpp +index 51c8a47f4c..90476250b2 100644 +--- a/src/gpu/vk/GrVkPipelineStateBuilder.cpp ++++ b/src/gpu/vk/GrVkPipelineStateBuilder.cpp +@@ -280,6 +280,10 @@ GrVkPipelineState* GrVkPipelineStateBuilder::finalize(const GrProgramDesc& desc, + } + } + ++ // The vulkan spec says that if a subpass has an input attachment, then the input attachment ++ // descriptor set must be bound to all pipelines in that subpass. This includes pipelines that ++ // don't actually use the input attachment. Thus we look at the renderPassBarriers and not just ++ // the DstProxyView barrier flags to determine if we use the input attachment. + bool usesInput = SkToBool(fProgramInfo.renderPassBarriers() & GrXferBarrierFlags::kTexture); + uint32_t layoutCount = + usesInput ? GrVkUniformHandler::kDescSetCount : (GrVkUniformHandler::kDescSetCount - 1); diff -Nru libreoffice-7.3.4/external/skia/UnpackedTarball_skia.mk libreoffice-7.3.5/external/skia/UnpackedTarball_skia.mk --- libreoffice-7.3.4/external/skia/UnpackedTarball_skia.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/skia/UnpackedTarball_skia.mk 2022-07-15 19:12:51.000000000 +0000 @@ -37,6 +37,7 @@ disable-freetype-colrv1.1 \ windows-libraries-system32.patch.1 \ fix-graphite-ifdef.patch.1 \ + tdf148624.patch.1 \ $(eval $(call gb_UnpackedTarball_set_patchlevel,skia,1)) diff -Nru libreoffice-7.3.4/external/zxing/include.patch.0 libreoffice-7.3.5/external/zxing/include.patch.0 --- libreoffice-7.3.4/external/zxing/include.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/external/zxing/include.patch.0 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,10 @@ +--- core/src/textcodec/JPTextEncoder.cpp ++++ core/src/textcodec/JPTextEncoder.cpp +@@ -36,6 +36,7 @@ + // and the grateful thanks of the Qt team. + + #include "JPTextEncoder.h" ++#include + + /* + * This data is derived from Unicode 1.1, diff -Nru libreoffice-7.3.4/external/zxing/UnpackedTarball_zxing.mk libreoffice-7.3.5/external/zxing/UnpackedTarball_zxing.mk --- libreoffice-7.3.4/external/zxing/UnpackedTarball_zxing.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/external/zxing/UnpackedTarball_zxing.mk 2022-07-15 19:12:51.000000000 +0000 @@ -19,6 +19,7 @@ external/zxing/0002-Update-stb_image_write-from-1.14-to-1.16.patch \ external/zxing/0003-Update-stb_image-from-2.25-to-2.27.patch \ external/zxing/0004-Apply-stb-PR-1223-to-stb_image.patch \ + external/zxing/include.patch.0 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.4/extras/source/autocorr/lang/da/DocumentList.xml libreoffice-7.3.5/extras/source/autocorr/lang/da/DocumentList.xml --- libreoffice-7.3.4/extras/source/autocorr/lang/da/DocumentList.xml 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/extras/source/autocorr/lang/da/DocumentList.xml 2022-07-15 19:12:51.000000000 +0000 @@ -223,7 +223,6 @@ - diff -Nru libreoffice-7.3.4/formula/source/core/api/token.cxx libreoffice-7.3.5/formula/source/core/api/token.cxx --- libreoffice-7.3.4/formula/source/core/api/token.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/formula/source/core/api/token.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1249,8 +1249,12 @@ const OUString &rName = mpFunc->GetExternal(); - // initial (fast) check: - sal_Unicode nLastChar = rName[ rName.getLength() - 1]; + // initial (fast) checks: + sal_Int32 nLength = rName.getLength(); + if (!nLength) + return false; + + sal_Unicode nLastChar = rName[ nLength - 1]; if ( nLastChar != 't' && nLastChar != 'm' ) return false; diff -Nru libreoffice-7.3.4/fpicker/uiconfig/ui/explorerfiledialog.ui libreoffice-7.3.5/fpicker/uiconfig/ui/explorerfiledialog.ui --- libreoffice-7.3.4/fpicker/uiconfig/ui/explorerfiledialog.ui 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/fpicker/uiconfig/ui/explorerfiledialog.ui 2022-07-15 19:12:51.000000000 +0000 @@ -442,18 +442,8 @@ True True liststore2 - - - - 0 - - - - - - 1 - - + 0 + 1 diff -Nru libreoffice-7.3.4/framework/source/dispatch/closedispatcher.cxx libreoffice-7.3.5/framework/source/dispatch/closedispatcher.cxx --- libreoffice-7.3.4/framework/source/dispatch/closedispatcher.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/framework/source/dispatch/closedispatcher.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -351,12 +351,17 @@ // application or establish the backing mode now. // And that depends from the dispatched URL ... { - if (bHasActiveConnections) - bCloseFrame = true; - else if (eOperation == E_CLOSE_FRAME) - bTerminateApp = true; + if (eOperation == E_CLOSE_FRAME) + { + if (bHasActiveConnections) + bCloseFrame = true; + else + bTerminateApp = true; + } else if( SvtModuleOptions().IsModuleInstalled(SvtModuleOptions::EModule::STARTMODULE) ) bEstablishBackingMode = true; + else if (bHasActiveConnections) + bCloseFrame = true; else bTerminateApp = true; } diff -Nru libreoffice-7.3.4/g libreoffice-7.3.5/g --- libreoffice-7.3.4/g 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/g 2022-07-15 19:12:51.000000000 +0000 @@ -10,9 +10,9 @@ SUBMODULES_ALL="dictionaries helpcontent2 translations" pushd $(dirname $0) > /dev/null -if [ -f config_host.mk ] ; then - # we are in the BUILDDIR - SRC_ROOT=$(< config_host.mk grep -a SRC_ROOT | sed -e "s/.*=//") +if [ -f ${BUILDDIR}/config_host.mk ] ; then + # we are in the SRCDIR + SRC_ROOT=$(< ${BUILDDIR}/config_host.mk grep -a SRC_ROOT | sed -e "s/.*=//") else SRC_ROOT=$(pwd) fi @@ -150,8 +150,8 @@ get_configured_submodules() { SUBMODULES_CONFIGURED="" - if [ -f config_host.mk ] ; then - SUBMODULES_CONFIGURED=$(< config_host.mk grep -a GIT_NEEDED_SUBMODULES | sed -e "s/.*=//") + if [ -f ${BUILDDIR}/config_host.mk ] ; then + SUBMODULES_CONFIGURED=$(< ${BUILDDIR}/config_host.mk grep -a GIT_NEEDED_SUBMODULES | sed -e "s/.*=//") else # if we need the configured submodule before the configuration is done. we assumed you want them all SUBMODULES_CONFIGURED=${SUBMODULES_ALL?} @@ -161,12 +161,12 @@ get_git_reference() { REFERENCED_GIT="" - if [ -f config_host.mk ]; then - REFERENCED_GIT=$(< config_host.mk grep -a GIT_REFERENCE_SRC | sed -e "s/.*=//") + if [ -f ${BUILDDIR}/config_host.mk ]; then + REFERENCED_GIT=$(< ${BUILDDIR}/config_host.mk grep -a GIT_REFERENCE_SRC | sed -e "s/.*=//") fi LINKED_GIT="" - if [ -f config_host.mk ]; then - LINKED_GIT=$(< config_host.mk grep -a GIT_LINK_SRC | sed -e "s/.*=//") + if [ -f ${BUILDDIR}/config_host.mk ]; then + LINKED_GIT=$(< ${BUILDDIR}/config_host.mk grep -a GIT_LINK_SRC | sed -e "s/.*=//") fi } diff -Nru libreoffice-7.3.4/.gitreview libreoffice-7.3.5/.gitreview --- libreoffice-7.3.4/.gitreview 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/.gitreview 2022-07-15 19:12:51.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-7-3-4 +defaultbranch=libreoffice-7-3-5 diff -Nru libreoffice-7.3.4/helpcontent2/help3xsl/online_transform.xsl libreoffice-7.3.5/helpcontent2/help3xsl/online_transform.xsl --- libreoffice-7.3.4/helpcontent2/help3xsl/online_transform.xsl 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/helpcontent2/help3xsl/online_transform.xsl 2022-07-15 19:12:51.000000000 +0000 @@ -658,16 +658,17 @@ + + + - - + - - + @@ -677,16 +678,17 @@ + + + - - + - - + @@ -698,16 +700,17 @@ + + + - - + - - + @@ -717,16 +720,17 @@ + + + - - + - - + @@ -1093,13 +1097,15 @@ - + + + - + - + @@ -1107,26 +1113,27 @@ + + + - - + - + - - + - + @@ -1262,6 +1269,9 @@ + + + @@ -1274,7 +1284,6 @@ -
    @@ -1297,7 +1306,7 @@ -
    +

    @@ -1308,7 +1317,7 @@ -
    +

    @@ -1319,7 +1328,7 @@ -
    +

    @@ -1330,7 +1339,7 @@ -
    +

    @@ -1341,7 +1350,7 @@ -
    +

    @@ -1352,7 +1361,7 @@ -
    +

    diff -Nru libreoffice-7.3.4/i18nlangtag/qa/cppunit/test_languagetag.cxx libreoffice-7.3.5/i18nlangtag/qa/cppunit/test_languagetag.cxx --- libreoffice-7.3.4/i18nlangtag/qa/cppunit/test_languagetag.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/i18nlangtag/qa/cppunit/test_languagetag.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -749,6 +749,8 @@ if (rStr1 == u"cmn-CN" ) return rStr2 == u"zh-CN"; if (rStr1 == u"cmn-TW" ) return rStr2 == u"zh-TW"; if (rStr1 == u"kw-UK" ) return rStr2 == u"kw-GB"; + if (rStr1 == u"oc-FR-lengadoc" ) return rStr2 == u"oc-FR"; + if (rStr1 == u"oc-ES-aranes" ) return rStr2 == u"oc-ES"; return rStr1 == rStr2; } diff -Nru libreoffice-7.3.4/i18nlangtag/source/isolang/isolang.cxx libreoffice-7.3.5/i18nlangtag/source/isolang/isolang.cxx --- libreoffice-7.3.4/i18nlangtag/source/isolang/isolang.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/i18nlangtag/source/isolang/isolang.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -778,6 +778,8 @@ { LANGUAGE_USER_ENGLISH_UK_OED, "en-GB-oed", "GB", "", LANGUAGE_USER_ENGLISH_UK_OXENDICT }, // grandfathered, deprecated, prefer en-GB-oxendict { LANGUAGE_SPANISH_DATED, "es-ES-u-co-trad", "ES", "es-u-co-trad", k0 }, // RFC6067/CLDR { LANGUAGE_SPANISH_DATED, "es-ES_tradnl", "ES", "", kSAME }, // MS malformed + { LANGUAGE_OCCITAN_FRANCE, "oc-FR-lengadoc", "FR", "oc-lengadoc", kSAME }, // forward compatibility + { LANGUAGE_USER_OCCITAN_ARANESE, "oc-ES-aranes", "ES", "oc-aranes", kSAME }, // forward compatibility // { LANGUAGE_YUE_CHINESE_HONGKONG, "zh-yue-HK", "HK", "", 0 }, // MS reserved, prefer yue-HK; do not add unless LanguageTag::simpleExtract() can handle it to not call liblangtag for rsc! { LANGUAGE_YIDDISH, "yi-001", "", "", k0 }, // MS since rev.15, was "yi-Hebr" reserved, "001"="World" { LANGUAGE_FRENCH_WEST_INDIES, "fr-029", "", "", k0 }, // MS since rev.15, was "Neither defined nor reserved", "029"="Caribbean" Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/cmd/32/insertfixedtext.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/cmd/32/insertfixedtext.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/cmd/32/numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/cmd/32/numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/cmd/lc_insertfixedtext.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/cmd/lc_insertfixedtext.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/cmd/lc_numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/cmd/lc_numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/cmd/sc_numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/cmd/sc_numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line10.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line10.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/svx/res/symphony/line9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/svx/res/symphony/line9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/check9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/check9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze/vcl/res/radio6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze/vcl/res/radio6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/cmd/32/insertfixedtext.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/cmd/32/insertfixedtext.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/cmd/32/numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/cmd/32/numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/cmd/lc_insertfixedtext.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/cmd/lc_insertfixedtext.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/cmd/lc_numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/cmd/lc_numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/cmd/sc_numberformatstandard.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/cmd/sc_numberformatstandard.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line10.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line10.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/svx/res/symphony/line9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/svx/res/symphony/line9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/check9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/check9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/breeze_dark/vcl/res/radio6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/breeze_dark/vcl/res/radio6.png differ diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/32/insertfixedtext.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/32/insertfixedtext.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/32/insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/32/insertfixedtext.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/32/numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/32/numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/32/numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/32/numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/lc_insertfixedtext.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/lc_insertfixedtext.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/lc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/lc_insertfixedtext.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/lc_numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/lc_numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/lc_numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/lc_numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/sc_numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/sc_numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/cmd/sc_numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/cmd/sc_numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line10.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line10.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line10.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line1.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line1.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line2.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line2.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line3.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line3.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line4.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line4.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line5.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line5.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line6.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line6.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line7.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line7.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line8.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line8.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line9.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line9.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/svx/res/symphony/line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/svx/res/symphony/line9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check1.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check1.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check1.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check2.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check2.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check2.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check3.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check3.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check3.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check4.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check4.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check4.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check5.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check5.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check5.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check6.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check6.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check6.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check7.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check7.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check7.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check8.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check8.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check8.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check9.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check9.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/check9.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/check9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio1.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio1.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio1.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio2.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio2.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio2.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio3.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio3.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio3.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio4.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio4.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio4.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio5.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio5.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio5.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio6.svg libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio6.svg --- libreoffice-7.3.4/icon-themes/breeze_dark_svg/vcl/res/radio6.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_dark_svg/vcl/res/radio6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/cmd/32/insertfixedtext.svg libreoffice-7.3.5/icon-themes/breeze_svg/cmd/32/insertfixedtext.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/cmd/32/insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/cmd/32/insertfixedtext.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/cmd/32/numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_svg/cmd/32/numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/cmd/32/numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/cmd/32/numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/cmd/lc_insertfixedtext.svg libreoffice-7.3.5/icon-themes/breeze_svg/cmd/lc_insertfixedtext.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/cmd/lc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/cmd/lc_insertfixedtext.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/cmd/lc_numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_svg/cmd/lc_numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/cmd/lc_numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/cmd/lc_numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/cmd/sc_numberformatstandard.svg libreoffice-7.3.5/icon-themes/breeze_svg/cmd/sc_numberformatstandard.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/cmd/sc_numberformatstandard.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/cmd/sc_numberformatstandard.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line10.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line10.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line10.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line1.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line1.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line2.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line2.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line3.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line3.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line4.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line4.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line5.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line5.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line6.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line6.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line7.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line7.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line8.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line8.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line9.svg libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line9.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/svx/res/symphony/line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/svx/res/symphony/line9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check1.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check1.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check1.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check2.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check2.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check2.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check3.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check3.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check3.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check4.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check4.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check4.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check5.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check5.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check5.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check6.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check6.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check6.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check7.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check7.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check7.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check8.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check8.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check8.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check9.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check9.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/check9.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/check9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio1.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio1.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio1.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio2.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio2.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio2.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio3.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio3.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio3.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio4.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio4.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio4.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio5.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio5.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio5.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio6.svg libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio6.svg --- libreoffice-7.3.4/icon-themes/breeze_svg/vcl/res/radio6.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/breeze_svg/vcl/res/radio6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/elementary/cmd/32/objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/elementary/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/elementary/cmd/lc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/elementary/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/elementary/cmd/sc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/elementary/cmd/sc_objecttitledescription.png differ diff -Nru libreoffice-7.3.4/icon-themes/elementary/links.txt libreoffice-7.3.5/icon-themes/elementary/links.txt --- libreoffice-7.3.4/icon-themes/elementary/links.txt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/elementary/links.txt 2022-07-15 19:12:51.000000000 +0000 @@ -2669,10 +2669,6 @@ cmd/sc_librelogo-translate.png cmd/sc_editglossary.png # Other -cmd/32/objecttitledescription.png cmd/32/insertcaptiondialog.png -cmd/lc_objecttitledescription.png cmd/lc_insertcaptiondialog.png -cmd/sc_objecttitledescription.png cmd/sc_insertcaptiondialog.png - cmd/32/renametable.png cmd/32/name.png cmd/lc_renametable.png cmd/lc_name.png cmd/sc_renametable.png cmd/sc_name.png Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/elementary/vcl/res/fatcross.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/elementary/vcl/res/fatcross.png differ diff -Nru libreoffice-7.3.4/icon-themes/elementary_svg/cmd/32/objecttitledescription.svg libreoffice-7.3.5/icon-themes/elementary_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/elementary_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/elementary_svg/cmd/32/objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/elementary_svg/cmd/lc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/elementary_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/elementary_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/elementary_svg/cmd/lc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/elementary_svg/cmd/sc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/elementary_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/elementary_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/elementary_svg/cmd/sc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/elementary_svg/vcl/res/fatcross.svg libreoffice-7.3.5/icon-themes/elementary_svg/vcl/res/fatcross.svg --- libreoffice-7.3.4/icon-themes/elementary_svg/vcl/res/fatcross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/elementary_svg/vcl/res/fatcross.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/karasa_jaga/cmd/32/objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/karasa_jaga/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/karasa_jaga/cmd/lc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/karasa_jaga/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/karasa_jaga/cmd/sc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/karasa_jaga/cmd/sc_objecttitledescription.png differ diff -Nru libreoffice-7.3.4/icon-themes/karasa_jaga/links.txt libreoffice-7.3.5/icon-themes/karasa_jaga/links.txt --- libreoffice-7.3.4/icon-themes/karasa_jaga/links.txt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/karasa_jaga/links.txt 2022-07-15 19:12:51.000000000 +0000 @@ -365,7 +365,6 @@ cmd/32/objectmirrorhorizontal.png cmd/32/fliphorizontal.png cmd/32/objectmirrorvertical.png cmd/32/flipvertical.png cmd/32/objects3dtoolbox.png cmd/32/cube.png -cmd/32/objecttitledescription.png cmd/32/insertcaptiondialog.png cmd/32/open_h.png cmd/32/open.png cmd/32/openfromcalc.png cmd/32/open.png cmd/32/openfromwriter.png cmd/32/open.png @@ -987,7 +986,6 @@ cmd/lc_objectmirrorhorizontal.png cmd/lc_fliphorizontal.png cmd/lc_objectmirrorvertical.png cmd/lc_flipvertical.png cmd/lc_objects3dtoolbox.png cmd/lc_cube.png -cmd/lc_objecttitledescription.png cmd/lc_insertcaptiondialog.png cmd/lc_open_h.png cmd/lc_open.png cmd/lc_openfromcalc.png cmd/lc_open.png cmd/lc_openfromwriter.png cmd/lc_open.png @@ -1392,7 +1390,6 @@ cmd/sc_objectmirrorhorizontal.png cmd/sc_fliphorizontal.png cmd/sc_objectmirrorvertical.png cmd/sc_flipvertical.png cmd/sc_objects3dtoolbox.png cmd/sc_cube.png -cmd/sc_objecttitledescription.png cmd/sc_insertcaptiondialog.png cmd/sc_open_h.png cmd/sc_open.png cmd/sc_openfromcalc.png cmd/sc_open.png cmd/sc_openfromwriter.png cmd/sc_open.png diff -Nru libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/32/objecttitledescription.svg libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/32/objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/lc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/lc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/sc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/karasa_jaga_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/karasa_jaga_svg/cmd/sc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/cmd/32/objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/cmd/lc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/cmd/sc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/cmd/sc_objecttitledescription.png differ diff -Nru libreoffice-7.3.4/icon-themes/sifr/links.txt libreoffice-7.3.5/icon-themes/sifr/links.txt --- libreoffice-7.3.4/icon-themes/sifr/links.txt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr/links.txt 2022-07-15 19:12:51.000000000 +0000 @@ -1009,15 +1009,14 @@ cmd/32/colorview.png cmd/32/graphicfilterinvert.png cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png cmd/32/grafmode.png cmd/32/graphicdialog.png -cmd/32/objecttitledescription.png cmd/32/insertcaptiondialog.png + cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png cmd/lc_grafmode.png cmd/lc_graphicdialog.png -cmd/lc_objecttitledescription.png cmd/lc_insertcaptiondialog.png + cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png cmd/sc_grafmode.png cmd/sc_insertgraphic.png -cmd/sc_objecttitledescription.png cmd/sc_insertcaptiondialog.png # shapes cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line10.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line10.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/svx/res/symphony/line9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/svx/res/symphony/line9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr/vcl/res/fatcross.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr/vcl/res/fatcross.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/cmd/32/objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/cmd/lc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/cmd/sc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/cmd/sc_objecttitledescription.png differ diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark/links.txt libreoffice-7.3.5/icon-themes/sifr_dark/links.txt --- libreoffice-7.3.4/icon-themes/sifr_dark/links.txt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark/links.txt 2022-07-15 19:12:51.000000000 +0000 @@ -1009,15 +1009,14 @@ cmd/32/colorview.png cmd/32/graphicfilterinvert.png cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png cmd/32/grafmode.png cmd/32/graphicdialog.png -cmd/32/objecttitledescription.png cmd/32/insertcaptiondialog.png + cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png cmd/lc_grafmode.png cmd/lc_graphicdialog.png -cmd/lc_objecttitledescription.png cmd/lc_insertcaptiondialog.png + cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png cmd/sc_grafmode.png cmd/sc_insertgraphic.png -cmd/sc_objecttitledescription.png cmd/sc_insertcaptiondialog.png # shapes cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line10.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line10.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line1.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line1.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line2.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line2.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line3.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line3.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line4.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line4.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line5.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line5.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line6.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line6.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line7.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line7.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line8.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line8.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/svx/res/symphony/line9.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/svx/res/symphony/line9.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sifr_dark/vcl/res/fatcross.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sifr_dark/vcl/res/fatcross.png differ diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/32/objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/32/objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/lc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/lc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/sc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/cmd/sc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line10.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line10.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line10.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line1.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line1.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line2.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line2.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line3.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line3.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line4.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line4.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line5.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line5.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line6.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line6.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line7.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line7.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line8.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line8.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line9.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line9.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/svx/res/symphony/line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/svx/res/symphony/line9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_dark_svg/vcl/res/fatcross.svg libreoffice-7.3.5/icon-themes/sifr_dark_svg/vcl/res/fatcross.svg --- libreoffice-7.3.4/icon-themes/sifr_dark_svg/vcl/res/fatcross.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_dark_svg/vcl/res/fatcross.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/cmd/32/objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/cmd/32/objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/cmd/lc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/cmd/lc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/cmd/sc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sifr_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/cmd/sc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line10.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line10.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line10.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line1.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line1.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line1.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line2.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line2.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line2.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line3.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line3.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line3.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line4.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line4.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line4.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line5.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line5.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line5.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line6.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line6.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line6.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line7.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line7.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line7.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line8.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line8.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line8.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line9.svg libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line9.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/svx/res/symphony/line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/svx/res/symphony/line9.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sifr_svg/vcl/res/fatcross.svg libreoffice-7.3.5/icon-themes/sifr_svg/vcl/res/fatcross.svg --- libreoffice-7.3.4/icon-themes/sifr_svg/vcl/res/fatcross.svg 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sifr_svg/vcl/res/fatcross.svg 2022-07-15 19:12:51.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sukapura/cmd/32/objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sukapura/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sukapura/cmd/lc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sukapura/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/icon-themes/sukapura/cmd/sc_objecttitledescription.png and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/icon-themes/sukapura/cmd/sc_objecttitledescription.png differ diff -Nru libreoffice-7.3.4/icon-themes/sukapura/links.txt libreoffice-7.3.5/icon-themes/sukapura/links.txt --- libreoffice-7.3.4/icon-themes/sukapura/links.txt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sukapura/links.txt 2022-07-15 19:12:51.000000000 +0000 @@ -1,2764 +1,2761 @@ -# avmedia -# ============================================== -avmedia/res/av02048.png cmd/sc_open.png -avmedia/res/av02049.png cmd/sc_runbasic.png -avmedia/res/av02050.png cmd/sc_mediapause.png -avmedia/res/av02051.png cmd/sc_basicstop.png -avmedia/res/av02052.png cmd/sc_mediarepeat.png -avmedia/res/av02053.png cmd/sc_ok.png -avmedia/res/av02054.png cmd/sc_mediamute.png -avmedia/res/avl02048.png cmd/lc_open.png -avmedia/res/avl02049.png cmd/lc_runbasic.png -avmedia/res/avl02050.png cmd/lc_mediapause.png -avmedia/res/avl02051.png cmd/lc_basicstop.png -avmedia/res/avl02052.png cmd/lc_mediarepeat.png -avmedia/res/avl02053.png cmd/lc_ok.png -avmedia/res/avl02054.png cmd/lc_mediamute.png - -# arrangement -# ============================================== -cmd/32/objectbackone.png cmd/32/backward.png -cmd/32/objectforwardone.png cmd/32/forward.png - -cmd/lc_objectbackone.png cmd/lc_backward.png -cmd/lc_objectforwardone.png cmd/lc_forward.png - -cmd/sc_objectbackone.png cmd/sc_backward.png -cmd/sc_objectforwardone.png cmd/sc_forward.png - -# chart2 -# ============================================== -chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png -chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png -chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png -chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png -chart2/res/selectrange.png formula/res/refinp1.png - -cmd/32/charttitlemenu.png cmd/32/toggletitle.png -cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png -cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png -cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png -cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png -cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png -cmd/32/insertmenulegend.png cmd/32/legend.png - -cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png -cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png -cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png -cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png -cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png -cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png -cmd/lc_insertmenulegend.png cmd/lc_legend.png - -cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png -cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png -cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png -cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png -cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png -cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png -cmd/sc_insertmenulegend.png cmd/sc_legend.png - -# cmd -# ============================================== - -# Add -cmd/32/adddatefield.png cmd/32/datefield.png -cmd/32/addons.png cmd/32/insertplugin.png - -cmd/lc_adddatefield.png cmd/lc_datefield.png -cmd/lc_addons.png cmd/lc_insertplugin.png - -cmd/sc_adddatefield.png cmd/sc_datefield.png -cmd/sc_addons.png cmd/sc_insertplugin.png - -# tooltips -cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png -cmd/32/showinlinetooltips.png cmd/32/shownote.png - -cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png -cmd/lc_showinlinetooltips.png cmd/lc_shownote.png - -cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png -cmd/sc_showinlinetooltips.png cmd/sc_shownote.png - -# Insert -cmd/32/charactermenu.png cmd/32/fontdialog.png -cmd/32/fieldmenu.png cmd/32/addfield.png -cmd/32/graphicmenu.png cmd/32/avmediaplayer.png -cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png -cmd/32/insertavmedia.png cmd/32/avmediaplayer.png -cmd/32/insertctrl.png cmd/32/inserttable.png -cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png -cmd/32/insertdatefield.png cmd/32/datefield.png -cmd/32/insertedit.png cmd/32/edit.png -cmd/32/insertfield.png cmd/32/addfield.png -cmd/32/insertfilecontrol.png cmd/32/filecontrol.png -cmd/32/insertfilefield.png cmd/32/filefield.png -cmd/32/insertformattedfield.png cmd/32/formattedfield.png -cmd/32/insertformcheck.png cmd/32/checkbox.png -cmd/32/insertformcombo.png cmd/32/combobox.png -cmd/32/insertformlist.png cmd/32/listbox.png -cmd/32/insertformmenu.png cmd/32/choosecontrols.png -cmd/32/insertformradio.png cmd/32/radiobutton.png -cmd/32/insertformspin.png cmd/32/spinbutton.png -cmd/32/insertformula.png cmd/32/dbviewfunctions.png -cmd/32/insertformvscroll.png cmd/32/scrollbar.png -cmd/32/insertframeinteract.png cmd/32/insertframe.png -cmd/32/insertframeinteractnocolumns.png cmd/32/insertframe.png -cmd/32/insertimagecontrol.png cmd/32/insertgraphic.png -cmd/32/insertlistbox.png cmd/32/listbox.png -cmd/32/insertnumericfield.png cmd/32/numericfield.png -cmd/32/insertobjectchart.png cmd/32/drawchart.png -cmd/32/insertobjectdialog.png cmd/32/insertobject.png -cmd/32/insertobjectstarmath.png cmd/32/insertmath.png -cmd/32/insertpagefooter.png cmd/32/insertfooter.png -cmd/32/insertpageheader.png cmd/32/insertheader.png -cmd/32/insertpatternfield.png cmd/32/patternfield.png -cmd/32/insertpushbutton.png cmd/32/pushbutton.png -cmd/32/inserttextframe.png cmd/32/insertframe.png -cmd/32/inserttimefield.png cmd/32/timefield.png -cmd/32/insobjctrl.png cmd/32/newdoc.png -cmd/32/numberingmenu.png cmd/32/bulletsandnumberingdialog.png -cmd/32/paragraphmenu.png cmd/32/paragraphdialog.png -cmd/32/shapesmenu.png cmd/32/insertdraw.png -cmd/32/tracechangemode.png cmd/32/trackchanges.png -cmd/32/viewtrackchanges.png cmd/32/showtrackedchanges.png - -cmd/lc_charactermenu.png cmd/lc_fontdialog.png -cmd/lc_fieldmenu.png cmd/lc_addfield.png -cmd/lc_graphicmenu.png cmd/lc_avmediaplayer.png -cmd/lc_insertauthorfield.png cmd/lc_dbviewaliases.png -cmd/lc_insertavmedia.png cmd/lc_avmediaplayer.png -cmd/lc_insertctrl.png cmd/lc_inserttable.png -cmd/lc_insertcurrencyfield.png cmd/lc_currencyfield.png -cmd/lc_insertdatefield.png cmd/lc_datefield.png -cmd/lc_insertedit.png cmd/lc_edit.png -cmd/lc_insertfield.png cmd/lc_addfield.png -cmd/lc_insertfilecontrol.png cmd/lc_filecontrol.png -cmd/lc_insertfilefield.png cmd/lc_filefield.png -cmd/lc_insertformattedfield.png cmd/lc_formattedfield.png -cmd/lc_insertformcheck.png cmd/lc_checkbox.png -cmd/lc_insertformcombo.png cmd/lc_combobox.png -cmd/lc_insertformlist.png cmd/lc_listbox.png -cmd/lc_insertformmenu.png cmd/lc_choosecontrols.png -cmd/lc_insertformradio.png cmd/lc_radiobutton.png -cmd/lc_insertformspin.png cmd/lc_spinbutton.png -cmd/lc_insertformula.png cmd/lc_dbviewfunctions.png -cmd/lc_insertformvscroll.png cmd/lc_scrollbar.png -cmd/lc_insertframeinteract.png cmd/lc_insertframe.png -cmd/lc_insertframeinteractnocolumns.png cmd/lc_insertframe.png -cmd/lc_insertimagecontrol.png cmd/lc_insertgraphic.png -cmd/lc_insertlistbox.png cmd/lc_listbox.png -cmd/lc_insertnumericfield.png cmd/lc_numericfield.png -cmd/lc_insertobjectchart.png cmd/lc_drawchart.png -cmd/lc_insertobjectdialog.png cmd/lc_insertobject.png -cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png -cmd/lc_insertpagefooter.png cmd/lc_insertfooter.png -cmd/lc_insertpageheader.png cmd/lc_insertheader.png -cmd/lc_insertpatternfield.png cmd/lc_patternfield.png -cmd/lc_insertpushbutton.png cmd/lc_pushbutton.png -cmd/lc_inserttextframe.png cmd/lc_insertframe.png -cmd/lc_inserttimefield.png cmd/lc_timefield.png -cmd/lc_insobjctrl.png cmd/lc_newdoc.png -cmd/lc_numberingmenu.png cmd/lc_bulletsandnumberingdialog.png -cmd/lc_paragraphmenu.png cmd/lc_paragraphdialog.png -cmd/lc_shapesmenu.png cmd/lc_insertdraw.png -cmd/lc_tracechangemode.png cmd/lc_trackchanges.png -cmd/lc_viewtrackchanges.png cmd/lc_showtrackedchanges.png - -cmd/sc_charactermenu.png cmd/sc_fontdialog.png -cmd/sc_fieldmenu.png cmd/sc_addfield.png -cmd/sc_graphicmenu.png cmd/sc_avmediaplayer.png -cmd/sc_insertauthorfield.png cmd/sc_dbviewaliases.png -cmd/sc_insertavmedia.png cmd/sc_avmediaplayer.png -cmd/sc_insertctrl.png cmd/sc_inserttable.png -cmd/sc_insertcurrencyfield.png cmd/sc_currencyfield.png -cmd/sc_insertdatefield.png cmd/sc_datefield.png -cmd/sc_insertedit.png cmd/sc_edit.png -cmd/sc_insertfield.png cmd/sc_addfield.png -cmd/sc_insertfilecontrol.png cmd/sc_filecontrol.png -cmd/sc_insertfilefield.png cmd/sc_filefield.png -cmd/sc_insertformattedfield.png cmd/sc_formattedfield.png -cmd/sc_insertformcheck.png cmd/sc_checkbox.png -cmd/sc_insertformcombo.png cmd/sc_combobox.png -cmd/sc_insertformlist.png cmd/sc_listbox.png -cmd/sc_insertformmenu.png cmd/sc_choosecontrols.png -cmd/sc_insertformradio.png cmd/sc_radiobutton.png -cmd/sc_insertformspin.png cmd/sc_spinbutton.png -cmd/sc_insertformula.png cmd/sc_dbviewfunctions.png -cmd/sc_insertformvscroll.png cmd/sc_scrollbar.png -cmd/sc_insertframeinteract.png cmd/sc_insertframe.png -cmd/sc_insertframeinteractnocolumns.png cmd/sc_insertframe.png -cmd/sc_insertimagecontrol.png cmd/sc_insertgraphic.png -cmd/sc_insertlistbox.png cmd/sc_listbox.png -cmd/sc_insertnumericfield.png cmd/sc_numericfield.png -cmd/sc_insertobjectchart.png cmd/sc_drawchart.png -cmd/sc_insertobjectdialog.png cmd/sc_insertobject.png -cmd/sc_insertobjectstarmath.png cmd/sc_insertmath.png -cmd/sc_insertpagefooter.png cmd/sc_insertfooter.png -cmd/sc_insertpageheader.png cmd/sc_insertheader.png -cmd/sc_insertpatternfield.png cmd/sc_patternfield.png -cmd/sc_insertpushbutton.png cmd/sc_pushbutton.png -cmd/sc_inserttextframe.png cmd/sc_insertframe.png -cmd/sc_inserttimefield.png cmd/sc_timefield.png -cmd/sc_insobjctrl.png cmd/sc_newdoc.png -cmd/sc_numberingmenu.png cmd/sc_bulletsandnumberingdialog.png -cmd/sc_paragraphmenu.png cmd/sc_paragraphdialog.png -cmd/sc_shapesmenu.png cmd/sc_insertdraw.png -cmd/sc_tracechangemode.png cmd/sc_trackchanges.png -cmd/sc_viewtrackchanges.png cmd/sc_showtrackedchanges.png - - -#View Menu -cmd/32/changesmenu.png cmd/32/trackchanges.png - -cmd/sc_changesmenu.png cmd/sc_trackchanges.png - -cmd/lc_changesmenu.png cmd/lc_trackchanges.png - -# Zoom -cmd/32/adjust.png cmd/32/zoomoptimal.png -cmd/32/previewzoom.png cmd/32/zoom.png -cmd/32/view100.png cmd/32/zoom100percent.png -cmd/32/zoomminus.png cmd/32/zoomout.png -cmd/32/zoomplus.png cmd/32/zoomin.png -cmd/32/zoomtoolbox.png cmd/32/zoom.png - -cmd/lc_adjust.png cmd/lc_zoomoptimal.png -cmd/lc_previewzoom.png cmd/lc_zoom.png -cmd/lc_view100.png cmd/lc_zoom100percent.png -cmd/lc_zoomminus.png cmd/lc_zoomout.png -cmd/lc_zoomplus.png cmd/lc_zoomin.png -cmd/lc_zoomtoolbox.png cmd/lc_zoom.png - -cmd/sc_adjust.png cmd/sc_zoomoptimal.png -cmd/sc_previewzoom.png cmd/sc_zoom.png -cmd/sc_view100.png cmd/sc_zoom100percent.png -cmd/sc_zoomminus.png cmd/sc_zoomout.png -cmd/sc_zoomplus.png cmd/sc_zoomin.png -cmd/sc_zoomtoolbox.png cmd/sc_zoom.png - -# Save -cmd/32/savegraphic.png cmd/32/save.png - -cmd/lc_savegraphic.png cmd/lc_save.png - -cmd/sc_savegraphic.png cmd/sc_save.png - -# Text -cmd/32/drawtext.png cmd/32/text.png -cmd/32/fontheight.png cmd/32/scaletext.png -cmd/32/fontworkcharacterspacingfloater.png cmd/32/spacing.png -cmd/32/textfittosizetool.png cmd/32/text_marquee.png -cmd/32/texttoolbox.png cmd/32/text.png - -cmd/lc_drawtext.png cmd/lc_text.png -cmd/lc_fontheight.png cmd/lc_scaletext.png -cmd/lc_fontworkcharacterspacingfloater.png cmd/lc_spacing.png -cmd/lc_textfittosizetool.png cmd/lc_text_marquee.png -cmd/lc_texttoolbox.png cmd/lc_text.png - -cmd/sc_drawtext.png cmd/sc_text.png -cmd/sc_fontheight.png cmd/sc_scaletext.png -cmd/sc_fontworkcharacterspacingfloater.png cmd/sc_spacing.png -cmd/sc_textfittosizetool.png cmd/sc_text_marquee.png -cmd/sc_texttoolbox.png cmd/sc_text.png - -# cmd 3d -cmd/32/convertinto3dlathefast.png cmd/32/convertinto3dlathe.png -cmd/32/extrusiontoggle.png cmd/32/convertinto3d.png -cmd/32/objects3dtoolbox.png cmd/32/cube.png -cmd/32/view3d.png cmd/32/cube.png - -cmd/lc_convertinto3dlathefast.png cmd/lc_convertinto3dlathe.png -cmd/lc_extrusiontoggle.png cmd/lc_convertinto3d.png -cmd/lc_objects3dtoolbox.png cmd/lc_cube.png -cmd/lc_view3d.png cmd/lc_cube.png - -cmd/sc_convertinto3dlathefast.png cmd/sc_convertinto3dlathe.png -cmd/sc_extrusiontoggle.png cmd/sc_convertinto3d.png -cmd/sc_objects3dtoolbox.png cmd/sc_cube.png -cmd/sc_view3d.png cmd/sc_cube.png - -# Control -cmd/32/config.png cmd/32/choosecontrols.png - -cmd/lc_config.png cmd/lc_choosecontrols.png - -cmd/sc_config.png cmd/sc_choosecontrols.png - -# Formatmenu -cmd/32/anchormenu.png cmd/32/toggleanchortype.png -cmd/32/conditionalformatmenu.png cmd/32/colorscaleformatdialog.png -cmd/32/formatbulletsmenu.png cmd/32/defaultbullet.png -cmd/32/formatframemenu.png cmd/32/framedialog.png -cmd/32/formatimagemenu.png cmd/32/graphic.png -cmd/32/formatspacingmenu.png cmd/32/spacepara15.png -cmd/32/formattextmenu.png cmd/32/charfontname.png -cmd/32/spacepara115.png cmd/32/spacepara1.png -cmd/32/textalign.png cmd/32/alignblock.png - -cmd/lc_anchormenu.png cmd/lc_toggleanchortype.png -cmd/lc_conditionalformatmenu.png cmd/lc_colorscaleformatdialog.png -cmd/lc_formatbulletsmenu.png cmd/lc_defaultbullet.png -cmd/lc_formatframemenu.png cmd/lc_framedialog.png -cmd/lc_formatimagemenu.png cmd/lc_graphicdialog.png -cmd/lc_formatspacingmenu.png cmd/lc_spacepara15.png -cmd/lc_formattextmenu.png cmd/lc_charfontname.png -cmd/lc_spacepara115.png cmd/lc_spacepara1.png -cmd/lc_textalign.png cmd/lc_alignblock.png - -cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png -cmd/sc_conditionalformatmenu.png cmd/sc_colorscaleformatdialog.png -cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png -cmd/sc_formatframemenu.png cmd/sc_framedialog.png -cmd/sc_formatimagemenu.png cmd/sc_graphicdialog.png -cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png -cmd/sc_formattextmenu.png cmd/sc_charfontname.png -cmd/sc_spacepara115.png cmd/sc_spacepara1.png -cmd/sc_textalign.png cmd/sc_alignblock.png - -# Url -cmd/32/openurl.png cmd/32/browseview.png -cmd/32/webhtml.png cmd/32/browseview.png - -cmd/lc_openurl.png cmd/lc_browseview.png -cmd/lc_webhtml.png cmd/lc_browseview.png - -cmd/sc_openurl.png cmd/sc_browseview.png -cmd/sc_webhtml.png cmd/sc_browseview.png - -# Form -cmd/32/hscroll.png cmd/32/hscrollbar.png -cmd/32/insertformhscroll.png cmd/32/hscrollbar.png -cmd/32/scrollbarmenu.png cmd/32/scrollbar.png -cmd/32/vscroll.png cmd/32/scrollbar.png -cmd/32/vscrollbar.png cmd/32/scrollbar.png - -cmd/lc_hscroll.png cmd/lc_hscrollbar.png -cmd/lc_insertformhscroll.png cmd/lc_hscrollbar.png -cmd/lc_scrollbarmenu.png cmd/lc_scrollbar.png -cmd/lc_vscroll.png cmd/lc_scrollbar.png -cmd/lc_vscrollbar.png cmd/lc_scrollbar.png - -cmd/sc_hscroll.png cmd/sc_hscrollbar.png -cmd/sc_insertformhscroll.png cmd/sc_hscrollbar.png -cmd/sc_scrollbarmenu.png cmd/sc_scrollbar.png -cmd/sc_vscroll.png cmd/sc_scrollbar.png -cmd/sc_vscrollbar.png cmd/sc_scrollbar.png - -# Tools -cmd/32/languagemenu.png cmd/32/managelanguage.png -cmd/lc_languagemenu.png cmd/lc_managelanguage.png -cmd/sc_languagemenu.png cmd/sc_managelanguage.png - - -# Annotations -cmd/32/acceptchanges.png cmd/32/trackchangesbar.png -cmd/32/commentchange.png cmd/32/commentchangetracking.png -cmd/32/deleteallnotes.png cmd/32/deleteallannotation.png -cmd/32/deletecomment.png cmd/32/deleteannotation.png -cmd/32/deletenote.png cmd/32/deleteannotation.png -cmd/32/insertannotation.png cmd/32/shownote.png -cmd/32/notevisible.png cmd/32/shownote.png -cmd/32/showallnotes.png cmd/32/showannotations.png -cmd/32/showchanges.png cmd/32/showtrackedchanges.png - -cmd/lc_acceptchanges.png cmd/lc_trackchangesbar.png -cmd/lc_commentchange.png cmd/lc_commentchangetracking.png -cmd/lc_deleteallnotes.png cmd/lc_deleteallannotation.png -cmd/lc_deletecomment.png cmd/lc_deleteannotation.png -cmd/lc_deletenote.png cmd/lc_deleteannotation.png -cmd/lc_insertannotation.png cmd/lc_shownote.png -cmd/lc_notevisible.png cmd/lc_shownote.png -cmd/lc_showallnotes.png cmd/lc_showannotations.png -cmd/lc_showchanges.png cmd/lc_showtrackedchanges.png - -cmd/sc_acceptchanges.png cmd/sc_trackchangesbar.png -cmd/sc_commentchange.png cmd/sc_commentchangetracking.png -cmd/sc_deleteallnotes.png cmd/sc_deleteallannotation.png -cmd/sc_deletecomment.png cmd/sc_deleteannotation.png -cmd/sc_deletenote.png cmd/sc_deleteannotation.png -cmd/sc_formatallnotes.png cmd/sc_editannotation.png -cmd/sc_insertannotation.png cmd/sc_shownote.png -cmd/sc_notevisible.png cmd/sc_shownote.png -cmd/sc_showallnotes.png cmd/sc_showannotations.png -cmd/sc_showchanges.png cmd/sc_showtrackedchanges.png - -# Locale language support -cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/ar/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ar/recundo.png cmd/32/redo.png -cmd/32/ar/redo.png cmd/32/undo.png -cmd/32/ar/undo.png cmd/32/redo.png -cmd/32/bg/addtextbox.png cmd/32/bg/insertfixedtext.png -cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png -cmd/32/bg/sortdown.png cmd/32/bg/sortdescending.png -cmd/32/bg/sortup.png cmd/32/bg/sortascending.png -cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png -cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png -cmd/32/bg/tablesort.png cmd/32/bg/sortascending.png -cmd/32/bg/textformfield.png cmd/32/bg/edit.png -cmd/32/bg/underline.png cmd/32/hu/underline.png -cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png -cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png -cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png -cmd/32/es/italic.png cmd/32/de/italic.png -cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/es/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/es/underlinesimple.png cmd/32/es/underline.png -cmd/32/es/underlinesingle.png cmd/32/es/underline.png -cmd/32/fa/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/fa/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/fa/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/fa/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/fa/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/fa/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/fa/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/fa/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/fa/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/fa/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/fa/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/fa/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/fa/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/fa/newrecord.png cmd/32/ar/newrecord.png -cmd/32/fa/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/fa/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/fa/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/fa/recsave.png cmd/32/ar/recsave.png -cmd/32/fa/recundo.png cmd/32/redo.png -cmd/32/fa/redo.png cmd/32/undo.png -cmd/32/fa/removebullets.png cmd/32/ar/removebullets.png -cmd/32/fa/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/fa/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/fa/setoutline.png cmd/32/ar/setoutline.png -cmd/32/fa/undo.png cmd/32/redo.png -cmd/32/fr/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/fr/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/fr/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/fr/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/fr/underline.png cmd/32/es/underline.png -cmd/32/fr/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/fr/underlinesimple.png cmd/32/es/underline.png -cmd/32/fr/underlinesingle.png cmd/32/es/underline.png -cmd/32/he/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/he/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/he/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/he/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/he/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/he/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/he/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/he/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/he/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/he/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/he/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/he/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/he/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/he/newrecord.png cmd/32/ar/newrecord.png -cmd/32/he/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/he/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/he/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/he/recsave.png cmd/32/ar/recsave.png -cmd/32/he/recundo.png cmd/32/redo.png -cmd/32/he/redo.png cmd/32/undo.png -cmd/32/he/removebullets.png cmd/32/ar/removebullets.png -cmd/32/he/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/he/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/he/setoutline.png cmd/32/ar/setoutline.png -cmd/32/he/undo.png cmd/32/redo.png -cmd/32/hu/bold.png cmd/32/de/bold.png -cmd/32/hu/underlinesimple.png cmd/32/hu/underline.png -cmd/32/hu/underlinesingle.png cmd/32/hu/underline.png -cmd/32/id/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/id/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/id/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/id/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/it/bold.png cmd/32/fr/bold.png -cmd/32/it/underline.png cmd/32/es/underline.png -cmd/32/it/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/it/underlinesimple.png cmd/32/es/underline.png -cmd/32/it/underlinesingle.png cmd/32/es/underline.png -cmd/32/km/underlinesimple.png cmd/32/km/underline.png -cmd/32/km/underlinesingle.png cmd/32/km/underline.png -cmd/32/ko/charactermenu.png cmd/32/ko/fontdialog.png -cmd/32/ko/drawtext.png cmd/32/ko/text.png -cmd/32/ko/editstyled.png cmd/32/ko/editstyle.png -cmd/32/ko/fontcolor.png cmd/32/ko/color.png -cmd/32/ko/fontheight.png cmd/32/ko/scaletext.png -cmd/32/ko/formatobjectmenu.png cmd/32/ko/text.png -cmd/32/ko/formattextmenu.png cmd/32/ko/charfontname.png -cmd/32/ko/ordercrit.png cmd/32/ko/datasort.png -cmd/32/ko/sortdown.png cmd/32/ko/sortdescending.png -cmd/32/ko/sortup.png cmd/32/ko/sortascending.png -cmd/32/ko/tablesort.png cmd/32/ko/datasort.png -cmd/32/ko/textattributes.png cmd/32/ko/fontdialog.png -cmd/32/ko/texttoolbox.png cmd/32/ko/text.png -cmd/32/ko/underlinesimple.png cmd/32/ko/underline.png -cmd/32/ko/underlinesingle.png cmd/32/ko/underline.png -cmd/32/ko/viewsidebarstyles.png cmd/32/ko/designerdialog.png -cmd/32/nl/italic.png cmd/32/it/italic.png -cmd/32/nl/underlinesimple.png cmd/32/nl/underline.png -cmd/32/nl/underlinesingle.png cmd/32/nl/underline.png -cmd/32/pl/bold.png cmd/32/fr/bold.png -cmd/32/pl/italic.png cmd/32/de/italic.png -cmd/32/pl/underlinesimple.png cmd/32/pl/underline.png -cmd/32/pl/underlinesingle.png cmd/32/pl/underline.png -cmd/32/pt-BR/bold.png cmd/32/es/bold.png -cmd/32/pt-BR/underline.png cmd/32/es/underline.png -cmd/32/pt-BR/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/pt-BR/underlinesimple.png cmd/32/es/underline.png -cmd/32/pt-BR/underlinesingle.png cmd/32/es/underline.png -cmd/32/pt/bold.png cmd/32/es/bold.png -cmd/32/pt/underline.png cmd/32/es/underline.png -cmd/32/pt/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/pt/underlinesimple.png cmd/32/es/underline.png -cmd/32/pt/underlinesingle.png cmd/32/es/underline.png -cmd/32/ru/italic.png cmd/32/de/italic.png -cmd/32/ru/underlinesimple.png cmd/32/ru/underline.png -cmd/32/ru/underlinesingle.png cmd/32/ru/underline.png -cmd/32/sl/underline.png cmd/32/pl/underline.png -cmd/32/sl/underlinedouble.png cmd/32/pl/underlinedouble.png -cmd/32/sl/underlinesimple.png cmd/32/pl/underline.png -cmd/32/sl/underlinesingle.png cmd/32/pl/underline.png -cmd/32/sv/bold.png cmd/32/de/bold.png -cmd/32/sv/italic.png cmd/32/de/italic.png -cmd/32/tr/bold.png cmd/32/sl/bold.png -cmd/32/tr/underline.png cmd/32/hu/underline.png -cmd/32/tr/underlinedouble.png cmd/32/hu/underlinedouble.png -cmd/32/tr/underlinesimple.png cmd/32/hu/underline.png -cmd/32/tr/underlinesingle.png cmd/32/hu/underline.png -cmd/32/underlinesimple.png cmd/32/underline.png -cmd/32/underlinesingle.png cmd/32/underline.png -cmd/32/ur/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/ur/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/ur/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/ur/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/ur/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ur/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/ur/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/ur/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/ur/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/ur/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/ur/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/ur/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ur/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ur/newrecord.png cmd/32/ar/newrecord.png -cmd/32/ur/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/ur/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/ur/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ur/recsave.png cmd/32/ar/recsave.png -cmd/32/ur/recundo.png cmd/32/redo.png -cmd/32/ur/redo.png cmd/32/undo.png -cmd/32/ur/removebullets.png cmd/32/ar/removebullets.png -cmd/32/ur/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/ur/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/ur/setoutline.png cmd/32/ar/setoutline.png -cmd/32/ur/undo.png cmd/32/redo.png -cmd/ar/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/ar/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/ar/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ar/lc_recundo.png cmd/lc_redo.png -cmd/ar/lc_redo.png cmd/lc_undo.png -cmd/ar/lc_undo.png cmd/lc_redo.png -cmd/ar/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/ar/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ar/sc_recundo.png cmd/sc_redo.png -cmd/ar/sc_redo.png cmd/sc_undo.png -cmd/ar/sc_undo.png cmd/sc_redo.png -cmd/bg/lc_addtextbox.png cmd/bg/lc_insertfixedtext.png -cmd/bg/lc_autoformatmenu.png cmd/bg/lc_autocorrectdlg.png -cmd/bg/lc_sortdown.png cmd/bg/lc_sortdescending.png -cmd/bg/lc_sortup.png cmd/bg/lc_sortascending.png -cmd/bg/lc_spelldialog.png cmd/bg/lc_spelling.png -cmd/bg/lc_spellingandgrammardialog.png cmd/bg/lc_spelling.png -cmd/bg/lc_tablesort.png cmd/bg/lc_sortascending.png -cmd/bg/lc_textformfield.png cmd/bg/lc_edit.png -cmd/bg/lc_underline.png cmd/hu/lc_underline.png -cmd/bg/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png -cmd/bg/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/bg/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/bg/sc_addtextbox.png cmd/bg/sc_insertfixedtext.png -cmd/bg/sc_autoformatmenu.png cmd/bg/sc_autocorrectdlg.png -cmd/bg/sc_sortdown.png cmd/bg/sc_sortdescending.png -cmd/bg/sc_sortup.png cmd/bg/sc_sortascending.png -cmd/bg/sc_spelldialog.png cmd/bg/sc_spelling.png -cmd/bg/sc_spellingandgrammardialog.png cmd/bg/sc_spelling.png -cmd/bg/sc_tablesort.png cmd/bg/sc_sortascending.png -cmd/bg/sc_textformfield.png cmd/bg/sc_edit.png -cmd/bg/sc_underline.png cmd/hu/sc_underline.png -cmd/bg/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png -cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/bg/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/es/lc_italic.png cmd/de/lc_italic.png -cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/es/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/es/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/es/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/es/sc_italic.png cmd/de/sc_italic.png -cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/es/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/es/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/es/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/fa/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/fa/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/fa/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/fa/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/fa/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/fa/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/fa/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/fa/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/fa/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/fa/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/fa/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/fa/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/fa/lc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/fa/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/fa/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/fa/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/fa/lc_recsave.png cmd/ar/lc_recsave.png -cmd/fa/lc_recundo.png cmd/lc_redo.png -cmd/fa/lc_redo.png cmd/lc_undo.png -cmd/fa/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/fa/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/fa/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/fa/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/fa/lc_undo.png cmd/lc_redo.png -cmd/fa/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/fa/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/fa/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/fa/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/fa/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/fa/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/fa/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/fa/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/fa/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/fa/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/fa/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/fa/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/fa/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/fa/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/fa/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/fa/sc_recsave.png cmd/ar/sc_recsave.png -cmd/fa/sc_recundo.png cmd/sc_redo.png -cmd/fa/sc_redo.png cmd/sc_undo.png -cmd/fa/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/fa/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/fa/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/fa/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/fa/sc_undo.png cmd/sc_redo.png -cmd/fr/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/fr/lc_underline.png cmd/es/lc_underline.png -cmd/fr/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/fr/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/fr/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/fr/sc_underline.png cmd/es/sc_underline.png -cmd/fr/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/fr/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/fr/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/he/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/he/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/he/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/he/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/he/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/he/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/he/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/he/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/he/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/he/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/he/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/he/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/he/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/he/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/he/lc_recsave.png cmd/ar/lc_recsave.png -cmd/he/lc_recundo.png cmd/lc_redo.png -cmd/he/lc_redo.png cmd/lc_undo.png -cmd/he/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/he/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/he/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/he/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/he/lc_undo.png cmd/lc_redo.png -cmd/he/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/he/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/he/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/he/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/he/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/he/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/he/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/he/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/he/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/he/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/he/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/he/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/he/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/he/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/he/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/he/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/he/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/he/sc_recsave.png cmd/ar/sc_recsave.png -cmd/he/sc_recundo.png cmd/sc_redo.png -cmd/he/sc_redo.png cmd/sc_undo.png -cmd/he/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/he/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/he/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/he/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/he/sc_undo.png cmd/sc_redo.png -cmd/hu/lc_bold.png cmd/de/lc_bold.png -cmd/hu/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/hu/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/hu/sc_bold.png cmd/de/sc_bold.png -cmd/hu/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/hu/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/id/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/id/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/id/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/id/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/it/lc_bold.png cmd/fr/lc_bold.png -cmd/it/lc_underline.png cmd/es/lc_underline.png -cmd/it/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/it/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/it/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/it/sc_bold.png cmd/fr/sc_bold.png -cmd/it/sc_underline.png cmd/es/sc_underline.png -cmd/it/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/it/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/it/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/km/lc_underlinesimple.png cmd/km/lc_underline.png -cmd/km/lc_underlinesingle.png cmd/km/lc_underline.png -cmd/km/sc_underlinesimple.png cmd/km/sc_underline.png -cmd/km/sc_underlinesingle.png cmd/km/sc_underline.png -cmd/ko/lc_charactermenu.png cmd/ko/lc_fontdialog.png -cmd/ko/lc_drawtext.png cmd/ko/lc_text.png -cmd/ko/lc_editstyled.png cmd/ko/lc_editstyle.png -cmd/ko/lc_fontcolor.png cmd/ko/lc_color.png -cmd/ko/lc_fontheight.png cmd/ko/lc_scaletext.png -cmd/ko/lc_formatobjectmenu.png cmd/ko/lc_text.png -cmd/ko/lc_formattextmenu.png cmd/ko/lc_charfontname.png -cmd/ko/lc_ordercrit.png cmd/ko/lc_datasort.png -cmd/ko/lc_sortdown.png cmd/ko/lc_sortdescending.png -cmd/ko/lc_sortup.png cmd/ko/lc_sortascending.png -cmd/ko/lc_tablesort.png cmd/ko/lc_datasort.png -cmd/ko/lc_textattributes.png cmd/ko/lc_fontdialog.png -cmd/ko/lc_texttoolbox.png cmd/ko/lc_text.png -cmd/ko/lc_underlinesimple.png cmd/ko/lc_underline.png -cmd/ko/lc_underlinesingle.png cmd/ko/lc_underline.png -cmd/ko/lc_viewsidebarstyles.png cmd/ko/lc_designerdialog.png -cmd/ko/sc_charactermenu.png cmd/ko/sc_fontdialog.png -cmd/ko/sc_drawtext.png cmd/ko/sc_text.png -cmd/ko/sc_editstyled.png cmd/ko/sc_editstyle.png -cmd/ko/sc_fontcolor.png cmd/ko/sc_color.png -cmd/ko/sc_fontheight.png cmd/ko/sc_scaletext.png -cmd/ko/sc_formatobjectmenu.png cmd/ko/sc_text.png -cmd/ko/sc_formattextmenu.png cmd/ko/sc_charfontname.png -cmd/ko/sc_ordercrit.png cmd/ko/sc_datasort.png -cmd/ko/sc_sortdown.png cmd/ko/sc_sortdescending.png -cmd/ko/sc_sortup.png cmd/ko/sc_sortascending.png -cmd/ko/sc_tablesort.png cmd/ko/sc_datasort.png -cmd/ko/sc_textattributes.png cmd/ko/sc_fontdialog.png -cmd/ko/sc_texttoolbox.png cmd/ko/sc_text.png -cmd/ko/sc_underlinesimple.png cmd/ko/sc_underline.png -cmd/ko/sc_underlinesingle.png cmd/ko/sc_underline.png -cmd/ko/sc_viewsidebarstyles.png cmd/ko/sc_designerdialog.png -cmd/lc_underlinesimple.png cmd/lc_underline.png -cmd/lc_underlinesingle.png cmd/lc_underline.png -cmd/nl/lc_italic.png cmd/it/lc_italic.png -cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png -cmd/nl/lc_underlinesingle.png cmd/nl/lc_underline.png -cmd/nl/sc_italic.png cmd/it/sc_italic.png -cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png -cmd/nl/sc_underlinesingle.png cmd/nl/sc_underline.png -cmd/pl/lc_bold.png cmd/fr/lc_bold.png -cmd/pl/lc_italic.png cmd/de/lc_italic.png -cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png -cmd/pl/lc_underlinesingle.png cmd/pl/lc_underline.png -cmd/pl/sc_bold.png cmd/fr/sc_bold.png -cmd/pl/sc_italic.png cmd/de/sc_italic.png -cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png -cmd/pl/sc_underlinesingle.png cmd/pl/sc_underline.png -cmd/pt-BR/lc_bold.png cmd/es/lc_bold.png -cmd/pt-BR/lc_underline.png cmd/es/lc_underline.png -cmd/pt-BR/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/pt-BR/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/pt-BR/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/pt-BR/sc_bold.png cmd/es/sc_bold.png -cmd/pt-BR/sc_underline.png cmd/es/sc_underline.png -cmd/pt-BR/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/pt-BR/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/pt-BR/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/pt/lc_bold.png cmd/es/lc_bold.png -cmd/pt/lc_underline.png cmd/es/lc_underline.png -cmd/pt/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/pt/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/pt/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/pt/sc_bold.png cmd/es/sc_bold.png -cmd/pt/sc_underline.png cmd/es/sc_underline.png -cmd/pt/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/pt/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/pt/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/ru/lc_italic.png cmd/de/lc_italic.png -cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png -cmd/ru/lc_underlinesingle.png cmd/ru/lc_underline.png -cmd/ru/sc_italic.png cmd/de/sc_italic.png -cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png -cmd/ru/sc_underlinesingle.png cmd/ru/sc_underline.png -cmd/sc_underlinesimple.png cmd/sc_underline.png -cmd/sc_underlinesingle.png cmd/sc_underline.png -cmd/sl/lc_underline.png cmd/pl/lc_underline.png -cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png -cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png -cmd/sl/lc_underlinesingle.png cmd/pl/lc_underline.png -cmd/sl/sc_underline.png cmd/pl/sc_underline.png -cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png -cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png -cmd/sl/sc_underlinesingle.png cmd/pl/sc_underline.png -cmd/sv/lc_bold.png cmd/de/lc_bold.png -cmd/sv/lc_italic.png cmd/de/lc_italic.png -cmd/sv/sc_bold.png cmd/de/sc_bold.png -cmd/sv/sc_italic.png cmd/de/sc_italic.png -cmd/tr/lc_bold.png cmd/sl/lc_bold.png -cmd/tr/lc_underline.png cmd/hu/lc_underline.png -cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png -cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/tr/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/tr/sc_bold.png cmd/sl/sc_bold.png -cmd/tr/sc_underline.png cmd/hu/sc_underline.png -cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png -cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/tr/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/ur/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/ur/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ur/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/ur/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/ur/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/ur/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/ur/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/ur/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/ur/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/ur/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/ur/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/ur/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/ur/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/ur/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ur/lc_recsave.png cmd/ar/lc_recsave.png -cmd/ur/lc_recundo.png cmd/lc_redo.png -cmd/ur/lc_redo.png cmd/lc_undo.png -cmd/ur/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/ur/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/ur/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/ur/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/ur/lc_undo.png cmd/lc_redo.png -cmd/ur/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/ur/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/ur/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/ur/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/ur/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ur/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/ur/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/ur/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/ur/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/ur/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/ur/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/ur/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/ur/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/ur/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/ur/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/ur/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/ur/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ur/sc_recsave.png cmd/ar/sc_recsave.png -cmd/ur/sc_recundo.png cmd/sc_redo.png -cmd/ur/sc_redo.png cmd/sc_undo.png -cmd/ur/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/ur/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/ur/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/ur/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/ur/sc_undo.png cmd/sc_redo.png - -# Template Menu -cmd/32/templatemenu.png cmd/32/adddirect.png -cmd/lc_templatemenu.png cmd/lc_adddirect.png -cmd/sc_templatemenu.png cmd/sc_adddirect.png - -# Animation -cmd/32/customanimation.png cmd/32/diaeffect.png -cmd/lc_customanimation.png cmd/lc_diaeffect.png -cmd/sc_customanimation.png cmd/sc_diaeffect.png - -# Media -cmd/32/datastreamsplay.png cmd/32/runbasic.png -cmd/32/datastreamsstop.png cmd/32/basicstop.png - -cmd/lc_datastreamsplay.png cmd/lc_runbasic.png -cmd/lc_datastreamsstop.png cmd/lc_basicstop.png - -cmd/sc_datastreamsplay.png cmd/sc_runbasic.png -cmd/sc_datastreamsstop.png cmd/sc_basicstop.png - -# Alignment -cmd/32/alignhorizontalceter.png cmd/32/alignhorizontalcenter.png -cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png -cmd/32/objectalign.png cmd/32/objectalignleft.png -cmd/32/sectionalignbottom.png cmd/32/aligndown.png -cmd/32/sectionalignleft.png cmd/32/objectalignleft.png -cmd/32/sectionalignright.png cmd/32/objectalignright.png -cmd/32/sectionaligntop.png cmd/32/alignup.png - -cmd/lc_alignhorizontalceter.png cmd/lc_alignhorizontalcenter.png -cmd/lc_alignvcenter.png cmd/lc_alignverticalcenter.png -cmd/lc_objectalign.png cmd/lc_objectalignleft.png -cmd/lc_sectionalignbottom.png cmd/lc_aligndown.png -cmd/lc_sectionalignleft.png cmd/lc_objectalignleft.png -cmd/lc_sectionalignright.png cmd/lc_objectalignright.png -cmd/lc_sectionaligntop.png cmd/lc_alignup.png - -cmd/sc_alignhorizontalceter.png cmd/sc_alignhorizontalcenter.png -cmd/sc_alignvcenter.png cmd/sc_alignverticalcenter.png -cmd/sc_objectalign.png cmd/sc_objectalignleft.png -cmd/sc_sectionalignbottom.png cmd/sc_aligndown.png -cmd/sc_sectionalignleft.png cmd/sc_objectalignleft.png -cmd/sc_sectionalignright.png cmd/sc_objectalignright.png -cmd/sc_sectionaligntop.png cmd/sc_alignup.png - -# Graphic -cmd/32/colorview.png cmd/32/graphicfilterinvert.png -cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png -cmd/32/grafmode.png cmd/32/graphicdialog.png -cmd/32/objecttitledescription.png cmd/32/insertcaptiondialog.png - -cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png -cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png -cmd/lc_grafmode.png cmd/lc_graphicdialog.png -cmd/lc_objecttitledescription.png cmd/lc_insertcaptiondialog.png - -cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png -cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png -cmd/sc_grafmode.png cmd/sc_graphicdialog.png -cmd/sc_objecttitledescription.png cmd/sc_insertcaptiondialog.png - -# shapes -cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png -cmd/32/basicshapes.circle-pie.png cmd/32/pie.png -cmd/32/basicshapes.circle.png cmd/32/circle.png -cmd/32/basicshapes.parallelogram.png cmd/32/flowchartshapes.flowchart-data.png -cmd/32/basicshapes.round-rectangle.png cmd/32/rect_rounded.png -cmd/32/calloutshapes.round-rectangular-callout.png cmd/32/calloutshapes.png -cmd/32/flowchartshapes.flowchart-alternate-process.png cmd/32/basicshapes.round-quadrat.png -cmd/32/flowchartshapes.flowchart-connector.png cmd/32/circle.png -cmd/32/flowchartshapes.flowchart-extract.png cmd/32/basicshapes.isosceles-triangle.png -cmd/32/flowchartshapes.flowchart-magnetic-disk.png cmd/32/basicshapes.can.png -cmd/32/flowchartshapes.flowchart-manual-operation.png cmd/32/basicshapes.trapezoid.png -cmd/32/flowchartshapes.flowchart-merge.png cmd/32/fontworkshapetype.fontwork-triangle-down.png -cmd/32/fontworkshapetype.fontwork-circle-pour.png cmd/32/basicshapes.ring.png -cmd/32/fontworkshapetype.fontwork-fade-down.png cmd/32/basicshapes.trapezoid.png -cmd/32/fontworkshapetype.fontwork-triangle-up.png cmd/32/basicshapes.isosceles-triangle.png -cmd/32/measureattributes.png cmd/32/measureline.png -cmd/32/symbolshapes.smiley.png cmd/32/symbolshapes.png - - -cmd/lc_arrowshapes.left-right-arrow.png cmd/lc_arrowshapes.png -cmd/lc_basicshapes.circle-pie.png cmd/lc_pie.png -cmd/lc_basicshapes.circle.png cmd/lc_circle.png -cmd/lc_basicshapes.parallelogram.png cmd/lc_flowchartshapes.flowchart-data.png -cmd/lc_basicshapes.round-rectangle.png cmd/lc_rect_rounded.png -cmd/lc_calloutshapes.round-rectangular-callout.png cmd/lc_calloutshapes.png -cmd/lc_flowchartshapes.flowchart-alternate-process.png cmd/lc_basicshapes.round-quadrat.png -cmd/lc_flowchartshapes.flowchart-connector.png cmd/lc_circle.png -cmd/lc_flowchartshapes.flowchart-extract.png cmd/lc_basicshapes.isosceles-triangle.png -cmd/lc_flowchartshapes.flowchart-magnetic-disk.png cmd/lc_basicshapes.can.png -cmd/lc_flowchartshapes.flowchart-manual-operation.png cmd/lc_basicshapes.trapezoid.png -cmd/lc_flowchartshapes.flowchart-merge.png cmd/lc_fontworkshapetype.fontwork-triangle-down.png -cmd/lc_fontworkshapetype.fontwork-circle-pour.png cmd/lc_basicshapes.ring.png -cmd/lc_fontworkshapetype.fontwork-fade-down.png cmd/lc_basicshapes.trapezoid.png -cmd/lc_fontworkshapetype.fontwork-triangle-up.png cmd/lc_basicshapes.isosceles-triangle.png -cmd/lc_measureattributes.png cmd/lc_measureline.png -cmd/lc_symbolshapes.smiley.png cmd/lc_symbolshapes.png - -cmd/sc_arrowshapes.left-right-arrow.png cmd/sc_arrowshapes.png -cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png -cmd/sc_basicshapes.circle.png cmd/sc_circle.png -cmd/sc_basicshapes.parallelogram.png cmd/sc_flowchartshapes.flowchart-data.png -cmd/sc_basicshapes.round-rectangle.png cmd/sc_rect_rounded.png -cmd/sc_calloutshapes.round-rectangular-callout.png cmd/sc_calloutshapes.png -cmd/sc_flowchartshapes.flowchart-alternate-process.png cmd/sc_basicshapes.round-quadrat.png -cmd/sc_flowchartshapes.flowchart-connector.png cmd/sc_circle.png -cmd/sc_flowchartshapes.flowchart-extract.png cmd/sc_basicshapes.isosceles-triangle.png -cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png -cmd/sc_flowchartshapes.flowchart-manual-operation.png cmd/sc_basicshapes.trapezoid.png -cmd/sc_flowchartshapes.flowchart-merge.png cmd/sc_fontworkshapetype.fontwork-triangle-down.png -cmd/sc_fontworkshapetype.fontwork-circle-pour.png cmd/sc_basicshapes.ring.png -cmd/sc_fontworkshapetype.fontwork-fade-down.png cmd/sc_basicshapes.trapezoid.png -cmd/sc_fontworkshapetype.fontwork-triangle-up.png cmd/sc_basicshapes.isosceles-triangle.png -cmd/sc_measureattributes.png cmd/sc_measureline.png -cmd/sc_symbolshapes.smiley.png cmd/sc_symbolshapes.png - -# Open -cmd/32/openfromwriter.png cmd/32/open.png -cmd/32/openfromcalc.png cmd/32/open.png - -cmd/lc_openfromwriter.png cmd/lc_open.png -cmd/lc_openfromcalc.png cmd/lc_open.png - -cmd/sc_openfromwriter.png cmd/sc_open.png -cmd/sc_openfromcalc.png cmd/sc_open.png - -# Mail Merge -cmd/32/dsbformletter.png cmd/32/mailmergewizard.png -cmd/lc_dsbformletter.png cmd/lc_mailmergewizard.png -cmd/sc_dsbformletter.png cmd/sc_mailmergewizard.png - -# Merge -cmd/32/mergedocument.png cmd/32/mergedocuments.png -cmd/lc_mergedocument.png cmd/lc_mergedocuments.png -cmd/sc_mergedocument.png cmd/sc_mergedocuments.png - -# Layout -cmd/32/attributepagesize.png cmd/32/ruler.png - -cmd/lc_attributepagesize.png cmd/lc_ruler.png - -cmd/sc_attributepagesize.png cmd/sc_ruler.png - -# Print -cmd/32/printpagepreview.png cmd/32/printpreview.png - -cmd/lc_printpagepreview.png cmd/lc_printpreview.png - -cmd/sc_printpagepreview.png cmd/sc_printpreview.png - -# Folder -cmd/32/open_h.png cmd/32/open.png - -cmd/lc_open_h.png cmd/lc_open.png - -cmd/sc_open_h.png cmd/sc_open.png - -# Wizard -cmd/32/commontaskbarvisible.png cmd/32/autopilotmenu.png -cmd/32/dbnewformautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewqueryautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewreportautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewtableautopilot.png cmd/32/autopilotmenu.png -cmd/32/graphicfiltertoolbox.png cmd/32/autopilotmenu.png -cmd/32/usewizards.png cmd/32/autopilotmenu.png - -cmd/lc_commontaskbarvisible.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewformautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewqueryautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewreportautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewtableautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_graphicfiltertoolbox.png cmd/lc_autopilotmenu.png -cmd/lc_usewizards.png cmd/lc_autopilotmenu.png - -cmd/sc_commontaskbarvisible.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewformautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewqueryautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewreportautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewtableautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_graphicfiltertoolbox.png cmd/sc_autopilotmenu.png -cmd/sc_usewizards.png cmd/sc_autopilotmenu.png - -# Filter -cmd/32/autofilter.png cmd/32/datafilterautofilter.png -cmd/32/filtercrit.png cmd/32/datafilterstandardfilter.png -cmd/32/formfilter.png cmd/32/datafilterspecialfilter.png -cmd/32/formfilterexecute.png cmd/32/datafilterstandardfilter.png -cmd/32/removefilter.png cmd/32/removefiltersort.png - -cmd/lc_autofilter.png cmd/lc_datafilterautofilter.png -cmd/lc_filtercrit.png cmd/lc_datafilterstandardfilter.png -cmd/lc_formfilter.png cmd/lc_datafilterspecialfilter.png -cmd/lc_formfilterexecute.png cmd/lc_datafilterstandardfilter.png -cmd/lc_removefilter.png cmd/lc_removefiltersort.png - -cmd/sc_autofilter.png cmd/sc_datafilterautofilter.png -cmd/sc_filtercrit.png cmd/sc_datafilterstandardfilter.png -cmd/sc_formfilter.png cmd/sc_datafilterspecialfilter.png -cmd/sc_formfilterexecute.png cmd/sc_datafilterstandardfilter.png -cmd/sc_removefilter.png cmd/sc_removefiltersort.png - -# Bullets -cmd/32/bulletliststyle.png cmd/32/defaultbullet.png -cmd/32/defaultparastyle.png cmd/32/controlcodes.png -cmd/32/linenumberdialog.png cmd/32/linenumberingdialog.png -cmd/32/numberliststyle.png cmd/32/defaultnumbering.png -cmd/32/outlinebullet.png cmd/32/bulletsandnumberingdialog.png - -cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png -cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png -cmd/lc_linenumberdialog.png cmd/lc_linenumberingdialog.png -cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png -cmd/lc_outlinebullet.png cmd/lc_bulletsandnumberingdialog.png - -cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png -cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png -cmd/sc_linenumberdialog.png cmd/sc_linenumberingdialog.png -cmd/sc_numberliststyle.png cmd/sc_defaultnumbering.png -cmd/sc_outlinebullet.png cmd/sc_bulletsandnumberingdialog.png - -# Group -cmd/32/groupmenu.png cmd/32/formatgroup.png - -cmd/lc_groupmenu.png cmd/lc_formatgroup.png - -cmd/sc_groupmenu.png cmd/sc_formatgroup.png - -# Undo -cmd/32/recundo.png cmd/32/undo.png -cmd/lc_recundo.png cmd/lc_undo.png -cmd/sc_recundo.png cmd/sc_undo.png - -# Bezier -cmd/32/bezieredge.png cmd/32/bezierappend.png -cmd/lc_bezieredge.png cmd/lc_bezierappend.png -cmd/sc_bezieredge.png cmd/sc_bezierappend.png - -# Rotate -cmd/32/clickchangerotation.png cmd/32/toggleobjectrotatemode.png -cmd/lc_clickchangerotation.png cmd/lc_toggleobjectrotatemode.png -cmd/sc_clickchangerotation.png cmd/sc_toggleobjectrotatemode.png - -# AddField -cmd/32/fieldnames.png cmd/32/addfield.png -cmd/lc_fieldnames.png cmd/lc_addfield.png -cmd/sc_fieldnames.png cmd/sc_addfield.png - -# Edit -cmd/32/dsbeditdoc.png cmd/32/editdoc.png - -cmd/lc_dsbeditdoc.png cmd/lc_editdoc.png - -cmd/sc_dsbeditdoc.png cmd/sc_editdoc.png - -# Quit -cmd/32/closewin.png cmd/32/quit.png -cmd/lc_closewin.png cmd/lc_quit.png -cmd/sc_closewin.png cmd/sc_quit.png - -# Close -cmd/32/exitsearch.png cmd/32/closepreview.png -cmd/lc_exitsearch.png cmd/lc_closepreview.png -cmd/sc_exitsearch.png cmd/sc_closepreview.png - -# Cancel -cmd/32/no.png cmd/32/cancel.png -cmd/lc_no.png cmd/lc_cancel.png -cmd/sc_no.png cmd/sc_cancel.png - -# Page -cmd/32/insertobjctrl.png cmd/32/drawchart.png - -cmd/lc_insertobjctrl.png cmd/lc_drawchart.png - -cmd/sc_insertobjctrl.png cmd/sc_drawchart.png - -# Line -cmd/32/shapeslinemenu.png cmd/32/line.png -cmd/32/xlinestyle.png cmd/32/linestyle.png - -cmd/lc_shapeslinemenu.png cmd/lc_line.png -cmd/lc_xlinestyle.png cmd/lc_linestyle.png - -cmd/sc_shapeslinemenu.png cmd/sc_line.png -cmd/sc_xlinestyle.png cmd/sc_linestyle.png - -# Mail merge -cmd/32/mailmergefirstentry.png cmd/32/firstrecord.png -cmd/32/mailmergelastentry.png cmd/32/lastrecord.png -cmd/32/mailmergenextentry.png cmd/32/nextrecord.png -cmd/32/mailmergepreventry.png cmd/32/prevrecord.png - -cmd/lc_mailmergefirstentry.png cmd/lc_firstrecord.png -cmd/lc_mailmergelastentry.png cmd/lc_lastrecord.png -cmd/lc_mailmergenextentry.png cmd/lc_nextrecord.png -cmd/lc_mailmergepreventry.png cmd/lc_prevrecord.png - -cmd/sc_mailmergefirstentry.png cmd/sc_firstrecord.png -cmd/sc_mailmergelastentry.png cmd/sc_lastrecord.png -cmd/sc_mailmergenextentry.png cmd/sc_nextrecord.png -cmd/sc_mailmergepreventry.png cmd/sc_prevrecord.png - -# Arrows -cmd/32/arrowstoolbox.png cmd/32/linearrowend.png -cmd/lc_arrowstoolbox.png cmd/lc_linearrowend.png -cmd/sc_arrowstoolbox.png cmd/sc_linearrowend.png - -# < -cmd/32/browsebackward.png cmd/32/prevrecord.png -cmd/32/navigateback.png cmd/32/prevrecord.png -cmd/32/pageup.png cmd/32/previouspage.png - -cmd/lc_browsebackward.png cmd/lc_prevrecord.png -cmd/lc_navigateback.png cmd/lc_prevrecord.png -cmd/lc_pageup.png cmd/lc_previouspage.png - -cmd/sc_browsebackward.png cmd/sc_prevrecord.png -cmd/sc_navigateback.png cmd/sc_prevrecord.png -cmd/sc_pageup.png cmd/sc_previouspage.png - -# > -cmd/32/navigateforward.png cmd/32/nextrecord.png -cmd/32/pagedown.png cmd/32/nextpage.png - -cmd/lc_navigateforward.png cmd/lc_nextrecord.png -cmd/lc_pagedown.png cmd/lc_nextpage.png - -cmd/sc_navigateforward.png cmd/sc_nextrecord.png -cmd/sc_pagedown.png cmd/sc_nextpage.png - -# >| -cmd/32/gotoendofpage.png cmd/32/lastpage.png - -cmd/lc_gotoendofpage.png cmd/lc_lastpage.png - -cmd/sc_gotoendofpage.png cmd/sc_lastpage.png - -# |< -cmd/32/gotostartofpage.png cmd/32/firstpage.png - -cmd/lc_gotostartofpage.png cmd/lc_firstpage.png - -cmd/sc_gotostartofpage.png cmd/sc_firstpage.png - -# Hyperlink -cmd/32/hyperlinkdialog.png cmd/32/inserthyperlink.png -cmd/lc_hyperlinkdialog.png cmd/lc_inserthyperlink.png -cmd/sc_hyperlinkdialog.png cmd/sc_inserthyperlink.png - -# Spellcheck -cmd/32/spelldialog.png cmd/32/spelling.png -cmd/32/spellingandgrammardialog.png cmd/32/spelling.png - -cmd/lc_spelldialog.png cmd/lc_spelling.png -cmd/lc_spellingandgrammardialog.png cmd/lc_spelling.png - -cmd/sc_spelldialog.png cmd/sc_spelling.png -cmd/sc_spellingandgrammardialog.png cmd/sc_spelling.png - -# Color -cmd/32/backgroundpatterncontroller.png cmd/32/backgroundcolor.png -cmd/32/characterbackgroundpattern.png cmd/32/backcolor.png -cmd/32/fillcolor.png cmd/32/backgroundcolor.png -cmd/32/fillstyle.png cmd/32/backgroundcolor.png -cmd/32/fontcolor.png cmd/32/color.png -cmd/32/formatarea.png cmd/32/backgroundcolor.png -cmd/32/tablecellbackgroundcolor.png cmd/32/backgroundcolor.png - -cmd/lc_backgroundpatterncontroller.png cmd/lc_backgroundcolor.png -cmd/lc_characterbackgroundpattern.png cmd/lc_backcolor.png -cmd/lc_fillcolor.png cmd/lc_backgroundcolor.png -cmd/lc_fillstyle.png cmd/lc_backgroundcolor.png -cmd/lc_fontcolor.png cmd/lc_color.png -cmd/lc_formatarea.png cmd/lc_backgroundcolor.png -cmd/lc_tablecellbackgroundcolor.png cmd/lc_backgroundcolor.png - -cmd/sc_backgroundpatterncontroller.png cmd/sc_backgroundcolor.png -cmd/sc_characterbackgroundpattern.png cmd/sc_backcolor.png -cmd/sc_fillcolor.png cmd/sc_backgroundcolor.png -cmd/sc_fillstyle.png cmd/sc_backgroundcolor.png -cmd/sc_fontcolor.png cmd/sc_color.png -cmd/sc_formatarea.png cmd/sc_backgroundcolor.png -cmd/sc_tablecellbackgroundcolor.png cmd/sc_backgroundcolor.png - -# Paragraph Alignment -cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png -cmd/32/fontworkalignmentfloater.png cmd/32/alignhorizontalcenter.png -cmd/32/justifypara.png cmd/32/alignblock.png -cmd/32/leftpara.png cmd/32/alignleft.png -cmd/32/rightpara.png cmd/32/alignright.png - -cmd/lc_centerpara.png cmd/lc_alignhorizontalcenter.png -cmd/lc_fontworkalignmentfloater.png cmd/lc_alignhorizontalcenter.png -cmd/lc_justifypara.png cmd/lc_alignblock.png -cmd/lc_leftpara.png cmd/lc_alignleft.png -cmd/lc_rightpara.png cmd/lc_alignright.png - -cmd/sc_centerpara.png cmd/sc_alignhorizontalcenter.png -cmd/sc_fontworkalignmentfloater.png cmd/sc_alignhorizontalcenter.png -cmd/sc_justifypara.png cmd/sc_alignblock.png -cmd/sc_leftpara.png cmd/sc_alignleft.png -cmd/sc_rightpara.png cmd/sc_alignright.png - -# Thesaurus -cmd/32/thesaurusdialog.png cmd/32/thesaurus.png -cmd/lc_thesaurusdialog.png cmd/lc_thesaurus.png -cmd/sc_thesaurusdialog.png cmd/sc_thesaurus.png - -# View -cmd/32/availabletoolbars.png cmd/32/showtoolbar.png -cmd/32/sidebarmenu.png cmd/32/sidebar.png -cmd/32/toolbarsmenu.png cmd/32/showtoolbar.png -cmd/lc_availabletoolbars.png cmd/lc_showtoolbar.png -cmd/lc_sidebarmenu.png cmd/lc_sidebar.png -cmd/lc_toolbarsmenu.png cmd/lc_showtoolbar.png -cmd/sc_availabletoolbars.png cmd/sc_showtoolbar.png -cmd/sc_sidebarmenu.png cmd/sc_sidebar.png -cmd/sc_toolbarsmenu.png cmd/sc_showtoolbar.png - -# Vertical Text Alignment -cmd/32/cellvertbottom.png cmd/32/alignbottom.png -cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png -cmd/32/cellverttop.png cmd/32/aligntop.png -cmd/32/commonalignbottom.png cmd/32/alignbottom.png -cmd/32/commonalignhorizontalcenter.png cmd/32/alignhorizontalcenter.png -cmd/32/commonalignjustified.png cmd/32/alignblock.png -cmd/32/commonalignleft.png cmd/32/alignleft.png -cmd/32/commonalignright.png cmd/32/alignright.png -cmd/32/commonaligntop.png cmd/32/aligntop.png -cmd/32/commonalignverticalcenter.png cmd/32/alignverticalcenter.png - -cmd/lc_cellvertbottom.png cmd/lc_alignbottom.png -cmd/lc_cellvertcenter.png cmd/lc_alignverticalcenter.png -cmd/lc_cellverttop.png cmd/lc_aligntop.png -cmd/lc_commonalignbottom.png cmd/lc_alignbottom.png -cmd/lc_commonalignhorizontalcenter.png cmd/lc_alignhorizontalcenter.png -cmd/lc_commonalignjustified.png cmd/lc_alignblock.png -cmd/lc_commonalignleft.png cmd/lc_alignleft.png -cmd/lc_commonalignright.png cmd/lc_alignright.png -cmd/lc_commonaligntop.png cmd/lc_aligntop.png -cmd/lc_commonalignverticalcenter.png cmd/lc_alignverticalcenter.png - -cmd/sc_cellvertbottom.png cmd/sc_alignbottom.png -cmd/sc_cellvertcenter.png cmd/sc_alignverticalcenter.png -cmd/sc_cellverttop.png cmd/sc_aligntop.png -cmd/sc_commonalignbottom.png cmd/sc_alignbottom.png -cmd/sc_commonalignhorizontalcenter.png cmd/sc_alignhorizontalcenter.png -cmd/sc_commonalignjustified.png cmd/sc_alignblock.png -cmd/sc_commonalignleft.png cmd/sc_alignleft.png -cmd/sc_commonalignright.png cmd/sc_alignright.png -cmd/sc_commonaligntop.png cmd/sc_aligntop.png -cmd/sc_commonalignverticalcenter.png cmd/sc_alignverticalcenter.png - -# paragraph line spacing drop down -cmd/32/linespacing.png cmd/32/spacepara15.png -cmd/lc_linespacing.png cmd/lc_spacepara15.png -cmd/sc_linespacing.png cmd/sc_spacepara15.png - -# calc menu entries -cmd/32/cellcontentsmenu.png cmd/32/calculate.png -cmd/32/chartmenu.png cmd/32/drawchart.png -cmd/32/datapilotmenu.png cmd/32/datadatapilotrun.png -cmd/32/editselectmenu.png cmd/32/selecttables.png -cmd/32/fieldmenu.png cmd/32/insertfieldctrl.png -cmd/32/functionbox.png cmd/32/dbviewfunctions.png -cmd/32/functiondialog.png cmd/32/dbviewfunctions.png -cmd/32/groupoutlinemenu.png cmd/32/autooutline.png -cmd/32/insertanchor.png cmd/32/insertbookmark.png -cmd/32/insertcell.png cmd/32/insertcellsright.png -cmd/32/insertcolumnsmenu.png cmd/32/insertcolumns.png -cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png -cmd/32/insertrowsmenu.png cmd/32/insertrows.png -cmd/32/mergecellsmenu.png cmd/32/togglemergecells.png -cmd/32/navigatemenu.png cmd/32/navigator.png -cmd/32/numberformatmenu.png cmd/32/numberformatstandard.png -cmd/32/objectmenu.png cmd/32/insertobject.png -cmd/32/printrangesmenu.png cmd/32/defineprintarea.png -cmd/32/selectcolumn.png cmd/32/entirecolumn.png -cmd/32/selectdata.png cmd/32/selectdb.png -cmd/32/selectrow.png cmd/32/entirerow.png -cmd/32/sheetcommentmenu.png cmd/32/shownote.png -cmd/32/toolsformsmenu.png cmd/32/dbviewforms.png - -cmd/lc_cellcontentsmenu.png cmd/lc_calculate.png -cmd/lc_chartmenu.png cmd/lc_drawchart.png -cmd/lc_datapilotmenu.png cmd/lc_datadatapilotrun.png -cmd/lc_editselectmenu.png cmd/lc_selecttables.png -cmd/lc_fieldmenu.png cmd/lc_insertfieldctrl.png -cmd/lc_functionbox.png cmd/lc_dbviewfunctions.png -cmd/lc_functiondialog.png cmd/lc_dbviewfunctions.png -cmd/lc_groupoutlinemenu.png cmd/lc_autooutline.png -cmd/lc_insertanchor.png cmd/lc_insertbookmark.png -cmd/lc_insertcell.png cmd/lc_insertcellsright.png -cmd/lc_insertcolumnsmenu.png cmd/lc_insertcolumns.png -cmd/lc_insertpivottable.png cmd/lc_datadatapilotrun.png -cmd/lc_insertrowsmenu.png cmd/lc_insertrows.png -cmd/lc_mergecellsmenu.png cmd/lc_togglemergecells.png -cmd/lc_navigatemenu.png cmd/lc_navigator.png -cmd/lc_numberformatmenu.png cmd/lc_numberformatstandard.png -cmd/lc_objectmenu.png cmd/lc_insertobject.png -cmd/lc_printrangesmenu.png cmd/lc_defineprintarea.png -cmd/lc_selectcolumn.png cmd/lc_entirecolumn.png -cmd/lc_selectdata.png cmd/lc_selectdb.png -cmd/lc_selectrow.png cmd/lc_entirerow.png -cmd/lc_sheetcommentmenu.png cmd/lc_shownote.png -cmd/lc_toolsformsmenu.png cmd/lc_dbviewforms.png - -cmd/sc_cellcontentsmenu.png cmd/sc_calculate.png -cmd/sc_chartmenu.png cmd/sc_drawchart.png -cmd/sc_datapilotmenu.png cmd/sc_datadatapilotrun.png -cmd/sc_editselectmenu.png cmd/sc_selecttables.png -cmd/sc_fieldmenu.png cmd/sc_insertfieldctrl.png -cmd/sc_functionbox.png cmd/sc_dbviewfunctions.png -cmd/sc_functiondialog.png cmd/sc_dbviewfunctions.png -cmd/sc_groupoutlinemenu.png cmd/sc_autooutline.png -cmd/sc_insertanchor.png cmd/sc_insertbookmark.png -cmd/sc_insertcell.png cmd/sc_insertcellsright.png -cmd/sc_insertcolumnsmenu.png cmd/sc_insertcolumns.png -cmd/sc_insertpivottable.png cmd/sc_datadatapilotrun.png -cmd/sc_insertrowsmenu.png cmd/sc_insertrows.png -cmd/sc_mergecellsmenu.png cmd/sc_togglemergecells.png -cmd/sc_navigatemenu.png cmd/sc_navigator.png -cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png -cmd/sc_objectmenu.png cmd/sc_insertobject.png -cmd/sc_printrangesmenu.png cmd/sc_defineprintarea.png -cmd/sc_selectcolumn.png cmd/sc_entirecolumn.png -cmd/sc_selectdata.png cmd/sc_selectdb.png -cmd/sc_selectrow.png cmd/sc_entirerow.png -cmd/sc_sheetcommentmenu.png cmd/sc_shownote.png -cmd/sc_toolsformsmenu.png cmd/sc_dbviewforms.png - -# Shapes -cmd/32/basicshapes.ellipse.png cmd/32/ellipse.png -cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png -cmd/32/basicshapes.rectangle.png cmd/32/rect.png -cmd/32/ellipsetoolbox.png cmd/32/ellipse.png -cmd/32/linetoolbox.png cmd/32/freeline_unfilled.png -cmd/32/rectangletoolbox.png cmd/32/rect.png - -cmd/lc_basicshapes.ellipse.png cmd/lc_ellipse.png -cmd/lc_basicshapes.png cmd/lc_basicshapes.diamond.png -cmd/lc_basicshapes.rectangle.png cmd/lc_rect.png -cmd/lc_ellipsetoolbox.png cmd/lc_ellipse.png -cmd/lc_linetoolbox.png cmd/lc_freeline_unfilled.png -cmd/lc_rectangletoolbox.png cmd/lc_rect.png - -cmd/sc_basicshapes.ellipse.png cmd/sc_ellipse.png -cmd/sc_basicshapes.png cmd/sc_basicshapes.diamond.png -cmd/sc_basicshapes.rectangle.png cmd/sc_rect.png -cmd/sc_ellipsetoolbox.png cmd/sc_ellipse.png -cmd/sc_linetoolbox.png cmd/sc_freeline_unfilled.png -cmd/sc_rectangletoolbox.png cmd/sc_rect.png - -# Format -cmd/32/insertcurrentdate.png cmd/32/datefield.png -cmd/32/insertcurrenttime.png cmd/32/timefield.png -cmd/32/insertobjectchartfromfile.png cmd/32/drawchart.png -cmd/32/pageformatdialog.png cmd/32/pagedialog.png - -cmd/lc_insertcurrentdate.png cmd/lc_datefield.png -cmd/lc_insertcurrenttime.png cmd/lc_timefield.png -cmd/lc_insertobjectchartfromfile.png cmd/lc_drawchart.png -cmd/lc_pageformatdialog.png cmd/lc_pagedialog.png - -cmd/sc_insertcurrentdate.png cmd/sc_datefield.png -cmd/sc_insertcurrenttime.png cmd/sc_timefield.png -cmd/sc_insertobjectchartfromfile.png cmd/sc_drawchart.png -cmd/sc_pageformatdialog.png cmd/sc_pagedialog.png - -# Notebookbar -cmd/32/datafilterhideautofilter.png cmd/32/removefiltersort.png -cmd/32/headerandfooter.png cmd/32/editheaderandfooter.png -cmd/32/insertheaderfootermenu.png cmd/32/editheaderandfooter.png -cmd/32/insertsignatureline.png cmd/32/signaturelinedialog.png - -cmd/lc_datafilterhideautofilter.png cmd/lc_removefiltersort.png -cmd/lc_headerandfooter.png cmd/lc_editheaderandfooter.png -cmd/lc_insertheaderfootermenu.png cmd/lc_editheaderandfooter.png -cmd/lc_insertsignatureline.png cmd/lc_signaturelinedialog.png - -cmd/sc_datafilterhideautofilter.png cmd/sc_removefiltersort.png -cmd/sc_headerandfooter.png cmd/sc_editheaderandfooter.png -cmd/sc_insertheaderfootermenu.png cmd/sc_editheaderandfooter.png -cmd/sc_insertsignatureline.png cmd/sc_signaturelinedialog.png - -# Ok -cmd/32/apply.png cmd/32/ok.png -cmd/32/yes.png cmd/32/ok.png - -cmd/lc_apply.png cmd/lc_ok.png -cmd/lc_yes.png cmd/lc_ok.png - -cmd/sc_apply.png cmd/sc_ok.png -cmd/sc_yes.png cmd/sc_ok.png - -# Find Toolbar -cmd/32/findbar.png cmd/32/recsearch.png -cmd/32/scrolltonext.png cmd/32/downsearch.png -cmd/32/scrolltoprevious.png cmd/32/upsearch.png - -cmd/lc_findbar.png cmd/lc_recsearch.png -cmd/lc_scrolltonext.png cmd/lc_downsearch.png -cmd/lc_scrolltoprevious.png cmd/lc_upsearch.png - -cmd/sc_findbar.png cmd/sc_recsearch.png -cmd/sc_scrolltonext.png cmd/sc_downsearch.png -cmd/sc_scrolltoprevious.png cmd/sc_upsearch.png - -# File Menu -cmd/32/exportasmenu.png cmd/32/exportto.png -cmd/32/exporttoepub.png cmd/32/exportdirecttoepub.png -cmd/32/exporttopdf.png cmd/32/exportdirecttopdf.png -cmd/32/templatemenu.png cmd/32/templatemanager.png - -cmd/lc_exportasmenu.png cmd/lc_exportto.png -cmd/lc_exporttoepub.png cmd/lc_exportdirecttoepub.png -cmd/lc_exporttopdf.png cmd/lc_exportdirecttopdf.png -cmd/lc_templatemenu.png cmd/lc_templatemanager.png - -cmd/sc_exportasmenu.png cmd/sc_exportto.png -cmd/sc_exporttoepub.png cmd/sc_exportdirecttoepub.png -cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png -cmd/sc_templatemenu.png cmd/sc_templatemanager.png - -# Edit Menu -cmd/32/editlinksmenu.png cmd/32/insertreferencefield.png -cmd/lc_editlinksmenu.png cmd/lc_insertreferencefield.png -cmd/sc_editlinksmenu.png cmd/sc_insertreferencefield.png - -# Square -cmd/32/basicshapes.quadrat.png cmd/32/square.png -cmd/32/flowchartshapes.flowchart-process.png cmd/32/square.png - -cmd/lc_basicshapes.quadrat.png cmd/lc_square.png -cmd/lc_flowchartshapes.flowchart-process.png cmd/lc_square.png - -cmd/sc_basicshapes.quadrat.png cmd/sc_square.png -cmd/sc_flowchartshapes.flowchart-process.png cmd/sc_square.png - -# Sort -cmd/32/ordercrit.png cmd/32/datasort.png -cmd/32/sortdialog.png cmd/32/datasort.png -cmd/32/sortdown.png cmd/32/sortdescending.png -cmd/32/sortup.png cmd/32/sortascending.png -cmd/32/tablesort.png cmd/32/sortascending.png - -cmd/lc_ordercrit.png cmd/lc_datasort.png -cmd/lc_sortdialog.png cmd/lc_datasort.png -cmd/lc_sortdown.png cmd/lc_sortdescending.png -cmd/lc_sortup.png cmd/lc_sortascending.png -cmd/lc_tablesort.png cmd/lc_sortascending.png - -cmd/sc_ordercrit.png cmd/sc_datasort.png -cmd/sc_sortdialog.png cmd/sc_datasort.png -cmd/sc_sortdown.png cmd/sc_sortdescending.png -cmd/sc_sortup.png cmd/sc_sortascending.png -cmd/sc_tablesort.png cmd/sc_sortascending.png - -# Code -cmd/32/sourceview.png cmd/32/symbolshapes.brace-pair.png -cmd/lc_sourceview.png cmd/lc_symbolshapes.brace-pair.png -cmd/sc_sourceview.png cmd/sc_symbolshapes.brace-pair.png - -# Config -cmd/32/formatselection.png cmd/32/configuredialog.png -cmd/lc_formatselection.png cmd/lc_configuredialog.png -cmd/sc_formatselection.png cmd/sc_configuredialog.png - -# Hyphenation -cmd/32/hyphenation.png cmd/32/hyphenate.png -cmd/lc_hyphenation.png cmd/lc_hyphenate.png -cmd/sc_hyphenation.png cmd/sc_hyphenate.png - -# Currency -cmd/32/numberformatcurrency.png cmd/32/currencyfield.png -cmd/32/numberformatcurrencysimple.png cmd/32/currencyfield.png - -cmd/lc_numberformatcurrency.png cmd/lc_currencyfield.png -cmd/lc_numberformatcurrencysimple.png cmd/lc_currencyfield.png - -cmd/sc_numberformatcurrency.png cmd/sc_currencyfield.png -cmd/sc_numberformatcurrencysimple.png cmd/sc_currencyfield.png - -# Fontwork -cmd/32/fontworkshapetype.png cmd/32/fontwork.png -cmd/lc_fontworkshapetype.png cmd/lc_fontwork.png -cmd/sc_fontworkshapetype.png cmd/sc_fontwork.png - -# Ruler -cmd/32/rulermenu.png cmd/32/ruler.png -cmd/32/showruler.png cmd/32/ruler.png - -cmd/lc_rulermenu.png cmd/lc_ruler.png -cmd/lc_showruler.png cmd/lc_ruler.png - -cmd/sc_rulermenu.png cmd/sc_ruler.png -cmd/sc_showruler.png cmd/sc_ruler.png - -# Graphic Quality Color -cmd/32/outputqualitycolor.png cmd/32/insertgraphic.png -cmd/lc_outputqualitycolor.png cmd/lc_insertgraphic.png -cmd/sc_outputqualitycolor.png cmd/sc_insertgraphic.png - -# Show Formula -cmd/32/toggleformula.png cmd/32/dbviewfunctions.png -cmd/lc_toggleformula.png cmd/lc_dbviewfunctions.png -cmd/sc_toggleformula.png cmd/sc_dbviewfunctions.png - -# Axis -cmd/32/toggleaxisdescr.png cmd/32/helplinesvisible.png -cmd/lc_toggleaxisdescr.png cmd/lc_helplinesvisible.png -cmd/sc_toggleaxisdescr.png cmd/sc_helplinesvisible.png - -# Grid -cmd/32/gridmenu.png cmd/32/gridvisible.png -cmd/32/insertgridcontrol.png cmd/32/grid.png - -cmd/lc_gridmenu.png cmd/lc_gridvisible.png -cmd/lc_insertgridcontrol.png cmd/lc_grid.png - -cmd/sc_gridmenu.png cmd/sc_gridvisible.png -cmd/sc_insertgridcontrol.png cmd/sc_grid.png - -# Crop -cmd/32/grafattrcrop.png cmd/32/crop.png -cmd/lc_grafattrcrop.png cmd/lc_crop.png -cmd/sc_grafattrcrop.png cmd/sc_crop.png - -# Extrusion Rotate -cmd/32/rulerrows.png cmd/32/extrusiontiltleft.png -cmd/32/rulerrowsvertical.png cmd/32/extrusiontiltright.png - -cmd/lc_rulerrows.png cmd/lc_extrusiontiltleft.png -cmd/lc_rulerrowsvertical.png cmd/lc_extrusiontiltright.png - -cmd/sc_rulerrows.png cmd/sc_extrusiontiltleft.png -cmd/sc_rulerrowsvertical.png cmd/sc_extrusiontiltright.png - -# Light -svx/res/lightofffrombottom_22.png svx/res/light.png -svx/res/lightofffrombottomleft_22.png svx/res/light.png -svx/res/lightofffrombottomright_22.png svx/res/light.png -svx/res/lightofffromleft_22.png svx/res/light.png -svx/res/lightofffromright_22.png svx/res/light.png -svx/res/lightofffromtop_22.png svx/res/light.png -svx/res/lightofffromtopleft_22.png svx/res/light.png -svx/res/lightofffromtopright_22.png svx/res/light.png -svx/res/lightonfrombottom_22.png svx/res/lighton.png -svx/res/lightonfrombottomleft_22.png svx/res/lighton.png -svx/res/lightonfrombottomright_22.png svx/res/lighton.png -svx/res/lightonfromleft_22.png svx/res/lighton.png -svx/res/lightonfromright_22.png svx/res/lighton.png -svx/res/lightonfromtop_22.png svx/res/lighton.png -svx/res/lightonfromtopleft_22.png svx/res/lighton.png -svx/res/lightonfromtopright_22.png svx/res/lighton.png -svx/res/legtyp1.png cmd/sc_calloutshapes.line-callout-3.png -svx/res/legtyp2.png cmd/sc_calloutshapes.line-callout-1.png -svx/res/legtyp3.png cmd/sc_calloutshapes.line-callout-2.png - -# 3d -svx/res/3dgeo.png cmd/sc_diagramaxisxyz.png -svx/res/3drepres.png cmd/sc_fillshadow.png -svx/res/3dtextur.png cmd/sc_graphicfilterpopart.png -svx/res/3dlight.png svx/res/lighton.png -svx/res/objects.png cmd/sc_objectcatalog.png - -# Presentation -cmd/32/diaauto.png cmd/32/dia.png -cmd/lc_diaauto.png cmd/lc_dia.png -cmd/sc_diaauto.png cmd/sc_dia.png - -# Style -cmd/32/editstyled.png cmd/32/editstyle.png -cmd/32/loadstyles.png cmd/32/open.png -cmd/32/viewsidebarstyles.png cmd/32/designerdialog.png - -cmd/lc_editstyled.png cmd/lc_editstyle.png -cmd/lc_loadstyles.png cmd/lc_open.png -cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png - -cmd/sc_editstyled.png cmd/sc_editstyle.png -cmd/sc_loadstyles.png cmd/sc_open.png -cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png - -# Outline -cmd/32/outlinedown.png cmd/32/movedown.png -cmd/32/outlineleft.png cmd/32/incrementlevel.png -cmd/32/outlineright.png cmd/32/decrementlevel.png -cmd/32/outlineup.png cmd/32/moveup.png - -cmd/lc_outlinedown.png cmd/lc_movedown.png -cmd/lc_outlineleft.png cmd/lc_incrementlevel.png -cmd/lc_outlineright.png cmd/lc_decrementlevel.png -cmd/lc_outlineup.png cmd/lc_moveup.png - -cmd/sc_outlinedown.png cmd/sc_movedown.png -cmd/sc_outlineleft.png cmd/sc_incrementlevel.png -cmd/sc_outlineright.png cmd/sc_decrementlevel.png -cmd/sc_outlineup.png cmd/sc_moveup.png - -# Index -cmd/32/indexesmenu.png cmd/32/insertindexesentry.png -cmd/32/insertfootnotesmenu.png cmd/32/insertfootnote.png - -cmd/lc_indexesmenu.png cmd/lc_insertindexesentry.png -cmd/lc_insertfootnotesmenu.png cmd/lc_insertfootnote.png - -cmd/sc_indexesmenu.png cmd/sc_insertindexesentry.png -cmd/sc_insertfootnotesmenu.png cmd/sc_insertfootnote.png - -# Mirror -cmd/32/fliphorizontal.png cmd/32/mirror.png -cmd/32/flipmenu.png cmd/32/mirror.png -cmd/32/flipvertical.png cmd/32/mirrorvert.png -cmd/32/mirrorhorz.png cmd/32/mirror.png -cmd/32/objectmirrorhorizontal.png cmd/32/mirror.png -cmd/32/objectmirrorvertical.png cmd/32/mirrorvert.png - -cmd/lc_fliphorizontal.png cmd/lc_mirror.png -cmd/lc_flipmenu.png cmd/lc_mirror.png -cmd/lc_flipvertical.png cmd/lc_mirrorvert.png -cmd/lc_mirrorhorz.png cmd/lc_mirror.png -cmd/lc_objectmirrorhorizontal.png cmd/lc_mirror.png -cmd/lc_objectmirrorvertical.png cmd/lc_mirrorvert.png - -cmd/sc_fliphorizontal.png cmd/sc_mirror.png -cmd/sc_flipmenu.png cmd/sc_mirror.png -cmd/sc_flipvertical.png cmd/sc_mirrorvert.png -cmd/sc_mirrorhorz.png cmd/sc_mirror.png -cmd/sc_objectmirrorhorizontal.png cmd/sc_mirror.png -cmd/sc_objectmirrorvertical.png cmd/sc_mirrorvert.png - -# Connector -cmd/32/connectorcircles.png cmd/32/connector.png -cmd/32/connectorcurvecircles.png cmd/32/connectorcurve.png -cmd/32/connectorlinecircles.png cmd/32/connectorline.png -cmd/32/connectorlinescircles.png cmd/32/connector.png -cmd/32/connectortoolbox.png cmd/32/connector.png - -cmd/lc_connectorcircles.png cmd/lc_connector.png -cmd/lc_connectorcurvecircles.png cmd/lc_connectorcurve.png -cmd/lc_connectorlinecircles.png cmd/lc_connectorline.png -cmd/lc_connectorlinescircles.png cmd/lc_connector.png -cmd/lc_connectortoolbox.png cmd/lc_connector.png - -cmd/sc_connectorcircles.png cmd/sc_connector.png -cmd/sc_connectorcurvecircles.png cmd/sc_connectorcurve.png -cmd/sc_connectorlinecircles.png cmd/sc_connectorline.png -cmd/sc_connectorlinescircles.png cmd/sc_connector.png -cmd/sc_connectortoolbox.png cmd/sc_connector.png - -# Time -cmd/32/numberformattime.png cmd/32/timefield.png -cmd/32/rehearsetimings.png cmd/32/diatime.png -cmd/lc_numberformattime.png cmd/lc_timefield.png -cmd/lc_rehearsetimings.png cmd/lc_diatime.png -cmd/sc_numberformattime.png cmd/sc_timefield.png -cmd/sc_rehearsetimings.png cmd/sc_diatime.png - -# Arrange -cmd/32/arrangeframemenu.png cmd/32/bringtofront.png -cmd/32/arrangemenu.png cmd/32/bringtofront.png - -cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png -cmd/lc_arrangemenu.png cmd/lc_bringtofront.png - -cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png -cmd/sc_arrangemenu.png cmd/sc_bringtofront.png - -# Reload -cmd/32/draw.png cmd/32/reload.png -cmd/32/refresh.png cmd/32/reload.png -cmd/32/repaginate.png cmd/32/insertpagenumberfield.png -cmd/32/updateall.png cmd/32/reload.png -cmd/32/updateallindexes.png cmd/32/insertmultiindex.png -cmd/32/updatealllinks.png cmd/32/inserthyperlink.png -cmd/32/updatecharts.png cmd/32/drawchart.png -cmd/32/updatefields.png cmd/32/addfield.png -cmd/32/updatemenu.png cmd/32/reload.png - -cmd/lc_draw.png cmd/lc_reload.png -cmd/lc_refresh.png cmd/lc_reload.png -cmd/lc_repaginate.png cmd/lc_insertpagenumberfield.png -cmd/lc_updateall.png cmd/lc_reload.png -cmd/lc_updateallindexes.png cmd/lc_insertmultiindex.png -cmd/lc_updatealllinks.png cmd/lc_inserthyperlink.png -cmd/lc_updatecharts.png cmd/lc_drawchart.png -cmd/lc_updatefields.png cmd/lc_addfield.png -cmd/lc_updatemenu.png cmd/lc_reload.png - -cmd/sc_draw.png cmd/sc_reload.png -cmd/sc_refresh.png cmd/sc_reload.png -cmd/sc_repaginate.png cmd/sc_insertpagenumberfield.png -cmd/sc_updateall.png cmd/sc_reload.png -cmd/sc_updateallindexes.png cmd/sc_insertmultiindex.png -cmd/sc_updatealllinks.png cmd/sc_inserthyperlink.png -cmd/sc_updatecharts.png cmd/sc_drawchart.png -cmd/sc_updatefields.png cmd/sc_addfield.png -cmd/sc_updatemenu.png cmd/sc_reload.png - -# Select -cmd/32/drawselect.png cmd/32/selectobject.png -cmd/32/selectmode.png cmd/32/selectobject.png - -cmd/lc_drawselect.png cmd/lc_selectobject.png -cmd/lc_selectmode.png cmd/lc_selectobject.png - -cmd/sc_drawselect.png cmd/sc_selectobject.png -cmd/sc_selectmode.png cmd/sc_selectobject.png - -# Database -cmd/32/dbdtableedit.png cmd/32/dbtableedit.png - -cmd/lc_dbdtableedit.png cmd/lc_dbtableedit.png - -cmd/sc_dbdtableedit.png cmd/sc_dbtableedit.png - -# Browse -cmd/32/browsebackward cmd/32/prevrecord.png -cmd/32/browseforward.png cmd/32/nextrecord.png - -cmd/lc_browsebackward cmd/lc_prevrecord.png -cmd/lc_browseforward.png cmd/lc_nextrecord.png - -cmd/sc_browsebackward cmd/lc_prevrecord.png -cmd/sc_browseforward.png cmd/sc_nextrecord.png - -# Macro - -cmd/32/insertscript.png cmd/32/choosemacro.png -cmd/32/macrodialog.png cmd/32/scriptorganizer.png -cmd/32/macroorganizer.png cmd/32/scriptorganizer.png -cmd/32/macrosmenu.png cmd/32/choosemacro.png -cmd/32/toolsmacroedit.png cmd/32/basicideappear.png - -cmd/lc_insertscript.png cmd/lc_choosemacro.png -cmd/lc_macrodialog.png cmd/lc_scriptorganizer.png -cmd/lc_macroorganizer.png cmd/lc_scriptorganizer.png -cmd/lc_macrosmenu.png cmd/lc_choosemacro.png -cmd/lc_toolsmacroedit.png cmd/lc_basicideappear.png - -cmd/sc_insertscript.png cmd/sc_choosemacro.png -cmd/sc_macrodialog.png cmd/sc_scriptorganizer.png -cmd/sc_macroorganizer.png cmd/sc_scriptorganizer.png -cmd/sc_macrosmenu.png cmd/sc_choosemacro.png -cmd/sc_toolsmacroedit.png cmd/sc_basicideappear.png - -# Help -cmd/32/donation.png cmd/32/currencyfield.png -cmd/32/helperdialog.png cmd/32/helpindex.png -cmd/32/questionanswers.png cmd/32/browseview.png -cmd/32/sendfeedback.png cmd/32/insertenvelope.png - -cmd/lc_donation.png cmd/lc_currencyfield.png -cmd/lc_helperdialog.png cmd/lc_helpindex.png -cmd/lc_questionanswers.png cmd/lc_browseview.png -cmd/lc_sendfeedback.png cmd/lc_insertenvelope.png - -cmd/sc_about.png res/mainapp_16_8.png -cmd/sc_donation.png cmd/sc_currencyfield.png -cmd/sc_helperdialog.png cmd/sc_helpindex.png -cmd/sc_questionanswers.png cmd/sc_browseview.png -cmd/sc_sendfeedback.png cmd/sc_insertenvelope.png - -# Math -cmd/32/symbolcatalogue.png cmd/32/insertsymbol.png -cmd/lc_symbolcatalogue.png cmd/lc_insertsymbol.png -cmd/sc_symbolcatalogue.png cmd/sc_insertsymbol.png - -# Plugin -cmd/32/pluginsactive.png cmd/32/insertplugin.png -cmd/lc_pluginsactive.png cmd/lc_insertplugin.png -cmd/sc_pluginsactive.png cmd/sc_insertplugin.png - -# Table -cmd/32/setoptimalcolumnwidthdirect.png cmd/32/setoptimalcolumnwidth.png -cmd/32/starchartdialog.png cmd/32/drawchart.png -cmd/32/tableautofitmenu.png cmd/32/setoptimalrowheight.png -cmd/32/tabledeletemenu.png cmd/32/deletetable.png -cmd/32/tableinsertmenu.png cmd/32/insertrowsafter.png -cmd/32/tablemenu.png cmd/32/tabledialog.png -cmd/32/tableselectmenu.png cmd/32/selecttable.png - -cmd/lc_setoptimalcolumnwidthdirect.png cmd/lc_setoptimalcolumnwidth.png -cmd/lc_starchartdialog.png cmd/lc_drawchart.png -cmd/lc_tableautofitmenu.png cmd/lc_setoptimalrowheight.png -cmd/lc_tabledeletemenu.png cmd/lc_deletetable.png -cmd/lc_tableinsertmenu.png cmd/lc_insertrowsafter.png -cmd/lc_tablemenu.png cmd/lc_tabledialog.png -cmd/lc_tableselectmenu.png cmd/lc_selecttable.png - -cmd/sc_setoptimalcolumnwidthdirect.png cmd/sc_setoptimalcolumnwidth.png -cmd/sc_starchartdialog.png cmd/sc_drawchart.png -cmd/sc_tableautofitmenu.png cmd/sc_setoptimalrowheight.png -cmd/sc_tabledeletemenu.png cmd/sc_deletetable.png -cmd/sc_tableinsertmenu.png cmd/sc_insertrowsafter.png -cmd/sc_tablemenu.png cmd/sc_tabledialog.png -cmd/sc_tableselectmenu.png cmd/sc_selecttable.png - -# text background colour Impress/Draw -cmd/32/charbackcolor.png cmd/32/backcolor.png -cmd/32/setdefault.png cmd/32/resetattributes.png - -cmd/lc_charbackcolor.png cmd/lc_backcolor.png -cmd/lc_setdefault.png cmd/lc_resetattributes.png - -cmd/sc_charbackcolor.png cmd/sc_backcolor.png -cmd/sc_setdefault.png cmd/sc_resetattributes.png - -# Impress -sfx2/res/symphony/sidebar-transition-small.png cmd/sc_slidechangewindow.png -sfx2/res/symphony/sidebar-transition-large.png cmd/lc_slidechangewindow.png - -# Toggle graphics visibility in Writer -cmd/32/showgraphics.png cmd/32/graphic.png -cmd/lc_showgraphics.png cmd/lc_graphic.png -cmd/sc_showgraphics.png cmd/sc_graphic.png - -# navigator -cmd/32/dsbdocumentdatasource.png cmd/32/insertexternaldatasource.png -cmd/32/dsbinsertcolumns.png cmd/32/insertfieldctrl.png -cmd/32/inserttoolbox.png cmd/32/dataimport.png -cmd/32/savesimple.png cmd/32/save.png -cmd/32/sbabrwinsert.png cmd/32/insertfieldctrl.png -cmd/32/showbrowser.png cmd/32/controlproperties.png -cmd/32/showpropbrowser.png cmd/32/controlproperties.png - -cmd/lc_dsbdocumentdatasource.png cmd/lc_insertexternaldatasource.png -cmd/lc_dsbinsertcolumns.png cmd/lc_insertfieldctrl.png -cmd/lc_inserttoolbox.png cmd/lc_dataimport.png -cmd/lc_savesimple.png cmd/lc_save.png -cmd/lc_sbabrwinsert.png cmd/lc_insertfieldctrl.png -cmd/lc_showbrowser.png cmd/lc_controlproperties.png -cmd/lc_showpropbrowser.png cmd/lc_controlproperties.png - -cmd/sc_dsbdocumentdatasource.png cmd/sc_insertexternaldatasource.png -cmd/sc_dsbinsertcolumns.png cmd/sc_insertfieldctrl.png -cmd/sc_inserttoolbox.png cmd/sc_dataimport.png -cmd/sc_savesimple.png cmd/sc_save.png -cmd/sc_sbabrwinsert.png cmd/sc_insertfieldctrl.png -cmd/sc_showbrowser.png cmd/sc_controlproperties.png -cmd/sc_showpropbrowser.png cmd/sc_controlproperties.png - -# Slide command aliases -cmd/32/insertdatefieldfix.png cmd/32/datefield.png -cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png -cmd/32/insertpagenumber.png cmd/32/insertpagenumberfield.png -cmd/32/insertpagesfield.png cmd/32/insertpagecountfield.png -cmd/32/insertpagetitlefield.png cmd/32/inserttitlefield.png -cmd/32/insertslidefield.png cmd/32/insertslidenumberfield.png -cmd/32/insertslidenumber.png cmd/32/insertslidenumberfield.png -cmd/32/insertslidesfield.png cmd/32/insertslidecountfield.png -cmd/32/inserttimefieldfix.png cmd/32/timefield.png - -cmd/lc_insertdatefieldfix.png cmd/lc_datefield.png -cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png -cmd/lc_insertpagenumber.png cmd/lc_insertpagenumberfield.png -cmd/lc_insertpagesfield.png cmd/lc_insertpagecountfield.png -cmd/lc_insertpagetitlefield.png cmd/lc_inserttitlefield.png -cmd/lc_insertslidefield.png cmd/lc_insertslidenumberfield.png -cmd/lc_insertslidenumber.png cmd/lc_insertslidenumberfield.png -cmd/lc_insertslidesfield.png cmd/lc_insertslidecountfield.png -cmd/lc_inserttimefieldfix.png cmd/lc_timefield.png - -cmd/sc_insertdatefieldfix.png cmd/sc_datefield.png -cmd/sc_insertpagefield.png cmd/sc_insertpagenumberfield.png -cmd/sc_insertpagenumber.png cmd/sc_insertpagenumberfield.png -cmd/sc_insertpagesfield.png cmd/sc_insertpagecountfield.png -cmd/sc_insertpagetitlefield.png cmd/sc_inserttitlefield.png -cmd/sc_insertslidefield.png cmd/sc_insertslidenumberfield.png -cmd/sc_insertslidenumber.png cmd/sc_insertslidenumberfield.png -cmd/sc_insertslidesfield.png cmd/sc_insertslidecountfield.png -cmd/sc_inserttimefieldfix.png cmd/sc_timefield.png - -# database -database/linked_text_table.png dbaccess/res/linked_text_table.png - -# dbaccess -# ============================================== -dbaccess/res/all_left.png cmd/sc_firstrecord.png -dbaccess/res/all_right.png cmd/sc_lastrecord.png -dbaccess/res/db.png cmd/sc_changedatabasefield.png -dbaccess/res/exerror.png cmd/sc_cancel.png -dbaccess/res/exinfo.png cmd/sc_helpindex.png -dbaccess/res/form_16.png cmd/sc_dbviewforms.png -dbaccess/res/forms_32.png cmd/32/dbviewforms.png -dbaccess/res/jo01.png dbaccess/res/pkey.png -dbaccess/res/lc036.png cmd/lc_dbnewreport.png -dbaccess/res/lc037.png cmd/lc_dbreportdelete.png -dbaccess/res/lc038.png cmd/lc_dbreportedit.png -dbaccess/res/nu07.png cmd/sc_ok.png -dbaccess/res/nu08.png cmd/sc_cancel.png -dbaccess/res/one_left.png cmd/sc_prevrecord.png -dbaccess/res/one_right.png cmd/sc_nextrecord.png -dbaccess/res/queries_32.png cmd/32/dbviewqueries.png -dbaccess/res/report_16.png cmd/sc_dbviewreports.png -dbaccess/res/reports_32.png cmd/32/dbviewreports.png -dbaccess/res/sc036.png cmd/sc_dbnewreport.png -dbaccess/res/sc037.png cmd/sc_dbreportdelete.png -dbaccess/res/sc038.png cmd/sc_dbreportedit.png -dbaccess/res/sortdown.png cmd/sc_downsearch.png -dbaccess/res/sortup.png cmd/sc_upsearch.png -dbaccess/res/tables_32.png cmd/32/dbviewtables.png -res/queries_32.png cmd/32/dbviewqueries.png -res/reports_32.png cmd/32/dbviewreports.png -res/tables_32.png cmd/32/dbviewtables.png - -# desktop -# ============================================== -desktop/res/caution_16.png dbaccess/res/exwarning.png -desktop/res/extension_16.png cmd/sc_insertplugin.png -desktop/res/extension_32.png cmd/32/insertplugin.png -desktop/res/info_16.png cmd/sc_helpindex.png -desktop/res/lock_16.png cmd/sc_cellprotection.png - -# extensions -# ============================================== -extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/res/scanner/minus.png -extensions/res/buttonplus.png extensions/res/scanner/plus.png - -# formula -# ============================================== -formula/res/faperror.png cmd/sc_cancel.png -formula/res/fapok.png cmd/sc_ok.png -formula/res/fapopen.png cmd/sc_open.png -formula/res/fx.png cmd/sc_dbviewfunctions.png - -# fpicker -# ============================================== -fpicker/res/fp011.png res/lc06303.png -fpicker/res/fp014.png res/fp015.png -fpicker/res/fp016.png desktop/res/shared_16.png - -# framework -# ============================================== -framework/res/addtemplate_32.png cmd/32/newdoc.png -framework/res/arrow.png cmd/sc_nextrecord.png -framework/res/extension.png cmd/lc_insertplugin.png -framework/res/folder_32.png cmd/32/open.png -framework/res/info_26.png cmd/lc_helpindex.png -framework/res/remote-documents.png cmd/32/openremote.png -framework/res/templates_32.png cmd/32/templatemanager.png - -# reportdesign -# ============================================== -reportdesign/res/report_16.png cmd/sc_dbviewreports.png -reportdesign/res/sc20557.png cmd/sc_cancel.png -reportdesign/res/sc30768.png cmd/sc_upsearch.png -reportdesign/res/sc30769.png cmd/sc_downsearch.png -reportdesign/res/sc30770.png cmd/sc_cancel.png -reportdesign/res/sortdown.png cmd/sc_downsearch.png -reportdesign/res/sortup.png cmd/sc_upsearch.png -reportdesign/res/sx11047.png cmd/sc_basicshapes.diamond.png -reportdesign/res/sx12452.png cmd/sc_animationeffects.png -reportdesign/res/sx12453.png cmd/sc_animationeffects.png -reportdesign/res/sx12454.png cmd/sc_alignright.png -reportdesign/res/sx12464.png cmd/sc_dbviewreports.png -reportdesign/res/sx12594.png cmd/sc_dbviewfunctions.png - -# res -# ============================================== -res/adrbook.png cmd/sc_viewdatasourcebrowser.png -res/browse.png cmd/sc_browseview.png -res/dir-clos.png cmd/sc_closedocs.png -res/dir-open.png cmd/sc_open.png -res/extension_plus_26.png cmd/lc_insertplugin.png -res/extension_plus_32.png cmd/32/insertplugin.png -res/fileopen.png cmd/sc_open.png -res/foldercl.png cmd/sc_closedocs.png -res/grafikei.png cmd/sc_graphic.png -res/hlinettp.png cmd/32/inserthyperlink.png -res/hlmailtp.png cmd/32/insertenvelope.png -res/im30820.png cmd/sc_scriptorganizer.png -res/im30821.png cmd/sc_choosemacro.png -res/im30826.png res/odm_16_8.png -res/info.png cmd/lc_helpindex.png -res/info_16.png cmd/sc_helpindex.png -res/lc05504.png cmd/lc_print.png -res/lc05509.png cmd/lc_print.png -res/lc05539.png cmd/lc_designerdialog.png -res/lc05678.png cmd/lc_inserthyperlinkcontrol.png -res/lc05700.png cmd/lc_redo.png -res/lc05701.png cmd/lc_undo.png -res/lc05710.png cmd/lc_cut.png -res/lc05711.png cmd/lc_copy.png -res/lc05961.png cmd/lc_recsearch.png -res/lc06300.png cmd/lc_nextrecord.png -res/lc06301.png cmd/lc_prevrecord.png -res/lc10711.png cmd/lc_removefiltersort.png -res/lc10715.png cmd/lc_datafilterstandardfilter.png -res/lc10716.png cmd/lc_datafilterautofilter.png -res/lc10851.png cmd/lc_inserthyperlinkcontrol.png -res/lc10853.png cmd/lc_recsearch.png -res/library_16.png cmd/sc_viewdatasourcebrowser.png -res/lx03131.png res/lx03126.png -res/lx03137.png res/lx03125.png -res/lx03139.png cmd/lc_newhtmldoc.png -res/lx03139_32.png cmd/32/newhtmldoc.png -res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/otf_32_8.png -res/lx03150.png cmd/32/showsinglepage.png -res/lx03152.png res/lx03125.png -res/lx03153.png res/lx03125.png -res/lx03154.png res/lx03125.png -res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png -res/lx03158.png res/lx03125.png -res/lx03160.png res/odg_32_8.png -res/lx03164.png cmd/32/open.png -res/lx03165.png cmd/32/save.png -res/lx03167.png cmd/32/openremote.png -res/lx03188.png cmd/32/dbviewtables.png -res/lx03189.png cmd/32/open.png -res/lx03202.png cmd/32/dbviewqueries.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png -res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03226.png res/odm_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/otg_32_8.png -res/lx03239.png cmd/32/dbrelationdesign.png -res/lx03245.png res/odb_24_8.png -res/lx03245_32.png res/odb_32_8.png -res/lx03246.png res/odg_24_8.png -res/lx03246_32.png res/odg_32_8.png -res/lx03247.png res/odf_24_8.png -res/lx03247_32.png res/odf_32_8.png -res/lx03248.png res/odm_24_8.png -res/lx03248_32.png res/odm_32_8.png -res/lx03249.png res/odp_24_8.png -res/lx03249_32.png res/odp_32_8.png -res/lx03250.png res/ods_24_8.png -res/lx03250_32.png res/ods_32_8.png -res/lx03251.png res/odt_24_8.png -res/lx03251_32.png res/odt_32_8.png -res/lx03252.png res/otg_32_8.png -res/lx03253.png res/otp_32_8.png -res/lx03254.png res/ots_32_8.png -res/lx03255.png res/ott_24_8.png -res/lx03255_32.png res/ott_32_8.png -res/lx03256.png cmd/32/insertplugin.png -res/mainapp_16.png res/mainapp_16_8.png -res/mainapp_32.png res/mainapp_32_8.png -res/newdoc.png cmd/sc_closedocs.png -res/oleobj.png cmd/32/insertobject.png -res/plugin.png cmd/32/insertplugin.png -res/printeradmin_16_8.png res/printeradmin_16.png -res/printeradmin_32_8.png res/printeradmin_32.png -res/reload.png cmd/sc_reload.png -res/sc05500.png cmd/sc_adddirect.png -res/sc05501.png cmd/sc_open.png -res/sc05502.png cmd/sc_saveas.png -res/sc05504.png cmd/sc_print.png -res/sc05508.png cmd/sc_reload.png -res/sc05509.png cmd/sc_print.png -res/sc05554.png cmd/sc_backgroundcolor.png -res/sc05555.png cmd/sc_stylenewbyexample.png -res/sc05556.png cmd/sc_styleupdatebyexample.png -res/sc05678.png cmd/sc_inserthyperlink.png -res/sc05711.png cmd/sc_copy.png -res/sc05961.png cmd/sc_recsearch.png -res/sc06300.png cmd/sc_nextrecord.png -res/sc06301.png cmd/sc_prevrecord.png -res/sc10223.png cmd/sc_position.png -res/sc10224.png cmd/sc_size.png -res/sc10350.png cmd/sc_bmpmask.png -res/sc10711.png cmd/sc_removefiltersort.png -res/sc10712.png cmd/sc_sortascending.png -res/sc10713.png cmd/sc_sortdescending.png -res/sc10715.png cmd/sc_datafilterstandardfilter.png -res/sc10716.png cmd/sc_datafilterautofilter.png -res/sc10851.png cmd/sc_inserthyperlink.png -res/sc10853.png cmd/sc_recsearch.png -res/sc10854.png res/target.png -res/sc10863.png cmd/sc_grafluminance.png -res/sc10864.png cmd/sc_grafcontrast.png -res/sc10865.png cmd/sc_grafred.png -res/sc10866.png cmd/sc_grafgreen.png -res/sc10867.png cmd/sc_grafblue.png -res/sc10868.png cmd/sc_grafgamma.png -res/sc10869.png cmd/sc_graftransparence.png -res/sx03137.png res/sx03125.png -res/sx03139.png cmd/sc_newhtmldoc.png -res/sx03140.png res/sx03125.png -res/sx03141.png cmd/32/closedocs.png -res/sx03144.png res/odf_16_8.png -res/sx03145.png res/otf_16_8.png -res/sx03150.png cmd/sc_showsinglepage.png -res/sx03152.png res/sx03125.png -res/sx03153.png res/sx03125.png -res/sx03154.png res/sx03125.png -res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png -res/sx03158.png res/sx03125.png -res/sx03160.png res/odg_16_8.png -res/sx03164.png res/harddisk_16.png -res/sx03165.png cmd/sc_save.png -res/sx03167.png cmd/sc_openremote.png -res/sx03188.png cmd/sc_dbviewtables.png -res/sx03189.png cmd/sc_closedocs.png -res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png -res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03226.png res/odm_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/otg_16_8.png -res/sx03239.png cmd/sc_dbrelationdesign.png -res/sx03245.png res/odb_16_8.png -res/sx03246.png res/odg_16_8.png -res/sx03247.png res/odf_16_8.png -res/sx03248.png res/odm_16_8.png -res/sx03249.png res/odp_16_8.png -res/sx03250.png res/ods_16_8.png -res/sx03251.png res/odt_16_8.png -res/sx03252.png res/otg_16_8.png -res/sx03253.png res/otp_16_8.png -res/sx03254.png res/ots_16_8.png -res/sx03255.png res/ott_16_8.png -res/sx03256.png cmd/sc_insertplugin.png -res/sx10144.png cmd/sc_checkbox.png -res/sx10593.png cmd/sc_switchxformsdesignmode.png -res/sx10594.png cmd/sc_pushbutton.png -res/sx10595.png cmd/sc_radiobutton.png -res/sx10596.png cmd/sc_checkbox.png -res/sx10597.png cmd/sc_label.png -res/sx10598.png cmd/sc_groupbox.png -res/sx10599.png cmd/sc_edit.png -res/sx10600.png cmd/sc_listbox.png -res/sx10601.png cmd/sc_combobox.png -res/sx10603.png cmd/sc_grid.png -res/sx10604.png cmd/sc_imagebutton.png -res/sx10605.png cmd/sc_filecontrol.png -res/sx10607.png cmd/sc_navigationbar.png -res/sx10704.png cmd/sc_datefield.png -res/sx10705.png cmd/sc_timefield.png -res/sx10706.png cmd/sc_numberformatstandard.png -res/sx10707.png cmd/sc_currencyfield.png -res/sx10708.png cmd/sc_patternfield.png -res/sx10710.png cmd/sc_imagecontrol.png -res/sx10715.png cmd/sc_datafilterstandardfilter.png -res/sx10728.png cmd/sc_formattedfield.png -res/sx10757.png cmd/sc_timefield.png -res/sx10768.png cmd/sc_scrollbar.png -res/sx10769.png cmd/sc_spinbutton.png -res/sx18002.png res/plus.png -res/sx18003.png res/minus.png -res/sx18013.png res/dialogfolder_16.png - -# sc -# ============================================== -sc/res/date.png cmd/sc_datefield.png -sc/res/dropcopy.png cmd/sc_copy.png -sc/res/droplink.png cmd/sc_insertbookmark.png -sc/res/dropurl.png cmd/sc_inserthyperlinkcontrol.png -sc/res/file.png cmd/sc_open.png -sc/res/fx.png cmd/sc_dbviewfunctions.png -sc/res/lc26047.png cmd/lc_dbviewfunctions.png -sc/res/lc26048.png cmd/lc_autosum.png -sc/res/lc26050.png cmd/lc_cancel.png -sc/res/lc26051.png cmd/lc_ok.png -sc/res/na010.png sw/res/sc20234.png -sc/res/na011.png cmd/sc_ok.png -sc/res/na03.png cmd/sc_dataranges.png -sc/res/na05.png cmd/sc_upsearch.png -sc/res/na06.png cmd/sc_downsearch.png -sc/res/na07.png cmd/sc_thesaurus.png -sc/res/na09.png cmd/sc_animationeffects.png -sc/res/nc01.png cmd/sc_show.png -sc/res/nc02.png cmd/sc_addname.png -sc/res/nc03.png cmd/sc_changedatabasefield.png -sc/res/nc04.png cmd/sc_insertgraphic.png -sc/res/nc05.png cmd/sc_insertobject.png -sc/res/nc06.png cmd/sc_shownote.png -sc/res/nc07.png cmd/sc_insertbookmark.png -sc/res/nc08.png cmd/sc_insertdraw.png -sc/res/page.png cmd/sc_insertpagenumberfield.png -sc/res/pages.png cmd/sc_insertpagecountfield.png -sc/res/sc26047.png cmd/sc_dbviewfunctions.png -sc/res/sc26048.png cmd/sc_autosum.png -sc/res/sc26050.png cmd/sc_cancel.png -sc/res/sc26051.png cmd/sc_ok.png -sc/res/table.png cmd/sc_inserttable.png -sc/res/text.png cmd/sc_text.png -sc/res/time.png cmd/sc_timefield.png - -# sd -# ============================================== -sd/res/breakplayingblue_16.png cmd/sc_mediapause.png -sd/res/comments_indicator.png cmd/sc_shownote.png -sd/res/displaymode_handoutmaster.png cmd/32/handoutmode.png -sd/res/displaymode_notes.png cmd/32/notesmode.png -sd/res/displaymode_notesmaster.png cmd/32/notesmasterpage.png -sd/res/displaymode_outline.png cmd/32/outlinemode.png -sd/res/displaymode_slide.png cmd/32/normalmultipanegui.png -sd/res/displaymode_slidemaster.png cmd/32/slidemasterpage.png -sd/res/displaymode_slidesorter.png cmd/32/diamode.png -sd/res/graphic.png cmd/sc_graphic.png -sd/res/group.png cmd/sc_formatgroup.png -sd/res/nv010.png cmd/sc_inserthyperlink.png -sd/res/nv02.png cmd/sc_freeline_unfilled.png -sd/res/nv03.png cmd/sc_firstrecord.png -sd/res/nv04.png cmd/sc_prevrecord.png -sd/res/nv05.png cmd/sc_nextrecord.png -sd/res/nv06.png cmd/sc_lastrecord.png -sd/res/nv09.png cmd/sc_insertbookmark.png -sd/res/ole.png cmd/sc_insertobject.png -sd/res/page.png cmd/sc_adddirect.png -sd/res/pipette.png cmd/sc_bmpmask.png -sd/res/playblue_16.png cmd/sc_runbasic.png -sd/res/stopplayingblue_16.png cmd/sc_basicstop.png -sd/res/time_16.png cmd/sc_timefield.png -sd/res/waiticon.png cmd/sc_mediapause.png - -# sfx2 -# ============================================== -sfx2/res/actionaction012.png cmd/lc_recsearch.png -sfx2/res/actionaction013.png cmd/lc_optionstreedialog.png -sfx2/res/actiontemplates015.png cmd/lc_ok.png -sfx2/res/actiontemplates016.png cmd/lc_configuredialog.png -sfx2/res/actiontemplates018.png cmd/lc_delete.png -sfx2/res/actiontemplates019.png cmd/lc_editdoc.png -sfx2/res/actiontemplates020.png cmd/lc_exportto.png -sfx2/res/actionview010.png cmd/lc_dataimport.png -sfx2/res/actionview025.png cmd/lc_delete.png -sfx2/res/actionview026.png cmd/lc_openremote.png -sfx2/res/actionview028.png cmd/lc_save.png -sfx2/res/actionview030.png cmd/lc_open.png -sfx2/res/closedoc.png vcl/res/closedoc.png -sfx2/res/deleterow.png cmd/sc_cancel.png -sfx2/res/doccl.png cmd/sc_newdoc.png -sfx2/res/exec_action.png cmd/sc_optionstreedialog.png -sfx2/res/favourite.png cmd/sc_insertbookmark.png -sfx2/res/favourite_big.png cmd/lc_insertbookmark.png -sfx2/res/hlpdoc.png cmd/sc_documentation.png -sfx2/res/minus.png res/minus.png -sfx2/res/newex.png res/plus.png -sfx2/res/plus.png res/plus.png -sfx2/res/search.png cmd/sc_recsearch.png -sfx2/res/select.png cmd/sc_ok.png -sfx2/res/sortascending.png cmd/lc_sortascending.png -sfx2/res/styfam1.png cmd/sc_charfontname.png -sfx2/res/styfam2.png cmd/sc_controlcodes.png -sfx2/res/styfam3.png cmd/sc_linestyle.png -sfx2/res/styfam4.png cmd/sc_showsinglepage.png -sfx2/res/symphony/sidebar-3d-large.png cmd/lc_cube.png -sfx2/res/symphony/sidebar-3d-small.png cmd/sc_cube.png -sfx2/res/symphony/sidebar-animation-large.png cmd/lc_diaeffect.png -sfx2/res/symphony/sidebar-animation-small.png cmd/sc_diaeffect.png -sfx2/res/symphony/sidebar-colors-large.png cmd/lc_colorsettings.png -sfx2/res/symphony/sidebar-colors-small.png cmd/sc_colorsettings.png -sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png -sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png -sfx2/res/symphony/sidebar-functions-large.png cmd/lc_dbviewfunctions.png -sfx2/res/symphony/sidebar-functions-small.png cmd/sc_dbviewfunctions.png -sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png -sfx2/res/symphony/sidebar-gallery-small.png cmd/sc_gallery.png -sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png -sfx2/res/symphony/sidebar-navigator-small.png cmd/sc_navigator.png -sfx2/res/symphony/sidebar-property-large.png cmd/lc_configuredialog.png -sfx2/res/symphony/sidebar-property-small.png cmd/sc_configuredialog.png -sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png -sfx2/res/symphony/sidebar-style-small.png cmd/sc_designerdialog.png -sfx2/res/symphony/sidebar-template-large.png cmd/lc_slidemasterpage.png -sfx2/res/symphony/sidebar-template-small.png cmd/sc_slidemasterpage.png - -# starmath -# ============================================== -starmath/res/at21717.png cmd/lc_bold.png -starmath/res/at21718.png cmd/lc_italic.png -starmath/res/at21719.png cmd/lc_scaletext.png -starmath/res/at21720.png cmd/lc_charfontname.png -starmath/res/im21108.png cmd/lc_outlineformat.png - -# svtools -# ============================================== -# FolderTree expanded icon -svtools/res/back_large.png cmd/lc_prevrecord.png -svtools/res/back_small.png cmd/sc_prevrecord.png -svtools/res/bmpfont.png cmd/color.png -svtools/res/ed06.png dbaccess/res/pkey.png -svtools/res/folder.png cmd/sc_closedocs.png -svtools/res/folderop.png cmd/sc_open.png -svtools/res/info_large.png cmd/lc_alignleft.png -svtools/res/info_small.png cmd/sc_alignleft.png -svtools/res/my_docs.png cmd/lc_open.png -svtools/res/new_doc.png cmd/lc_newdoc.png -svtools/res/preview_large.png cmd/lc_printpreview.png -svtools/res/preview_small.png cmd/sc_printpreview.png -svtools/res/prnfont.png cmd/sc_charfontname.png -svtools/res/samples.png cmd/lc_choosedesign.png -svtools/res/scalfont.png cmd/sc_scaletext.png -svtools/res/template.png cmd/lc_newdoc.png - -# svx -# ============================================== -svx/res/AdjustColorBlue_16x16.png cmd/sc_grafblue.png -svx/res/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png -svx/res/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png -svx/res/AdjustColorRed_16x16.png cmd/sc_grafred.png -svx/res/ColorModeBlackWhite_16x16.png cmd/sc_outputqualityblackwhite.png -svx/res/ColorModeGrey_16x16.png cmd/sc_outputqualitygrayscale.png -svx/res/apply.png cmd/sc_ok.png -svx/res/caution_11x16.png dbaccess/res/exwarning.png -svx/res/cd01.png cmd/sc_ok.png -svx/res/cd015.png cmd/sc_toggleobjectbeziermode.png -svx/res/cd016.png cmd/sc_beziermove.png -svx/res/cd017.png cmd/sc_bezierinsert.png -svx/res/cd018.png cmd/sc_bezierdelete.png -svx/res/cd020.png cmd/sc_undo.png -svx/res/cd021.png cmd/sc_redo.png -svx/res/cd025.png cmd/sc_autopilotmenu.png -svx/res/cd026.png cmd/sc_bmpmask.png -svx/res/cd05.png cmd/sc_selectobject.png -svx/res/cd06.png cmd/sc_rect.png -svx/res/cd07.png cmd/sc_ellipse.png -svx/res/cd08.png cmd/sc_polygon.png -svx/res/color.png cmd/sc_bmpmask.png -svx/res/colordlg.png cmd/sc_colorsettings.png -svx/res/convrt3d.png cmd/sc_convertinto3d.png -svx/res/fill_color.png cmd/sc_backgroundcolor.png -svx/res/filter3d.png cmd/sc_datafilterstandardfilter.png -svx/res/fontworkaligncentered_16.png cmd/sc_alignhorizontalcenter.png -svx/res/fontworkaligncentered_26.png cmd/lc_alignhorizontalcenter.png -svx/res/fontworkalignjustified_16.png cmd/sc_alignblock.png -svx/res/fontworkalignjustified_26.png cmd/lc_alignblock.png -svx/res/fontworkalignleft_16.png cmd/sc_alignleft.png -svx/res/fontworkalignleft_26.png cmd/lc_alignleft.png -svx/res/fontworkalignright_16.png cmd/sc_alignright.png -svx/res/fontworkalignright_26.png cmd/lc_alignright.png -svx/res/fontworkalignstretch_16.png cmd/sc_text_marquee.png -svx/res/fontworkalignstretch_26.png cmd/lc_text_marquee.png -svx/res/fw07.png cmd/sc_alignleft.png -svx/res/fw08.png cmd/sc_alignhorizontalcenter.png -svx/res/fw09.png cmd/sc_alignright.png -svx/res/graphic.png cmd/sc_graphic.png -svx/res/id01.png cmd/sc_ok.png -svx/res/id018.png cmd/sc_choosemacro.png -svx/res/id019.png cmd/sc_modifyframe.png -svx/res/id02.png cmd/sc_open.png -svx/res/id03.png cmd/sc_save.png -svx/res/id030.png cmd/sc_toggleobjectbeziermode.png -svx/res/id031.png cmd/sc_beziermove.png -svx/res/id032.png cmd/sc_bezierinsert.png -svx/res/id033.png cmd/sc_bezierdelete.png -svx/res/id04.png cmd/sc_selectobject.png -svx/res/id040.png cmd/sc_undo.png -svx/res/id041.png cmd/sc_redo.png -svx/res/id05.png cmd/sc_rect.png -svx/res/id06.png cmd/sc_ellipse.png -svx/res/id07.png cmd/sc_polygon.png -svx/res/id08.png cmd/sc_freeline.png -svx/res/lngcheck.png cmd/sc_spelling.png -svx/res/luminanc.png cmd/sc_graphicfilterinvert.png -svx/res/notcertificate_16.png xmlsecurity/res/notcertificate_16.png -svx/res/nu01.png cmd/sc_ok.png -svx/res/nu02.png cmd/sc_cancel.png -svx/res/nu03.png cmd/sc_shownote.png -svx/res/nu08.png cmd/sc_cancel.png -svx/res/ole.png cmd/sc_insertobject.png -svx/res/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png -svx/res/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png -svx/res/parallel_16.png cmd/sc_extrusiondepthfloater.png -svx/res/persp3d.png cmd/sc_extrusiondirectionfloater.png -svx/res/perspective_16.png cmd/sc_extrusiondirectionfloater.png -svx/res/reload.png cmd/sc_reload.png -svx/res/reloads.png cmd/sc_reload.png -svx/res/rotate3d.png cmd/sc_convertinto3dlathe.png -svx/res/signet_11x16.png xmlsecurity/res/signet_11x16.png -svx/res/symphony/AdjustColorBlue_16x16.png cmd/sc_grafblue.png -svx/res/symphony/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png -svx/res/symphony/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png -svx/res/symphony/AdjustColorRed_16x16.png cmd/sc_grafred.png -svx/res/symphony/decrease_font.png cmd/sc_shrink.png -svx/res/symphony/enlarge_font.png cmd/sc_grow.png -svx/res/symphony/fill_color.png cmd/sc_backgroundcolor.png -svx/res/symphony/lpselected-spacing-1.png cmd/lc_spacepara1.png -svx/res/symphony/lpselected-spacing-1_15.png cmd/lc_spacepara1.png -svx/res/symphony/lpselected-spacing-1_5.png cmd/lc_spacepara15.png -svx/res/symphony/lpselected-spacing-2.png cmd/lc_spacepara2.png -svx/res/symphony/lpsmall-spacing-1.png cmd/lc_spacepara1.png -svx/res/symphony/para_numbullet01.png cmd/sc_defaultbullet.png -svx/res/symphony/para_numbullet02.png cmd/sc_defaultnumbering.png -svx/res/symphony/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png -svx/res/symphony/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png -svx/res/symphony/sch_backgroundcolor.png cmd/sc_backgroundcolor.png -svx/res/symphony/spacing3.png cmd/sc_spacepara1.png -svx/res/time.png cmd/sc_timefield.png -svx/res/wireframe_16.png cmd/sc_window3d.png - -# sw -# ============================================== -# res -sw/res/lc20556.png cmd/lc_dbviewfunctions.png -sw/res/lc20557.png cmd/lc_cancel.png -sw/res/lc20558.png cmd/lc_ok.png -sw/res/nc20001.png cmd/sc_inserttable.png -sw/res/nc20002.png cmd/sc_insertframe.png -sw/res/nc20003.png cmd/sc_insertgraphic.png -sw/res/nc20004.png cmd/sc_insertobject.png -sw/res/nc20005.png cmd/sc_insertbookmark.png -sw/res/nc20006.png cmd/sc_insertsection.png -sw/res/nc20007.png cmd/sc_inserthyperlink.png -sw/res/nc20008.png cmd/sc_insertreferencefield.png -sw/res/nc20009.png cmd/sc_insertindexesentry.png -sw/res/nc20010.png cmd/sc_shownote.png -sw/res/nc20011.png cmd/sc_insertdraw.png -sw/res/sc20171.png cmd/sc_downsearch.png -sw/res/sc20172.png cmd/sc_prevrecord.png -sw/res/sc20173.png cmd/sc_nextrecord.png -sw/res/sc20174.png cmd/sc_upsearch.png -sw/res/sc20175.png cmd/sc_nextrecord.png -sw/res/sc20177.png cmd/sc_insertfooter.png -sw/res/sc20179.png cmd/sc_insertheader.png -sw/res/sc20182.png cmd/sc_toggleanchortype.png -sw/res/sc20183.png cmd/sc_setreminder.png -sw/res/sc20186.png cmd/sc_prevrecord.png -sw/res/sc20233.png cmd/sc_ok.png -sw/res/sc20235.png cmd/sc_inserthyperlink.png -sw/res/sc20238.png cmd/sc_insertbookmark.png -sw/res/sc20239.png cmd/sc_copy.png -sw/res/sc20244.png sw/res/sc20234.png -sw/res/sc20247.png cmd/sc_dataimport.png -sw/res/sc20249.png cmd/sc_navigator.png -sw/res/sc20556.png cmd/sc_dbviewfunctions.png -sw/res/sc20557.png cmd/sc_cancel.png -sw/res/sc20558.png cmd/sc_ok.png -sw/res/sf02.png cmd/sc_designerdialog.png -sw/res/sf04.png sc/res/sf02.png -sw/res/sf06.png cmd/sc_autoformat.png -sw/res/sidebar/pageproppanel/last_custom_common.png svx/res/symphony/last_custom_common.png -sw/res/sidebar/pageproppanel/last_custom_common_grey.png svx/res/symphony/last_custom_common_grey.png -sw/res/sr20000.png cmd/sc_downsearch.png -sw/res/sr20001.png cmd/sc_upsearch.png -sw/res/sr20002.png cmd/sc_inserttable.png -sw/res/sr20003.png cmd/sc_insertframe.png -sw/res/sr20004.png cmd/sc_showsinglepage.png -sw/res/sr20005.png cmd/sc_insertdraw.png -sw/res/sr20006.png cmd/sc_choosecontrols.png -sw/res/sr20007.png cmd/sc_insertsection.png -sw/res/sr20008.png cmd/sc_insertbookmark.png -sw/res/sr20009.png cmd/sc_insertgraphic.png -sw/res/sr20010.png cmd/sc_insertobject.png -sw/res/sr20011.png sw/res/nc20000.png -sw/res/sr20013.png cmd/sc_insertfootnote.png -sw/res/sr20014.png cmd/sc_setreminder.png -sw/res/sr20015.png cmd/sc_shownote.png -sw/res/sr20016.png cmd/sc_recsearch.png -sw/res/sr20017.png cmd/sc_insertindexesentry.png -sw/res/sx01.png cmd/sc_changedatabasefield.png -sw/res/sx02.png cmd/sc_dbviewtables.png -sw/res/sx03.png cmd/sc_dbviewqueries.png - -# res -sw/res/page_break.png cmd/sc_insertpagebreak.png -sw/res/styfamnu.png sw/res/sf05.png - -# split cells duplicates -sw/res/zetlhor2.png svx/res/zetlhor2.png -sw/res/zetlver2.png svx/res/zetlver2.png - -# vcl -# ============================================== -vcl/res/index.png cmd/sc_insertmultiindex.png - -# wrap -# ============================================== -cmd/32/wrapmenu.png cmd/32/wrapon.png -cmd/lc_wrapmenu.png cmd/lc_wrapon.png -cmd/sc_wrapmenu.png cmd/sc_wrapon.png - -# xmlsecurity -# ============================================== -xmlsecurity/res/key_12.png dbaccess/res/pkey.png - -cmd/32/columnoperations.png cmd/32/entirecolumn.png -cmd/32/rowoperations.png cmd/32/entirerow.png - -cmd/lc_columnoperations.png cmd/lc_entirecolumn.png -cmd/lc_rowoperations.png cmd/lc_entirerow.png - -cmd/sc_columnoperations.png cmd/sc_entirecolumn.png -cmd/sc_rowoperations.png cmd/sc_entirerow.png - -# calc context menu sheettab -# ============================================== -cmd/32/renametable.png cmd/32/name.png -cmd/32/settabbgcolor.png cmd/32/backgroundcolor.png -cmd/32/sheetlefttoright.png cmd/32/paralefttoright.png -cmd/32/sheetrighttoleft.png cmd/32/pararighttoleft.png -cmd/32/tableevents.png cmd/32/animationeffects.png - -cmd/lc_renametable.png cmd/lc_name.png -cmd/lc_settabbgcolor.png cmd/lc_backgroundcolor.png -cmd/lc_sheetlefttoright.png cmd/lc_paralefttoright.png -cmd/lc_sheetrighttoleft.png cmd/lc_pararighttoleft.png -cmd/lc_tableevents.png cmd/lc_animationeffects.png - -cmd/sc_renametable.png cmd/sc_name.png -cmd/sc_settabbgcolor.png cmd/sc_backgroundcolor.png -cmd/sc_sheetlefttoright.png cmd/sc_paralefttoright.png -cmd/sc_sheetrighttoleft.png cmd/sc_pararighttoleft.png -cmd/sc_tableevents.png cmd/sc_animationeffects.png - -# calc cell style -# ============================================== -cmd/32/badcellstyle.png cmd/32/badcellstyles.png -cmd/32/defaultcellstyles.png cmd/32/defaultcharstyle.png -cmd/32/footnotecellstyles.png cmd/32/insertfootnote.png -cmd/32/goodcellstyle.png cmd/32/goodcellstyles.png -cmd/32/heading1cellstyles.png cmd/32/heading1parastyle.png -cmd/32/heading2cellstyles.png cmd/32/heading2parastyle.png -cmd/32/neutralcellstyle.png cmd/32/neutralcellstyles.png -cmd/32/notecellstyles.png cmd/32/shownote.png -cmd/lc_badcellstyle.png cmd/lc_badcellstyles.png -cmd/lc_defaultcellstyles.png cmd/lc_defaultcharstyle.png -cmd/lc_footnotecellstyles.png cmd/lc_insertfootnote.png -cmd/lc_goodcellstyle.png cmd/lc_goodcellstyles.png -cmd/lc_heading1cellstyles.png cmd/lc_heading1parastyle.png -cmd/lc_heading2cellstyles.png cmd/lc_heading2parastyle.png -cmd/lc_neutralcellstyle.png cmd/lc_neutralcellstyles.png -cmd/lc_notecellstyles.png cmd/lc_shownote.png -cmd/sc_badcellstyle.png cmd/sc_badcellstyles.png -cmd/sc_defaultcellstyles.png cmd/sc_defaultcharstyle.png -cmd/sc_footnotecellstyles.png cmd/sc_insertfootnote.png -cmd/sc_goodcellstyle.png cmd/sc_goodcellstyles.png -cmd/sc_heading1cellstyles.png cmd/sc_heading1parastyle.png -cmd/sc_heading2cellstyles.png cmd/sc_heading2parastyle.png -cmd/sc_neutralcellstyle.png cmd/sc_neutralcellstyles.png -cmd/sc_notecellstyles.png cmd/sc_shownote.png - -# calc context menu rowheader -# ============================================== -cmd/32/columnwidth.png cmd/32/setminimalcolumnwidth.png -cmd/32/rowheight.png cmd/32/setminimalrowheight.png - -cmd/lc_columnwidth.png cmd/lc_setminimalcolumnwidth.png -cmd/lc_rowheight.png cmd/lc_setminimalrowheight.png - -cmd/sc_columnwidth.png cmd/sc_setminimalcolumnwidth.png -cmd/sc_rowheight.png cmd/sc_setminimalrowheight.png - -# calc toolbar previewbar -# ============================================== -cmd/32/exportasgraphic.png cmd/32/insertgraphic.png -cmd/32/margins.png cmd/32/pagemargin.png -cmd/32/namegroup.png cmd/32/renameobject.png - -cmd/lc_exportasgraphic.png cmd/lc_insertgraphic.png -cmd/lc_margins.png cmd/lc_pagemargin.png -cmd/lc_namegroup.png cmd/lc_renameobject.png - -cmd/sc_exportasgraphic.png cmd/sc_insertgraphic.png -cmd/sc_margins.png cmd/sc_pagemargin.png -cmd/sc_namegroup.png cmd/sc_renameobject.png - -# calc toolbar draw -# =============================================== -cmd/32/convertmenu.png cmd/32/bezierconvert.png -cmd/32/mirrormenu.png cmd/32/rotateleft.png -cmd/32/openhyperlinkoncursor.png cmd/32/inserthyperlink.png -cmd/32/rotateflipmenu.png cmd/32/rotateleft.png - -cmd/lc_convertmenu.png cmd/lc_bezierconvert.png -cmd/lc_mirrormenu.png cmd/lc_rotateleft.png -cmd/lc_openhyperlinkoncursor.png cmd/lc_inserthyperlink.png -cmd/lc_rotateflipmenu.png cmd/lc_rotateleft.png - -cmd/sc_convertmenu.png cmd/sc_bezierconvert.png -cmd/sc_mirrormenu.png cmd/sc_rotateleft.png -cmd/sc_openhyperlinkoncursor.png cmd/sc_inserthyperlink.png -cmd/sc_rotateflipmenu.png cmd/sc_rotateleft.png - -# writer -# =============================================== -cmd/32/addtextbox.png cmd/32/insertfixedtext.png -cmd/32/openxmlfiltersettings.png cmd/32/managexmlsource.png - -cmd/lc_addtextbox.png cmd/lc_insertfixedtext.png -cmd/lc_openxmlfiltersettings.png cmd/lc_managexmlsource.png - -cmd/sc_addtextbox.png cmd/sc_insertfixedtext.png -cmd/sc_openxmlfiltersettings.png cmd/sc_managexmlsource.png - -# Writer menu: MSO compatible Form menu -cmd/32/textformfield.png cmd/32/edit.png -cmd/32/checkboxformfield.png cmd/32/checkbox.png -cmd/32/dropdownformfield.png cmd/32/combobox.png -cmd/32/datepickerformfield.png cmd/32/datefield.png - -cmd/lc_textformfield.png cmd/lc_edit.png -cmd/lc_checkboxformfield.png cmd/lc_checkbox.png -cmd/lc_dropdownformfield.png cmd/lc_combobox.png -cmd/lc_datepickerformfield.png cmd/lc_datefield.png - -cmd/sc_textformfield.png cmd/sc_edit.png -cmd/sc_checkboxformfield.png cmd/sc_checkbox.png -cmd/sc_dropdownformfield.png cmd/sc_combobox.png -cmd/sc_datepickerformfield.png cmd/sc_datefield.png - -# menubar icons -cmd/32/com.sun.star.deployment.ui.packagemanagerdialog.png cmd/32/insertplugin.png -cmd/32/focustofindbar.png cmd/32/recsearch.png -cmd/32/formatobjectmenu.png cmd/32/text.png -cmd/32/macroorganizer%3ftabid%3ashort=1.png cmd/32/open.png -cmd/32/textattributes.png cmd/32/fontdialog.png - -cmd/lc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/lc_insertplugin.png -cmd/lc_focustofindbar.png cmd/lc_recsearch.png -cmd/lc_formatobjectmenu.png cmd/lc_text.png -cmd/lc_macroorganizer%3ftabid%3ashort=1.png cmd/lc_open.png -cmd/lc_textattributes.png cmd/lc_fontdialog.png - -cmd/sc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/sc_insertplugin.png -cmd/sc_focustofindbar.png cmd/sc_recsearch.png -cmd/sc_formatobjectmenu.png cmd/sc_text.png -cmd/sc_macroorganizer%3ftabid%3ashort=1.png cmd/sc_open.png -cmd/sc_textattributes.png cmd/sc_fontdialog.png - -# Edit menu -cmd/32/editpastespecialmenu.png cmd/32/pastespecial.png -cmd/32/insertcontents.png cmd/32/pastespecial.png -cmd/32/pastespecialmenu.png cmd/32/pastespecial.png - -cmd/lc_editpastespecialmenu.png cmd/lc_pastespecial.png -cmd/lc_insertcontents.png cmd/lc_pastespecial.png -cmd/lc_pastespecialmenu.png cmd/lc_pastespecial.png - -cmd/sc_editpastespecialmenu.png cmd/sc_pastespecial.png -cmd/sc_insertcontents.png cmd/sc_pastespecial.png -cmd/sc_pastespecialmenu.png cmd/sc_pastespecial.png - -# LibreLogo -cmd/32/librelogo-run.png cmd/32/runbasic.png -cmd/32/librelogo-stop.png cmd/32/basicstop.png -cmd/32/librelogo-translate.png cmd/32/editglossary.png - -cmd/lc_librelogo-run.png cmd/lc_runbasic.png -cmd/lc_librelogo-stop.png cmd/lc_basicstop.png -cmd/lc_librelogo-translate.png cmd/lc_editglossary.png - -cmd/sc_librelogo-run.png cmd/sc_runbasic.png -cmd/sc_librelogo-stop.png cmd/sc_basicstop.png -cmd/sc_librelogo-translate.png cmd/sc_editglossary.png - -cmd/sc_stars-full.png sc/res/icon-set-stars-full.png -cmd/sc_stars-empty.png sc/res/icon-set-stars-empty.png - -# Draw/Redaction Toolbar -cmd/32/redactionpreviewexport.png cmd/32/exportdirecttopdf.png -cmd/lc_redactionpreviewexport.png cmd/lc_exportdirecttopdf.png -cmd/sc_redactionpreviewexport.png cmd/sc_exportdirecttopdf.png +# avmedia +# ============================================== +avmedia/res/av02048.png cmd/sc_open.png +avmedia/res/av02049.png cmd/sc_runbasic.png +avmedia/res/av02050.png cmd/sc_mediapause.png +avmedia/res/av02051.png cmd/sc_basicstop.png +avmedia/res/av02052.png cmd/sc_mediarepeat.png +avmedia/res/av02053.png cmd/sc_ok.png +avmedia/res/av02054.png cmd/sc_mediamute.png +avmedia/res/avl02048.png cmd/lc_open.png +avmedia/res/avl02049.png cmd/lc_runbasic.png +avmedia/res/avl02050.png cmd/lc_mediapause.png +avmedia/res/avl02051.png cmd/lc_basicstop.png +avmedia/res/avl02052.png cmd/lc_mediarepeat.png +avmedia/res/avl02053.png cmd/lc_ok.png +avmedia/res/avl02054.png cmd/lc_mediamute.png + +# arrangement +# ============================================== +cmd/32/objectbackone.png cmd/32/backward.png +cmd/32/objectforwardone.png cmd/32/forward.png + +cmd/lc_objectbackone.png cmd/lc_backward.png +cmd/lc_objectforwardone.png cmd/lc_forward.png + +cmd/sc_objectbackone.png cmd/sc_backward.png +cmd/sc_objectforwardone.png cmd/sc_forward.png + +# chart2 +# ============================================== +chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png +chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png +chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png +chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png +chart2/res/selectrange.png formula/res/refinp1.png + +cmd/32/charttitlemenu.png cmd/32/toggletitle.png +cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png +cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png +cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png +cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenulegend.png cmd/32/legend.png + +cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png +cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png +cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png +cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png +cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenulegend.png cmd/lc_legend.png + +cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png +cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png +cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png +cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png +cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenulegend.png cmd/sc_legend.png + +# cmd +# ============================================== + +# Add +cmd/32/adddatefield.png cmd/32/datefield.png +cmd/32/addons.png cmd/32/insertplugin.png + +cmd/lc_adddatefield.png cmd/lc_datefield.png +cmd/lc_addons.png cmd/lc_insertplugin.png + +cmd/sc_adddatefield.png cmd/sc_datefield.png +cmd/sc_addons.png cmd/sc_insertplugin.png + +# tooltips +cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png +cmd/32/showinlinetooltips.png cmd/32/shownote.png + +cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png +cmd/lc_showinlinetooltips.png cmd/lc_shownote.png + +cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png +cmd/sc_showinlinetooltips.png cmd/sc_shownote.png + +# Insert +cmd/32/charactermenu.png cmd/32/fontdialog.png +cmd/32/fieldmenu.png cmd/32/addfield.png +cmd/32/graphicmenu.png cmd/32/avmediaplayer.png +cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png +cmd/32/insertavmedia.png cmd/32/avmediaplayer.png +cmd/32/insertctrl.png cmd/32/inserttable.png +cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png +cmd/32/insertdatefield.png cmd/32/datefield.png +cmd/32/insertedit.png cmd/32/edit.png +cmd/32/insertfield.png cmd/32/addfield.png +cmd/32/insertfilecontrol.png cmd/32/filecontrol.png +cmd/32/insertfilefield.png cmd/32/filefield.png +cmd/32/insertformattedfield.png cmd/32/formattedfield.png +cmd/32/insertformcheck.png cmd/32/checkbox.png +cmd/32/insertformcombo.png cmd/32/combobox.png +cmd/32/insertformlist.png cmd/32/listbox.png +cmd/32/insertformmenu.png cmd/32/choosecontrols.png +cmd/32/insertformradio.png cmd/32/radiobutton.png +cmd/32/insertformspin.png cmd/32/spinbutton.png +cmd/32/insertformula.png cmd/32/dbviewfunctions.png +cmd/32/insertformvscroll.png cmd/32/scrollbar.png +cmd/32/insertframeinteract.png cmd/32/insertframe.png +cmd/32/insertframeinteractnocolumns.png cmd/32/insertframe.png +cmd/32/insertimagecontrol.png cmd/32/insertgraphic.png +cmd/32/insertlistbox.png cmd/32/listbox.png +cmd/32/insertnumericfield.png cmd/32/numericfield.png +cmd/32/insertobjectchart.png cmd/32/drawchart.png +cmd/32/insertobjectdialog.png cmd/32/insertobject.png +cmd/32/insertobjectstarmath.png cmd/32/insertmath.png +cmd/32/insertpagefooter.png cmd/32/insertfooter.png +cmd/32/insertpageheader.png cmd/32/insertheader.png +cmd/32/insertpatternfield.png cmd/32/patternfield.png +cmd/32/insertpushbutton.png cmd/32/pushbutton.png +cmd/32/inserttextframe.png cmd/32/insertframe.png +cmd/32/inserttimefield.png cmd/32/timefield.png +cmd/32/insobjctrl.png cmd/32/newdoc.png +cmd/32/numberingmenu.png cmd/32/bulletsandnumberingdialog.png +cmd/32/paragraphmenu.png cmd/32/paragraphdialog.png +cmd/32/shapesmenu.png cmd/32/insertdraw.png +cmd/32/tracechangemode.png cmd/32/trackchanges.png +cmd/32/viewtrackchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_charactermenu.png cmd/lc_fontdialog.png +cmd/lc_fieldmenu.png cmd/lc_addfield.png +cmd/lc_graphicmenu.png cmd/lc_avmediaplayer.png +cmd/lc_insertauthorfield.png cmd/lc_dbviewaliases.png +cmd/lc_insertavmedia.png cmd/lc_avmediaplayer.png +cmd/lc_insertctrl.png cmd/lc_inserttable.png +cmd/lc_insertcurrencyfield.png cmd/lc_currencyfield.png +cmd/lc_insertdatefield.png cmd/lc_datefield.png +cmd/lc_insertedit.png cmd/lc_edit.png +cmd/lc_insertfield.png cmd/lc_addfield.png +cmd/lc_insertfilecontrol.png cmd/lc_filecontrol.png +cmd/lc_insertfilefield.png cmd/lc_filefield.png +cmd/lc_insertformattedfield.png cmd/lc_formattedfield.png +cmd/lc_insertformcheck.png cmd/lc_checkbox.png +cmd/lc_insertformcombo.png cmd/lc_combobox.png +cmd/lc_insertformlist.png cmd/lc_listbox.png +cmd/lc_insertformmenu.png cmd/lc_choosecontrols.png +cmd/lc_insertformradio.png cmd/lc_radiobutton.png +cmd/lc_insertformspin.png cmd/lc_spinbutton.png +cmd/lc_insertformula.png cmd/lc_dbviewfunctions.png +cmd/lc_insertformvscroll.png cmd/lc_scrollbar.png +cmd/lc_insertframeinteract.png cmd/lc_insertframe.png +cmd/lc_insertframeinteractnocolumns.png cmd/lc_insertframe.png +cmd/lc_insertimagecontrol.png cmd/lc_insertgraphic.png +cmd/lc_insertlistbox.png cmd/lc_listbox.png +cmd/lc_insertnumericfield.png cmd/lc_numericfield.png +cmd/lc_insertobjectchart.png cmd/lc_drawchart.png +cmd/lc_insertobjectdialog.png cmd/lc_insertobject.png +cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png +cmd/lc_insertpagefooter.png cmd/lc_insertfooter.png +cmd/lc_insertpageheader.png cmd/lc_insertheader.png +cmd/lc_insertpatternfield.png cmd/lc_patternfield.png +cmd/lc_insertpushbutton.png cmd/lc_pushbutton.png +cmd/lc_inserttextframe.png cmd/lc_insertframe.png +cmd/lc_inserttimefield.png cmd/lc_timefield.png +cmd/lc_insobjctrl.png cmd/lc_newdoc.png +cmd/lc_numberingmenu.png cmd/lc_bulletsandnumberingdialog.png +cmd/lc_paragraphmenu.png cmd/lc_paragraphdialog.png +cmd/lc_shapesmenu.png cmd/lc_insertdraw.png +cmd/lc_tracechangemode.png cmd/lc_trackchanges.png +cmd/lc_viewtrackchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_charactermenu.png cmd/sc_fontdialog.png +cmd/sc_fieldmenu.png cmd/sc_addfield.png +cmd/sc_graphicmenu.png cmd/sc_avmediaplayer.png +cmd/sc_insertauthorfield.png cmd/sc_dbviewaliases.png +cmd/sc_insertavmedia.png cmd/sc_avmediaplayer.png +cmd/sc_insertctrl.png cmd/sc_inserttable.png +cmd/sc_insertcurrencyfield.png cmd/sc_currencyfield.png +cmd/sc_insertdatefield.png cmd/sc_datefield.png +cmd/sc_insertedit.png cmd/sc_edit.png +cmd/sc_insertfield.png cmd/sc_addfield.png +cmd/sc_insertfilecontrol.png cmd/sc_filecontrol.png +cmd/sc_insertfilefield.png cmd/sc_filefield.png +cmd/sc_insertformattedfield.png cmd/sc_formattedfield.png +cmd/sc_insertformcheck.png cmd/sc_checkbox.png +cmd/sc_insertformcombo.png cmd/sc_combobox.png +cmd/sc_insertformlist.png cmd/sc_listbox.png +cmd/sc_insertformmenu.png cmd/sc_choosecontrols.png +cmd/sc_insertformradio.png cmd/sc_radiobutton.png +cmd/sc_insertformspin.png cmd/sc_spinbutton.png +cmd/sc_insertformula.png cmd/sc_dbviewfunctions.png +cmd/sc_insertformvscroll.png cmd/sc_scrollbar.png +cmd/sc_insertframeinteract.png cmd/sc_insertframe.png +cmd/sc_insertframeinteractnocolumns.png cmd/sc_insertframe.png +cmd/sc_insertimagecontrol.png cmd/sc_insertgraphic.png +cmd/sc_insertlistbox.png cmd/sc_listbox.png +cmd/sc_insertnumericfield.png cmd/sc_numericfield.png +cmd/sc_insertobjectchart.png cmd/sc_drawchart.png +cmd/sc_insertobjectdialog.png cmd/sc_insertobject.png +cmd/sc_insertobjectstarmath.png cmd/sc_insertmath.png +cmd/sc_insertpagefooter.png cmd/sc_insertfooter.png +cmd/sc_insertpageheader.png cmd/sc_insertheader.png +cmd/sc_insertpatternfield.png cmd/sc_patternfield.png +cmd/sc_insertpushbutton.png cmd/sc_pushbutton.png +cmd/sc_inserttextframe.png cmd/sc_insertframe.png +cmd/sc_inserttimefield.png cmd/sc_timefield.png +cmd/sc_insobjctrl.png cmd/sc_newdoc.png +cmd/sc_numberingmenu.png cmd/sc_bulletsandnumberingdialog.png +cmd/sc_paragraphmenu.png cmd/sc_paragraphdialog.png +cmd/sc_shapesmenu.png cmd/sc_insertdraw.png +cmd/sc_tracechangemode.png cmd/sc_trackchanges.png +cmd/sc_viewtrackchanges.png cmd/sc_showtrackedchanges.png + + +#View Menu +cmd/32/changesmenu.png cmd/32/trackchanges.png + +cmd/sc_changesmenu.png cmd/sc_trackchanges.png + +cmd/lc_changesmenu.png cmd/lc_trackchanges.png + +# Zoom +cmd/32/adjust.png cmd/32/zoomoptimal.png +cmd/32/previewzoom.png cmd/32/zoom.png +cmd/32/view100.png cmd/32/zoom100percent.png +cmd/32/zoomminus.png cmd/32/zoomout.png +cmd/32/zoomplus.png cmd/32/zoomin.png +cmd/32/zoomtoolbox.png cmd/32/zoom.png + +cmd/lc_adjust.png cmd/lc_zoomoptimal.png +cmd/lc_previewzoom.png cmd/lc_zoom.png +cmd/lc_view100.png cmd/lc_zoom100percent.png +cmd/lc_zoomminus.png cmd/lc_zoomout.png +cmd/lc_zoomplus.png cmd/lc_zoomin.png +cmd/lc_zoomtoolbox.png cmd/lc_zoom.png + +cmd/sc_adjust.png cmd/sc_zoomoptimal.png +cmd/sc_previewzoom.png cmd/sc_zoom.png +cmd/sc_view100.png cmd/sc_zoom100percent.png +cmd/sc_zoomminus.png cmd/sc_zoomout.png +cmd/sc_zoomplus.png cmd/sc_zoomin.png +cmd/sc_zoomtoolbox.png cmd/sc_zoom.png + +# Save +cmd/32/savegraphic.png cmd/32/save.png + +cmd/lc_savegraphic.png cmd/lc_save.png + +cmd/sc_savegraphic.png cmd/sc_save.png + +# Text +cmd/32/drawtext.png cmd/32/text.png +cmd/32/fontheight.png cmd/32/scaletext.png +cmd/32/fontworkcharacterspacingfloater.png cmd/32/spacing.png +cmd/32/textfittosizetool.png cmd/32/text_marquee.png +cmd/32/texttoolbox.png cmd/32/text.png + +cmd/lc_drawtext.png cmd/lc_text.png +cmd/lc_fontheight.png cmd/lc_scaletext.png +cmd/lc_fontworkcharacterspacingfloater.png cmd/lc_spacing.png +cmd/lc_textfittosizetool.png cmd/lc_text_marquee.png +cmd/lc_texttoolbox.png cmd/lc_text.png + +cmd/sc_drawtext.png cmd/sc_text.png +cmd/sc_fontheight.png cmd/sc_scaletext.png +cmd/sc_fontworkcharacterspacingfloater.png cmd/sc_spacing.png +cmd/sc_textfittosizetool.png cmd/sc_text_marquee.png +cmd/sc_texttoolbox.png cmd/sc_text.png + +# cmd 3d +cmd/32/convertinto3dlathefast.png cmd/32/convertinto3dlathe.png +cmd/32/extrusiontoggle.png cmd/32/convertinto3d.png +cmd/32/objects3dtoolbox.png cmd/32/cube.png +cmd/32/view3d.png cmd/32/cube.png + +cmd/lc_convertinto3dlathefast.png cmd/lc_convertinto3dlathe.png +cmd/lc_extrusiontoggle.png cmd/lc_convertinto3d.png +cmd/lc_objects3dtoolbox.png cmd/lc_cube.png +cmd/lc_view3d.png cmd/lc_cube.png + +cmd/sc_convertinto3dlathefast.png cmd/sc_convertinto3dlathe.png +cmd/sc_extrusiontoggle.png cmd/sc_convertinto3d.png +cmd/sc_objects3dtoolbox.png cmd/sc_cube.png +cmd/sc_view3d.png cmd/sc_cube.png + +# Control +cmd/32/config.png cmd/32/choosecontrols.png + +cmd/lc_config.png cmd/lc_choosecontrols.png + +cmd/sc_config.png cmd/sc_choosecontrols.png + +# Formatmenu +cmd/32/anchormenu.png cmd/32/toggleanchortype.png +cmd/32/conditionalformatmenu.png cmd/32/colorscaleformatdialog.png +cmd/32/formatbulletsmenu.png cmd/32/defaultbullet.png +cmd/32/formatframemenu.png cmd/32/framedialog.png +cmd/32/formatimagemenu.png cmd/32/graphic.png +cmd/32/formatspacingmenu.png cmd/32/spacepara15.png +cmd/32/formattextmenu.png cmd/32/charfontname.png +cmd/32/spacepara115.png cmd/32/spacepara1.png +cmd/32/textalign.png cmd/32/alignblock.png + +cmd/lc_anchormenu.png cmd/lc_toggleanchortype.png +cmd/lc_conditionalformatmenu.png cmd/lc_colorscaleformatdialog.png +cmd/lc_formatbulletsmenu.png cmd/lc_defaultbullet.png +cmd/lc_formatframemenu.png cmd/lc_framedialog.png +cmd/lc_formatimagemenu.png cmd/lc_graphicdialog.png +cmd/lc_formatspacingmenu.png cmd/lc_spacepara15.png +cmd/lc_formattextmenu.png cmd/lc_charfontname.png +cmd/lc_spacepara115.png cmd/lc_spacepara1.png +cmd/lc_textalign.png cmd/lc_alignblock.png + +cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png +cmd/sc_conditionalformatmenu.png cmd/sc_colorscaleformatdialog.png +cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png +cmd/sc_formatframemenu.png cmd/sc_framedialog.png +cmd/sc_formatimagemenu.png cmd/sc_graphicdialog.png +cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png +cmd/sc_formattextmenu.png cmd/sc_charfontname.png +cmd/sc_spacepara115.png cmd/sc_spacepara1.png +cmd/sc_textalign.png cmd/sc_alignblock.png + +# Url +cmd/32/openurl.png cmd/32/browseview.png +cmd/32/webhtml.png cmd/32/browseview.png + +cmd/lc_openurl.png cmd/lc_browseview.png +cmd/lc_webhtml.png cmd/lc_browseview.png + +cmd/sc_openurl.png cmd/sc_browseview.png +cmd/sc_webhtml.png cmd/sc_browseview.png + +# Form +cmd/32/hscroll.png cmd/32/hscrollbar.png +cmd/32/insertformhscroll.png cmd/32/hscrollbar.png +cmd/32/scrollbarmenu.png cmd/32/scrollbar.png +cmd/32/vscroll.png cmd/32/scrollbar.png +cmd/32/vscrollbar.png cmd/32/scrollbar.png + +cmd/lc_hscroll.png cmd/lc_hscrollbar.png +cmd/lc_insertformhscroll.png cmd/lc_hscrollbar.png +cmd/lc_scrollbarmenu.png cmd/lc_scrollbar.png +cmd/lc_vscroll.png cmd/lc_scrollbar.png +cmd/lc_vscrollbar.png cmd/lc_scrollbar.png + +cmd/sc_hscroll.png cmd/sc_hscrollbar.png +cmd/sc_insertformhscroll.png cmd/sc_hscrollbar.png +cmd/sc_scrollbarmenu.png cmd/sc_scrollbar.png +cmd/sc_vscroll.png cmd/sc_scrollbar.png +cmd/sc_vscrollbar.png cmd/sc_scrollbar.png + +# Tools +cmd/32/languagemenu.png cmd/32/managelanguage.png +cmd/lc_languagemenu.png cmd/lc_managelanguage.png +cmd/sc_languagemenu.png cmd/sc_managelanguage.png + + +# Annotations +cmd/32/acceptchanges.png cmd/32/trackchangesbar.png +cmd/32/commentchange.png cmd/32/commentchangetracking.png +cmd/32/deleteallnotes.png cmd/32/deleteallannotation.png +cmd/32/deletecomment.png cmd/32/deleteannotation.png +cmd/32/deletenote.png cmd/32/deleteannotation.png +cmd/32/insertannotation.png cmd/32/shownote.png +cmd/32/notevisible.png cmd/32/shownote.png +cmd/32/showallnotes.png cmd/32/showannotations.png +cmd/32/showchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_acceptchanges.png cmd/lc_trackchangesbar.png +cmd/lc_commentchange.png cmd/lc_commentchangetracking.png +cmd/lc_deleteallnotes.png cmd/lc_deleteallannotation.png +cmd/lc_deletecomment.png cmd/lc_deleteannotation.png +cmd/lc_deletenote.png cmd/lc_deleteannotation.png +cmd/lc_insertannotation.png cmd/lc_shownote.png +cmd/lc_notevisible.png cmd/lc_shownote.png +cmd/lc_showallnotes.png cmd/lc_showannotations.png +cmd/lc_showchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_acceptchanges.png cmd/sc_trackchangesbar.png +cmd/sc_commentchange.png cmd/sc_commentchangetracking.png +cmd/sc_deleteallnotes.png cmd/sc_deleteallannotation.png +cmd/sc_deletecomment.png cmd/sc_deleteannotation.png +cmd/sc_deletenote.png cmd/sc_deleteannotation.png +cmd/sc_formatallnotes.png cmd/sc_editannotation.png +cmd/sc_insertannotation.png cmd/sc_shownote.png +cmd/sc_notevisible.png cmd/sc_shownote.png +cmd/sc_showallnotes.png cmd/sc_showannotations.png +cmd/sc_showchanges.png cmd/sc_showtrackedchanges.png + +# Locale language support +cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ar/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ar/recundo.png cmd/32/redo.png +cmd/32/ar/redo.png cmd/32/undo.png +cmd/32/ar/undo.png cmd/32/redo.png +cmd/32/bg/addtextbox.png cmd/32/bg/insertfixedtext.png +cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png +cmd/32/bg/sortdown.png cmd/32/bg/sortdescending.png +cmd/32/bg/sortup.png cmd/32/bg/sortascending.png +cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png +cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png +cmd/32/bg/tablesort.png cmd/32/bg/sortascending.png +cmd/32/bg/textformfield.png cmd/32/bg/edit.png +cmd/32/bg/underline.png cmd/32/hu/underline.png +cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png +cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png +cmd/32/es/italic.png cmd/32/de/italic.png +cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/es/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/es/underlinesimple.png cmd/32/es/underline.png +cmd/32/es/underlinesingle.png cmd/32/es/underline.png +cmd/32/fa/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/fa/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/fa/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/fa/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/fa/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/fa/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/fa/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/fa/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/fa/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/fa/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/newrecord.png cmd/32/ar/newrecord.png +cmd/32/fa/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/fa/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/recsave.png cmd/32/ar/recsave.png +cmd/32/fa/recundo.png cmd/32/redo.png +cmd/32/fa/redo.png cmd/32/undo.png +cmd/32/fa/removebullets.png cmd/32/ar/removebullets.png +cmd/32/fa/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/fa/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/fa/setoutline.png cmd/32/ar/setoutline.png +cmd/32/fa/undo.png cmd/32/redo.png +cmd/32/fr/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/fr/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/fr/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/fr/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/fr/underline.png cmd/32/es/underline.png +cmd/32/fr/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/fr/underlinesimple.png cmd/32/es/underline.png +cmd/32/fr/underlinesingle.png cmd/32/es/underline.png +cmd/32/he/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/he/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/he/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/he/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/he/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/he/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/he/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/he/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/he/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/he/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/he/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/newrecord.png cmd/32/ar/newrecord.png +cmd/32/he/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/he/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/he/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/recsave.png cmd/32/ar/recsave.png +cmd/32/he/recundo.png cmd/32/redo.png +cmd/32/he/redo.png cmd/32/undo.png +cmd/32/he/removebullets.png cmd/32/ar/removebullets.png +cmd/32/he/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/he/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/he/setoutline.png cmd/32/ar/setoutline.png +cmd/32/he/undo.png cmd/32/redo.png +cmd/32/hu/bold.png cmd/32/de/bold.png +cmd/32/hu/underlinesimple.png cmd/32/hu/underline.png +cmd/32/hu/underlinesingle.png cmd/32/hu/underline.png +cmd/32/id/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/id/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/id/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/id/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/it/bold.png cmd/32/fr/bold.png +cmd/32/it/underline.png cmd/32/es/underline.png +cmd/32/it/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/it/underlinesimple.png cmd/32/es/underline.png +cmd/32/it/underlinesingle.png cmd/32/es/underline.png +cmd/32/km/underlinesimple.png cmd/32/km/underline.png +cmd/32/km/underlinesingle.png cmd/32/km/underline.png +cmd/32/ko/charactermenu.png cmd/32/ko/fontdialog.png +cmd/32/ko/drawtext.png cmd/32/ko/text.png +cmd/32/ko/editstyled.png cmd/32/ko/editstyle.png +cmd/32/ko/fontcolor.png cmd/32/ko/color.png +cmd/32/ko/fontheight.png cmd/32/ko/scaletext.png +cmd/32/ko/formatobjectmenu.png cmd/32/ko/text.png +cmd/32/ko/formattextmenu.png cmd/32/ko/charfontname.png +cmd/32/ko/ordercrit.png cmd/32/ko/datasort.png +cmd/32/ko/sortdown.png cmd/32/ko/sortdescending.png +cmd/32/ko/sortup.png cmd/32/ko/sortascending.png +cmd/32/ko/tablesort.png cmd/32/ko/datasort.png +cmd/32/ko/textattributes.png cmd/32/ko/fontdialog.png +cmd/32/ko/texttoolbox.png cmd/32/ko/text.png +cmd/32/ko/underlinesimple.png cmd/32/ko/underline.png +cmd/32/ko/underlinesingle.png cmd/32/ko/underline.png +cmd/32/ko/viewsidebarstyles.png cmd/32/ko/designerdialog.png +cmd/32/nl/italic.png cmd/32/it/italic.png +cmd/32/nl/underlinesimple.png cmd/32/nl/underline.png +cmd/32/nl/underlinesingle.png cmd/32/nl/underline.png +cmd/32/pl/bold.png cmd/32/fr/bold.png +cmd/32/pl/italic.png cmd/32/de/italic.png +cmd/32/pl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/pl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/pt-BR/bold.png cmd/32/es/bold.png +cmd/32/pt-BR/underline.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt-BR/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinesingle.png cmd/32/es/underline.png +cmd/32/pt/bold.png cmd/32/es/bold.png +cmd/32/pt/underline.png cmd/32/es/underline.png +cmd/32/pt/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt/underlinesingle.png cmd/32/es/underline.png +cmd/32/ru/italic.png cmd/32/de/italic.png +cmd/32/ru/underlinesimple.png cmd/32/ru/underline.png +cmd/32/ru/underlinesingle.png cmd/32/ru/underline.png +cmd/32/sl/underline.png cmd/32/pl/underline.png +cmd/32/sl/underlinedouble.png cmd/32/pl/underlinedouble.png +cmd/32/sl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/sl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/sv/bold.png cmd/32/de/bold.png +cmd/32/sv/italic.png cmd/32/de/italic.png +cmd/32/tr/bold.png cmd/32/sl/bold.png +cmd/32/tr/underline.png cmd/32/hu/underline.png +cmd/32/tr/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/tr/underlinesimple.png cmd/32/hu/underline.png +cmd/32/tr/underlinesingle.png cmd/32/hu/underline.png +cmd/32/underlinesimple.png cmd/32/underline.png +cmd/32/underlinesingle.png cmd/32/underline.png +cmd/32/ur/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/ur/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/ur/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/ur/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ur/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/ur/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/ur/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/ur/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/ur/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/ur/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/newrecord.png cmd/32/ar/newrecord.png +cmd/32/ur/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/ur/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/recsave.png cmd/32/ar/recsave.png +cmd/32/ur/recundo.png cmd/32/redo.png +cmd/32/ur/redo.png cmd/32/undo.png +cmd/32/ur/removebullets.png cmd/32/ar/removebullets.png +cmd/32/ur/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/ur/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/ur/setoutline.png cmd/32/ar/setoutline.png +cmd/32/ur/undo.png cmd/32/redo.png +cmd/ar/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ar/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ar/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ar/lc_recundo.png cmd/lc_redo.png +cmd/ar/lc_redo.png cmd/lc_undo.png +cmd/ar/lc_undo.png cmd/lc_redo.png +cmd/ar/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ar/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ar/sc_recundo.png cmd/sc_redo.png +cmd/ar/sc_redo.png cmd/sc_undo.png +cmd/ar/sc_undo.png cmd/sc_redo.png +cmd/bg/lc_addtextbox.png cmd/bg/lc_insertfixedtext.png +cmd/bg/lc_autoformatmenu.png cmd/bg/lc_autocorrectdlg.png +cmd/bg/lc_sortdown.png cmd/bg/lc_sortdescending.png +cmd/bg/lc_sortup.png cmd/bg/lc_sortascending.png +cmd/bg/lc_spelldialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_spellingandgrammardialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_tablesort.png cmd/bg/lc_sortascending.png +cmd/bg/lc_textformfield.png cmd/bg/lc_edit.png +cmd/bg/lc_underline.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/bg/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/bg/sc_addtextbox.png cmd/bg/sc_insertfixedtext.png +cmd/bg/sc_autoformatmenu.png cmd/bg/sc_autocorrectdlg.png +cmd/bg/sc_sortdown.png cmd/bg/sc_sortdescending.png +cmd/bg/sc_sortup.png cmd/bg/sc_sortascending.png +cmd/bg/sc_spelldialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_spellingandgrammardialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_tablesort.png cmd/bg/sc_sortascending.png +cmd/bg/sc_textformfield.png cmd/bg/sc_edit.png +cmd/bg/sc_underline.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/es/lc_italic.png cmd/de/lc_italic.png +cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/es/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/es/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/es/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/es/sc_italic.png cmd/de/sc_italic.png +cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/es/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/es/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/es/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/fa/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/fa/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/fa/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/fa/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/fa/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/fa/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/fa/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/fa/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/fa/lc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/fa/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/fa/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_recsave.png cmd/ar/lc_recsave.png +cmd/fa/lc_recundo.png cmd/lc_redo.png +cmd/fa/lc_redo.png cmd/lc_undo.png +cmd/fa/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/fa/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/fa/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/fa/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/fa/lc_undo.png cmd/lc_redo.png +cmd/fa/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/fa/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/fa/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/fa/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/fa/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/fa/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/fa/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/fa/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/fa/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/fa/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_recsave.png cmd/ar/sc_recsave.png +cmd/fa/sc_recundo.png cmd/sc_redo.png +cmd/fa/sc_redo.png cmd/sc_undo.png +cmd/fa/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/fa/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/fa/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/fa/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/fa/sc_undo.png cmd/sc_redo.png +cmd/fr/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/fr/lc_underline.png cmd/es/lc_underline.png +cmd/fr/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/fr/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/fr/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/fr/sc_underline.png cmd/es/sc_underline.png +cmd/fr/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/fr/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/fr/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/he/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/he/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/he/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/he/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/he/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/he/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/he/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_recsave.png cmd/ar/lc_recsave.png +cmd/he/lc_recundo.png cmd/lc_redo.png +cmd/he/lc_redo.png cmd/lc_undo.png +cmd/he/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/he/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/he/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/he/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/he/lc_undo.png cmd/lc_redo.png +cmd/he/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/he/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/he/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/he/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/he/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/he/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/he/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/he/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/he/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/he/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_recsave.png cmd/ar/sc_recsave.png +cmd/he/sc_recundo.png cmd/sc_redo.png +cmd/he/sc_redo.png cmd/sc_undo.png +cmd/he/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/he/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/he/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/he/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/he/sc_undo.png cmd/sc_redo.png +cmd/hu/lc_bold.png cmd/de/lc_bold.png +cmd/hu/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/hu/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/hu/sc_bold.png cmd/de/sc_bold.png +cmd/hu/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/hu/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/id/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/id/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/id/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/id/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/it/lc_bold.png cmd/fr/lc_bold.png +cmd/it/lc_underline.png cmd/es/lc_underline.png +cmd/it/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/it/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/it/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/it/sc_bold.png cmd/fr/sc_bold.png +cmd/it/sc_underline.png cmd/es/sc_underline.png +cmd/it/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/it/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/it/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/km/lc_underlinesimple.png cmd/km/lc_underline.png +cmd/km/lc_underlinesingle.png cmd/km/lc_underline.png +cmd/km/sc_underlinesimple.png cmd/km/sc_underline.png +cmd/km/sc_underlinesingle.png cmd/km/sc_underline.png +cmd/ko/lc_charactermenu.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_drawtext.png cmd/ko/lc_text.png +cmd/ko/lc_editstyled.png cmd/ko/lc_editstyle.png +cmd/ko/lc_fontcolor.png cmd/ko/lc_color.png +cmd/ko/lc_fontheight.png cmd/ko/lc_scaletext.png +cmd/ko/lc_formatobjectmenu.png cmd/ko/lc_text.png +cmd/ko/lc_formattextmenu.png cmd/ko/lc_charfontname.png +cmd/ko/lc_ordercrit.png cmd/ko/lc_datasort.png +cmd/ko/lc_sortdown.png cmd/ko/lc_sortdescending.png +cmd/ko/lc_sortup.png cmd/ko/lc_sortascending.png +cmd/ko/lc_tablesort.png cmd/ko/lc_datasort.png +cmd/ko/lc_textattributes.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_texttoolbox.png cmd/ko/lc_text.png +cmd/ko/lc_underlinesimple.png cmd/ko/lc_underline.png +cmd/ko/lc_underlinesingle.png cmd/ko/lc_underline.png +cmd/ko/lc_viewsidebarstyles.png cmd/ko/lc_designerdialog.png +cmd/ko/sc_charactermenu.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_drawtext.png cmd/ko/sc_text.png +cmd/ko/sc_editstyled.png cmd/ko/sc_editstyle.png +cmd/ko/sc_fontcolor.png cmd/ko/sc_color.png +cmd/ko/sc_fontheight.png cmd/ko/sc_scaletext.png +cmd/ko/sc_formatobjectmenu.png cmd/ko/sc_text.png +cmd/ko/sc_formattextmenu.png cmd/ko/sc_charfontname.png +cmd/ko/sc_ordercrit.png cmd/ko/sc_datasort.png +cmd/ko/sc_sortdown.png cmd/ko/sc_sortdescending.png +cmd/ko/sc_sortup.png cmd/ko/sc_sortascending.png +cmd/ko/sc_tablesort.png cmd/ko/sc_datasort.png +cmd/ko/sc_textattributes.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_texttoolbox.png cmd/ko/sc_text.png +cmd/ko/sc_underlinesimple.png cmd/ko/sc_underline.png +cmd/ko/sc_underlinesingle.png cmd/ko/sc_underline.png +cmd/ko/sc_viewsidebarstyles.png cmd/ko/sc_designerdialog.png +cmd/lc_underlinesimple.png cmd/lc_underline.png +cmd/lc_underlinesingle.png cmd/lc_underline.png +cmd/nl/lc_italic.png cmd/it/lc_italic.png +cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png +cmd/nl/lc_underlinesingle.png cmd/nl/lc_underline.png +cmd/nl/sc_italic.png cmd/it/sc_italic.png +cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png +cmd/nl/sc_underlinesingle.png cmd/nl/sc_underline.png +cmd/pl/lc_bold.png cmd/fr/lc_bold.png +cmd/pl/lc_italic.png cmd/de/lc_italic.png +cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/pl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/pl/sc_bold.png cmd/fr/sc_bold.png +cmd/pl/sc_italic.png cmd/de/sc_italic.png +cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/pl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/pt-BR/lc_bold.png cmd/es/lc_bold.png +cmd/pt-BR/lc_underline.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt-BR/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt-BR/sc_bold.png cmd/es/sc_bold.png +cmd/pt-BR/sc_underline.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt-BR/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/pt/lc_bold.png cmd/es/lc_bold.png +cmd/pt/lc_underline.png cmd/es/lc_underline.png +cmd/pt/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt/sc_bold.png cmd/es/sc_bold.png +cmd/pt/sc_underline.png cmd/es/sc_underline.png +cmd/pt/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/ru/lc_italic.png cmd/de/lc_italic.png +cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png +cmd/ru/lc_underlinesingle.png cmd/ru/lc_underline.png +cmd/ru/sc_italic.png cmd/de/sc_italic.png +cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png +cmd/ru/sc_underlinesingle.png cmd/ru/sc_underline.png +cmd/sc_underlinesimple.png cmd/sc_underline.png +cmd/sc_underlinesingle.png cmd/sc_underline.png +cmd/sl/lc_underline.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png +cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/sl/sc_underline.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png +cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/sv/lc_bold.png cmd/de/lc_bold.png +cmd/sv/lc_italic.png cmd/de/lc_italic.png +cmd/sv/sc_bold.png cmd/de/sc_bold.png +cmd/sv/sc_italic.png cmd/de/sc_italic.png +cmd/tr/lc_bold.png cmd/sl/lc_bold.png +cmd/tr/lc_underline.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/tr/sc_bold.png cmd/sl/sc_bold.png +cmd/tr/sc_underline.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/ur/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/ur/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/ur/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/ur/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/ur/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/ur/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/ur/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_recsave.png cmd/ar/lc_recsave.png +cmd/ur/lc_recundo.png cmd/lc_redo.png +cmd/ur/lc_redo.png cmd/lc_undo.png +cmd/ur/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/ur/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/ur/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/ur/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/ur/lc_undo.png cmd/lc_redo.png +cmd/ur/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/ur/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/ur/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/ur/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/ur/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/ur/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/ur/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/ur/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/ur/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/ur/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_recsave.png cmd/ar/sc_recsave.png +cmd/ur/sc_recundo.png cmd/sc_redo.png +cmd/ur/sc_redo.png cmd/sc_undo.png +cmd/ur/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/ur/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/ur/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/ur/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/ur/sc_undo.png cmd/sc_redo.png + +# Template Menu +cmd/32/templatemenu.png cmd/32/adddirect.png +cmd/lc_templatemenu.png cmd/lc_adddirect.png +cmd/sc_templatemenu.png cmd/sc_adddirect.png + +# Animation +cmd/32/customanimation.png cmd/32/diaeffect.png +cmd/lc_customanimation.png cmd/lc_diaeffect.png +cmd/sc_customanimation.png cmd/sc_diaeffect.png + +# Media +cmd/32/datastreamsplay.png cmd/32/runbasic.png +cmd/32/datastreamsstop.png cmd/32/basicstop.png + +cmd/lc_datastreamsplay.png cmd/lc_runbasic.png +cmd/lc_datastreamsstop.png cmd/lc_basicstop.png + +cmd/sc_datastreamsplay.png cmd/sc_runbasic.png +cmd/sc_datastreamsstop.png cmd/sc_basicstop.png + +# Alignment +cmd/32/alignhorizontalceter.png cmd/32/alignhorizontalcenter.png +cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png +cmd/32/objectalign.png cmd/32/objectalignleft.png +cmd/32/sectionalignbottom.png cmd/32/aligndown.png +cmd/32/sectionalignleft.png cmd/32/objectalignleft.png +cmd/32/sectionalignright.png cmd/32/objectalignright.png +cmd/32/sectionaligntop.png cmd/32/alignup.png + +cmd/lc_alignhorizontalceter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_alignvcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_objectalign.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignbottom.png cmd/lc_aligndown.png +cmd/lc_sectionalignleft.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignright.png cmd/lc_objectalignright.png +cmd/lc_sectionaligntop.png cmd/lc_alignup.png + +cmd/sc_alignhorizontalceter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_alignvcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_objectalign.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignbottom.png cmd/sc_aligndown.png +cmd/sc_sectionalignleft.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignright.png cmd/sc_objectalignright.png +cmd/sc_sectionaligntop.png cmd/sc_alignup.png + +# Graphic +cmd/32/colorview.png cmd/32/graphicfilterinvert.png +cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png +cmd/32/grafmode.png cmd/32/graphicdialog.png + +cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafmode.png cmd/lc_graphicdialog.png + +cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafmode.png cmd/sc_graphicdialog.png + +# shapes +cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png +cmd/32/basicshapes.circle-pie.png cmd/32/pie.png +cmd/32/basicshapes.circle.png cmd/32/circle.png +cmd/32/basicshapes.parallelogram.png cmd/32/flowchartshapes.flowchart-data.png +cmd/32/basicshapes.round-rectangle.png cmd/32/rect_rounded.png +cmd/32/calloutshapes.round-rectangular-callout.png cmd/32/calloutshapes.png +cmd/32/flowchartshapes.flowchart-alternate-process.png cmd/32/basicshapes.round-quadrat.png +cmd/32/flowchartshapes.flowchart-connector.png cmd/32/circle.png +cmd/32/flowchartshapes.flowchart-extract.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/flowchartshapes.flowchart-magnetic-disk.png cmd/32/basicshapes.can.png +cmd/32/flowchartshapes.flowchart-manual-operation.png cmd/32/basicshapes.trapezoid.png +cmd/32/flowchartshapes.flowchart-merge.png cmd/32/fontworkshapetype.fontwork-triangle-down.png +cmd/32/fontworkshapetype.fontwork-circle-pour.png cmd/32/basicshapes.ring.png +cmd/32/fontworkshapetype.fontwork-fade-down.png cmd/32/basicshapes.trapezoid.png +cmd/32/fontworkshapetype.fontwork-triangle-up.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/measureattributes.png cmd/32/measureline.png +cmd/32/symbolshapes.smiley.png cmd/32/symbolshapes.png + + +cmd/lc_arrowshapes.left-right-arrow.png cmd/lc_arrowshapes.png +cmd/lc_basicshapes.circle-pie.png cmd/lc_pie.png +cmd/lc_basicshapes.circle.png cmd/lc_circle.png +cmd/lc_basicshapes.parallelogram.png cmd/lc_flowchartshapes.flowchart-data.png +cmd/lc_basicshapes.round-rectangle.png cmd/lc_rect_rounded.png +cmd/lc_calloutshapes.round-rectangular-callout.png cmd/lc_calloutshapes.png +cmd/lc_flowchartshapes.flowchart-alternate-process.png cmd/lc_basicshapes.round-quadrat.png +cmd/lc_flowchartshapes.flowchart-connector.png cmd/lc_circle.png +cmd/lc_flowchartshapes.flowchart-extract.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_flowchartshapes.flowchart-magnetic-disk.png cmd/lc_basicshapes.can.png +cmd/lc_flowchartshapes.flowchart-manual-operation.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_flowchartshapes.flowchart-merge.png cmd/lc_fontworkshapetype.fontwork-triangle-down.png +cmd/lc_fontworkshapetype.fontwork-circle-pour.png cmd/lc_basicshapes.ring.png +cmd/lc_fontworkshapetype.fontwork-fade-down.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_fontworkshapetype.fontwork-triangle-up.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_measureattributes.png cmd/lc_measureline.png +cmd/lc_symbolshapes.smiley.png cmd/lc_symbolshapes.png + +cmd/sc_arrowshapes.left-right-arrow.png cmd/sc_arrowshapes.png +cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png +cmd/sc_basicshapes.circle.png cmd/sc_circle.png +cmd/sc_basicshapes.parallelogram.png cmd/sc_flowchartshapes.flowchart-data.png +cmd/sc_basicshapes.round-rectangle.png cmd/sc_rect_rounded.png +cmd/sc_calloutshapes.round-rectangular-callout.png cmd/sc_calloutshapes.png +cmd/sc_flowchartshapes.flowchart-alternate-process.png cmd/sc_basicshapes.round-quadrat.png +cmd/sc_flowchartshapes.flowchart-connector.png cmd/sc_circle.png +cmd/sc_flowchartshapes.flowchart-extract.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png +cmd/sc_flowchartshapes.flowchart-manual-operation.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_flowchartshapes.flowchart-merge.png cmd/sc_fontworkshapetype.fontwork-triangle-down.png +cmd/sc_fontworkshapetype.fontwork-circle-pour.png cmd/sc_basicshapes.ring.png +cmd/sc_fontworkshapetype.fontwork-fade-down.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_fontworkshapetype.fontwork-triangle-up.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_measureattributes.png cmd/sc_measureline.png +cmd/sc_symbolshapes.smiley.png cmd/sc_symbolshapes.png + +# Open +cmd/32/openfromwriter.png cmd/32/open.png +cmd/32/openfromcalc.png cmd/32/open.png + +cmd/lc_openfromwriter.png cmd/lc_open.png +cmd/lc_openfromcalc.png cmd/lc_open.png + +cmd/sc_openfromwriter.png cmd/sc_open.png +cmd/sc_openfromcalc.png cmd/sc_open.png + +# Mail Merge +cmd/32/dsbformletter.png cmd/32/mailmergewizard.png +cmd/lc_dsbformletter.png cmd/lc_mailmergewizard.png +cmd/sc_dsbformletter.png cmd/sc_mailmergewizard.png + +# Merge +cmd/32/mergedocument.png cmd/32/mergedocuments.png +cmd/lc_mergedocument.png cmd/lc_mergedocuments.png +cmd/sc_mergedocument.png cmd/sc_mergedocuments.png + +# Layout +cmd/32/attributepagesize.png cmd/32/ruler.png + +cmd/lc_attributepagesize.png cmd/lc_ruler.png + +cmd/sc_attributepagesize.png cmd/sc_ruler.png + +# Print +cmd/32/printpagepreview.png cmd/32/printpreview.png + +cmd/lc_printpagepreview.png cmd/lc_printpreview.png + +cmd/sc_printpagepreview.png cmd/sc_printpreview.png + +# Folder +cmd/32/open_h.png cmd/32/open.png + +cmd/lc_open_h.png cmd/lc_open.png + +cmd/sc_open_h.png cmd/sc_open.png + +# Wizard +cmd/32/commontaskbarvisible.png cmd/32/autopilotmenu.png +cmd/32/dbnewformautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewqueryautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewreportautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewtableautopilot.png cmd/32/autopilotmenu.png +cmd/32/graphicfiltertoolbox.png cmd/32/autopilotmenu.png +cmd/32/usewizards.png cmd/32/autopilotmenu.png + +cmd/lc_commontaskbarvisible.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewformautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewqueryautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewreportautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewtableautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_graphicfiltertoolbox.png cmd/lc_autopilotmenu.png +cmd/lc_usewizards.png cmd/lc_autopilotmenu.png + +cmd/sc_commontaskbarvisible.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewformautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewqueryautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewreportautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewtableautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_graphicfiltertoolbox.png cmd/sc_autopilotmenu.png +cmd/sc_usewizards.png cmd/sc_autopilotmenu.png + +# Filter +cmd/32/autofilter.png cmd/32/datafilterautofilter.png +cmd/32/filtercrit.png cmd/32/datafilterstandardfilter.png +cmd/32/formfilter.png cmd/32/datafilterspecialfilter.png +cmd/32/formfilterexecute.png cmd/32/datafilterstandardfilter.png +cmd/32/removefilter.png cmd/32/removefiltersort.png + +cmd/lc_autofilter.png cmd/lc_datafilterautofilter.png +cmd/lc_filtercrit.png cmd/lc_datafilterstandardfilter.png +cmd/lc_formfilter.png cmd/lc_datafilterspecialfilter.png +cmd/lc_formfilterexecute.png cmd/lc_datafilterstandardfilter.png +cmd/lc_removefilter.png cmd/lc_removefiltersort.png + +cmd/sc_autofilter.png cmd/sc_datafilterautofilter.png +cmd/sc_filtercrit.png cmd/sc_datafilterstandardfilter.png +cmd/sc_formfilter.png cmd/sc_datafilterspecialfilter.png +cmd/sc_formfilterexecute.png cmd/sc_datafilterstandardfilter.png +cmd/sc_removefilter.png cmd/sc_removefiltersort.png + +# Bullets +cmd/32/bulletliststyle.png cmd/32/defaultbullet.png +cmd/32/defaultparastyle.png cmd/32/controlcodes.png +cmd/32/linenumberdialog.png cmd/32/linenumberingdialog.png +cmd/32/numberliststyle.png cmd/32/defaultnumbering.png +cmd/32/outlinebullet.png cmd/32/bulletsandnumberingdialog.png + +cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png +cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png +cmd/lc_linenumberdialog.png cmd/lc_linenumberingdialog.png +cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png +cmd/lc_outlinebullet.png cmd/lc_bulletsandnumberingdialog.png + +cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png +cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png +cmd/sc_linenumberdialog.png cmd/sc_linenumberingdialog.png +cmd/sc_numberliststyle.png cmd/sc_defaultnumbering.png +cmd/sc_outlinebullet.png cmd/sc_bulletsandnumberingdialog.png + +# Group +cmd/32/groupmenu.png cmd/32/formatgroup.png + +cmd/lc_groupmenu.png cmd/lc_formatgroup.png + +cmd/sc_groupmenu.png cmd/sc_formatgroup.png + +# Undo +cmd/32/recundo.png cmd/32/undo.png +cmd/lc_recundo.png cmd/lc_undo.png +cmd/sc_recundo.png cmd/sc_undo.png + +# Bezier +cmd/32/bezieredge.png cmd/32/bezierappend.png +cmd/lc_bezieredge.png cmd/lc_bezierappend.png +cmd/sc_bezieredge.png cmd/sc_bezierappend.png + +# Rotate +cmd/32/clickchangerotation.png cmd/32/toggleobjectrotatemode.png +cmd/lc_clickchangerotation.png cmd/lc_toggleobjectrotatemode.png +cmd/sc_clickchangerotation.png cmd/sc_toggleobjectrotatemode.png + +# AddField +cmd/32/fieldnames.png cmd/32/addfield.png +cmd/lc_fieldnames.png cmd/lc_addfield.png +cmd/sc_fieldnames.png cmd/sc_addfield.png + +# Edit +cmd/32/dsbeditdoc.png cmd/32/editdoc.png + +cmd/lc_dsbeditdoc.png cmd/lc_editdoc.png + +cmd/sc_dsbeditdoc.png cmd/sc_editdoc.png + +# Quit +cmd/32/closewin.png cmd/32/quit.png +cmd/lc_closewin.png cmd/lc_quit.png +cmd/sc_closewin.png cmd/sc_quit.png + +# Close +cmd/32/exitsearch.png cmd/32/closepreview.png +cmd/lc_exitsearch.png cmd/lc_closepreview.png +cmd/sc_exitsearch.png cmd/sc_closepreview.png + +# Cancel +cmd/32/no.png cmd/32/cancel.png +cmd/lc_no.png cmd/lc_cancel.png +cmd/sc_no.png cmd/sc_cancel.png + +# Page +cmd/32/insertobjctrl.png cmd/32/drawchart.png + +cmd/lc_insertobjctrl.png cmd/lc_drawchart.png + +cmd/sc_insertobjctrl.png cmd/sc_drawchart.png + +# Line +cmd/32/shapeslinemenu.png cmd/32/line.png +cmd/32/xlinestyle.png cmd/32/linestyle.png + +cmd/lc_shapeslinemenu.png cmd/lc_line.png +cmd/lc_xlinestyle.png cmd/lc_linestyle.png + +cmd/sc_shapeslinemenu.png cmd/sc_line.png +cmd/sc_xlinestyle.png cmd/sc_linestyle.png + +# Mail merge +cmd/32/mailmergefirstentry.png cmd/32/firstrecord.png +cmd/32/mailmergelastentry.png cmd/32/lastrecord.png +cmd/32/mailmergenextentry.png cmd/32/nextrecord.png +cmd/32/mailmergepreventry.png cmd/32/prevrecord.png + +cmd/lc_mailmergefirstentry.png cmd/lc_firstrecord.png +cmd/lc_mailmergelastentry.png cmd/lc_lastrecord.png +cmd/lc_mailmergenextentry.png cmd/lc_nextrecord.png +cmd/lc_mailmergepreventry.png cmd/lc_prevrecord.png + +cmd/sc_mailmergefirstentry.png cmd/sc_firstrecord.png +cmd/sc_mailmergelastentry.png cmd/sc_lastrecord.png +cmd/sc_mailmergenextentry.png cmd/sc_nextrecord.png +cmd/sc_mailmergepreventry.png cmd/sc_prevrecord.png + +# Arrows +cmd/32/arrowstoolbox.png cmd/32/linearrowend.png +cmd/lc_arrowstoolbox.png cmd/lc_linearrowend.png +cmd/sc_arrowstoolbox.png cmd/sc_linearrowend.png + +# < +cmd/32/browsebackward.png cmd/32/prevrecord.png +cmd/32/navigateback.png cmd/32/prevrecord.png +cmd/32/pageup.png cmd/32/previouspage.png + +cmd/lc_browsebackward.png cmd/lc_prevrecord.png +cmd/lc_navigateback.png cmd/lc_prevrecord.png +cmd/lc_pageup.png cmd/lc_previouspage.png + +cmd/sc_browsebackward.png cmd/sc_prevrecord.png +cmd/sc_navigateback.png cmd/sc_prevrecord.png +cmd/sc_pageup.png cmd/sc_previouspage.png + +# > +cmd/32/navigateforward.png cmd/32/nextrecord.png +cmd/32/pagedown.png cmd/32/nextpage.png + +cmd/lc_navigateforward.png cmd/lc_nextrecord.png +cmd/lc_pagedown.png cmd/lc_nextpage.png + +cmd/sc_navigateforward.png cmd/sc_nextrecord.png +cmd/sc_pagedown.png cmd/sc_nextpage.png + +# >| +cmd/32/gotoendofpage.png cmd/32/lastpage.png + +cmd/lc_gotoendofpage.png cmd/lc_lastpage.png + +cmd/sc_gotoendofpage.png cmd/sc_lastpage.png + +# |< +cmd/32/gotostartofpage.png cmd/32/firstpage.png + +cmd/lc_gotostartofpage.png cmd/lc_firstpage.png + +cmd/sc_gotostartofpage.png cmd/sc_firstpage.png + +# Hyperlink +cmd/32/hyperlinkdialog.png cmd/32/inserthyperlink.png +cmd/lc_hyperlinkdialog.png cmd/lc_inserthyperlink.png +cmd/sc_hyperlinkdialog.png cmd/sc_inserthyperlink.png + +# Spellcheck +cmd/32/spelldialog.png cmd/32/spelling.png +cmd/32/spellingandgrammardialog.png cmd/32/spelling.png + +cmd/lc_spelldialog.png cmd/lc_spelling.png +cmd/lc_spellingandgrammardialog.png cmd/lc_spelling.png + +cmd/sc_spelldialog.png cmd/sc_spelling.png +cmd/sc_spellingandgrammardialog.png cmd/sc_spelling.png + +# Color +cmd/32/backgroundpatterncontroller.png cmd/32/backgroundcolor.png +cmd/32/characterbackgroundpattern.png cmd/32/backcolor.png +cmd/32/fillcolor.png cmd/32/backgroundcolor.png +cmd/32/fillstyle.png cmd/32/backgroundcolor.png +cmd/32/fontcolor.png cmd/32/color.png +cmd/32/formatarea.png cmd/32/backgroundcolor.png +cmd/32/tablecellbackgroundcolor.png cmd/32/backgroundcolor.png + +cmd/lc_backgroundpatterncontroller.png cmd/lc_backgroundcolor.png +cmd/lc_characterbackgroundpattern.png cmd/lc_backcolor.png +cmd/lc_fillcolor.png cmd/lc_backgroundcolor.png +cmd/lc_fillstyle.png cmd/lc_backgroundcolor.png +cmd/lc_fontcolor.png cmd/lc_color.png +cmd/lc_formatarea.png cmd/lc_backgroundcolor.png +cmd/lc_tablecellbackgroundcolor.png cmd/lc_backgroundcolor.png + +cmd/sc_backgroundpatterncontroller.png cmd/sc_backgroundcolor.png +cmd/sc_characterbackgroundpattern.png cmd/sc_backcolor.png +cmd/sc_fillcolor.png cmd/sc_backgroundcolor.png +cmd/sc_fillstyle.png cmd/sc_backgroundcolor.png +cmd/sc_fontcolor.png cmd/sc_color.png +cmd/sc_formatarea.png cmd/sc_backgroundcolor.png +cmd/sc_tablecellbackgroundcolor.png cmd/sc_backgroundcolor.png + +# Paragraph Alignment +cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png +cmd/32/fontworkalignmentfloater.png cmd/32/alignhorizontalcenter.png +cmd/32/justifypara.png cmd/32/alignblock.png +cmd/32/leftpara.png cmd/32/alignleft.png +cmd/32/rightpara.png cmd/32/alignright.png + +cmd/lc_centerpara.png cmd/lc_alignhorizontalcenter.png +cmd/lc_fontworkalignmentfloater.png cmd/lc_alignhorizontalcenter.png +cmd/lc_justifypara.png cmd/lc_alignblock.png +cmd/lc_leftpara.png cmd/lc_alignleft.png +cmd/lc_rightpara.png cmd/lc_alignright.png + +cmd/sc_centerpara.png cmd/sc_alignhorizontalcenter.png +cmd/sc_fontworkalignmentfloater.png cmd/sc_alignhorizontalcenter.png +cmd/sc_justifypara.png cmd/sc_alignblock.png +cmd/sc_leftpara.png cmd/sc_alignleft.png +cmd/sc_rightpara.png cmd/sc_alignright.png + +# Thesaurus +cmd/32/thesaurusdialog.png cmd/32/thesaurus.png +cmd/lc_thesaurusdialog.png cmd/lc_thesaurus.png +cmd/sc_thesaurusdialog.png cmd/sc_thesaurus.png + +# View +cmd/32/availabletoolbars.png cmd/32/showtoolbar.png +cmd/32/sidebarmenu.png cmd/32/sidebar.png +cmd/32/toolbarsmenu.png cmd/32/showtoolbar.png +cmd/lc_availabletoolbars.png cmd/lc_showtoolbar.png +cmd/lc_sidebarmenu.png cmd/lc_sidebar.png +cmd/lc_toolbarsmenu.png cmd/lc_showtoolbar.png +cmd/sc_availabletoolbars.png cmd/sc_showtoolbar.png +cmd/sc_sidebarmenu.png cmd/sc_sidebar.png +cmd/sc_toolbarsmenu.png cmd/sc_showtoolbar.png + +# Vertical Text Alignment +cmd/32/cellvertbottom.png cmd/32/alignbottom.png +cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png +cmd/32/cellverttop.png cmd/32/aligntop.png +cmd/32/commonalignbottom.png cmd/32/alignbottom.png +cmd/32/commonalignhorizontalcenter.png cmd/32/alignhorizontalcenter.png +cmd/32/commonalignjustified.png cmd/32/alignblock.png +cmd/32/commonalignleft.png cmd/32/alignleft.png +cmd/32/commonalignright.png cmd/32/alignright.png +cmd/32/commonaligntop.png cmd/32/aligntop.png +cmd/32/commonalignverticalcenter.png cmd/32/alignverticalcenter.png + +cmd/lc_cellvertbottom.png cmd/lc_alignbottom.png +cmd/lc_cellvertcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_cellverttop.png cmd/lc_aligntop.png +cmd/lc_commonalignbottom.png cmd/lc_alignbottom.png +cmd/lc_commonalignhorizontalcenter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_commonalignjustified.png cmd/lc_alignblock.png +cmd/lc_commonalignleft.png cmd/lc_alignleft.png +cmd/lc_commonalignright.png cmd/lc_alignright.png +cmd/lc_commonaligntop.png cmd/lc_aligntop.png +cmd/lc_commonalignverticalcenter.png cmd/lc_alignverticalcenter.png + +cmd/sc_cellvertbottom.png cmd/sc_alignbottom.png +cmd/sc_cellvertcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_cellverttop.png cmd/sc_aligntop.png +cmd/sc_commonalignbottom.png cmd/sc_alignbottom.png +cmd/sc_commonalignhorizontalcenter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_commonalignjustified.png cmd/sc_alignblock.png +cmd/sc_commonalignleft.png cmd/sc_alignleft.png +cmd/sc_commonalignright.png cmd/sc_alignright.png +cmd/sc_commonaligntop.png cmd/sc_aligntop.png +cmd/sc_commonalignverticalcenter.png cmd/sc_alignverticalcenter.png + +# paragraph line spacing drop down +cmd/32/linespacing.png cmd/32/spacepara15.png +cmd/lc_linespacing.png cmd/lc_spacepara15.png +cmd/sc_linespacing.png cmd/sc_spacepara15.png + +# calc menu entries +cmd/32/cellcontentsmenu.png cmd/32/calculate.png +cmd/32/chartmenu.png cmd/32/drawchart.png +cmd/32/datapilotmenu.png cmd/32/datadatapilotrun.png +cmd/32/editselectmenu.png cmd/32/selecttables.png +cmd/32/fieldmenu.png cmd/32/insertfieldctrl.png +cmd/32/functionbox.png cmd/32/dbviewfunctions.png +cmd/32/functiondialog.png cmd/32/dbviewfunctions.png +cmd/32/groupoutlinemenu.png cmd/32/autooutline.png +cmd/32/insertanchor.png cmd/32/insertbookmark.png +cmd/32/insertcell.png cmd/32/insertcellsright.png +cmd/32/insertcolumnsmenu.png cmd/32/insertcolumns.png +cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png +cmd/32/insertrowsmenu.png cmd/32/insertrows.png +cmd/32/mergecellsmenu.png cmd/32/togglemergecells.png +cmd/32/navigatemenu.png cmd/32/navigator.png +cmd/32/numberformatmenu.png cmd/32/numberformatstandard.png +cmd/32/objectmenu.png cmd/32/insertobject.png +cmd/32/printrangesmenu.png cmd/32/defineprintarea.png +cmd/32/selectcolumn.png cmd/32/entirecolumn.png +cmd/32/selectdata.png cmd/32/selectdb.png +cmd/32/selectrow.png cmd/32/entirerow.png +cmd/32/sheetcommentmenu.png cmd/32/shownote.png +cmd/32/toolsformsmenu.png cmd/32/dbviewforms.png + +cmd/lc_cellcontentsmenu.png cmd/lc_calculate.png +cmd/lc_chartmenu.png cmd/lc_drawchart.png +cmd/lc_datapilotmenu.png cmd/lc_datadatapilotrun.png +cmd/lc_editselectmenu.png cmd/lc_selecttables.png +cmd/lc_fieldmenu.png cmd/lc_insertfieldctrl.png +cmd/lc_functionbox.png cmd/lc_dbviewfunctions.png +cmd/lc_functiondialog.png cmd/lc_dbviewfunctions.png +cmd/lc_groupoutlinemenu.png cmd/lc_autooutline.png +cmd/lc_insertanchor.png cmd/lc_insertbookmark.png +cmd/lc_insertcell.png cmd/lc_insertcellsright.png +cmd/lc_insertcolumnsmenu.png cmd/lc_insertcolumns.png +cmd/lc_insertpivottable.png cmd/lc_datadatapilotrun.png +cmd/lc_insertrowsmenu.png cmd/lc_insertrows.png +cmd/lc_mergecellsmenu.png cmd/lc_togglemergecells.png +cmd/lc_navigatemenu.png cmd/lc_navigator.png +cmd/lc_numberformatmenu.png cmd/lc_numberformatstandard.png +cmd/lc_objectmenu.png cmd/lc_insertobject.png +cmd/lc_printrangesmenu.png cmd/lc_defineprintarea.png +cmd/lc_selectcolumn.png cmd/lc_entirecolumn.png +cmd/lc_selectdata.png cmd/lc_selectdb.png +cmd/lc_selectrow.png cmd/lc_entirerow.png +cmd/lc_sheetcommentmenu.png cmd/lc_shownote.png +cmd/lc_toolsformsmenu.png cmd/lc_dbviewforms.png + +cmd/sc_cellcontentsmenu.png cmd/sc_calculate.png +cmd/sc_chartmenu.png cmd/sc_drawchart.png +cmd/sc_datapilotmenu.png cmd/sc_datadatapilotrun.png +cmd/sc_editselectmenu.png cmd/sc_selecttables.png +cmd/sc_fieldmenu.png cmd/sc_insertfieldctrl.png +cmd/sc_functionbox.png cmd/sc_dbviewfunctions.png +cmd/sc_functiondialog.png cmd/sc_dbviewfunctions.png +cmd/sc_groupoutlinemenu.png cmd/sc_autooutline.png +cmd/sc_insertanchor.png cmd/sc_insertbookmark.png +cmd/sc_insertcell.png cmd/sc_insertcellsright.png +cmd/sc_insertcolumnsmenu.png cmd/sc_insertcolumns.png +cmd/sc_insertpivottable.png cmd/sc_datadatapilotrun.png +cmd/sc_insertrowsmenu.png cmd/sc_insertrows.png +cmd/sc_mergecellsmenu.png cmd/sc_togglemergecells.png +cmd/sc_navigatemenu.png cmd/sc_navigator.png +cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png +cmd/sc_objectmenu.png cmd/sc_insertobject.png +cmd/sc_printrangesmenu.png cmd/sc_defineprintarea.png +cmd/sc_selectcolumn.png cmd/sc_entirecolumn.png +cmd/sc_selectdata.png cmd/sc_selectdb.png +cmd/sc_selectrow.png cmd/sc_entirerow.png +cmd/sc_sheetcommentmenu.png cmd/sc_shownote.png +cmd/sc_toolsformsmenu.png cmd/sc_dbviewforms.png + +# Shapes +cmd/32/basicshapes.ellipse.png cmd/32/ellipse.png +cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png +cmd/32/basicshapes.rectangle.png cmd/32/rect.png +cmd/32/ellipsetoolbox.png cmd/32/ellipse.png +cmd/32/linetoolbox.png cmd/32/freeline_unfilled.png +cmd/32/rectangletoolbox.png cmd/32/rect.png + +cmd/lc_basicshapes.ellipse.png cmd/lc_ellipse.png +cmd/lc_basicshapes.png cmd/lc_basicshapes.diamond.png +cmd/lc_basicshapes.rectangle.png cmd/lc_rect.png +cmd/lc_ellipsetoolbox.png cmd/lc_ellipse.png +cmd/lc_linetoolbox.png cmd/lc_freeline_unfilled.png +cmd/lc_rectangletoolbox.png cmd/lc_rect.png + +cmd/sc_basicshapes.ellipse.png cmd/sc_ellipse.png +cmd/sc_basicshapes.png cmd/sc_basicshapes.diamond.png +cmd/sc_basicshapes.rectangle.png cmd/sc_rect.png +cmd/sc_ellipsetoolbox.png cmd/sc_ellipse.png +cmd/sc_linetoolbox.png cmd/sc_freeline_unfilled.png +cmd/sc_rectangletoolbox.png cmd/sc_rect.png + +# Format +cmd/32/insertcurrentdate.png cmd/32/datefield.png +cmd/32/insertcurrenttime.png cmd/32/timefield.png +cmd/32/insertobjectchartfromfile.png cmd/32/drawchart.png +cmd/32/pageformatdialog.png cmd/32/pagedialog.png + +cmd/lc_insertcurrentdate.png cmd/lc_datefield.png +cmd/lc_insertcurrenttime.png cmd/lc_timefield.png +cmd/lc_insertobjectchartfromfile.png cmd/lc_drawchart.png +cmd/lc_pageformatdialog.png cmd/lc_pagedialog.png + +cmd/sc_insertcurrentdate.png cmd/sc_datefield.png +cmd/sc_insertcurrenttime.png cmd/sc_timefield.png +cmd/sc_insertobjectchartfromfile.png cmd/sc_drawchart.png +cmd/sc_pageformatdialog.png cmd/sc_pagedialog.png + +# Notebookbar +cmd/32/datafilterhideautofilter.png cmd/32/removefiltersort.png +cmd/32/headerandfooter.png cmd/32/editheaderandfooter.png +cmd/32/insertheaderfootermenu.png cmd/32/editheaderandfooter.png +cmd/32/insertsignatureline.png cmd/32/signaturelinedialog.png + +cmd/lc_datafilterhideautofilter.png cmd/lc_removefiltersort.png +cmd/lc_headerandfooter.png cmd/lc_editheaderandfooter.png +cmd/lc_insertheaderfootermenu.png cmd/lc_editheaderandfooter.png +cmd/lc_insertsignatureline.png cmd/lc_signaturelinedialog.png + +cmd/sc_datafilterhideautofilter.png cmd/sc_removefiltersort.png +cmd/sc_headerandfooter.png cmd/sc_editheaderandfooter.png +cmd/sc_insertheaderfootermenu.png cmd/sc_editheaderandfooter.png +cmd/sc_insertsignatureline.png cmd/sc_signaturelinedialog.png + +# Ok +cmd/32/apply.png cmd/32/ok.png +cmd/32/yes.png cmd/32/ok.png + +cmd/lc_apply.png cmd/lc_ok.png +cmd/lc_yes.png cmd/lc_ok.png + +cmd/sc_apply.png cmd/sc_ok.png +cmd/sc_yes.png cmd/sc_ok.png + +# Find Toolbar +cmd/32/findbar.png cmd/32/recsearch.png +cmd/32/scrolltonext.png cmd/32/downsearch.png +cmd/32/scrolltoprevious.png cmd/32/upsearch.png + +cmd/lc_findbar.png cmd/lc_recsearch.png +cmd/lc_scrolltonext.png cmd/lc_downsearch.png +cmd/lc_scrolltoprevious.png cmd/lc_upsearch.png + +cmd/sc_findbar.png cmd/sc_recsearch.png +cmd/sc_scrolltonext.png cmd/sc_downsearch.png +cmd/sc_scrolltoprevious.png cmd/sc_upsearch.png + +# File Menu +cmd/32/exportasmenu.png cmd/32/exportto.png +cmd/32/exporttoepub.png cmd/32/exportdirecttoepub.png +cmd/32/exporttopdf.png cmd/32/exportdirecttopdf.png +cmd/32/templatemenu.png cmd/32/templatemanager.png + +cmd/lc_exportasmenu.png cmd/lc_exportto.png +cmd/lc_exporttoepub.png cmd/lc_exportdirecttoepub.png +cmd/lc_exporttopdf.png cmd/lc_exportdirecttopdf.png +cmd/lc_templatemenu.png cmd/lc_templatemanager.png + +cmd/sc_exportasmenu.png cmd/sc_exportto.png +cmd/sc_exporttoepub.png cmd/sc_exportdirecttoepub.png +cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png +cmd/sc_templatemenu.png cmd/sc_templatemanager.png + +# Edit Menu +cmd/32/editlinksmenu.png cmd/32/insertreferencefield.png +cmd/lc_editlinksmenu.png cmd/lc_insertreferencefield.png +cmd/sc_editlinksmenu.png cmd/sc_insertreferencefield.png + +# Square +cmd/32/basicshapes.quadrat.png cmd/32/square.png +cmd/32/flowchartshapes.flowchart-process.png cmd/32/square.png + +cmd/lc_basicshapes.quadrat.png cmd/lc_square.png +cmd/lc_flowchartshapes.flowchart-process.png cmd/lc_square.png + +cmd/sc_basicshapes.quadrat.png cmd/sc_square.png +cmd/sc_flowchartshapes.flowchart-process.png cmd/sc_square.png + +# Sort +cmd/32/ordercrit.png cmd/32/datasort.png +cmd/32/sortdialog.png cmd/32/datasort.png +cmd/32/sortdown.png cmd/32/sortdescending.png +cmd/32/sortup.png cmd/32/sortascending.png +cmd/32/tablesort.png cmd/32/sortascending.png + +cmd/lc_ordercrit.png cmd/lc_datasort.png +cmd/lc_sortdialog.png cmd/lc_datasort.png +cmd/lc_sortdown.png cmd/lc_sortdescending.png +cmd/lc_sortup.png cmd/lc_sortascending.png +cmd/lc_tablesort.png cmd/lc_sortascending.png + +cmd/sc_ordercrit.png cmd/sc_datasort.png +cmd/sc_sortdialog.png cmd/sc_datasort.png +cmd/sc_sortdown.png cmd/sc_sortdescending.png +cmd/sc_sortup.png cmd/sc_sortascending.png +cmd/sc_tablesort.png cmd/sc_sortascending.png + +# Code +cmd/32/sourceview.png cmd/32/symbolshapes.brace-pair.png +cmd/lc_sourceview.png cmd/lc_symbolshapes.brace-pair.png +cmd/sc_sourceview.png cmd/sc_symbolshapes.brace-pair.png + +# Config +cmd/32/formatselection.png cmd/32/configuredialog.png +cmd/lc_formatselection.png cmd/lc_configuredialog.png +cmd/sc_formatselection.png cmd/sc_configuredialog.png + +# Hyphenation +cmd/32/hyphenation.png cmd/32/hyphenate.png +cmd/lc_hyphenation.png cmd/lc_hyphenate.png +cmd/sc_hyphenation.png cmd/sc_hyphenate.png + +# Currency +cmd/32/numberformatcurrency.png cmd/32/currencyfield.png +cmd/32/numberformatcurrencysimple.png cmd/32/currencyfield.png + +cmd/lc_numberformatcurrency.png cmd/lc_currencyfield.png +cmd/lc_numberformatcurrencysimple.png cmd/lc_currencyfield.png + +cmd/sc_numberformatcurrency.png cmd/sc_currencyfield.png +cmd/sc_numberformatcurrencysimple.png cmd/sc_currencyfield.png + +# Fontwork +cmd/32/fontworkshapetype.png cmd/32/fontwork.png +cmd/lc_fontworkshapetype.png cmd/lc_fontwork.png +cmd/sc_fontworkshapetype.png cmd/sc_fontwork.png + +# Ruler +cmd/32/rulermenu.png cmd/32/ruler.png +cmd/32/showruler.png cmd/32/ruler.png + +cmd/lc_rulermenu.png cmd/lc_ruler.png +cmd/lc_showruler.png cmd/lc_ruler.png + +cmd/sc_rulermenu.png cmd/sc_ruler.png +cmd/sc_showruler.png cmd/sc_ruler.png + +# Graphic Quality Color +cmd/32/outputqualitycolor.png cmd/32/insertgraphic.png +cmd/lc_outputqualitycolor.png cmd/lc_insertgraphic.png +cmd/sc_outputqualitycolor.png cmd/sc_insertgraphic.png + +# Show Formula +cmd/32/toggleformula.png cmd/32/dbviewfunctions.png +cmd/lc_toggleformula.png cmd/lc_dbviewfunctions.png +cmd/sc_toggleformula.png cmd/sc_dbviewfunctions.png + +# Axis +cmd/32/toggleaxisdescr.png cmd/32/helplinesvisible.png +cmd/lc_toggleaxisdescr.png cmd/lc_helplinesvisible.png +cmd/sc_toggleaxisdescr.png cmd/sc_helplinesvisible.png + +# Grid +cmd/32/gridmenu.png cmd/32/gridvisible.png +cmd/32/insertgridcontrol.png cmd/32/grid.png + +cmd/lc_gridmenu.png cmd/lc_gridvisible.png +cmd/lc_insertgridcontrol.png cmd/lc_grid.png + +cmd/sc_gridmenu.png cmd/sc_gridvisible.png +cmd/sc_insertgridcontrol.png cmd/sc_grid.png + +# Crop +cmd/32/grafattrcrop.png cmd/32/crop.png +cmd/lc_grafattrcrop.png cmd/lc_crop.png +cmd/sc_grafattrcrop.png cmd/sc_crop.png + +# Extrusion Rotate +cmd/32/rulerrows.png cmd/32/extrusiontiltleft.png +cmd/32/rulerrowsvertical.png cmd/32/extrusiontiltright.png + +cmd/lc_rulerrows.png cmd/lc_extrusiontiltleft.png +cmd/lc_rulerrowsvertical.png cmd/lc_extrusiontiltright.png + +cmd/sc_rulerrows.png cmd/sc_extrusiontiltleft.png +cmd/sc_rulerrowsvertical.png cmd/sc_extrusiontiltright.png + +# Light +svx/res/lightofffrombottom_22.png svx/res/light.png +svx/res/lightofffrombottomleft_22.png svx/res/light.png +svx/res/lightofffrombottomright_22.png svx/res/light.png +svx/res/lightofffromleft_22.png svx/res/light.png +svx/res/lightofffromright_22.png svx/res/light.png +svx/res/lightofffromtop_22.png svx/res/light.png +svx/res/lightofffromtopleft_22.png svx/res/light.png +svx/res/lightofffromtopright_22.png svx/res/light.png +svx/res/lightonfrombottom_22.png svx/res/lighton.png +svx/res/lightonfrombottomleft_22.png svx/res/lighton.png +svx/res/lightonfrombottomright_22.png svx/res/lighton.png +svx/res/lightonfromleft_22.png svx/res/lighton.png +svx/res/lightonfromright_22.png svx/res/lighton.png +svx/res/lightonfromtop_22.png svx/res/lighton.png +svx/res/lightonfromtopleft_22.png svx/res/lighton.png +svx/res/lightonfromtopright_22.png svx/res/lighton.png +svx/res/legtyp1.png cmd/sc_calloutshapes.line-callout-3.png +svx/res/legtyp2.png cmd/sc_calloutshapes.line-callout-1.png +svx/res/legtyp3.png cmd/sc_calloutshapes.line-callout-2.png + +# 3d +svx/res/3dgeo.png cmd/sc_diagramaxisxyz.png +svx/res/3drepres.png cmd/sc_fillshadow.png +svx/res/3dtextur.png cmd/sc_graphicfilterpopart.png +svx/res/3dlight.png svx/res/lighton.png +svx/res/objects.png cmd/sc_objectcatalog.png + +# Presentation +cmd/32/diaauto.png cmd/32/dia.png +cmd/lc_diaauto.png cmd/lc_dia.png +cmd/sc_diaauto.png cmd/sc_dia.png + +# Style +cmd/32/editstyled.png cmd/32/editstyle.png +cmd/32/loadstyles.png cmd/32/open.png +cmd/32/viewsidebarstyles.png cmd/32/designerdialog.png + +cmd/lc_editstyled.png cmd/lc_editstyle.png +cmd/lc_loadstyles.png cmd/lc_open.png +cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png + +cmd/sc_editstyled.png cmd/sc_editstyle.png +cmd/sc_loadstyles.png cmd/sc_open.png +cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png + +# Outline +cmd/32/outlinedown.png cmd/32/movedown.png +cmd/32/outlineleft.png cmd/32/incrementlevel.png +cmd/32/outlineright.png cmd/32/decrementlevel.png +cmd/32/outlineup.png cmd/32/moveup.png + +cmd/lc_outlinedown.png cmd/lc_movedown.png +cmd/lc_outlineleft.png cmd/lc_incrementlevel.png +cmd/lc_outlineright.png cmd/lc_decrementlevel.png +cmd/lc_outlineup.png cmd/lc_moveup.png + +cmd/sc_outlinedown.png cmd/sc_movedown.png +cmd/sc_outlineleft.png cmd/sc_incrementlevel.png +cmd/sc_outlineright.png cmd/sc_decrementlevel.png +cmd/sc_outlineup.png cmd/sc_moveup.png + +# Index +cmd/32/indexesmenu.png cmd/32/insertindexesentry.png +cmd/32/insertfootnotesmenu.png cmd/32/insertfootnote.png + +cmd/lc_indexesmenu.png cmd/lc_insertindexesentry.png +cmd/lc_insertfootnotesmenu.png cmd/lc_insertfootnote.png + +cmd/sc_indexesmenu.png cmd/sc_insertindexesentry.png +cmd/sc_insertfootnotesmenu.png cmd/sc_insertfootnote.png + +# Mirror +cmd/32/fliphorizontal.png cmd/32/mirror.png +cmd/32/flipmenu.png cmd/32/mirror.png +cmd/32/flipvertical.png cmd/32/mirrorvert.png +cmd/32/mirrorhorz.png cmd/32/mirror.png +cmd/32/objectmirrorhorizontal.png cmd/32/mirror.png +cmd/32/objectmirrorvertical.png cmd/32/mirrorvert.png + +cmd/lc_fliphorizontal.png cmd/lc_mirror.png +cmd/lc_flipmenu.png cmd/lc_mirror.png +cmd/lc_flipvertical.png cmd/lc_mirrorvert.png +cmd/lc_mirrorhorz.png cmd/lc_mirror.png +cmd/lc_objectmirrorhorizontal.png cmd/lc_mirror.png +cmd/lc_objectmirrorvertical.png cmd/lc_mirrorvert.png + +cmd/sc_fliphorizontal.png cmd/sc_mirror.png +cmd/sc_flipmenu.png cmd/sc_mirror.png +cmd/sc_flipvertical.png cmd/sc_mirrorvert.png +cmd/sc_mirrorhorz.png cmd/sc_mirror.png +cmd/sc_objectmirrorhorizontal.png cmd/sc_mirror.png +cmd/sc_objectmirrorvertical.png cmd/sc_mirrorvert.png + +# Connector +cmd/32/connectorcircles.png cmd/32/connector.png +cmd/32/connectorcurvecircles.png cmd/32/connectorcurve.png +cmd/32/connectorlinecircles.png cmd/32/connectorline.png +cmd/32/connectorlinescircles.png cmd/32/connector.png +cmd/32/connectortoolbox.png cmd/32/connector.png + +cmd/lc_connectorcircles.png cmd/lc_connector.png +cmd/lc_connectorcurvecircles.png cmd/lc_connectorcurve.png +cmd/lc_connectorlinecircles.png cmd/lc_connectorline.png +cmd/lc_connectorlinescircles.png cmd/lc_connector.png +cmd/lc_connectortoolbox.png cmd/lc_connector.png + +cmd/sc_connectorcircles.png cmd/sc_connector.png +cmd/sc_connectorcurvecircles.png cmd/sc_connectorcurve.png +cmd/sc_connectorlinecircles.png cmd/sc_connectorline.png +cmd/sc_connectorlinescircles.png cmd/sc_connector.png +cmd/sc_connectortoolbox.png cmd/sc_connector.png + +# Time +cmd/32/numberformattime.png cmd/32/timefield.png +cmd/32/rehearsetimings.png cmd/32/diatime.png +cmd/lc_numberformattime.png cmd/lc_timefield.png +cmd/lc_rehearsetimings.png cmd/lc_diatime.png +cmd/sc_numberformattime.png cmd/sc_timefield.png +cmd/sc_rehearsetimings.png cmd/sc_diatime.png + +# Arrange +cmd/32/arrangeframemenu.png cmd/32/bringtofront.png +cmd/32/arrangemenu.png cmd/32/bringtofront.png + +cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png +cmd/lc_arrangemenu.png cmd/lc_bringtofront.png + +cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png +cmd/sc_arrangemenu.png cmd/sc_bringtofront.png + +# Reload +cmd/32/draw.png cmd/32/reload.png +cmd/32/refresh.png cmd/32/reload.png +cmd/32/repaginate.png cmd/32/insertpagenumberfield.png +cmd/32/updateall.png cmd/32/reload.png +cmd/32/updateallindexes.png cmd/32/insertmultiindex.png +cmd/32/updatealllinks.png cmd/32/inserthyperlink.png +cmd/32/updatecharts.png cmd/32/drawchart.png +cmd/32/updatefields.png cmd/32/addfield.png +cmd/32/updatemenu.png cmd/32/reload.png + +cmd/lc_draw.png cmd/lc_reload.png +cmd/lc_refresh.png cmd/lc_reload.png +cmd/lc_repaginate.png cmd/lc_insertpagenumberfield.png +cmd/lc_updateall.png cmd/lc_reload.png +cmd/lc_updateallindexes.png cmd/lc_insertmultiindex.png +cmd/lc_updatealllinks.png cmd/lc_inserthyperlink.png +cmd/lc_updatecharts.png cmd/lc_drawchart.png +cmd/lc_updatefields.png cmd/lc_addfield.png +cmd/lc_updatemenu.png cmd/lc_reload.png + +cmd/sc_draw.png cmd/sc_reload.png +cmd/sc_refresh.png cmd/sc_reload.png +cmd/sc_repaginate.png cmd/sc_insertpagenumberfield.png +cmd/sc_updateall.png cmd/sc_reload.png +cmd/sc_updateallindexes.png cmd/sc_insertmultiindex.png +cmd/sc_updatealllinks.png cmd/sc_inserthyperlink.png +cmd/sc_updatecharts.png cmd/sc_drawchart.png +cmd/sc_updatefields.png cmd/sc_addfield.png +cmd/sc_updatemenu.png cmd/sc_reload.png + +# Select +cmd/32/drawselect.png cmd/32/selectobject.png +cmd/32/selectmode.png cmd/32/selectobject.png + +cmd/lc_drawselect.png cmd/lc_selectobject.png +cmd/lc_selectmode.png cmd/lc_selectobject.png + +cmd/sc_drawselect.png cmd/sc_selectobject.png +cmd/sc_selectmode.png cmd/sc_selectobject.png + +# Database +cmd/32/dbdtableedit.png cmd/32/dbtableedit.png + +cmd/lc_dbdtableedit.png cmd/lc_dbtableedit.png + +cmd/sc_dbdtableedit.png cmd/sc_dbtableedit.png + +# Browse +cmd/32/browsebackward cmd/32/prevrecord.png +cmd/32/browseforward.png cmd/32/nextrecord.png + +cmd/lc_browsebackward cmd/lc_prevrecord.png +cmd/lc_browseforward.png cmd/lc_nextrecord.png + +cmd/sc_browsebackward cmd/lc_prevrecord.png +cmd/sc_browseforward.png cmd/sc_nextrecord.png + +# Macro + +cmd/32/insertscript.png cmd/32/choosemacro.png +cmd/32/macrodialog.png cmd/32/scriptorganizer.png +cmd/32/macroorganizer.png cmd/32/scriptorganizer.png +cmd/32/macrosmenu.png cmd/32/choosemacro.png +cmd/32/toolsmacroedit.png cmd/32/basicideappear.png + +cmd/lc_insertscript.png cmd/lc_choosemacro.png +cmd/lc_macrodialog.png cmd/lc_scriptorganizer.png +cmd/lc_macroorganizer.png cmd/lc_scriptorganizer.png +cmd/lc_macrosmenu.png cmd/lc_choosemacro.png +cmd/lc_toolsmacroedit.png cmd/lc_basicideappear.png + +cmd/sc_insertscript.png cmd/sc_choosemacro.png +cmd/sc_macrodialog.png cmd/sc_scriptorganizer.png +cmd/sc_macroorganizer.png cmd/sc_scriptorganizer.png +cmd/sc_macrosmenu.png cmd/sc_choosemacro.png +cmd/sc_toolsmacroedit.png cmd/sc_basicideappear.png + +# Help +cmd/32/donation.png cmd/32/currencyfield.png +cmd/32/helperdialog.png cmd/32/helpindex.png +cmd/32/questionanswers.png cmd/32/browseview.png +cmd/32/sendfeedback.png cmd/32/insertenvelope.png + +cmd/lc_donation.png cmd/lc_currencyfield.png +cmd/lc_helperdialog.png cmd/lc_helpindex.png +cmd/lc_questionanswers.png cmd/lc_browseview.png +cmd/lc_sendfeedback.png cmd/lc_insertenvelope.png + +cmd/sc_about.png res/mainapp_16_8.png +cmd/sc_donation.png cmd/sc_currencyfield.png +cmd/sc_helperdialog.png cmd/sc_helpindex.png +cmd/sc_questionanswers.png cmd/sc_browseview.png +cmd/sc_sendfeedback.png cmd/sc_insertenvelope.png + +# Math +cmd/32/symbolcatalogue.png cmd/32/insertsymbol.png +cmd/lc_symbolcatalogue.png cmd/lc_insertsymbol.png +cmd/sc_symbolcatalogue.png cmd/sc_insertsymbol.png + +# Plugin +cmd/32/pluginsactive.png cmd/32/insertplugin.png +cmd/lc_pluginsactive.png cmd/lc_insertplugin.png +cmd/sc_pluginsactive.png cmd/sc_insertplugin.png + +# Table +cmd/32/setoptimalcolumnwidthdirect.png cmd/32/setoptimalcolumnwidth.png +cmd/32/starchartdialog.png cmd/32/drawchart.png +cmd/32/tableautofitmenu.png cmd/32/setoptimalrowheight.png +cmd/32/tabledeletemenu.png cmd/32/deletetable.png +cmd/32/tableinsertmenu.png cmd/32/insertrowsafter.png +cmd/32/tablemenu.png cmd/32/tabledialog.png +cmd/32/tableselectmenu.png cmd/32/selecttable.png + +cmd/lc_setoptimalcolumnwidthdirect.png cmd/lc_setoptimalcolumnwidth.png +cmd/lc_starchartdialog.png cmd/lc_drawchart.png +cmd/lc_tableautofitmenu.png cmd/lc_setoptimalrowheight.png +cmd/lc_tabledeletemenu.png cmd/lc_deletetable.png +cmd/lc_tableinsertmenu.png cmd/lc_insertrowsafter.png +cmd/lc_tablemenu.png cmd/lc_tabledialog.png +cmd/lc_tableselectmenu.png cmd/lc_selecttable.png + +cmd/sc_setoptimalcolumnwidthdirect.png cmd/sc_setoptimalcolumnwidth.png +cmd/sc_starchartdialog.png cmd/sc_drawchart.png +cmd/sc_tableautofitmenu.png cmd/sc_setoptimalrowheight.png +cmd/sc_tabledeletemenu.png cmd/sc_deletetable.png +cmd/sc_tableinsertmenu.png cmd/sc_insertrowsafter.png +cmd/sc_tablemenu.png cmd/sc_tabledialog.png +cmd/sc_tableselectmenu.png cmd/sc_selecttable.png + +# text background colour Impress/Draw +cmd/32/charbackcolor.png cmd/32/backcolor.png +cmd/32/setdefault.png cmd/32/resetattributes.png + +cmd/lc_charbackcolor.png cmd/lc_backcolor.png +cmd/lc_setdefault.png cmd/lc_resetattributes.png + +cmd/sc_charbackcolor.png cmd/sc_backcolor.png +cmd/sc_setdefault.png cmd/sc_resetattributes.png + +# Impress +sfx2/res/symphony/sidebar-transition-small.png cmd/sc_slidechangewindow.png +sfx2/res/symphony/sidebar-transition-large.png cmd/lc_slidechangewindow.png + +# Toggle graphics visibility in Writer +cmd/32/showgraphics.png cmd/32/graphic.png +cmd/lc_showgraphics.png cmd/lc_graphic.png +cmd/sc_showgraphics.png cmd/sc_graphic.png + +# navigator +cmd/32/dsbdocumentdatasource.png cmd/32/insertexternaldatasource.png +cmd/32/dsbinsertcolumns.png cmd/32/insertfieldctrl.png +cmd/32/inserttoolbox.png cmd/32/dataimport.png +cmd/32/savesimple.png cmd/32/save.png +cmd/32/sbabrwinsert.png cmd/32/insertfieldctrl.png +cmd/32/showbrowser.png cmd/32/controlproperties.png +cmd/32/showpropbrowser.png cmd/32/controlproperties.png + +cmd/lc_dsbdocumentdatasource.png cmd/lc_insertexternaldatasource.png +cmd/lc_dsbinsertcolumns.png cmd/lc_insertfieldctrl.png +cmd/lc_inserttoolbox.png cmd/lc_dataimport.png +cmd/lc_savesimple.png cmd/lc_save.png +cmd/lc_sbabrwinsert.png cmd/lc_insertfieldctrl.png +cmd/lc_showbrowser.png cmd/lc_controlproperties.png +cmd/lc_showpropbrowser.png cmd/lc_controlproperties.png + +cmd/sc_dsbdocumentdatasource.png cmd/sc_insertexternaldatasource.png +cmd/sc_dsbinsertcolumns.png cmd/sc_insertfieldctrl.png +cmd/sc_inserttoolbox.png cmd/sc_dataimport.png +cmd/sc_savesimple.png cmd/sc_save.png +cmd/sc_sbabrwinsert.png cmd/sc_insertfieldctrl.png +cmd/sc_showbrowser.png cmd/sc_controlproperties.png +cmd/sc_showpropbrowser.png cmd/sc_controlproperties.png + +# Slide command aliases +cmd/32/insertdatefieldfix.png cmd/32/datefield.png +cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagenumber.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagesfield.png cmd/32/insertpagecountfield.png +cmd/32/insertpagetitlefield.png cmd/32/inserttitlefield.png +cmd/32/insertslidefield.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidenumber.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidesfield.png cmd/32/insertslidecountfield.png +cmd/32/inserttimefieldfix.png cmd/32/timefield.png + +cmd/lc_insertdatefieldfix.png cmd/lc_datefield.png +cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagenumber.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagesfield.png cmd/lc_insertpagecountfield.png +cmd/lc_insertpagetitlefield.png cmd/lc_inserttitlefield.png +cmd/lc_insertslidefield.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidenumber.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidesfield.png cmd/lc_insertslidecountfield.png +cmd/lc_inserttimefieldfix.png cmd/lc_timefield.png + +cmd/sc_insertdatefieldfix.png cmd/sc_datefield.png +cmd/sc_insertpagefield.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagenumber.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagesfield.png cmd/sc_insertpagecountfield.png +cmd/sc_insertpagetitlefield.png cmd/sc_inserttitlefield.png +cmd/sc_insertslidefield.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidenumber.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidesfield.png cmd/sc_insertslidecountfield.png +cmd/sc_inserttimefieldfix.png cmd/sc_timefield.png + +# database +database/linked_text_table.png dbaccess/res/linked_text_table.png + +# dbaccess +# ============================================== +dbaccess/res/all_left.png cmd/sc_firstrecord.png +dbaccess/res/all_right.png cmd/sc_lastrecord.png +dbaccess/res/db.png cmd/sc_changedatabasefield.png +dbaccess/res/exerror.png cmd/sc_cancel.png +dbaccess/res/exinfo.png cmd/sc_helpindex.png +dbaccess/res/form_16.png cmd/sc_dbviewforms.png +dbaccess/res/forms_32.png cmd/32/dbviewforms.png +dbaccess/res/jo01.png dbaccess/res/pkey.png +dbaccess/res/lc036.png cmd/lc_dbnewreport.png +dbaccess/res/lc037.png cmd/lc_dbreportdelete.png +dbaccess/res/lc038.png cmd/lc_dbreportedit.png +dbaccess/res/nu07.png cmd/sc_ok.png +dbaccess/res/nu08.png cmd/sc_cancel.png +dbaccess/res/one_left.png cmd/sc_prevrecord.png +dbaccess/res/one_right.png cmd/sc_nextrecord.png +dbaccess/res/queries_32.png cmd/32/dbviewqueries.png +dbaccess/res/report_16.png cmd/sc_dbviewreports.png +dbaccess/res/reports_32.png cmd/32/dbviewreports.png +dbaccess/res/sc036.png cmd/sc_dbnewreport.png +dbaccess/res/sc037.png cmd/sc_dbreportdelete.png +dbaccess/res/sc038.png cmd/sc_dbreportedit.png +dbaccess/res/sortdown.png cmd/sc_downsearch.png +dbaccess/res/sortup.png cmd/sc_upsearch.png +dbaccess/res/tables_32.png cmd/32/dbviewtables.png +res/queries_32.png cmd/32/dbviewqueries.png +res/reports_32.png cmd/32/dbviewreports.png +res/tables_32.png cmd/32/dbviewtables.png + +# desktop +# ============================================== +desktop/res/caution_16.png dbaccess/res/exwarning.png +desktop/res/extension_16.png cmd/sc_insertplugin.png +desktop/res/extension_32.png cmd/32/insertplugin.png +desktop/res/info_16.png cmd/sc_helpindex.png +desktop/res/lock_16.png cmd/sc_cellprotection.png + +# extensions +# ============================================== +extensions/res/arrow.png cmd/sc_nextrecord.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png + +# formula +# ============================================== +formula/res/faperror.png cmd/sc_cancel.png +formula/res/fapok.png cmd/sc_ok.png +formula/res/fapopen.png cmd/sc_open.png +formula/res/fx.png cmd/sc_dbviewfunctions.png + +# fpicker +# ============================================== +fpicker/res/fp011.png res/lc06303.png +fpicker/res/fp014.png res/fp015.png +fpicker/res/fp016.png desktop/res/shared_16.png + +# framework +# ============================================== +framework/res/addtemplate_32.png cmd/32/newdoc.png +framework/res/arrow.png cmd/sc_nextrecord.png +framework/res/extension.png cmd/lc_insertplugin.png +framework/res/folder_32.png cmd/32/open.png +framework/res/info_26.png cmd/lc_helpindex.png +framework/res/remote-documents.png cmd/32/openremote.png +framework/res/templates_32.png cmd/32/templatemanager.png + +# reportdesign +# ============================================== +reportdesign/res/report_16.png cmd/sc_dbviewreports.png +reportdesign/res/sc20557.png cmd/sc_cancel.png +reportdesign/res/sc30768.png cmd/sc_upsearch.png +reportdesign/res/sc30769.png cmd/sc_downsearch.png +reportdesign/res/sc30770.png cmd/sc_cancel.png +reportdesign/res/sortdown.png cmd/sc_downsearch.png +reportdesign/res/sortup.png cmd/sc_upsearch.png +reportdesign/res/sx11047.png cmd/sc_basicshapes.diamond.png +reportdesign/res/sx12452.png cmd/sc_animationeffects.png +reportdesign/res/sx12453.png cmd/sc_animationeffects.png +reportdesign/res/sx12454.png cmd/sc_alignright.png +reportdesign/res/sx12464.png cmd/sc_dbviewreports.png +reportdesign/res/sx12594.png cmd/sc_dbviewfunctions.png + +# res +# ============================================== +res/adrbook.png cmd/sc_viewdatasourcebrowser.png +res/browse.png cmd/sc_browseview.png +res/dir-clos.png cmd/sc_closedocs.png +res/dir-open.png cmd/sc_open.png +res/extension_plus_26.png cmd/lc_insertplugin.png +res/extension_plus_32.png cmd/32/insertplugin.png +res/fileopen.png cmd/sc_open.png +res/foldercl.png cmd/sc_closedocs.png +res/grafikei.png cmd/sc_graphic.png +res/hlinettp.png cmd/32/inserthyperlink.png +res/hlmailtp.png cmd/32/insertenvelope.png +res/im30820.png cmd/sc_scriptorganizer.png +res/im30821.png cmd/sc_choosemacro.png +res/im30826.png res/odm_16_8.png +res/info.png cmd/lc_helpindex.png +res/info_16.png cmd/sc_helpindex.png +res/lc05504.png cmd/lc_print.png +res/lc05509.png cmd/lc_print.png +res/lc05539.png cmd/lc_designerdialog.png +res/lc05678.png cmd/lc_inserthyperlinkcontrol.png +res/lc05700.png cmd/lc_redo.png +res/lc05701.png cmd/lc_undo.png +res/lc05710.png cmd/lc_cut.png +res/lc05711.png cmd/lc_copy.png +res/lc05961.png cmd/lc_recsearch.png +res/lc06300.png cmd/lc_nextrecord.png +res/lc06301.png cmd/lc_prevrecord.png +res/lc10711.png cmd/lc_removefiltersort.png +res/lc10715.png cmd/lc_datafilterstandardfilter.png +res/lc10716.png cmd/lc_datafilterautofilter.png +res/lc10851.png cmd/lc_inserthyperlinkcontrol.png +res/lc10853.png cmd/lc_recsearch.png +res/library_16.png cmd/sc_viewdatasourcebrowser.png +res/lx03131.png res/lx03126.png +res/lx03137.png res/lx03125.png +res/lx03139.png cmd/lc_newhtmldoc.png +res/lx03139_32.png cmd/32/newhtmldoc.png +res/lx03140.png res/lx03125.png +res/lx03144.png res/odf_32_8.png +res/lx03145.png res/otf_32_8.png +res/lx03150.png cmd/32/showsinglepage.png +res/lx03152.png res/lx03125.png +res/lx03153.png res/lx03125.png +res/lx03154.png res/lx03125.png +res/lx03155.png res/lx03125.png +res/lx03156.png res/odt_32_8.png +res/lx03158.png res/lx03125.png +res/lx03160.png res/odg_32_8.png +res/lx03164.png cmd/32/open.png +res/lx03165.png cmd/32/save.png +res/lx03167.png cmd/32/openremote.png +res/lx03188.png cmd/32/dbviewtables.png +res/lx03189.png cmd/32/open.png +res/lx03202.png cmd/32/dbviewqueries.png +res/lx03217.png res/odg_32_8.png +res/lx03218.png res/odg_32_8.png +res/lx03219.png res/lx03125.png +res/lx03220.png res/odg_32_8.png +res/lx03221.png res/odg_32_8.png +res/lx03222.png res/odg_32_8.png +res/lx03226.png res/odm_32_8.png +res/lx03227.png res/odg_32_8.png +res/lx03228.png res/otg_32_8.png +res/lx03239.png cmd/32/dbrelationdesign.png +res/lx03245.png res/odb_24_8.png +res/lx03245_32.png res/odb_32_8.png +res/lx03246.png res/odg_24_8.png +res/lx03246_32.png res/odg_32_8.png +res/lx03247.png res/odf_24_8.png +res/lx03247_32.png res/odf_32_8.png +res/lx03248.png res/odm_24_8.png +res/lx03248_32.png res/odm_32_8.png +res/lx03249.png res/odp_24_8.png +res/lx03249_32.png res/odp_32_8.png +res/lx03250.png res/ods_24_8.png +res/lx03250_32.png res/ods_32_8.png +res/lx03251.png res/odt_24_8.png +res/lx03251_32.png res/odt_32_8.png +res/lx03252.png res/otg_32_8.png +res/lx03253.png res/otp_32_8.png +res/lx03254.png res/ots_32_8.png +res/lx03255.png res/ott_24_8.png +res/lx03255_32.png res/ott_32_8.png +res/lx03256.png cmd/32/insertplugin.png +res/mainapp_16.png res/mainapp_16_8.png +res/mainapp_32.png res/mainapp_32_8.png +res/newdoc.png cmd/sc_closedocs.png +res/oleobj.png cmd/32/insertobject.png +res/plugin.png cmd/32/insertplugin.png +res/printeradmin_16_8.png res/printeradmin_16.png +res/printeradmin_32_8.png res/printeradmin_32.png +res/reload.png cmd/sc_reload.png +res/sc05500.png cmd/sc_adddirect.png +res/sc05501.png cmd/sc_open.png +res/sc05502.png cmd/sc_saveas.png +res/sc05504.png cmd/sc_print.png +res/sc05508.png cmd/sc_reload.png +res/sc05509.png cmd/sc_print.png +res/sc05554.png cmd/sc_backgroundcolor.png +res/sc05555.png cmd/sc_stylenewbyexample.png +res/sc05556.png cmd/sc_styleupdatebyexample.png +res/sc05678.png cmd/sc_inserthyperlink.png +res/sc05711.png cmd/sc_copy.png +res/sc05961.png cmd/sc_recsearch.png +res/sc06300.png cmd/sc_nextrecord.png +res/sc06301.png cmd/sc_prevrecord.png +res/sc10223.png cmd/sc_position.png +res/sc10224.png cmd/sc_size.png +res/sc10350.png cmd/sc_bmpmask.png +res/sc10711.png cmd/sc_removefiltersort.png +res/sc10712.png cmd/sc_sortascending.png +res/sc10713.png cmd/sc_sortdescending.png +res/sc10715.png cmd/sc_datafilterstandardfilter.png +res/sc10716.png cmd/sc_datafilterautofilter.png +res/sc10851.png cmd/sc_inserthyperlink.png +res/sc10853.png cmd/sc_recsearch.png +res/sc10854.png res/target.png +res/sc10863.png cmd/sc_grafluminance.png +res/sc10864.png cmd/sc_grafcontrast.png +res/sc10865.png cmd/sc_grafred.png +res/sc10866.png cmd/sc_grafgreen.png +res/sc10867.png cmd/sc_grafblue.png +res/sc10868.png cmd/sc_grafgamma.png +res/sc10869.png cmd/sc_graftransparence.png +res/sx03137.png res/sx03125.png +res/sx03139.png cmd/sc_newhtmldoc.png +res/sx03140.png res/sx03125.png +res/sx03141.png cmd/32/closedocs.png +res/sx03144.png res/odf_16_8.png +res/sx03145.png res/otf_16_8.png +res/sx03150.png cmd/sc_showsinglepage.png +res/sx03152.png res/sx03125.png +res/sx03153.png res/sx03125.png +res/sx03154.png res/sx03125.png +res/sx03155.png res/sx03125.png +res/sx03156.png res/odt_16_8.png +res/sx03158.png res/sx03125.png +res/sx03160.png res/odg_16_8.png +res/sx03164.png res/harddisk_16.png +res/sx03165.png cmd/sc_save.png +res/sx03167.png cmd/sc_openremote.png +res/sx03188.png cmd/sc_dbviewtables.png +res/sx03189.png cmd/sc_closedocs.png +res/sx03202.png cmd/sc_dbviewqueries.png +res/sx03217.png res/odg_16_8.png +res/sx03218.png res/odg_16_8.png +res/sx03219.png res/sx03125.png +res/sx03220.png res/odg_16_8.png +res/sx03221.png res/odg_16_8.png +res/sx03222.png res/odg_16_8.png +res/sx03226.png res/odm_16_8.png +res/sx03227.png res/odg_16_8.png +res/sx03228.png res/otg_16_8.png +res/sx03239.png cmd/sc_dbrelationdesign.png +res/sx03245.png res/odb_16_8.png +res/sx03246.png res/odg_16_8.png +res/sx03247.png res/odf_16_8.png +res/sx03248.png res/odm_16_8.png +res/sx03249.png res/odp_16_8.png +res/sx03250.png res/ods_16_8.png +res/sx03251.png res/odt_16_8.png +res/sx03252.png res/otg_16_8.png +res/sx03253.png res/otp_16_8.png +res/sx03254.png res/ots_16_8.png +res/sx03255.png res/ott_16_8.png +res/sx03256.png cmd/sc_insertplugin.png +res/sx10144.png cmd/sc_checkbox.png +res/sx10593.png cmd/sc_switchxformsdesignmode.png +res/sx10594.png cmd/sc_pushbutton.png +res/sx10595.png cmd/sc_radiobutton.png +res/sx10596.png cmd/sc_checkbox.png +res/sx10597.png cmd/sc_label.png +res/sx10598.png cmd/sc_groupbox.png +res/sx10599.png cmd/sc_edit.png +res/sx10600.png cmd/sc_listbox.png +res/sx10601.png cmd/sc_combobox.png +res/sx10603.png cmd/sc_grid.png +res/sx10604.png cmd/sc_imagebutton.png +res/sx10605.png cmd/sc_filecontrol.png +res/sx10607.png cmd/sc_navigationbar.png +res/sx10704.png cmd/sc_datefield.png +res/sx10705.png cmd/sc_timefield.png +res/sx10706.png cmd/sc_numberformatstandard.png +res/sx10707.png cmd/sc_currencyfield.png +res/sx10708.png cmd/sc_patternfield.png +res/sx10710.png cmd/sc_imagecontrol.png +res/sx10715.png cmd/sc_datafilterstandardfilter.png +res/sx10728.png cmd/sc_formattedfield.png +res/sx10757.png cmd/sc_timefield.png +res/sx10768.png cmd/sc_scrollbar.png +res/sx10769.png cmd/sc_spinbutton.png +res/sx18002.png res/plus.png +res/sx18003.png res/minus.png +res/sx18013.png res/dialogfolder_16.png + +# sc +# ============================================== +sc/res/date.png cmd/sc_datefield.png +sc/res/dropcopy.png cmd/sc_copy.png +sc/res/droplink.png cmd/sc_insertbookmark.png +sc/res/dropurl.png cmd/sc_inserthyperlinkcontrol.png +sc/res/file.png cmd/sc_open.png +sc/res/fx.png cmd/sc_dbviewfunctions.png +sc/res/lc26047.png cmd/lc_dbviewfunctions.png +sc/res/lc26048.png cmd/lc_autosum.png +sc/res/lc26050.png cmd/lc_cancel.png +sc/res/lc26051.png cmd/lc_ok.png +sc/res/na010.png sw/res/sc20234.png +sc/res/na011.png cmd/sc_ok.png +sc/res/na03.png cmd/sc_dataranges.png +sc/res/na05.png cmd/sc_upsearch.png +sc/res/na06.png cmd/sc_downsearch.png +sc/res/na07.png cmd/sc_thesaurus.png +sc/res/na09.png cmd/sc_animationeffects.png +sc/res/nc01.png cmd/sc_show.png +sc/res/nc02.png cmd/sc_addname.png +sc/res/nc03.png cmd/sc_changedatabasefield.png +sc/res/nc04.png cmd/sc_insertgraphic.png +sc/res/nc05.png cmd/sc_insertobject.png +sc/res/nc06.png cmd/sc_shownote.png +sc/res/nc07.png cmd/sc_insertbookmark.png +sc/res/nc08.png cmd/sc_insertdraw.png +sc/res/page.png cmd/sc_insertpagenumberfield.png +sc/res/pages.png cmd/sc_insertpagecountfield.png +sc/res/sc26047.png cmd/sc_dbviewfunctions.png +sc/res/sc26048.png cmd/sc_autosum.png +sc/res/sc26050.png cmd/sc_cancel.png +sc/res/sc26051.png cmd/sc_ok.png +sc/res/table.png cmd/sc_inserttable.png +sc/res/text.png cmd/sc_text.png +sc/res/time.png cmd/sc_timefield.png + +# sd +# ============================================== +sd/res/breakplayingblue_16.png cmd/sc_mediapause.png +sd/res/comments_indicator.png cmd/sc_shownote.png +sd/res/displaymode_handoutmaster.png cmd/32/handoutmode.png +sd/res/displaymode_notes.png cmd/32/notesmode.png +sd/res/displaymode_notesmaster.png cmd/32/notesmasterpage.png +sd/res/displaymode_outline.png cmd/32/outlinemode.png +sd/res/displaymode_slide.png cmd/32/normalmultipanegui.png +sd/res/displaymode_slidemaster.png cmd/32/slidemasterpage.png +sd/res/displaymode_slidesorter.png cmd/32/diamode.png +sd/res/graphic.png cmd/sc_graphic.png +sd/res/group.png cmd/sc_formatgroup.png +sd/res/nv010.png cmd/sc_inserthyperlink.png +sd/res/nv02.png cmd/sc_freeline_unfilled.png +sd/res/nv03.png cmd/sc_firstrecord.png +sd/res/nv04.png cmd/sc_prevrecord.png +sd/res/nv05.png cmd/sc_nextrecord.png +sd/res/nv06.png cmd/sc_lastrecord.png +sd/res/nv09.png cmd/sc_insertbookmark.png +sd/res/ole.png cmd/sc_insertobject.png +sd/res/page.png cmd/sc_adddirect.png +sd/res/pipette.png cmd/sc_bmpmask.png +sd/res/playblue_16.png cmd/sc_runbasic.png +sd/res/stopplayingblue_16.png cmd/sc_basicstop.png +sd/res/time_16.png cmd/sc_timefield.png +sd/res/waiticon.png cmd/sc_mediapause.png + +# sfx2 +# ============================================== +sfx2/res/actionaction012.png cmd/lc_recsearch.png +sfx2/res/actionaction013.png cmd/lc_optionstreedialog.png +sfx2/res/actiontemplates015.png cmd/lc_ok.png +sfx2/res/actiontemplates016.png cmd/lc_configuredialog.png +sfx2/res/actiontemplates018.png cmd/lc_delete.png +sfx2/res/actiontemplates019.png cmd/lc_editdoc.png +sfx2/res/actiontemplates020.png cmd/lc_exportto.png +sfx2/res/actionview010.png cmd/lc_dataimport.png +sfx2/res/actionview025.png cmd/lc_delete.png +sfx2/res/actionview026.png cmd/lc_openremote.png +sfx2/res/actionview028.png cmd/lc_save.png +sfx2/res/actionview030.png cmd/lc_open.png +sfx2/res/closedoc.png vcl/res/closedoc.png +sfx2/res/deleterow.png cmd/sc_cancel.png +sfx2/res/doccl.png cmd/sc_newdoc.png +sfx2/res/exec_action.png cmd/sc_optionstreedialog.png +sfx2/res/favourite.png cmd/sc_insertbookmark.png +sfx2/res/favourite_big.png cmd/lc_insertbookmark.png +sfx2/res/hlpdoc.png cmd/sc_documentation.png +sfx2/res/minus.png res/minus.png +sfx2/res/newex.png res/plus.png +sfx2/res/plus.png res/plus.png +sfx2/res/search.png cmd/sc_recsearch.png +sfx2/res/select.png cmd/sc_ok.png +sfx2/res/sortascending.png cmd/lc_sortascending.png +sfx2/res/styfam1.png cmd/sc_charfontname.png +sfx2/res/styfam2.png cmd/sc_controlcodes.png +sfx2/res/styfam3.png cmd/sc_linestyle.png +sfx2/res/styfam4.png cmd/sc_showsinglepage.png +sfx2/res/symphony/sidebar-3d-large.png cmd/lc_cube.png +sfx2/res/symphony/sidebar-3d-small.png cmd/sc_cube.png +sfx2/res/symphony/sidebar-animation-large.png cmd/lc_diaeffect.png +sfx2/res/symphony/sidebar-animation-small.png cmd/sc_diaeffect.png +sfx2/res/symphony/sidebar-colors-large.png cmd/lc_colorsettings.png +sfx2/res/symphony/sidebar-colors-small.png cmd/sc_colorsettings.png +sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png +sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-functions-large.png cmd/lc_dbviewfunctions.png +sfx2/res/symphony/sidebar-functions-small.png cmd/sc_dbviewfunctions.png +sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png +sfx2/res/symphony/sidebar-gallery-small.png cmd/sc_gallery.png +sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png +sfx2/res/symphony/sidebar-navigator-small.png cmd/sc_navigator.png +sfx2/res/symphony/sidebar-property-large.png cmd/lc_configuredialog.png +sfx2/res/symphony/sidebar-property-small.png cmd/sc_configuredialog.png +sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png +sfx2/res/symphony/sidebar-style-small.png cmd/sc_designerdialog.png +sfx2/res/symphony/sidebar-template-large.png cmd/lc_slidemasterpage.png +sfx2/res/symphony/sidebar-template-small.png cmd/sc_slidemasterpage.png + +# starmath +# ============================================== +starmath/res/at21717.png cmd/lc_bold.png +starmath/res/at21718.png cmd/lc_italic.png +starmath/res/at21719.png cmd/lc_scaletext.png +starmath/res/at21720.png cmd/lc_charfontname.png +starmath/res/im21108.png cmd/lc_outlineformat.png + +# svtools +# ============================================== +# FolderTree expanded icon +svtools/res/back_large.png cmd/lc_prevrecord.png +svtools/res/back_small.png cmd/sc_prevrecord.png +svtools/res/bmpfont.png cmd/color.png +svtools/res/ed06.png dbaccess/res/pkey.png +svtools/res/folder.png cmd/sc_closedocs.png +svtools/res/folderop.png cmd/sc_open.png +svtools/res/info_large.png cmd/lc_alignleft.png +svtools/res/info_small.png cmd/sc_alignleft.png +svtools/res/my_docs.png cmd/lc_open.png +svtools/res/new_doc.png cmd/lc_newdoc.png +svtools/res/preview_large.png cmd/lc_printpreview.png +svtools/res/preview_small.png cmd/sc_printpreview.png +svtools/res/prnfont.png cmd/sc_charfontname.png +svtools/res/samples.png cmd/lc_choosedesign.png +svtools/res/scalfont.png cmd/sc_scaletext.png +svtools/res/template.png cmd/lc_newdoc.png + +# svx +# ============================================== +svx/res/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/ColorModeBlackWhite_16x16.png cmd/sc_outputqualityblackwhite.png +svx/res/ColorModeGrey_16x16.png cmd/sc_outputqualitygrayscale.png +svx/res/apply.png cmd/sc_ok.png +svx/res/caution_11x16.png dbaccess/res/exwarning.png +svx/res/cd01.png cmd/sc_ok.png +svx/res/cd015.png cmd/sc_toggleobjectbeziermode.png +svx/res/cd016.png cmd/sc_beziermove.png +svx/res/cd017.png cmd/sc_bezierinsert.png +svx/res/cd018.png cmd/sc_bezierdelete.png +svx/res/cd020.png cmd/sc_undo.png +svx/res/cd021.png cmd/sc_redo.png +svx/res/cd025.png cmd/sc_autopilotmenu.png +svx/res/cd026.png cmd/sc_bmpmask.png +svx/res/cd05.png cmd/sc_selectobject.png +svx/res/cd06.png cmd/sc_rect.png +svx/res/cd07.png cmd/sc_ellipse.png +svx/res/cd08.png cmd/sc_polygon.png +svx/res/color.png cmd/sc_bmpmask.png +svx/res/colordlg.png cmd/sc_colorsettings.png +svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/fill_color.png cmd/sc_backgroundcolor.png +svx/res/filter3d.png cmd/sc_datafilterstandardfilter.png +svx/res/fontworkaligncentered_16.png cmd/sc_alignhorizontalcenter.png +svx/res/fontworkaligncentered_26.png cmd/lc_alignhorizontalcenter.png +svx/res/fontworkalignjustified_16.png cmd/sc_alignblock.png +svx/res/fontworkalignjustified_26.png cmd/lc_alignblock.png +svx/res/fontworkalignleft_16.png cmd/sc_alignleft.png +svx/res/fontworkalignleft_26.png cmd/lc_alignleft.png +svx/res/fontworkalignright_16.png cmd/sc_alignright.png +svx/res/fontworkalignright_26.png cmd/lc_alignright.png +svx/res/fontworkalignstretch_16.png cmd/sc_text_marquee.png +svx/res/fontworkalignstretch_26.png cmd/lc_text_marquee.png +svx/res/fw07.png cmd/sc_alignleft.png +svx/res/fw08.png cmd/sc_alignhorizontalcenter.png +svx/res/fw09.png cmd/sc_alignright.png +svx/res/graphic.png cmd/sc_graphic.png +svx/res/id01.png cmd/sc_ok.png +svx/res/id018.png cmd/sc_choosemacro.png +svx/res/id019.png cmd/sc_modifyframe.png +svx/res/id02.png cmd/sc_open.png +svx/res/id03.png cmd/sc_save.png +svx/res/id030.png cmd/sc_toggleobjectbeziermode.png +svx/res/id031.png cmd/sc_beziermove.png +svx/res/id032.png cmd/sc_bezierinsert.png +svx/res/id033.png cmd/sc_bezierdelete.png +svx/res/id04.png cmd/sc_selectobject.png +svx/res/id040.png cmd/sc_undo.png +svx/res/id041.png cmd/sc_redo.png +svx/res/id05.png cmd/sc_rect.png +svx/res/id06.png cmd/sc_ellipse.png +svx/res/id07.png cmd/sc_polygon.png +svx/res/id08.png cmd/sc_freeline.png +svx/res/lngcheck.png cmd/sc_spelling.png +svx/res/luminanc.png cmd/sc_graphicfilterinvert.png +svx/res/notcertificate_16.png xmlsecurity/res/notcertificate_16.png +svx/res/nu01.png cmd/sc_ok.png +svx/res/nu02.png cmd/sc_cancel.png +svx/res/nu03.png cmd/sc_shownote.png +svx/res/nu08.png cmd/sc_cancel.png +svx/res/ole.png cmd/sc_insertobject.png +svx/res/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/parallel_16.png cmd/sc_extrusiondepthfloater.png +svx/res/persp3d.png cmd/sc_extrusiondirectionfloater.png +svx/res/perspective_16.png cmd/sc_extrusiondirectionfloater.png +svx/res/reload.png cmd/sc_reload.png +svx/res/reloads.png cmd/sc_reload.png +svx/res/rotate3d.png cmd/sc_convertinto3dlathe.png +svx/res/signet_11x16.png xmlsecurity/res/signet_11x16.png +svx/res/symphony/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/symphony/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/symphony/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/symphony/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/symphony/decrease_font.png cmd/sc_shrink.png +svx/res/symphony/enlarge_font.png cmd/sc_grow.png +svx/res/symphony/fill_color.png cmd/sc_backgroundcolor.png +svx/res/symphony/lpselected-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_15.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_5.png cmd/lc_spacepara15.png +svx/res/symphony/lpselected-spacing-2.png cmd/lc_spacepara2.png +svx/res/symphony/lpsmall-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/para_numbullet01.png cmd/sc_defaultbullet.png +svx/res/symphony/para_numbullet02.png cmd/sc_defaultnumbering.png +svx/res/symphony/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/symphony/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/symphony/sch_backgroundcolor.png cmd/sc_backgroundcolor.png +svx/res/symphony/spacing3.png cmd/sc_spacepara1.png +svx/res/time.png cmd/sc_timefield.png +svx/res/wireframe_16.png cmd/sc_window3d.png + +# sw +# ============================================== +# res +sw/res/lc20556.png cmd/lc_dbviewfunctions.png +sw/res/lc20557.png cmd/lc_cancel.png +sw/res/lc20558.png cmd/lc_ok.png +sw/res/nc20001.png cmd/sc_inserttable.png +sw/res/nc20002.png cmd/sc_insertframe.png +sw/res/nc20003.png cmd/sc_insertgraphic.png +sw/res/nc20004.png cmd/sc_insertobject.png +sw/res/nc20005.png cmd/sc_insertbookmark.png +sw/res/nc20006.png cmd/sc_insertsection.png +sw/res/nc20007.png cmd/sc_inserthyperlink.png +sw/res/nc20008.png cmd/sc_insertreferencefield.png +sw/res/nc20009.png cmd/sc_insertindexesentry.png +sw/res/nc20010.png cmd/sc_shownote.png +sw/res/nc20011.png cmd/sc_insertdraw.png +sw/res/sc20171.png cmd/sc_downsearch.png +sw/res/sc20172.png cmd/sc_prevrecord.png +sw/res/sc20173.png cmd/sc_nextrecord.png +sw/res/sc20174.png cmd/sc_upsearch.png +sw/res/sc20175.png cmd/sc_nextrecord.png +sw/res/sc20177.png cmd/sc_insertfooter.png +sw/res/sc20179.png cmd/sc_insertheader.png +sw/res/sc20182.png cmd/sc_toggleanchortype.png +sw/res/sc20183.png cmd/sc_setreminder.png +sw/res/sc20186.png cmd/sc_prevrecord.png +sw/res/sc20233.png cmd/sc_ok.png +sw/res/sc20235.png cmd/sc_inserthyperlink.png +sw/res/sc20238.png cmd/sc_insertbookmark.png +sw/res/sc20239.png cmd/sc_copy.png +sw/res/sc20244.png sw/res/sc20234.png +sw/res/sc20247.png cmd/sc_dataimport.png +sw/res/sc20249.png cmd/sc_navigator.png +sw/res/sc20556.png cmd/sc_dbviewfunctions.png +sw/res/sc20557.png cmd/sc_cancel.png +sw/res/sc20558.png cmd/sc_ok.png +sw/res/sf02.png cmd/sc_designerdialog.png +sw/res/sf04.png sc/res/sf02.png +sw/res/sf06.png cmd/sc_autoformat.png +sw/res/sidebar/pageproppanel/last_custom_common.png svx/res/symphony/last_custom_common.png +sw/res/sidebar/pageproppanel/last_custom_common_grey.png svx/res/symphony/last_custom_common_grey.png +sw/res/sr20000.png cmd/sc_downsearch.png +sw/res/sr20001.png cmd/sc_upsearch.png +sw/res/sr20002.png cmd/sc_inserttable.png +sw/res/sr20003.png cmd/sc_insertframe.png +sw/res/sr20004.png cmd/sc_showsinglepage.png +sw/res/sr20005.png cmd/sc_insertdraw.png +sw/res/sr20006.png cmd/sc_choosecontrols.png +sw/res/sr20007.png cmd/sc_insertsection.png +sw/res/sr20008.png cmd/sc_insertbookmark.png +sw/res/sr20009.png cmd/sc_insertgraphic.png +sw/res/sr20010.png cmd/sc_insertobject.png +sw/res/sr20011.png sw/res/nc20000.png +sw/res/sr20013.png cmd/sc_insertfootnote.png +sw/res/sr20014.png cmd/sc_setreminder.png +sw/res/sr20015.png cmd/sc_shownote.png +sw/res/sr20016.png cmd/sc_recsearch.png +sw/res/sr20017.png cmd/sc_insertindexesentry.png +sw/res/sx01.png cmd/sc_changedatabasefield.png +sw/res/sx02.png cmd/sc_dbviewtables.png +sw/res/sx03.png cmd/sc_dbviewqueries.png + +# res +sw/res/page_break.png cmd/sc_insertpagebreak.png +sw/res/styfamnu.png sw/res/sf05.png + +# split cells duplicates +sw/res/zetlhor2.png svx/res/zetlhor2.png +sw/res/zetlver2.png svx/res/zetlver2.png + +# vcl +# ============================================== +vcl/res/index.png cmd/sc_insertmultiindex.png + +# wrap +# ============================================== +cmd/32/wrapmenu.png cmd/32/wrapon.png +cmd/lc_wrapmenu.png cmd/lc_wrapon.png +cmd/sc_wrapmenu.png cmd/sc_wrapon.png + +# xmlsecurity +# ============================================== +xmlsecurity/res/key_12.png dbaccess/res/pkey.png + +cmd/32/columnoperations.png cmd/32/entirecolumn.png +cmd/32/rowoperations.png cmd/32/entirerow.png + +cmd/lc_columnoperations.png cmd/lc_entirecolumn.png +cmd/lc_rowoperations.png cmd/lc_entirerow.png + +cmd/sc_columnoperations.png cmd/sc_entirecolumn.png +cmd/sc_rowoperations.png cmd/sc_entirerow.png + +# calc context menu sheettab +# ============================================== +cmd/32/renametable.png cmd/32/name.png +cmd/32/settabbgcolor.png cmd/32/backgroundcolor.png +cmd/32/sheetlefttoright.png cmd/32/paralefttoright.png +cmd/32/sheetrighttoleft.png cmd/32/pararighttoleft.png +cmd/32/tableevents.png cmd/32/animationeffects.png + +cmd/lc_renametable.png cmd/lc_name.png +cmd/lc_settabbgcolor.png cmd/lc_backgroundcolor.png +cmd/lc_sheetlefttoright.png cmd/lc_paralefttoright.png +cmd/lc_sheetrighttoleft.png cmd/lc_pararighttoleft.png +cmd/lc_tableevents.png cmd/lc_animationeffects.png + +cmd/sc_renametable.png cmd/sc_name.png +cmd/sc_settabbgcolor.png cmd/sc_backgroundcolor.png +cmd/sc_sheetlefttoright.png cmd/sc_paralefttoright.png +cmd/sc_sheetrighttoleft.png cmd/sc_pararighttoleft.png +cmd/sc_tableevents.png cmd/sc_animationeffects.png + +# calc cell style +# ============================================== +cmd/32/badcellstyle.png cmd/32/badcellstyles.png +cmd/32/defaultcellstyles.png cmd/32/defaultcharstyle.png +cmd/32/footnotecellstyles.png cmd/32/insertfootnote.png +cmd/32/goodcellstyle.png cmd/32/goodcellstyles.png +cmd/32/heading1cellstyles.png cmd/32/heading1parastyle.png +cmd/32/heading2cellstyles.png cmd/32/heading2parastyle.png +cmd/32/neutralcellstyle.png cmd/32/neutralcellstyles.png +cmd/32/notecellstyles.png cmd/32/shownote.png +cmd/lc_badcellstyle.png cmd/lc_badcellstyles.png +cmd/lc_defaultcellstyles.png cmd/lc_defaultcharstyle.png +cmd/lc_footnotecellstyles.png cmd/lc_insertfootnote.png +cmd/lc_goodcellstyle.png cmd/lc_goodcellstyles.png +cmd/lc_heading1cellstyles.png cmd/lc_heading1parastyle.png +cmd/lc_heading2cellstyles.png cmd/lc_heading2parastyle.png +cmd/lc_neutralcellstyle.png cmd/lc_neutralcellstyles.png +cmd/lc_notecellstyles.png cmd/lc_shownote.png +cmd/sc_badcellstyle.png cmd/sc_badcellstyles.png +cmd/sc_defaultcellstyles.png cmd/sc_defaultcharstyle.png +cmd/sc_footnotecellstyles.png cmd/sc_insertfootnote.png +cmd/sc_goodcellstyle.png cmd/sc_goodcellstyles.png +cmd/sc_heading1cellstyles.png cmd/sc_heading1parastyle.png +cmd/sc_heading2cellstyles.png cmd/sc_heading2parastyle.png +cmd/sc_neutralcellstyle.png cmd/sc_neutralcellstyles.png +cmd/sc_notecellstyles.png cmd/sc_shownote.png + +# calc context menu rowheader +# ============================================== +cmd/32/columnwidth.png cmd/32/setminimalcolumnwidth.png +cmd/32/rowheight.png cmd/32/setminimalrowheight.png + +cmd/lc_columnwidth.png cmd/lc_setminimalcolumnwidth.png +cmd/lc_rowheight.png cmd/lc_setminimalrowheight.png + +cmd/sc_columnwidth.png cmd/sc_setminimalcolumnwidth.png +cmd/sc_rowheight.png cmd/sc_setminimalrowheight.png + +# calc toolbar previewbar +# ============================================== +cmd/32/exportasgraphic.png cmd/32/insertgraphic.png +cmd/32/margins.png cmd/32/pagemargin.png +cmd/32/namegroup.png cmd/32/renameobject.png + +cmd/lc_exportasgraphic.png cmd/lc_insertgraphic.png +cmd/lc_margins.png cmd/lc_pagemargin.png +cmd/lc_namegroup.png cmd/lc_renameobject.png + +cmd/sc_exportasgraphic.png cmd/sc_insertgraphic.png +cmd/sc_margins.png cmd/sc_pagemargin.png +cmd/sc_namegroup.png cmd/sc_renameobject.png + +# calc toolbar draw +# =============================================== +cmd/32/convertmenu.png cmd/32/bezierconvert.png +cmd/32/mirrormenu.png cmd/32/rotateleft.png +cmd/32/openhyperlinkoncursor.png cmd/32/inserthyperlink.png +cmd/32/rotateflipmenu.png cmd/32/rotateleft.png + +cmd/lc_convertmenu.png cmd/lc_bezierconvert.png +cmd/lc_mirrormenu.png cmd/lc_rotateleft.png +cmd/lc_openhyperlinkoncursor.png cmd/lc_inserthyperlink.png +cmd/lc_rotateflipmenu.png cmd/lc_rotateleft.png + +cmd/sc_convertmenu.png cmd/sc_bezierconvert.png +cmd/sc_mirrormenu.png cmd/sc_rotateleft.png +cmd/sc_openhyperlinkoncursor.png cmd/sc_inserthyperlink.png +cmd/sc_rotateflipmenu.png cmd/sc_rotateleft.png + +# writer +# =============================================== +cmd/32/addtextbox.png cmd/32/insertfixedtext.png +cmd/32/openxmlfiltersettings.png cmd/32/managexmlsource.png + +cmd/lc_addtextbox.png cmd/lc_insertfixedtext.png +cmd/lc_openxmlfiltersettings.png cmd/lc_managexmlsource.png + +cmd/sc_addtextbox.png cmd/sc_insertfixedtext.png +cmd/sc_openxmlfiltersettings.png cmd/sc_managexmlsource.png + +# Writer menu: MSO compatible Form menu +cmd/32/textformfield.png cmd/32/edit.png +cmd/32/checkboxformfield.png cmd/32/checkbox.png +cmd/32/dropdownformfield.png cmd/32/combobox.png +cmd/32/datepickerformfield.png cmd/32/datefield.png + +cmd/lc_textformfield.png cmd/lc_edit.png +cmd/lc_checkboxformfield.png cmd/lc_checkbox.png +cmd/lc_dropdownformfield.png cmd/lc_combobox.png +cmd/lc_datepickerformfield.png cmd/lc_datefield.png + +cmd/sc_textformfield.png cmd/sc_edit.png +cmd/sc_checkboxformfield.png cmd/sc_checkbox.png +cmd/sc_dropdownformfield.png cmd/sc_combobox.png +cmd/sc_datepickerformfield.png cmd/sc_datefield.png + +# menubar icons +cmd/32/com.sun.star.deployment.ui.packagemanagerdialog.png cmd/32/insertplugin.png +cmd/32/focustofindbar.png cmd/32/recsearch.png +cmd/32/formatobjectmenu.png cmd/32/text.png +cmd/32/macroorganizer%3ftabid%3ashort=1.png cmd/32/open.png +cmd/32/textattributes.png cmd/32/fontdialog.png + +cmd/lc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/lc_insertplugin.png +cmd/lc_focustofindbar.png cmd/lc_recsearch.png +cmd/lc_formatobjectmenu.png cmd/lc_text.png +cmd/lc_macroorganizer%3ftabid%3ashort=1.png cmd/lc_open.png +cmd/lc_textattributes.png cmd/lc_fontdialog.png + +cmd/sc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/sc_insertplugin.png +cmd/sc_focustofindbar.png cmd/sc_recsearch.png +cmd/sc_formatobjectmenu.png cmd/sc_text.png +cmd/sc_macroorganizer%3ftabid%3ashort=1.png cmd/sc_open.png +cmd/sc_textattributes.png cmd/sc_fontdialog.png + +# Edit menu +cmd/32/editpastespecialmenu.png cmd/32/pastespecial.png +cmd/32/insertcontents.png cmd/32/pastespecial.png +cmd/32/pastespecialmenu.png cmd/32/pastespecial.png + +cmd/lc_editpastespecialmenu.png cmd/lc_pastespecial.png +cmd/lc_insertcontents.png cmd/lc_pastespecial.png +cmd/lc_pastespecialmenu.png cmd/lc_pastespecial.png + +cmd/sc_editpastespecialmenu.png cmd/sc_pastespecial.png +cmd/sc_insertcontents.png cmd/sc_pastespecial.png +cmd/sc_pastespecialmenu.png cmd/sc_pastespecial.png + +# LibreLogo +cmd/32/librelogo-run.png cmd/32/runbasic.png +cmd/32/librelogo-stop.png cmd/32/basicstop.png +cmd/32/librelogo-translate.png cmd/32/editglossary.png + +cmd/lc_librelogo-run.png cmd/lc_runbasic.png +cmd/lc_librelogo-stop.png cmd/lc_basicstop.png +cmd/lc_librelogo-translate.png cmd/lc_editglossary.png + +cmd/sc_librelogo-run.png cmd/sc_runbasic.png +cmd/sc_librelogo-stop.png cmd/sc_basicstop.png +cmd/sc_librelogo-translate.png cmd/sc_editglossary.png + +cmd/sc_stars-full.png sc/res/icon-set-stars-full.png +cmd/sc_stars-empty.png sc/res/icon-set-stars-empty.png + +# Draw/Redaction Toolbar +cmd/32/redactionpreviewexport.png cmd/32/exportdirecttopdf.png +cmd/lc_redactionpreviewexport.png cmd/lc_exportdirecttopdf.png +cmd/sc_redactionpreviewexport.png cmd/sc_exportdirecttopdf.png \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.3.4/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.3.4/include/avmedia/mediawindow.hxx libreoffice-7.3.5/include/avmedia/mediawindow.hxx --- libreoffice-7.3.4/include/avmedia/mediawindow.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/include/avmedia/mediawindow.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -103,7 +103,7 @@ static css::uno::Reference< css::media::XPlayer > createPlayer( const OUString& rURL, const OUString& rReferer, const OUString* pMimeType = nullptr ); static css::uno::Reference< css::graphic::XGraphic > grabFrame( const OUString& rURL, const OUString& rReferer, - const OUString& sMimeType ); + const OUString& sMimeType, const css::uno::Reference& rGraphic = nullptr); private: MediaWindow(const MediaWindow&) = delete; diff -Nru libreoffice-7.3.4/include/editeng/brushitem.hxx libreoffice-7.3.5/include/editeng/brushitem.hxx --- libreoffice-7.3.4/include/editeng/brushitem.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/include/editeng/brushitem.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -43,6 +43,7 @@ class EDITENG_DLLPUBLIC SvxBrushItem final : public SfxPoolItem { Color aColor; + Color aFilterColor; sal_Int32 nShadingValue; mutable std::unique_ptr xGraphicObject; sal_Int8 nGraphicTransparency; //contains a percentage value which is @@ -90,6 +91,10 @@ Color& GetColor() { return aColor; } void SetColor( const Color& rCol) { aColor = rCol; } + const Color& GetFiltColor() const { return aFilterColor; } + Color& GetFiltColor() { return aFilterColor; } + void SetFiltColor( const Color& rCol) { aFilterColor = rCol; } + SvxGraphicPosition GetGraphicPos() const { return eGraphicPos; } sal_Int32 GetShadingValue() const { return nShadingValue; } diff -Nru libreoffice-7.3.4/include/svl/zformat.hxx libreoffice-7.3.5/include/svl/zformat.hxx --- libreoffice-7.3.4/include/svl/zformat.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/include/svl/zformat.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -696,6 +696,10 @@ SVL_DLLPRIVATE static void ImpAppendEraG( OUStringBuffer& OutStringBuffer, const CalendarWrapper& rCal, sal_Int16 nNatNum ); + SVL_DLLPRIVATE bool ImpGetLogicalOutput( double fNumber, + sal_uInt16 nIx, + OUStringBuffer& OutString ); + SVL_DLLPRIVATE bool ImpGetNumberOutput( double fNumber, sal_uInt16 nIx, OUStringBuffer& OutString ); diff -Nru libreoffice-7.3.4/include/vcl/toolkit/spinfld.hxx libreoffice-7.3.5/include/vcl/toolkit/spinfld.hxx --- libreoffice-7.3.4/include/vcl/toolkit/spinfld.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/include/vcl/toolkit/spinfld.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -61,6 +61,11 @@ virtual FactoryFunction GetUITestFactory() const override; + SAL_DLLPRIVATE void SetUpperEnabled(bool bEnabled); + SAL_DLLPRIVATE void SetLowerEnabled(bool bEnabled); + SAL_DLLPRIVATE bool IsUpperEnabled() const { return mbUpperEnabled; } + SAL_DLLPRIVATE bool IsLowerEnabled() const { return mbLowerEnabled; } + protected: tools::Rectangle maUpperRect; tools::Rectangle maLowerRect; @@ -91,7 +96,9 @@ mbInitialDown:1, mbUpperIn:1, mbLowerIn:1, - mbInDropDown:1; + mbInDropDown:1, + mbUpperEnabled:1, + mbLowerEnabled:1; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/lo.xcent libreoffice-7.3.5/lo.xcent --- libreoffice-7.3.4/lo.xcent 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/lo.xcent 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.files.bookmarks.app-scope - - com.apple.security.files.bookmarks.document-scope - - com.apple.security.files.bookmarks.collection-scope - - com.apple.security.files.user-selected.read-write - - com.apple.security.network.client - - com.apple.security.network.server - - com.apple.security.device.bluetooth - - com.apple.security.print - - com.apple.security.cs.disable-executable-page-protection - - - com.apple.security.personal-information.addressbook - - - diff -Nru libreoffice-7.3.4/lo.xcent.in libreoffice-7.3.5/lo.xcent.in --- libreoffice-7.3.4/lo.xcent.in 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/lo.xcent.in 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,27 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.files.bookmarks.app-scope + + com.apple.security.files.bookmarks.document-scope + + com.apple.security.files.bookmarks.collection-scope + + com.apple.security.files.user-selected.read-write + + com.apple.security.network.client + + com.apple.security.print + + com.apple.security.cs.disable-executable-page-protection + + + com.apple.security.personal-information.addressbook + +@SDREMOTE_ENTITLEMENT@ +@MACOSX_PROVISIONING_INFO@ + + diff -Nru libreoffice-7.3.4/Makefile.in libreoffice-7.3.5/Makefile.in --- libreoffice-7.3.4/Makefile.in 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/Makefile.in 2022-07-15 19:12:51.000000000 +0000 @@ -225,6 +225,7 @@ $(BUILDDIR)/configure \ $(BUILDDIR)/hardened_runtime.xcent \ $(BUILDDIR)/instsetoo_native/util/openoffice.lst \ + $(BUILDDIR)/lo.xcent \ $(BUILDDIR)/sysui/desktop/macosx/Info.plist \ $(BUILDDIR)/vs-code-template.code-workspace $(if $(filter WNT,$(OS)),env -i PATH="$$PATH") $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \; @@ -386,7 +387,9 @@ rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unopkg rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unoinfo endif -# +ifneq ($(MACOSX_PROVISIONING_PROFILE),) + cp "$(MACOSX_PROVISIONING_PROFILE)" $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/embedded.provisionprofile +endif ifneq ($(MACOSX_CODESIGNING_IDENTITY),) # Then use the macosx-codesign-app-bundle script @$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app diff -Nru libreoffice-7.3.4/officecfg/Configuration_officecfg.mk libreoffice-7.3.5/officecfg/Configuration_officecfg.mk --- libreoffice-7.3.4/officecfg/Configuration_officecfg.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/officecfg/Configuration_officecfg.mk 2022-07-15 19:12:51.000000000 +0000 @@ -118,6 +118,7 @@ org/openoffice/Office/UI/WriterWindowState-librelogo.xcu \ ) \ org/openoffice/Office/UI/Controller-reportbuilder.xcu \ + org/openoffice/Office/UI/Infobar-macosxsandbox.xcu \ org/openoffice/TypeDetection/UISort-writer.xcu \ org/openoffice/TypeDetection/UISort-calc.xcu \ org/openoffice/TypeDetection/UISort-draw.xcu \ diff -Nru libreoffice-7.3.4/officecfg/registry/data/org/openoffice/Office/UI/Infobar.xcu libreoffice-7.3.5/officecfg/registry/data/org/openoffice/Office/UI/Infobar.xcu --- libreoffice-7.3.4/officecfg/registry/data/org/openoffice/Office/UI/Infobar.xcu 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/officecfg/registry/data/org/openoffice/Office/UI/Infobar.xcu 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,17 @@ + + + + + + + false + + + diff -Nru libreoffice-7.3.4/officecfg/registry/data/org/openoffice/Office/UI.xcu libreoffice-7.3.5/officecfg/registry/data/org/openoffice/Office/UI.xcu --- libreoffice-7.3.4/officecfg/registry/data/org/openoffice/Office/UI.xcu 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/officecfg/registry/data/org/openoffice/Office/UI.xcu 2022-07-15 19:12:51.000000000 +0000 @@ -433,7 +433,7 @@ true - 1842204 + 8421504 diff -Nru libreoffice-7.3.4/oox/inc/drawingml/textbodyproperties.hxx libreoffice-7.3.5/oox/inc/drawingml/textbodyproperties.hxx --- libreoffice-7.3.4/oox/inc/drawingml/textbodyproperties.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/inc/drawingml/textbodyproperties.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -21,12 +21,15 @@ #define INCLUDED_OOX_DRAWINGML_TEXTBODYPROPERTIES_HXX #include +#include #include #include #include +#include -namespace oox::drawingml { +class Size; +namespace oox::drawingml { struct TextBodyProperties { @@ -35,7 +38,7 @@ bool mbAnchorCtr; OptValue< sal_Int32 > moVert; bool moUpright = false; - std::optional< sal_Int32 > moInsets[4]; + std::array, 4> moInsets; std::optional< sal_Int32 > moTextOffUpper; std::optional< sal_Int32 > moTextOffLeft; std::optional< sal_Int32 > moTextOffLower; @@ -47,10 +50,14 @@ OUString msHorzOverflow; OUString msVertOverflow; - explicit TextBodyProperties(); + std::array, 4> maTextDistanceValues; + + explicit TextBodyProperties(); + + void pushTextDistances(Size const& rShapeSize); + void readjustTextDistances(css::uno::Reference const& xShape); + void pushVertSimulation(); - void pushRotationAdjustments(); - void pushVertSimulation(); }; diff -Nru libreoffice-7.3.4/oox/source/drawingml/fillproperties.cxx libreoffice-7.3.5/oox/source/drawingml/fillproperties.cxx --- libreoffice-7.3.4/oox/source/drawingml/fillproperties.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/source/drawingml/fillproperties.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -88,59 +88,59 @@ return aReturnGraphic.GetXGraphic(); } -void lclCalculateCropPercentage(uno::Reference const & xGraphic, geometry::IntegerRectangle2D &aFillRect) +using Quotients = std::tuple; +Quotients getQuotients(geometry::IntegerRectangle2D aRelRect, double hDiv, double vDiv) { - ::Graphic aGraphic(xGraphic); - assert (aGraphic.GetType() == GraphicType::Bitmap); - - BitmapEx aBitmapEx(aGraphic.GetBitmapEx()); + return { aRelRect.X1 / hDiv, aRelRect.Y1 / vDiv, aRelRect.X2 / hDiv, aRelRect.Y2 / vDiv }; +} - sal_Int32 nScaledWidth = aBitmapEx.GetSizePixel().Width(); - sal_Int32 nScaledHeight = aBitmapEx.GetSizePixel().Height(); +// ECMA-376 Part 1 20.1.8.55 srcRect (Source Rectangle) +std::optional CropQuotientsFromSrcRect(geometry::IntegerRectangle2D aSrcRect) +{ + aSrcRect.X1 = std::max(aSrcRect.X1, sal_Int32(0)); + aSrcRect.X2 = std::max(aSrcRect.X2, sal_Int32(0)); + aSrcRect.Y1 = std::max(aSrcRect.Y1, sal_Int32(0)); + aSrcRect.Y2 = std::max(aSrcRect.Y2, sal_Int32(0)); + if (aSrcRect.X1 + aSrcRect.X2 >= 100'000 || aSrcRect.Y1 + aSrcRect.Y2 >= 100'000) + return {}; // Cropped everything + return getQuotients(aSrcRect, 100'000.0, 100'000.0); +} - sal_Int32 nOrigWidth = (nScaledWidth * (100000 - aFillRect.X1 - aFillRect.X2)) / 100000; - sal_Int32 nOrigHeight = (nScaledHeight * (100000 - aFillRect.Y1 - aFillRect.Y2)) / 100000; +// ECMA-376 Part 1 20.1.8.30 fillRect (Fill Rectangle) +std::optional CropQuotientsFromFillRect(geometry::IntegerRectangle2D aFillRect) +{ + aFillRect.X1 = std::min(aFillRect.X1, sal_Int32(0)); + aFillRect.X2 = std::min(aFillRect.X2, sal_Int32(0)); + aFillRect.Y1 = std::min(aFillRect.Y1, sal_Int32(0)); + aFillRect.Y2 = std::min(aFillRect.Y2, sal_Int32(0)); + // Negative divisor and negative relative offset give positive value wanted in lclCropGraphic + return getQuotients(aFillRect, -100'000.0 + aFillRect.X1 + aFillRect.X2, + -100'000.0 + aFillRect.Y1 + aFillRect.Y2); +} - sal_Int32 nLeftPercentage = nScaledWidth * aFillRect.X1 / nOrigWidth; - sal_Int32 nRightPercentage = nScaledWidth * aFillRect.X2 / nOrigWidth; - sal_Int32 nTopPercentage = nScaledHeight * aFillRect.Y1 / nOrigHeight; - sal_Int32 nBottomPercentage = nScaledHeight * aFillRect.Y2 / nOrigHeight; - - aFillRect.X1 = -nLeftPercentage; - aFillRect.X2 = -nRightPercentage; - aFillRect.Y1 = -nTopPercentage; - aFillRect.Y2 = -nBottomPercentage; -} - -// Crops a piece of the bitmap. Takes negative aFillRect values. Negative values means "crop", -// positive values means "grow" bitmap with empty spaces. lclCropGraphic doesn't handle growing. -Reference< XGraphic > lclCropGraphic(uno::Reference const & xGraphic, geometry::IntegerRectangle2D aFillRect) +// Crops a piece of the bitmap. lclCropGraphic doesn't handle growing. +Reference lclCropGraphic(uno::Reference const& xGraphic, + std::optional quotients) { ::Graphic aGraphic(xGraphic); - ::Graphic aReturnGraphic; - assert (aGraphic.GetType() == GraphicType::Bitmap); - BitmapEx aBitmapEx(aGraphic.GetBitmapEx()); + BitmapEx aBitmapEx; + if (quotients) + { + aBitmapEx = aGraphic.GetBitmapEx(); - sal_Int32 nOrigHeight = aBitmapEx.GetSizePixel().Height(); - sal_Int32 nHeight = nOrigHeight; - sal_Int32 nTopCorr = nOrigHeight * -1 * static_cast(aFillRect.Y1) / 100000; - nHeight += nTopCorr; - sal_Int32 nBottomCorr = nOrigHeight * -1 * static_cast(aFillRect.Y2) / 100000; - nHeight += nBottomCorr; - - sal_Int32 nOrigWidth = aBitmapEx.GetSizePixel().Width(); - sal_Int32 nWidth = nOrigWidth; - sal_Int32 nLeftCorr = nOrigWidth * -1 * static_cast(aFillRect.X1) / 100000; - nWidth += nLeftCorr; - sal_Int32 nRightCorr = nOrigWidth * -1 * static_cast(aFillRect.X2) / 100000; - nWidth += nRightCorr; + const Size bmpSize = aBitmapEx.GetSizePixel(); + const auto& [qx1, qy1, qx2, qy2] = *quotients; + const tools::Long l = std::round(bmpSize.Width() * qx1); + const tools::Long t = std::round(bmpSize.Height() * qy1); + const tools::Long r = std::round(bmpSize.Width() * qx2); + const tools::Long b = std::round(bmpSize.Height() * qy2); - aBitmapEx.Scale(Size(nWidth, nHeight)); - aBitmapEx.Crop(tools::Rectangle(Point(nLeftCorr, nTopCorr), Size(nOrigWidth, nOrigHeight))); + aBitmapEx.Crop({ l, t, bmpSize.Width() - r - 1, bmpSize.Height() - b - 1 }); + } - aReturnGraphic = ::Graphic(aBitmapEx); + ::Graphic aReturnGraphic(aBitmapEx); aReturnGraphic.setOriginURL(aGraphic.getOriginURL()); return aReturnGraphic.GetXGraphic(); @@ -791,7 +791,7 @@ if(bIsCustomShape && bHasCropValues && bNeedCrop) { - xGraphic = lclCropGraphic(xGraphic, aFillRect); + xGraphic = lclCropGraphic(xGraphic, CropQuotientsFromFillRect(aFillRect)); rPropMap.setProperty(ShapeProperty::FillBitmap, xGraphic); } } @@ -905,9 +905,7 @@ if(mbIsCustomShape && bHasCropValues && bNeedCrop) { - geometry::IntegerRectangle2D aCropRect = oClipRect; - lclCalculateCropPercentage(xGraphic, aCropRect); - xGraphic = lclCropGraphic(xGraphic, aCropRect); + xGraphic = lclCropGraphic(xGraphic, CropQuotientsFromSrcRect(oClipRect)); } } } diff -Nru libreoffice-7.3.4/oox/source/drawingml/shape.cxx libreoffice-7.3.5/oox/source/drawingml/shape.cxx --- libreoffice-7.3.4/oox/source/drawingml/shape.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/source/drawingml/shape.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1119,7 +1119,7 @@ // add properties from textbody to shape properties if( mpTextBody ) { - mpTextBody->getTextProperties().pushRotationAdjustments(); + mpTextBody->getTextProperties().pushTextDistances(Size(aShapeRectHmm.Width, aShapeRectHmm.Height)); aShapeProps.assignUsed( mpTextBody->getTextProperties().maPropertyMap ); // Push char properties as well - specifically useful when this is a placeholder if( mpMasterTextListStyle && mpMasterTextListStyle->getListStyle()[0].getTextCharacterProperties().moHeight.has() ) @@ -1685,9 +1685,14 @@ } } - if( mxShape.is() ) + if (mxShape.is()) + { finalizeXShape( rFilterBase, rxShapes ); + if (mpTextBody) + mpTextBody->getTextProperties().readjustTextDistances(mxShape); + } + return mxShape; } diff -Nru libreoffice-7.3.4/oox/source/drawingml/textbodyproperties.cxx libreoffice-7.3.5/oox/source/drawingml/textbodyproperties.cxx --- libreoffice-7.3.4/oox/source/drawingml/textbodyproperties.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/source/drawingml/textbodyproperties.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -22,9 +22,17 @@ #include #include #include +#include +#include +#include +#include +#include + +#include using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::text; +using namespace css; namespace oox::drawingml { @@ -57,14 +65,21 @@ maPropertyMap.setProperty( PROP_TextHorizontalAdjust, TextHorizontalAdjust_CENTER); } -/* Push adjusted values, taking into consideration Shape Rotation */ -void TextBodyProperties::pushRotationAdjustments() +/* Push text distances / insets, taking into consideration Shape Rotation */ +void TextBodyProperties::pushTextDistances(Size const& rTextAreaSize) { - sal_Int32 nOff = 0; - static sal_Int32 const aProps[] { PROP_TextLeftDistance, PROP_TextUpperDistance, PROP_TextRightDistance, PROP_TextLowerDistance }; - sal_Int32 n = SAL_N_ELEMENTS( aProps ); + for (auto & rValue : maTextDistanceValues) + rValue.reset(); + + sal_Int32 nOff = 0; + static constexpr const std::array aProps { + PROP_TextLeftDistance, + PROP_TextUpperDistance, + PROP_TextRightDistance, + PROP_TextLowerDistance + }; - switch( moRotation.get(0) ) + switch (moRotation.get(0)) { case 90*1*60000: nOff = 3; break; case 90*2*60000: nOff = 2; break; @@ -72,28 +87,104 @@ default: break; } - for( sal_Int32 i = 0; i < n; i++ ) + for (size_t i = 0; i < aProps.size(); i++) { sal_Int32 nVal = 0; // Hack for n#760986 // TODO: Preferred method would be to have a textbox on top // of the shape and the place it according to the (off,ext) - if( nOff == 0 && moTextOffLeft ) nVal = *moTextOffLeft; - if( nOff == 1 && moTextOffUpper ) nVal = *moTextOffUpper; - if( nOff == 2 && moTextOffRight ) nVal = *moTextOffRight; - if( nOff == 3 && moTextOffLower ) nVal = *moTextOffLower; - if( nVal < 0 ) nVal = 0; - - if( moInsets[i] ) - maPropertyMap.setProperty( aProps[ nOff ], static_cast< sal_Int32 >( *moInsets[i] + nVal )); - else if( nVal ) - maPropertyMap.setProperty( aProps[ nOff ], nVal ); + if (nOff == 0 && moTextOffLeft) + nVal = *moTextOffLeft; + + if (nOff == 1 && moTextOffUpper) + nVal = *moTextOffUpper; + + + if (nOff == 2 && moTextOffRight) + nVal = *moTextOffRight; + + if (nOff == 3 && moTextOffLower) + nVal = *moTextOffLower; + + + if( nVal < 0 ) + nVal = 0; + + sal_Int32 nTextOffsetValue = nVal; + + if (moInsets[i]) + { + nTextOffsetValue = *moInsets[i] + nVal; + } + + // if inset is set, then always set the value + // this prevents the default to be set (0 is a valid value) + if (moInsets[i] || nTextOffsetValue) + { + maTextDistanceValues[nOff] = nTextOffsetValue; + } + + nOff = (nOff + 1) % aProps.size(); + } + + // Check if bottom and top are set + if (maTextDistanceValues[1] && maTextDistanceValues[3]) + { + double nHeight = rTextAreaSize.getHeight(); + + double nTop = *maTextDistanceValues[1]; + double nBottom = *maTextDistanceValues[3]; + + // Check if top + bottom is more than text area height. + // If yes, we need to adjust the values as defined in OOXML. + if (nTop + nBottom >= nHeight) + { + double diffFactor = (nTop + nBottom - nHeight) / 2.0; + + maTextDistanceValues[1] = nTop - diffFactor; + maTextDistanceValues[3] = nBottom - diffFactor; + } + } + + for (size_t i = 0; i < aProps.size(); i++) + { + if (maTextDistanceValues[i]) + maPropertyMap.setProperty(aProps[i], *maTextDistanceValues[i]); + } +} + +/* Readjust the text distances / insets if necessary to take + the text area into account, not just the shape area*/ +void TextBodyProperties::readjustTextDistances(uno::Reference const& xShape) +{ + // Only for custom shapes (for now) + auto* pCustomShape = dynamic_cast(SdrObject::getSdrObjectFromXShape(xShape)); + if (pCustomShape) + { + sal_Int32 nLower = pCustomShape->GetTextLowerDistance(); + sal_Int32 nUpper = pCustomShape->GetTextUpperDistance(); - nOff = (nOff+1) % n; + pCustomShape->SetMergedItem(makeSdrTextUpperDistItem(0)); + pCustomShape->SetMergedItem(makeSdrTextLowerDistItem(0)); + + tools::Rectangle aAnchorRect; + pCustomShape->TakeTextAnchorRect(aAnchorRect); + Size aAnchorSize = aAnchorRect.GetSize(); + + pushTextDistances(aAnchorSize); + if (maTextDistanceValues[1] && maTextDistanceValues[3]) + { + nLower = *maTextDistanceValues[3]; + nUpper = *maTextDistanceValues[1]; + } + + pCustomShape->SetMergedItem(makeSdrTextLowerDistItem(nLower)); + pCustomShape->SetMergedItem(makeSdrTextUpperDistItem(nUpper)); } } + } // namespace oox::drawingml /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/oox/source/export/drawingml.cxx libreoffice-7.3.5/oox/source/export/drawingml.cxx --- libreoffice-7.3.4/oox/source/export/drawingml.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/source/export/drawingml.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -3132,20 +3132,22 @@ sal_Int32 nXmlNamespace, bool bWritePropertiesAsLstStyles) { // ToDo: Fontwork in DOCX - Reference< XText > xXText( rXIface, UNO_QUERY ); + uno::Reference xXText(rXIface, UNO_QUERY); if( !xXText.is() ) return; - Reference< XPropertySet > rXPropSet( rXIface, UNO_QUERY ); + uno::Reference xShape(rXIface, UNO_QUERY); + uno::Reference rXPropSet(rXIface, UNO_QUERY); sal_Int32 nTextPreRotateAngle = 0; double nTextRotateAngle = 0; -#define DEFLRINS 254 -#define DEFTBINS 127 - sal_Int32 nLeft, nRight, nTop, nBottom; - nLeft = nRight = DEFLRINS; - nTop = nBottom = DEFTBINS; + constexpr const sal_Int32 constDefaultLeftRightInset = 254; + constexpr const sal_Int32 constDefaultTopBottomInset = 127; + sal_Int32 nLeft = constDefaultLeftRightInset; + sal_Int32 nRight = constDefaultLeftRightInset; + sal_Int32 nTop = constDefaultTopBottomInset; + sal_Int32 nBottom = constDefaultTopBottomInset; // top inset looks a bit different compared to ppt export // check if something related doesn't work as expected @@ -3158,6 +3160,27 @@ if (GetProperty(rXPropSet, "TextLowerDistance")) mAny >>= nBottom; + // Transform the text distance values so they are compatible with OOXML insets + if (xShape.is()) + { + sal_Int32 nTextHeight = xShape->getSize().Width; + + auto* pCustomShape = dynamic_cast(SdrObject::getSdrObjectFromXShape(xShape)); + if (pCustomShape) + { + tools::Rectangle aAnchorRect; + pCustomShape->TakeTextAnchorRect(aAnchorRect); + nTextHeight = aAnchorRect.GetSize().getHeight(); + } + + if (nTop + nBottom >= nTextHeight) + { + sal_Int32 nDiff = std::abs(std::min(nTop, nBottom)); + nTop += nDiff; + nBottom += nDiff; + } + } + TextVerticalAdjust eVerticalAlignment( TextVerticalAdjust_TOP ); const char* sVerticalAlignment = nullptr; if (GetProperty(rXPropSet, "TextVerticalAdjust")) @@ -3229,7 +3252,6 @@ { if (mpTextExport) { - uno::Reference xShape(rXIface, uno::UNO_QUERY); if (xShape) { auto xTextFrame = mpTextExport->GetUnoTextFrame(xShape); @@ -3377,10 +3399,10 @@ XML_horzOverflow, sHorzOverflow, XML_vertOverflow, sVertOverflow, XML_fromWordArt, sax_fastparser::UseIf("1", bFromWordArt), - XML_lIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nLeft)), nLeft != DEFLRINS), - XML_rIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nRight)), nRight != DEFLRINS), - XML_tIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nTop)), nTop != DEFTBINS), - XML_bIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nBottom)), nBottom != DEFTBINS), + XML_lIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nLeft)), nLeft != constDefaultLeftRightInset), + XML_rIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nRight)), nRight != constDefaultLeftRightInset), + XML_tIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nTop)), nTop != constDefaultTopBottomInset), + XML_bIns, sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nBottom)), nBottom != constDefaultTopBottomInset), XML_anchor, sVerticalAlignment, XML_anchorCtr, sax_fastparser::UseIf("1", bHorizontalCenter), XML_vert, sWritingMode, @@ -3465,7 +3487,6 @@ { // tdf#112312: only custom shapes obey the TextAutoGrowHeight option bool bTextAutoGrowHeight = false; - uno::Reference xShape(rXIface, uno::UNO_QUERY); auto pSdrObjCustomShape = xShape.is() ? dynamic_cast(SdrObject::getSdrObjectFromXShape(xShape)) : nullptr; if (pSdrObjCustomShape && GetProperty(rXPropSet, "TextAutoGrowHeight")) { @@ -3517,7 +3538,6 @@ if( !enumeration.is() ) return; - uno::Reference xShape(rXIface, uno::UNO_QUERY); SdrObject* pSdrObject = xShape.is() ? SdrObject::getSdrObjectFromXShape(xShape) : nullptr; const SdrTextObj* pTxtObj = dynamic_cast( pSdrObject ); if (pTxtObj && mpTextExport) diff -Nru libreoffice-7.3.4/oox/source/ole/vbacontrol.cxx libreoffice-7.3.5/oox/source/ole/vbacontrol.cxx --- libreoffice-7.3.4/oox/source/ole/vbacontrol.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/oox/source/ole/vbacontrol.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -446,13 +446,17 @@ if ( xPageSiteRef ) idToPage[ xPageSiteRef->getId() ] = control; } - else + else if (elem->getControlType() == API_CONTROL_TABSTRIP) { AxTabStripModel* pTabStrip = static_cast(elem.get()); sCaptions = pTabStrip->maItems; pMultiPage->mnActiveTab = pTabStrip->mnListIndex; pMultiPage->mnTabStyle = pTabStrip->mnTabStyle; } + else + { + SAL_WARN("oox", "unexpected control type " << elem->getControlType()); + } } // apply caption/titles to pages diff -Nru libreoffice-7.3.4/postprocess/CustomTarget_registry.mk libreoffice-7.3.5/postprocess/CustomTarget_registry.mk --- libreoffice-7.3.4/postprocess/CustomTarget_registry.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/postprocess/CustomTarget_registry.mk 2022-07-15 19:12:51.000000000 +0000 @@ -306,6 +306,10 @@ postprocess_FILES_main += $(postprocess_MOD)/org/openoffice/ucb/Configuration-webdav.xcu endif +ifneq ($(ENABLE_MACOSX_SANDBOX),) +postprocess_FILES_main += $(postprocess_MOD)/org/openoffice/Office/UI/Infobar-macosxsandbox.xcu +endif + ifneq (,$(SYSTEM_LIBEXTTEXTCAT_DATA)) postprocess_FILES_main += $(postprocess_MOD)/org/openoffice/Office/Paths-externallibexttextcatdata.xcu else diff -Nru libreoffice-7.3.4/pyuno/source/loader/pyuno_loader.cxx libreoffice-7.3.5/pyuno/source/loader/pyuno_loader.cxx --- libreoffice-7.3.4/pyuno/source/loader/pyuno_loader.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/pyuno/source/loader/pyuno_loader.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -229,10 +229,12 @@ PyThreadState *tstate = PyThreadState_Get(); PyEval_ReleaseThread( tstate ); +#if PY_VERSION_HEX < 0x030B0000 // This tstate is never used again, so delete it here. // This prevents an assertion in PyThreadState_Swap on the // PyThreadAttach below. PyThreadState_Delete(tstate); +#endif } } diff -Nru libreoffice-7.3.4/readlicense_oo/license/CREDITS.fodt libreoffice-7.3.5/readlicense_oo/license/CREDITS.fodt --- libreoffice-7.3.4/readlicense_oo/license/CREDITS.fodt 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/readlicense_oo/license/CREDITS.fodt 2022-07-15 19:12:51.000000000 +0000 @@ -1,24 +1,24 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.3.3.2$Linux_X86_64 LibreOffice_project/d1d0ea68f081ee2800a922cac8f79445e46033482012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.3.3.2$Linux_X86_64 LibreOffice_project/d1d0ea68f081ee2800a922cac8f79445e46033482012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 1822 + 808 501 32175 - 29238 + 28180 true true view2 - 14550 - 7303 + 3649 + 3434 501 - 1822 + 808 32674 - 31059 + 28986 0 0 false @@ -97,7 +97,7 @@ true - 10970830 + 11044056 true false @@ -166,7 +166,7 @@ - + @@ -344,26 +344,23 @@ - + - + - + - + - + - - - @@ -425,21 +422,21 @@ - + - + - + - + - + @@ -1081,7 +1078,7 @@ Credits - 1753 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2022-05-31 13:29:00. + 1774 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2022-07-15 20:07:46. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1089,12 +1086,12 @@ - + Ruediger TimmCommits: 82464Joined: 2000-10-10 - Caolán McNamaraCommits: 33046Joined: 2000-10-10 + Caolán McNamaraCommits: 33138Joined: 2000-10-10 Kurt ZenkerCommits: 31752Joined: 2000-09-25 @@ -1103,7 +1100,7 @@ Oliver BolteCommits: 31008Joined: 2000-09-19 - + Jens-Heiner Rechtien [hr]Commits: 28805Joined: 2000-09-18 @@ -1111,13 +1108,13 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 19860Joined: 2000-10-04 + Stephan BergmannCommits: 19937Joined: 2000-10-04 - *Noel GrandinCommits: 16150Joined: 2011-12-12 + *Noel GrandinCommits: 16316Joined: 2011-12-12 - + Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1125,13 +1122,13 @@ Tor LillqvistCommits: 9073Joined: 2010-03-23 - Miklos VajnaCommits: 8975Joined: 2010-07-29 + Miklos VajnaCommits: 9030Joined: 2010-07-29 - Michael StahlCommits: 7979Joined: 2008-06-16 + Michael StahlCommits: 8002Joined: 2008-06-16 - + Kohei YoshidaCommits: 5571Joined: 2009-06-19 @@ -1139,29 +1136,29 @@ *Markus MohrhardCommits: 5203Joined: 2011-03-17 - Eike RathkeCommits: 5078Joined: 2000-10-11 + Eike RathkeCommits: 5123Joined: 2000-10-11 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - + David TardonCommits: 3648Joined: 2009-11-12 - *Julien NabetCommits: 3471Joined: 2010-11-04 + *Julien NabetCommits: 3488Joined: 2010-11-04 - *Andrea GelminiCommits: 3105Joined: 2014-10-30 + *Andrea GelminiCommits: 3140Joined: 2014-10-30 - Luboš LuňákCommits: 3084Joined: 2010-09-21 + Luboš LuňákCommits: 3112Joined: 2010-09-21 - + - *Tomaž VajngerlCommits: 3037Joined: 2012-06-02 + *Tomaž VajngerlCommits: 3042Joined: 2012-06-02 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1173,7 +1170,7 @@ Jan HolesovskyCommits: 2668Joined: 2009-06-23 - + Mathias BauerCommits: 2580Joined: 2000-09-20 @@ -1181,15 +1178,15 @@ Oliver SpechtCommits: 2549Joined: 2000-09-21 - Michael MeeksCommits: 2472Joined: 2004-08-05 + Michael MeeksCommits: 2476Joined: 2004-08-05 Bjoern MichaelsenCommits: 2454Joined: 2009-10-14 - + - *Mike KaganskiCommits: 2287Joined: 2015-04-26 + *Mike KaganskiCommits: 2324Joined: 2015-04-26 *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1201,12 +1198,12 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - + - *Andras TimarCommits: 1967Joined: 2010-10-02 + *Xisco FauliCommits: 2001Joined: 2011-02-06 - *Xisco FauliCommits: 1931Joined: 2011-02-06 + *Andras TimarCommits: 1969Joined: 2010-10-02 Christian LippkaCommits: 1805Joined: 2000-09-25 @@ -1215,12 +1212,12 @@ *Matúš KukanCommits: 1712Joined: 2011-04-06 - + - Armin Le Grand (Allotropia)Commits: 1540Joined: 2000-09-25 + *Olivier HallotCommits: 1613Joined: 2010-10-25 - *Olivier HallotCommits: 1538Joined: 2010-10-25 + Armin Le Grand (Allotropia)Commits: 1542Joined: 2000-09-25 *Takeshi AbeCommits: 1486Joined: 2010-11-08 @@ -1229,12 +1226,12 @@ *Matteo CasalinCommits: 1476Joined: 2011-11-13 - + Thorsten BehrensCommits: 1441Joined: 2001-04-25 - *Chris SherlockCommits: 1397Joined: 2013-02-25 + *Chris SherlockCommits: 1413Joined: 2013-02-25 Fridrich ŠtrbaCommits: 1338Joined: 2007-02-22 @@ -1243,40 +1240,40 @@ Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 - + Niklas NebelCommits: 1296Joined: 2000-09-19 - *andreas kainzCommits: 1226Joined: 2015-03-18 + *Jan-Marek GlogowskiCommits: 1232Joined: 2013-11-14 - *Jan-Marek GlogowskiCommits: 1210Joined: 2013-11-14 + *andreas kainzCommits: 1226Joined: 2015-03-18 *Tamás ZolnaiCommits: 1208Joined: 2012-08-06 - + Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - *Samuel MehrbrodtCommits: 1095Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 1109Joined: 2011-06-08 - *Gabor KelemenCommits: 1081Joined: 2013-06-18 + *Gabor KelemenCommits: 1086Joined: 2013-06-18 *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 - + - *Szymon KłosCommits: 1038Joined: 2014-03-22 + *Szymon KłosCommits: 1047Joined: 2014-03-22 - Christian LohmaierCommits: 982Joined: 2008-06-01 + Christian LohmaierCommits: 1007Joined: 2008-06-01 *Johnny_MCommits: 966Joined: 2016-05-12 @@ -1285,7 +1282,7 @@ Petr MladekCommits: 958Joined: 2006-10-03 - + Noel PowerCommits: 950Joined: 2002-09-24 @@ -1299,7 +1296,7 @@ Cédric BosdonnatCommits: 882Joined: 2009-11-16 - + Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 @@ -1313,35 +1310,35 @@ Martin GallweyCommits: 827Joined: 2000-11-08 - + Mikhail VoytenkoCommits: 793Joined: 2001-01-16 - *Maxim MonastirskyCommits: 779Joined: 2013-10-27 + *Maxim MonastirskyCommits: 788Joined: 2013-10-27 Carsten DriesnerCommits: 748Joined: 2000-10-06 - Joachim LingnerCommits: 745Joined: 2000-10-05 + *László NémethCommits: 747Joined: 2010-09-29 - + - *Katarina BehrensCommits: 745Joined: 2010-10-13 + Joachim LingnerCommits: 745Joined: 2000-10-05 - *Andrzej HuntCommits: 743Joined: 2012-03-27 + *Katarina BehrensCommits: 745Joined: 2010-10-13 - *László NémethCommits: 736Joined: 2010-09-29 + *Andrzej HuntCommits: 743Joined: 2012-03-27 Andre FischerCommits: 730Joined: 2001-02-06 - + Release EngineeringCommits: 728Joined: 2008-10-02 @@ -1355,7 +1352,7 @@ *Joseph PowersCommits: 658Joined: 2010-10-15 - + *Jens CarlCommits: 657Joined: 2014-05-28 @@ -1369,26 +1366,26 @@ *Justin LuthCommits: 624Joined: 2014-09-30 - + *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Jochen NitschkeCommits: 587Joined: 2016-02-02 + *Michael WeghornCommits: 595Joined: 2014-09-10 - *Michael WeghornCommits: 579Joined: 2014-09-10 + *Jochen NitschkeCommits: 587Joined: 2016-02-02 - *Yousuf PhilipsCommits: 569Joined: 2014-09-21 + *Rizal MuttaqinCommits: 573Joined: 2018-05-21 - + - *Rizal MuttaqinCommits: 557Joined: 2018-05-21 + *Yousuf PhilipsCommits: 569Joined: 2014-09-21 - Rene EngelhardCommits: 556Joined: 2005-03-14 + Rene EngelhardCommits: 562Joined: 2005-03-14 Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 @@ -1397,9 +1394,9 @@ *Khaled HosnyCommits: 542Joined: 2011-01-28 - + - *Adolfo Jayme BarrientosCommits: 518Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 530Joined: 2013-06-21 Jürgen SchmidtCommits: 512Joined: 2000-10-09 @@ -1411,26 +1408,26 @@ *jan IversenCommits: 474Joined: 2015-11-03 - + Andreas BregasCommits: 470Joined: 2000-09-25 - *Seth ChaiklinCommits: 436Joined: 2019-11-13 + *Seth ChaiklinCommits: 460Joined: 2019-11-13 - *Jim RaykowskiCommits: 432Joined: 2017-04-16 + *Jim RaykowskiCommits: 434Joined: 2017-04-16 Dirk VoelzkeCommits: 392Joined: 2000-11-27 - + *Ashod NakashianCommits: 388Joined: 2015-01-07 - *Heiko TietzeCommits: 381Joined: 2016-10-06 + *Heiko TietzeCommits: 387Joined: 2016-10-06 *Ivan TimofeevCommits: 380Joined: 2011-09-16 @@ -1439,12 +1436,12 @@ Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 - + - Martin HollmichelCommits: 371Joined: 2000-09-19 + *Laurent BPCommits: 372Joined: 2011-08-31 - *Laurent BPCommits: 368Joined: 2011-08-31 + Martin HollmichelCommits: 371Joined: 2000-09-19 *Muhammet KaraCommits: 367Joined: 2016-03-20 @@ -1453,7 +1450,7 @@ *Pranav KantCommits: 366Joined: 2015-03-01 - + Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 @@ -1464,12 +1461,12 @@ *David OstrovskyCommits: 334Joined: 2012-04-01 - *Marco CecchettiCommits: 318Joined: 2011-04-14 + *Marco CecchettiCommits: 321Joined: 2011-04-14 - + - *Jean-Pierre LedureCommits: 307Joined: 2013-10-12 + *Jean-Pierre LedureCommits: 314Joined: 2013-10-12 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1481,49 +1478,49 @@ *Chr. RossmanithCommits: 300Joined: 2011-01-03 - + *Mark HungCommits: 298Joined: 2014-11-04 - *Justin LuthCommits: 290Joined: 2018-04-21 + *Justin LuthCommits: 291Joined: 2018-04-21 *August SodoraCommits: 285Joined: 2011-10-18 - *Stanislav HoracekCommits: 279Joined: 2012-12-09 + *Stanislav HoracekCommits: 280Joined: 2012-12-09 - + - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Henry CastroCommits: 279Joined: 2015-01-09 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Henry CastroCommits: 272Joined: 2015-01-09 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 Lars LanghansCommits: 260Joined: 2000-09-22 - + Muthu SubramanianCommits: 250Joined: 2010-08-25 - *Vasily MelenchukCommits: 248Joined: 2015-01-27 + Bartosz KosiorekCommits: 250Joined: 2010-09-17 - Bartosz KosiorekCommits: 247Joined: 2010-09-17 + *Vasily MelenchukCommits: 249Joined: 2015-01-27 *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - + *Winfried DonkersCommits: 213Joined: 2011-11-11 @@ -1537,51 +1534,51 @@ *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 - + - *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 + *Rafael LimaCommits: 196Joined: 2020-11-13 - *Robert NagyCommits: 191Joined: 2010-11-04 + *Regina HenschelCommits: 192Joined: 2010-11-04 - *Regina HenschelCommits: 191Joined: 2010-11-04 + *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 - *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 + *Robert NagyCommits: 191Joined: 2010-11-04 - + - *Dennis FrancisCommits: 191Joined: 2018-11-15 + *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 - Giuseppe CastagnoCommits: 187Joined: 2007-12-09 + *Dennis FrancisCommits: 191Joined: 2018-11-15 - *Rafael LimaCommits: 186Joined: 2020-11-13 + Giuseppe CastagnoCommits: 187Joined: 2007-12-09 *François TigeotCommits: 176Joined: 2011-01-31 - + *Philipp RiemerCommits: 171Joined: 2012-05-25 - *Balazs VargaCommits: 162Joined: 2018-07-05 + *Balazs VargaCommits: 165Joined: 2018-07-05 - *Nigel HawkinsCommits: 160Joined: 2010-10-28 + *Andreas HeinischCommits: 162Joined: 2019-05-13 - *Andreas HeinischCommits: 156Joined: 2019-05-13 + *Nigel HawkinsCommits: 160Joined: 2010-10-28 - + - *Gülşah KöseCommits: 155Joined: 2015-03-14 + *Gülşah KöseCommits: 156Joined: 2015-03-14 *Gert FallerCommits: 151Joined: 2010-10-25 @@ -1593,9 +1590,12 @@ *Alexander WilmsCommits: 151Joined: 2012-05-26 - + + + *Tünde TóthCommits: 148Joined: 2019-03-14 + - *Tünde TóthCommits: 145Joined: 2019-03-14 + *Ilmari LauhakangasCommits: 142Joined: 2017-04-15 Gregor HartmannCommits: 141Joined: 2000-10-12 @@ -1603,25 +1603,22 @@ *Matthias FreundCommits: 141Joined: 2013-02-08 + + *Tomáš ChvátalCommits: 140Joined: 2011-07-27 - - *Artur DryomovCommits: 137Joined: 2013-03-14 - *Ilmari LauhakangasCommits: 137Joined: 2017-04-15 - - *Serge KrotCommits: 132Joined: 2015-10-25 *panoskorovesisCommits: 131Joined: 2021-06-09 - + *Jesús CorriusCommits: 130Joined: 2010-10-07 @@ -1635,7 +1632,7 @@ Helge Delfs [hde]Commits: 126Joined: 2009-07-28 - + *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 @@ -1646,10 +1643,10 @@ Takashi OnoCommits: 122Joined: 2009-12-10 - *Mert TumerCommits: 120Joined: 2016-04-30 + *Mert TumerCommits: 122Joined: 2016-04-30 - + *Sebastian SpaethCommits: 119Joined: 2010-09-28 @@ -1663,7 +1660,7 @@ Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 - + *Joren De CuyperCommits: 114Joined: 2013-01-07 @@ -1677,7 +1674,7 @@ *Akshay DeepCommits: 110Joined: 2016-01-23 - + *Sophia SchröderCommits: 110Joined: 2018-04-07 @@ -1691,21 +1688,24 @@ *Thomas KlausnerCommits: 99Joined: 2010-10-01 - + - *Laurent GodardCommits: 93Joined: 2011-05-06 + *Attila Bakos (NISZ)Commits: 96Joined: 2019-10-28 - *Attila Bakos (NISZ)Commits: 93Joined: 2019-10-28 + *Laurent GodardCommits: 93Joined: 2011-05-06 - *HosseinCommits: 92Joined: 2021-06-29 + *HosseinCommits: 93Joined: 2021-06-29 *Stefan KnorrCommits: 91Joined: 2011-07-04 - + + + *Aron BudeaCommits: 91Joined: 2014-12-22 + *Varun DhallCommits: 91Joined: 2015-03-07 @@ -1715,13 +1715,10 @@ *Philipp HoferCommits: 90Joined: 2020-11-06 - - *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 - - + - *Aron BudeaCommits: 89Joined: 2014-12-22 + *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 *Tim RetoutCommits: 88Joined: 2012-02-14 @@ -1733,7 +1730,7 @@ *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 - + *Adam CoCommits: 86Joined: 2013-04-28 @@ -1747,7 +1744,7 @@ *Javier FernandezCommits: 84Joined: 2013-03-06 - + Tobias KrauseCommits: 83Joined: 2007-10-02 @@ -1758,15 +1755,15 @@ *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - *Roman KuznetsovCommits: 78Joined: 2018-10-23 + *Roman KuznetsovCommits: 82Joined: 2018-10-23 - + - *Steve FanningCommits: 78Joined: 2020-04-20 + *Tibor NagyCommits: 80Joined: 2020-04-01 - *Tibor NagyCommits: 77Joined: 2020-04-01 + *Steve FanningCommits: 78Joined: 2020-04-20 *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1775,7 +1772,7 @@ *Gergo MocsiCommits: 72Joined: 2013-02-14 - + *weigaoCommits: 72Joined: 2014-05-07 @@ -1789,7 +1786,7 @@ *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 - + *Antonio FernandezCommits: 68Joined: 2012-07-18 @@ -1803,21 +1800,21 @@ *Rohan KumarCommits: 65Joined: 2016-02-23 - + - *Tomoyuki KubotaCommits: 64Joined: 2018-03-11 + *Tomoyuki KubotaCommits: 65Joined: 2018-03-11 - *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 + *tageziCommits: 63Joined: 2015-09-16 - *Rosemary SebastianCommits: 62Joined: 2015-06-23 + *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 - *tageziCommits: 62Joined: 2015-09-16 + *Rosemary SebastianCommits: 62Joined: 2015-06-23 - + Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 @@ -1831,49 +1828,52 @@ Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - + *Jaskaran SinghCommits: 60Joined: 2016-02-18 + *Alain RomedenneCommits: 60Joined: 2021-02-17 + + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 *shiming zhangCommits: 59Joined: 2013-11-04 + + *Simon SteinbeissCommits: 59Joined: 2015-06-01 - - *Ahmed ElShreifCommits: 59Joined: 2019-06-10 - *Pranam LashkariCommits: 58Joined: 2020-04-03 + *Pranam LashkariCommits: 59Joined: 2020-04-03 + + + *Attila SzűcsCommits: 58Joined: 2020-06-29 + + *yiming juCommits: 57Joined: 2013-11-01 *matteocamCommits: 56Joined: 2014-02-25 - - *Niklas JohanssonCommits: 55Joined: 2011-11-07 *Matthew J. FrancisCommits: 55Joined: 2014-08-25 - - *Alain RomedenneCommits: 55Joined: 2021-02-17 - + + Nikolai PretzellCommits: 54Joined: 2001-03-09 - - *Mihály PalenikCommits: 54Joined: 2013-07-11 @@ -1883,25 +1883,22 @@ *Jim RaykowskiCommits: 54Joined: 2019-05-11 + + *Rob SneldersCommits: 53Joined: 2011-02-08 - - *Martin KepplingerCommits: 53Joined: 2011-02-18 - *Attila SzűcsCommits: 53Joined: 2020-06-29 - - *Lior KaplanCommits: 52Joined: 2010-10-05 *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 - + *Will ThompsonCommits: 51Joined: 2012-03-21 @@ -1915,7 +1912,7 @@ *Rachit GuptaCommits: 51Joined: 2014-01-18 - + *Ptyl DragonCommits: 50Joined: 2013-05-09 @@ -1929,7 +1926,7 @@ *Urs FässlerCommits: 48Joined: 2013-02-14 - + *mingli juCommits: 48Joined: 2013-11-05 @@ -1943,7 +1940,7 @@ *Luke DellerCommits: 46Joined: 2012-11-26 - + *hongyu zhongCommits: 46Joined: 2013-11-04 @@ -1957,7 +1954,7 @@ mb93783Commits: 45Joined: 2009-07-15 - + *Eilidh McAdamCommits: 45Joined: 2011-03-10 @@ -1971,7 +1968,7 @@ *Szabolcs TothCommits: 45Joined: 2019-08-07 - + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 @@ -1985,7 +1982,7 @@ *Philippe JungCommits: 43Joined: 2015-05-01 - + *Daniel Arato (NISZ)Commits: 43Joined: 2020-08-24 @@ -1999,7 +1996,7 @@ *Sébastien Le RayCommits: 41Joined: 2011-02-10 - + *Christian M. HellerCommits: 41Joined: 2013-02-24 @@ -2013,7 +2010,7 @@ *AdityaCommits: 41Joined: 2019-01-04 - + *Francisco SaitoCommits: 40Joined: 2011-03-21 @@ -2027,7 +2024,7 @@ *Kayo HamidCommits: 39Joined: 2010-10-09 - + *Marc-André LaverdièreCommits: 39Joined: 2011-06-21 @@ -2041,7 +2038,7 @@ *Damjan JovanovicCommits: 38Joined: 2015-08-26 - + *Shivam Kumar SinghCommits: 38Joined: 2020-01-15 @@ -2055,7 +2052,7 @@ *Jennifer LiebelCommits: 37Joined: 2014-08-29 - + *Ayhan YalçınsoyCommits: 37Joined: 2019-12-20 @@ -2069,7 +2066,7 @@ *Vinaya MandkeCommits: 36Joined: 2013-02-08 - + *Csikós TamásCommits: 36Joined: 2013-07-01 @@ -2083,7 +2080,7 @@ *Laurent CharrièreCommits: 35Joined: 2010-10-14 - + *Santiago MartinezCommits: 35Joined: 2012-01-20 @@ -2097,7 +2094,7 @@ *Tobias LippertCommits: 35Joined: 2014-01-02 - + *Łukasz HryniukCommits: 35Joined: 2015-01-02 @@ -2111,7 +2108,7 @@ *Laurent AlonsoCommits: 34Joined: 2011-10-23 - + *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 @@ -2125,7 +2122,7 @@ *Aurimas FišerasCommits: 33Joined: 2010-10-11 - + *Cor NouwsCommits: 33Joined: 2011-11-19 @@ -2136,10 +2133,13 @@ *Dennis RoczekCommits: 33Joined: 2015-06-09 - *Aleksei NikiforovCommits: 33Joined: 2018-10-31 + *Ilhan YesilCommits: 33Joined: 2018-04-11 - + + + *Aleksei NikiforovCommits: 33Joined: 2018-10-31 + *GokulCommits: 32Joined: 2012-07-10 @@ -2149,11 +2149,8 @@ *Arnold DumasCommits: 32Joined: 2016-02-14 - - *Ilhan YesilCommits: 32Joined: 2018-04-11 - - + *Dmitriy ShilinCommits: 32Joined: 2018-11-30 @@ -2167,7 +2164,7 @@ *Sushil ShindeCommits: 31Joined: 2013-10-21 - + *fengzengCommits: 31Joined: 2013-11-04 @@ -2181,7 +2178,7 @@ *DaeHyun SungCommits: 31Joined: 2018-05-19 - + *Sarper AkdemirCommits: 31Joined: 2021-04-25 @@ -2195,7 +2192,7 @@ *Christoph HerzogCommits: 30Joined: 2011-01-07 - + *Manal AlhassounCommits: 30Joined: 2012-09-10 @@ -2209,7 +2206,7 @@ *muleiCommits: 30Joined: 2013-11-01 - + *keremCommits: 30Joined: 2015-10-12 @@ -2223,7 +2220,7 @@ *Regényi BalázsCommits: 30Joined: 2020-04-02 - + *homeboy445Commits: 30Joined: 2020-12-09 @@ -2237,7 +2234,7 @@ *xinjiangCommits: 29Joined: 2013-11-04 - + *Matthias SeidelCommits: 29Joined: 2017-02-18 @@ -2251,7 +2248,7 @@ *Jack LeighCommits: 28Joined: 2012-10-03 - + *Pallavi JadhavCommits: 28Joined: 2013-02-08 @@ -2265,7 +2262,7 @@ *Gökçen EraslanCommits: 27Joined: 2012-04-15 - + *Joel MaderoCommits: 27Joined: 2012-06-15 @@ -2279,7 +2276,7 @@ *Jorenz ParagasCommits: 27Joined: 2015-06-23 - + *Dipangar NiranjarCommits: 27Joined: 2016-01-03 @@ -2293,7 +2290,10 @@ *Adrien OllierCommits: 27Joined: 2019-04-24 - + + + *Thorsten BehrensCommits: 27Joined: 2020-12-19 + *Nicolas ChristenerCommits: 26Joined: 2011-03-10 @@ -2303,25 +2303,22 @@ *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + *Daniel SikelerCommits: 26Joined: 2014-08-28 - - *Akash JainCommits: 26Joined: 2016-03-25 - *Thorsten BehrensCommits: 26Joined: 2020-12-19 - - *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 *Tomofumi YagiCommits: 25Joined: 2011-10-20 - + *Prashant PandeyCommits: 25Joined: 2013-02-20 @@ -2335,21 +2332,24 @@ *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 - + *George BatemanCommits: 25Joined: 2020-08-04 + *Martin SrebotnjakCommits: 24Joined: 2010-12-19 + + *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 @@ -2359,11 +2359,11 @@ *Sören MöllerCommits: 23Joined: 2011-01-03 + + *Lucas BaudinCommits: 23Joined: 2011-01-25 - - *Julien ChaffraixCommits: 23Joined: 2011-04-12 @@ -2373,11 +2373,11 @@ *Felix ZhangCommits: 23Joined: 2011-10-19 + + *Mario J. RugieroCommits: 23Joined: 2015-10-11 - - *Marco A.G.PintoCommits: 23Joined: 2016-02-02 @@ -2387,11 +2387,11 @@ *Dr. David Alan GilbertCommits: 23Joined: 2020-09-12 + + *Jacek WolszczakCommits: 22Joined: 2010-10-07 - - *Júlio HoffimannCommits: 22Joined: 2010-10-18 @@ -2401,11 +2401,11 @@ *Jian Fang ZhangCommits: 22Joined: 2012-06-18 + + *Frédéric WangCommits: 22Joined: 2013-06-22 - - *zhenyu yuanCommits: 22Joined: 2013-11-06 @@ -2413,13 +2413,10 @@ *Saurav ChiraniaCommits: 22Joined: 2018-01-14 - *Martin SrebotnjakCommits: 21Joined: 2010-12-19 - - *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - + *scitoCommits: 21Joined: 2015-04-13 @@ -2433,7 +2430,7 @@ Eric BachardCommits: 20Joined: 2005-10-19 - + *Andy HolderCommits: 20Joined: 2010-12-06 @@ -2447,7 +2444,7 @@ *Tushar BendeCommits: 20Joined: 2013-09-27 - + *Andrew DentCommits: 20Joined: 2014-02-26 @@ -2461,7 +2458,7 @@ *Peilin XiaoCommits: 19Joined: 2013-12-09 - + *Sven WehnerCommits: 19Joined: 2014-01-11 @@ -2475,7 +2472,7 @@ *krishna keshavCommits: 19Joined: 2016-05-05 - + *Onur YilmazCommits: 19Joined: 2019-12-18 @@ -2483,13 +2480,16 @@ *Svante SchubertCommits: 19Joined: 2020-07-08 + *offtkpCommits: 19Joined: 2022-03-24 + + Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 - - *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 @@ -2499,11 +2499,11 @@ *Richard PALOCommits: 18Joined: 2014-11-09 + + *Federico BassiniCommits: 18Joined: 2016-10-06 - - *Mert TümerCommits: 18Joined: 2018-01-08 @@ -2511,157 +2511,165 @@ *Zdibák ZoltánCommits: 18Joined: 2018-10-13 + *Justin LuthCommits: 18Joined: 2020-02-03 + + + + *Ming HuaCommits: 18Joined: 2020-11-02 *Alfonso EusebioCommits: 17Joined: 2011-01-16 - - *Bálint DózsaCommits: 17Joined: 2011-02-10 *Olivier RCommits: 17Joined: 2011-08-01 + + *Jian Hong ChengCommits: 17Joined: 2012-06-26 *navin patidarCommits: 17Joined: 2013-01-06 - - *Umesh KadamCommits: 17Joined: 2014-01-10 *melikeyurtogluCommits: 17Joined: 2015-10-09 + + *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 *Thomas BeckCommits: 17Joined: 2017-03-27 - - *Kshitij PathaniaCommits: 17Joined: 2017-09-28 *Vikas MahatoCommits: 17Joined: 2017-12-31 + + *Martin van ZijlCommits: 17Joined: 2018-02-26 *Alain RomedenneCommits: 17Joined: 2018-12-19 - - *Todor BalabanovCommits: 17Joined: 2019-04-29 *Mesut ÇifciCommits: 17Joined: 2019-12-18 + + *Bayram ÇiçekCommits: 17Joined: 2020-11-23 Florian ReuterCommits: 16Joined: 2010-09-14 - - *Luke DixonCommits: 16Joined: 2010-10-26 *Niko RönkköCommits: 16Joined: 2010-10-31 + + *Jordan AyersCommits: 16Joined: 2010-11-04 *Anders JonssonCommits: 16Joined: 2010-12-11 - - *Maciej RumianowskiCommits: 16Joined: 2011-07-19 *Lei De BinCommits: 16Joined: 2012-07-04 + + *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 *tsahi glikCommits: 16Joined: 2013-06-04 - - *Chris LaplanteCommits: 16Joined: 2014-04-07 *Adam KasztennyCommits: 16Joined: 2016-03-27 + + *nd101Commits: 16Joined: 2019-07-03 Octavio AlvarezCommits: 15Joined: 2010-09-13 - - *Luke SymesCommits: 15Joined: 2010-10-01 *Povilas KanapickasCommits: 15Joined: 2010-10-18 + + *Joachim TremourouxCommits: 15Joined: 2010-11-19 *Yifan JCommits: 15Joined: 2010-12-16 - - *Cosimo CecchiCommits: 15Joined: 2011-11-02 *Alexander BergmannCommits: 15Joined: 2012-01-13 + + *Catalin IacobCommits: 15Joined: 2012-02-10 *Nikhil WalvekarCommits: 15Joined: 2013-11-01 - - *Heena GuptaCommits: 15Joined: 2014-06-17 *Andreas BrandnerCommits: 15Joined: 2017-09-04 + + *Armin Le GrandCommits: 15Joined: 2018-02-15 *Samuel ThibaultCommits: 15Joined: 2018-09-05 - - *Ross JohnsonCommits: 15Joined: 2021-09-13 + *Mark HungCommits: 15Joined: 2022-05-01 + + + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 @@ -2670,11 +2678,11 @@ *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 - - *Zhe WangCommits: 14Joined: 2012-06-20 + + *Sun YingCommits: 14Joined: 2012-08-16 @@ -2684,11 +2692,11 @@ *Juan PiccaCommits: 14Joined: 2014-07-23 - - *Zsolt BölönyCommits: 14Joined: 2015-01-10 + + *Gökhan GurbetoğluCommits: 14Joined: 2016-06-06 @@ -2698,11 +2706,11 @@ *Prashant ShahCommits: 13Joined: 2010-10-10 - - *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 @@ -2712,11 +2720,11 @@ *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 - - *Mathias HasselmannCommits: 13Joined: 2013-01-14 + + *Manfred BlumeCommits: 13Joined: 2017-03-27 @@ -2724,10 +2732,13 @@ *sabri unalCommits: 13Joined: 2018-11-20 + *Heiko TietzeCommits: 13Joined: 2019-09-08 + + *Steve FanningCommits: 13Joined: 2019-11-30 - + *VaibhavMalik4187Commits: 13Joined: 2021-12-10 @@ -2741,7 +2752,7 @@ *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 - + *Tomas HlavatyCommits: 12Joined: 2011-12-06 @@ -2755,7 +2766,7 @@ *Gábor StefanikCommits: 12Joined: 2012-04-07 - + *Mirek MazelCommits: 12Joined: 2012-06-05 @@ -2769,7 +2780,7 @@ *tymyjanCommits: 12Joined: 2016-04-03 - + *Abhilash SinghCommits: 12Joined: 2016-07-22 @@ -2777,16 +2788,13 @@ *Kacper KasperCommits: 12Joined: 2018-02-18 - *Heiko TietzeCommits: 12Joined: 2019-09-08 - - *Pelin KuranCommits: 12Joined: 2020-01-25 - - *Gleb PopovCommits: 12Joined: 2020-10-05 + + *Emircan AgacCommits: 12Joined: 2021-08-02 @@ -2796,11 +2804,11 @@ Frank PetersCommits: 11Joined: 2010-05-20 - - *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + + *René KjellerupCommits: 11Joined: 2010-10-14 @@ -2810,11 +2818,11 @@ *David BolenCommits: 11Joined: 2012-03-07 - - *Jung-uk KimCommits: 11Joined: 2012-08-13 + + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 @@ -2824,11 +2832,11 @@ *Sean YoungCommits: 11Joined: 2013-05-16 - - *Krunoslav ŠebetićCommits: 11Joined: 2013-07-18 + + *Charu TyagiCommits: 11Joined: 2014-06-25 @@ -2838,11 +2846,11 @@ *Phillip SzCommits: 11Joined: 2015-03-16 - - *nadithCommits: 11Joined: 2016-07-14 + + *Maarten BosmansCommits: 11Joined: 2016-08-24 @@ -2852,11 +2860,11 @@ *jmzambonCommits: 11Joined: 2017-05-19 - - *Manuj VashistCommits: 11Joined: 2017-12-10 + + *Milian WolffCommits: 11Joined: 2018-01-10 @@ -2866,11 +2874,11 @@ *Srijan BhatiaCommits: 11Joined: 2020-05-30 - - *shubham656Commits: 11Joined: 2020-11-07 + + *AnshuCommits: 11Joined: 2020-11-09 @@ -2878,94 +2886,86 @@ *Jeff HuangCommits: 11Joined: 2021-04-12 - *offtkpCommits: 11Joined: 2022-03-24 - - - - *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 - - *Kiyotaka NishiboriCommits: 10Joined: 2017-08-27 *Rahul GurungCommits: 10Joined: 2018-08-26 + + *Mark RobbinsonCommits: 10Joined: 2019-01-02 *A_GANCommits: 10Joined: 2020-01-25 - - *Michael WarnerCommits: 10Joined: 2020-05-24 *Vert DCommits: 10Joined: 2020-09-26 + + *tusharCommits: 10Joined: 2021-01-10 *Vincent LE GARRECCommits: 10Joined: 2021-02-21 - - *Balazs SanthaCommits: 10Joined: 2021-02-26 - *Mark HungCommits: 10Joined: 2022-05-01 - - *Mattias JohnssonCommits: 9Joined: 2010-10-18 + + *Surendran MahendranCommits: 9Joined: 2010-11-05 - - *Steven ButlerCommits: 9Joined: 2011-01-07 @@ -2975,11 +2975,11 @@ *Mihkel TõnnovCommits: 9Joined: 2012-07-02 + + *Michael DunphyCommits: 9Joined: 2013-04-18 - - *Dinesh PatilCommits: 9Joined: 2014-03-12 @@ -2989,11 +2989,11 @@ *Deena FrancisCommits: 9Joined: 2014-07-29 + + *Ryan McCoskrieCommits: 9Joined: 2014-09-14 - - *Jun NogataCommits: 9Joined: 2015-01-07 @@ -3003,11 +3003,11 @@ *skswalesCommits: 9Joined: 2016-05-06 + + *pv2kCommits: 9Joined: 2016-11-28 - - *Adam KovacsCommits: 9Joined: 2018-08-16 @@ -3017,14 +3017,22 @@ *Canberk TURANCommits: 9Joined: 2020-01-25 + + *Jussi PakkanenCommits: 9Joined: 2020-02-22 - - + + *xuenhuaCommits: 9Joined: 2022-04-08 + + + *Hannah MeeksCommits: 9Joined: 2022-04-16 + Fong LinCommits: 8Joined: 2010-09-14 + + Jody GoldbergCommits: 8Joined: 2010-09-15 @@ -3034,11 +3042,11 @@ *Robert DargaudCommits: 8Joined: 2011-04-12 - - *Jenei GáborCommits: 8Joined: 2011-07-29 + + *Terrence EngerCommits: 8Joined: 2011-10-27 @@ -3048,11 +3056,11 @@ *Tomcsik BenceCommits: 8Joined: 2012-01-14 - - *Jonathan AdamsCommits: 8Joined: 2012-03-16 + + *Norah A. AbanumayCommits: 8Joined: 2012-07-30 @@ -3062,11 +3070,11 @@ *Timothy PearsonCommits: 8Joined: 2012-08-18 - - *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + *karthCommits: 8Joined: 2013-01-07 @@ -3076,11 +3084,11 @@ *Brian FraserCommits: 8Joined: 2013-09-03 - - *RajashriCommits: 8Joined: 2013-12-06 + + *Keith CurtisCommits: 8Joined: 2013-12-20 @@ -3090,11 +3098,11 @@ *Thomas ViehmannCommits: 8Joined: 2014-08-15 - - *Nathan YeeCommits: 8Joined: 2015-01-01 + + *Ursache VladimirCommits: 8Joined: 2015-02-10 @@ -3104,11 +3112,11 @@ *HeiherCommits: 8Joined: 2015-07-07 - - *IanCommits: 8Joined: 2015-08-06 + + *Matus UzakCommits: 8Joined: 2016-02-22 @@ -3118,11 +3126,11 @@ *ShinnokCommits: 8Joined: 2017-09-06 - - *Alain RomedenneCommits: 8Joined: 2018-11-29 + + *Rasmus JonssonCommits: 8Joined: 2019-03-20 @@ -3132,11 +3140,11 @@ *Ouyang LeyanCommits: 8Joined: 2020-09-06 - - *diwanshu885Commits: 8Joined: 2020-10-30 + + *Gökhan ÖzeloğluCommits: 8Joined: 2020-11-21 @@ -3146,11 +3154,11 @@ *4k5h1tCommits: 8Joined: 2021-08-26 - - *Thies PierdolaCommits: 7Joined: 2011-01-28 + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 @@ -3160,11 +3168,11 @@ *Alex McMurchy1917Commits: 7Joined: 2011-08-14 - - *Christoph LutzCommits: 7Joined: 2011-09-06 + + *Keith McRaeCommits: 7Joined: 2012-01-18 @@ -3174,11 +3182,11 @@ *Brennan VincentCommits: 7Joined: 2012-04-02 - - *Wang LeiCommits: 7Joined: 2012-06-14 + + *Issa AlkurtassCommits: 7Joined: 2012-09-04 @@ -3188,11 +3196,11 @@ *Mathias MichelCommits: 7Joined: 2012-11-19 - - *Eric SeynaeveCommits: 7Joined: 2013-02-04 + + *SJacobiCommits: 7Joined: 2013-03-05 @@ -3202,11 +3210,11 @@ *Stefan RingCommits: 7Joined: 2014-01-09 - - *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *David DelmaCommits: 7Joined: 2014-05-13 @@ -3216,11 +3224,11 @@ *V Stuart FooteCommits: 7Joined: 2014-12-04 - - *RaalCommits: 7Joined: 2014-12-31 + + *brinzingCommits: 7Joined: 2015-08-22 @@ -3230,11 +3238,11 @@ *iremCommits: 7Joined: 2015-10-11 - - *Rico TzschichholzCommits: 7Joined: 2016-02-09 + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 @@ -3244,11 +3252,11 @@ *Asela DasanayakaCommits: 7Joined: 2016-07-30 - - *Tiago SantosCommits: 7Joined: 2016-08-12 + + *HieronymousCommits: 7Joined: 2016-10-13 @@ -3258,11 +3266,11 @@ *Marina LatiniCommits: 7Joined: 2016-11-10 - - *Furkan Ahmet KaraCommits: 7Joined: 2017-10-21 + + *Vincas DargisCommits: 7Joined: 2018-01-21 @@ -3272,11 +3280,11 @@ *Hamish McIntyre-BhattyCommits: 7Joined: 2018-10-10 - - *BugraCommits: 7Joined: 2020-01-30 + + *Chris MayoCommits: 7Joined: 2020-05-08 @@ -3286,137 +3294,137 @@ *BaiXiaochunCommits: 7Joined: 2021-06-27 - - *Dhiraj HoldenCommits: 7Joined: 2021-11-30 - - *xuenhuaCommits: 7Joined: 2022-04-08 - + + *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 - - *baltasarqCommits: 6Joined: 2016-02-24 *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 + + *Gökay ŞATIRCommits: 6Joined: 2019-12-24 *Batuhan TaskayaCommits: 6Joined: 2020-01-25 - - *Mehmet Emin BaşoğluCommits: 6Joined: 2020-01-25 *iakarsuCommits: 6Joined: 2020-01-25 + + + + *Pedro Pinto SilvaCommits: 6Joined: 2020-06-16 + *Ivan StefanenkoCommits: 6Joined: 2020-08-26 *ViKrAm-BaisCommits: 6Joined: 2021-01-07 - - *msrijita18Commits: 6Joined: 2021-01-26 + + *Henrik PalomäkiCommits: 6Joined: 2021-10-18 @@ -3426,11 +3434,11 @@ *Gil ForcadaCommits: 5Joined: 2010-09-28 - - *David HobleyCommits: 5Joined: 2010-10-04 + + *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 @@ -3440,11 +3448,11 @@ *Tobias RosenbergerCommits: 5Joined: 2011-01-31 - - *Jeffrey ChangCommits: 5Joined: 2011-06-01 + + *ericb2Commits: 5Joined: 2011-10-30 @@ -3454,11 +3462,11 @@ *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 - - *Wei Ming KhooCommits: 5Joined: 2012-02-17 + + *Lionel DricotCommits: 5Joined: 2012-06-04 @@ -3468,11 +3476,11 @@ *Bence BabatiCommits: 5Joined: 2012-08-13 - - *Pavel JaníkCommits: 5Joined: 2012-11-29 + + *Werner KoernerCommits: 5Joined: 2012-12-11 @@ -3482,11 +3490,11 @@ *Miguel GomezCommits: 5Joined: 2013-04-02 - - *pje335_NLCommits: 5Joined: 2013-05-10 + + *Ciorba EdmondCommits: 5Joined: 2013-06-11 @@ -3496,11 +3504,11 @@ *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 - - *Timothy MarkleCommits: 5Joined: 2014-01-31 + + *Jan KantertCommits: 5Joined: 2014-06-12 @@ -3510,11 +3518,11 @@ *Berk GurekenCommits: 5Joined: 2015-10-01 - - *Yossi ZahnCommits: 5Joined: 2016-11-25 + + *Edmund WongCommits: 5Joined: 2016-12-08 @@ -3524,11 +3532,14 @@ *tamsil1amani3Commits: 5Joined: 2016-12-22 - - *Lukas RöllinCommits: 5Joined: 2017-02-06 + + + + *Colomban WendlingCommits: 5Joined: 2017-03-15 + *Paul MenzelCommits: 5Joined: 2017-05-17 @@ -3539,7 +3550,7 @@ *Tolunay DündarCommits: 5Joined: 2019-12-18 - + *Eda Nur VarCommits: 5Joined: 2020-01-25 @@ -3553,7 +3564,7 @@ *gokaysatirCommits: 5Joined: 2020-08-08 - + *Gabriel MaseiCommits: 5Joined: 2020-09-02 @@ -3567,7 +3578,7 @@ *Georgy LitvinovCommits: 5Joined: 2020-12-16 - + *Suhaas JoshiCommits: 5Joined: 2021-01-04 @@ -3581,7 +3592,7 @@ *Baran AytasCommits: 5Joined: 2021-08-22 - + *Ismael LucenoCommits: 5Joined: 2021-09-29 @@ -3595,21 +3606,24 @@ *zhutyraCommits: 5Joined: 2022-02-01 - + *Deep17Commits: 5Joined: 2022-02-20 + *Siddhant ChaudharyCommits: 5Joined: 2022-03-11 + + *Florian BircherCommits: 4Joined: 2010-10-16 *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 - - *Maja DjordjevicCommits: 4Joined: 2011-01-06 @@ -3619,11 +3633,11 @@ *Alexander ThurgoodCommits: 4Joined: 2011-01-26 + + *ClioCommits: 4Joined: 2011-01-30 - - *Michael MuenchCommits: 4Joined: 2011-02-13 @@ -3633,11 +3647,11 @@ *Samphan RaruenromCommits: 4Joined: 2011-03-24 + + *Andreas BeckerCommits: 4Joined: 2011-04-04 - - *Roland BaudinCommits: 4Joined: 2011-05-16 @@ -3647,11 +3661,11 @@ *Tom TromeyCommits: 4Joined: 2011-08-11 + + *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 - - *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 @@ -3661,11 +3675,11 @@ *Mariana MarasoiuCommits: 4Joined: 2012-03-14 + + *Yong Lin MaCommits: 4Joined: 2012-06-07 - - *Raimundo MouraCommits: 4Joined: 2012-06-16 @@ -3675,11 +3689,11 @@ *Nicholas ShanksCommits: 4Joined: 2012-09-04 + + *tinoCommits: 4Joined: 2012-12-03 - - *Joan MontanéCommits: 4Joined: 2013-02-22 @@ -3689,11 +3703,11 @@ *Sameer DeshmukhCommits: 4Joined: 2013-04-20 + + *Zheng FanCommits: 4Joined: 2013-04-22 - - *Elie RouxCommits: 4Joined: 2013-05-29 @@ -3703,11 +3717,11 @@ *Honza HavlíčekCommits: 4Joined: 2013-07-27 + + *Andrea PescettiCommits: 4Joined: 2013-10-07 - - *Robert CampbellCommits: 4Joined: 2013-11-13 @@ -3717,11 +3731,11 @@ *Ken BiondiCommits: 4Joined: 2014-03-05 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 - - *Simon DannerCommits: 4Joined: 2014-08-02 @@ -3731,11 +3745,11 @@ *Aleksandr AndreevCommits: 4Joined: 2015-04-20 + + *Derrick RochaCommits: 4Joined: 2015-08-26 - - *Sahasranaman M SCommits: 4Joined: 2015-10-04 @@ -3745,11 +3759,11 @@ *pasqual milvaquesCommits: 4Joined: 2015-12-02 + + *aqcoderCommits: 4Joined: 2015-12-13 - - *Burcin AkalinCommits: 4Joined: 2015-12-18 @@ -3759,11 +3773,11 @@ *erdemdemirkapiCommits: 4Joined: 2016-01-30 + + *coypuCommits: 4Joined: 2016-02-03 - - *dtmCommits: 4Joined: 2016-02-11 @@ -3773,11 +3787,11 @@ *GurkaranCommits: 4Joined: 2016-03-17 + + *Fabio BiocchettiCommits: 4Joined: 2016-10-21 - - *Gaurav DhingraCommits: 4Joined: 2016-12-03 @@ -3787,11 +3801,11 @@ *Piotr DrągCommits: 4Joined: 2017-03-05 + + *Fyodor YemelyanenkoCommits: 4Joined: 2017-08-21 - - *Olivier TilloyCommits: 4Joined: 2018-01-08 @@ -3801,39 +3815,36 @@ *Jozsef SzakacsCommits: 4Joined: 2018-11-07 + + *Andrew UdvareCommits: 4Joined: 2019-01-08 - - + + *dldldCommits: 4Joined: 2019-12-18 + *Aleyna DoğrucanCommits: 4Joined: 2019-12-28 *Efdal İncesuCommits: 4Joined: 2020-01-25 + + *Faruk DemirbaşCommits: 4Joined: 2020-01-25 *Hakan BakacakCommits: 4Joined: 2020-01-26 - - *Burak BalaCommits: 4Joined: 2020-01-26 - *Justin LuthCommits: 4Joined: 2020-02-03 - - *Mohamed SamehCommits: 4Joined: 2020-02-11 - - *Pedro Pinto SilvaCommits: 4Joined: 2020-06-16 - - + *Deb Barkley-YeungCommits: 4Joined: 2020-08-19 @@ -3847,7 +3858,7 @@ *Aditya Pratap SinghCommits: 4Joined: 2021-02-01 - + *dipanshu124Commits: 4Joined: 2021-02-12 @@ -3861,7 +3872,7 @@ *Gopi Krishna MenonCommits: 4Joined: 2021-06-07 - + *YildirayCommits: 4Joined: 2021-08-08 @@ -3875,7 +3886,7 @@ *Alan DuCommits: 3Joined: 2010-10-12 - + *Gioele BarabucciCommits: 3Joined: 2010-11-18 @@ -3889,7 +3900,7 @@ *Jonathan AquilinaCommits: 3Joined: 2011-01-18 - + *Michael KochCommits: 3Joined: 2011-01-21 @@ -3903,7 +3914,7 @@ *Tantai TanakanokCommits: 3Joined: 2011-02-09 - + *David NalleyCommits: 3Joined: 2011-03-03 @@ -3917,7 +3928,7 @@ *Dimitri DucCommits: 3Joined: 2011-04-19 - + *Mike EberdtCommits: 3Joined: 2011-07-12 @@ -3931,7 +3942,7 @@ *Michael BauerCommits: 3Joined: 2011-11-23 - + *Sérgio MarquesCommits: 3Joined: 2011-11-25 @@ -3945,7 +3956,7 @@ *Tom ThorogoodCommits: 3Joined: 2012-02-28 - + *Stephan van den AkkerCommits: 3Joined: 2012-06-07 @@ -3959,7 +3970,7 @@ *Bertrand LorentzCommits: 3Joined: 2012-08-03 - + *Oliver GüntherCommits: 3Joined: 2012-08-09 @@ -3973,7 +3984,7 @@ *Peter BaumgartenCommits: 3Joined: 2012-11-24 - + *Markus MaierCommits: 3Joined: 2012-11-25 @@ -3987,7 +3998,7 @@ *Stefan SchickCommits: 3Joined: 2013-02-18 - + *Petr KrausCommits: 3Joined: 2013-03-26 @@ -4001,7 +4012,7 @@ *Jason HulmeCommits: 3Joined: 2013-06-05 - + *Nagy AkosCommits: 3Joined: 2013-06-27 @@ -4015,7 +4026,7 @@ *Tobias MuellerCommits: 3Joined: 2014-02-10 - + *Peter Senna TschudinCommits: 3Joined: 2014-05-26 @@ -4029,7 +4040,7 @@ *Popa Adrian MariusCommits: 3Joined: 2015-03-23 - + *Matthew NichollsCommits: 3Joined: 2015-04-01 @@ -4043,7 +4054,7 @@ *Simon LongCommits: 3Joined: 2015-07-08 - + *Lucas SatabinCommits: 3Joined: 2015-08-25 @@ -4057,7 +4068,7 @@ *Giovanni CaligarisCommits: 3Joined: 2015-11-30 - + *Mayank GuptaCommits: 3Joined: 2016-03-11 @@ -4071,7 +4082,7 @@ *Jacek FraczekCommits: 3Joined: 2016-10-05 - + *liongoldCommits: 3Joined: 2016-11-21 @@ -4085,10 +4096,7 @@ *Dimitri BouronCommits: 3Joined: 2016-12-22 - - - *Colomban WendlingCommits: 3Joined: 2017-03-15 - + *Ivan SafonovCommits: 3Joined: 2017-07-13 @@ -4098,11 +4106,11 @@ *Bán RóbertCommits: 3Joined: 2017-10-25 - - *Mark VecsernyesCommits: 3Joined: 2017-11-15 + + *Gergely TarsolyCommits: 3Joined: 2017-11-28 @@ -4112,11 +4120,11 @@ *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 - - *TelestoCommits: 3Joined: 2018-01-22 + + *Bartosz KosiorekCommits: 3Joined: 2018-02-07 @@ -4126,11 +4134,11 @@ *Laurent GodardCommits: 3Joined: 2018-04-24 - - *Ulkem KasapogluCommits: 3Joined: 2018-07-04 + + *Salih SariyarCommits: 3Joined: 2019-02-09 @@ -4140,11 +4148,11 @@ *Meryem EzberCommits: 3Joined: 2019-02-10 - - *Andrés MaldonadoCommits: 3Joined: 2019-02-21 + + *EL-SHREIFCommits: 3Joined: 2019-02-24 @@ -4152,80 +4160,72 @@ *Stepas ToliautasCommits: 3Joined: 2019-12-16 - *dldldCommits: 3Joined: 2019-12-18 - - - - *Michel ThomasCommits: 3Joined: 2020-02-01 *nienzuCommits: 3Joined: 2020-02-19 + + *Julian KalinowskiCommits: 3Joined: 2020-03-31 *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 - - *Pierre MartyCommits: 3Joined: 2020-04-17 *Eivind SamsethCommits: 3Joined: 2020-05-16 + + *yakovruCommits: 3Joined: 2020-06-17 *mariamfahmyCommits: 3Joined: 2020-10-16 - - *Leo WangCommits: 3Joined: 2020-10-18 *Gizem OzgunCommits: 3Joined: 2020-10-23 + + *Tarun SharmaCommits: 3Joined: 2021-01-14 *Stéphane GuillouCommits: 3Joined: 2021-01-22 - - *Zeynep YavuzCommits: 3Joined: 2021-08-02 *Natalia GavrilovaCommits: 3Joined: 2021-09-24 + + *Verne-LaiCommits: 3Joined: 2021-10-01 *Arnaud VERSINICommits: 3Joined: 2021-12-19 - - *Renwa HiwaCommits: 3Joined: 2022-02-09 *Tushar JhamCommits: 3Joined: 2022-02-21 - - *Siddhant ChaudharyCommits: 3Joined: 2022-03-11 - + + Loiseleur MichelCommits: 2Joined: 2010-09-14 - - *Justin MalcolmCommits: 2Joined: 2010-09-29 @@ -4235,11 +4235,11 @@ *Sean McNamaraCommits: 2Joined: 2010-09-29 + + *Robert SedakCommits: 2Joined: 2010-10-05 - - *Sean McMurrayCommits: 2Joined: 2010-10-20 @@ -4249,11 +4249,11 @@ *Marcin eXine MCommits: 2Joined: 2010-11-02 + + *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - *Christoph NoackCommits: 2Joined: 2010-12-13 @@ -4263,11 +4263,11 @@ *Ed DeanCommits: 2Joined: 2011-01-14 + + *Jonathan CallenCommits: 2Joined: 2011-01-29 - - *Karsten GerloffCommits: 2Joined: 2011-02-06 @@ -4277,11 +4277,11 @@ *Tobias KranzCommits: 2Joined: 2011-02-17 + + *Matthias KloseCommits: 2Joined: 2011-03-01 - - *Michael NattererCommits: 2Joined: 2011-04-08 @@ -4291,11 +4291,11 @@ *Kelly AndersonCommits: 2Joined: 2011-05-31 + + *Michal SvecCommits: 2Joined: 2011-07-12 - - *Mohammad ElahiCommits: 2Joined: 2011-08-27 @@ -4305,11 +4305,11 @@ *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 + + *Jan HubickaCommits: 2Joined: 2011-09-12 - - *Arno TeigsethCommits: 2Joined: 2011-09-14 @@ -4319,11 +4319,11 @@ *Emanuele FiaCommits: 2Joined: 2011-11-02 + + *Yury TarasievichCommits: 2Joined: 2011-11-23 - - *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 @@ -4333,11 +4333,11 @@ *Andreas SchierlCommits: 2Joined: 2012-01-30 + + *PKEuSCommits: 2Joined: 2012-02-05 - - *UrmasCommits: 2Joined: 2012-02-13 @@ -4347,11 +4347,11 @@ *Greggory HernandezCommits: 2Joined: 2012-02-22 + + *William GathoyeCommits: 2Joined: 2012-02-28 - - *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 @@ -4361,11 +4361,11 @@ *Andrew HigginsonCommits: 2Joined: 2012-04-10 + + *Abeer SethiCommits: 2Joined: 2012-04-12 - - *Ferran VidalCommits: 2Joined: 2012-04-21 @@ -4375,11 +4375,11 @@ *David SteeleCommits: 2Joined: 2012-04-24 + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 - - *Marc GarciaCommits: 2Joined: 2012-05-04 @@ -4389,11 +4389,11 @@ *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 + + *Ward van WanrooijCommits: 2Joined: 2012-06-25 - - *Yuri DarioCommits: 2Joined: 2012-07-18 @@ -4403,11 +4403,11 @@ *Andras BartekCommits: 2Joined: 2012-08-06 + + *Daniel HerdeCommits: 2Joined: 2012-08-09 - - *Johann MessnerCommits: 2Joined: 2012-08-28 @@ -4417,11 +4417,11 @@ *Sergey FarbotkaCommits: 2Joined: 2012-09-21 + + *Louis PossozCommits: 2Joined: 2012-10-26 - - *Christos StrubulisCommits: 2Joined: 2012-12-09 @@ -4431,11 +4431,11 @@ *Milan CrhaCommits: 2Joined: 2013-02-07 + + *Adam MrózCommits: 2Joined: 2013-02-24 - - *Gregg KingCommits: 2Joined: 2013-02-26 @@ -4445,11 +4445,11 @@ *Moritz KuettCommits: 2Joined: 2013-03-23 + + *Akash ShetyeCommits: 2Joined: 2013-03-23 - - *Janit AnjariaCommits: 2Joined: 2013-04-19 @@ -4459,11 +4459,11 @@ *Donizete WaterkemperCommits: 2Joined: 2013-05-23 + + *Rolf HemmerlingCommits: 2Joined: 2013-06-15 - - *Jing XianCommits: 2Joined: 2013-06-26 @@ -4473,11 +4473,11 @@ *Ri GangHuCommits: 2Joined: 2013-07-28 + + *Neil MooreCommits: 2Joined: 2013-08-09 - - *Viktor VargaCommits: 2Joined: 2013-08-28 @@ -4487,11 +4487,11 @@ *Richard HughesCommits: 2Joined: 2013-10-01 + + *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *Jagan LokanathaCommits: 2Joined: 2013-11-19 @@ -4501,11 +4501,11 @@ *Martin LiškaCommits: 2Joined: 2014-03-26 + + *Bisal NayalCommits: 2Joined: 2014-05-07 - - *Hussian AlamriCommits: 2Joined: 2014-05-14 @@ -4515,11 +4515,11 @@ *Clarence GuoCommits: 2Joined: 2014-05-26 + + *Hideki IkedaCommits: 2Joined: 2014-06-25 - - *Boris EgorovCommits: 2Joined: 2014-09-08 @@ -4529,11 +4529,11 @@ *Vinicius VendraminiCommits: 2Joined: 2014-10-22 + + *Naruhiko OgasawaraCommits: 2Joined: 2014-10-25 - - *Daniel StoneCommits: 2Joined: 2014-10-29 @@ -4543,11 +4543,11 @@ *Gary HoustonCommits: 2Joined: 2014-12-15 + + *Mark WilliamsCommits: 2Joined: 2014-12-17 - - *Clément LassieurCommits: 2Joined: 2014-12-21 @@ -4557,11 +4557,11 @@ *dbeurleCommits: 2Joined: 2015-01-12 + + *Kishor BhatCommits: 2Joined: 2015-01-28 - - *gamebusterzCommits: 2Joined: 2015-02-19 @@ -4571,11 +4571,11 @@ *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 + + *Markus WernigCommits: 2Joined: 2015-03-18 - - *Jingtao YanCommits: 2Joined: 2015-03-23 @@ -4585,11 +4585,11 @@ *Valter MuraCommits: 2Joined: 2015-06-07 + + *Carlos LuqueCommits: 2Joined: 2015-07-16 - - *Lubosz SarneckiCommits: 2Joined: 2015-08-20 @@ -4599,11 +4599,11 @@ *alexey.chemichevCommits: 2Joined: 2015-11-18 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 - - *Yogesh DesaiCommits: 2Joined: 2016-01-05 @@ -4613,11 +4613,11 @@ *ackepenekCommits: 2Joined: 2016-02-21 + + *Martin NathansenCommits: 2Joined: 2016-04-18 - - *Michal KubecekCommits: 2Joined: 2016-06-02 @@ -4627,11 +4627,11 @@ *Sophie SuCommits: 2Joined: 2016-08-27 + + *sllCommits: 2Joined: 2016-09-06 - - *Pierre LepageCommits: 2Joined: 2016-11-05 @@ -4641,11 +4641,11 @@ *G_ZoltanCommits: 2Joined: 2016-12-27 + + *George KorepanovCommits: 2Joined: 2017-01-06 - - *Jeremy BichaCommits: 2Joined: 2017-02-06 @@ -4655,11 +4655,11 @@ *blendergeekCommits: 2Joined: 2017-04-08 + + *Alexey VlasovCommits: 2Joined: 2017-04-12 - - *fxwanCommits: 2Joined: 2017-05-15 @@ -4669,11 +4669,11 @@ *Sabin FrandesCommits: 2Joined: 2017-09-15 + + *Your NameCommits: 2Joined: 2017-10-09 - - *G??bor KoruhelyCommits: 2Joined: 2017-10-25 @@ -4683,11 +4683,11 @@ *Timotej LazarCommits: 2Joined: 2017-11-22 + + *martinb214Commits: 2Joined: 2017-11-28 - - *Jon NermutCommits: 2Joined: 2018-01-13 @@ -4697,11 +4697,11 @@ *brian houston morrowCommits: 2Joined: 2018-01-24 + + *Dmitri KharchevCommits: 2Joined: 2018-01-27 - - *Andika TriwidadaCommits: 2Joined: 2018-02-15 @@ -4711,11 +4711,11 @@ *Victor MireyevCommits: 2Joined: 2018-05-04 + + *Kevin DubrulleCommits: 2Joined: 2018-07-07 - - *George WoodCommits: 2Joined: 2018-07-25 @@ -4725,11 +4725,11 @@ *Simon QuigleyCommits: 2Joined: 2018-10-11 + + *Mark DoboCommits: 2Joined: 2018-10-20 - - *Izabela BakollariCommits: 2Joined: 2018-10-27 @@ -4739,11 +4739,11 @@ *Tóth AttilaCommits: 2Joined: 2018-12-30 + + *Patrik VasCommits: 2Joined: 2018-12-31 - - *Dawid GanCommits: 2Joined: 2019-01-09 @@ -4753,11 +4753,11 @@ *kaishu-sahuCommits: 2Joined: 2019-01-27 + + *Phil KrylovCommits: 2Joined: 2019-02-10 - - *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 @@ -4767,11 +4767,11 @@ *Jaromir WysogladCommits: 2Joined: 2019-03-27 + + *Rtch90Commits: 2Joined: 2019-04-22 - - *DarkByt31Commits: 2Joined: 2019-04-22 @@ -4781,11 +4781,11 @@ *DaeHyun SungCommits: 2Joined: 2019-06-01 + + *John ZhangCommits: 2Joined: 2019-09-23 - - *Mayank SumanCommits: 2Joined: 2019-10-03 @@ -4795,11 +4795,11 @@ *Mattia RizzoloCommits: 2Joined: 2019-10-23 + + *Batuhan Görkem BenzerCommits: 2Joined: 2019-12-18 - - *Desmin AlpaslanCommits: 2Joined: 2019-12-18 @@ -4809,11 +4809,11 @@ *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 + + *Burak BalaCommits: 2Joined: 2020-01-25 - - *Marina LatiniCommits: 2Joined: 2020-02-11 @@ -4823,11 +4823,11 @@ *jamesCommits: 2Joined: 2020-02-28 + + *Andrew Lee (李健秋)Commits: 2Joined: 2020-03-07 - - *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 @@ -4837,11 +4837,11 @@ *FatihCommits: 2Joined: 2020-04-23 + + *Yunusemre ŞentürkCommits: 2Joined: 2020-05-14 - - *Ilkyu JuCommits: 2Joined: 2020-08-08 @@ -4851,11 +4851,11 @@ *Luke DixonCommits: 2Joined: 2020-08-30 + + *Sven LüppkenCommits: 2Joined: 2020-10-30 - - *Zeynep İnkayaCommits: 2Joined: 2020-11-21 @@ -4865,11 +4865,11 @@ *Bartu BayazıtCommits: 2Joined: 2020-11-21 + + *Mücahid AydinCommits: 2Joined: 2020-11-21 - - *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 @@ -4879,11 +4879,11 @@ *siddheshpatil777Commits: 2Joined: 2020-12-19 + + *halfhiddencodeCommits: 2Joined: 2020-12-26 - - *princesinghtomarCommits: 2Joined: 2020-12-28 @@ -4893,11 +4893,11 @@ *ShobhitCommits: 2Joined: 2021-01-30 + + *Quan NguyenCommits: 2Joined: 2021-02-09 - - *Eyal RozenbergCommits: 2Joined: 2021-02-13 @@ -4907,11 +4907,11 @@ *MoazCommits: 2Joined: 2021-02-21 + + *Winston Min TjongCommits: 2Joined: 2021-03-02 - - *Gökay ŞatırCommits: 2Joined: 2021-03-14 @@ -4921,11 +4921,11 @@ *rounakCommits: 2Joined: 2021-03-31 + + *sarynasserCommits: 2Joined: 2021-04-10 - - *Mihail BalabanovCommits: 2Joined: 2021-04-11 @@ -4935,11 +4935,11 @@ *Batmunkh DorjgotovCommits: 2Joined: 2021-04-27 + + *Harshita NagCommits: 2Joined: 2021-06-25 - - *Sabyasachi BhoiCommits: 2Joined: 2021-07-22 @@ -4949,11 +4949,11 @@ *Ankur KhandelwalCommits: 2Joined: 2021-08-09 + + *Karan AbrolCommits: 2Joined: 2021-08-11 - - *jucasacaCommits: 2Joined: 2021-09-03 @@ -4963,11 +4963,11 @@ *HarjotCommits: 2Joined: 2021-11-17 + + *Pesi TaototoCommits: 2Joined: 2021-12-05 - - *Sinduja YCommits: 2Joined: 2022-02-07 @@ -4977,11 +4977,11 @@ *psidiumcodeCommits: 2Joined: 2022-02-15 + + *Gautham KrishnanCommits: 2Joined: 2022-03-01 - - *Rizal MuttaqinCommits: 2Joined: 2022-04-05 @@ -4991,14 +4991,36 @@ *Isha_DesaiCommits: 2Joined: 2022-04-06 + + + + *Aman JhaCommits: 2Joined: 2022-04-15 + + + *LukasCommits: 2Joined: 2022-04-20 + *AshSincCommits: 2Joined: 2022-05-19 + + *Kurt NordbackCommits: 2Joined: 2022-05-28 + - + + + *Nathan Pratta TeodosioCommits: 2Joined: 2022-06-21 + + + *Armin Le Grand (allotropia)Commits: 2Joined: 2022-06-27 + + + *ehsanCommits: 2Joined: 2022-07-10 + *NeilBrownCommits: 1Joined: 2010-09-28 + + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 @@ -5008,11 +5030,11 @@ *Neil StalkerCommits: 1Joined: 2010-10-02 - - *Evertjan GarretsenCommits: 1Joined: 2010-10-04 + + *Denis LackovicCommits: 1Joined: 2010-10-05 @@ -5022,11 +5044,11 @@ *Rubén JáñezCommits: 1Joined: 2010-10-11 - - *Trevor MurphyCommits: 1Joined: 2010-10-20 + + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -5036,11 +5058,11 @@ *Kalman KemenczyCommits: 1Joined: 2010-10-28 - - *Alexandre FournierCommits: 1Joined: 2010-11-06 + + *Christopher BackhouseCommits: 1Joined: 2010-12-06 @@ -5050,11 +5072,11 @@ *camilleCommits: 1Joined: 2010-12-13 - - *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Paolo PozzanCommits: 1Joined: 2010-12-19 @@ -5064,11 +5086,11 @@ *armijnCommits: 1Joined: 2010-12-30 - - *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 + + *Andy HearnCommits: 1Joined: 2011-01-09 @@ -5078,11 +5100,11 @@ *Guillaume FillolCommits: 1Joined: 2011-01-29 - - *pgajdosCommits: 1Joined: 2011-01-31 + + *Andreas SliwkaCommits: 1Joined: 2011-02-06 @@ -5092,11 +5114,11 @@ *Danny RobertsCommits: 1Joined: 2011-02-18 - - *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 + + *Rafael CabralCommits: 1Joined: 2011-03-31 @@ -5106,11 +5128,11 @@ *Paulo JoséCommits: 1Joined: 2011-04-01 - - *Dona HertelCommits: 1Joined: 2011-04-14 + + *Maxime CôtéCommits: 1Joined: 2011-04-19 @@ -5120,11 +5142,11 @@ *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 - - *Cassio NeriCommits: 1Joined: 2011-05-01 + + *Marcel HBCommits: 1Joined: 2011-05-03 @@ -5134,11 +5156,11 @@ *Jeff AignerCommits: 1Joined: 2011-06-09 - - *David PenzesCommits: 1Joined: 2011-06-14 + + *Dolives BenoitCommits: 1Joined: 2011-07-04 @@ -5148,11 +5170,11 @@ *Christophe StrobbeCommits: 1Joined: 2011-08-09 - - *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 @@ -5162,11 +5184,11 @@ *Stefan WeigelCommits: 1Joined: 2011-10-17 - - *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Andrew WestCommits: 1Joined: 2011-10-21 @@ -5176,11 +5198,11 @@ *Karl KoehlerCommits: 1Joined: 2011-11-11 - - *Modestas RimkusCommits: 1Joined: 2011-11-21 + + *Roman EiseleCommits: 1Joined: 2011-11-23 @@ -5190,11 +5212,11 @@ *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 - - *JesseCommits: 1Joined: 2011-12-14 + + *Vincent PovirkCommits: 1Joined: 2011-12-19 @@ -5204,11 +5226,11 @@ *James CCommits: 1Joined: 2011-12-20 - - *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + *Victor LeeCommits: 1Joined: 2011-12-24 @@ -5218,11 +5240,11 @@ *Kenneth AafløyCommits: 1Joined: 2012-01-11 - - *Rich WarehamCommits: 1Joined: 2012-01-12 + + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 @@ -5232,11 +5254,11 @@ *Martin RichardCommits: 1Joined: 2012-01-31 - - *dbarisakkurtCommits: 1Joined: 2012-02-02 + + *Daniel MihalyiCommits: 1Joined: 2012-02-06 @@ -5246,11 +5268,11 @@ *Masataka ShinkeCommits: 1Joined: 2012-02-15 - - *Fernando GovernatoreCommits: 1Joined: 2012-02-25 + + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 @@ -5260,11 +5282,11 @@ *Karan DesaiCommits: 1Joined: 2012-04-01 - - *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 + + *Aldo Román NureñaCommits: 1Joined: 2012-04-09 @@ -5274,11 +5296,11 @@ *Udo SchuermannCommits: 1Joined: 2012-04-16 - - *Ross BurtonCommits: 1Joined: 2012-04-18 + + *Jaime NavarroCommits: 1Joined: 2012-04-20 @@ -5288,11 +5310,11 @@ *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 - - *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 + + *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 @@ -5302,11 +5324,11 @@ *Jose ManuelCommits: 1Joined: 2012-04-25 - - *Miguel FernándezCommits: 1Joined: 2012-04-26 + + *Javier CatalaCommits: 1Joined: 2012-04-26 @@ -5316,11 +5338,11 @@ *Gordon LackCommits: 1Joined: 2012-05-09 - - *Daniel NaberCommits: 1Joined: 2012-05-09 + + *Ionut BiruCommits: 1Joined: 2012-05-14 @@ -5330,11 +5352,11 @@ *Travis CarterCommits: 1Joined: 2012-06-22 - - *Peter TillemansCommits: 1Joined: 2012-06-26 + + *Phil HartCommits: 1Joined: 2012-06-29 @@ -5344,11 +5366,11 @@ *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 - - *Tim JanikCommits: 1Joined: 2012-08-10 + + *Joseph BrownCommits: 1Joined: 2012-08-14 @@ -5358,11 +5380,11 @@ *Dave RichardsCommits: 1Joined: 2012-08-22 - - *DaveCommits: 1Joined: 2012-08-23 + + *Marco BiscaroCommits: 1Joined: 2012-08-27 @@ -5372,11 +5394,11 @@ *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 - - *sagarCommits: 1Joined: 2012-09-15 + + *Andrew RistCommits: 1Joined: 2012-10-05 @@ -5386,11 +5408,11 @@ *Chen ZuoJunCommits: 1Joined: 2012-10-08 - - *Philipp KaluzaCommits: 1Joined: 2012-10-21 + + *LesterCommits: 1Joined: 2012-10-23 @@ -5400,11 +5422,11 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 - - *Paula MannesCommits: 1Joined: 2012-11-30 + + *Olivier PlotonCommits: 1Joined: 2012-12-12 @@ -5414,11 +5436,11 @@ *Quentin PradetCommits: 1Joined: 2012-12-21 - - *Tadele AssefaCommits: 1Joined: 2013-01-15 + + *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 @@ -5428,11 +5450,11 @@ *Mark WrightCommits: 1Joined: 2013-02-09 - - *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + *Andrew BranchCommits: 1Joined: 2013-02-20 @@ -5442,11 +5464,11 @@ *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 - - *Valek FilippovCommits: 1Joined: 2013-02-23 + + *Kenneth BeckCommits: 1Joined: 2013-03-02 @@ -5456,11 +5478,11 @@ *Gábor NyersCommits: 1Joined: 2013-03-02 - - *Vojta KoukalCommits: 1Joined: 2013-03-03 + + *Ondřej SmržCommits: 1Joined: 2013-03-10 @@ -5470,11 +5492,11 @@ *vincentCommits: 1Joined: 2013-03-22 - - *Johannes WidmerCommits: 1Joined: 2013-03-23 + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 @@ -5484,11 +5506,11 @@ *Tomas TurekCommits: 1Joined: 2013-03-24 - - *Goran RakicCommits: 1Joined: 2013-03-30 + + *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 @@ -5498,11 +5520,11 @@ *Ashish BanerjeeCommits: 1Joined: 2013-04-04 - - *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 @@ -5512,11 +5534,11 @@ *tinderboxCommits: 1Joined: 2013-04-11 - - *Alex IvanCommits: 1Joined: 2013-04-15 + + *Ota ChasákCommits: 1Joined: 2013-04-24 @@ -5526,11 +5548,11 @@ *Yohei YukawaCommits: 1Joined: 2013-05-06 - - *ricardobottoCommits: 1Joined: 2013-05-18 + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 @@ -5540,11 +5562,11 @@ *Tim RichardsonCommits: 1Joined: 2013-06-04 - - *Eric S. RaymondCommits: 1Joined: 2013-06-07 + + *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 @@ -5554,11 +5576,11 @@ *Peng GaoCommits: 1Joined: 2013-06-16 - - *sonakshi nathaniCommits: 1Joined: 2013-06-26 + + *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -5568,11 +5590,11 @@ *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - - *Michael DuelliCommits: 1Joined: 2013-08-01 + + *Srijan ChoudharyCommits: 1Joined: 2013-08-10 @@ -5582,11 +5604,11 @@ *Stefano FacchiniCommits: 1Joined: 2013-08-22 - - *James Michael DuPontCommits: 1Joined: 2013-08-30 + + *Raymond WellsCommits: 1Joined: 2013-09-02 @@ -5596,11 +5618,11 @@ *Henning DiedlerCommits: 1Joined: 2013-11-02 - - *matt_51Commits: 1Joined: 2013-11-05 + + *Rolf KoetterCommits: 1Joined: 2013-11-05 @@ -5610,11 +5632,11 @@ *Ayantha RandikaCommits: 1Joined: 2014-01-23 - - *Michal SiedlaczekCommits: 1Joined: 2014-01-25 + + *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 @@ -5624,11 +5646,11 @@ *Mathias SuppCommits: 1Joined: 2014-02-25 - - *Tarun KumarCommits: 1Joined: 2014-03-07 + + *Jason GerlowskiCommits: 1Joined: 2014-03-07 @@ -5638,11 +5660,11 @@ *Manas JoshiCommits: 1Joined: 2014-03-17 - - *gdm.manmeetCommits: 1Joined: 2014-03-18 + + *Milan ZelenkaCommits: 1Joined: 2014-03-26 @@ -5652,11 +5674,11 @@ *Aditya KaleCommits: 1Joined: 2014-04-01 - - *Ryo ONODERACommits: 1Joined: 2014-04-07 + + *Michal HorakCommits: 1Joined: 2014-04-21 @@ -5666,11 +5688,11 @@ *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 - - *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 + + *Shreyansh GandhiCommits: 1Joined: 2014-06-10 @@ -5680,11 +5702,11 @@ *Robin KumarCommits: 1Joined: 2014-06-17 - - *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 + + *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 @@ -5694,11 +5716,11 @@ *Heiko ScheidtCommits: 1Joined: 2014-08-03 - - *xjclCommits: 1Joined: 2014-08-04 + + *Audrey TangCommits: 1Joined: 2014-08-05 @@ -5708,11 +5730,11 @@ *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 - - *PhyzerCommits: 1Joined: 2014-09-13 + + *Babu VincentCommits: 1Joined: 2014-09-19 @@ -5722,11 +5744,11 @@ *Lennart PoetteringCommits: 1Joined: 2014-10-09 - - *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + *Ruggero CyrilleCommits: 1Joined: 2014-10-18 @@ -5736,11 +5758,11 @@ *Jonathan RiddellCommits: 1Joined: 2014-11-22 - - *Foo Lai ChooCommits: 1Joined: 2014-11-26 + + *galbarnissanCommits: 1Joined: 2014-12-03 @@ -5750,11 +5772,11 @@ *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 - - *Maarten HoesCommits: 1Joined: 2014-12-20 + + *Pieter AdriaensenCommits: 1Joined: 2014-12-21 @@ -5764,11 +5786,11 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 - - *Edmund LaugassonCommits: 1Joined: 2015-01-07 + + *Michael KovarikCommits: 1Joined: 2015-01-07 @@ -5778,11 +5800,11 @@ *Simon WilperCommits: 1Joined: 2015-01-24 - - *Swachhand LokhandeCommits: 1Joined: 2015-03-07 + + *Michael HornCommits: 1Joined: 2015-03-21 @@ -5792,11 +5814,11 @@ *robert BabiakCommits: 1Joined: 2015-03-25 - - *Dobra GaborCommits: 1Joined: 2015-04-02 + + *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 @@ -5806,11 +5828,11 @@ *Petr GajdosCommits: 1Joined: 2015-04-07 - - *ritztroCommits: 1Joined: 2015-04-11 + + *massinissaHamidiCommits: 1Joined: 2015-05-07 @@ -5820,11 +5842,11 @@ *Sam TukeCommits: 1Joined: 2015-05-21 - - *umairshahidCommits: 1Joined: 2015-05-29 + + *Antoine CœurCommits: 1Joined: 2015-06-11 @@ -5834,11 +5856,11 @@ *Raj NatarajanCommits: 1Joined: 2015-07-23 - - *Florian EffenbergerCommits: 1Joined: 2015-08-04 + + *Fernando PiraniCommits: 1Joined: 2015-08-04 @@ -5848,11 +5870,11 @@ *Joan ParaisoCommits: 1Joined: 2015-09-25 - - *Slávek BankoCommits: 1Joined: 2015-10-10 + + *Timothée IsnardCommits: 1Joined: 2015-10-11 @@ -5862,11 +5884,11 @@ *GhasanCommits: 1Joined: 2015-11-09 - - *Mihovil StanićCommits: 1Joined: 2015-11-11 + + *Keigo KawamuraCommits: 1Joined: 2015-11-16 @@ -5876,11 +5898,11 @@ *Reto SchneiderCommits: 1Joined: 2015-11-20 - - *Willian BriottoCommits: 1Joined: 2015-11-21 + + *Nicola PovoleriCommits: 1Joined: 2015-11-28 @@ -5890,11 +5912,11 @@ *Pierre SauterCommits: 1Joined: 2015-12-01 - - *William BonnetCommits: 1Joined: 2015-12-05 + + *Johannes HaufCommits: 1Joined: 2015-12-31 @@ -5904,11 +5926,11 @@ *shubhamtibraCommits: 1Joined: 2016-01-16 - - *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 @@ -5918,11 +5940,11 @@ *Christoph BrillCommits: 1Joined: 2016-02-09 - - *Hank LeiningerCommits: 1Joined: 2016-02-27 + + *Apachev IvanCommits: 1Joined: 2016-03-08 @@ -5932,11 +5954,11 @@ *Mohamed ThabetCommits: 1Joined: 2016-03-13 - - *Dag WieersCommits: 1Joined: 2016-03-13 + + *Alexandru MoscuCommits: 1Joined: 2016-03-18 @@ -5946,11 +5968,11 @@ *JBurantCommits: 1Joined: 2016-04-05 - - *sunwebCommits: 1Joined: 2016-04-08 + + *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 @@ -5960,11 +5982,11 @@ *PeterCommits: 1Joined: 2016-05-03 - - *PrashantCommits: 1Joined: 2016-05-17 + + *Sam TygierCommits: 1Joined: 2016-05-22 @@ -5974,11 +5996,11 @@ *Zhengqiang WangCommits: 1Joined: 2016-06-02 - - *anwilli5Commits: 1Joined: 2016-06-06 + + *emahaldar/emCommits: 1Joined: 2016-06-13 @@ -5988,11 +6010,11 @@ *Otto KekäläinenCommits: 1Joined: 2016-07-03 - - *Julian MehneCommits: 1Joined: 2016-08-04 + + *James ClarkeCommits: 1Joined: 2016-08-05 @@ -6002,11 +6024,11 @@ *rpmbuildCommits: 1Joined: 2016-08-15 - - *Zenaan HarknessCommits: 1Joined: 2016-08-22 + + *Andrea MussapCommits: 1Joined: 2016-10-02 @@ -6016,11 +6038,11 @@ *JookiaCommits: 1Joined: 2016-10-08 - - *Mirco RondiniCommits: 1Joined: 2016-10-10 + + *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 @@ -6030,11 +6052,11 @@ *Tamás GulácsiCommits: 1Joined: 2016-11-11 - - *Owen GenatCommits: 1Joined: 2016-11-20 + + *Christina AccioneCommits: 1Joined: 2016-11-22 @@ -6044,11 +6066,11 @@ *Justn LavoieCommits: 1Joined: 2016-12-30 - - *thvalloisCommits: 1Joined: 2017-01-03 + + *Saurav SachidanandCommits: 1Joined: 2017-01-17 @@ -6058,11 +6080,11 @@ *yellowflash104Commits: 1Joined: 2017-02-12 - - *Mike GorseCommits: 1Joined: 2017-03-11 + + *Atef haresCommits: 1Joined: 2017-03-12 @@ -6072,11 +6094,11 @@ *Umang JainCommits: 1Joined: 2017-03-13 - - *udaycoderCommits: 1Joined: 2017-03-14 + + *Dennis NielenCommits: 1Joined: 2017-03-21 @@ -6086,11 +6108,11 @@ *Gabriel HerreraCommits: 1Joined: 2017-04-05 - - *Werner TietzCommits: 1Joined: 2017-04-11 + + *nikkiCommits: 1Joined: 2017-04-12 @@ -6100,11 +6122,11 @@ *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 - - *frederic vromanCommits: 1Joined: 2017-05-12 + + *KappanneoCommits: 1Joined: 2017-05-29 @@ -6114,11 +6136,11 @@ *Francesco GradiCommits: 1Joined: 2017-05-29 - - *dcvbCommits: 1Joined: 2017-07-06 + + *Sean StanglCommits: 1Joined: 2017-07-09 @@ -6128,11 +6150,11 @@ *Aditya DewanCommits: 1Joined: 2017-07-15 - - *serdarot5Commits: 1Joined: 2017-08-05 + + *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 @@ -6142,11 +6164,11 @@ *66kesara99Commits: 1Joined: 2017-09-23 - - *Stoyan DimitrovCommits: 1Joined: 2017-10-01 + + *nigeldiasCommits: 1Joined: 2017-10-02 @@ -6156,11 +6178,11 @@ *Tjipke van der HeideCommits: 1Joined: 2017-10-12 - - *Kristóf UmannCommits: 1Joined: 2017-10-25 + + *qzhengCommits: 1Joined: 2017-11-14 @@ -6170,11 +6192,11 @@ *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 - - *Gabriele PonzoCommits: 1Joined: 2018-02-06 + + *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 @@ -6184,11 +6206,11 @@ *HrishabhCommits: 1Joined: 2018-03-10 - - *Álex PuchadesCommits: 1Joined: 2018-03-14 + + *kowtherCommits: 1Joined: 2018-04-06 @@ -6198,11 +6220,11 @@ *Kevin Brubeck UnhammerCommits: 1Joined: 2018-04-14 - - *Heiko TietzeCommits: 1Joined: 2018-04-16 + + *DiadloCommits: 1Joined: 2018-05-23 @@ -6212,11 +6234,11 @@ *orbeaCommits: 1Joined: 2018-06-01 - - *Louis SautierCommits: 1Joined: 2018-06-10 + + *Ali AhmadiCommits: 1Joined: 2018-06-26 @@ -6226,11 +6248,11 @@ *Caio B. SilvaCommits: 1Joined: 2018-07-23 - - *U-Vladimir\VadimCommits: 1Joined: 2018-08-05 + + *Don LewisCommits: 1Joined: 2018-08-22 @@ -6240,11 +6262,11 @@ *Leo MoonsCommits: 1Joined: 2018-08-26 - - *AlicVBCommits: 1Joined: 2018-10-17 + + *Alain RomedenneCommits: 1Joined: 2018-11-22 @@ -6254,11 +6276,11 @@ *Rizal MuttaqinCommits: 1Joined: 2018-12-18 - - *Çağrı DolazCommits: 1Joined: 2018-12-30 + + *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 @@ -6268,11 +6290,11 @@ *KomalCommits: 1Joined: 2019-01-12 - - *Ajay MahatoCommits: 1Joined: 2019-01-21 + + *Jim JagielskiCommits: 1Joined: 2019-01-23 @@ -6282,11 +6304,11 @@ *Michael SchroederCommits: 1Joined: 2019-02-25 - - *Sainal ShahCommits: 1Joined: 2019-03-10 + + *Wenzhe PeiCommits: 1Joined: 2019-03-11 @@ -6296,11 +6318,11 @@ *kushagrakasliwal1Commits: 1Joined: 2019-03-18 - - *Greg VeldmanCommits: 1Joined: 2019-03-24 + + *Gagandeep SinghCommits: 1Joined: 2019-04-01 @@ -6310,11 +6332,11 @@ *RegisCommits: 1Joined: 2019-04-09 - - *Milutin SmiljanicCommits: 1Joined: 2019-04-19 + + *Andrew HyattCommits: 1Joined: 2019-05-02 @@ -6324,11 +6346,11 @@ *Jens CarlCommits: 1Joined: 2019-05-27 - - *Jay BinghamCommits: 1Joined: 2019-06-03 + + *Jim MacArthurCommits: 1Joined: 2019-06-11 @@ -6338,11 +6360,11 @@ *Kovács László ZoltánCommits: 1Joined: 2019-08-07 - - *Vipul GuptaCommits: 1Joined: 2019-08-09 + + *Kovács László ZoltánCommits: 1Joined: 2019-08-13 @@ -6352,11 +6374,11 @@ *Tim BartlettCommits: 1Joined: 2019-08-19 - - *Nicolas FellaCommits: 1Joined: 2019-09-01 + + *Dennis SchriddeCommits: 1Joined: 2019-10-04 @@ -6366,11 +6388,11 @@ *Rasmus ThomsenCommits: 1Joined: 2019-10-26 - - *Martin MilataCommits: 1Joined: 2019-12-04 + + *shashikdmCommits: 1Joined: 2019-12-08 @@ -6380,11 +6402,11 @@ *Sıla GençCommits: 1Joined: 2019-12-20 - - *ertoCommits: 1Joined: 2019-12-20 + + *Andrés MaldonadoCommits: 1Joined: 2019-12-26 @@ -6394,11 +6416,11 @@ *Elzem AtayCommits: 1Joined: 2020-01-04 - - *Louis MeyratCommits: 1Joined: 2020-01-12 + + *Cumali ToprakCommits: 1Joined: 2020-01-27 @@ -6408,11 +6430,11 @@ *Emiliano VavassoriCommits: 1Joined: 2020-02-04 - - *praneshulleriCommits: 1Joined: 2020-02-11 + + *Kris van der MerweCommits: 1Joined: 2020-02-16 @@ -6422,11 +6444,11 @@ *Sarabjot SinghCommits: 1Joined: 2020-02-28 - - *Fred KruseCommits: 1Joined: 2020-03-02 + + *Matteo CasalinCommits: 1Joined: 2020-03-04 @@ -6436,11 +6458,11 @@ *So YanaiharaCommits: 1Joined: 2020-03-21 - - *Harshit JainCommits: 1Joined: 2020-03-23 + + *Wyatt TurnerCommits: 1Joined: 2020-03-26 @@ -6450,11 +6472,11 @@ *Alexander VolkovCommits: 1Joined: 2020-04-09 - - *Coming___soONCommits: 1Joined: 2020-04-09 + + *Pavel KlevakinCommits: 1Joined: 2020-04-17 @@ -6464,11 +6486,11 @@ *Martin WhitakerCommits: 1Joined: 2020-05-08 - - *vgeofCommits: 1Joined: 2020-05-09 + + *Igor PoboikoCommits: 1Joined: 2020-05-22 @@ -6478,11 +6500,11 @@ *Ilia SheshukovCommits: 1Joined: 2020-06-04 - - *zdposterCommits: 1Joined: 2020-06-10 + + *Yakov ReztsovCommits: 1Joined: 2020-06-15 @@ -6492,11 +6514,11 @@ *Shiro KawaiCommits: 1Joined: 2020-06-26 - - *Baurzhan MuftakhidinovCommits: 1Joined: 2020-07-12 + + *Octavio AlvarezCommits: 1Joined: 2020-07-16 @@ -6506,11 +6528,11 @@ *ramtk6726Commits: 1Joined: 2020-08-16 - - *OctopusETCommits: 1Joined: 2020-08-17 + + *HochwasserCommits: 1Joined: 2020-09-17 @@ -6520,11 +6542,11 @@ *Travis StewartCommits: 1Joined: 2020-10-01 - - *Bryan GazaliCommits: 1Joined: 2020-10-03 + + *NikhilCommits: 1Joined: 2020-10-04 @@ -6534,11 +6556,11 @@ *Platon PronkoCommits: 1Joined: 2020-10-19 - - *gerritCommits: 1Joined: 2020-10-19 + + *Betül İnceCommits: 1Joined: 2020-10-22 @@ -6548,11 +6570,11 @@ *Jeff LawCommits: 1Joined: 2020-11-03 - - *TRaXInCommits: 1Joined: 2020-11-10 + + *ArdaCommits: 1Joined: 2020-11-21 @@ -6562,11 +6584,11 @@ *Henrik KarlssonCommits: 1Joined: 2020-11-26 - - *ganeshdevareCommits: 1Joined: 2020-11-29 + + *Edward LynchCommits: 1Joined: 2020-11-29 @@ -6576,11 +6598,11 @@ *gar SoulCommits: 1Joined: 2020-12-08 - - *cseguraCommits: 1Joined: 2021-01-03 + + *Quentin PAGÈSCommits: 1Joined: 2021-01-06 @@ -6590,11 +6612,11 @@ *anirudhSCommits: 1Joined: 2021-01-10 - - *Antje KazimiersCommits: 1Joined: 2021-01-30 + + *Linus HeckemannCommits: 1Joined: 2021-02-07 @@ -6604,11 +6626,11 @@ *Quentin DELAGECommits: 1Joined: 2021-02-18 - - *Victor KukshievCommits: 1Joined: 2021-02-18 + + *heet-2312Commits: 1Joined: 2021-03-01 @@ -6618,11 +6640,11 @@ *ViswaasLPCommits: 1Joined: 2021-03-12 - - *Mani KumarCommits: 1Joined: 2021-03-17 + + *arpit1912Commits: 1Joined: 2021-03-19 @@ -6632,11 +6654,11 @@ *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 - - *bykiviCommits: 1Joined: 2021-03-23 + + *Aritz ErkiagaCommits: 1Joined: 2021-03-25 @@ -6646,11 +6668,11 @@ *David BlatterCommits: 1Joined: 2021-03-31 - - *Felipe LemaCommits: 1Joined: 2021-04-01 + + *Oleksii MakhotinCommits: 1Joined: 2021-04-06 @@ -6660,11 +6682,11 @@ *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 - - *Steve FanningCommits: 1Joined: 2021-04-11 + + *Joshua WilliamsCommits: 1Joined: 2021-05-22 @@ -6674,11 +6696,11 @@ *Uwe AuerCommits: 1Joined: 2021-07-12 - - *YakovlevAlCommits: 1Joined: 2021-07-15 + + *oguzbalkayaCommits: 1Joined: 2021-08-03 @@ -6688,11 +6710,11 @@ *Rishav ChattopadhyaCommits: 1Joined: 2021-10-23 - - *mwarnerCommits: 1Joined: 2021-11-25 + + *TheRock BuilderCommits: 1Joined: 2021-12-03 @@ -6702,11 +6724,11 @@ *Krzysztof HałasaCommits: 1Joined: 2021-12-29 - - *altCommits: 1Joined: 2022-01-04 + + *ArjunCommits: 1Joined: 2022-01-23 @@ -6716,11 +6738,11 @@ *yaldaCommits: 1Joined: 2022-01-25 - - *javierde22Commits: 1Joined: 2022-01-30 + + *jwtiyar narimanCommits: 1Joined: 2022-02-14 @@ -6730,11 +6752,11 @@ *Adityarup LahaCommits: 1Joined: 2022-03-12 - - *Lemures LemniscatiCommits: 1Joined: 2022-03-17 + + *Sarrah BastawalaCommits: 1Joined: 2022-03-21 @@ -6744,33 +6766,78 @@ *mostafa-elsharnobyCommits: 1Joined: 2022-03-28 - - *Behrad KhorramCommits: 1Joined: 2022-04-03 + + *Shady MohamedCommits: 1Joined: 2022-04-11 - *Aman JhaCommits: 1Joined: 2022-04-15 + *Zain IftikharCommits: 1Joined: 2022-04-16 - *Zain IftikharCommits: 1Joined: 2022-04-16 + *hasban12138Commits: 1Joined: 2022-04-28 + + + *Daniel Kamil KozarCommits: 1Joined: 2022-05-03 - + - *Hannah MeeksCommits: 1Joined: 2022-04-16 + *Khaled HosnyCommits: 1Joined: 2022-06-06 - *hasban12138Commits: 1Joined: 2022-04-28 + *Dietrich SchultenCommits: 1Joined: 2022-06-11 - *Daniel Kamil KozarCommits: 1Joined: 2022-05-03 + *Diane LeighCommits: 1Joined: 2022-06-18 - - + + *jsalaCommits: 1Joined: 2022-06-19 + + + + + *Laurent BallandCommits: 1Joined: 2022-06-19 + + + *Mahdyar M. M. SadeghiCommits: 1Joined: 2022-06-22 + + + *Mahkame ArabgariCommits: 1Joined: 2022-06-22 + + + *Mahdi TizabiCommits: 1Joined: 2022-06-25 + + + + + *ParsaCommits: 1Joined: 2022-06-25 + + + *Amir HCommits: 1Joined: 2022-06-25 + + + *m.hashemianCommits: 1Joined: 2022-06-29 + + + *am.farajiCommits: 1Joined: 2022-07-09 + + + + + *Mohsen RahimiCommits: 1Joined: 2022-07-10 + + + *nazanin yadiCommits: 1Joined: 2022-07-10 + + + *Arman RezaeiCommits: 1Joined: 2022-07-11 + + + *Balazs VargaCommits: 1Joined: 2022-07-13 @@ -6780,9 +6847,9 @@ - + - *Laurent BPCommits: 46Joined: 2015-11-19 + *Laurent BPCommits: 47Joined: 2015-11-19 *andreas kainzCommits: 23Joined: 2020-04-18 @@ -6794,7 +6861,7 @@ *Heiko TietzeCommits: 10Joined: 2017-08-04 - + *Samuel MehrbrodtCommits: 7Joined: 2013-01-16 @@ -6808,7 +6875,7 @@ *Alexander WilmsCommits: 4Joined: 2012-05-26 - + *Matthias SeidelCommits: 4Joined: 2018-11-08 @@ -6822,7 +6889,7 @@ *Michael MeeksCommits: 2Joined: 2010-12-08 - + *Istvan TuriCommits: 2Joined: 2012-08-16 @@ -6836,7 +6903,7 @@ *Francisco SaitoCommits: 1Joined: 2011-03-29 - + *Michael MuenchCommits: 1Joined: 2011-06-09 @@ -6850,7 +6917,7 @@ *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 - + *Péter SzathmáryCommits: 1Joined: 2015-01-07 @@ -6864,7 +6931,7 @@ *Jun NOGATACommits: 1Joined: 2015-01-07 - + *ZirkCommits: 1Joined: 2015-01-07 @@ -6885,7 +6952,7 @@ - + Sascha BallachCommits: 1223Joined: 2000-09-22 @@ -6899,7 +6966,7 @@ Peter BurowCommits: 729Joined: 2000-09-20 - + Sander VesikCommits: 695Joined: 2000-10-11 @@ -6913,7 +6980,7 @@ Daniel BoelzleCommits: 578Joined: 2000-09-21 - + Andreas SchlünsCommits: 542Joined: 2000-09-26 @@ -6927,7 +6994,7 @@ Jörg BarfurthCommits: 474Joined: 2000-11-07 - + Nils FuhrmannCommits: 473Joined: 2000-09-25 @@ -6941,7 +7008,7 @@ Jörg BudischewskiCommits: 407Joined: 2000-09-28 - + Tino RachuiCommits: 364Joined: 2000-09-25 @@ -6955,7 +7022,7 @@ Oliver BraunCommits: 271Joined: 2000-09-22 - + thCommits: 270Joined: 2000-10-27 @@ -6969,7 +7036,7 @@ Kay RammeCommits: 230Joined: 2000-09-27 - + Andreas BilleCommits: 228Joined: 2000-10-09 @@ -6983,7 +7050,7 @@ Stephan WunderlichCommits: 179Joined: 2002-02-26 - + Dirk GroblerCommits: 147Joined: 2000-09-20 @@ -6997,7 +7064,7 @@ Tomas O'ConnorCommits: 135Joined: 2002-03-04 - + Duncan FosterCommits: 125Joined: 2002-09-19 @@ -7011,7 +7078,7 @@ arellanoCommits: 87Joined: 2001-02-12 - + Bustamam HarunCommits: 74Joined: 2000-11-19 @@ -7025,7 +7092,7 @@ mfeCommits: 68Joined: 2000-10-13 - + Gene AnayaCommits: 66Joined: 2000-10-09 @@ -7039,7 +7106,7 @@ Bertram NolteCommits: 46Joined: 2001-08-16 - + Steffen GrundCommits: 45Joined: 2003-02-04 @@ -7053,7 +7120,7 @@ Armin TheissenCommits: 44Joined: 2000-09-22 - + Cyrille MoureauxCommits: 42Joined: 2002-05-17 @@ -7067,7 +7134,7 @@ oisinCommits: 38Joined: 2000-10-03 - + fredrikhCommits: 34Joined: 2008-06-17 @@ -7081,7 +7148,7 @@ tpfCommits: 32Joined: 2000-11-20 - + skottiCommits: 30Joined: 2009-10-20 @@ -7095,7 +7162,7 @@ wg111939Commits: 26Joined: 2010-03-17 - + szCommits: 25Joined: 2001-04-11 @@ -7109,7 +7176,7 @@ Ken FoskeyCommits: 22Joined: 2002-10-01 - + tb121644Commits: 22Joined: 2009-09-08 @@ -7123,7 +7190,7 @@ ghigginsCommits: 18Joined: 2002-05-19 - + Sarah SmithCommits: 18Joined: 2002-10-21 @@ -7137,7 +7204,7 @@ Csaba BorbolaCommits: 16Joined: 2000-09-22 - + dkennyCommits: 16Joined: 2001-04-17 @@ -7151,7 +7218,7 @@ okCommits: 13Joined: 2000-11-16 - + Mindy LiuCommits: 13Joined: 2003-03-03 @@ -7165,7 +7232,7 @@ Bernd EilersCommits: 11Joined: 2001-06-03 - + Laszlo KovacsCommits: 11Joined: 2002-09-23 @@ -7179,7 +7246,7 @@ John RiceCommits: 9Joined: 2002-09-27 - + maCommits: 8Joined: 2001-03-21 @@ -7193,7 +7260,7 @@ niddCommits: 7Joined: 2001-12-25 - + mwuCommits: 7Joined: 2002-07-04 @@ -7207,7 +7274,7 @@ Jonathan PryorCommits: 7Joined: 2010-09-15 - + Ilko HöppingCommits: 6Joined: 2001-05-04 @@ -7221,7 +7288,7 @@ lucturCommits: 5Joined: 2003-11-05 - + mathiasCommits: 5Joined: 2009-09-23 @@ -7235,7 +7302,7 @@ ms93807Commits: 4Joined: 2010-01-08 - + tlxCommits: 3Joined: 2000-12-07 @@ -7249,7 +7316,7 @@ tl93732Commits: 3Joined: 2009-10-20 - + Jiao JianhuaCommits: 3Joined: 2010-09-13 @@ -7263,7 +7330,7 @@ Louis Suárez-PottsCommits: 2Joined: 2001-08-17 - + Michael RauchCommits: 2Joined: 2002-03-19 @@ -7277,7 +7344,7 @@ Chris HallsCommits: 2Joined: 2002-10-04 - + jmengCommits: 2Joined: 2003-12-04 @@ -7291,7 +7358,7 @@ shaneCommits: 1Joined: 2000-10-02 - + vsCommits: 1Joined: 2001-01-30 @@ -7305,7 +7372,7 @@ asaundersCommits: 1Joined: 2003-07-07 - + Dan WilliamsCommits: 1Joined: 2004-03-08 @@ -7319,7 +7386,7 @@ Nakata MahoCommits: 1Joined: 2006-07-08 - + Artem KhvatCommits: 1Joined: 2007-12-14 @@ -7333,7 +7400,7 @@ oc93805Commits: 1Joined: 2009-11-30 - + sg128468Commits: 1Joined: 2010-01-20 @@ -7352,7 +7419,7 @@ - + Oliver BolteCommits: 418Joined: 2004-09-08 @@ -7366,7 +7433,7 @@ Kurt ZenkerCommits: 146Joined: 2004-05-19 - + Vladimir GlazounovCommits: 89Joined: 2004-12-23 @@ -7380,7 +7447,7 @@ Tom VerbeekCommits: 4Joined: 2001-01-26 - + Volker Ahrendt [va]Commits: 2Joined: 2002-05-29 @@ -7392,7 +7459,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 @@ -7402,97 +7469,97 @@ 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 - 2747 individuals contributed: + 2758 individuals contributed: - + - Hrbrgr (43368) + Hrbrgr (45286) - Beluga (25056) + Beluga (29827) - Marric (21029) + Marric (25701) - Raal (19052) + Raal (19457) - + SteenRønnow (16837) - Akurery (10948) + HanV (11444) - Pierre-yves samyn (10099) + Akurery (11440) - Bantoniof (9812) + Bantoniof (10935) - + - K-j (9376) + Manuelf (10903) - Manuelf (8674) + Pierre-yves samyn (10099) - Roczek, Dennis (8272) + K-j (9376) - Jayme Barrientos, Adolfo (7630) + Roczek, Dennis (8272) - + - Filmsi (7018) + Jayme Barrientos, Adolfo (7892) - Stevefanning (6184) + Filmsi (7177) - Goncharuk, Lera (5436) + Stevefanning (6402) - Gautier, Sophie (5296) + Penny (6242) - + - Nogata Jun (5152) + Goncharuk, Lera (5436) - HanV (4700) + Gautier, Sophie (5299) - (4614) + Nogata Jun (5238) - Uroveits (4541) + (4614) - + - Yaron (4185) + Uroveits (4543) - Kompilainenn (4002) + Yaron (4185) - Penny (4000) + Kompilainenn (4113) Tagezibot (3924) - + Tryon, Robinson (3712) @@ -7500,18 +7567,18 @@ Brumla132 (3708) - Balland-Poirier, Laurent (3508) + Balland-Poirier, Laurent (3509) - Jeanweber (3110) + Rizmut (3138) - + - Hibagonsan (3073) + Jeanweber (3112) - Rizmut (3073) + Hibagonsan (3073) Prcek (2866) @@ -7520,35 +7587,38 @@ Kevin, Suo (锁琨珑) (2827) - + - LibreOfficiant (2519) + Noorikhah, Hossein (2659) - PlateauWolf (2361) + LibreOfficiant (2529) - Ronnie rg8888 (2352) + PlateauWolf (2361) - Noorikhah, Hossein (2264) + Ronnie rg8888 (2352) - + - Hallot, Olivier (2181) + Hallot, Olivier (2190) Bielefeld, Rainer (2077) - X1sc0 (1760) + X1sc0 (1777) Effenberger, Florian (1752) - + + + Martin187 (1585) + Michaelsen, Björn (1554) @@ -7556,27 +7626,27 @@ Iva Ot (1545) - LobaLuna (1526) + LobaLuna (1534) + + - Lyzbet (1462) + Enoki (1495) - - - Kolarkater (1418) + Lyzbet (1466) - Enoki (1409) + Kolarkater (1418) Marcpare (1403) + + Blue.painting (1393) - - GerryT (1325) @@ -7584,55 +7654,52 @@ Naruoga (1239) + Riyadh (1211) + + + + Adailton (1203) Buzzatti Pacheco, Gustavo (1196) - - Mirek2 (1162) Nouws, Cor (1147) + + So (1113) Haas, Uwe (1095) - - Clement21.philippe (1076) - Horáček, Stanislav (1068) - - - Martin187 (1029) + Horáček, Stanislav (1071) + + E.le-gall (1027) - - Ostrovsky, David (1011) - Riyadh (1003) - - Novak, Nino (976) - Meeks, Michael (952) + Meeks, Michael (958) - + Tom (926) @@ -7643,70 +7710,81 @@ H-k (804) - Sanz Cabrero, Juan Carlos (783) + Sanz Cabrero, Juan Carlos (789) - + - Drew (748) + Henschel, Regina (784) - Tietze, Heiko (748) + Tietze, Heiko (772) - Teo91 (733) + Drew (748) - Behrens, Thorsten (733) + Teo91 (733) - + - Jmpierre (727) + Behrens, Thorsten (733) - Henschel, Regina (707) + Jmpierre (727) Iversen, Jan (693) - Mike.saunders (688) + Mike.saunders (690) - + Floris v (660) - Rathke, Eike (650) + Rathke, Eike (656) RobertG (647) - Junmeguro (644) + Junmeguro (645) - + + + Vajna, Miklos (643) + Hazel (639) - Vajna, Miklos (636) + Kees538 (625) + + + Lachend (609) + + Jlv (603) Jmadero (596) - - Raulpacheco (596) + Diegoperesmarques (586) + + + + Lohmaier, Christian (559) @@ -7715,36 +7793,28 @@ ChristophNoack (549) - - - Sam m (548) + Sam m (549) + + Paulo (546) - Lachend (532) - - JO3EMC (530) - - Knorr, Stefan (521) Davidnelson (517) - - Kees538 (509) - + + Elianedomingos (508) - - Foote, V Stuart (500) @@ -7754,98 +7824,106 @@ Elcico (482) + + Jana.urbanova (478) - - Veracape (472) - Stahl, Michael (467) + Stahl, Michael (469) Sefran (466) + + Philips, Yousuf (462) - - + + AAAA (456) + Holešovský, Jan (451) Mladek, Petr (450) + + Eskroni (437) Rmfaile (436) - - Chris69 (419) Gecko (419) + + Luz Coelho, Rogério (409) + McNamara, Caolán (408) + + Sebul (408) - - Yoshida, Kohei (407) + + - McNamara, Caolán (406) + Kaganski, Mike (405) Mohrhard, Markus (397) - Kaganski, Mike (394) - - - - AndrasTimar (393) Alexander Wilms (392) + + Tardon, David (388) Schiavinatto (386) - - Foral (384) Opensoftpl (381) + + StefanW (379) Herissongrognon (378) - - + + Petr-valach (378) + LenkaD (377) + + Emanuel Marcatinco (374) @@ -7853,109 +7931,101 @@ Felipeviggiano (371) - Petr-valach (368) - - - - Thackert (359) Kara, Muhammet (347) + + Mayan Tigger (347) Thiebaud, Norbert (341) - - Vpanter (333) Pruegsanusak, Korrawit (330) + + Volkerme (329) Wget (323) - - Arranna (322) - Donaldo (305) + Kosiorek, Bartosz (306) + + - Khanson679 (305) + Donaldo (305) - Kosiorek, Bartosz (303) + Khanson679 (305) - - Tseng, Cheng-Chia (294) Heinzws (292) + + Librelegal (292) Lillqvist, Tor (292) - - Emanuel A. Marcatinco B. (290) Dhsung (287) + + HARA (279) Kitaygrad (276) - - - AAAA (269) + Cheche (270) Epix (268) + + Helen russian (268) - Kaplan, Lior (267) + Bergmann, Stephan (268) - - - Cheche (266) + Kaplan, Lior (267) Lodahl (264) + + Dayeong (263) - Bergmann, Stephan (261) - - - - Twistios (259) @@ -7964,11 +8034,11 @@ Remarques (252) + + Deemonizer (248) - - Drodriguez (248) @@ -7978,11 +8048,11 @@ Loic (240) + + EricBright (238) - - Steve (237) @@ -7992,13 +8062,13 @@ Maintenance script (235) + + - Bosdonnat, Cédric (231) + Mesho (233) - - - Mesho (231) + Bosdonnat, Cédric (231) Bedipp (226) @@ -8006,11 +8076,11 @@ Jeanmi2403 (225) + + Hogue (224) - - Kerwyn (221) @@ -8020,11 +8090,11 @@ Almusaireae (219) + + Kkwet38 (218) - - Gilvanvilarim (217) @@ -8034,39 +8104,39 @@ ZuzuN (208) + + Andreschnabel (207) - - Daveb (207) + Mars (205) + + XsLiDian (203) + + Steinzeit (200) Latini, Marina (198) - - Wheatbix (198) - Mars (196) - - Erhardt (193) + + Schulz, Charles-H. (191) - - DmitryBowie (188) @@ -8076,13 +8146,13 @@ Tarnhold (187) + + Mazerunner (185) - - - Nemeth (180) + Nemeth (184) Méixome, Antón (179) @@ -8090,11 +8160,11 @@ Alkurtass, Issa (178) + + YALÇINSOY, Ayhan (176) - - Sw0000j (176) @@ -8104,140 +8174,149 @@ Madl, Tobias (175) + + Fridrich (172) - - Luizheli (172) + N.yadi (171) + + Furusho (170) + + Pitkänen, Harri (169) Jiang, Yifan (168) - - - Matuaki (163) + Óvári (165) - Ckhe1215 (162) + Matuaki (163) + + - Óvári (162) + Ckhe1215 (162) See (160) - - Snelders, Rob (159) Ponzo, Gabriele (159) + + Hagar Delest (159) Xystina (154) - - Uminakabkbk (153) Libo02 (150) + + + Pietro (150) Slacka (150) - - Herzog, Christoph (149) Chris-hoh (147) + + Naniud (147) Back69 (146) - - Det (145) Kirk (145) + + Mipmap (144) Mamane, Lionel Elie (141) - - Michelr (141) Lorenzo (140) + + Zolnai, Tamás (139) De Cuyper, Joren (138) - - Weissenbacher, Philipp (138) Rutilus (138) + + Abe, Takeshi (138) Heliojsf (137) - - P.guimberteau (137) Pepeleduin (137) + + + + Hellotheworld (135) + Norah (135) Shunesburg69 (135) - - Filhocf (132) + + Llunak (132) @@ -8247,11 +8326,11 @@ Guilhem (130) - - Michel, Mathias (129) + + Ikuya (127) @@ -8261,11 +8340,11 @@ Nik (127) - - Baffclan (126) + + Kukekko (126) @@ -8275,11 +8354,11 @@ RGB.ES (124) - - JARF (123) + + Krackedpress (123) @@ -8289,12 +8368,11 @@ Trapezus (122) - - - Valtermura (122) + + Goodlinuxuser (120) @@ -8304,11 +8382,11 @@ Liebel, Jennifer (119) - - Phorious (118) + + Lqju96 (117) @@ -8318,11 +8396,11 @@ Ysabeau (115) - - Markers (114) + + Teseu (114) @@ -8332,11 +8410,11 @@ PulkitKrishna00 (113) - - Vohe (113) + + Marcus Gama (112) @@ -8346,22 +8424,25 @@ Medieval (111) - - Bachka (110) + + Monthoflibreoffice bot (110) + Tjhietala (110) + + Mantke, Andreas (109) Jstnlth (108) - + Nyucel (108) @@ -8369,16 +8450,13 @@ Salix (107) - Tjhietala (107) - - Bitsfritz (104) - - Chtfn (104) + + Klaibson (104) @@ -8388,11 +8466,11 @@ Mbalabanov (104) - - Stephan.ficht (102) + + Pechlaner, Wolfgang (102) @@ -8402,8 +8480,11 @@ JZA (101) + + Timur LOL (101) + - + WillZ (100) @@ -8417,10 +8498,7 @@ AlanC (98) - - - Timur LOL (98) - + Dan (95) @@ -8430,11 +8508,11 @@ Köse, Gülşah (94) - - Barbora (93) + + Geraldg (93) @@ -8444,11 +8522,11 @@ Andreasg (92) - - Lekle (91) + + Atalanttore (90) @@ -8458,11 +8536,11 @@ Richv2 (90) - - Zeki (89) + + Catalin Festila (88) @@ -8472,292 +8550,292 @@ Fišeras, Aurimas (87) - - - - Hellotheworld (87) - Milos (87) + + Paulojose (87) Omori (86) - - Steve- - (86) Eddy (85) + + Evy (84) Jfnif (84) - - KorrawitBot (84) Santhab (84) + + Enio.gemmo (81) JamesWalker (81) - - Ogervasi (80) 80686 (79) + + KeithCu (79) Kjh000121 (79) - - Laveni (79) Xosé (79) + + CharlieRamirezAnimationStudiosMX (78) Jwtiyar (78) - - Marcio Oliveira (78) Socetk (77) + + Tommy.WU (77) Albino (75) - - K.K.Ashisuto (75) Uwealtmann (75) + + Emoreno (74) Lbalbalba (74) - - Namikawamisaki (73) Rachel618 (73) + + Castermans, Luc (72) Momo50 (72) - - Aury88 (71) RalfHB (71) + + Sawakaze (71) Al-Harthi, Ahmad Hussein (70) - - Jo7ueb (70) Malhassoun (69) + + Freetank (68) Fábio Farias (68) - - Gghh (68) SoNick RND (68) + + Ptux (67) Karbasion, Bersam (65) - - Bmcs (65) Kabe (65) + + StanG (65) Glogowski, Jan-Marek (64) - - Oipila (64) Ptrsk (64) + + Hanapospisilova (63) Kudelis, Rimas (63) - - Sikeler (63) Popa, Adrian Marius (62) + + Quikee (62) Thibault, Samuel (62) - - Denco (61) Frieder (61) + + Jimin (61) Arnaudlecam (60) - - Jlgrenar (60) Montané, Joan (60) + + OctopusET (60) Piotrekr1 (60) - - AndikaTriwidada (58) Camillem (58) + + Neel, Daniel (58) Loflex (58) - - Kukan, Matúš (58) Jihui choi (57) + + Kelemeng (57) Bubli (56) - - Davefilms (56) Glen.reesor (56) + + Ramones (56) Ramtk6726 (56) - - Hunt, Andrzej (55) Fifh (55) + + Jrahemipour (55) Cornell, Clayton (54) - - Fanthomas (54) + Grandin, Noel (54) + + + + Mahfiaz (54) @@ -8766,11 +8844,11 @@ Sunny2038 (53) - - Petrizzo (52) + + ArnoldSchiller (51) @@ -8780,54 +8858,54 @@ Jaani (51) - - Lendo (51) + + Agd (50) - Grandin, Noel (50) - - Halparker (50) - - Paz (50) Ronaldo (50) + + SeoYeonJin (50) Mpescador (49) - - Magliocchetti, Riccardo (49) Vardomescro (49) + + Afaccioli74 (48) Lviktoria (48) - - Dagobert 78 (47) + Tomoyuki, Kubota (47) + + + + Quest-88 (47) @@ -8836,11 +8914,11 @@ Amtliz (46) - - FloF (46) + + Sk94 (46) @@ -8850,109 +8928,109 @@ Bfo (45) - - - - Tomoyuki, Kubota (45) - Hosny, Khaled (45) + + Lua (45) Jung, Philippe (45) - - Robwestein (45) Bhorst (44) + + Ikh1 (44) Aaronxu (43) - - Cottage14 (43) Gareth (43) + + GerhardW (43) Wilper, Simon (43) - - Enger, Terrence (43) Donkers, Winfried (43) + + Bluedwarf (42) Fkara (42) - - KAMI (42) SangwooPark (42) + + AnXh3L0 (41) Another sam (41) - - Arjunaraoc (41) Joey (41) + + Marklh9 (41) Pedlino (41) - - Fábio Coelho (40) Kraucer (40) + + Valdirbarbosa (39) Enervation (38) - - + + Partick.auclair (38) + Pje335 (38) + + Alex Thurgood (37) @@ -8962,11 +9040,11 @@ Eliskavotipkova (37) - - Ivanslf (37) + + Aragunde Pérez, Jacobo (37) @@ -8976,11 +9054,11 @@ Kinshuksunil (37) - - Castle, John LeMoyne (37) + + RaducuG (37) @@ -8988,10 +9066,13 @@ Sistemo2021 (37) + Sherlock, Chris (37) + + Budea, Áron (36) - + Caco13 (36) @@ -8999,15 +9080,15 @@ Danishka (36) - Patheticcockroach (36) + Weghorn, Michael (36) - Sci citation (36) + Patheticcockroach (36) - + - Sherlock, Chris (36) + Sci citation (36) Yan Pashkovsky (36) @@ -9019,7 +9100,7 @@ Jingtao, Yan (35) - + Liongold (35) @@ -9033,7 +9114,7 @@ Stalker08 (35) - + Subramanian, Muthu (35) @@ -9047,7 +9128,7 @@ Bormant (33) - + Davidlamhauge (33) @@ -9061,7 +9142,7 @@ Marrod (33) - + Mateus.m.luna (33) @@ -9075,7 +9156,7 @@ Shirahara (33) - + Alexanderwerner (32) @@ -9089,7 +9170,7 @@ Daud (32) - + Kłos, Szymon (32) @@ -9103,24 +9184,21 @@ Dryomov, Artur (32) - + Monocat (32) - Partick.auclair (32) - - Ptoye (32) Vulcain (32) - - Xuacu (32) + + Chloeeekim (31) @@ -9130,68 +9208,68 @@ IvanM (31) - - - - Weghorn, Michael (31) - Kant, Pranav (31) + + Usayan (31) Am97 (30) - - Njsg (30) SEVEN (30) + + Speck (30) Tclovis (30) - - Thardeck (30) Acbaird (29) + + Cida.Coltro (29) Darbe (29) - - EdvaldoSCruz (29) Haaninjo (29) + + RodolfoRG (29) Серж (29) - - Ace-dent (28) + FelipeAle (28) + + + + Riemer, Philipp (28) @@ -9200,11 +9278,11 @@ المسيكين (28) - - Marcofilippozzi (27) + + Marcos Paulo de Souza (27) @@ -9214,11 +9292,11 @@ PeppinoLib (27) - - Sarojdhakal (27) + + Thuswaldner, Albert (27) @@ -9228,11 +9306,11 @@ Eresus (26) - - Ezeperez26 (26) + + Fanch (26) @@ -9242,11 +9320,11 @@ Libreofficer (26) - - Linuxman (26) + + Lutch (26) @@ -9256,11 +9334,11 @@ Hawkins, Nigel (26) - - Pirat Michi (26) + + Vaslav (26) @@ -9270,138 +9348,138 @@ Ailion (25) - - Roßmanith, Christina (25) - - FelipeAle (25) - + + Freddyrh (25) Sullivan, Gatlin (25) - - Ledure, Jean-Pierre (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) - - Elsass68490 (23) 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) - - Roman (22) + Flywire (21) + + + + Jeppebundsgaard (21) @@ -9410,11 +9488,11 @@ Keymap19 (21) - - Liusiqi43 (21) + + Logisch dede (21) @@ -9424,11 +9502,11 @@ Puster (21) - - Shiko (21) + + WalterPape (21) @@ -9438,109 +9516,109 @@ Bugmenot (20) - - Dennisfrancis (20) - - Flywire (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) + + A-zakh (19) Chernik (19) - - Clarice Vigliazzi (19) Guateconexion (19) + + Houbsi (19) JaronBaron (19) - - Jem (19) Funk, Juergen (19) + + Juergenfenn (19) Kentarch (19) - - Lothar.becker (19) PeeWee (19) + + RegisPerdreau (19) Ionita, Teodor-Mircea (19) - - + + Ehsan.movahed (18) + Foolfitz (18) + + Hidayet (18) @@ -9550,11 +9628,11 @@ Monastirsky, Maxim (18) - - Narayan (18) + + Nestifea61 (18) @@ -9564,11 +9642,11 @@ Richard (18) - - Serge Krot (18) + + Sooth (18) @@ -9578,11 +9656,11 @@ Vuhung (18) - - Yusufketen (18) + + 林漢昌 (18) @@ -9592,11 +9670,11 @@ Chd (17) - - Craigo (17) + + Dlmoretz (17) @@ -9606,11 +9684,11 @@ Guilherme.vanz (17) - - Gulmorais (17) + + Tõnnov, Mihkel (17) @@ -9620,11 +9698,11 @@ Sohyun99 (17) - - Taken (17) + + Zu, Ximeng (17) @@ -9634,11 +9712,11 @@ Беломир (17) - - Airon90 (16) + + Alexpikptz (16) @@ -9648,11 +9726,11 @@ Kingu (16) - - Pinto, Marco A.G. (16) + + MoIshihara (16) @@ -9662,11 +9740,11 @@ P.Guimberteau (16) - - PauGNU (16) + + Ristoi (16) @@ -9676,11 +9754,11 @@ Smrabelo (16) - - TPJ (16) + + APerson (15) @@ -9690,11 +9768,11 @@ Andy98 (15) - - Bertob (15) + + Gilward Kukel (15) @@ -9704,11 +9782,11 @@ Khlood Elsayed (15) - - Lefevre00 (15) + + Luctur (15) @@ -9718,11 +9796,11 @@ Naudy (15) - - Dominguez, Rafael (15) + + Patriciasc (15) @@ -9732,11 +9810,11 @@ Raniaamina (15) - - Raul.malea (15) + + Royerjy (15) @@ -9746,11 +9824,11 @@ Thorogood, Tom (15) - - Ulf hamburg (15) + + Yecril21pl (15) @@ -9760,11 +9838,11 @@ AliIsingor (14) - - Darkcircle (14) + + Elrath (14) @@ -9774,11 +9852,11 @@ Francis59 (14) - - Guuml (14) + + Halencarjunior (14) @@ -9788,11 +9866,11 @@ Librosaurus (14) - - Dixon, Luke (14) + + Mderoucy (14) @@ -9802,11 +9880,11 @@ Reinsle (14) - - RiderExMachina (14) + + Susobhang70 (14) @@ -9816,11 +9894,11 @@ Tamiliam (14) - - Testnoda (14) + + Thangamani-arun (14) @@ -9830,11 +9908,11 @@ Akoscomp (13) - - Alrt84 (13) + + Alyssonware (13) @@ -9844,11 +9922,11 @@ Cedric31 (13) - - Crolidge (13) + + Gallaecio (13) @@ -9858,11 +9936,11 @@ Kadekilo (13) - - Leomota (13) + + Ljelly (13) @@ -9872,11 +9950,11 @@ Mabbb (13) - - Mikeyy (13) + + Mortense (13) @@ -9886,11 +9964,11 @@ Pete Boyd (13) - - S.Gecko (13) + + Samtuke (13) @@ -9900,11 +9978,11 @@ Simplicity Instinct (13) - - ThierryM (13) + + Tnishiki (13) @@ -9914,11 +9992,11 @@ Vivaelcelta (13) - - Vkkodali (13) + + A8 (12) @@ -9928,11 +10006,11 @@ And471 (12) - - AustinW (12) + + Bhaskar (12) @@ -9942,11 +10020,11 @@ Chris2020 (12) - - Cralin (12) + + Debring (12) @@ -9956,11 +10034,11 @@ Halan (12) - - Immanuelg (12) + + Kikopb (12) @@ -9970,22 +10048,25 @@ Šebetić, Krunoslav (12) - - Godard, Laurent (12) + + Rimkus, Modestas (12) + Nandar (12) + + Pcapeluto (12) Gupta, Rachit (12) - + Raruenrom, Samphan (12) @@ -9999,7 +10080,7 @@ Melenchuk, Vasily (12) - + Veerh01 (12) @@ -10013,7 +10094,7 @@ Cdan (11) - + ChristopheS (11) @@ -10027,7 +10108,7 @@ Eduaraujo (11) - + Gokul, S (11) @@ -10041,7 +10122,7 @@ Kallecarl (11) - + Kolbjoern (11) @@ -10055,7 +10136,7 @@ MNeto (11) - + Pearson, Timothy (11) @@ -10069,7 +10150,7 @@ NON (11) - + Johansson, Niklas (11) @@ -10083,7 +10164,7 @@ Salmaan (11) - + Sunk8 (11) @@ -10097,7 +10178,7 @@ Zero0w (11) - + Aeusebio (10) @@ -10111,21 +10192,24 @@ Blargh (10) - + Brett (10) + Davydych (10) + + Diginin (10) Eagles051387 (10) + + Eduardogula (10) - - Eficheux (10) @@ -10135,11 +10219,11 @@ J.baer (10) + + Jdittrich (10) - - Joacim (10) @@ -10149,11 +10233,11 @@ Kirill NN (10) + + Linuxuser330250 (10) - - Lionlinux (10) @@ -10163,11 +10247,11 @@ Chung, Elton (10) + + Mikalai (10) - - Morvan (10) @@ -10177,11 +10261,11 @@ Nateyee (10) + + Olea (10) - - Otto (10) @@ -10191,11 +10275,11 @@ Rafaelhlima (10) + + Revol (10) - - Ronja (10) @@ -10205,11 +10289,11 @@ Tomg (10) + + Ttocsmij (10) - - Twstdude0to1 (10) @@ -10219,11 +10303,11 @@ Wlenon (10) + + Al-Abdulrazzaq, Abdulmajeed (9) - - Agger (9) @@ -10233,11 +10317,11 @@ Brandner, Andreas (9) + + AtkinsSJ (9) - - Camargo (9) @@ -10247,11 +10331,11 @@ Compressor nickel (9) + + Crazyskeggy (9) - - Dupreyb (9) @@ -10261,11 +10345,11 @@ Gibi (9) + + GisbertFriege (9) - - Goranrakic (9) @@ -10275,11 +10359,11 @@ Jonatoni (9) + + Jopsen (9) - - Jowyta (9) @@ -10289,11 +10373,11 @@ Lapetec (9) + + Lexeii (9) - - Mapper (9) @@ -10303,14 +10387,22 @@ Meo (9) + + + + MertTumer (9) + Msaffron (9) - - + + Ocleyr2lalune (9) + Ohnemax (9) + + Onting (9) @@ -10320,11 +10412,11 @@ Milvaques, Pasqual (9) - - Foley, Peter (9) + + Pixpray (9) @@ -10334,11 +10426,11 @@ Rantaro (9) - - Rogawa (9) + + Rpr (9) @@ -10348,8 +10440,11 @@ Spacebat (9) + + Spyros (9) + - + Therabi (9) @@ -10363,7 +10458,7 @@ Zhangxiaofei (9) - + ميدو (9) @@ -10377,7 +10472,7 @@ AndreasL (8) - + Ausserirdischegesund (8) @@ -10391,7 +10486,7 @@ Dashohoxha (8) - + DrDub (8) @@ -10405,7 +10500,7 @@ Horst (8) - + Israel Chaves (8) @@ -10419,7 +10514,7 @@ Jrsiqueira (8) - + Jslozier (8) @@ -10433,7 +10528,7 @@ Kednar (8) - + Rietveld, Kristian (8) @@ -10447,7 +10542,7 @@ Leo.h.hildebrandt (8) - + Luisgulo (8) @@ -10461,7 +10556,7 @@ NightMonkey (8) - + NirajanPant (8) @@ -10475,7 +10570,7 @@ Paulo.tavares (8) - + Peterpall (8) @@ -10489,7 +10584,7 @@ Tibbylickle (8) - + Troumad (8) @@ -10503,7 +10598,7 @@ Yakusha (8) - + Yellow.h (8) @@ -10517,7 +10612,7 @@ Ahiijny (7) - + Andrea.soragna (7) @@ -10531,7 +10626,7 @@ Berrykevin (7) - + Bjherbison (7) @@ -10545,7 +10640,7 @@ Capiscuas (7) - + Chin Zee Yuen (7) @@ -10559,7 +10654,7 @@ Drose (7) - + Esbardu (7) @@ -10573,7 +10668,7 @@ Hunter, Kevin (7) - + Ingotian (7) @@ -10587,7 +10682,7 @@ M1cky (7) - + Mariosv (7) @@ -10601,7 +10696,7 @@ Francis, Matthew (7) - + Nathanjh13 (7) @@ -10615,7 +10710,7 @@ Christener, Nicolas (7) - + Olivier DDB (7) @@ -10629,7 +10724,7 @@ Polte (7) - + RMCampos (7) @@ -10643,7 +10738,7 @@ Rodo (7) - + Scottclarke (7) @@ -10657,7 +10752,7 @@ Simosx (7) - + Tonnysmile (7) @@ -10671,7 +10766,7 @@ Webfork (7) - + Woordje (7) @@ -10685,7 +10780,7 @@ Alpha (6) - + Armin Dänzer (6) @@ -10699,7 +10794,7 @@ Barend (6) - + Bobe (6) @@ -10713,7 +10808,7 @@ Cccfr (6) - + ClausKofoed (6) @@ -10727,7 +10822,7 @@ BEN MANSOUR, Mohamed-Ali (6) - + Ddxavier (6) @@ -10741,7 +10836,7 @@ Mencken, Douglas (6) - + Dr.Faust (6) @@ -10755,7 +10850,7 @@ Edmond ciorba (6) - + Edmund.laugasson (6) @@ -10769,7 +10864,7 @@ Fdekruijf (6) - + Gallaire, Florent (6) @@ -10783,7 +10878,7 @@ Gerritg (6) - + Ghune (6) @@ -10797,7 +10892,7 @@ Hmoi (6) - + Hramrach (6) @@ -10811,7 +10906,7 @@ Timofeev, Ivan (6) - + James 00cat (6) @@ -10825,7 +10920,7 @@ Levlazinskiy (6) - + Link Mauve (6) @@ -10833,13 +10928,16 @@ MaggieT (6) + Mahdyar (6) + + Manas (6) + + Manop (6) - - Mas (6) @@ -10849,11 +10947,11 @@ Mhonline (6) + + Mmetz (6) - - Ndlsas (6) @@ -10863,11 +10961,11 @@ Only you (6) + + Os cib (6) - - PLNET (6) @@ -10877,11 +10975,11 @@ Peter Chastain (6) + + Peterhuang1kimo (6) - - Piotr285 (6) @@ -10891,11 +10989,11 @@ Rotaj (6) + + Goyal, Shubham (6) - - Sn!py (6) @@ -10905,11 +11003,11 @@ Sumitcn (6) + + Telesto (6) - - Heidenreich, Josh (6) @@ -10919,11 +11017,11 @@ TiagoSantos (6) + + Tyree (6) - - VACHER (6) @@ -10933,11 +11031,11 @@ Virthus (6) + + Wagner Augusto Silva Rodrigo (6) - - Wasserthal (6) @@ -10947,11 +11045,11 @@ Wiseacre (6) + + Xhi2018 (6) - - Xiaoyu2006 (6) @@ -10961,11 +11059,11 @@ Adam Co (5) + + Albucasis (5) - - AleXanDeR G (5) @@ -10975,11 +11073,11 @@ Alvarez, Octavio (5) + + Anousak (5) - - Liwen, Fan (5) @@ -10989,11 +11087,11 @@ Sodora, August (5) + + AustinSaintAubin (5) - - Baumgarp (5) @@ -11003,11 +11101,11 @@ Bitigchi (5) + + BloodIce (5) - - CassieLX (5) @@ -11017,11 +11115,11 @@ Cray85 (5) + + Dejourdain (5) - - DickStomp (5) @@ -11031,11 +11129,11 @@ DoFoWerner (5) + + Faiq Aminuddin (5) - - Fazbdillah (5) @@ -11045,11 +11143,11 @@ Francewhoa (5) + + GaboXandre (5) - - Ggurley (5) @@ -11059,11 +11157,11 @@ H.Sparks (5) + + Habib (5) - - Hatochan (5) @@ -11073,11 +11171,11 @@ Hummer5354 (5) + + HwangTW (5) - - Icyitscold (5) @@ -11087,11 +11185,11 @@ Jaysponsored (5) + + JoeP (5) - - John.pratt (5) @@ -11101,11 +11199,11 @@ Kamataki (5) + + Klausmach (5) - - Koji Annoura (5) @@ -11115,11 +11213,11 @@ Mak (5) + + Mgaster (5) - - Midimarcus (5) @@ -11129,11 +11227,11 @@ Mtg (5) + + Mtnyildrm (5) - - Namikawa (5) @@ -11143,11 +11241,11 @@ Orcmid (5) + + Pepe (5) - - Pkoroau (5) @@ -11157,11 +11255,11 @@ Quwex (5) + + Radish (5) - - Rajesh (5) @@ -11171,11 +11269,11 @@ Raulpaes (5) + + Rautamiekka (5) - - ReneEngelhard (5) @@ -11185,11 +11283,11 @@ Rogerio DA (5) + + Rsolipa (5) - - SabinGC (5) @@ -11199,11 +11297,11 @@ Samson (5) + + Chvátal, Tomáš (5) - - Kurmann, Roland (5) @@ -11213,11 +11311,11 @@ Shantanuo (5) + + Shivam (5) - - Silva.arapi (5) @@ -11225,13 +11323,10 @@ So solid moo (5) - Spyros (5) - - Srividya (5) - + Starseeker (5) @@ -11245,7 +11340,7 @@ Timotheonb (5) - + Tranzistors (5) @@ -11259,7 +11354,7 @@ Yury Tarasievich (5) - + AHi (4) @@ -11273,7 +11368,7 @@ Adderbox76 (4) - + Adrien.Ollier (4) @@ -11287,7 +11382,7 @@ Nureña, Aldo Román (4) - + Alex1 (4) @@ -11301,7 +11396,7 @@ Alvarenga (4) - + Alzoo (4) @@ -11315,7 +11410,7 @@ Archlid (4) - + Arhitectul (4) @@ -11329,7 +11424,7 @@ Bardo (4) - + BathuAlike (4) @@ -11343,7 +11438,7 @@ Blender3dartist (4) - + Bntser (4) @@ -11357,7 +11452,7 @@ ConquerorsHaki (4) - + Crankybot (4) @@ -11371,7 +11466,7 @@ Deivan (4) - + Dmerker (4) @@ -11385,7 +11480,7 @@ Dragon (4) - + Robertson, Daniel (4) @@ -11399,7 +11494,7 @@ Fmolinero (4) - + Ftigeot (4) @@ -11413,7 +11508,7 @@ Gustav (4) - + GwenaelQ (4) @@ -11427,7 +11522,7 @@ JKaufmann (4) - + Jamesleader (4) @@ -11441,7 +11536,7 @@ Jjmeric (4) - + Jjpalacios (4) @@ -11455,7 +11550,7 @@ Jones (4) - + Jooste (4) @@ -11469,7 +11564,7 @@ Kemalayhan (4) - + Lethargilistic (4) @@ -11477,13 +11572,16 @@ Loren.rogers (4) + M.m.mozffart (4) + + Haggag, Muhammad (4) + + MPascual (4) - - Rumianowski, Maciej (4) @@ -11493,11 +11591,11 @@ Mikedoherty ca (4) + + Mondeep18 (4) - - Morgan greywolf (4) @@ -11507,11 +11605,11 @@ NGHLibreOffice (4) + + O.villani (4) - - Offidocs (4) @@ -11521,11 +11619,11 @@ Oscar90210 (4) + + Paolopoz (4) - - Paranemertes (4) @@ -11535,11 +11633,11 @@ Pegasus (4) + + Pgassmann (4) - - Philj (4) @@ -11549,11 +11647,11 @@ van Oostrum, Pieter (4) + + Pjacquod (4) - - Prolog.guy (4) @@ -11563,11 +11661,11 @@ Qubit-test (4) + + Randolphgamo (4) - - Rebahozkoc (4) @@ -11577,11 +11675,11 @@ Ricgal (4) + + RjR (4) - - Rodhos (4) @@ -11591,11 +11689,11 @@ Sealview (4) + + Selimseker (4) - - Sswales (4) @@ -11605,11 +11703,11 @@ Surat (4) + + Tct (4) - - Thetic (4) @@ -11619,11 +11717,11 @@ Tlequire (4) + + Txwikinger (4) - - Ufas (4) @@ -11633,11 +11731,11 @@ Urhixidur (4) + + Uzadmin (4) - - V., Artem (4) @@ -11647,11 +11745,11 @@ Wikiuser (4) + + Williamjmorenor (4) - - Wpeixoto (4) @@ -11661,11 +11759,11 @@ Aalam (3) + + AbhilashSingh (3) - - Adept (3) @@ -11675,11 +11773,11 @@ AhmadHaris (3) + + Jain, Atishay (3) - - Alex.simoes (3) @@ -11689,11 +11787,11 @@ Almorca (3) + + Andrey Usov (3) - - Antanasb (3) @@ -11703,11 +11801,11 @@ Arkanosis (3) + + Armin (3) - - Armin W. (3) @@ -11717,11 +11815,11 @@ Aurelien (3) + + Baena (3) - - Bellerophon2 (3) @@ -11731,11 +11829,11 @@ Bernardi, Paolo (3) + + Bindassanant (3) - - Bodhi-Baum (3) @@ -11745,11 +11843,11 @@ Bos (3) + + Prajapati, Gautam (3) - - Brub (3) @@ -11759,11 +11857,11 @@ CIB.Mathias (3) + + Canberkturan (3) - - Castro (3) @@ -11771,17 +11869,25 @@ Charu (3) + ChrisConCas (3) + + + + Claudiosegovia (3) Cmorgan (3) - - Colokalle (3) + Cwendling (3) + + + + D0ugparker (3) @@ -11790,11 +11896,11 @@ DanShearer (3) - - Beurle, Darcy (3) + + Bankston, Daniel (3) @@ -11804,11 +11910,11 @@ Donbrookman (3) - - Dubyk (3) + + EdgeE (3) @@ -11818,11 +11924,11 @@ Eisa01 (3) - - Elproferoman (3) + + Schorsch, Emanuel (3) @@ -11832,11 +11938,11 @@ Eric.ficheux (3) - - Ericatamiris (3) + + Estebanmonge (3) @@ -11846,11 +11952,11 @@ Ferlodev (3) - - Fraang (3) + + Franzjakob (3) @@ -11860,11 +11966,11 @@ Fulldecent (3) - - FunkyPenguin (3) + + Gokcen (3) @@ -11874,11 +11980,11 @@ Smaha, Guillaume (3) - - Hansgerd.schneider (3) + + Nag,Harshita (3) @@ -11888,11 +11994,11 @@ Hwpplayer1 (3) - - IanL (3) + + Imanuelr10 (3) @@ -11902,11 +12008,11 @@ It-christian (3) - - IvanMM (3) + + Izabela (3) @@ -11916,11 +12022,11 @@ Jammon (3) - - Jcrben (3) + + Jennifer.park (3) @@ -11930,11 +12036,11 @@ Murugan, Jesso Clarence (3) - - Jhbn (3) + + Jo Cab (3) @@ -11944,11 +12050,11 @@ Johannes Rohr (3) - - Joseroberto (3) + + Juanpabl (3) @@ -11958,11 +12064,11 @@ K Karthikeyan (3) - - Katasisc (3) + + Kbiondi (3) @@ -11972,11 +12078,11 @@ Kfogel (3) - - Khunshan (3) + + Kkrothapalli (3) @@ -11986,11 +12092,11 @@ Lennoazevedo (3) - - LewisCowles (3) + + Libcub (3) @@ -12000,11 +12106,11 @@ Hryniuk, Łukasz (3) - - Luuk (3) + + Machey (3) @@ -12014,11 +12120,11 @@ Margott (3) - - Marializ (3) + + Matteocam (3) @@ -12028,445 +12134,445 @@ Maxwell (3) - - Measure for Measure (3) + + Melike (3) - MertTumer (3) - - Meryemezber (3) - - Mhoes (3) Mhsmsantos (3) + + Michaelwheatland (3) Mike98 (3) - - Neookano (3) NickWingate (3) + + NicksonT (3) Nicolas.abel (3) - - Niconil (3) Ragnarsson, Björgvin (3) + + Nloira (3) Noel Power (3) - - OOarthurOo (3) Steinbeiß, Simon (3) + + Ojeremyj (3) Oliverguenther (3) - - Oprea luci (3) Penalvch (3) + + Pr410 (3) Prakash72 (3) - - Rajatvijay (3) Rapha.ksf (3) + + Rauloliverpaes (3) Bevilacqua, Jean-Sébastien (3) - - RebeccaHodgson (3) Rick (3) + + Robert.E.A.Harvey (3) Rosemary (3) - - S8321414 (3) Sander Klootwijk (3) + + Sangeeta (3) Saper (3) - - Satabin (3) Sayt (3) + + Schroed(ing)er (3) Sebby (3) - - Sergey Aka (3) Shelandy (3) + + Skinnerbird (3) Smile4ever (3) - - Soliac (3) Songchuan (3) + + Sotrud nik (3) Soued031 (3) - - StefanRing (3) SteveKelem (3) + + Strugee (3) Suren (3) - - Sushils (3) Taylor46 (3) + + TheWebalyst (3) Tiagosilva.anps (3) - - Timsamoff (3) Tititou36 (3) + + Kumar, Tarun (3) Toki (3) - - Tomi Toivio (3) ToniB (3) + + Toxifier (3) TrnsltLife (3) - - Tushantin (3) Ubap (3) + + Kitzinger, Ulrich (3) Underdog (3) - - Vinctor (3) Vljubovic (3) + + Wagnerluis1982 (3) Khoo, Wei Ming (3) - - WesPeacock (3) Xaker1 (3) + + Yeominstall (3) Yukawa (3) - - Kolesnykov, Yurii (3) Yvon Henel (3) + + Zaria (3) Zaxebo1 (3) - - §chinagl (3) ترجمان05 (3) + + さかみのかさね (3) AbbeyI19jfjc (2) - - AdamPrado8 (2) AdrianValdez4 (2) + + Adsha (2) Agarciamog (2) - - Aggelalex (2) Alan (2) + + Ale2017 (2) AliceOliver7 (2) - - Alina12345 (2) Alisha (2) + + AlmedaFrancis (2) AlphonsoNava4 (2) - - Amunizp (2) AmyCarney5 (2) + + Anasiic (2) AndresChandia (2) - - Andrew (2) AndrewKuhn7 (2) + + AndrewUlrich (2) Andthebrain (2) - - Anipeter (2) Anjar (2) + + Ankit (2) AnnabelMcmullen (2) - - AnnunciationGunn (2) Anonimus (2) + + AntoniaMead8 (2) Jain, Anurag (2) - - Aplatypus (2) ApostlesSheldon (2) + + Arachan (2) Asal (2) - - Ashaneba (2) Nakashian, Ashod (2) + + AvaGreer1 (2) Ozdemir, Aybuke (2) - - BZT42 (2) Le Garrec, Vincent (2) + + BernardMeza9 (2) + Beto (2) + + BirdRivas2 (2) - - BlazejJones1 (2) + + BlessedOrozco (2) @@ -12476,11 +12582,11 @@ Blushingorg (2) - - BoD (2) + + Bogcahi (2) @@ -12490,11 +12596,11 @@ Boldizsakawi7 (2) - - BoleslausSaunders (2) + + Bram (2) @@ -12504,11 +12610,11 @@ BridgetJarvis (2) - - Bruceschaller (2) + + BryantMclean6 (2) @@ -12518,11 +12624,11 @@ C0bb3r (2) - - C1pr1an (2) + + CallieMvzap (2) @@ -12532,11 +12638,11 @@ CamilleMccarthy (2) - - CandidoRutherford (2) + + CapistranOleary (2) @@ -12546,11 +12652,11 @@ CaraDang6 (2) - - Carlosr (2) + + CarolinaCalling (2) @@ -12560,11 +12666,11 @@ CarrollRico2 (2) - - Iacob, Catalin (2) + + CavesGill8 (2) @@ -12574,11 +12680,11 @@ Cgrosdemange (2) - - Chabermu (2) + + ChanieSnow2 (2) @@ -12588,11 +12694,11 @@ ChrisBarth (2) - - ChrzcicielCampbell (2) + + Cjbackhouse (2) @@ -12602,11 +12708,11 @@ ClariceThorne (2) - - ClaudiaCramer (2) + + Clemen Beek (2) @@ -12616,11 +12722,11 @@ Codingmicha (2) - - Colabo (2) + + Conrado (2) @@ -12630,11 +12736,11 @@ CoralieCarr7 (2) - - Crxssi (2) + + CupertinoDarnell (2) @@ -12642,559 +12748,559 @@ Cvk (2) - Cwendling (2) - - - - CyrillicEscobedo (2) Cœur, Antoine (2) + + DaCaPo (2) Dairdev (2) - - DaisieQuigley (2) Damascene (2) + + DanForrest2 (2) Danese (2) - - Danthedev (2) Darkixion (2) + + David4you (2) Bolen, David (2) - - De-jourdain (2) Debugercz (2) + + DelinaRomano5 (2) DellePoole7 (2) - - DenisArnaud (2) Dennis' Spam test account (2) + + Denytracom (2) Devilcynthy (2) - - Diazbastian (2) Retout, Tim (2) + + Django (2) DoctorBaxter7 (2) - - Domasj (2) Domsau2 (2) + + DonaldBryant7 (2) Donals (2) - - DrDrack (2) Röllin, Lukas (2) + + Duiliodias (2) DukeDejesus7 (2) - - EarleSiegel7 (2) Ed (2) + + EdaFreeman3 (2) Eduardoarandah (2) - - Edwardcottreau (2) Efdali (2) + + Efs710920mex (2) Ejep520 (2) - - Sánchez, Bartolomé (2) Eldan (2) + + ElisabethHolcomb (2) Elixir (2) - - EllieBowers3 (2) ElmaGray6 (2) + + Eloquence (2) ElsieMacias7 (2) - - Emily (2) EmperorErnst5 (2) + + Eneville (2) EnosKraus6 (2) - - Erdalronahi (2) Eren (2) + + ErieTovar6 (2) Erikcht (2) - - Ersteinmal (2) ErwinHammond3 (2) + + Escriba (2) EssieKeller8 (2) - - EsterEngland7 (2) EthylCardenas (2) + + EyalRozenberg (2) F.werner.pohl (2) - - FannyTillman8 (2) FateHarrington (2) + + Fbartels (2) Fcelik (2) - - Fcojavmc (2) Feldo (2) + + Ffinlo (2) FlaviaPratt8 (2) - - FlorenceGrossman (2) FlorenceKim1 (2) + + FordRhodes5 (2) FranciscoByrne (2) - - FredaDowning7 (2) Fukanchik, Sergey (2) + + Fyodor, Yemelyanenko (2) Garcia.marc (2) - - Gauste (2) GayeRossetti (2) + + GeoDowning4 (2) GeoffLawrence (2) - - GeorgiannaOchoa (2) Gerardgiraud (2) + + Gerpunzel (2) GertieEllington (2) - - GiertrudaLehman (2) Girvinh (2) + + GiuseppOQH (2) Glanbeav (2) - - Glococo (2) Gmasei (2) + + Gmealer (2) Gmolleda (2) - - GraciaNorwood (2) Grakic (2) + + Grim (2) Gualtiero (2) - - Guillem (2) Hacmiranda (2) + + Hagar (2) HannaEspinoza (2) - - HardyBurris1 (2) HarleyWatkins (2) + + Hasithakj (2) Hector (2) - - Hedaja (2) Hellpé (2) + + Helo (2) Hemmerling (2) - - Jensen, Henrik (2) HeriberDacomb (2) + + HermitMuller1 (2) Herronrobertson (2) - - HershelPeterson (2) IIIYates8 (2) + + Ian22 (2) Iannz (2) - - IkeVasquez9 (2) IlaRoberts4 (2) + + Imagin8or (2) InezFinney8 (2) - - IraLane4 (2) IrinaMccormack (2) + + IrvinBernard9 (2) IsadoraFoster (2) - - IsaiahBuck5 (2) IsiahLackey2 (2) + + IvaRoach5 (2) Burant, Jiri (2) - - JOIMER REYES (2) JacintaGibson (2) + + Adams, Jonathan (2) C., James (2) - - JanuariusStringer (2) Jasmins (2) + + JasperSawyer7 (2) JavierFernandez (2) - - JayStafford3 (2) Jcarl (2) + + Jcentel (2) Jcubic (2) - - Jeraldinesewell (2) JesseBHXEmrh (2) + + JettieGibson2 (2) Jgpestana (2) - - Lingard, J. Graeme (2) Jnicolas (2) + + JoWi (2) Jonathanacohen (2) - - JonesRichter8 (2) Jowenshaw (2) + + João Pedro (2) Jsargey (2) - - + + Jsbueno (2) + Jstaniek (2) + + JudasPeoples9 (2) @@ -13204,11 +13310,11 @@ JudithGraves6 (2) - - Jumoun (2) + + JustinaEldridge (2) @@ -13218,11 +13324,11 @@ Kammreiter (2) - - Kamran Mackey (2) + + Karakartala (2) @@ -13232,11 +13338,11 @@ Karolus (2) - - Kasos (2) + + Kay D (2) @@ -13246,11 +13352,11 @@ Keepiledar (2) - - KeithC (2) + + Khokkanen (2) @@ -13260,11 +13366,11 @@ KlementynaMckinney (2) - - Kmr (2) + + KolbeKline1 (2) @@ -13274,11 +13380,11 @@ Krauss (2) - - keshav, krishna (2) + + KrisvdMewe (2) @@ -13288,11 +13394,11 @@ Krumelmonster (2) - - KrystalMinchin (2) + + KsaweryDempsey (2) @@ -13302,11 +13408,11 @@ L (2) - - LariaJohn3 (2) + + LeanaParks2 (2) @@ -13316,11 +13422,11 @@ LemuelWerner5 (2) - - LeoNeo (2) + + Lhcezar (2) @@ -13330,11 +13436,11 @@ Lino (2) - - Liotier (2) + + Lliehu (2) @@ -13344,11 +13450,11 @@ LovisaKessler (2) - - Petrolekas, Luke (2) + + LubomyrWalden (2) @@ -13358,11 +13464,11 @@ Lukasjelinek (2) - - Lupp (2) + + LynnForbes3 (2) @@ -13372,11 +13478,11 @@ M42 (2) - - Mărăşoiu, Mariana (2) + + MZNBelendndq (2) @@ -13386,11 +13492,11 @@ MabelleStanley (2) - - MadisonDarnell (2) + + MagdaleneOneal (2) @@ -13400,11 +13506,11 @@ MagnoliaParsons (2) - - Manebule (2) + + Mangat veer sagar (2) @@ -13414,11 +13520,11 @@ MarMai (2) - - MarchCourtney (2) + + Marcinz (2) @@ -13428,11 +13534,11 @@ MargeretRiley (2) - - MarillaMarsh7 (2) + + Marius (2) @@ -13442,11 +13548,11 @@ MarthaBright4 (2) - - MartinPC (2) + + MateuszDominguez (2) @@ -13456,11 +13562,11 @@ Mazuritz (2) - - Mbemidio (2) + + Meghanmcfadden15 (2) @@ -13470,11 +13576,11 @@ Merchantbusiness (2) - - Kepplinger, Martin (2) + + MerleGlass6 (2) @@ -13484,11 +13590,11 @@ Mgiri (2) - - Michaelx (2) + + Michal.p (2) @@ -13498,11 +13604,11 @@ Michiel (2) - - Mifritscher (2) + + MikeyZ (2) @@ -13512,11 +13618,11 @@ Mind4z (2) - - MinervaLuna8 (2) + + Mitcoes (2) @@ -13526,11 +13632,11 @@ Mklever (2) - - Lechner, Marco (2) + + Mloiseleur (2) @@ -13540,11 +13646,11 @@ Mnsoto (2) - - Mordocai (2) + + MorganJohnstone (2) @@ -13554,11 +13660,11 @@ Mst0 (2) - - Mttza1 (2) + + Musicstave (2) @@ -13568,11 +13674,11 @@ Nathansen, Martin (2) - - Mzalewski (2) + + Nacerix (2) @@ -13582,11 +13688,11 @@ NealEspinoza6 (2) - - Nestor (2) + + NettaHurd9 (2) @@ -13596,11 +13702,11 @@ NewtonZuniga9 (2) - - Nishino, Daisuke (2) + + NicholasLanier (2) @@ -13610,11 +13716,11 @@ NinaLam6 (2) - - Noirin (2) + + NoricumArthur (2) @@ -13624,11 +13730,11 @@ NovemberVogel (2) - - Nsharifi (2) + + Nuclearbob (2) @@ -13638,11 +13744,11 @@ OUPS (2) - - Oashnic (2) + + Odalcet (2) @@ -13652,11 +13758,11 @@ Oiaohm (2) - - OlaPost6 (2) + + OlieBooth3 (2) @@ -13666,11 +13772,11 @@ OnopriyBrandon (2) - - OrlandoArellano (2) + + OscarMeredith (2) @@ -13680,11 +13786,11 @@ Paolobenve (2) - - Pascaje (2) + + Paultrojahn (2) @@ -13694,11 +13800,11 @@ Percherie (2) - - PercherskySanford (2) + + Senna Tschudin, Peter (2) @@ -13708,11 +13814,11 @@ Phil.davis (2) - - Szelat, Phillip (2) + + Pierre (2) @@ -13722,11 +13828,11 @@ Pitonyak (2) - - Pkst (2) + + PolishHungarianSharp (2) @@ -13736,11 +13842,11 @@ PragueBergman (2) - - Pulsifer (2) + + R.Yu. (2) @@ -13750,11 +13856,11 @@ Rbecke (2) - - ReeseShepherd (2) + + ReginaldMcgraw (2) @@ -13764,11 +13870,11 @@ RetaStern5 (2) - - RhodaMackey3 (2) + + RiceBurger3 (2) @@ -13778,11 +13884,11 @@ Rmarquardt (2) - - Roadrunner (2) + + RollandHannah (2) @@ -13792,11 +13898,11 @@ RosannaPaul7 (2) - - RosariaLampungm (2) + + RoyFokker (2) @@ -13806,11 +13912,11 @@ Ryan (2) - - Sagar.libo (2) + + Sahasranaman M S (2) @@ -13820,11 +13926,11 @@ SamBenavides5 (2) - - Sankarshan (2) + + SavinaShaffer (2) @@ -13834,11 +13940,11 @@ Seanyoung (2) - - SebastianNorth (2) + + Sebutler (2) @@ -13848,11 +13954,11 @@ Sfeuser (2) - - Sgrotz (2) + + Shaforostoff (2) @@ -13862,11 +13968,11 @@ Shaun.schutte (2) - - Shitamo (2) + + SidneyArredondo (2) @@ -13876,11 +13982,11 @@ Silwol (2) - - Simplecontrast (2) + + SlavicNapier8 (2) @@ -13890,11 +13996,11 @@ Soothsilver (2) - - Spledger (2) + + Sshelagh (2) @@ -13904,11 +14010,11 @@ Ssorgatem (2) - - StaciBorthwick (2) + + Stappers (2) @@ -13918,11 +14024,11 @@ Stephan66 (2) - - Steveo o (2) + + StillSven (2) @@ -13932,11 +14038,11 @@ Sturm (2) - - Sungkhum (2) + + Superurbi (2) @@ -13946,11 +14052,11 @@ Sven.fischer.de (2) - - Swazmo (2) + + Sydbarrett74 (2) @@ -13960,11 +14066,11 @@ Tauon (2) - - Techal (2) + + Teelittle (2) @@ -13974,11 +14080,11 @@ Teresavillegas1 (2) - - TheaGallardo8 (2) + + TheodoseyPeralta (2) @@ -13988,11 +14094,11 @@ Thomase (2) - - Thomeck (2) + + Thorongil (2) @@ -14002,11 +14108,11 @@ Timeshifter (2) - - Timj (2) + + TimothyChilds (2) @@ -14016,11 +14122,11 @@ Tomkeb (2) - - Tomrobert87 (2) + + TressieCulver (2) @@ -14030,11 +14136,11 @@ TuMadre (2) - - Isnard, Timothée (2) + + Tux40000 (2) @@ -14044,11 +14150,11 @@ Unknown 32 (2) - - Usik64 (2) + + ValessioBrito (2) @@ -14058,11 +14164,11 @@ Dhall, Varun (2) - - VasylynaKendall (2) + + VerneDodd5 (2) @@ -14072,11 +14178,11 @@ VeronicaGrimes (2) - - Viper550 (2) + + VirginArredondo (2) @@ -14086,11 +14192,11 @@ VladimirPrince (2) - - VladislavA (2) + + Volker (2) @@ -14100,11 +14206,11 @@ Vossman (2) - - WaclawaSavage (2) + + WalentynaPatrick (2) @@ -14114,11 +14220,11 @@ WarrenChristian (2) - - WashingtonOakley (2) + + Watermelons (2) @@ -14128,11 +14234,11 @@ Wi24rd (2) - - WikiImporter (2) + + WilhelminaEaton (2) @@ -14142,11 +14248,11 @@ Wirelessben (2) - - Wkn (2) + + Wulei (2) @@ -14156,11 +14262,11 @@ Yalda (2) - - Yaw (2) + + ZiriaKo (2) @@ -14170,11 +14276,11 @@ 流星依旧 (2) - - 29jm (1) + + A H (1) @@ -14184,11 +14290,11 @@ AJW (1) - - AaronPeterson (1) + + Abdulaziz A Alayed (1) @@ -14198,11 +14304,11 @@ Acagastya (1) - - Kepenek, Ahmet Can (1) + + AdalberDesailll (1) @@ -14212,11 +14318,11 @@ Aevora (1) - - Agradecido (1) + + Ainurshakirov (1) @@ -14226,11 +14332,11 @@ Sudheer Kumar, Akshit (1) - - Alagris (1) + + Alavec (1) @@ -14240,11 +14346,11 @@ Aleks (1) - - Aleksio Kverka (1) + + Henrie, Alex (1) @@ -14254,11 +14360,11 @@ Alex38-68 (1) - - Alex80 (1) + + AlexF (1) @@ -14268,11 +14374,11 @@ AlexPS (1) - - Alexandrevicenzi (1) + + Alexandri (1) @@ -14282,11 +14388,11 @@ Alexis 0071 (1) - - Alexis Wilke (1) + + Alexnivan (1) @@ -14296,11 +14402,11 @@ Aleyna.sare (1) - - Ali (1) + + AlphonsDen (1) @@ -14310,11 +14416,11 @@ Alverne (1) - - Amacater (1) + + Andarilhobotto (1) @@ -14324,11 +14430,11 @@ AndreasEk (1) - - AndreasK (1) + + AndreasNeudecker (1) @@ -14338,11 +14444,11 @@ Andriazdk2177 (1) - - AniVar (1) + + Anjilajoli (1) @@ -14352,11 +14458,11 @@ AntoineVe (1) - - Antonello Lobianco (1) + + AntoniePonder (1) @@ -14366,11 +14472,11 @@ Apfelsaft (1) - - Priyadarshi, Apurva (1) + + Arekm (1) @@ -14380,11 +14486,11 @@ ArielleWx (1) - - Arkonide (1) + + Armandos (1) @@ -14394,11 +14500,11 @@ Arnoldu (1) - - Teigseth, Arno (1) + + Artintal (1) @@ -14408,11 +14514,11 @@ Arulm (1) - - Asiersar (1) + + Asselbornmauro (1) @@ -14422,11 +14528,11 @@ Atpnguyen (1) - - Tang, Audrey (1) + + AundreaPqf (1) @@ -14436,11 +14542,11 @@ Ayoooub (1) - - B3t (1) + + Bailiwick (1) @@ -14450,11 +14556,11 @@ Bami (1) - - Bandera (1) + + BarryLovegrove (1) @@ -14464,11 +14570,11 @@ Bayramcicek (1) - - Bburak (1) + + Bckurera (1) @@ -14478,11 +14584,11 @@ BernardHannafor (1) - - Bestdating (1) + + Beyoken (1) @@ -14492,11 +14598,11 @@ Bezzy (1) - - Bgloberman (1) + + Bgranados (1) @@ -14506,11 +14612,11 @@ BillyBurke (1) - - Biofool (1) + + Bittin (1) @@ -14520,11 +14626,11 @@ Bkg2018 (1) - - BlakeGartrell (1) + + BlancheBelstead (1) @@ -14534,11 +14640,11 @@ Blandyna (1) - - Boboo (1) + + Bolo (1) @@ -14548,11 +14654,11 @@ Bortis (1) - - Sowden, Brad (1) + + BrentHawthorne (1) @@ -14562,11 +14668,11 @@ Brinzing, Oliver (1) - - BroderiHolyman (1) + + BryceBrassell (1) @@ -14576,11 +14682,11 @@ Budo (1) - - Burcin (1) + + Bureken (1) @@ -14590,11 +14696,11 @@ Bwi (1) - - Bzsolt (1) + + BáthoryPéter (1) @@ -14604,11 +14710,11 @@ CalebWgypcu (1) - - Paul, Cameron (1) + + Capira (1) @@ -14618,11 +14724,11 @@ Carlos (1) - - Carlos.gilaranz (1) + + Castarco (1) @@ -14632,11 +14738,11 @@ CedricQ73ktehvp (1) - - Cesera (1) + + ChantalWalker (1) @@ -14646,11 +14752,11 @@ Chatjoe (1) - - Chmilblick (1) + + Beauzée-Luyssen, Hugo (1) @@ -14660,11 +14766,11 @@ Chrism (1) - - Christoph.herzog (1) + + Chrlutz (1) @@ -14674,11 +14780,11 @@ CiaraLockie (1) - - Ciriaco (1) + + Classieur (1) @@ -14688,11 +14794,11 @@ Cleitongalvao (1) - - Clem (1) + + CletaValentino (1) @@ -14702,11 +14808,11 @@ Company (1) - - Cora17 (1) + + Corsolibreoffice (1) @@ -14716,11 +14822,11 @@ Cpatrick08 (1) - - Cpinedar (1) + + Cpmipn (1) @@ -14730,11 +14836,11 @@ Csanyipal (1) - - Csongorhalmai (1) + + Css17 (1) @@ -14744,11 +14850,11 @@ Cycpe950609 (1) - - DaisieDavison (1) + + Danichocolate (1) @@ -14758,11 +14864,11 @@ Dar18proore (1) - - Darianospb (1) + + DarylAlcantar (1) @@ -14772,11 +14878,11 @@ Dave (1) - - DavidDyck (1) + + Davidmichel (1) @@ -14786,11 +14892,11 @@ Dbojan (1) - - Di Marco, Daniel (1) + + DeShark (1) @@ -14800,11 +14906,11 @@ Ray, Debarshi (1) - - DeborahW18 (1) + + Decs75 (1) @@ -14814,11 +14920,11 @@ Deragon (1) - - Dezsiszabi (1) + + Kis-Ádám, László (1) @@ -14828,11 +14934,11 @@ Dhiren (1) - - Dianasedlak (1) + + Dirgita (1) @@ -14842,11 +14948,11 @@ Diver (1) - - Do Nhu Vy (1) + + DocuFree (1) @@ -14856,11 +14962,11 @@ Dominuk (1) - - Donadel (1) + + DoreenDuell (1) @@ -14870,22 +14976,25 @@ Drizamanuber (1) - - Drlandi (1) + + Drtimwright (1) + Dschulten (1) + + Dusek (1) Dxider (1) - + Eardeleanu (1) @@ -14899,7 +15008,7 @@ EdgardoRios (1) - + Edsonlead (1) @@ -14913,7 +15022,7 @@ Efegurkan (1) - + Brill, Christoph (1) @@ -14927,7 +15036,7 @@ ElahiMohammad (1) - + Elliot1415 (1) @@ -14941,7 +15050,7 @@ Emad (1) - + Emanuele.gissi (1) @@ -14955,7 +15064,7 @@ Ennael (1) - + Erasmo (1) @@ -14969,7 +15078,7 @@ ErickRijoJr (1) - + Ernsttremel (1) @@ -14983,7 +15092,7 @@ Esben aaberg (1) - + EstelaAWTxiu (1) @@ -14997,7 +15106,7 @@ Eulerian (1) - + Evfool (1) @@ -15011,7 +15120,7 @@ Falatooni (1) - + Falcao (1) @@ -15025,7 +15134,7 @@ Farlfr (1) - + FarzanehSarafraz (1) @@ -15039,7 +15148,7 @@ Fenchi (1) - + FerminAndrade (1) @@ -15053,7 +15162,7 @@ Flaviodegodoi (1) - + Flirtwomens (1) @@ -15067,7 +15176,7 @@ Fourdollars (1) - + Francesco (1) @@ -15081,7 +15190,7 @@ Manas Joshi (1) - + Gabix (1) @@ -15095,7 +15204,7 @@ Gabrielezorzi (1) - + Ganton (1) @@ -15109,7 +15218,7 @@ GeeZ (1) - + Gekacheka (1) @@ -15123,7 +15232,7 @@ van Valkenhoef, Gert (1) - + Houston, Gary (1) @@ -15137,7 +15246,7 @@ Gmeijssen (1) - + Goldensgui (1) @@ -15151,7 +15260,7 @@ GrantCelley (1) - + Grass-tree (1) @@ -15165,7 +15274,7 @@ Gstein (1) - + Guhde (1) @@ -15173,16 +15282,13 @@ Guillaume (1) - Gwidion (1) - - Gxyd (1) - - H Wettlaufer (1) + + HFujimaki (1) @@ -15192,11 +15298,11 @@ HLGZorawdi (1) - - Haggai (1) + + Hagos (1) @@ -15206,11 +15312,11 @@ Hamkins (1) - - Hapeck (1) + + Hasinasi (1) @@ -15220,11 +15326,11 @@ Rui Wang (1) - - Hermeli2856 (1) + + HessnovTHR44 (1) @@ -15234,11 +15340,11 @@ Heyheyitshay (1) - - Hfischer (1) + + Hillrich (1) @@ -15248,11 +15354,11 @@ Hitomi t (1) - - Hkdocholid (1) + + Hlavaty, Tomas (1) @@ -15262,11 +15368,11 @@ K, Akshit (1) - - Honza.havlicek (1) + + Hopman (1) @@ -15276,11 +15382,11 @@ Hornmichaels (1) - - Hosiryuhosi (1) + + Hriostat (1) @@ -15290,11 +15396,11 @@ Hwoehrle (1) - - Ialbors (1) + + Ian (1) @@ -15304,11 +15410,11 @@ Ianjo (1) - - Iantheprogrammer (1) + + IbraM (1) @@ -15318,11 +15424,11 @@ Ida (1) - - Gilham, Ian (1) + + Igorizyumin (1) @@ -15332,11 +15438,11 @@ Iosonja (1) - - Şendur, İrem (1) + + Irene (1) @@ -15346,11 +15452,11 @@ IrvinFunkw (1) - - Ismael (1) + + IvanP (1) @@ -15360,11 +15466,11 @@ JJ2020 (1) - - JK2308 (1) + + Jab (1) @@ -15374,11 +15480,11 @@ JaimeS (1) - - Jamil (1) + + JanEnEm (1) @@ -15388,11 +15494,11 @@ Jani (1) - - Jano (1) + + Janvlug (1) @@ -15402,11 +15508,11 @@ Jazzon (1) - - Jcdericco (1) + + Chaffraix, Julien (1) @@ -15416,11 +15522,11 @@ JeanAmessdvaei (1) - - JeanMcPhillamy (1) + + JefferyMackenna (1) @@ -15430,11 +15536,11 @@ Jeongkyu (1) - - Jerdum (1) + + Bicha, Jeremy (1) @@ -15444,11 +15550,11 @@ JessicaParker (1) - - Gao, Qiwen (1) + + JestineNww (1) @@ -15458,11 +15564,11 @@ Jflory7 (1) - - Bruhn, Jan-Henrik (1) + + Jinocvla (1) @@ -15472,11 +15578,11 @@ Jj151515 (1) - - Jmarchn (1) + + Joachim (1) @@ -15486,11 +15592,11 @@ Joaofernando (1) - - JoelH (1) + + JohnTheHuman (1) @@ -15500,11 +15606,11 @@ JomarSilva (1) - - Jonatanpc8 (1) + + JonelleFritz (1) @@ -15514,11 +15620,11 @@ JordanS (1) - - Jorge Rodríguez Fonseca (1) + + Jorgemendes (1) @@ -15528,11 +15634,11 @@ Joselaurian (1) - - Joshun (1) + + José Eduardo (1) @@ -15542,487 +15648,487 @@ Jpl (1) - - Clarke, James (1) - - Jsbueno (1) - + + JudeMcCafferty (1) Juergen (1) - - JuliannSnider (1) Picca, Juan (1) + + Jwcampbell (1) Dubrulle, Kevin (1) - - Kader (1) Kapoorsahab (1) + + KatjaG (1) Bhat, Kishor (1) - - Keith Long (1) Kenb (1) + + Kenneth.venken (1) Kenton3255 (1) - - Kiyotaka Nishibori (1) Kasper, Kacper (1) + + Kkremitzki (1) Knobo (1) - - Koeleman (1) KoffeinFlummi (1) + + Kosmous (1) KourtneNester (1) - - Kr1shna (1) Krotow (1) + + Kumar, Thangavel (1) Kying (1) - - LKPSharylptwsdo (1) LMKemm (1) + + LOFF (1) LaPingvino (1) - - Laskov (1) LatoshaZnu (1) + + LaverneNavarret (1) LavinaVandermar (1) - - Learner (1) Librestez54 (1) + + Likoski (1) LillieNlowccx (1) - - Lineinthesand (1) Literacyglenys (1) + + Litishia (1) Liturgist (1) - - Lj LO (1) Llalllal1 (1) + + Lnjuanj (1) Lobillo (1) - - Lonaowna (1) Lopp Rs (1) + + Lorne (1) Lplatypus (1) - - Luca (1) Lucas Filho (1) + + LudieNutter (1) Luiz Cláudio (1) - - Luiz Rezende (1) Luke (1) + + M.sacharewicz (1) M1ndfr3ak (1) - - ME-ON1 (1) MJW (1) + + Maahicool (1) Mabel7997eelu (1) - - Maemst (1) Magicienap (1) + + Magmag (1) Mahdiekrani (1) - - Mahmudul (1) Maliuta (1) + + Manveru1986 (1) Rizzolo, Mattia (1) - - MarcK (1) MarcelProut (1) + + MarcoZ (1) Biscaro, Marco (1) - - Marcosalex (1) Marcosps (1) + + MargoBergman (1) MarianaConnell (1) - - Mariano Gaudix (1) MarkWielaaard (1) + + Markcoomes (1) Markzog21 (1) - - MarthaWaterman (1) Martinvanzijl (1) + + Marwan (1) Maryanndefo91 (1) - - Masaki tamakoshi (1) Masakim-icraft (1) + + Massao (1) Mastizada (1) - - Matsuura (1) MattTheGeek (1) + + Campanelli, Matteo (1) Matěj (1) - - Mau (1) MauroTrevisan (1) + + MavropaliasG (1) Maxjf1 (1) - - Mazinho (1) Bechler, Moritz (1) + + Mblume3 (1) Doležel, Marek (1) - - Megan44Dgxg (1) Melikeyurtoglu (1) + + Menturi (1) MeskoBalazs (1) - - Mete0r (1) Mhaehnel (1) + + Mhcrnl (1) Mhenriday (1) - - Mibm123 (1) Michaelwood (1) + + Michka B (1) Midomidi2013 (1) - - MiguelKastner (1) Miguelteixeira (1) + + Miguelverdu (1) Mike-y (1) - - MikeLittle (1) Mikolg (1) + + MilagroWilkerso (1) Milanbv (1) - - Miles (1) Minarja4 (1) + + Mirsad (1) Miurahr (1) - - Mixer (1) Mixstah (1) + + Mlager (1) Mmeof (1) - - Moaz eldfrawy (1) Moberg (1) + + Mohammedzalta (1) + Mohsenzl (1) + + Monikayadav (1) - - Morenonatural (1) + + Soini, Mox (1) @@ -16032,11 +16138,11 @@ Muhammadsufyanzainalabidin (1) - - Mw (1) + + Myan (1) @@ -16046,11 +16152,11 @@ N3rd4i (1) - - NEOhidra (1) + + NNe8Lx2gc (1) @@ -16060,11 +16166,11 @@ Nattu (1) - - Ncaio (1) + + Nedrichards (1) @@ -16074,11 +16180,11 @@ Neteler (1) - - Nevanos (1) + + Ngoswami (1) @@ -16088,11 +16194,11 @@ Nilss (1) - - Nithin.padavu (1) + + Ngo, Minh (1) @@ -16102,11 +16208,11 @@ Norty (1) - - Notafish (1) + + NotesTracker (1) @@ -16116,11 +16222,11 @@ Norbert X (1) - - Nurohman (1) + + Oclei (1) @@ -16130,11 +16236,11 @@ Oiouitt (1) - - Okusi (1) + + Olr (1) @@ -16144,11 +16250,11 @@ Omerta (1) - - Onurkucuk67 (1) + + Oosterkamp (1) @@ -16158,11 +16264,11 @@ Sezen, Hunter (1) - - Orrd (1) + + Osoitz (1) @@ -16172,11 +16278,11 @@ Oui (1) - - Ouyang.leyan (1) + + Anderson, Owen (1) @@ -16186,11 +16292,11 @@ Ozpoz (1) - - Öztürk, Emre (1) + + PBsoft (1) @@ -16200,11 +16306,11 @@ Padenton (1) - - Paintdog (1) + + PamalaDorsch (1) @@ -16214,11 +16320,11 @@ Papesky (1) - - Passerpunt (1) + + Pastim (1) @@ -16228,11 +16334,11 @@ Paulolima (1) - - Pelambrera (1) + + PelinKuran (1) @@ -16242,11 +16348,11 @@ Nowee, Peter (1) - - Vorel, Petr (1) + + Pharmankur (1) @@ -16256,11 +16362,11 @@ Pherjung (1) - - PhilDur (1) + + Philhart (1) @@ -16270,11 +16376,11 @@ Philipp.weissenbacher (1) - - Philippe43 (1) + + Krylov, Phil (1) @@ -16284,11 +16390,11 @@ Paraiso, Joan (1) - - Pi (1) + + Piero (1) @@ -16298,11 +16404,11 @@ Pietro.caballeri (1) - - Pilavi (1) + + Piratu (1) @@ -16312,11 +16418,11 @@ Pjotr (1) - - Pkavinda (1) + + Plastique (1) @@ -16326,11 +16432,11 @@ Moscu, Alexandru (1) - - PopularOutcast (1) + + Por (1) @@ -16340,11 +16446,11 @@ Prosper (1) - - Psauthor (1) + + Psmits (1) @@ -16354,11 +16460,11 @@ Vidhey Pv (1) - - Pwz266266 (1) + + Illarionov, Arkadiy (1) @@ -16368,11 +16474,11 @@ Qtwallaert (1) - - Quick8130 (1) + + Quickbooktech (1) @@ -16382,11 +16488,11 @@ Rahuldeshmukh101 (1) - - Rainy (1) + + Ramonturner (1) @@ -16396,11 +16502,11 @@ Ratias (1) - - Rcampbelllaos (1) + + RebeccaToscano (1) @@ -16410,11 +16516,11 @@ RexRTEJnlzus (1) - - Rholler (1) + + Rich (1) @@ -16424,11 +16530,11 @@ RickieHpejt (1) - - Riessmi (1) + + Rif (1) @@ -16438,11 +16544,11 @@ Rimas (1) - - Ringlerloje (1) + + Rion (1) @@ -16452,11 +16558,11 @@ Rizobix (1) - - Kondratenko, Rostislav (1) + + Robert Wetzlmayr (1) @@ -16466,11 +16572,11 @@ Robustchao (1) - - Rockers (1) + + Rodney78 (1) @@ -16480,11 +16586,11 @@ Deshmukh, Rohit (1) - - Rombert (1) + + Ron1 (1) @@ -16494,11 +16600,11 @@ Ronny (1) - - Roscoe5731 (1) + + Rosemarie (1) @@ -16508,11 +16614,11 @@ Rsedak (1) - - RuleAndLine (1) + + Rvr (1) @@ -16522,11 +16628,11 @@ ONODERA, Ryo (1) - - SallyMorales (1) + + Samanicute (1) @@ -16536,11 +16642,11 @@ Tygier, Sam (1) - - Sandeeps (1) + + Sanipache (1) @@ -16550,11 +16656,11 @@ Sariyar (1) - - Sbar1 (1) + + Sautier, Louis (1) @@ -16564,11 +16670,11 @@ Scno (1) - - Sctenebro (1) + + Sdc (1) @@ -16578,11 +16684,11 @@ Senopen (1) - - Serdarot5 (1) + + Seriouslaughbore (1) @@ -16592,11 +16698,11 @@ ShaynaMan (1) - - SherylMillingto (1) + + Shore, Shimon (1) @@ -16606,11 +16712,11 @@ Chaurasia, Shobhit (1) - - Shortblack (1) + + ShyamPraveenSingh (1) @@ -16620,11 +16726,11 @@ Silvestr (1) - - Silvia (1) + + Simonbr (1) @@ -16634,11 +16740,11 @@ Smalalur (1) - - Socialmitchell (1) + + Son Sonson (1) @@ -16648,11 +16754,11 @@ Sovichet (1) - - SpeedyGonsales (1) + + Sphericalhorse (1) @@ -16662,11 +16768,11 @@ Srijanani (1) - - StefanU (1) + + Stewart75H (1) @@ -16676,11 +16782,11 @@ StuartHalliday (1) - - Subhash (1) + + Supportex (1) @@ -16690,11 +16796,11 @@ Svalo (1) - - SvenHornung (1) + + Svend-ev (1) @@ -16704,11 +16810,11 @@ Svtlichnijj (1) - - Sébastien C. (1) + + T-otsuki (1) @@ -16718,11 +16824,11 @@ Talueses (1) - - Tanguy k (1) + + Thanakanok, Tantai (1) @@ -16732,11 +16838,11 @@ Techsquirrel (1) - - TeganCreswick (1) + + Tegas (1) @@ -16746,11 +16852,11 @@ Testsflirt (1) - - The Magpie (1) + + ThePokehach (1) @@ -16760,11 +16866,11 @@ Thom (1) - - Thor574 (1) + + ThudDriver (1) @@ -16774,11 +16880,11 @@ Tigerbeard (1) - - Tilt (1) + + Tmongkol (1) @@ -16788,11 +16894,11 @@ Tomasdd (1) - - TomofumiYagi (1) + + Viehmann, Thomas (1) @@ -16802,11 +16908,11 @@ Transcend (1) - - Trebledcliff (1) + + TrevorPfe (1) @@ -16816,11 +16922,11 @@ Ttv20 (1) - - Tuliouel (1) + + Tuping (1) @@ -16830,11 +16936,11 @@ Jain, Umang (1) - - Udit Sharma (1) + + Shahid, Umair (1) @@ -16844,11 +16950,11 @@ Unho (1) - - UrmasD (1) + + UrsulaHorrell (1) @@ -16858,11 +16964,11 @@ VIPSylar (1) - - VPUJamikajklq (1) + + Vandenoever (1) @@ -16872,11 +16978,11 @@ Vera Cavalcante (1) - - VernaSchulze (1) + + Vincentvikram (1) @@ -16886,11 +16992,11 @@ Virus009 (1) - - WOBFriedauk (1) + + Wadrian (1) @@ -16900,11 +17006,11 @@ Wastl (1) - - Waynemcl (1) + + Webistrator (1) @@ -16914,11 +17020,11 @@ Wes (1) - - Westantenna (1) + + Wezchlebaty (1) @@ -16928,11 +17034,11 @@ William Avery (1) - - Williewortel (1) + + Klausner, Thomas (1) @@ -16942,11 +17048,11 @@ Tjong, Winston Min (1) - - XSXKristin (1) + + Baudin, Lucas (1) @@ -16956,11 +17062,11 @@ Xsdcfghjk (1) - - Suhail Alkowaileet (1) + + XtinaS (1) @@ -16970,11 +17076,11 @@ Xuenhua (1) - - Yangyiji (1) + + YaroslavRutledge (1) @@ -16984,11 +17090,11 @@ Yeliztaneroglu (1) - - Desai, Yogesh (1) + + Yoshiharu Kawai (1) @@ -16998,11 +17104,11 @@ YvanM (1) - - Yy y ja jp (1) + + Bölöny, Zsolt (1) @@ -17012,20 +17118,21 @@ Zangune (1) - - Zibi (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.3.4/sc/CppunitTest_sc_uicalc.mk libreoffice-7.3.5/sc/CppunitTest_sc_uicalc.mk --- libreoffice-7.3.4/sc/CppunitTest_sc_uicalc.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/CppunitTest_sc_uicalc.mk 2022-07-15 19:12:51.000000000 +0000 @@ -9,7 +9,10 @@ $(eval $(call gb_CppunitTest_CppunitTest,sc_uicalc)) -$(eval $(call gb_CppunitTest_use_external,sc_uicalc,boost_headers)) +$(eval $(call gb_CppunitTest_use_externals,sc_uicalc, \ + boost_headers \ + mdds_headers \ +)) $(eval $(call gb_CppunitTest_add_exception_objects,sc_uicalc, \ sc/qa/unit/uicalc/uicalc \ diff -Nru libreoffice-7.3.4/sc/inc/document.hxx libreoffice-7.3.5/sc/inc/document.hxx --- libreoffice-7.3.4/sc/inc/document.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/inc/document.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -1912,7 +1912,7 @@ * specified height. */ SCROW GetRowForHeight( SCTAB nTab, sal_uLong nHeight ) const; - sal_uLong GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, double fScale, const sal_uLong* pnMaxHeight = nullptr ) const; + sal_uLong GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, double fScale ) const; SC_DLLPUBLIC sal_uLong GetColOffset( SCCOL nCol, SCTAB nTab, bool bHiddenAsZero = true ) const; SC_DLLPUBLIC sal_uLong GetRowOffset( SCROW nRow, SCTAB nTab, bool bHiddenAsZero = true ) const; diff -Nru libreoffice-7.3.4/sc/inc/listenercalls.hxx libreoffice-7.3.5/sc/inc/listenercalls.hxx --- libreoffice-7.3.4/sc/inc/listenercalls.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/inc/listenercalls.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -19,7 +19,7 @@ #pragma once -#include +#include #include #include @@ -48,7 +48,9 @@ class ScUnoListenerCalls { private: - ::std::vector aEntries; + // Must be list, not vector, to not invalidate iterators, see + // ExecuteAndClear() implementation. + ::std::list aEntries; public: ScUnoListenerCalls(); diff -Nru libreoffice-7.3.4/sc/inc/table.hxx libreoffice-7.3.5/sc/inc/table.hxx --- libreoffice-7.3.4/sc/inc/table.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/inc/table.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -831,7 +831,7 @@ sal_uLong GetColWidth( SCCOL nStartCol, SCCOL nEndCol ) const; sal_uInt16 GetRowHeight( SCROW nRow, SCROW* pStartRow, SCROW* pEndRow, bool bHiddenAsZero = true ) const; sal_uLong GetRowHeight( SCROW nStartRow, SCROW nEndRow, bool bHiddenAsZero = true ) const; - sal_uLong GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, double fScale, const sal_uLong* pnMaxHeight = nullptr ) const; + sal_uLong GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, double fScale ) const; sal_uLong GetColOffset( SCCOL nCol, bool bHiddenAsZero = true ) const; sal_uLong GetRowOffset( SCROW nRow, bool bHiddenAsZero = true ) const; Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sc/qa/unit/data/xlsx/tdf148820.xlsx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sc/qa/unit/data/xlsx/tdf148820.xlsx differ diff -Nru libreoffice-7.3.4/sc/qa/unit/subsequent_export_test2.cxx libreoffice-7.3.5/sc/qa/unit/subsequent_export_test2.cxx --- libreoffice-7.3.4/sc/qa/unit/subsequent_export_test2.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/qa/unit/subsequent_export_test2.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -216,6 +216,7 @@ void testTdf142578(); void testTdf145059(); void testTdf130104_XLSXIndent(); + void testTdf148820(); CPPUNIT_TEST_SUITE(ScExportTest2); @@ -331,6 +332,7 @@ CPPUNIT_TEST(testTdf142578); CPPUNIT_TEST(testTdf145059); CPPUNIT_TEST(testTdf130104_XLSXIndent); + CPPUNIT_TEST(testTdf148820); CPPUNIT_TEST_SUITE_END(); @@ -3112,6 +3114,37 @@ xDocSh->DoClose(); } + +void ScExportTest2::testTdf148820() +{ + ScDocShellRef xDocSh = loadDoc(u"tdf148820.", FORMAT_XLSX); + std::shared_ptr pXPathFile + = ScBootstrapFixture::exportTo(&(*xDocSh), FORMAT_XLSX); + xmlDocUniquePtr pSheet + = XPathHelper::parseExport(pXPathFile, m_xSFactory, "xl/worksheets/sheet1.xml"); + CPPUNIT_ASSERT(pSheet); + + sal_Int32 nDxfIdCondFormatFirst + = getXPath(pSheet, "/x:worksheet/x:conditionalFormatting[1]/x:cfRule", "dxfId").toInt32() + + 1; + sal_Int32 nDxfIdCondFormatLast + = getXPath(pSheet, "/x:worksheet/x:conditionalFormatting[20]/x:cfRule", "dxfId").toInt32() + + 1; + + xmlDocUniquePtr pStyles = XPathHelper::parseExport(pXPathFile, m_xSFactory, "xl/styles.xml"); + CPPUNIT_ASSERT(pStyles); + + OString sDxfCondFormatXPath("/x:styleSheet/x:dxfs/x:dxf[" + + OString::number(nDxfIdCondFormatFirst) + + "]/x:fill/x:patternFill/x:bgColor"); + assertXPath(pStyles, sDxfCondFormatXPath, "rgb", "FF53B5A9"); + sDxfCondFormatXPath + = OString("/x:styleSheet/x:dxfs/x:dxf[" + OString::number(nDxfIdCondFormatLast) + + "]/x:fill/x:patternFill/x:bgColor"); + assertXPath(pStyles, sDxfCondFormatXPath, "rgb", "FFA30000"); + + xDocSh->DoClose(); +} CPPUNIT_TEST_SUITE_REGISTRATION(ScExportTest2); diff -Nru libreoffice-7.3.4/sc/qa/unit/ucalc_formula.cxx libreoffice-7.3.5/sc/qa/unit/ucalc_formula.cxx --- libreoffice-7.3.4/sc/qa/unit/ucalc_formula.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/qa/unit/ucalc_formula.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -7363,8 +7363,8 @@ // have to be adapted. aPos.IncRow(); m_pDoc->SetString( aPos, "=SUM(B1:Sheet2.B2:Sheet3.B3)"); - ASSERT_FORMULA_EQUAL(*m_pDoc, aPos, "SUM(#REF!.B2:#REF!.B3)", "Wrong formula."); - CPPUNIT_ASSERT_EQUAL( OUString("#REF!"), m_pDoc->GetString(aPos)); + ASSERT_FORMULA_EQUAL(*m_pDoc, aPos, "SUM(b1:sheet2.b2:Sheet3.B3)", "Wrong formula."); + CPPUNIT_ASSERT_EQUAL( OUString("#NAME?"), m_pDoc->GetString(aPos)); aPos.IncRow(); m_pDoc->SetString( aPos, "=SUM(Sheet1.B1:Sheet3.B2:Sheet2.B3)"); Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sc/qa/unit/uicalc/data/tdf149503.xls and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sc/qa/unit/uicalc/data/tdf149503.xls differ diff -Nru libreoffice-7.3.4/sc/qa/unit/uicalc/uicalc.cxx libreoffice-7.3.5/sc/qa/unit/uicalc/uicalc.cxx --- libreoffice-7.3.4/sc/qa/unit/uicalc/uicalc.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/qa/unit/uicalc/uicalc.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -645,6 +646,26 @@ CPPUNIT_ASSERT_EQUAL(OUString(""), pDoc->GetString(ScAddress(0, 2, 0))); } +CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf149503) +{ + ScModelObj* pModelObj = createDoc("tdf149503.xls"); + ScDocument* pDoc = pModelObj->GetDocument(); + CPPUNIT_ASSERT(pDoc); + + dispatchCommand(mxComponent, ".uno:SelectAll", {}); + Scheduler::ProcessEventsToIdle(); + + dispatchCommand(mxComponent, ".uno:Cut", {}); + Scheduler::ProcessEventsToIdle(); + + // Without the fix in place, this test would have crashed here + dispatchCommand(mxComponent, ".uno:Paste", {}); + Scheduler::ProcessEventsToIdle(); + + ScDPCollection* pDPs = pDoc->GetDPCollection(); + CPPUNIT_ASSERT_EQUAL(size_t(1), pDPs->GetCount()); +} + // Inspired from testTdf117706, test columns instead of rows CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testMultiRangeCol) { diff -Nru libreoffice-7.3.4/sc/source/core/data/colorscale.cxx libreoffice-7.3.5/sc/source/core/data/colorscale.cxx --- libreoffice-7.3.4/sc/source/core/data/colorscale.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/colorscale.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -189,7 +189,7 @@ setListener(); if(rEntry.mpCell) { - mpCell.reset(new ScFormulaCell(*rEntry.mpCell, rEntry.mpCell->GetDocument(), rEntry.mpCell->aPos, ScCloneFlags::NoMakeAbsExternal)); + mpCell.reset(new ScFormulaCell(*rEntry.mpCell, *pDoc, rEntry.mpCell->aPos, ScCloneFlags::NoMakeAbsExternal)); mpCell->StartListeningTo( *pDoc ); mpListener.reset(new ScFormulaListener(mpCell.get())); if (mpFormat) @@ -540,8 +540,10 @@ double GetPercentile( const std::vector& rArray, double fPercentile ) { size_t nSize = rArray.size(); - size_t nIndex = static_cast(::rtl::math::approxFloor( fPercentile * (nSize-1))); - double fDiff = fPercentile * (nSize-1) - ::rtl::math::approxFloor( fPercentile * (nSize-1)); + double fFloor = ::rtl::math::approxFloor(fPercentile * (nSize-1)); + SAL_WARN_IF(fFloor < 0, "sc", "negative percentile"); + size_t nIndex = fFloor >= 0 ? static_cast(fFloor) : 0; + double fDiff = fPercentile * (nSize-1) - fFloor; std::vector::const_iterator iter = rArray.begin() + nIndex; if (fDiff == 0.0) return *iter; diff -Nru libreoffice-7.3.4/sc/source/core/data/documen4.cxx libreoffice-7.3.5/sc/source/core/data/documen4.cxx --- libreoffice-7.3.4/sc/source/core/data/documen4.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/documen4.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -306,13 +306,11 @@ *pCell, *this, ScAddress(nCol1, nRow1, rTab), ScCloneFlags::StartListening)); } - ScAddress aBasePos(nCol1, nRow1, nTab1); ScSingleRefData aRefData; aRefData.InitFlags(); - aRefData.SetColRel( true ); - aRefData.SetRowRel( true ); - aRefData.SetTabRel( true ); - aRefData.SetAddress(GetSheetLimits(), aBasePos, aBasePos); + aRefData.SetRelCol(0); + aRefData.SetRelRow(0); + aRefData.SetRelTab(0); // 2D matrix, always same sheet ScTokenArray aArr(*this); // consists only of one single reference token. formula::FormulaToken* t = aArr.AddMatrixSingleReference(aRefData); @@ -326,26 +324,21 @@ if (!pTab) continue; - if (nTab != nTab1) - { - aRefData.SetRelTab(nTab - aBasePos.Tab()); - *t->GetSingleRef() = aRefData; - } - - for (SCCOL nCol : GetColumnsRange(nTab1, nCol1, nCol2)) + for (SCCOL nCol : GetColumnsRange(nTab, nCol1, nCol2)) { + aRefData.SetRelCol(nCol1 - nCol); for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow) { if (nCol == nCol1 && nRow == nRow1) // Skip the base position. continue; - // Token array must be cloned so that each formula cell receives its own copy. - aPos = ScAddress(nCol, nRow, nTab); // Reference in each cell must point to the origin cell relative to the current cell. - aRefData.SetAddress(GetSheetLimits(), aBasePos, aPos); + aRefData.SetRelRow(nRow1 - nRow); *t->GetSingleRef() = aRefData; + // Token array must be cloned so that each formula cell receives its own copy. std::unique_ptr pTokArr(aArr.Clone()); + aPos = ScAddress(nCol, nRow, nTab); pCell = new ScFormulaCell(*this, aPos, *pTokArr, eGram, ScMatrixMode::Reference); pTab->SetFormulaCell(nCol, nRow, pCell); } diff -Nru libreoffice-7.3.4/sc/source/core/data/document.cxx libreoffice-7.3.5/sc/source/core/data/document.cxx --- libreoffice-7.3.4/sc/source/core/data/document.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/document.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -4226,7 +4226,7 @@ } sal_uLong ScDocument::GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, - SCTAB nTab, double fScale, const sal_uLong* pnMaxHeight ) const + SCTAB nTab, double fScale ) const { // faster for a single row if (nStartRow == nEndRow) @@ -4237,7 +4237,7 @@ return 0; if ( ValidTab(nTab) && nTab < static_cast(maTabs.size()) && maTabs[nTab] ) - return maTabs[nTab]->GetScaledRowHeight( nStartRow, nEndRow, fScale, pnMaxHeight ); + return maTabs[nTab]->GetScaledRowHeight( nStartRow, nEndRow, fScale); OSL_FAIL("wrong sheet number"); return 0; diff -Nru libreoffice-7.3.4/sc/source/core/data/dpobject.cxx libreoffice-7.3.5/sc/source/core/data/dpobject.cxx --- libreoffice-7.3.4/sc/source/core/data/dpobject.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/dpobject.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1022,7 +1022,16 @@ for (sal_Int32 i = 0; i < nCount; ++i) { - Reference xMember(xMembersIA->getByIndex(i), UNO_QUERY); + Reference xMember; + try + { + xMember = Reference(xMembersIA->getByIndex(i), UNO_QUERY); + } + catch (const container::NoSuchElementException&) + { + TOOLS_WARN_EXCEPTION("sc", "ScNameToIndexAccess getByIndex failed"); + } + ScDPLabelData::Member aMem; if (xMember.is()) diff -Nru libreoffice-7.3.4/sc/source/core/data/dpoutput.cxx libreoffice-7.3.5/sc/source/core/data/dpoutput.cxx --- libreoffice-7.3.4/sc/source/core/data/dpoutput.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/dpoutput.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1331,6 +1331,8 @@ if (nField < 0) break; + if (pColFields.size() < o3tl::make_unsigned(nField) + 1 ) + break; const uno::Sequence rSequence = pColFields[nField].maResult; if (!rSequence.hasElements()) break; @@ -1360,6 +1362,8 @@ if (nField < 0) break; + if (pRowFields.size() < o3tl::make_unsigned(nField) + 1 ) + break; const uno::Sequence rSequence = pRowFields[nField].maResult; if (!rSequence.hasElements()) break; diff -Nru libreoffice-7.3.4/sc/source/core/data/dptabres.cxx libreoffice-7.3.5/sc/source/core/data/dptabres.cxx --- libreoffice-7.3.4/sc/source/core/data/dptabres.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/data/dptabres.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2767,7 +2767,10 @@ ScDPResultMember *ScDPResultDimension::FindMember( SCROW iData ) const { if( bIsDataLayout ) - return maMemberArray[0].get(); + { + SAL_WARN_IF(maMemberArray.empty(), "sc.core", "MemberArray is empty"); + return !maMemberArray.empty() ? maMemberArray[0].get() : nullptr; + } MemberHash::const_iterator aRes = maMemberHash.find( iData ); if( aRes != maMemberHash.end()) { @@ -2974,8 +2977,11 @@ tools::Long ScDPResultDimension::GetSize(tools::Long nMeasure) const { - tools::Long nTotal = 0; tools::Long nMemberCount = maMemberArray.size(); + if (!nMemberCount) + return 0; + + tools::Long nTotal = 0; if (bIsDataLayout) { OSL_ENSURE(nMeasure == SC_DPMEASURE_ALL || pResultData->GetMeasureCount() == 1, @@ -3128,7 +3134,7 @@ // handle children // for data layout, call only once - sorting measure is always taken from settings - tools::Long nLoopCount = bIsDataLayout ? 1 : nCount; + tools::Long nLoopCount = bIsDataLayout ? std::min(1, nCount) : nCount; for (tools::Long i=0; irDocument.IsUndo(); + const bool bToUndoDoc = pDestTab->rDocument.IsUndo(); + const bool bFromUndoDoc = rDocument.IsUndo(); - if (bIsUndoDoc && (nFlags & InsertDeleteFlags::CONTENTS)) + if ((bToUndoDoc || bFromUndoDoc) && (nFlags & InsertDeleteFlags::CONTENTS) && mpRangeName) { // Copying formulas may create sheet-local named expressions on the // destination sheet. Add existing to Undo first. + // During Undo restore the previous named expressions. pDestTab->SetRangeName( std::unique_ptr( new ScRangeName( *GetRangeName()))); + if (!pDestTab->rDocument.IsClipOrUndo()) + { + ScDocShell* pDocSh = static_cast(pDestTab->rDocument.GetDocumentShell()); + if (pDocSh) + pDocSh->SetAreasChangedNeedBroadcast(); + } } if (nFlags != InsertDeleteFlags::NONE) @@ -1326,14 +1334,14 @@ // quadratically expensive with large groups. So do the grouping just once at the end. sc::DelayFormulaGroupingSwitch delayGrouping( pDestTab->rDocument, true ); for (SCCOL i = nCol1; i <= ClampToAllocatedColumns(nCol2); i++) - aCol[i].CopyToColumn(rCxt, nRow1, nRow2, bIsUndoDoc ? nFlags : nTempFlags, bMarked, + aCol[i].CopyToColumn(rCxt, nRow1, nRow2, bToUndoDoc ? nFlags : nTempFlags, bMarked, pDestTab->CreateColumnIfNotExists(i), pMarkData, bAsLink, bGlobalNamesToLocal); } if (!bColRowFlags) // Column widths/Row heights/Flags return; - if(bIsUndoDoc && (nFlags & InsertDeleteFlags::ATTRIB)) + if (bToUndoDoc && (nFlags & InsertDeleteFlags::ATTRIB)) { pDestTab->mpCondFormatList.reset(new ScConditionalFormatList(pDestTab->rDocument, *mpCondFormatList)); } @@ -1441,7 +1449,7 @@ if(nFlags & InsertDeleteFlags::OUTLINE) // also only when bColRowFlags pDestTab->SetOutlineTable( pOutlineTable.get() ); - if (!bIsUndoDoc && bCopyCaptions && (nFlags & (InsertDeleteFlags::NOTE | InsertDeleteFlags::ADDNOTES))) + if (!bToUndoDoc && bCopyCaptions && (nFlags & (InsertDeleteFlags::NOTE | InsertDeleteFlags::ADDNOTES))) { bool bCloneCaption = (nFlags & InsertDeleteFlags::NOCAPTIONS) == InsertDeleteFlags::NONE; CopyCaptionsToTable( nCol1, nRow1, nCol2, nRow2, pDestTab, bCloneCaption); @@ -3448,7 +3456,7 @@ return (nEndRow - nStartRow + 1) * static_cast(ScGlobal::nStdRowHeight); } -sal_uLong ScTable::GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, double fScale, const sal_uLong* pnMaxHeight ) const +sal_uLong ScTable::GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, double fScale ) const { OSL_ENSURE(ValidRow(nStartRow) && ValidRow(nEndRow),"wrong row number"); @@ -3475,21 +3483,8 @@ SCROW nSegmentEnd = std::min( nLastRow, aSegmentIter.getLastPos() ); // round-down a single height value, multiply resulting (pixel) values - const sal_uLong nOneHeight = static_cast( nRowVal * fScale ); - // sometimes scaling results in zero height - if (nOneHeight) - { - SCROW nRowsInSegment = nSegmentEnd + 1 - nRow; - if (pnMaxHeight) - { - nRowsInSegment = std::min(nRowsInSegment, static_cast(*pnMaxHeight / nOneHeight + 1)); - nHeight += nOneHeight * nRowsInSegment; - if (nHeight > *pnMaxHeight) - return nHeight; - } - else - nHeight += nOneHeight * nRowsInSegment; - } + sal_uLong nOneHeight = static_cast( nRowVal * fScale ); + nHeight += nOneHeight * ( nSegmentEnd + 1 - nRow ); nRow = nSegmentEnd + 1; } @@ -3499,17 +3494,7 @@ return nHeight; } else - { - const sal_uLong nOneHeight = static_cast(ScGlobal::nStdRowHeight * fScale); - SCROW nRowsInSegment = nEndRow - nStartRow + 1; - if (pnMaxHeight) - { - nRowsInSegment = std::min(nRowsInSegment, static_cast(*pnMaxHeight / nOneHeight + 1)); - return nOneHeight * nRowsInSegment; - } - else - return static_cast(nRowsInSegment * nOneHeight); - } + return static_cast((nEndRow - nStartRow + 1) * ScGlobal::nStdRowHeight * fScale); } sal_uInt16 ScTable::GetOriginalHeight( SCROW nRow ) const // non-0 even if hidden diff -Nru libreoffice-7.3.4/sc/source/core/tool/refdata.cxx libreoffice-7.3.5/sc/source/core/tool/refdata.cxx --- libreoffice-7.3.4/sc/source/core/tool/refdata.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/core/tool/refdata.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -129,7 +129,7 @@ bool ScSingleRefData::Valid(const ScDocument& rDoc) const { - return ColValid(rDoc) && RowValid(rDoc) && TabValid(); + return !IsDeleted() && ColValid(rDoc) && RowValid(rDoc) && TabValid(); } bool ScSingleRefData::ColValid(const ScDocument& rDoc) const diff -Nru libreoffice-7.3.4/sc/source/filter/inc/stylesbuffer.hxx libreoffice-7.3.5/sc/source/filter/inc/stylesbuffer.hxx --- libreoffice-7.3.4/sc/source/filter/inc/stylesbuffer.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/filter/inc/stylesbuffer.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -466,6 +466,7 @@ struct PatternFillModel { Color maPatternColor; /// Pattern foreground color. + Color maFilterPatternColor; /// Pattern foreground for color filter. Color maFillColor; /// Background fill color. sal_Int32 mnPattern; /// Pattern identifier (e.g. solid). bool mbPattColorUsed; /// True = pattern foreground color used. @@ -503,6 +504,7 @@ struct ApiSolidFillData { ::Color mnColor; /// Fill color. + ::Color mnFilterColor; /// Fill color filtering. bool mbTransparent; /// True = transparent area. bool mbUsed; /// True = fill data is valid. diff -Nru libreoffice-7.3.4/sc/source/filter/oox/autofilterbuffer.cxx libreoffice-7.3.5/sc/source/filter/oox/autofilterbuffer.cxx --- libreoffice-7.3.4/sc/source/filter/oox/autofilterbuffer.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/filter/oox/autofilterbuffer.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -443,7 +443,7 @@ const SfxItemSet& rItemSet = pStyleSheet->GetItemSet(); // Color (whether text or background color) is always stored in ATTR_BACKGROUND const SvxBrushItem* pItem = rItemSet.GetItem(ATTR_BACKGROUND); - ::Color aColor = pItem->GetColor(); + ::Color aColor = pItem->GetFiltColor(); util::Color nColor(aColor); aSettings.appendField(true, nColor, mbIsBackgroundColor); return aSettings; diff -Nru libreoffice-7.3.4/sc/source/filter/oox/stylesbuffer.cxx libreoffice-7.3.5/sc/source/filter/oox/stylesbuffer.cxx --- libreoffice-7.3.4/sc/source/filter/oox/stylesbuffer.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/filter/oox/stylesbuffer.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1618,6 +1618,7 @@ mbPatternUsed( !bDxf ) { maPatternColor.setIndexed( OOX_COLOR_WINDOWTEXT ); + maFilterPatternColor.setIndexed( OOX_COLOR_WINDOWTEXT ); maFillColor.setIndexed( OOX_COLOR_WINDOWBACK ); } @@ -1676,6 +1677,7 @@ ApiSolidFillData::ApiSolidFillData() : mnColor( API_RGB_TRANSPARENT ), + mnFilterColor( API_RGB_TRANSPARENT ), mbTransparent( true ), mbUsed( false ) { @@ -1827,8 +1829,8 @@ { if( rModel.mbFillColorUsed && (!rModel.mbPatternUsed || (rModel.mnPattern == XML_solid)) ) { - if (!rModel.mbPatternUsed) - rModel.maPatternColor = rModel.maFillColor; + rModel.maFilterPatternColor = rModel.maPatternColor; + rModel.maPatternColor = rModel.maFillColor; rModel.mnPattern = XML_solid; rModel.mbPattColorUsed = rModel.mbPatternUsed = true; } @@ -1838,6 +1840,8 @@ { rModel.mbPatternUsed = false; } + else + rModel.maFilterPatternColor = rModel.maPatternColor; } // convert to API fill settings @@ -1875,15 +1879,20 @@ ::Color nWinTextColor = rGraphicHelper.getSystemColor( XML_windowText ); ::Color nWinColor = rGraphicHelper.getSystemColor( XML_window ); - if( !rModel.mbPattColorUsed ) + if (!rModel.mbPattColorUsed) + { rModel.maPatternColor.setAuto(); + rModel.maFilterPatternColor.setAuto(); + } ::Color nPattColor = rModel.maPatternColor.getColor( rGraphicHelper, nWinTextColor ); + ::Color nFiltPattColor = rModel.maFilterPatternColor.getColor( rGraphicHelper, nWinTextColor ); if( !rModel.mbFillColorUsed ) rModel.maFillColor.setAuto(); ::Color nFillColor = rModel.maFillColor.getColor( rGraphicHelper, nWinColor ); maApiData.mnColor = lclGetMixedColor( nPattColor, nFillColor, nAlpha ); + maApiData.mnFilterColor = lclGetMixedColor( nFiltPattColor, nFillColor, nAlpha ); maApiData.mbTransparent = false; } } @@ -1913,10 +1922,12 @@ if ( maApiData.mbTransparent ) { aBrushItem.SetColor( COL_TRANSPARENT ); + aBrushItem.SetFiltColor( COL_TRANSPARENT ); } else { aBrushItem.SetColor( maApiData.mnColor ); + aBrushItem.SetFiltColor( maApiData.mnFilterColor ); } ScfTools::PutItem( rItemSet, aBrushItem, bSkipPoolDefs ); } diff -Nru libreoffice-7.3.4/sc/source/filter/orcus/filterdetect.cxx libreoffice-7.3.5/sc/source/filter/orcus/filterdetect.cxx --- libreoffice-7.3.4/sc/source/filter/orcus/filterdetect.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/filter/orcus/filterdetect.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -14,7 +14,7 @@ #include -#include +#include #include @@ -68,7 +68,7 @@ return OUString(); css::uno::Reference xInputStream(aMediaDescriptor[utl::MediaDescriptor::PROP_INPUTSTREAM], css::uno::UNO_QUERY ); - OStringBuffer aContent(xInputStream->available()); + SvMemoryStream aContent(xInputStream->available()); static const sal_Int32 nBytes = 4096; css::uno::Sequence aSeq(nBytes); @@ -77,10 +77,10 @@ { sal_Int32 nReadBytes = xInputStream->readBytes(aSeq, nBytes); bEnd = (nReadBytes != nBytes); - aContent.append(reinterpret_cast(aSeq.getConstArray()), nReadBytes); + aContent.WriteBytes(aSeq.getConstArray(), nReadBytes); } - orcus::format_t eFormat = orcus::detect(reinterpret_cast(aContent.getStr()), aContent.getLength()); + orcus::format_t eFormat = orcus::detect(static_cast(aContent.GetData()), aContent.GetSize()); switch (eFormat) { diff -Nru libreoffice-7.3.4/sc/source/filter/xml/xmlexprt.cxx libreoffice-7.3.5/sc/source/filter/xml/xmlexprt.cxx --- libreoffice-7.3.4/sc/source/filter/xml/xmlexprt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/filter/xml/xmlexprt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -926,6 +926,7 @@ namespace { void handleFont( + SvXMLExport & rExport, std::vector& rPropStates, const SfxPoolItem* p, const rtl::Reference& xMapper, std::u16string_view rXMLName ) { @@ -939,14 +940,23 @@ if (nIndexFontName == -1 || nIndexFontName >= nEntryCount) return; - uno::Any aAny; - if (!pItem->QueryValue(aAny, MID_FONT_FAMILY_NAME)) - return; + OUString const sFamilyName(pItem->GetFamilyName()); + OUString const sStyleName(pItem->GetStyleName()); + auto const nFamily(pItem->GetFamily()); + auto const nPitch(pItem->GetPitch()); + auto const eEnc(pItem->GetCharSet()); + OUString const sName(rExport.GetFontAutoStylePool()->Find( + sFamilyName, sStyleName, nFamily, nPitch, eEnc)); + if (sName.isEmpty()) + { + assert(false); // fallback to fo:font-family etc. probably not needed + } - rPropStates.emplace_back(nIndexFontName, aAny); + rPropStates.emplace_back(nIndexFontName, uno::Any(sName)); } const SvxFieldData* toXMLPropertyStates( + SvXMLExport & rExport, std::vector& rPropStates, const std::vector& rSecAttrs, const rtl::Reference& xMapper, const ScXMLEditAttributeMap& rAttrMap ) { @@ -975,13 +985,13 @@ switch (p->Which()) { case EE_CHAR_FONTINFO: - handleFont(rPropStates, p, xMapper, u"font-name"); + handleFont(rExport, rPropStates, p, xMapper, u"font-name"); break; case EE_CHAR_FONTINFO_CJK: - handleFont(rPropStates, p, xMapper, u"font-name-asian"); + handleFont(rExport, rPropStates, p, xMapper, u"font-name-asian"); break; case EE_CHAR_FONTINFO_CTL: - handleFont(rPropStates, p, xMapper, u"font-name-complex"); + handleFont(rExport, rPropStates, p, xMapper, u"font-name-complex"); break; case EE_CHAR_WEIGHT: case EE_CHAR_WEIGHT_CJK: @@ -1266,7 +1276,7 @@ continue; std::vector aPropStates; - toXMLPropertyStates(aPropStates, rSecAttrs, xMapper, rAttrMap); + toXMLPropertyStates(*this, aPropStates, rSecAttrs, xMapper, rAttrMap); if (!aPropStates.empty()) xStylePool->Add(XmlStyleFamily::TEXT_TEXT, OUString(), std::move(aPropStates)); } @@ -3102,7 +3112,7 @@ OUString aContent(rParaText.copy(rSec.mnStart, rSec.mnEnd - rSec.mnStart)); std::vector aPropStates; - const SvxFieldData* pField = toXMLPropertyStates(aPropStates, rSec.maAttributes, xMapper, rAttrMap); + const SvxFieldData* pField = toXMLPropertyStates(rExport, aPropStates, rSec.maAttributes, xMapper, rAttrMap); OUString aStyleName = xStylePool->Find(XmlStyleFamily::TEXT_TEXT, OUString(), aPropStates); writeContent(rExport, aStyleName, aContent, pField); } diff -Nru libreoffice-7.3.4/sc/source/ui/app/inputhdl.cxx libreoffice-7.3.5/sc/source/ui/app/inputhdl.cxx --- libreoffice-7.3.4/sc/source/ui/app/inputhdl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/app/inputhdl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -830,6 +830,7 @@ bLastIsSymbol( false ), mbDocumentDisposing(false), mbPartialPrefix(false), + mbEditingExistingContent(false), nValidation( 0 ), eAttrAdjust( SvxCellHorJustify::Standard ), aScaleX( 1,1 ), @@ -1079,14 +1080,14 @@ IMPL_LINK( ScInputHandler, ShowHideTipVisibleParentListener, VclWindowEvent&, rEvent, void ) { if (rEvent.GetId() == VclEventId::ObjectDying || rEvent.GetId() == VclEventId::WindowHide - || rEvent.GetId() == VclEventId::WindowLoseFocus) + || rEvent.GetId() == VclEventId::WindowLoseFocus || rEvent.GetId() == VclEventId::ControlLoseFocus) HideTip(); } IMPL_LINK( ScInputHandler, ShowHideTipVisibleSecParentListener, VclWindowEvent&, rEvent, void ) { if (rEvent.GetId() == VclEventId::ObjectDying || rEvent.GetId() == VclEventId::WindowHide - || rEvent.GetId() == VclEventId::WindowLoseFocus) + || rEvent.GetId() == VclEventId::WindowLoseFocus || rEvent.GetId() == VclEventId::ControlLoseFocus) HideTipBelow(); } @@ -1768,6 +1769,9 @@ if (pEditEngine) { aFormula = pEditEngine->GetText(0); + /* TODO: LOK: are you sure you want '+' and '-' let start formulas with + * function names? That was meant for "data typist" numeric keyboard + * input. */ bEdit = aFormula.getLength() > 1 && (aFormula[0] == '=' || aFormula[0] == '+' || aFormula[0] == '-'); } @@ -2556,6 +2560,7 @@ } else aStr = GetEditText(mpEditEngine.get()); + mbEditingExistingContent = !aStr.isEmpty(); if (aStr.startsWith("{=") && aStr.endsWith("}") ) // Matrix formula? { @@ -2570,8 +2575,7 @@ if ( bAutoComplete ) GetColData(); - if ( !aStr.isEmpty() && ( aStr[0] == '=' || aStr[0] == '+' || aStr[0] == '-' ) && - !cTyped && !bCreatingFuncView ) + if (!cTyped && !bCreatingFuncView && StartsLikeFormula(aStr)) InitRangeFinder(aStr); // Formula is being edited -> RangeFinder bNewTable = true; // -> PostEditView Call @@ -2762,6 +2766,13 @@ bInOwnChange = false; } +bool ScInputHandler::StartsLikeFormula( std::u16string_view rStr ) const +{ + // For new input '+' and '-' may start the dreaded "lazy data typist" + // formula input, editing existing formula content can only start with '='. + return !rStr.empty() && (rStr[0] == '=' || (!mbEditingExistingContent && (rStr[0] == '+' || rStr[0] == '-'))); +} + void ScInputHandler::UpdateFormulaMode() { SfxApplication* pSfxApp = SfxGetpApp(); @@ -2770,8 +2781,7 @@ if (bIsFormula) { const OUString& rText = mpEditEngine->GetText(0); - bIsFormula = !rText.isEmpty() && - (rText[0] == '=' || rText[0] == '+' || rText[0] == '-'); + bIsFormula = StartsLikeFormula(rText); } if ( bIsFormula ) @@ -3377,6 +3387,7 @@ nFormSelStart = nFormSelEnd = 0; aFormText.clear(); + mbEditingExistingContent = false; bInOwnChange = false; bInEnterHandler = false; } @@ -3389,6 +3400,7 @@ bModified = false; mbPartialPrefix = false; + mbEditingExistingContent = false; // Don't rely on ShowRefFrame switching the active view synchronously // execute the function directly on the correct view's bindings instead diff -Nru libreoffice-7.3.4/sc/source/ui/app/inputwin.cxx libreoffice-7.3.5/sc/source/ui/app/inputwin.cxx --- libreoffice-7.3.4/sc/source/ui/app/inputwin.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/app/inputwin.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1798,7 +1798,8 @@ bool ScTextWnd::StartDrag() { - if (m_xEditView) + // tdf#145248 don't start a drag if actively selecting + if (m_xEditView && !m_xEditEngine->IsInSelectionMode()) { OUString sSelection = m_xEditView->GetSelected(); m_xHelper->SetData(sSelection); diff -Nru libreoffice-7.3.4/sc/source/ui/inc/inputhdl.hxx libreoffice-7.3.5/sc/source/ui/inc/inputhdl.hxx --- libreoffice-7.3.4/sc/source/ui/inc/inputhdl.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/inc/inputhdl.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -105,6 +105,7 @@ bool mbDocumentDisposing:1; /// To indicate if there is a partial prefix completion. bool mbPartialPrefix:1; + bool mbEditingExistingContent:1; sal_uLong nValidation; SvxCellHorJustify eAttrAdjust; @@ -146,6 +147,7 @@ bool StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated, ScEditEngineDefaulter* pTopEngine ); void RemoveSelection(); + bool StartsLikeFormula( std::u16string_view rStr ) const; void UpdateFormulaMode(); static void InvalidateAttribs(); void ImplCreateEditEngine(); diff -Nru libreoffice-7.3.4/sc/source/ui/unoobj/cellsuno.cxx libreoffice-7.3.5/sc/source/ui/unoobj/cellsuno.cxx --- libreoffice-7.3.4/sc/source/ui/unoobj/cellsuno.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/unoobj/cellsuno.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -6721,7 +6721,9 @@ if (pRangesImp) { const ScRangeList& rRanges = pRangesImp->GetRangeList(); - OSL_ENSURE( rRanges.size() == 1, "Range? Ranges?" ); + SAL_WARN_IF( rRanges.size() != 1, "sc", "ScTableSheetObj::createCursorByRange: Range? Ranges?"); + if (rRanges.empty()) + return nullptr; return new ScCellCursorObj( pDocSh, rRanges[ 0 ] ); } } diff -Nru libreoffice-7.3.4/sc/source/ui/unoobj/listenercalls.cxx libreoffice-7.3.5/sc/source/ui/unoobj/listenercalls.cxx --- libreoffice-7.3.4/sc/source/ui/unoobj/listenercalls.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/unoobj/listenercalls.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -44,7 +44,7 @@ // During each modified() call, Add may be called again. // These new calls are executed here, too. - std::vector::iterator aItr(aEntries.begin()); + std::list::iterator aItr(aEntries.begin()); while (aItr != aEntries.end()) { ScUnoListenerEntry aEntry = *aItr; diff -Nru libreoffice-7.3.4/sc/source/ui/vba/vbarange.cxx libreoffice-7.3.5/sc/source/ui/vba/vbarange.cxx --- libreoffice-7.3.4/sc/source/ui/vba/vbarange.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/vba/vbarange.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -871,15 +871,18 @@ ScCellRangesBase* pUnoRangesBase = dynamic_cast< ScCellRangesBase* >( xIf.get() ); if ( pUnoRangesBase ) { - ScRangeList aCellRanges = pUnoRangesBase->GetRangeList(); - ScCompiler aCompiler( m_rDoc, aCellRanges.front().aStart, m_eGrammar ); - // compile the string in the format passed in - std::unique_ptr pArray(aCompiler.CompileString(sFormula)); - // convert to API grammar - aCompiler.SetGrammar( formula::FormulaGrammar::GRAM_API ); - OUString sConverted; - aCompiler.CreateStringFromTokenArray(sConverted); - sFormula = EQUALS + sConverted; + const ScRangeList& rCellRanges = pUnoRangesBase->GetRangeList(); + if (!rCellRanges.empty()) + { + ScCompiler aCompiler( m_rDoc, rCellRanges.front().aStart, m_eGrammar ); + // compile the string in the format passed in + std::unique_ptr pArray(aCompiler.CompileString(sFormula)); + // convert to API grammar + aCompiler.SetGrammar( formula::FormulaGrammar::GRAM_API ); + OUString sConverted; + aCompiler.CreateStringFromTokenArray(sConverted); + sFormula = EQUALS + sConverted; + } } } @@ -917,16 +920,19 @@ { OUString sVal; aValue >>= sVal; - ScRangeList aCellRanges = pUnoRangesBase->GetRangeList(); - // Compile string from API grammar. - ScCompiler aCompiler( m_rDoc, aCellRanges.front().aStart, formula::FormulaGrammar::GRAM_API ); - std::unique_ptr pArray(aCompiler.CompileString(sVal)); - // Convert to desired grammar. - aCompiler.SetGrammar( m_eGrammar ); - OUString sConverted; - aCompiler.CreateStringFromTokenArray(sConverted); - sVal = EQUALS + sConverted; - aValue <<= sVal; + const ScRangeList& rCellRanges = pUnoRangesBase->GetRangeList(); + if (!rCellRanges.empty()) + { + // Compile string from API grammar. + ScCompiler aCompiler( m_rDoc, rCellRanges.front().aStart, formula::FormulaGrammar::GRAM_API ); + std::unique_ptr pArray(aCompiler.CompileString(sVal)); + // Convert to desired grammar. + aCompiler.SetGrammar( m_eGrammar ); + OUString sConverted; + aCompiler.CreateStringFromTokenArray(sConverted); + sVal = EQUALS + sConverted; + aValue <<= sVal; + } } } @@ -1279,9 +1285,12 @@ { aOldAddress = aNewAddress; uno::Reference< sheet::XSheetCellCursor > xCursor( xSheet->createCursorByRange( xNewCellRange ), uno::UNO_SET_THROW ); - xCursor->collapseToMergedArea(); - xNewCellRange.set( xCursor, uno::UNO_QUERY_THROW ); - aNewAddress = lclGetRangeAddress( xNewCellRange ); + if (xCursor.is()) + { + xCursor->collapseToMergedArea(); + xNewCellRange.set( xCursor, uno::UNO_QUERY_THROW ); + aNewAddress = lclGetRangeAddress( xNewCellRange ); + } } while( bRecursive && (aOldAddress != aNewAddress) ); return xNewCellRange; @@ -1913,7 +1922,8 @@ return new ScVbaRange( mxParent, mxContext, xRanges ); } // normal range - uno::Reference< table::XCellRange > xRange( new ScCellRangeObj( pUnoRangesBase->GetDocShell(), aCellRanges.front() ) ); + const ScRange aRange( obtainRangeEvenIfRangeListIsEmpty( aCellRanges)); + uno::Reference< table::XCellRange > xRange( new ScCellRangeObj( pUnoRangesBase->GetDocShell(), aRange)); return new ScVbaRange( mxParent, mxContext, xRange ); } @@ -2364,17 +2374,28 @@ } +ScRange ScVbaRange::obtainRangeEvenIfRangeListIsEmpty( const ScRangeList& rCellRanges ) const +{ + // XXX It may be that using the current range list was never correct, but + // always the initial sheet range would be instead, history is unclear. + + if (!rCellRanges.empty()) + return rCellRanges.front(); + + table::CellRangeAddress aRA( lclGetRangeAddress( mxRange )); + return ScRange( aRA.StartColumn, aRA.StartRow, aRA.Sheet, aRA.EndColumn, aRA.EndRow, aRA.Sheet); +} + uno::Reference< excel::XRange > ScVbaRange::Rows(const uno::Any& aIndex ) { if ( aIndex.hasValue() ) { - sal_Int32 nValue = 0; ScCellRangesBase* pUnoRangesBase = getCellRangesBase(); - ScRangeList aCellRanges = pUnoRangesBase->GetRangeList(); - OUString sAddress; + ScRange aRange( obtainRangeEvenIfRangeListIsEmpty( pUnoRangesBase->GetRangeList())); - ScRange aRange = aCellRanges.front(); + sal_Int32 nValue = 0; + OUString sAddress; if( aIndex >>= nValue ) { aRange.aStart.SetRow( aRange.aStart.Row() + --nValue ); @@ -2410,9 +2431,8 @@ ScVbaRange::Columns(const uno::Any& aIndex ) { ScCellRangesBase* pUnoRangesBase = getCellRangesBase(); - ScRangeList aCellRanges = pUnoRangesBase->GetRangeList(); + ScRange aRange( obtainRangeEvenIfRangeListIsEmpty( pUnoRangesBase->GetRangeList())); - ScRange aRange = aCellRanges.front(); if ( aIndex.hasValue() ) { OUString sAddress; @@ -2926,7 +2946,8 @@ return new ScVbaRange( mxParent, mxContext, xRanges, !bColumn, bColumn ); } - uno::Reference< table::XCellRange > xRange( new ScCellRangeObj( pUnoRangesBase->GetDocShell(), aCellRanges.front() ) ); + const ScRange aRange( obtainRangeEvenIfRangeListIsEmpty( aCellRanges)); + uno::Reference< table::XCellRange > xRange( new ScCellRangeObj( pUnoRangesBase->GetDocShell(), aRange)); return new ScVbaRange( mxParent, mxContext, xRange, !bColumn, bColumn ); } diff -Nru libreoffice-7.3.4/sc/source/ui/vba/vbarange.hxx libreoffice-7.3.5/sc/source/ui/vba/vbarange.hxx --- libreoffice-7.3.4/sc/source/ui/vba/vbarange.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/vba/vbarange.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -119,6 +119,9 @@ /** Fires a Worksheet_Change event for this range or range list. */ void fireChangeEvent(); + /// @throws css::uno::RuntimeException + ScRange obtainRangeEvenIfRangeListIsEmpty( const ScRangeList& rCellRanges ) const; + protected: virtual ScCellRangesBase* getCellRangesBase() override; /// @throws css::uno::RuntimeException diff -Nru libreoffice-7.3.4/sc/source/ui/view/printfun.cxx libreoffice-7.3.5/sc/source/ui/view/printfun.cxx --- libreoffice-7.3.4/sc/source/ui/view/printfun.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/view/printfun.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -3091,6 +3091,10 @@ rDoc.SetPageSize(nPrintTab, rDocSize); + // Clear the map to prevent any outdated values to "survive" when + // we have to recalculate the new values anyway + m_xPageRows->clear(); + // #i123672# use dynamic mem to react on size changes if (m_xPageEndX->size() < static_cast(rDoc.MaxCol()) + 1) { diff -Nru libreoffice-7.3.4/sc/source/ui/view/viewdata.cxx libreoffice-7.3.5/sc/source/ui/view/viewdata.cxx --- libreoffice-7.3.4/sc/source/ui/view/viewdata.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sc/source/ui/view/viewdata.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1153,7 +1153,7 @@ if (eMarkType == SC_MARK_NONE) eMarkType = SC_MARK_SIMPLE; const ScPatternAttr* pMarkPattern = mrDoc.GetPattern(GetCurX(), GetCurY(), GetTabNo()); - if (pMarkPattern->GetItemSet().GetItemState(ATTR_MERGE, false) == SfxItemState::SET) + if (pMarkPattern && pMarkPattern->GetItemSet().GetItemState(ATTR_MERGE, false) == SfxItemState::SET) { SCROW nRow = pMarkPattern->GetItem(ATTR_MERGE).GetRowMerge(); SCCOL nCol = pMarkPattern->GetItem(ATTR_MERGE).GetColMerge(); @@ -2416,7 +2416,7 @@ const_cast(this)->aScrSize.setHeight( pView->GetGridHeight(eWhichY) ); } - sal_uLong nTSize; + sal_uInt16 nTSize; bool bIsTiledRendering = comphelper::LibreOfficeKit::isActive(); @@ -2484,20 +2484,27 @@ if (nWhereY >= nStartPosY) { - if (bAllowNeg || bIsTiledRendering || nScrPosY <= aScrSize.Height()) + for (SCROW nY = nStartPosY; nY < nWhereY && (bAllowNeg || bIsTiledRendering || nScrPosY <= aScrSize.Height()); nY++) { - if (nWhereY - 1 > mrDoc.MaxRow()) + if ( nY > mrDoc.MaxRow() ) nScrPosY = 0x7FFFFFFF; - else if (bAllowNeg || bIsTiledRendering) - { - sal_uLong nSizeYPix = mrDoc.GetScaledRowHeight(nStartPosY, nWhereY - 1, nForTab, nPPTY); - nScrPosY += nSizeYPix; - } else { - sal_uLong nMaxHeight = aScrSize.getHeight() - nScrPosY; - sal_uLong nSizeYPix = mrDoc.GetScaledRowHeight(nStartPosY, nWhereY - 1, nForTab, nPPTY, &nMaxHeight); - nScrPosY += nSizeYPix; + nTSize = mrDoc.GetRowHeight( nY, nTabNo ); + if (nTSize) + { + tools::Long nSizeYPix = ToPixel( nTSize, nPPTY ); + nScrPosY += nSizeYPix; + } + else if ( nY < mrDoc.MaxRow() ) + { + // skip multiple hidden rows (forward only for now) + SCROW nNext = mrDoc.FirstVisibleRow(nY + 1, mrDoc.MaxRow(), nTabNo); + if ( nNext > mrDoc.MaxRow() ) + nY = mrDoc.MaxRow(); + else + nY = nNext - 1; // +=nDir advances to next visible row + } } } } diff -Nru libreoffice-7.3.4/sd/CppunitTest_sd_shape_import_export_tests.mk libreoffice-7.3.5/sd/CppunitTest_sd_shape_import_export_tests.mk --- libreoffice-7.3.4/sd/CppunitTest_sd_shape_import_export_tests.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/sd/CppunitTest_sd_shape_import_export_tests.mk 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,74 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +#************************************************************************* +# +# 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/. +# +#************************************************************************* + +$(eval $(call gb_CppunitTest_CppunitTest,sd_shape_import_export_tests)) + +$(eval $(call gb_CppunitTest_use_externals,sd_shape_import_export_tests,\ + boost_headers \ + libxml2 \ +)) + +$(eval $(call gb_CppunitTest_add_exception_objects,sd_shape_import_export_tests, \ + sd/qa/unit/ShapeImportExportTest \ +)) + +$(eval $(call gb_CppunitTest_set_include,sd_shape_import_export_tests,\ + -I$(SRCDIR)/sd/inc \ + -I$(SRCDIR)/sd/source/ui/inc \ + -I$(SRCDIR)/sd/source/ui/slidesorter/inc \ + -I$(SRCDIR)/svx/source/inc \ + -I$(SRCDIR)/svx/inc \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_CppunitTest_use_libraries,sd_shape_import_export_tests, \ + $(call gb_Helper_optional,AVMEDIA,avmedia) \ + basegfx \ + canvastools \ + comphelper \ + cppcanvas \ + cppu \ + cppuhelper \ + drawinglayer \ + editeng \ + for \ + forui \ + i18nlangtag \ + i18nutil \ + msfilter \ + oox \ + sal \ + salhelper \ + sax \ + sb \ + sd \ + sfx \ + sot \ + svl \ + svt \ + svx \ + svxcore \ + test \ + tl \ + tk \ + ucbhelper \ + unotest \ + utl \ + vcl \ + xo \ +)) + +$(eval $(call gb_CppunitTest_use_sdk_api,sd_shape_import_export_tests)) +$(eval $(call gb_CppunitTest_use_ure,sd_shape_import_export_tests)) +$(eval $(call gb_CppunitTest_use_vcl,sd_shape_import_export_tests)) +$(eval $(call gb_CppunitTest_use_rdb,sd_shape_import_export_tests,services)) +$(eval $(call gb_CppunitTest_use_configuration,sd_shape_import_export_tests)) +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.4/sd/Module_sd.mk libreoffice-7.3.5/sd/Module_sd.mk --- libreoffice-7.3.4/sd/Module_sd.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sd/Module_sd.mk 2022-07-15 19:12:51.000000000 +0000 @@ -47,6 +47,7 @@ CppunitTest_sd_activex_controls_tests \ CppunitTest_sd_pdf_import_test \ CppunitTest_sd_filter_eppt \ + CppunitTest_sd_shape_import_export_tests \ )) endif Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sd/qa/unit/data/pptx/croppedTo0.pptx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sd/qa/unit/data/pptx/croppedTo0.pptx differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sd/qa/unit/data/TextDistancesInsets1.pptx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sd/qa/unit/data/TextDistancesInsets1.pptx differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sd/qa/unit/data/TextDistancesInsets2.pptx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sd/qa/unit/data/TextDistancesInsets2.pptx differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sd/qa/unit/data/TextDistancesInsets3.pptx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sd/qa/unit/data/TextDistancesInsets3.pptx differ diff -Nru libreoffice-7.3.4/sd/qa/unit/import-tests2.cxx libreoffice-7.3.5/sd/qa/unit/import-tests2.cxx --- libreoffice-7.3.4/sd/qa/unit/import-tests2.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sd/qa/unit/import-tests2.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -174,6 +174,7 @@ void testHyperlinksOnShapes(); void testTdf112209(); void testDefaultTabStop(); + void testCropToZero(); CPPUNIT_TEST_SUITE(SdImportTest2); @@ -240,6 +241,7 @@ CPPUNIT_TEST(testHyperlinksOnShapes); CPPUNIT_TEST(testTdf112209); CPPUNIT_TEST(testDefaultTabStop); + CPPUNIT_TEST(testCropToZero); CPPUNIT_TEST_SUITE_END(); }; @@ -1281,7 +1283,7 @@ Graphic aGraphic(xGraphic); BitmapEx aBitmap(aGraphic.GetBitmapEx()); - CPPUNIT_ASSERT_EQUAL(Color(0x60563e), aBitmap.GetPixelColor(0, 0)); + CPPUNIT_ASSERT_EQUAL(Color(0x605741), aBitmap.GetPixelColor(0, 0)); xDocShRef->DoClose(); } @@ -1991,6 +1993,13 @@ xDocShRef->DoClose(); } +void SdImportTest2::testCropToZero() +{ + // Must not crash because of division by zero + // Also must not fail assertions because of passing negative value to CropQuotientsFromSrcRect + loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/pptx/croppedTo0.pptx"), PPTX); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest2); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.3.4/sd/qa/unit/ShapeImportExportTest.cxx libreoffice-7.3.5/sd/qa/unit/ShapeImportExportTest.cxx --- libreoffice-7.3.4/sd/qa/unit/ShapeImportExportTest.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.5/sd/qa/unit/ShapeImportExportTest.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -0,0 +1,381 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include "sdmodeltestbase.hxx" + +#include + +#include + +#include +#include + +using namespace css; + +/// Shape / SdrObject import and export tests +class ShapeImportExportTest : public SdModelTestBaseXML +{ +public: + void testTextDistancesOOXML(); + void testTextDistancesOOXML_LargerThanTextAreaSpecialCase(); + void testTextDistancesOOXML_Export(); + + CPPUNIT_TEST_SUITE(ShapeImportExportTest); + CPPUNIT_TEST(testTextDistancesOOXML); + CPPUNIT_TEST(testTextDistancesOOXML_LargerThanTextAreaSpecialCase); + CPPUNIT_TEST(testTextDistancesOOXML_Export); + CPPUNIT_TEST_SUITE_END(); + + virtual void registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) override + { + XmlTestTools::registerODFNamespaces(pXmlXPathCtx); + XmlTestTools::registerOOXMLNamespaces(pXmlXPathCtx); + } +}; + +namespace +{ +SdrObject* searchObject(SdrPage const* pPage, std::u16string_view rName) +{ + for (size_t i = 0; i < pPage->GetObjCount(); ++i) + { + SdrObject* pCurrent = pPage->GetObj(i); + if (pCurrent->GetName() == rName) + return pCurrent; + } + return nullptr; +} +} + +/* Test text distances (insets) */ +void ShapeImportExportTest::testTextDistancesOOXML() +{ + ::sd::DrawDocShellRef xDocShell + = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/TextDistancesInsets1.pptx"), PPTX); + + SdrPage const* pPage = GetPage(1, xDocShell); + // Bottom Margin = 4cm + { + std::array aObjectDesc = { + u"T, BM - 4cm", + u"M, BM - 4cm", + u"B, BM - 4cm", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(-1292), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(2708), pTextObj->GetTextLowerDistance()); + } + } + + // Bottom Margin = 1cm + { + std::array aObjectDesc = { + u"T, BM - 1cm", + u"M, BM - 1cm", + u"B, BM - 1cm", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(0), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(1000), pTextObj->GetTextLowerDistance()); + } + } + + // Top + Bottom Margin = 1cm + { + std::array aObjectDesc = { + u"T, TM+BM - 1cm", + u"M, TM+BM - 1cm", + u"B, TM+BM - 1cm", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(708), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(708), pTextObj->GetTextLowerDistance()); + } + } + + // No margin - Top + Bottom = 0cm + { + std::array aObjectDesc = { + u"T", + u"M", + u"B", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(0), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(0), pTextObj->GetTextLowerDistance()); + } + } + + // Top Margin = 1cm + { + std::array aObjectDesc = { + u"T, TM - 1cm", + u"M, TM - 1cm", + u"B, TM - 1cm", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(1000), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(0), pTextObj->GetTextLowerDistance()); + } + } + + // Top Margin = 4cm + { + std::array aObjectDesc = { + u"T, TM - 4cm", + u"M, TM - 4cm", + u"B, TM - 4cm", + }; + + for (auto const& rString : aObjectDesc) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rString)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(2708), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(-1292), pTextObj->GetTextLowerDistance()); + } + } + + xDocShell->DoClose(); +} + +/* Test text distances (insets) variants where top+bottom margin > text area*/ +void ShapeImportExportTest::testTextDistancesOOXML_LargerThanTextAreaSpecialCase() +{ + ::sd::DrawDocShellRef xDocShell + = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/TextDistancesInsets2.pptx"), PPTX); + + SdrPage const* pPage = GetPage(1, xDocShell); + + // Top/Bottom 0cm/3cm, 1cm/4cm, 4cm/7cm - all should be converted to the same value in LO + { + std::array aObjectNames = { + u"T_0_3", u"M_0_3", u"B_0_3", u"T_1_4", u"M_1_4", + u"B_1_4", u"T_4_7", u"M_4_7", u"B_4_7", + }; + + for (auto const& rName : aObjectNames) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rName)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(-792), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(2208), pTextObj->GetTextLowerDistance()); + } + } + + // Top/Bottom 0cm/2cm, 1cm/3cm, 4cm/6cm - all should be converted to the same value in LO + { + std::array aObjectNames = { + u"T_0_2", u"M_0_2", u"B_0_2", u"T_1_3", u"M_1_3", + u"B_1_3", u"T_4_6", u"M_4_6", u"B_4_6", + }; + + for (auto const& rName : aObjectNames) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rName)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(-292), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(1708), pTextObj->GetTextLowerDistance()); + } + } + + // Top/Bottom 2cm/2cm, 3cm/3cm, 4cm/4cm - all should be converted to the same value in LO + { + std::array aObjectNames = { + u"T_2_2", u"M_2_2", u"B_2_2", u"T_3_3", u"M_3_3", + u"B_3_3", u"T_4_4", u"M_4_4", u"B_4_4", + }; + + for (auto const& rName : aObjectNames) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rName)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(708), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(708), pTextObj->GetTextLowerDistance()); + } + } + + // Top/Bottom 2cm/0cm, 3cm/1cm, 6cm/4cm - all should be converted to the same value in LO + { + std::array aObjectNames = { + u"T_2_0", u"M_2_0", u"B_2_0", u"T_3_1", u"M_3_1", + u"B_3_1", u"T_6_4", u"M_6_4", u"B_6_4", + }; + + for (auto const& rName : aObjectNames) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rName)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(1708), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(-292), pTextObj->GetTextLowerDistance()); + } + } + + // Top/Bottom 3cm/0cm, 4cm/1cm, 7cm/4cm - all should be converted to the same value in LO + { + std::array aObjectNames = { + u"T_3_0", u"M_3_0", u"B_3_0", u"T_4_1", u"M_4_1", + u"B_4_1", u"T_7_4", u"M_7_4", u"B_7_4", + }; + + for (auto const& rName : aObjectNames) + { + auto* pTextObj = dynamic_cast(searchObject(pPage, rName)); + CPPUNIT_ASSERT(pTextObj); + CPPUNIT_ASSERT_EQUAL(tools::Long(2208), pTextObj->GetTextUpperDistance()); + CPPUNIT_ASSERT_EQUAL(tools::Long(-792), pTextObj->GetTextLowerDistance()); + } + } + + xDocShell->DoClose(); +} + +/* Test export of text distances (insets) - conversion back of special case */ +void ShapeImportExportTest::testTextDistancesOOXML_Export() +{ + ::sd::DrawDocShellRef xDocShell + = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/TextDistancesInsets3.pptx"), PPTX); + + utl::TempFile aTempFile; + xDocShell = saveAndReload(xDocShell.get(), PPTX, &aTempFile); + xDocShell->DoClose(); + + xmlDocUniquePtr pXmlDoc = parseExport(aTempFile, "ppt/slides/slide1.xml"); + CPPUNIT_ASSERT(pXmlDoc); + + //Check shape Top/Bottom - 0cm, 4cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[1]/p:nvSpPr/p:cNvPr", "name", "Text_TB_0_4"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[1]/p:txBody/a:bodyPr", + { { "tIns", "0" }, { "bIns", "1439640" } }); + + //Check shape Top/Bottom - 4cm, 0cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[2]/p:nvSpPr/p:cNvPr", "name", "Text_TB_4_0"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[2]/p:txBody/a:bodyPr", + { { "tIns", "1439640" }, { "bIns", "0" } }); + + //Check shape Top/Bottom - 0cm, 3cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:nvSpPr/p:cNvPr", "name", "Text_TB_0_3"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:txBody/a:bodyPr", + { { "tIns", "0" }, { "bIns", "1079640" } }); + + //Check shape Top/Bottom - 2cm, 1cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[4]/p:nvSpPr/p:cNvPr", "name", "Text_TB_2_1"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[4]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "360000" } }); + + //Check shape Top/Bottom - 0cm, 2.5cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[5]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_0_2.5"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[5]/p:txBody/a:bodyPr", + { { "tIns", "0" }, { "bIns", "899640" } }); + + //Check shape Top/Bottom - 0cm, 2cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[6]/p:nvSpPr/p:cNvPr", "name", "Text_TB_0_2"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[6]/p:txBody/a:bodyPr", + { { "tIns", "0" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 0cm, 1.5cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[7]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_0_1.5"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[7]/p:txBody/a:bodyPr", + { { "tIns", "0" }, { "bIns", "540000" } }); + + //Check shape Top/Bottom - 3cm, 0cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[8]/p:nvSpPr/p:cNvPr", "name", "Text_TB_3_0"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[8]/p:txBody/a:bodyPr", + { { "tIns", "1079640" }, { "bIns", "0" } }); + + //Check shape Top/Bottom - 2.5cm, 0cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[9]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_2.5_0"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[9]/p:txBody/a:bodyPr", + { { "tIns", "899640" }, { "bIns", "0" } }); + + //Check shape Top/Bottom - 2cm, 0cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[10]/p:nvSpPr/p:cNvPr", "name", "Text_TB_2_0"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[10]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "0" } }); + + //Check shape Top/Bottom - 1.5cm, 0cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[11]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_1.5_0"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[11]/p:txBody/a:bodyPr", + { { "tIns", "540000" }, { "bIns", "0" } }); + + //Check shape Top/Bottom - 1cm, 2cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[12]/p:nvSpPr/p:cNvPr", "name", "Text_TB_1_2"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[12]/p:txBody/a:bodyPr", + { { "tIns", "360000" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 2cm, 1.5cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[13]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_2_1.5"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[13]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "540000" } }); + + //Check shape Top/Bottom - 1.5cm, 2cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[14]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_1.5_2"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[14]/p:txBody/a:bodyPr", + { { "tIns", "540000" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 2cm, 1.75cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[15]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_2_1.75"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[15]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "630000" } }); + + //Check shape Top/Bottom - 1.75cm, 2cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[16]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_1.75_2"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[16]/p:txBody/a:bodyPr", + { { "tIns", "630000" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 2cm, 2cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[17]/p:nvSpPr/p:cNvPr", "name", "Text_TB_2_2"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[17]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 1cm, 1cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[18]/p:nvSpPr/p:cNvPr", "name", "Text_TB_1_1"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[18]/p:txBody/a:bodyPr", + { { "tIns", "720000" }, { "bIns", "720000" } }); + + //Check shape Top/Bottom - 0.5cm, 0.5cm + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[19]/p:nvSpPr/p:cNvPr", "name", + "Text_TB_0.5_0.5"); + assertXPathAttrs(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[19]/p:txBody/a:bodyPr", + { { "tIns", "180000" }, { "bIns", "180000" } }); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(ShapeImportExportTest); + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/sd/source/ui/dlg/RemoteDialog.cxx libreoffice-7.3.5/sd/source/ui/dlg/RemoteDialog.cxx --- libreoffice-7.3.4/sd/source/ui/dlg/RemoteDialog.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sd/source/ui/dlg/RemoteDialog.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -27,7 +27,7 @@ IMPL_LINK_NOARG(RemoteDialog, HandleConnectButton, weld::Button&, void) { weld::WaitObject(m_xDialog.get()); -#if defined(ENABLE_SDREMOTE) && defined(ENABLE_SDREMOTE_BLUETOOTH) +#if defined(ENABLE_SDREMOTE) auto xEntry = m_xClientBox->GetActiveEntry(); if (!xEntry) return; diff -Nru libreoffice-7.3.4/sd/source/ui/dlg/tpoption.cxx libreoffice-7.3.5/sd/source/ui/dlg/tpoption.cxx --- libreoffice-7.3.4/sd/source/ui/dlg/tpoption.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sd/source/ui/dlg/tpoption.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -498,7 +498,7 @@ void SdTpOptionsMisc::SetImpressMode() { -#ifndef ENABLE_SDREMOTE_BLUETOOTH +#ifndef ENABLE_SDREMOTE m_xCbxEnableSdremote->hide(); #else (void) this; // loplugin:staticmethods diff -Nru libreoffice-7.3.4/sd/source/ui/func/fuarea.cxx libreoffice-7.3.5/sd/source/ui/func/fuarea.cxx --- libreoffice-7.3.4/sd/source/ui/func/fuarea.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sd/source/ui/func/fuarea.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -57,10 +57,10 @@ SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); VclPtr pDlg(pFact->CreateSvxAreaTabDialog(mpViewShell->GetFrameWeld(), &aNewAttr, mpDoc, true)); - pDlg->StartExecuteAsync([pDlg, this](sal_Int32 nResult){ + pDlg->StartExecuteAsync([pDlg, pView = this->mpView, pViewShell = this->mpViewShell](sal_Int32 nResult){ if (nResult == RET_OK) { - mpView->SetAttributes (*(pDlg->GetOutputItemSet ())); + pView->SetAttributes (*(pDlg->GetOutputItemSet ())); // attributes changed, update Listboxes in Objectbars static const sal_uInt16 SidArray[] = { @@ -73,11 +73,11 @@ SID_ATTR_FILL_FLOATTRANSPARENCE, 0 }; - mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray ); + pViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray ); } // deferred until the dialog ends - mpViewShell->Cancel(); + pViewShell->Cancel(); pDlg->disposeOnce(); }); diff -Nru libreoffice-7.3.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx libreoffice-7.3.5/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx --- libreoffice-7.3.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -474,12 +474,21 @@ { // TODO(P3): Unfortunately, need to read stream twice, since // we must write byte count to stdout before +#if POPPLER_CHECK_VERSION(22, 6, 0) + std::optional> pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef() ); + if ( pBuf ) + { + aNewFont.isEmbedded = true; + nSize = pBuf->size(); + } +#else char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize ); if( pBuf ) { aNewFont.isEmbedded = true; gfree(pBuf); } +#endif } m_aFontMap[ nNewId ] = aNewFont; @@ -492,13 +501,29 @@ return; int nSize = 0; +#if POPPLER_CHECK_VERSION(22, 6, 0) + std::optional> pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef() ); + if ( pBuf ) + nSize = pBuf->size(); + if ( nSize == 0 ) + return; +#else char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize ); if( !pBuf ) return; +#endif // ---sync point--- see SYNC STREAMS above fflush(stdout); +#if POPPLER_CHECK_VERSION(22, 6, 0) + if( fwrite(pBuf->data(), sizeof(*pBuf->data()), nSize, g_binary_out) != static_cast(nSize) ) + { + exit(1); // error + } + // ---sync point--- see SYNC STREAMS above + fflush(g_binary_out); +#else if( fwrite(pBuf, sizeof(char), nSize, g_binary_out) != static_cast(nSize) ) { gfree(pBuf); @@ -507,6 +532,7 @@ // ---sync point--- see SYNC STREAMS above fflush(g_binary_out); gfree(pBuf); +#endif } #if POPPLER_CHECK_VERSION(0, 83, 0) @@ -759,7 +785,11 @@ { assert(state); +#if POPPLER_CHECK_VERSION(22, 6, 0) + GfxFont *gfxFont = state->getFont().get(); +#else GfxFont *gfxFont = state->getFont(); +#endif if( !gfxFont ) return; diff -Nru libreoffice-7.3.4/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx libreoffice-7.3.5/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx --- libreoffice-7.3.4/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -138,6 +138,15 @@ _setmode( _fileno( g_binary_out ), _O_BINARY ); #endif +#if POPPLER_CHECK_VERSION(22, 6, 0) + PDFDoc aDoc( std::make_unique(pFileName), + std::optional(pOwnerPasswordStr), + std::optional(pUserPasswordStr) ); + + PDFDoc aErrDoc( std::make_unique(pErrFileName), + std::optional(pOwnerPasswordStr), + std::optional(pUserPasswordStr) ); +#else PDFDoc aDoc( pFileName, pOwnerPasswordStr, pUserPasswordStr ); @@ -145,6 +154,7 @@ PDFDoc aErrDoc( pErrFileName, pOwnerPasswordStr, pUserPasswordStr ); +#endif // Check various permissions for aDoc. PDFDoc &rDoc = aDoc.isOk()? aDoc: aErrDoc; diff -Nru libreoffice-7.3.4/sfx2/source/appl/appserv.cxx libreoffice-7.3.5/sfx2/source/appl/appserv.cxx --- libreoffice-7.3.4/sfx2/source/appl/appserv.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sfx2/source/appl/appserv.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -186,8 +186,10 @@ SfxStringItem aURL(SID_FILE_NAME, ".component:Bibliography/View1"); SfxStringItem aRef(SID_REFERER, "private:user"); SfxStringItem aTarget(SID_TARGETNAME, "_blank"); - SfxViewFrame::Current()->GetDispatcher()->ExecuteList(SID_OPENDOC, - SfxCallMode::ASYNCHRON, { &aURL, &aRef, &aTarget }); + const SfxViewFrame* pViewFrame = SfxViewFrame::Current(); + if ( pViewFrame ) + pViewFrame->GetDispatcher()->ExecuteList(SID_OPENDOC, + SfxCallMode::ASYNCHRON, { &aURL, &aRef, &aTarget }); } catch (const Exception &) { diff -Nru libreoffice-7.3.4/sfx2/source/appl/sfxhelp.cxx libreoffice-7.3.5/sfx2/source/appl/sfxhelp.cxx --- libreoffice-7.3.4/sfx2/source/appl/sfxhelp.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sfx2/source/appl/sfxhelp.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1281,6 +1281,22 @@ impl_showOnlineHelp(aHelpURL, pWidget); return true; } +#ifdef MACOSX + if (@available(macOS 10.14, *)) { + // Workaround: Safari sandboxing prevents it from accessing files in the LibreOffice.app folder + // force online-help instead if Safari is default browser. + CFURLRef pBrowser = LSCopyDefaultApplicationURLForURL( + CFURLCreateWithString( + kCFAllocatorDefault, + static_cast(@"https://www.libreoffice.org"), + nullptr), + kLSRolesAll, nullptr); + if([static_cast(CFURLGetString(pBrowser)) isEqualToString:@"file:///Applications/Safari.app/"]) { + impl_showOnlineHelp(aHelpURL, pWidget); + return true; + } + } +#endif // If the HTML or no help is installed, but aHelpURL nevertheless references valid help content, // that implies that help content belongs to an extension (and thus would not be available diff -Nru libreoffice-7.3.4/sfx2/source/dialog/backingwindow.cxx libreoffice-7.3.5/sfx2/source/dialog/backingwindow.cxx --- libreoffice-7.3.4/sfx2/source/dialog/backingwindow.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sfx2/source/dialog/backingwindow.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -66,8 +66,11 @@ private: BitmapEx maBrandImage; bool mbIsDark = false; + Size m_BmpSize; public: + Size getSize() { return m_BmpSize; } + virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override { weld::CustomWidgetController::SetDrawingArea(pDrawingArea); @@ -94,8 +97,8 @@ if (maBrandImage.GetSizePixel().Width() == nWidth) return; LoadImageForWidth(nWidth); - const Size aBmpSize(maBrandImage.GetSizePixel()); - set_size_request(aBmpSize.Width(), aBmpSize.Height()); + m_BmpSize = maBrandImage.GetSizePixel(); + set_size_request(m_BmpSize.Width(), m_BmpSize.Height()); } virtual void StyleUpdated() override @@ -135,7 +138,7 @@ }; // increase size of the text in the buttons on the left fMultiplier-times -float const g_fMultiplier = 1.4f; +float const g_fMultiplier = 1.2f; BackingWindow::BackingWindow(vcl::Window* i_pParent) : InterimItemWindow(i_pParent, "sfx/ui/startcenter.ui", "StartCenter", false) @@ -371,7 +374,7 @@ // Refetch because the brand image height to match this width is now set aPrefSize = mxAllButtonsBox->get_preferred_size(); - set_height_request(nMenuHeight + aPrefSize.Height()); + set_height_request(nMenuHeight + aPrefSize.Height() + mxBrandImage->getSize().getHeight()); } void BackingWindow::initializeLocalView() diff -Nru libreoffice-7.3.4/shell/source/win32/simplemail/senddoc.cxx libreoffice-7.3.5/shell/source/win32/simplemail/senddoc.cxx --- libreoffice-7.3.4/shell/source/win32/simplemail/senddoc.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/shell/source/win32/simplemail/senddoc.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -58,8 +58,8 @@ std::vector gTo; std::vector gCc; std::vector gBcc; - // Keep temp filepath and displayed name - std::vector> gAttachments; + // Keep temp filepath, displayed name, and "do not delete" flag + std::vector> gAttachments; int gMapiFlags = 0; } @@ -121,11 +121,12 @@ { OSL_ASSERT(pMapiAttachmentList->empty()); - for (const auto& attachment : gAttachments) + for (const auto& [filepath, attachname, nodelete] : gAttachments) { + (void)nodelete; MapiFileDescW mfd; ZeroMemory(&mfd, sizeof(mfd)); - mfd.lpszPathName = const_cast(attachment.first.c_str()); + mfd.lpszPathName = const_cast(filepath.c_str()); // MapiFileDesc documentation (https://msdn.microsoft.com/en-us/library/hh707272) // allows using here either nullptr, or a pointer to empty string. However, // for Outlook 2013, we cannot use nullptr here, and must point to a (possibly @@ -134,7 +135,7 @@ // Since C++11, c_str() must return a pointer to single null character when the // string is empty, so we are OK here in case when there's no explicit file name // passed - mfd.lpszFileName = const_cast(attachment.second.c_str()); + mfd.lpszFileName = const_cast(attachname.c_str()); mfd.nPosition = sal::static_int_cast(-1); pMapiAttachmentList->push_back(mfd); } @@ -239,7 +240,14 @@ sName = argv[i+3]; i += 2; } - gAttachments.emplace_back(sPath, sName); + // Also there may be --nodelete to keep the attachment on exit + bool nodelete = false; + if ((i + 2) < argc && _wcsicmp(argv[i+2], L"--nodelete") == 0) + { + nodelete = true; + ++i; + } + gAttachments.emplace_back(sPath, sName, nodelete); } else if (_wcsicmp(argv[i], L"--langtag") == 0) gLangTag = o3tl::toU(argv[i+1]); @@ -401,8 +409,12 @@ } // Now cleanup the temporary attachment files - for (const auto& rAttachment : gAttachments) - DeleteFileW(rAttachment.first.c_str()); + for (const auto& [filepath, attachname, nodelete] : gAttachments) + { + (void)attachname; + if (!nodelete) + DeleteFileW(filepath.c_str()); + } // Only show the error message if UI was requested if ((ulRet != SUCCESS_SUCCESS) && (gMapiFlags & (MAPI_DIALOG | MAPI_LOGON_UI))) @@ -434,11 +446,13 @@ for (const auto& address : gBcc) oss << "--bcc " << address << std::endl; - for (const auto& attachment : gAttachments) + for (const auto& [filepath, attachname, nodelete] : gAttachments) { - oss << "--attach " << attachment.first << std::endl; - if (!attachment.second.empty()) - oss << "--attach-name " << attachment.second << std::endl; + oss << "--attach " << filepath << std::endl; + if (!attachname.empty()) + oss << "--attach-name " << attachname << std::endl; + if (nodelete) + oss << "--nodelete" << std::endl; } if (gMapiFlags & MAPI_DIALOG) diff -Nru libreoffice-7.3.4/shell/source/win32/simplemail/smplmailclient.cxx libreoffice-7.3.5/shell/source/win32/simplemail/smplmailclient.cxx --- libreoffice-7.3.4/shell/source/win32/simplemail/smplmailclient.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/shell/source/win32/simplemail/smplmailclient.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -180,7 +180,8 @@ } } -OUString CSmplMailClient::CopyAttachment(const OUString& sOrigAttachURL, OUString& sUserVisibleName) +OUString CSmplMailClient::CopyAttachment(const OUString& sOrigAttachURL, OUString& sUserVisibleName, + bool& nodelete) { // We do two things here: // 1. Make the attachment temporary filename to not contain any fancy characters possible in @@ -194,11 +195,16 @@ maAttachmentFiles.back()->EnableKillingFile(); INetURLObject aFilePathObj(maAttachmentFiles.back()->GetURL()); OUString sNewAttachmentURL = aFilePathObj.GetMainURL(INetURLObject::DecodeMechanism::NONE); - if (osl::File::copy(sOrigAttachURL, sNewAttachmentURL) == osl::FileBase::RC::E_None) + OUString sCorrectedOrigAttachURL(sOrigAttachURL); + // Make sure to convert to URL, if a system path was passed to XSimpleMailMessage + // Ignore conversion error, in which case sCorrectedOrigAttachURL is unchanged + osl::FileBase::getFileURLFromSystemPath(sCorrectedOrigAttachURL, sCorrectedOrigAttachURL); + if (osl::File::copy(sCorrectedOrigAttachURL, sNewAttachmentURL) == osl::FileBase::RC::E_None) { INetURLObject url(sOrigAttachURL, INetURLObject::EncodeMechanism::WasEncoded); sUserVisibleName = url.getName(INetURLObject::LAST_SEGMENT, true, INetURLObject::DecodeMechanism::WithCharset); + nodelete = false; } else { @@ -207,6 +213,7 @@ // is the absent attachment file anyway. sNewAttachmentURL = sOrigAttachURL; maAttachmentFiles.pop_back(); + nodelete = true; // Do not delete a non-temporary in senddoc } return sNewAttachmentURL; } @@ -294,7 +301,8 @@ for (const auto& attachment : attachments) { OUString sDisplayName; - OUString sTempFileURL(CopyAttachment(attachment, sDisplayName)); + bool nodelete = false; + OUString sTempFileURL(CopyAttachment(attachment, sDisplayName, nodelete)); OUString sysPath; osl::FileBase::RC err = osl::FileBase::getSystemPathFromFileURL(sTempFileURL, sysPath); if (err != osl::FileBase::E_None) @@ -310,6 +318,8 @@ rCommandArgs.push_back("--attach-name"); rCommandArgs.push_back(sDisplayName); } + if (nodelete) + rCommandArgs.push_back("--nodelete"); } if (!(aFlag & NO_USER_INTERFACE)) diff -Nru libreoffice-7.3.4/shell/source/win32/simplemail/smplmailclient.hxx libreoffice-7.3.5/shell/source/win32/simplemail/smplmailclient.hxx --- libreoffice-7.3.4/shell/source/win32/simplemail/smplmailclient.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/shell/source/win32/simplemail/smplmailclient.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -38,7 +38,7 @@ private: void validateParameter(const css::uno::Reference& xSimpleMailMessage, sal_Int32 aFlag); void assembleCommandLine(const css::uno::Reference& xSimpleMailMessage, sal_Int32 aFlag, std::vector& rCommandArgs); - OUString CopyAttachment(const OUString& sOrigAttachURL, OUString& sUserVisibleName); + OUString CopyAttachment(const OUString& sOrigAttachURL, OUString& sUserVisibleName, bool& nodelete); // Don't try to delete the copied attachment files; let the spawned process cleanup them void ReleaseAttachments(); diff -Nru libreoffice-7.3.4/solenv/bin/macosx-codesign-app-bundle libreoffice-7.3.5/solenv/bin/macosx-codesign-app-bundle --- libreoffice-7.3.4/solenv/bin/macosx-codesign-app-bundle 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/solenv/bin/macosx-codesign-app-bundle 2022-07-15 19:12:51.000000000 +0000 @@ -31,6 +31,9 @@ # All data files are in Resources and included in the app bundle signature # through that. I think. other_files='' + # HACK: remove donate menu entries, need to support apple-pay and be verified + # as non profit as a bare minimum to allow asking.... + sed -I "" -e '\##d' $APP_BUNDLE/Contents/Resources/config/soffice.cfg/modules/*/menubar/menubar.xml else # We then want to sign data files, too, hmm. entitlements="--entitlements $BUILDDIR/hardened_runtime.xcent" diff -Nru libreoffice-7.3.4/sources.ver libreoffice-7.3.5/sources.ver --- libreoffice-7.3.4/sources.ver 2022-06-01 21:09:01.000000000 +0000 +++ libreoffice-7.3.5/sources.ver 2022-07-15 19:15:53.000000000 +0000 @@ -1 +1 @@ -lo_sources_ver=7.3.4.2 +lo_sources_ver=7.3.5.2 diff -Nru libreoffice-7.3.4/starmath/source/mathml/iterator.cxx libreoffice-7.3.5/starmath/source/mathml/iterator.cxx --- libreoffice-7.3.4/starmath/source/mathml/iterator.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/starmath/source/mathml/iterator.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -56,7 +56,11 @@ { if (pMlElementTree == nullptr) return; - SmMlIteratorBottomToTop(pMlElementTree, deleteElement, nullptr); + for (size_t i = 0; i < pMlElementTree->getSubElementsCount(); ++i) + { + SmMlIteratorFree(pMlElementTree->getSubElement(i)); + } + deleteElement(pMlElementTree, nullptr); } SmMlElement* SmMlIteratorCopy(SmMlElement* pMlElementTree) diff -Nru libreoffice-7.3.4/svgio/qa/cppunit/SvgImportTest.cxx libreoffice-7.3.5/svgio/qa/cppunit/SvgImportTest.cxx --- libreoffice-7.3.4/svgio/qa/cppunit/SvgImportTest.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svgio/qa/cppunit/SvgImportTest.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -412,9 +412,13 @@ CPPUNIT_ASSERT (pDocument); - assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient[1]", "focusx", "1"); - assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient[1]", "focusy", "1"); - assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient[1]", "radius", "3"); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient", "startx", "1"); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient", "starty", "1"); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient/focalx", 0); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient/focaly", 0); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient", "radius", "3"); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient", "spreadmethod", "pad"); + assertXPath(pDocument, "/primitive2D/transform/objectinfo/svgradialgradient", "opacity", "1"); } void Test::testTdf97543() @@ -738,8 +742,12 @@ CPPUNIT_ASSERT (pDocument); //Check that both rectangles use the gradient as fill + assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[1]", "startx", "1"); + assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[1]", "starty", "1"); assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[1]", "endx", "2"); assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[1]", "endy", "1"); + assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[2]", "startx", "0"); + assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[2]", "starty", "0"); assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[2]", "endx", "0"); assertXPath(pDocument, "/primitive2D/transform/transform/svglineargradient[2]", "endy", "0"); } diff -Nru libreoffice-7.3.4/svl/source/misc/sharedstringpool.cxx libreoffice-7.3.5/svl/source/misc/sharedstringpool.cxx --- libreoffice-7.3.4/svl/source/misc/sharedstringpool.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svl/source/misc/sharedstringpool.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -92,7 +92,7 @@ { auto& rMap = mpImpl->maStrMap; - rtl_uString *pResultLower, *pResultUpper; + rtl_uString *pResultLower = {}, *pResultUpper = {}; // bogus GCC 12 -Werror=maybe-uninitialized if (rMap.find_fn(rStr.pData, [&](const Mapped& rMapped) { pResultLower = rMapped.first.pData; pResultUpper = rMapped.second.pData; diff -Nru libreoffice-7.3.4/svl/source/numbers/zforlist.cxx libreoffice-7.3.5/svl/source/numbers/zforlist.cxx --- libreoffice-7.3.4/svl/source/numbers/zforlist.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svl/source/numbers/zforlist.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -4285,12 +4285,16 @@ } -static void addToCurrencyFormatsList( NfWSStringsDtor& rStrArr, const OUString& rFormat ) +static std::ptrdiff_t addToCurrencyFormatsList( NfWSStringsDtor& rStrArr, const OUString& rFormat ) { // Prevent duplicates even over subsequent calls of // GetCurrencyFormatStrings() with the same vector. - if (std::find( rStrArr.begin(), rStrArr.end(), rFormat) == rStrArr.end()) - rStrArr.push_back( rFormat); + NfWSStringsDtor::const_iterator it( std::find( rStrArr.begin(), rStrArr.end(), rFormat)); + if (it != rStrArr.end()) + return it - rStrArr.begin(); + + rStrArr.push_back( rFormat); + return rStrArr.size() - 1; } @@ -4319,9 +4323,7 @@ + ";" + aRed + aNegativeBank; - addToCurrencyFormatsList( rStrArr, format2); - - nDefault = rStrArr.size() - 1; + nDefault = addToCurrencyFormatsList( rStrArr, format2); } else { @@ -4374,8 +4376,7 @@ { addToCurrencyFormatsList( rStrArr, format3); } - addToCurrencyFormatsList( rStrArr, format4); - nDefault = rStrArr.size() - 1; + nDefault = addToCurrencyFormatsList( rStrArr, format4); if (rCurr.GetDigits()) { addToCurrencyFormatsList( rStrArr, format5); diff -Nru libreoffice-7.3.4/svl/source/numbers/zformat.cxx libreoffice-7.3.5/svl/source/numbers/zformat.cxx --- libreoffice-7.3.4/svl/source/numbers/zformat.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svl/source/numbers/zformat.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2448,7 +2448,7 @@ bool bRes = false; OutString.clear(); *ppColor = nullptr; // No color change - if (eType & SvNumFormatType::LOGICAL) + if (eType & SvNumFormatType::LOGICAL && sFormatstring == rScan.GetKeywords()[NF_KEY_BOOLEAN]) { if (fNumber) { @@ -2614,6 +2614,9 @@ case SvNumFormatType::CURRENCY: bRes |= ImpGetNumberOutput(fNumber, nIx, sBuff); break; + case SvNumFormatType::LOGICAL: + bRes |= ImpGetLogicalOutput(fNumber, nIx, sBuff); + break; case SvNumFormatType::FRACTION: bRes |= ImpGetFractionOutput(fNumber, nIx, sBuff); break; @@ -4286,6 +4289,29 @@ return bRes; } +bool SvNumberformat::ImpGetLogicalOutput(double fNumber, + sal_uInt16 nIx, + OUStringBuffer& sStr) +{ + bool bRes = false; + const ImpSvNumberformatInfo& rInfo = NumFor[nIx].Info(); + const sal_uInt16 nCnt = NumFor[nIx].GetCount(); + for (sal_uInt16 j = 0; j < nCnt; ++j) + { + switch (rInfo.nTypeArray[j]) + { + case NF_KEY_BOOLEAN: + sStr.append( fNumber ? rScan.GetTrueString() : rScan.GetFalseString()); + break; + case NF_SYMBOLTYPE_STRING: + sStr.append( rInfo.sStrArray[j]); + break; + } + } + impTransliterate(sStr, NumFor[nIx].GetNatNum()); + return bRes; +} + bool SvNumberformat::ImpGetNumberOutput(double fNumber, sal_uInt16 nIx, OUStringBuffer& sStr) diff -Nru libreoffice-7.3.4/svtools/source/control/ctrlbox.cxx libreoffice-7.3.5/svtools/source/control/ctrlbox.cxx --- libreoffice-7.3.4/svtools/source/control/ctrlbox.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svtools/source/control/ctrlbox.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -343,7 +343,8 @@ gUserItemSz.setHeight(gUserItemSz.Height() / 10); size_t nMaxDeviceHeight = SAL_MAX_INT16 / 2; // see limitXCreatePixmap - gPreviewsPerDevice = nMaxDeviceHeight / gUserItemSz.Height(); + assert(gUserItemSz.Height() != 0); + gPreviewsPerDevice = gUserItemSz.Height() == 0 ? 16 : nMaxDeviceHeight / gUserItemSz.Height(); } } diff -Nru libreoffice-7.3.4/svx/qa/unit/table.cxx libreoffice-7.3.5/svx/qa/unit/table.cxx --- libreoffice-7.3.4/svx/qa/unit/table.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/qa/unit/table.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -24,6 +24,11 @@ #include #include #include +#include +#include +#include +#include +#include using namespace ::com::sun::star; @@ -99,6 +104,39 @@ // itself and the transparency of the cell fill. assertXPath(pDocument, "//objectinfo/unifiedtransparence[1]", "transparence", "80"); } + +CPPUNIT_TEST_FIXTURE(Test, testSvxTableControllerSetAttrToSelectedShape) +{ + // Given a document with a table shape, editing cell text: + getComponent() = loadFromDesktop("private:factory/simpress", + "com.sun.star.presentation.PresentationDocument"); + uno::Sequence aArgs + = { comphelper::makePropertyValue("Rows", sal_Int32(2)), + comphelper::makePropertyValue("Columns", sal_Int32(2)) }; + dispatchCommand(mxComponent, ".uno:InsertTable", aArgs); + uno::Reference xDrawPagesSupplier(getComponent(), uno::UNO_QUERY); + uno::Reference xDrawPage(xDrawPagesSupplier->getDrawPages()->getByIndex(0), + uno::UNO_QUERY); + auto pDrawPage = dynamic_cast(xDrawPage.get()); + CPPUNIT_ASSERT(pDrawPage); + SdrPage* pSdrPage = pDrawPage->GetSdrPage(); + auto pSdrObject + = dynamic_cast(pSdrPage->GetObj(pSdrPage->GetObjCount() - 1)); + SfxViewShell* pViewShell = SfxViewShell::Current(); + SdrView* pSdrView = pViewShell->GetDrawView(); + pSdrView->SdrBeginTextEdit(pSdrObject); + CPPUNIT_ASSERT(pSdrView->IsTextEdit()); + const EditTextObject& rEdit = pSdrObject->getText(0)->GetOutlinerParaObject()->GetTextObject(); + SfxItemSet aSet(rEdit.GetParaAttribs(0)); + auto pTableController + = dynamic_cast(pSdrView->getSelectionController().get()); + + // When applying attributes which only affect the cell text, not the table shape: + pTableController->SetAttrToSelectedShape(aSet); + + // Then make sure the text edit is not ended: + CPPUNIT_ASSERT(pSdrView->IsTextEdit()); +} } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/svx/source/dialog/srchdlg.cxx libreoffice-7.3.5/svx/source/dialog/srchdlg.cxx --- libreoffice-7.3.4/svx/source/dialog/srchdlg.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/dialog/srchdlg.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2342,16 +2342,12 @@ return aInfo; } -static void lcl_SetSearchLabelWindow(const OUString& rStr) +static void lcl_SetSearchLabelWindow(const OUString& rStr, SfxViewFrame& rViewFrame) { - SfxViewFrame* pViewFrame = SfxViewFrame::Current(); - if (!pViewFrame) - return; - bool bNotFound = rStr == SvxResId(RID_SVXSTR_SEARCH_NOT_FOUND); css::uno::Reference< css::beans::XPropertySet > xPropSet( - pViewFrame->GetFrame().GetFrameInterface(), css::uno::UNO_QUERY_THROW); + rViewFrame.GetFrame().GetFrameInterface(), css::uno::UNO_QUERY_THROW); css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; xPropSet->getPropertyValue("LayoutManager") >>= xLayoutManager; css::uno::Reference< css::ui::XUIElement > xUIElement = @@ -2422,6 +2418,10 @@ void SvxSearchDialogWrapper::SetSearchLabel(const SearchLabel& rSL) { + SfxViewFrame* pViewFrame = SfxViewFrame::Current(); + if (!pViewFrame) + return; + OUString sStr; if (rSL == SearchLabel::End) sStr = SvxResId(RID_SVXSTR_SEARCH_END); @@ -2442,17 +2442,21 @@ else if (rSL == SearchLabel::ReminderStartWrapped) sStr = SvxResId(RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED); - lcl_SetSearchLabelWindow(sStr); - if (SvxSearchDialogWrapper *pWrp = static_cast( SfxViewFrame::Current()-> + lcl_SetSearchLabelWindow(sStr, *pViewFrame); + + if (SvxSearchDialogWrapper *pWrp = static_cast( pViewFrame-> GetChildWindow( SvxSearchDialogWrapper::GetChildWindowId() ))) pWrp->getDialog()->SetSearchLabel(sStr); } void SvxSearchDialogWrapper::SetSearchLabel(const OUString& sStr) { + SfxViewFrame* pViewFrame = SfxViewFrame::Current(); + if (!pViewFrame) + return; - lcl_SetSearchLabelWindow(sStr); - if (SvxSearchDialogWrapper *pWrp = static_cast( SfxViewFrame::Current()-> + lcl_SetSearchLabelWindow(sStr, *pViewFrame); + if (SvxSearchDialogWrapper *pWrp = static_cast( pViewFrame-> GetChildWindow( SvxSearchDialogWrapper::GetChildWindowId() ))) pWrp->getDialog()->SetSearchLabel(sStr); } diff -Nru libreoffice-7.3.4/svx/source/form/formcontrolling.cxx libreoffice-7.3.5/svx/source/form/formcontrolling.cxx --- libreoffice-7.3.4/svx/source/form/formcontrolling.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/form/formcontrolling.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -425,6 +425,7 @@ SID_FM_VIEW_AS_GRID }; sal_Int32 nFeatureCount = SAL_N_ELEMENTS( pSupportedFeatures ); + aSupportedFeatures.reserve(nFeatureCount); // work around GCC12 spurious -Werror=stringop-overflow= aSupportedFeatures.insert( aSupportedFeatures.begin(), pSupportedFeatures, pSupportedFeatures + nFeatureCount ); m_pInvalidationCallback->invalidateFeatures( aSupportedFeatures ); diff -Nru libreoffice-7.3.4/svx/source/styles/CommonStylePreviewRenderer.cxx libreoffice-7.3.5/svx/source/styles/CommonStylePreviewRenderer.cxx --- libreoffice-7.3.4/svx/source/styles/CommonStylePreviewRenderer.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/styles/CommonStylePreviewRenderer.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -218,7 +218,10 @@ aFontDrawPosition.AdjustY((aRectangle.GetHeight() - aPixelSize.Height()) / 2 ); } - mrOutputDev.DrawText(aFontDrawPosition, rText); + if (m_pFont) + m_pFont->QuickDrawText( &mrOutputDev, aFontDrawPosition, rText, 0, rText.getLength(), {} ); + else + mrOutputDev.DrawText(aFontDrawPosition, rText); mrOutputDev.Pop(); diff -Nru libreoffice-7.3.4/svx/source/svdraw/svdomedia.cxx libreoffice-7.3.5/svx/source/svdraw/svdomedia.cxx --- libreoffice-7.3.4/svx/source/svdraw/svdomedia.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/svdraw/svdomedia.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -146,7 +146,9 @@ OUString aRealURL = m_xImpl->m_MediaProperties.getTempURL(); if( aRealURL.isEmpty() ) aRealURL = m_xImpl->m_MediaProperties.getURL(); - m_xImpl->m_xCachedSnapshot = avmedia::MediaWindow::grabFrame( aRealURL, m_xImpl->m_MediaProperties.getReferer(), m_xImpl->m_MediaProperties.getMimeType()); + uno::Reference xGraphic + = m_xImpl->m_MediaProperties.getGraphic().GetXGraphic(); + m_xImpl->m_xCachedSnapshot = avmedia::MediaWindow::grabFrame( aRealURL, m_xImpl->m_MediaProperties.getReferer(), m_xImpl->m_MediaProperties.getMimeType(), xGraphic); } #endif return m_xImpl->m_xCachedSnapshot; diff -Nru libreoffice-7.3.4/svx/source/table/tablecontroller.cxx libreoffice-7.3.5/svx/source/table/tablecontroller.cxx --- libreoffice-7.3.4/svx/source/table/tablecontroller.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/table/tablecontroller.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2752,6 +2752,13 @@ SfxItemSetFixed aSet(*rAttr.GetPool()); aSet.Put(rAttr); + if (!aSet.Count()) + { + // If there are no items to be applied on the shape, then don't set anything, it would + // terminate text edit without a good reason, which affects undo/redo. + return; + } + // Set shadow items on the marked shape. mrView.SetAttrToMarked(aSet, /*bReplaceAll=*/false); } diff -Nru libreoffice-7.3.4/svx/source/unodraw/unoshape.cxx libreoffice-7.3.5/svx/source/unodraw/unoshape.cxx --- libreoffice-7.3.4/svx/source/unodraw/unoshape.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/source/unodraw/unoshape.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1286,10 +1286,6 @@ if ( pObject->IsInserted() && pObject->getSdrPageFromSdrObject() ) { - OSL_ENSURE( HasSdrObjectOwnership(), "SvxShape::dispose: is the below code correct?" ); - // normally, we are allowed to free the SdrObject only if we have its ownership. - // Why isn't this checked here? - SdrPage* pPage = pObject->getSdrPageFromSdrObject(); // delete the SdrObject from the page const size_t nCount = pPage->GetObjCount(); @@ -1298,7 +1294,10 @@ if ( pPage->GetObj( nNum ) == pObject ) { OSL_VERIFY( pPage->RemoveObject( nNum ) == pObject ); - bFreeSdrObject = true; + if (HasSdrObjectOwnership()) + { + bFreeSdrObject = true; + } break; } } diff -Nru libreoffice-7.3.4/svx/uiconfig/ui/docrecoveryrecoverdialog.ui libreoffice-7.3.5/svx/uiconfig/ui/docrecoveryrecoverdialog.ui --- libreoffice-7.3.4/svx/uiconfig/ui/docrecoveryrecoverdialog.ui 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/svx/uiconfig/ui/docrecoveryrecoverdialog.ui 2022-07-15 19:12:51.000000000 +0000 @@ -139,7 +139,7 @@ liststore1 False True - 0 + 1 False diff -Nru libreoffice-7.3.4/sw/inc/editsh.hxx libreoffice-7.3.5/sw/inc/editsh.hxx --- libreoffice-7.3.4/sw/inc/editsh.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/inc/editsh.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -150,7 +150,7 @@ that will be used by GetGraphic() and GetGraphicSize(). */ SAL_DLLPRIVATE SwGrfNode *GetGrfNode_() const ; - SAL_DLLPRIVATE void DeleteSel( SwPaM& rPam, bool* pUndo = nullptr ); + SAL_DLLPRIVATE void DeleteSel(SwPaM& rPam, bool isArtificialSelection, bool* pUndo = nullptr); SAL_DLLPRIVATE void SetSectionAttr_( SwSectionFormat& rSectFormat, const SfxItemSet& rSet ); @@ -172,7 +172,7 @@ /** Delete content of all ranges. If whole nodes are selected, these nodes get deleted. */ - bool Delete(); + bool Delete(bool isArtificialSelection = false); /// Remove a complete paragraph. bool DelFullPara(); diff -Nru libreoffice-7.3.4/sw/inc/hints.hxx libreoffice-7.3.5/sw/inc/hints.hxx --- libreoffice-7.3.4/sw/inc/hints.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/inc/hints.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -80,8 +80,10 @@ public: sal_Int32 nPos; sal_Int32 nLen; + bool isInsideFieldmarkCommand; + bool isInsideFieldmarkResult; - SwInsText( sal_Int32 nP, sal_Int32 nL ); + SwInsText(sal_Int32 nP, sal_Int32 nL, bool isInFMCommand, bool isInFMResult); }; class SwDelChr final : public SwMsgPoolItem diff -Nru libreoffice-7.3.4/sw/inc/IDocumentContentOperations.hxx libreoffice-7.3.5/sw/inc/IDocumentContentOperations.hxx --- libreoffice-7.3.4/sw/inc/IDocumentContentOperations.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/inc/IDocumentContentOperations.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -82,6 +82,16 @@ template<> struct typed_flags : is_typed_flags {}; } +enum class SwDeleteFlags +{ + Default = 0, + ArtificialSelection = (1<<0), ///< keyboard delete, artificial selection, avoid deleting flys +}; +namespace o3tl +{ + template<> struct typed_flags : is_typed_flags {}; +} + /** Text operation/manipulation interface */ class IDocumentContentOperations @@ -144,6 +154,7 @@ Needed for hiding of deletion redlines */ virtual bool DeleteAndJoin( SwPaM&, + SwDeleteFlags flags = SwDeleteFlags::Default, const bool bForceJoinNext = false ) = 0; virtual bool MoveRange(SwPaM&, SwPosition&, SwMoveFlags) = 0; diff -Nru libreoffice-7.3.4/sw/inc/ndindex.hxx libreoffice-7.3.5/sw/inc/ndindex.hxx --- libreoffice-7.3.4/sw/inc/ndindex.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/inc/ndindex.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -36,7 +36,16 @@ void RegisterIndex( SwNodes& rNodes ) { if(!rNodes.m_vIndices) + { +#if defined(__GNUC__) && __GNUC__ == 12 +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdangling-pointer" +#endif rNodes.m_vIndices = this; +#if defined(__GNUC__) && __GNUC__ == 12 +#pragma GCC diagnostic pop +#endif + } MoveTo(rNodes.m_vIndices); } void DeRegisterIndex( SwNodes& rNodes ) diff -Nru libreoffice-7.3.4/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-7.3.5/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-7.3.4/sw/qa/extras/htmlexport/htmlexport.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/htmlexport/htmlexport.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -802,9 +802,8 @@ //
    was missing, so the XHTML fragment wasn't a valid // xhtml.BlkStruct.class type anymore. assertXPath(pDoc, "/html/body/div/table/tr/th", 1); - // Make sure that row background is written using CSS. - OUString aStyle = getXPath(pDoc, "/html/body/div/table/tr/th", "style"); - CPPUNIT_ASSERT(aStyle.startsWith("background: ")); + // Make sure that the cell background is not written using CSS. + assertXPathNoAttribute(pDoc, "/html/body/div/table/tr/th", "style"); // The attribute was present, which is not valid in reqif-xhtml. assertXPathNoAttribute(pDoc, "/html/body/div/table/tr/th", "bgcolor"); } @@ -1535,6 +1534,47 @@ "/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:ol/reqif-xhtml:li/reqif-xhtml:p", 2); } +CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testListHeaderAndItem) +{ + // Given a document with a list, first para is not numbered, but the second is: + loadURL("private:factory/swriter", nullptr); + SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); + SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell(); + pWrtShell->Insert("not numbered"); + SwDoc* pDoc = pWrtShell->GetDoc(); + sal_uInt16 nPos = pDoc->MakeNumRule(pDoc->GetUniqueNumRuleName()); + SwNumRule* pNumRule = pDoc->GetNumRuleTable()[nPos]; + { + SwNode& rNode = pWrtShell->GetCursor()->GetPoint()->nNode.GetNode(); + SwTextNode& rTextNode = *rNode.GetTextNode(); + rTextNode.SetAttr(SwNumRuleItem(pNumRule->GetName())); + rTextNode.SetCountedInList(false); + } + pWrtShell->SplitNode(); + pWrtShell->Insert2("numbered"); + { + SwNode& rNode = pWrtShell->GetCursor()->GetPoint()->nNode.GetNode(); + SwTextNode& rTextNode = *rNode.GetTextNode(); + rTextNode.SetAttr(SwNumRuleItem(pNumRule->GetName())); + } + + // When exporting to ReqIF: + ExportToReqif(); + + // Then make sure the output is well-formed xhtml: + SvMemoryStream aStream; + HtmlExportTest::wrapFragment(maTempFile, aStream); + xmlDocUniquePtr pXmlDoc = parseXmlStream(&aStream); + // Without the accompanying fix in place, this test would have failed: + // Entity: line 3: parser error : Opening and ending tag mismatch: ol line 3 and li + // not numbered + CPPUNIT_ASSERT(pXmlDoc); + // Make sure that in case the list has a header and an item, then both are wrapped in an
  • + // element. + assertXPath(pXmlDoc, + "/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:ol/reqif-xhtml:li/reqif-xhtml:p", 2); +} + CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testBlockQuoteNoMargin) { // Given a document with some text, para style set to Quotations, no bottom margin: @@ -2135,10 +2175,14 @@ pWrtShell->SetTabBackground(aBrush); pWrtShell->Down(/*bSelect=*/false); pWrtShell->SplitNode(); - pWrtShell->InsertTable(aInsertTableOptions, /*nRows=*/1, /*nCols=*/1); + pWrtShell->InsertTable(aInsertTableOptions, /*nRows=*/2, /*nCols=*/1); pWrtShell->MoveTable(GotoPrevTable, fnTableStart); aBrush.SetColor(0x00ff00); pWrtShell->SetRowBackground(aBrush); + pWrtShell->Down(/*bSelect=*/false); + // Second row has an explicit transparent background. + aBrush.SetColor(COL_TRANSPARENT); + pWrtShell->SetRowBackground(aBrush); // When exporting to reqif-xhtml: ExportToReqif(); @@ -2155,6 +2199,8 @@ assertXPath(pXmlDoc, "//reqif-xhtml:table[2]/reqif-xhtml:tr[1]", "style", "background: #00ff00"); assertXPathNoAttribute(pXmlDoc, "//reqif-xhtml:table[2]/reqif-xhtml:tr[1]", "bgcolor"); + // Second row has no explicit style, the default is not written. + assertXPathNoAttribute(pXmlDoc, "//reqif-xhtml:table[2]/reqif-xhtml:tr[2]", "style"); } CPPUNIT_TEST_FIXTURE(HtmlExportTest, testImageKeepRatio) Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sw/qa/extras/mailmerge/data/grabbagtest.docx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sw/qa/extras/mailmerge/data/grabbagtest.docx differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sw/qa/extras/mailmerge/data/onecell.xlsx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sw/qa/extras/mailmerge/data/onecell.xlsx differ diff -Nru libreoffice-7.3.4/sw/qa/extras/mailmerge/mailmerge.cxx libreoffice-7.3.5/sw/qa/extras/mailmerge/mailmerge.cxx --- libreoffice-7.3.4/sw/qa/extras/mailmerge/mailmerge.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/mailmerge/mailmerge.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -16,7 +16,9 @@ #include #include +#include #include +#include #include #include #include @@ -77,7 +79,7 @@ * calling executeMailMerge() after modifying the job arguments. */ void executeMailMergeTest( const char* filename, const char* datasource, const char* tablename, - bool file, int selection, const char* column ) + char const*const filter, int selection, const char* column ) { maMMtestFilename = filename; header(); @@ -89,7 +91,7 @@ const OUString aURI( m_directories.getURLFromSrc(mpTestDocumentPath) + OUString::createFromAscii(datasource) ); const OUString aPrefix = column ? OUString::createFromAscii( column ) : "LOMM_"; const OUString aDBName = registerDBsource( aURI, aWorkDir ); - initMailMergeJobAndArgs( filename, tablename, aDBName, aPrefix, aWorkDir, file, selection, column != nullptr ); + initMailMergeJobAndArgs( filename, tablename, aDBName, aPrefix, aWorkDir, filter, selection, column != nullptr ); verify(); finish(); @@ -138,7 +140,8 @@ } void initMailMergeJobAndArgs( const char* filename, const char* tablename, const OUString &aDBName, - const OUString &aPrefix, const OUString &aWorkDir, bool file, int nDataSets, + const OUString &aPrefix, const OUString &aWorkDir, + char const*const filter, int nDataSets, const bool bPrefixIsColumn ) { uno::Reference< task::XJob > xJob( getMultiServiceFactory()->createInstance( "com.sun.star.text.MailMerge" ), uno::UNO_QUERY_THROW ); @@ -146,13 +149,16 @@ mMMargs.reserve( 15 ); - mMMargs.emplace_back( UNO_NAME_OUTPUT_TYPE, uno::Any( file ? text::MailMergeType::FILE : text::MailMergeType::SHELL ) ); + mMMargs.emplace_back( UNO_NAME_OUTPUT_TYPE, uno::Any( filter ? text::MailMergeType::FILE : text::MailMergeType::SHELL ) ); mMMargs.emplace_back( UNO_NAME_DOCUMENT_URL, uno::Any( ( OUString( m_directories.getURLFromSrc(mpTestDocumentPath) + OUString::createFromAscii(filename)) ) ) ); mMMargs.emplace_back( UNO_NAME_DATA_SOURCE_NAME, uno::Any( aDBName ) ); mMMargs.emplace_back( UNO_NAME_OUTPUT_URL, uno::Any( aWorkDir ) ); - if (file) + if (filter) + { mMMargs.emplace_back( UNO_NAME_FILE_NAME_PREFIX, uno::Any( aPrefix ) ); + mMMargs.emplace_back(UNO_NAME_SAVE_FILTER, uno::Any(OUString::createFromAscii(filter))); + } if (bPrefixIsColumn) mMMargs.emplace_back( UNO_NAME_FILE_NAME_FROM_COLUMN, uno::Any( true ) ); @@ -256,7 +262,7 @@ /** Loads number-th document from mail merge. Requires file output from mail merge. */ - void loadMailMergeDocument( int number ) + void loadMailMergeDocument(int number, char const*const ext = ".odt") { OUString name; if (!msMailMergeOutputPrefix.isEmpty()) @@ -268,7 +274,7 @@ aURLObj.SetSmartURL( msMailMergeDocumentURL ); name = aURLObj.GetBase(); } - name += OUString::number( number ) + ".odt"; + name += OUString::number(number) + OStringToOUString(std::string_view(ext, strlen(ext)), RTL_TEXTENCODING_ASCII_US); loadMailMergeDocument( name ); } @@ -298,7 +304,7 @@ const char* maMMtestFilename; }; -#define DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, file, BaseClass, selection, column) \ +#define DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, filter, BaseClass, selection, column) \ class TestName : public BaseClass { \ protected: \ virtual OUString getTestName() override { return #TestName; } \ @@ -308,7 +314,7 @@ CPPUNIT_TEST_SUITE_END(); \ \ void MailMerge() { \ - executeMailMergeTest(filename, datasource, tablename, file, selection, column); \ + executeMailMergeTest(filename, datasource, tablename, filter, selection, column); \ } \ void verify() override; \ }; \ @@ -317,17 +323,17 @@ // Will generate the resulting document in mxMMDocument. #define DECLARE_SHELL_MAILMERGE_TEST(TestName, filename, datasource, tablename) \ - DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, false, MMTest, 0, nullptr) + DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, nullptr, MMTest, 0, nullptr) // Will generate documents as files, use loadMailMergeDocument(). #define DECLARE_FILE_MAILMERGE_TEST(TestName, filename, datasource, tablename) \ - DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, true, MMTest, 0, nullptr) + DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, "writer8", MMTest, 0, nullptr) #define DECLARE_SHELL_MAILMERGE_TEST_SELECTION(TestName, filename, datasource, tablename, selection) \ - DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, false, MMTest, selection, nullptr) + DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, nullptr, MMTest, selection, nullptr) #define DECLARE_FILE_MAILMERGE_TEST_COLUMN(TestName, filename, datasource, tablename, column) \ - DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, true, MMTest, 0, column) + DECLARE_MAILMERGE_TEST(TestName, filename, datasource, tablename, "writer8", MMTest, 0, column) int MMTest::documentStartPageNumber( int document ) const { // See documentStartPageNumber() . @@ -1292,5 +1298,65 @@ } } +namespace com::sun::star::table { + +static std::ostream& operator<<(std::ostream& rStream, table::BorderLine const& rLine) +{ + rStream << "BorderLine(" << rLine.Color << "," << rLine.InnerLineWidth << "," << rLine.OuterLineWidth << "," << rLine.LineDistance << ")"; + return rStream; +} + +static std::ostream& operator<<(std::ostream& rStream, table::TableBorder const& rBorder) +{ + rStream << "TableBorder(\n " + << rBorder.TopLine << "," << static_cast(rBorder.IsTopLineValid) << ",\n " + << rBorder.BottomLine << "," << static_cast(rBorder.IsBottomLineValid) << ",\n " + << rBorder.LeftLine << "," << static_cast(rBorder.IsLeftLineValid) << ",\n " + << rBorder.RightLine << "," << static_cast(rBorder.IsRightLineValid) << ",\n " + << rBorder.HorizontalLine << "," << static_cast(rBorder.IsHorizontalLineValid) << ",\n " + << rBorder.VerticalLine << "," << static_cast(rBorder.IsVerticalLineValid) << ",\n " + << rBorder.Distance << "," << static_cast(rBorder.IsDistanceValid) << ")"; + return rStream; +} + +} + +DECLARE_MAILMERGE_TEST(testGrabBag, "grabbagtest.docx", "onecell.xlsx", "Sheet1", "MS Word 2007 XML", MMTest, 0, nullptr) +{ + executeMailMerge(true); + + loadMailMergeDocument(0, ".docx"); + + SwXTextDocument *const pTextDoc = dynamic_cast(mxComponent.get()); + CPPUNIT_ASSERT(pTextDoc); + + CPPUNIT_ASSERT_EQUAL(sal_uInt16(1), pTextDoc->GetDocShell()->GetWrtShell()->GetPhyPageNum()); + + // check grabbag + uno::Reference const xModel( + mxComponent, uno::UNO_QUERY_THROW); + uno::Sequence aInteropGrabBag; + pTextDoc->getPropertyValue("InteropGrabBag") >>= aInteropGrabBag; + CPPUNIT_ASSERT_EQUAL(sal_Int32(13), aInteropGrabBag.getLength()); + + // check table border - comes from table style "Tabellenraster" + uno::Reference const xTable(getParagraphOrTable(1, pTextDoc->getText()), uno::UNO_QUERY_THROW); + uno::Reference const xTableProps(xTable, uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(table::TableBorder( + table::BorderLine(util::Color(0), 0, 18, 0), true, + table::BorderLine(util::Color(0), 0, 18, 0), true, + table::BorderLine(util::Color(0), 0, 18, 0), true, + table::BorderLine(util::Color(0), 0, 18, 0), true, + table::BorderLine(util::Color(0), 0, 18, 0), true, + table::BorderLine(util::Color(0), 0, 0, 0), true, + sal_Int16(191), true), + getProperty(xTableProps, "TableBorder")); + + // check font is Arial - comes from theme (wrong result was "" - nothing) + uno::Reference const xCell(xTable->getCellByName("A1"), uno::UNO_QUERY_THROW); + uno::Reference const xParaA1(getParagraphOrTable(1, xCell->getText()), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Arial"), getProperty(xParaA1, "CharFontName")); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sw/qa/extras/ooxmlexport/data/tdf148132.docx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sw/qa/extras/ooxmlexport/data/tdf148132.docx differ Binary files /tmp/tmpn2nxg9ka/nLhyjPxG3p/libreoffice-7.3.4/sw/qa/extras/ooxmlexport/data/tdf149200.docx and /tmp/tmpn2nxg9ka/YfBPRxrqtk/libreoffice-7.3.5/sw/qa/extras/ooxmlexport/data/tdf149200.docx differ diff -Nru libreoffice-7.3.4/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx libreoffice-7.3.5/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx --- libreoffice-7.3.4/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -16,9 +16,12 @@ #include #include #include +#include +#include #include #include +#include #include #include @@ -361,6 +364,50 @@ } } +DECLARE_OOXMLEXPORT_TEST(testTdf148132, "tdf148132.docx") +{ + { + uno::Reference xParagraph = getParagraph(1); + auto xLevels = getProperty< uno::Reference >(xParagraph, "NumberingRules"); + // Get level 2 char style + comphelper::SequenceAsHashMap levelProps(xLevels->getByIndex(1)); + OUString aCharStyleName = levelProps["CharStyleName"].get(); + // Ensure that numbering in this paragraph is 24pt bold italic + // Previously it got overriden by paragraph properties and became 6pt, no bold, no italic + uno::Reference xStyle(getStyles("CharacterStyles")->getByName(aCharStyleName), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(24.f, getProperty(xStyle, "CharHeight")); + CPPUNIT_ASSERT_EQUAL(awt::FontWeight::BOLD, getProperty(xStyle, "CharWeight")); + CPPUNIT_ASSERT_EQUAL(awt::FontSlant_ITALIC, getProperty(xStyle, "CharPosture")); + } + // And do the same for second paragraph. Numbering should be identical + { + uno::Reference xParagraph = getParagraph(2); + auto xLevels = getProperty< uno::Reference >(xParagraph, "NumberingRules"); + comphelper::SequenceAsHashMap levelProps(xLevels->getByIndex(1)); + OUString aCharStyleName = levelProps["CharStyleName"].get(); + + uno::Reference xStyle(getStyles("CharacterStyles")->getByName(aCharStyleName), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(24.f, getProperty(xStyle, "CharHeight")); + CPPUNIT_ASSERT_EQUAL(awt::FontWeight::BOLD, getProperty(xStyle, "CharWeight")); + CPPUNIT_ASSERT_EQUAL(awt::FontSlant_ITALIC, getProperty(xStyle, "CharPosture")); + } +} + +CPPUNIT_TEST_FIXTURE(Test, testTdf149200) +{ + loadAndSave("tdf149200.docx"); + CPPUNIT_ASSERT_EQUAL(1, getPages()); + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + + // Ensure there is no unexpected invalid structure + // There is just one run property + xmlXPathObjectPtr pXmlObj = getXPathNode(pXmlDoc, "count(/w:document/w:body/w:p[1]/w:r[1]/w:rPr/*)"); + CPPUNIT_ASSERT(pXmlObj); + CPPUNIT_ASSERT_EQUAL(double(1), pXmlObj->floatval); + // And it is a color definition with themeColor + CPPUNIT_ASSERT_EQUAL(OUString("dark1"), getXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:r[1]/w:rPr/w:color", "themeColor")); +} + DECLARE_OOXMLEXPORT_TEST(testTdf148273_sectionBulletFormatLeak, "tdf148273_sectionBulletFormatLeak.docx") { // get a paragraph with bullet point after section break diff -Nru libreoffice-7.3.4/sw/qa/extras/rtfexport/data/numbering-font.rtf libreoffice-7.3.5/sw/qa/extras/rtfexport/data/numbering-font.rtf --- libreoffice-7.3.4/sw/qa/extras/rtfexport/data/numbering-font.rtf 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/rtfexport/data/numbering-font.rtf 2022-07-15 19:12:51.000000000 +0000 @@ -1,7 +1,7 @@ {\rtf1\adeflang1025\ansi\ansicpg1252\uc1\deff0\deflang1033 {\fonttbl {\f0\fbidi \froman\fcharset238\fprq2 Times New Roman;} -{\f40\fbidi \fswiss\fcharset238\fprq2 Verdana;} +{\f40\fbidi \fswiss\fcharset238\fprq2 Impact;} } {\*\listtable {\list\listtemplateid645944990 @@ -9,14 +9,12 @@ \levelfollow0\levelstartat1 {\leveltext\'02\'00.;} {\levelnumbers\'01;} -\rtlch \af0\afs18 \ltrch \fs18 \fi-360\li720\lin720 } +\f40\fs144\b0\i0\fi-360\li720\lin720 } {\listname ;} \listid1421871093} } {\*\listoverridetable {\listoverride\listid1421871093\listoverridecount0\ls30} } -\pard\plain Before.\par -\pard\plain \ls30\f40\fs18 First line.\par -\pard\plain After.\par +\pard\plain \ls30\f0\fs48\b\i First line.\par } diff -Nru libreoffice-7.3.4/sw/qa/extras/rtfexport/rtfexport.cxx libreoffice-7.3.5/sw/qa/extras/rtfexport/rtfexport.cxx --- libreoffice-7.3.4/sw/qa/extras/rtfexport/rtfexport.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/rtfexport/rtfexport.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -869,7 +869,8 @@ uno::Reference xStyle( getStyles("CharacterStyles")->getByName("ListLabel 1"), uno::UNO_QUERY); // This was Liberation Serif, i.e. custom font of the numbering itself ("1.\t") was lost on import. - CPPUNIT_ASSERT_EQUAL(OUString("Verdana"), getProperty(xStyle, "CharFontName")); + CPPUNIT_ASSERT_EQUAL(OUString("Impact"), getProperty(xStyle, "CharFontName")); + CPPUNIT_ASSERT_EQUAL(72.f, getProperty(xStyle, "CharHeight")); } DECLARE_RTFEXPORT_TEST(testFdo82860, "fdo82860.odt") diff -Nru libreoffice-7.3.4/sw/qa/extras/uiwriter/uiwriter2.cxx libreoffice-7.3.5/sw/qa/extras/uiwriter/uiwriter2.cxx --- libreoffice-7.3.4/sw/qa/extras/uiwriter/uiwriter2.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/uiwriter/uiwriter2.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -39,6 +39,7 @@ #include #include #include +#include #include #include #include @@ -980,6 +981,237 @@ CPPUNIT_ASSERT_EQUAL(OUString("foo"), pWrtShell->GetCursor()->GetText()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf140007) +{ + SwDoc* const pDoc = createSwDoc(); + SwWrtShell* const pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + + pWrtShell->Insert("foo"); + pWrtShell->SplitNode(); + pWrtShell->Insert("bar"); + pWrtShell->SplitNode(); + pWrtShell->Insert("baz"); + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(13), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("bar"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(11)]->GetTextNode()->GetText()); + + pWrtShell->SttEndDoc(true); + pWrtShell->EndPara(false); + pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/true, 1, /*bBasicCall=*/false); + pWrtShell->Replace(" ", true); + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(12), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo bar"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + + pWrtShell->SttEndDoc(true); + pWrtShell->EndPara(false); + pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/true, 1, /*bBasicCall=*/false); + pWrtShell->Replace(" ", true); + CPPUNIT_ASSERT_EQUAL(OUString("foo bar baz"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(11), pDoc->GetNodes().Count()); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(12), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo bar"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(13), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("bar"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(11)]->GetTextNode()->GetText()); + + pWrtShell->Redo(); + + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(12), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo bar"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + + pWrtShell->Redo(); + + CPPUNIT_ASSERT_EQUAL(OUString("foo bar baz"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(11), pDoc->GetNodes().Count()); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(12), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo bar"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(SwNodeOffset(13), pDoc->GetNodes().Count()); + CPPUNIT_ASSERT_EQUAL(OUString("foo"), + pDoc->GetNodes()[SwNodeOffset(9)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("bar"), + pDoc->GetNodes()[SwNodeOffset(10)]->GetTextNode()->GetText()); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), + pDoc->GetNodes()[SwNodeOffset(11)]->GetTextNode()->GetText()); +} + +CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf139982) +{ + SwDoc* const pDoc = createSwDoc(); + SwWrtShell* const pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + + // turn on redlining and show changes + pDoc->getIDocumentRedlineAccess().SetRedlineFlags(RedlineFlags::On | RedlineFlags::ShowDelete + | RedlineFlags::ShowInsert); + CPPUNIT_ASSERT_MESSAGE("redlining should be on", + pDoc->getIDocumentRedlineAccess().IsRedlineOn()); + CPPUNIT_ASSERT_MESSAGE( + "redlines should be visible", + IDocumentRedlineAccess::IsShowChanges(pDoc->getIDocumentRedlineAccess().GetRedlineFlags())); + + pWrtShell->Insert("helloo"); + + pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false); + { + SwFormatAnchor anchor(RndStdIds::FLY_AT_CHAR); + anchor.SetAnchor(pWrtShell->GetCursor()->GetPoint()); + SfxItemSet flySet(pDoc->GetAttrPool(), svl::Items); + flySet.Put(anchor); + SwFrameFormat const* pFly = pWrtShell->NewFlyFrame(flySet, /*bAnchValid=*/true); + CPPUNIT_ASSERT(pFly != nullptr); + } + + pWrtShell->SttEndDoc(true); + pWrtShell->EndPara(/*bSelect=*/true); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + + pWrtShell->Replace("hello", true); + + // the problem was that a redline delete with the same author as redline + // insert has its text deleted immediately, including anchored flys. + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + + pWrtShell->Redo(); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + + pWrtShell->Undo(); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); +} + +CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf135976) +{ + SwDoc* const pDoc = createSwDoc(); + SwWrtShell* const pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + + pWrtShell->Insert("foobar"); + + pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 2, /*bBasicCall=*/false); + SwFormatAnchor anchor(RndStdIds::FLY_AT_CHAR); + anchor.SetAnchor(pWrtShell->GetCursor()->GetPoint()); + SfxItemSet flySet(pDoc->GetAttrPool(), svl::Items); + flySet.Put(anchor); + SwFrameFormat const* pFly = pWrtShell->NewFlyFrame(flySet, /*bAnchValid=*/true); + CPPUNIT_ASSERT(pFly != nullptr); + + // turn on redlining and show changes + pDoc->getIDocumentRedlineAccess().SetRedlineFlags(RedlineFlags::On | RedlineFlags::ShowDelete + | RedlineFlags::ShowInsert); + dispatchCommand(mxComponent, ".uno:ShowTrackedChanges", {}); + CPPUNIT_ASSERT_MESSAGE("redlining should be on", + pDoc->getIDocumentRedlineAccess().IsRedlineOn()); + CPPUNIT_ASSERT_MESSAGE( + "redlines should be visible", + IDocumentRedlineAccess::IsShowChanges(pDoc->getIDocumentRedlineAccess().GetRedlineFlags())); + CPPUNIT_ASSERT(pWrtShell->GetLayout()->IsHideRedlines()); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->UnSelectFrame(); + pWrtShell->SttEndDoc(/*bStart=*/false); + pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false); + + pWrtShell->DelLeft(); + pWrtShell->DelLeft(); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + // the problem was that the fly was deleted from the layout + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + // check that the anchor was moved outside the redline + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Undo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + // check that the anchor was restored + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Redo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Undo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + // now again in the other direction: + + pWrtShell->SttEndDoc(/*bStart=*/false); + pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 3, /*bBasicCall=*/false); + + pWrtShell->DelRight(); + pWrtShell->DelRight(); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + // the problem was that the fly was deleted from the layout + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(5), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Undo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Redo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(5), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); + + pWrtShell->Undo(2); + + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetFlyCount(FLYCNTTYPE_FRM)); + CPPUNIT_ASSERT_EQUAL(size_t(1), pWrtShell->GetLayout()->GetLastPage()->GetSortedObjs()->size()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), pFly->GetAnchor().GetContentAnchor()->nContent.GetIndex()); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf39721) { // FIXME: disabled on Windows because of a not reproducible problem (not related to the patch) diff -Nru libreoffice-7.3.4/sw/qa/extras/uiwriter/uiwriter3.cxx libreoffice-7.3.5/sw/qa/extras/uiwriter/uiwriter3.cxx --- libreoffice-7.3.4/sw/qa/extras/uiwriter/uiwriter3.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/extras/uiwriter/uiwriter3.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1424,7 +1424,8 @@ dispatchCommand(mxComponent, ".uno:SwBackspace", {}); Scheduler::ProcessEventsToIdle(); - CPPUNIT_ASSERT_EQUAL(0, getShapes()); + // tdf#137587 fly is no longer deleted by backspace + CPPUNIT_ASSERT_EQUAL(1, getShapes()); CPPUNIT_ASSERT_EQUAL(OUString(""), getParagraph(1)->getString()); dispatchCommand(mxComponent, ".uno:Undo", {}); @@ -1438,7 +1439,8 @@ dispatchCommand(mxComponent, ".uno:Redo", {}); Scheduler::ProcessEventsToIdle(); - CPPUNIT_ASSERT_EQUAL(0, getShapes()); + // tdf#137587 fly is no longer deleted by backspace + CPPUNIT_ASSERT_EQUAL(1, getShapes()); CPPUNIT_ASSERT_EQUAL(OUString(""), getParagraph(1)->getString()); //Without the fix in place, it would crash here diff -Nru libreoffice-7.3.4/sw/qa/uitest/writer_tests7/tdf137802.py libreoffice-7.3.5/sw/qa/uitest/writer_tests7/tdf137802.py --- libreoffice-7.3.4/sw/qa/uitest/writer_tests7/tdf137802.py 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/qa/uitest/writer_tests7/tdf137802.py 2022-07-15 19:12:51.000000000 +0000 @@ -49,6 +49,8 @@ # Delete the second paragraph. Shape 2 is anchored to this paragraph # so it should be deleted + # tdf#137587 fly is no longer deleted by backspace so explictly select + xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "SHIFT+LEFT"})) xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "BACKSPACE"})) self.assertEqual(document.DrawPage.getCount(), 1) diff -Nru libreoffice-7.3.4/sw/source/core/attr/hints.cxx libreoffice-7.3.5/sw/source/core/attr/hints.cxx --- libreoffice-7.3.4/sw/source/core/attr/hints.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/attr/hints.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -31,8 +31,11 @@ { } -SwInsText::SwInsText( sal_Int32 nP, sal_Int32 nL ) - : SwMsgPoolItem( RES_INS_TXT ), nPos( nP ), nLen( nL ) +SwInsText::SwInsText(sal_Int32 const nP, sal_Int32 const nL, bool const isInFMCommand, bool const isInFMResult) + : SwMsgPoolItem( RES_INS_TXT ) + , nPos( nP ), nLen( nL ) + , isInsideFieldmarkCommand(isInFMCommand) + , isInsideFieldmarkResult(isInFMResult) { } diff -Nru libreoffice-7.3.4/sw/source/core/crsr/crbm.cxx libreoffice-7.3.5/sw/source/core/crsr/crbm.cxx --- libreoffice-7.3.4/sw/source/core/crsr/crbm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/crsr/crbm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -128,9 +128,14 @@ { return false; } - SwTextNode const& rNode(*rMark.GetMarkPos().nNode.GetNode().GetTextNode()); + SwNode const& rNode(rMark.GetMarkPos().nNode.GetNode()); + SwTextNode const*const pTextNode(rNode.GetTextNode()); + if (pTextNode == nullptr) + { // UNO_BOOKMARK may point to table node + return rNode.GetRedlineMergeFlag() == SwNode::Merge::Hidden; + } SwTextFrame const*const pFrame(static_cast( - rNode.getLayoutFrame(&rLayout))); + pTextNode->getLayoutFrame(&rLayout))); if (!pFrame) { return true; @@ -145,14 +150,14 @@ } else { - if (rMark.GetMarkPos().nContent.GetIndex() == rNode.Len()) + if (rMark.GetMarkPos().nContent.GetIndex() == pTextNode->Len()) { // at end of node: never deleted (except if node deleted) - return rNode.GetRedlineMergeFlag() == SwNode::Merge::Hidden; + return pTextNode->GetRedlineMergeFlag() == SwNode::Merge::Hidden; } else { // check character following mark pos return pFrame->MapModelToViewPos(rMark.GetMarkPos()) - == pFrame->MapModelToView(&rNode, rMark.GetMarkPos().nContent.GetIndex() + 1); + == pFrame->MapModelToView(pTextNode, rMark.GetMarkPos().nContent.GetIndex() + 1); } } } diff -Nru libreoffice-7.3.4/sw/source/core/doc/docbm.cxx libreoffice-7.3.5/sw/source/core/doc/docbm.cxx --- libreoffice-7.3.4/sw/source/core/doc/docbm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/docbm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1979,4 +1979,32 @@ } } +namespace sw { + +SwInsText MakeSwInsText(SwTextNode & rNode, sal_Int32 const nPos, sal_Int32 const nLen) +{ + SwCursor cursor(SwPosition(rNode, nPos), nullptr); + bool isInsideFieldmarkCommand(false); + bool isInsideFieldmarkResult(false); + while (auto const*const pMark = rNode.GetDoc().getIDocumentMarkAccess()->getFieldmarkFor(*cursor.GetPoint())) + { + if (sw::mark::FindFieldSep(*pMark) < *cursor.GetPoint()) + { + isInsideFieldmarkResult = true; + } + else + { + isInsideFieldmarkCommand = true; + } + *cursor.GetPoint() = pMark->GetMarkStart(); + if (!cursor.Left(1)) + { + break; + } + } + return SwInsText(nPos, nLen, isInsideFieldmarkCommand, isInsideFieldmarkResult); +} + +} // namespace sw + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/sw/source/core/doc/docdesc.cxx libreoffice-7.3.5/sw/source/core/doc/docdesc.cxx --- libreoffice-7.3.4/sw/source/core/doc/docdesc.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/docdesc.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -268,8 +268,6 @@ } else { - const SwFrameFormat *pRight = rHead.GetHeaderFormat(); - const SwFormatContent &aRCnt = pRight->GetContent(); const SwFormatContent &aCnt = rFormatHead.GetHeaderFormat()->GetContent(); if (!aCnt.GetContentIdx()) @@ -277,36 +275,44 @@ const SwFrameFormat& rChgedFrameFormat = getConstFrameFormat(rChged, bLeft, bFirst); rDescFrameFormat.SetFormatAttr( rChgedFrameFormat.GetHeader() ); } - else if ((*aRCnt.GetContentIdx() == *aCnt.GetContentIdx()) || - // The ContentIdx is _always_ different when called from - // SwDocStyleSheet::SetItemSet, because it deep-copies the - // PageDesc. So check if it was previously shared. - (bFirst ? rDesc.IsFirstShared() : rDesc.IsHeaderShared())) + else { - SwFrameFormat *pFormat = new SwFrameFormat( GetAttrPool(), - bFirst ? "First header" : "Left header", - GetDfltFrameFormat() ); - ::lcl_DescSetAttr( *pRight, *pFormat, false ); - // The section which the right header attribute is pointing - // is copied, and the Index to the StartNode is set to - // the left or first header attribute. - SwNodeIndex aTmp( GetNodes().GetEndOfAutotext() ); - SwStartNode* pSttNd = SwNodes::MakeEmptySection( aTmp, SwHeaderStartNode ); - SwNodeRange aRange( aRCnt.GetContentIdx()->GetNode(), SwNodeOffset(0), - *aRCnt.GetContentIdx()->GetNode().EndOfSectionNode() ); - aTmp = *pSttNd->EndOfSectionNode(); - GetNodes().Copy_( aRange, aTmp, false ); - aTmp = *pSttNd; - GetDocumentContentOperationsManager().CopyFlyInFlyImpl(aRange, nullptr, aTmp); - SwPaM const source(aRange.aStart, aRange.aEnd); - SwPosition dest(aTmp); - sw::CopyBookmarks(source, dest); - pFormat->SetFormatAttr( SwFormatContent( pSttNd ) ); - rDescFrameFormat.SetFormatAttr( SwFormatHeader( pFormat ) ); + const SwFrameFormat *pRight = rHead.GetHeaderFormat(); + if (!pRight) + return; + const SwFormatContent &aRCnt = pRight->GetContent(); + + if ((*aRCnt.GetContentIdx() == *aCnt.GetContentIdx()) || + // The ContentIdx is _always_ different when called from + // SwDocStyleSheet::SetItemSet, because it deep-copies the + // PageDesc. So check if it was previously shared. + (bFirst ? rDesc.IsFirstShared() : rDesc.IsHeaderShared())) + { + SwFrameFormat *pFormat = new SwFrameFormat( GetAttrPool(), + bFirst ? "First header" : "Left header", + GetDfltFrameFormat() ); + ::lcl_DescSetAttr( *pRight, *pFormat, false ); + // The section which the right header attribute is pointing + // is copied, and the Index to the StartNode is set to + // the left or first header attribute. + SwNodeIndex aTmp( GetNodes().GetEndOfAutotext() ); + SwStartNode* pSttNd = SwNodes::MakeEmptySection( aTmp, SwHeaderStartNode ); + SwNodeRange aRange( aRCnt.GetContentIdx()->GetNode(), SwNodeOffset(0), + *aRCnt.GetContentIdx()->GetNode().EndOfSectionNode() ); + aTmp = *pSttNd->EndOfSectionNode(); + GetNodes().Copy_( aRange, aTmp, false ); + aTmp = *pSttNd; + GetDocumentContentOperationsManager().CopyFlyInFlyImpl(aRange, nullptr, aTmp); + SwPaM const source(aRange.aStart, aRange.aEnd); + SwPosition dest(aTmp); + sw::CopyBookmarks(source, dest); + pFormat->SetFormatAttr( SwFormatContent( pSttNd ) ); + rDescFrameFormat.SetFormatAttr( SwFormatHeader( pFormat ) ); + } + else + ::lcl_DescSetAttr( *pRight, + *const_cast(rFormatHead.GetHeaderFormat()), false ); } - else - ::lcl_DescSetAttr( *pRight, - *const_cast(rFormatHead.GetHeaderFormat()), false ); } } } @@ -343,44 +349,50 @@ } else { - const SwFrameFormat *pRight = rFoot.GetFooterFormat(); - const SwFormatContent &aRCnt = pRight->GetContent(); const SwFormatContent &aLCnt = rFormatFoot.GetFooterFormat()->GetContent(); if( !aLCnt.GetContentIdx() ) { const SwFrameFormat& rChgedFrameFormat = getConstFrameFormat(rChged, bLeft, bFirst); rDescFrameFormat.SetFormatAttr( rChgedFrameFormat.GetFooter() ); } - else if ((*aRCnt.GetContentIdx() == *aLCnt.GetContentIdx()) || - // The ContentIdx is _always_ different when called from - // SwDocStyleSheet::SetItemSet, because it deep-copies the - // PageDesc. So check if it was previously shared. - (bFirst ? rDesc.IsFirstShared() : rDesc.IsFooterShared())) + else { - SwFrameFormat *pFormat = new SwFrameFormat( GetAttrPool(), - bFirst ? "First footer" : "Left footer", - GetDfltFrameFormat() ); - ::lcl_DescSetAttr( *pRight, *pFormat, false ); - // The section to which the right footer attribute is pointing - // is copied, and the Index to the StartNode is set to - // the left footer attribute. - SwNodeIndex aTmp( GetNodes().GetEndOfAutotext() ); - SwStartNode* pSttNd = SwNodes::MakeEmptySection( aTmp, SwFooterStartNode ); - SwNodeRange aRange( aRCnt.GetContentIdx()->GetNode(), SwNodeOffset(0), - *aRCnt.GetContentIdx()->GetNode().EndOfSectionNode() ); - aTmp = *pSttNd->EndOfSectionNode(); - GetNodes().Copy_( aRange, aTmp, false ); - aTmp = *pSttNd; - GetDocumentContentOperationsManager().CopyFlyInFlyImpl(aRange, nullptr, aTmp); - SwPaM const source(aRange.aStart, aRange.aEnd); - SwPosition dest(aTmp); - sw::CopyBookmarks(source, dest); - pFormat->SetFormatAttr( SwFormatContent( pSttNd ) ); - rDescFrameFormat.SetFormatAttr( SwFormatFooter( pFormat ) ); + const SwFrameFormat *pRight = rFoot.GetFooterFormat(); + if (!pRight) + return; + const SwFormatContent &aRCnt = pRight->GetContent(); + + if ((*aRCnt.GetContentIdx() == *aLCnt.GetContentIdx()) || + // The ContentIdx is _always_ different when called from + // SwDocStyleSheet::SetItemSet, because it deep-copies the + // PageDesc. So check if it was previously shared. + (bFirst ? rDesc.IsFirstShared() : rDesc.IsFooterShared())) + { + SwFrameFormat *pFormat = new SwFrameFormat( GetAttrPool(), + bFirst ? "First footer" : "Left footer", + GetDfltFrameFormat() ); + ::lcl_DescSetAttr( *pRight, *pFormat, false ); + // The section to which the right footer attribute is pointing + // is copied, and the Index to the StartNode is set to + // the left footer attribute. + SwNodeIndex aTmp( GetNodes().GetEndOfAutotext() ); + SwStartNode* pSttNd = SwNodes::MakeEmptySection( aTmp, SwFooterStartNode ); + SwNodeRange aRange( aRCnt.GetContentIdx()->GetNode(), SwNodeOffset(0), + *aRCnt.GetContentIdx()->GetNode().EndOfSectionNode() ); + aTmp = *pSttNd->EndOfSectionNode(); + GetNodes().Copy_( aRange, aTmp, false ); + aTmp = *pSttNd; + GetDocumentContentOperationsManager().CopyFlyInFlyImpl(aRange, nullptr, aTmp); + SwPaM const source(aRange.aStart, aRange.aEnd); + SwPosition dest(aTmp); + sw::CopyBookmarks(source, dest); + pFormat->SetFormatAttr( SwFormatContent( pSttNd ) ); + rDescFrameFormat.SetFormatAttr( SwFormatFooter( pFormat ) ); + } + else + ::lcl_DescSetAttr( *pRight, + *const_cast(rFormatFoot.GetFooterFormat()), false ); } - else - ::lcl_DescSetAttr( *pRight, - *const_cast(rFormatFoot.GetFooterFormat()), false ); } } } diff -Nru libreoffice-7.3.4/sw/source/core/doc/docedt.cxx libreoffice-7.3.5/sw/source/core/doc/docedt.cxx --- libreoffice-7.3.4/sw/source/core/doc/docedt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/docedt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -28,6 +28,7 @@ #include #include #include +#include #include #include #include @@ -51,7 +52,7 @@ void RestFlyInRange( SaveFlyArr & rArr, const SwPosition& rStartPos, - const SwNodeIndex* pInsertPos ) + const SwNodeIndex* pInsertPos, bool const isForceToStartPos) { SwPosition aPos(rStartPos); for(const SaveFly & rSave : rArr) @@ -60,7 +61,7 @@ SwFrameFormat* pFormat = rSave.pFrameFormat; SwFormatAnchor aAnchor( pFormat->GetAnchor() ); - if (rSave.isAtInsertNode) + if (rSave.isAtInsertNode || isForceToStartPos) { if( pInsertPos != nullptr ) { @@ -133,7 +134,7 @@ } void SaveFlyInRange( const SwPaM& rPam, const SwPosition& rInsPos, - SaveFlyArr& rArr, bool bMoveAllFlys ) + SaveFlyArr& rArr, bool bMoveAllFlys, SwHistory *const pHistory) { SwFrameFormats& rFormats = *rPam.GetPoint()->nNode.GetNode().GetDoc().GetSpzFrameFormats(); SwFrameFormat* pFormat; @@ -179,6 +180,10 @@ || (RndStdIds::FLY_AT_CHAR == pAnchor->GetAnchorId() && (bInsPos = (rInsPos == *pAPos)))) { + if (pHistory) + { + pHistory->AddChangeFlyAnchor(*pFormat); + } SaveFly aSave( pAPos->nNode.GetIndex() - rSttNdIdx.GetIndex(), (RndStdIds::FLY_AT_CHAR == pAnchor->GetAnchorId()) ? (pAPos->nNode == rSttNdIdx) diff -Nru libreoffice-7.3.4/sw/source/core/doc/docnew.cxx libreoffice-7.3.5/sw/source/core/doc/docnew.cxx --- libreoffice-7.3.4/sw/source/core/doc/docnew.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/docnew.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -29,6 +29,7 @@ #include #include +#include #include #include #include @@ -909,6 +910,14 @@ xRet->ReplaceStyles(*this); + uno::Reference const xThisSet( + GetDocShell()->GetBaseModel(), uno::UNO_QUERY_THROW); + uno::Reference const xRetSet( + pRetShell->GetBaseModel(), uno::UNO_QUERY_THROW); + uno::Sequence aInteropGrabBag; + xThisSet->getPropertyValue("InteropGrabBag") >>= aInteropGrabBag; + xRetSet->setPropertyValue("InteropGrabBag", uno::Any(aInteropGrabBag)); + if( !bEmpty ) { #ifdef DBG_UTIL @@ -1093,6 +1102,11 @@ // set break on the last paragraph getIDocumentContentOperations().InsertPoolItem(SwPaM(aBreakPos), pageDesc, SetAttrMode::DEFAULT, pTargetShell->GetLayout()); + // tdf#148309 move to the last node - so that the "flush page break" + // code below will format the frame of the node with the page break, + // which is required for new page frames to be created! Else layout + // performance will be terrible. + pTargetShell->SttEndDoc(false); // There is now a new empty text node on the new page. If it has // any marks, those are from the previous page: move them back @@ -1123,6 +1137,7 @@ if ( !bDeletePrevious ) { SAL_INFO( "sw.pageframe", "(Flush pagebreak AKA EndAllAction" ); + assert(pTargetShell->GetCursor()->GetPoint()->nNode.GetNode().GetTextNode()->GetSwAttrSet().HasItem(RES_PAGEDESC)); pTargetShell->EndAllAction(); SAL_INFO( "sw.pageframe", "Flush changes AKA EndAllAction)" ); pTargetShell->StartAllAction(); diff -Nru libreoffice-7.3.4/sw/source/core/doc/DocumentContentOperationsManager.cxx libreoffice-7.3.5/sw/source/core/doc/DocumentContentOperationsManager.cxx --- libreoffice-7.3.4/sw/source/core/doc/DocumentContentOperationsManager.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/DocumentContentOperationsManager.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -638,8 +638,9 @@ namespace { - bool lcl_DoWithBreaks(::sw::DocumentContentOperationsManager & rDocumentContentOperations, SwPaM & rPam, - bool (::sw::DocumentContentOperationsManager::*pFunc)(SwPaM&, bool), const bool bForceJoinNext = false) + bool lcl_DoWithBreaks(::sw::DocumentContentOperationsManager & rDocumentContentOperations, + SwPaM & rPam, SwDeleteFlags const flags, + bool (::sw::DocumentContentOperationsManager::*pFunc)(SwPaM&, SwDeleteFlags, bool), const bool bForceJoinNext = false) { std::vector> Breaks; @@ -647,7 +648,7 @@ if (Breaks.empty()) { - return (rDocumentContentOperations.*pFunc)(rPam, bForceJoinNext); + return (rDocumentContentOperations.*pFunc)(rPam, flags, bForceJoinNext); } // Deletion must be split into several parts if the text node @@ -671,7 +672,7 @@ rStart = SwPosition(*rNodes[iter->first - nOffset]->GetTextNode(), iter->second + 1); if (rStart < rEnd) // check if part is empty { - bRet &= (rDocumentContentOperations.*pFunc)(aPam, bForceJoinNext); + bRet &= (rDocumentContentOperations.*pFunc)(aPam, flags, bForceJoinNext); nOffset = iter->first - rStart.nNode.GetIndex(); // deleted fly nodes... } rEnd = SwPosition(*rNodes[iter->first - nOffset]->GetTextNode(), iter->second); @@ -681,7 +682,7 @@ rStart = *rPam.Start(); // set to original start if (rStart < rEnd) // check if part is empty { - bRet &= (rDocumentContentOperations.*pFunc)(aPam, bForceJoinNext); + bRet &= (rDocumentContentOperations.*pFunc)(aPam, flags, bForceJoinNext); } return bRet; @@ -2118,7 +2119,7 @@ assert(aPam.GetText().getLength() == 1 && aPam.GetText()[0] == cDummy); (void) cDummy; - DeleteRangeImpl(aPam); + DeleteRangeImpl(aPam, SwDeleteFlags::Default); if (!m_rDoc.getIDocumentRedlineAccess().IsIgnoreRedline() && !m_rDoc.getIDocumentRedlineAccess().GetRedlineTable().empty()) @@ -2129,7 +2130,7 @@ void DocumentContentOperationsManager::DeleteRange( SwPaM & rPam ) { - lcl_DoWithBreaks( *this, rPam, &DocumentContentOperationsManager::DeleteRangeImpl ); + lcl_DoWithBreaks(*this, rPam, SwDeleteFlags::Default, &DocumentContentOperationsManager::DeleteRangeImpl); if (!m_rDoc.getIDocumentRedlineAccess().IsIgnoreRedline() && !m_rDoc.getIDocumentRedlineAccess().GetRedlineTable().empty()) @@ -2232,7 +2233,7 @@ ::PaMCorrAbs( aDelPam, aTmpPos ); } - std::unique_ptr pUndo(new SwUndoDelete( aDelPam, true )); + std::unique_ptr pUndo(new SwUndoDelete(aDelPam, SwDeleteFlags::Default, true)); *rPam.GetPoint() = *aDelPam.GetPoint(); pUndo->SetPgBrkFlags( bSavePageBreak, bSavePageDesc ); @@ -2327,13 +2328,13 @@ } // #i100466# Add handling of new optional parameter -bool DocumentContentOperationsManager::DeleteAndJoin( SwPaM & rPam, +bool DocumentContentOperationsManager::DeleteAndJoin(SwPaM & rPam, SwDeleteFlags const flags, const bool bForceJoinNext ) { if ( lcl_StrLenOverflow( rPam ) ) return false; - bool const ret = lcl_DoWithBreaks( *this, rPam, (m_rDoc.getIDocumentRedlineAccess().IsRedlineOn()) + bool const ret = lcl_DoWithBreaks( *this, rPam, flags, (m_rDoc.getIDocumentRedlineAccess().IsRedlineOn()) ? &DocumentContentOperationsManager::DeleteAndJoinWithRedlineImpl : &DocumentContentOperationsManager::DeleteAndJoinImpl, bForceJoinNext ); @@ -3514,8 +3515,8 @@ if (rStart < rEnd) // check if part is empty { bRet &= (m_rDoc.getIDocumentRedlineAccess().IsRedlineOn()) - ? DeleteAndJoinWithRedlineImpl(aPam) - : DeleteAndJoinImpl(aPam, false); + ? DeleteAndJoinWithRedlineImpl(aPam, SwDeleteFlags::Default) + : DeleteAndJoinImpl(aPam, SwDeleteFlags::Default, false); nOffset = iter->first - rStart.nNode.GetIndex(); // deleted fly nodes... } rEnd = SwPosition(*rNodes[iter->first - nOffset]->GetTextNode(), iter->second); @@ -4088,7 +4089,7 @@ } //Private methods -bool DocumentContentOperationsManager::DeleteAndJoinWithRedlineImpl( SwPaM & rPam, const bool ) +bool DocumentContentOperationsManager::DeleteAndJoinWithRedlineImpl(SwPaM & rPam, SwDeleteFlags const flags, const bool) { assert(m_rDoc.getIDocumentRedlineAccess().IsRedlineOn()); @@ -4169,7 +4170,7 @@ { assert(pRedline->HasValidRange()); undos.emplace_back(std::make_unique( - *pRedline, SwUndoId::DELETE)); + *pRedline, SwUndoId::DELETE, flags)); } const SwRewriter aRewriter = undos.front()->GetRewriter(); // can only group a single undo action @@ -4230,7 +4231,7 @@ return true; } -bool DocumentContentOperationsManager::DeleteAndJoinImpl( SwPaM & rPam, +bool DocumentContentOperationsManager::DeleteAndJoinImpl(SwPaM & rPam, SwDeleteFlags const flags, const bool bForceJoinNext ) { bool bJoinText, bJoinPrev; @@ -4242,7 +4243,7 @@ } { - bool const bSuccess( DeleteRangeImpl( rPam ) ); + bool const bSuccess( DeleteRangeImpl(rPam, flags) ); if (!bSuccess) return false; } @@ -4261,14 +4262,14 @@ return true; } -bool DocumentContentOperationsManager::DeleteRangeImpl(SwPaM & rPam, const bool) +bool DocumentContentOperationsManager::DeleteRangeImpl(SwPaM & rPam, SwDeleteFlags const flags, const bool) { // Move all cursors out of the deleted range, but first copy the // passed PaM, because it could be a cursor that would be moved! SwPaM aDelPam( *rPam.GetMark(), *rPam.GetPoint() ); ::PaMCorrAbs( aDelPam, *aDelPam.GetPoint() ); - bool const bSuccess( DeleteRangeImplImpl( aDelPam ) ); + bool const bSuccess( DeleteRangeImplImpl(aDelPam, flags) ); if (bSuccess) { // now copy position from temp copy to given PaM *rPam.GetPoint() = *aDelPam.GetPoint(); @@ -4277,7 +4278,7 @@ return bSuccess; } -bool DocumentContentOperationsManager::DeleteRangeImplImpl(SwPaM & rPam) +bool DocumentContentOperationsManager::DeleteRangeImplImpl(SwPaM & rPam, SwDeleteFlags const flags) { SwPosition *pStt = rPam.Start(), *pEnd = rPam.End(); @@ -4342,7 +4343,7 @@ } if (!bMerged) { - m_rDoc.GetIDocumentUndoRedo().AppendUndo( std::make_unique( rPam ) ); + m_rDoc.GetIDocumentUndoRedo().AppendUndo(std::make_unique(rPam, flags)); } m_rDoc.getIDocumentState().SetModified(); @@ -4354,8 +4355,11 @@ m_rDoc.getIDocumentRedlineAccess().DeleteRedline( rPam, true, RedlineType::Any ); // Delete and move all "Flys at the paragraph", which are within the Selection - DelFlyInRange(rPam.GetMark()->nNode, rPam.GetPoint()->nNode, - &rPam.GetMark()->nContent, &rPam.GetPoint()->nContent); + if (!(flags & SwDeleteFlags::ArtificialSelection)) + { + DelFlyInRange(rPam.GetMark()->nNode, rPam.GetPoint()->nNode, + &rPam.GetMark()->nContent, &rPam.GetPoint()->nContent); + } DelBookmarks( pStt->nNode, pEnd->nNode, @@ -4592,6 +4596,14 @@ InsertItemSet( aTmpRange, aSet ); } + // tdf#139982: Appending the redline may immediately delete flys + // anchored in the previous text if it's inside an insert redline. + // Also flys will be deleted if the redline is accepted. Move them + // to the position between the previous text and the new text, + // there the chance of surviving both accept and reject is best. + SaveFlyArr flys; + SaveFlyInRange(aDelPam, *aDelPam.End(), flys, false); + if (m_rDoc.GetIDocumentUndoRedo().DoesUndo()) { m_rDoc.GetIDocumentUndoRedo().AppendUndo( @@ -4602,6 +4614,7 @@ pCursor->SetMark(); *pCursor->GetPoint() = *aDelPam.GetPoint(); m_rDoc.getIDocumentRedlineAccess().AppendRedline( new SwRangeRedline( RedlineType::Delete, aDelPam ), true); + RestFlyInRange(flys, *aDelPam.End(), &aDelPam.End()->nNode, true); sw::UpdateFramesForAddDeleteRedline(m_rDoc, *pCursor); *rPam.GetMark() = *aDelPam.GetMark(); diff -Nru libreoffice-7.3.4/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-7.3.5/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-7.3.4/sw/source/core/doc/DocumentRedlineManager.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/doc/DocumentRedlineManager.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -309,6 +309,12 @@ break; } + // no nodes can be unmerged by this - skip MakeFrames() etc. + if (rPam.GetPoint()->nNode == rPam.GetMark()->nNode) + { + break; // continue with AppendAllObjs() + } + // first, call CheckParaRedlineMerge on the first paragraph, // to init flag on new merge range (if any) + 1st node post the merge auto eMode(sw::FrameMode::Existing); diff -Nru libreoffice-7.3.4/sw/source/core/docnode/ndsect.cxx libreoffice-7.3.5/sw/source/core/docnode/ndsect.cxx --- libreoffice-7.3.4/sw/source/core/docnode/ndsect.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/docnode/ndsect.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -539,7 +539,7 @@ { SwNodeIndex aUpdIdx( *pIdx ); SwPaM aPaM( *pSectNd->EndOfSectionNode(), *pSectNd ); - GetIDocumentUndoRedo().AppendUndo( std::make_unique( aPaM )); + GetIDocumentUndoRedo().AppendUndo(std::make_unique(aPaM, SwDeleteFlags::Default)); if( pFootnoteEndAtTextEnd ) GetFootnoteIdxs().UpdateFootnote( aUpdIdx ); getIDocumentState().SetModified(); diff -Nru libreoffice-7.3.4/sw/source/core/docnode/ndtbl.cxx libreoffice-7.3.5/sw/source/core/docnode/ndtbl.cxx --- libreoffice-7.3.4/sw/source/core/docnode/ndtbl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/docnode/ndtbl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2065,7 +2065,7 @@ bSavePageBreak = true; } } - std::unique_ptr pUndo(new SwUndoDelete( aPaM )); + std::unique_ptr pUndo(new SwUndoDelete(aPaM, SwDeleteFlags::Default)); if( bNewTextNd ) pUndo->SetTableDelLastNd(); pUndo->SetPgBrkFlags( bSavePageBreak, bSavePageDesc ); diff -Nru libreoffice-7.3.4/sw/source/core/edit/autofmt.cxx libreoffice-7.3.5/sw/source/core/edit/autofmt.cxx --- libreoffice-7.3.4/sw/source/core/edit/autofmt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/edit/autofmt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1185,7 +1185,7 @@ SwPaM* pPrev = rPamToCorrect.GetPrev(); rPamToCorrect.GetRingContainer().merge( pShCursor->GetRingContainer() ); - m_pEditShell->DeleteSel( rDelPam ); + m_pEditShell->DeleteSel(rDelPam, true); // and remove Pam again: SwPaM* p; @@ -1201,7 +1201,7 @@ m_pCurTextFrame = GetFrame(*m_pCurTextNd); // keep it up to date } else - m_pEditShell->DeleteSel( rDelPam ); + m_pEditShell->DeleteSel(rDelPam, true); } bool SwAutoFormat::DeleteJoinCurNextPara(SwTextFrame const*const pNextFrame, diff -Nru libreoffice-7.3.4/sw/source/core/edit/eddel.cxx libreoffice-7.3.5/sw/source/core/edit/eddel.cxx --- libreoffice-7.3.4/sw/source/core/edit/eddel.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/edit/eddel.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -31,7 +31,7 @@ #include #include -void SwEditShell::DeleteSel( SwPaM& rPam, bool* pUndo ) +void SwEditShell::DeleteSel(SwPaM& rPam, bool const isArtificialSelection, bool *const pUndo) { bool bSelectAll = StartsWithTable() && ExtendedSelectedAll(); // only for selections @@ -114,7 +114,8 @@ pPam = &*pNewPam; } // delete everything - GetDoc()->getIDocumentContentOperations().DeleteAndJoin(*pPam); + GetDoc()->getIDocumentContentOperations().DeleteAndJoin(*pPam, + isArtificialSelection ? SwDeleteFlags::ArtificialSelection : SwDeleteFlags::Default); SaveTableBoxContent( pPam->GetPoint() ); } @@ -122,7 +123,7 @@ rPam.DeleteMark(); } -bool SwEditShell::Delete() +bool SwEditShell::Delete(bool const isArtificialSelection) { CurrShell aCurr( this ); bool bRet = false; @@ -141,7 +142,7 @@ for(SwPaM& rPaM : GetCursor()->GetRingContainer()) { - DeleteSel( rPaM, &bUndo ); + DeleteSel(rPaM, isArtificialSelection, &bUndo); } // If undo container then close here diff -Nru libreoffice-7.3.4/sw/source/core/edit/edglbldc.cxx libreoffice-7.3.5/sw/source/core/edit/edglbldc.cxx --- libreoffice-7.3.4/sw/source/core/edit/edglbldc.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/edit/edglbldc.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -271,7 +271,7 @@ rPos.nNode = pMyDoc->GetNodes().GetEndOfContent(); --rPos.nNode; if( !pMyDoc->getIDocumentContentOperations().DelFullPara( *pCursor ) ) - Delete(); + Delete(false); } break; diff -Nru libreoffice-7.3.4/sw/source/core/edit/editsh.cxx libreoffice-7.3.5/sw/source/core/edit/editsh.cxx --- libreoffice-7.3.4/sw/source/core/edit/editsh.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/edit/editsh.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -659,7 +659,7 @@ bDelText = bInsText = false; if( bDelText ) - Delete(); + Delete(true); } else if( pCursor->IsMultiSelection() && rFormat.GetValue() == rStr ) bInsText = false; @@ -728,7 +728,7 @@ { bool bRet = SelectTextAttr( RES_TXTATR_INETFMT, false ); if( bRet ) - DeleteSel( *GetCursor() ); + DeleteSel(*GetCursor(), true); } /// Set the DontExpand flag at the text character attributes diff -Nru libreoffice-7.3.4/sw/source/core/frmedt/fecopy.cxx libreoffice-7.3.5/sw/source/core/frmedt/fecopy.cxx --- libreoffice-7.3.4/sw/source/core/frmedt/fecopy.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/frmedt/fecopy.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -709,7 +709,7 @@ } namespace { - bool lcl_PasteFlyOrDrawFormat(SwPaM& rPaM, SwFrameFormat* pCpyFormat, SwFEShell& rSh) + SwFrameFormat* lcl_PasteFlyOrDrawFormat(SwPaM& rPaM, SwFrameFormat* pCpyFormat, SwFEShell& rSh) { auto& rImp = *rSh.Imp(); auto& rDoc = *rSh.GetDoc(); @@ -752,7 +752,7 @@ // positioning for group members pNew->NbcSetAnchorPos(aGrpAnchor); pNew->SetSnapRect(aSnapRect); - return true; + return nullptr; } } SwFormatAnchor aAnchor(pCpyFormat->GetAnchor()); @@ -766,18 +766,18 @@ { const SdrObject *pCpyObj = pCpyFormat->FindSdrObject(); if(pCpyObj && CheckControlLayer(pCpyObj)) - return true; + return nullptr; } else if(pCpyFormat->Which() == RES_FLYFRMFMT && IsInTextBox(pCpyFormat)) { // This is a fly frame which is anchored in a TextBox, ignore it as // it's already copied as part of copying the content of the // TextBox. - return true; + return nullptr; } // Ignore TextBoxes, they are already handled in sw::DocumentLayoutManager::CopyLayoutFormat(). if(SwTextBoxHelper::isTextBox(pCpyFormat, RES_FLYFRMFMT)) - return true; + return nullptr; aAnchor.SetAnchor(pPos); } else if(RndStdIds::FLY_AT_PAGE == aAnchor.GetAnchorId()) @@ -791,9 +791,13 @@ } SwFrameFormat* pNew = rDoc.getIDocumentLayoutAccess().CopyLayoutFormat(*pCpyFormat, aAnchor, true, true); + return pNew; + } + void lcl_SelectFlyFormat(SwFrameFormat *const pNew, SwFEShell& rSh) + { if(!pNew) - return true; + return; switch(pNew->Which()) { case RES_FLYFRMFMT: @@ -803,10 +807,11 @@ SwFlyFrame* pFlyFrame = static_cast(pNew)->GetFrame(&aPt); if(pFlyFrame) rSh.SelectFlyFrame(*pFlyFrame); - return false; + break; } case RES_DRAWFRMFMT: { + auto& rDrawView = *rSh.Imp()->GetDrawView(); assert(dynamic_cast(pNew)); SwDrawFrameFormat* pDrawFormat = static_cast(pNew); // #i52780# - drawing object has to be made visible on paste. @@ -821,7 +826,6 @@ default: SAL_WARN("sw.core", "unknown fly type"); } - return true; } } @@ -1038,19 +1042,30 @@ // we need a DrawView if(!Imp()->GetDrawView()) MakeDrawView(); - for(auto pCpyFormat: *rClpDoc.GetSpzFrameFormats()) - if(pCpyFormat->Which() != RES_FLYFRMFMT) - lcl_PasteFlyOrDrawFormat(rPaM, pCpyFormat, *this); - for(auto pCpyFormat: *rClpDoc.GetSpzFrameFormats()) - if(pCpyFormat->Which() == RES_FLYFRMFMT) - if(!lcl_PasteFlyOrDrawFormat(rPaM, pCpyFormat, *this)) - break; + ::std::vector inserted; + for (auto const pFlyFormat : *rClpDoc.GetSpzFrameFormats()) + { + // if anchored inside other fly, will be copied when copying + // top-level fly, so skip here! (other non-body anchor + // shouldn't happen here) + SwFormatAnchor const& rAnchor(pFlyFormat->GetAnchor()); + if (RndStdIds::FLY_AT_PAGE == rAnchor.GetAnchorId() + || rClpDoc.GetNodes().GetEndOfExtras().GetIndex() < rAnchor.GetContentAnchor()->nNode.GetIndex()) + { + inserted.emplace_back( + lcl_PasteFlyOrDrawFormat(rPaM, pFlyFormat, *this)); + } + } + for (auto const pFlyFormat : inserted) + { + lcl_SelectFlyFormat(pFlyFormat, *this); + } } else { if( bDelTable && IsTableMode() ) { - SwEditShell::Delete(); + SwEditShell::Delete(false); bDelTable = false; } @@ -1133,7 +1148,7 @@ return; } MovePage( GetThisFrame, GetFirstSub ); - SwPaM aCpyPam( *GetCursor()->GetPoint() ); + ::std::optional oSourcePam( *GetCursor()->GetPoint() ); OUString sStartingPageDesc = GetPageDesc( GetCurPageDesc()).GetName(); SwPageDesc* pDesc = rToFill.FindPageDescByName( sStartingPageDesc, true ); if( pDesc ) @@ -1145,7 +1160,7 @@ return; } //if the page starts with a table a paragraph has to be inserted before - SwNode* pTableNode = aCpyPam.GetNode().FindTableNode(); + SwNode *const pTableNode = oSourcePam->GetNode().FindTableNode(); if(pTableNode) { //insert a paragraph @@ -1155,22 +1170,23 @@ if(GetDoc()->getIDocumentContentOperations().AppendTextNode( aBefore )) { SwPaM aTmp(aBefore); - aCpyPam = aTmp; + *oSourcePam = aTmp; } EndUndo(SwUndoId::INSERT); } MovePage( GetThisFrame, GetLastSub ); - aCpyPam.SetMark(); - *aCpyPam.GetMark() = *GetCursor()->GetPoint(); + oSourcePam->SetMark(); + *oSourcePam->GetMark() = *GetCursor()->GetPoint(); CurrShell aCurr( this ); StartAllAction(); GetDoc()->getIDocumentFieldsAccess().LockExpFields(); - SetSelection(aCpyPam); + SetSelection(*oSourcePam); // copy the text of the selection SwEditShell::Copy(rToFill); + oSourcePam.reset(); // delete it because Undo will remove its node! if(pTableNode) { diff -Nru libreoffice-7.3.4/sw/source/core/frmedt/feshview.cxx libreoffice-7.3.5/sw/source/core/frmedt/feshview.cxx --- libreoffice-7.3.4/sw/source/core/frmedt/feshview.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/frmedt/feshview.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -314,7 +314,7 @@ { const SwFlyFrame *pTmp = GetFlyFromMarked( &rMrkList, this ); OSL_ENSURE( pTmp, "Graphic without Fly" ); - if ( static_cast(pTmp->Lower())->HasAnimation() ) + if ( pTmp && static_cast(pTmp->Lower())->HasAnimation() ) static_cast(pTmp->Lower())->StopAnimation( GetOut() ); } } diff -Nru libreoffice-7.3.4/sw/source/core/frmedt/fetab.cxx libreoffice-7.3.5/sw/source/core/frmedt/fetab.cxx --- libreoffice-7.3.4/sw/source/core/frmedt/fetab.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/frmedt/fetab.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -355,7 +355,7 @@ if ( !bRecordAndHideChanges ) { SwEditShell* pEditShell = GetDoc()->GetEditShell(); - pEditShell->Delete(); + pEditShell->Delete(false); EndAllActionAndCall(); EndUndo(bCompleteTable ? SwUndoId::UI_TABLE_DELETE : SwUndoId::ROW_DELETE); @@ -457,7 +457,7 @@ pWrtShell->UpdateCursor(); } - pEditShell->Delete(); + pEditShell->Delete(false); } SwNodeOffset nIdx; diff -Nru libreoffice-7.3.4/sw/source/core/inc/DocumentContentOperationsManager.hxx libreoffice-7.3.5/sw/source/core/inc/DocumentContentOperationsManager.hxx --- libreoffice-7.3.4/sw/source/core/inc/DocumentContentOperationsManager.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/inc/DocumentContentOperationsManager.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -47,6 +47,7 @@ // Add optional parameter , default value // Needed for hiding of deletion redlines bool DeleteAndJoin( SwPaM&, + SwDeleteFlags flags = SwDeleteFlags::Default, const bool bForceJoinNext = false ) override; bool MoveRange(SwPaM&, SwPosition&, SwMoveFlags) override; @@ -163,10 +164,10 @@ bool m_bIME = false; - bool DeleteAndJoinImpl(SwPaM&, const bool); - bool DeleteAndJoinWithRedlineImpl(SwPaM&, const bool unused = false); - bool DeleteRangeImpl(SwPaM&, const bool unused = false); - bool DeleteRangeImplImpl(SwPaM &); + bool DeleteAndJoinImpl(SwPaM&, SwDeleteFlags, const bool); + bool DeleteAndJoinWithRedlineImpl(SwPaM&, SwDeleteFlags, const bool unused = false); + bool DeleteRangeImpl(SwPaM&, SwDeleteFlags, const bool unused = false); + bool DeleteRangeImplImpl(SwPaM &, SwDeleteFlags); bool ReplaceRangeImpl(SwPaM&, OUString const&, const bool); SwFlyFrameFormat* InsNoTextNode( const SwPosition&rPos, SwNoTextNode*, const SfxItemSet* pFlyAttrSet, diff -Nru libreoffice-7.3.4/sw/source/core/inc/mvsave.hxx libreoffice-7.3.5/sw/source/core/inc/mvsave.hxx --- libreoffice-7.3.4/sw/source/core/inc/mvsave.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/inc/mvsave.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -116,10 +116,10 @@ typedef std::deque< SaveFly > SaveFlyArr; void RestFlyInRange( SaveFlyArr& rArr, const SwPosition& rSttIdx, - const SwNodeIndex* pInsPos ); + const SwNodeIndex* pInsPos, bool isForceToStartPos = false); void SaveFlyInRange( const SwNodeRange& rRg, SaveFlyArr& rArr ); void SaveFlyInRange( const SwPaM& rPam, const SwPosition& rInsPos, - SaveFlyArr& rArr, bool bMoveAllFlys ); + SaveFlyArr& rArr, bool bMoveAllFlys, SwHistory * pHistory = nullptr); void DelFlyInRange( const SwNodeIndex& rMkNdIdx, const SwNodeIndex& rPtNdIdx, diff -Nru libreoffice-7.3.4/sw/source/core/inc/txtfrm.hxx libreoffice-7.3.5/sw/source/core/inc/txtfrm.hxx --- libreoffice-7.3.4/sw/source/core/inc/txtfrm.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/inc/txtfrm.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -30,6 +30,7 @@ namespace sw::mark { class IMark; } class SwCharRange; +class SwInsText; class SwTextNode; class SwTextAttrEnd; class SwTextFormatter; @@ -146,6 +147,8 @@ void RecreateStartTextFrames(SwTextNode & rNode); +auto MakeSwInsText(SwTextNode & rNode, sal_Int32 nPos, sal_Int32 nLen) -> SwInsText; + /** * Decides if rTextNode has a numbering which has layout-level values (e.g. Arabic, but not * none or bullets). diff -Nru libreoffice-7.3.4/sw/source/core/inc/UndoDelete.hxx libreoffice-7.3.5/sw/source/core/inc/UndoDelete.hxx --- libreoffice-7.3.4/sw/source/core/inc/UndoDelete.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/inc/UndoDelete.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -28,6 +28,7 @@ class SwRedlineSaveDatas; class SwTextNode; typedef struct _xmlTextWriter* xmlTextWriterPtr; +enum class SwDeleteFlags; namespace sfx2 { class MetadatableUndo; @@ -60,6 +61,7 @@ bool m_bResetPgDesc : 1; // TRUE: reset PgDsc on following node bool m_bResetPgBrk : 1; // TRUE: reset PgBreak on following node bool m_bFromTableCopy : 1; // TRUE: called by SwUndoTableCpyTable + SwDeleteFlags m_DeleteFlags; bool SaveContent( const SwPosition* pStt, const SwPosition* pEnd, SwTextNode* pSttTextNd, SwTextNode* pEndTextNd ); @@ -67,6 +69,7 @@ public: SwUndoDelete( SwPaM&, + SwDeleteFlags flags, bool bFullPara = false, bool bCalledByTableCpy = false ); virtual ~SwUndoDelete() override; diff -Nru libreoffice-7.3.4/sw/source/core/inc/UndoRedline.hxx libreoffice-7.3.5/sw/source/core/inc/UndoRedline.hxx --- libreoffice-7.3.4/sw/source/core/inc/UndoRedline.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/inc/UndoRedline.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -23,6 +23,7 @@ #include #include #include +#include struct SwSortOptions; class SwRangeRedline; @@ -53,17 +54,22 @@ class SwUndoRedlineDelete final : public SwUndoRedline { +private: + std::unique_ptr m_pHistory; ///< for moved fly anchors + bool m_bCanGroup : 1; bool m_bIsDelim : 1; bool m_bIsBackspace : 1; OUString m_sRedlineText; + void InitHistory(SwPaM const& rRange); + virtual void UndoRedlineImpl(SwDoc & rDoc, SwPaM & rPam) override; virtual void RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam) override; public: - SwUndoRedlineDelete( const SwPaM& rRange, SwUndoId nUserId ); + SwUndoRedlineDelete(const SwPaM& rRange, SwUndoId nUserId, SwDeleteFlags flags = SwDeleteFlags::Default); virtual SwRewriter GetRewriter() const override; bool CanGrouping( const SwUndoRedlineDelete& rPrev ); diff -Nru libreoffice-7.3.4/sw/source/core/layout/atrfrm.cxx libreoffice-7.3.5/sw/source/core/layout/atrfrm.cxx --- libreoffice-7.3.4/sw/source/core/layout/atrfrm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/layout/atrfrm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -3425,7 +3425,7 @@ mpWrtShell->SwEditShell::Copy(*mpWrtShell); mpWrtShell->DestroyCursor(); - mpWrtShell->Delete(); + mpWrtShell->Delete(false); mpWrtShell->Pop(SwCursorShell::PopMode::DeleteCurrent); } diff -Nru libreoffice-7.3.4/sw/source/core/layout/flycnt.cxx libreoffice-7.3.5/sw/source/core/layout/flycnt.cxx --- libreoffice-7.3.4/sw/source/core/layout/flycnt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/layout/flycnt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -549,8 +549,14 @@ aHOri.SetPos(aHOri.GetPos() + aTextRectangle.Left()); aVOri.SetPos(aVOri.GetPos() + aTextRectangle.Top()); // save the new position for the shape - GetFormat()->SetFormatAttr(aHOri); - GetFormat()->SetFormatAttr(aVOri); + auto pFormat = GetFormat(); + const bool bLocked = pFormat->IsModifyLocked(); + if (!bLocked) + pFormat->LockModify(); + pFormat->SetFormatAttr(aHOri); + pFormat->SetFormatAttr(aVOri); + if (!bLocked) + pFormat->UnlockModify(); } if ( bOsz || bConsiderWrapInfluenceDueToOverlapPrevCol || // #i40444# diff -Nru libreoffice-7.3.4/sw/source/core/layout/pagechg.cxx libreoffice-7.3.5/sw/source/core/layout/pagechg.cxx --- libreoffice-7.3.4/sw/source/core/layout/pagechg.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/layout/pagechg.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -255,13 +255,19 @@ void SwPageFrame::DestroyImpl() { - // Cleanup the header-footer controls in the SwEditWin + // Cleanup the header-footer controls in all SwEditWins SwViewShell* pSh = getRootFrame()->GetCurrShell(); - SwWrtShell* pWrtSh = dynamic_cast< SwWrtShell* >( pSh ); - if ( pWrtSh ) + if (pSh) { - SwEditWin& rEditWin = pWrtSh->GetView().GetEditWin(); - rEditWin.GetFrameControlsManager( ).RemoveControls( this ); + for (SwViewShell& rSh : pSh->GetRingContainer()) + { + SwWrtShell* pWrtSh = dynamic_cast< SwWrtShell* >( &rSh ); + if ( pWrtSh ) + { + SwEditWin& rEditWin = pWrtSh->GetView().GetEditWin(); + rEditWin.GetFrameControlsManager( ).RemoveControls( this ); + } + } } // empty FlyContainer, deletion of the Flys is done by the anchor (in base class SwFrame) diff -Nru libreoffice-7.3.4/sw/source/core/layout/trvlfrm.cxx libreoffice-7.3.5/sw/source/core/layout/trvlfrm.cxx --- libreoffice-7.3.4/sw/source/core/layout/trvlfrm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/layout/trvlfrm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1290,13 +1290,22 @@ if( !pStart->GetPrev()->IsLayoutFrame() ) return nullptr; pStart = static_cast(pStart->GetPrev()); - pContent = pStart->IsInDocBody() - ? pStart->ContainsContent() - : pStart->FindPageFrame()->FindFirstBodyContent(); + if( pStart->IsInDocBody() ) + pContent = pStart->ContainsContent(); + else + { + const SwPageFrame *pPage = pStart->FindPageFrame(); + if( !pPage ) + return nullptr; + pContent = pPage->FindFirstBodyContent(); + } } if ( !pContent ) // Somewhere down the road we have to start with one! { - pContent = pStart->FindPageFrame()->GetUpper()->ContainsContent(); + const SwPageFrame *pPage = pStart->FindPageFrame(); + if( !pPage ) + return nullptr; + pContent = pPage->GetUpper()->ContainsContent(); while ( pContent && !pContent->IsInDocBody() ) pContent = pContent->GetNextContentFrame(); if ( !pContent ) @@ -1314,7 +1323,12 @@ pContent = pStart->ContainsContent(); } else // Somewhere down the road we have to start with one! - pContent = pStart->FindPageFrame()->GetUpper()->ContainsContent(); + { + const SwPageFrame *pPage = pStart->FindPageFrame(); + if( !pPage ) + return nullptr; + pContent = pPage->GetUpper()->ContainsContent(); + } } pActual = pContent; } diff -Nru libreoffice-7.3.4/sw/source/core/layout/wsfrm.cxx libreoffice-7.3.5/sw/source/core/layout/wsfrm.cxx --- libreoffice-7.3.4/sw/source/core/layout/wsfrm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/layout/wsfrm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1222,13 +1222,14 @@ // find if there are pages without content following pPage // and if so request a call to CheckPageDescs() SwPageFrame const* pNext(pPage); - if (pRoot->GetCurrShell()->Imp()->IsAction()) + SwViewShell *pSh = pRoot->GetCurrShell(); + if (pSh && pSh->Imp()->IsAction()) { while ((pNext = static_cast(pNext->GetNext()))) { if (!sw::IsPageFrameEmpty(*pNext) && !pNext->IsFootnotePage()) { - pRoot->GetCurrShell()->Imp()->GetLayAction().SetCheckPageNum(pPage->GetPhyPageNum()); + pSh->Imp()->GetLayAction().SetCheckPageNum(pPage->GetPhyPageNum()); break; } } @@ -3001,7 +3002,16 @@ pTmp->InvalidateSize(); } else - pCnt->InvalidatePos(); + { + if (pCnt->FindPageFrame() == FindPageFrame()) + { + pCnt->InvalidatePos(); + } + else + { + SAL_WARN("sw.layout", "footnote frame on different page than ref frame?"); + } + } } } return nReal; diff -Nru libreoffice-7.3.4/sw/source/core/table/swtable.cxx libreoffice-7.3.5/sw/source/core/table/swtable.cxx --- libreoffice-7.3.4/sw/source/core/table/swtable.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/table/swtable.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -249,7 +249,8 @@ template T lcl_MulDiv64(sal_uInt64 nA, sal_uInt64 nM, sal_uInt64 nD) { - return static_cast((nA*nM)/nD); + assert(nD != 0); + return nD == 0 ? static_cast(nA*nM) : static_cast((nA*nM)/nD); } } @@ -299,8 +300,7 @@ SwFrameFormat *pFormat = rBox.GetFrameFormat(); sal_uInt64 nBox = pFormat->GetFrameSize().GetWidth(); nOriginalSum += nBox; - nBox *= nNew; - nBox /= nOld; + nBox = lcl_MulDiv64(nBox, nNew, nOld); const sal_uInt64 nWishedSum = lcl_MulDiv64(nOriginalSum, nNew, nOld) - nSum; if( nWishedSum > 0 ) { diff -Nru libreoffice-7.3.4/sw/source/core/text/txtfrm.cxx libreoffice-7.3.5/sw/source/core/text/txtfrm.cxx --- libreoffice-7.3.4/sw/source/core/text/txtfrm.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/text/txtfrm.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2144,28 +2144,44 @@ sal_Int32 const nNPos = static_cast(pNew)->nPos; sal_Int32 const nNLen = static_cast(pNew)->nLen; nPos = MapModelToView(&rNode, nNPos); - nLen = TextFrameIndex(nNLen); - if (m_pMergedPara) + // unlike redlines, inserting into fieldmark must be explicitly handled + bool isHidden(false); + switch (getRootFrame()->GetFieldmarkMode()) { - UpdateMergedParaForInsert(*m_pMergedPara, true, rNode, nNPos, nNLen); + case sw::FieldmarkMode::ShowCommand: + isHidden = static_cast(pNew)->isInsideFieldmarkResult; + break; + case sw::FieldmarkMode::ShowResult: + isHidden = static_cast(pNew)->isInsideFieldmarkCommand; + break; + case sw::FieldmarkMode::ShowBoth: // just to avoid the warning + break; } - if( IsIdxInside( nPos, nLen ) ) + if (!isHidden) { - if( !nLen ) + nLen = TextFrameIndex(nNLen); + if (m_pMergedPara) { - // Refresh NumPortions even when line is empty! - if( nPos ) - InvalidateSize(); + UpdateMergedParaForInsert(*m_pMergedPara, true, rNode, nNPos, nNLen); + } + if( IsIdxInside( nPos, nLen ) ) + { + if( !nLen ) + { + // Refresh NumPortions even when line is empty! + if( nPos ) + InvalidateSize(); + else + Prepare(); + } else - Prepare(); + InvalidateRange_( SwCharRange( nPos, nLen ), nNLen ); } - else - InvalidateRange_( SwCharRange( nPos, nLen ), nNLen ); + lcl_SetScriptInval( *this, nPos ); + bSetFieldsDirty = true; + lcl_ModifyOfst(*this, nPos, nLen, &o3tl::operator+); } lcl_SetWrong( *this, rNode, nNPos, nNLen, true ); - lcl_SetScriptInval( *this, nPos ); - bSetFieldsDirty = true; - lcl_ModifyOfst(*this, nPos, nLen, &o3tl::operator+); } break; case RES_DEL_CHR: diff -Nru libreoffice-7.3.4/sw/source/core/txtnode/ndtxt.cxx libreoffice-7.3.5/sw/source/core/txtnode/ndtxt.cxx --- libreoffice-7.3.4/sw/source/core/txtnode/ndtxt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/txtnode/ndtxt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2328,7 +2328,7 @@ if ( HasWriterListeners() ) { // send this before messing with hints, which will send RES_UPDATE_ATTR - SwInsText aHint( aPos, nLen ); + SwInsText const aHint(sw::MakeSwInsText(*this, aPos, nLen)); CallSwClientNotify(sw::LegacyModifyHint(nullptr, &aHint)); } @@ -2536,7 +2536,8 @@ // notify frames - before moving hints, because footnotes // want to find their anchor text frame in the follow chain - SwInsText aInsHint(nDestStart, nLen); + // (also ignore fieldmarks, the caller will recreate frames) + SwInsText const aInsHint(nDestStart, nLen, false, false); pDest->TriggerNodeUpdate(sw::LegacyModifyHint(nullptr, &aInsHint)); const sw::MoveText aMoveHint(pDest, nDestStart, nTextStartIdx, nLen); CallSwClientNotify(aMoveHint); @@ -3757,7 +3758,7 @@ if (sInserted.getLength()) { - SwInsText aHint( nStartPos, sInserted.getLength() ); + SwInsText const aHint(sw::MakeSwInsText(*this, nStartPos, sInserted.getLength())); CallSwClientNotify(sw::LegacyModifyHint(nullptr, &aHint)); } } diff -Nru libreoffice-7.3.4/sw/source/core/txtnode/txtedt.cxx libreoffice-7.3.5/sw/source/core/txtnode/txtedt.cxx --- libreoffice-7.3.4/sw/source/core/txtnode/txtedt.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/txtnode/txtedt.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1995,7 +1995,7 @@ SwDelText aDelHint( nPos, nTLen ); CallSwClientNotify(sw::LegacyModifyHint(nullptr, &aDelHint)); - SwInsText aHint( nPos, nTLen ); + SwInsText const aHint(sw::MakeSwInsText(*this, nPos, nTLen)); CallSwClientNotify(sw::LegacyModifyHint(nullptr, &aHint)); } diff -Nru libreoffice-7.3.4/sw/source/core/undo/undel.cxx libreoffice-7.3.5/sw/source/core/undo/undel.cxx --- libreoffice-7.3.4/sw/source/core/undo/undel.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/undel.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -173,6 +173,7 @@ // move the paragraph into this section and to record this in nSectDiff. SwUndoDelete::SwUndoDelete( SwPaM& rPam, + SwDeleteFlags const flags, bool bFullPara, bool bCalledByTableCpy ) : SwUndo(SwUndoId::DELETE, &rPam.GetDoc()), @@ -191,7 +192,9 @@ m_bResetPgDesc( false ), m_bResetPgBrk( false ), m_bFromTableCopy( bCalledByTableCpy ) + , m_DeleteFlags(flags) { + assert(!m_bDelFullPara || !(m_DeleteFlags & SwDeleteFlags::ArtificialSelection)); m_bCacheComment = false; @@ -225,7 +228,9 @@ } else { - DelContentIndex( *rPam.GetMark(), *rPam.GetPoint() ); + DelContentIndex(*rPam.GetMark(), *rPam.GetPoint(), + DelContentType::AllMask + | ((m_DeleteFlags & SwDeleteFlags::ArtificialSelection) ? DelContentType::Replace : DelContentType(0))); ::sw::UndoGuard const undoGuard(rDoc.GetIDocumentUndoRedo()); if (m_nEndNode - m_nSttNode > SwNodeOffset(1)) // check for fully selected nodes { @@ -1201,7 +1206,11 @@ DelBookmarks(rPam.GetMark()->nNode, rPam.GetPoint()->nNode); } else - DelContentIndex( *rPam.GetMark(), *rPam.GetPoint() ); + { + DelContentIndex(*rPam.GetMark(), *rPam.GetPoint(), + DelContentType::AllMask + | ((m_DeleteFlags & SwDeleteFlags::ArtificialSelection) ? DelContentType::Replace : DelContentType(0))); + } m_nSetPos = m_pHistory ? m_pHistory->Count() : 0; m_pHistory->Move( m_nSetPos, &aHstr ); @@ -1217,7 +1226,11 @@ DelBookmarks( rPam.GetMark()->nNode, rPam.GetPoint()->nNode ); } else - DelContentIndex( *rPam.GetMark(), *rPam.GetPoint() ); + { + DelContentIndex(*rPam.GetMark(), *rPam.GetPoint(), + DelContentType::AllMask + | ((m_DeleteFlags & SwDeleteFlags::ArtificialSelection) ? DelContentType::Replace : DelContentType(0))); + } m_nSetPos = m_pHistory ? m_pHistory->Count() : 0; } @@ -1292,7 +1305,7 @@ rDoc.getIDocumentContentOperations().DelFullPara( rPam ); } else - rDoc.getIDocumentContentOperations().DeleteAndJoin( rPam ); + rDoc.getIDocumentContentOperations().DeleteAndJoin(rPam, m_DeleteFlags); } void SwUndoDelete::RepeatImpl(::sw::RepeatContext & rContext) diff -Nru libreoffice-7.3.4/sw/source/core/undo/undobj1.cxx libreoffice-7.3.5/sw/source/core/undo/undobj1.cxx --- libreoffice-7.3.4/sw/source/core/undo/undobj1.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/undobj1.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include @@ -295,7 +296,6 @@ if( rContent.GetContentIdx() ) // no content { assert(&rContent.GetContentIdx()->GetNodes() == &rDoc.GetNodes()); - bool bRemoveIdx = true; if( mnCursorSaveIndexPara > SwNodeOffset(0) ) { SwTextNode *const pNode = @@ -308,14 +308,11 @@ aIdx.GetNode().EndOfSectionIndex() ); SwIndex aIndex( pNode, mnCursorSaveIndexPos ); SwPosition aPos( *pNode, aIndex ); - SwDoc::CorrAbs( aIdx, aEndIdx, aPos, true ); - bRemoveIdx = false; + // don't delete bookmarks here, DelFly() will save them in history + ::PaMCorrAbs(SwPaM(aIdx, aEndIdx), aPos); + // TODO: is aPos actually a sensible pos for e.g. SwXText* ? } } - if( bRemoveIdx ) - { - RemoveIdxFromSection( rDoc, rContent.GetContentIdx()->GetIndex() ); - } } DelFly(& rDoc); } diff -Nru libreoffice-7.3.4/sw/source/core/undo/undobj.cxx libreoffice-7.3.5/sw/source/core/undo/undobj.cxx --- libreoffice-7.3.4/sw/source/core/undo/undobj.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/undobj.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1003,10 +1003,14 @@ // Moving the anchor? else if (!((DelContentType::CheckNoCntnt|DelContentType::ExcludeFlyAtStartEnd) & nDelContentType) && - // at least for calls from SwUndoDelete, - // this should work - other Undos don't - // remember the order of the cursor - (rPoint.nNode.GetIndex() == pAPos->nNode.GetIndex()) + // for SwUndoDelete: rPoint is the node that + // will be Joined - so anchor should be moved + // off it - but UndoImpl() split will insert + // new node *before* existing one so a no-op + // may need to be done here to add it to + // history for Undo. + (rPoint.nNode.GetIndex() == pAPos->nNode.GetIndex() + || pStt->nNode.GetIndex() == pAPos->nNode.GetIndex()) // Do not try to move the anchor to a table! && rMark.nNode.GetNode().IsTextNode()) { diff -Nru libreoffice-7.3.4/sw/source/core/undo/unins.cxx libreoffice-7.3.5/sw/source/core/undo/unins.cxx --- libreoffice-7.3.4/sw/source/core/undo/unins.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/unins.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -686,7 +686,8 @@ if( m_bSplitNext ) { - SwPosition aPos(*pNd, pNd->Len()); + assert(m_nSttCnt + m_sOld.getLength() <= pNd->Len()); + SwPosition aPos(*pNd, m_nSttCnt + m_sOld.getLength()); pDoc->getIDocumentContentOperations().SplitNode( aPos, false ); pNd->RestoreMetadata(m_pMetadataUndoEnd); pNd = pDoc->GetNodes()[ m_nSttNd - m_nOffset ]->GetTextNode(); @@ -720,7 +721,7 @@ } rPam.GetPoint()->nNode = m_nSttNd; - rPam.GetPoint()->nContent = m_nSttCnt; + rPam.GetPoint()->nContent.Assign(rPam.GetPoint()->nNode.GetNode().GetTextNode(), m_nSttCnt); } void SwUndoReplace::Impl::RedoImpl(::sw::UndoRedoContext & rContext) @@ -913,7 +914,7 @@ aPam.GetPoint()->nNode = NODE.nNode; aPam.SetMark(); aPam.GetPoint()->nNode = NODE.nNode + 1; - NODE.pUndoInsNd = new SwUndoDelete( aPam, true ); + NODE.pUndoInsNd = new SwUndoDelete(aPam, SwDeleteFlags::Default, true); } } diff -Nru libreoffice-7.3.4/sw/source/core/undo/unredln.cxx libreoffice-7.3.5/sw/source/core/undo/unredln.cxx --- libreoffice-7.3.4/sw/source/core/undo/unredln.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/unredln.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -27,6 +27,8 @@ #include #include #include +#include +#include #include #include #include @@ -197,7 +199,8 @@ rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any); } -SwUndoRedlineDelete::SwUndoRedlineDelete( const SwPaM& rRange, SwUndoId nUsrId ) +SwUndoRedlineDelete::SwUndoRedlineDelete( + const SwPaM& rRange, SwUndoId const nUsrId, SwDeleteFlags const flags) : SwUndoRedline( nUsrId != SwUndoId::EMPTY ? nUsrId : SwUndoId::DELETE, rRange ), m_bCanGroup( false ), m_bIsDelim( false ), m_bIsBackspace( false ) { @@ -218,6 +221,24 @@ } m_bCacheComment = false; + if (flags & SwDeleteFlags::ArtificialSelection) + { + InitHistory(rRange); + } +} + +void SwUndoRedlineDelete::InitHistory(SwPaM const& rRedline) +{ + m_pHistory.reset(new SwHistory); + // try to rely on direction of rPam here so it works for + // backspacing/deleting consecutive characters + SaveFlyArr flys; + SaveFlyInRange(rRedline, *rRedline.GetMark(), flys, false, m_pHistory.get()); + RestFlyInRange(flys, *rRedline.GetPoint(), &rRedline.GetPoint()->nNode, true); + if (m_pHistory->Count()) + { + m_bCanGroup = false; // how to group history? + } } // bit of a hack, replace everything... @@ -241,12 +262,21 @@ void SwUndoRedlineDelete::UndoRedlineImpl(SwDoc & rDoc, SwPaM & rPam) { rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any); + if (m_pHistory) + { + m_pHistory->TmpRollback(&rDoc, 0); + } } void SwUndoRedlineDelete::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam) { if (rPam.GetPoint() != rPam.GetMark()) { + if (m_pHistory) // if it was created before, it must be recreated now + { + rPam.Normalize(m_bIsBackspace); // to check the correct edge + InitHistory(rPam); + } rDoc.getIDocumentRedlineAccess().AppendRedline( new SwRangeRedline(*mpRedlData, rPam), false ); } sw::UpdateFramesForAddDeleteRedline(rDoc, rPam); @@ -256,7 +286,7 @@ { bool bRet = false; if( SwUndoId::DELETE == mnUserId && mnUserId == rNext.mnUserId && - m_bCanGroup == rNext.m_bCanGroup && + m_bCanGroup && rNext.m_bCanGroup && m_bIsDelim == rNext.m_bIsDelim && m_bIsBackspace == rNext.m_bIsBackspace && m_nSttNode == m_nEndNode && @@ -493,7 +523,7 @@ bool bJoinText, bJoinPrev; sw_GetJoinFlags(rPam, bJoinText, bJoinPrev); - m_pUndoDelete.reset( new SwUndoDelete(rPam, false) ); + m_pUndoDelete.reset(new SwUndoDelete(rPam, SwDeleteFlags::Default, false)); if( bJoinText ) sw_JoinText(rPam, bJoinPrev); @@ -510,7 +540,7 @@ ++rPam.GetPoint()->nNode; rPam.GetBound().nContent.Assign( nullptr, 0 ); rPam.GetBound( false ).nContent.Assign( nullptr, 0 ); - m_pUndoDelete2.reset( new SwUndoDelete(rPam, true) ); + m_pUndoDelete2.reset(new SwUndoDelete(rPam, SwDeleteFlags::Default, true)); } } rPam.DeleteMark(); diff -Nru libreoffice-7.3.4/sw/source/core/undo/untbl.cxx libreoffice-7.3.5/sw/source/core/undo/untbl.cxx --- libreoffice-7.3.4/sw/source/core/undo/untbl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/undo/untbl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2475,11 +2475,11 @@ else *aPam.GetPoint() = SwPosition( aTmpIdx ); } - pUndo = std::make_unique( aPam, bDeleteCompleteParagraph, true ); + pUndo = std::make_unique(aPam, SwDeleteFlags::Default, bDeleteCompleteParagraph, true); } else { - pUndo = std::make_unique( aPam, true ); + pUndo = std::make_unique(aPam, SwDeleteFlags::Default, true); if( pEntry->pUndo ) { pEntry->pUndo->UndoImpl(rContext); @@ -2553,7 +2553,9 @@ // b62341295: Redline for copying tables - Start. rDoc.GetNodes().MakeTextNode( aInsIdx, rDoc.GetDfltTextFormatColl() ); SwPaM aPam( aInsIdx.GetNode(), *rBox.GetSttNd()->EndOfSectionNode()); - std::unique_ptr pUndo = IDocumentRedlineAccess::IsRedlineOn( GetRedlineFlags() ) ? nullptr : std::make_unique( aPam, true ); + std::unique_ptr pUndo(IDocumentRedlineAccess::IsRedlineOn(GetRedlineFlags()) + ? nullptr + : std::make_unique(aPam, SwDeleteFlags::Default, true)); if( pEntry->pUndo ) { pEntry->pUndo->UndoImpl(rContext); @@ -2630,7 +2632,7 @@ SwPaM aPam( aInsIdx.GetNode(), *rBox.GetSttNd()->EndOfSectionNode() ); if( !pDoc->getIDocumentRedlineAccess().IsRedlineOn() ) - pEntry->pUndo = std::make_unique( aPam, true ); + pEntry->pUndo = std::make_unique(aPam, SwDeleteFlags::Default, true); } pEntry->pBoxNumAttr = std::make_uniqueEndOfSectionNode() )); SwPaM aTmpPam( aDeleteStart, aCellEnd ); - pUndo = std::make_unique( aTmpPam, true ); + pUndo = std::make_unique(aTmpPam, SwDeleteFlags::Default, true); } SwPosition aCellStart( SwNodeIndex( *rBox.GetSttNd(), 2 ) ); pText = aCellStart.nNode.GetNode().GetTextNode(); @@ -2821,7 +2823,7 @@ } SwPaM aPam( *pTNd, *pTNd->EndOfSectionNode(), SwNodeOffset(0) , SwNodeOffset(1) ); - m_pDelete.reset( new SwUndoDelete( aPam, true ) ); + m_pDelete.reset(new SwUndoDelete(aPam, SwDeleteFlags::Default, true)); } void SwUndoCpyTable::RedoImpl(::sw::UndoRedoContext & rContext) diff -Nru libreoffice-7.3.4/sw/source/core/unocore/unotext.cxx libreoffice-7.3.5/sw/source/core/unocore/unotext.cxx --- libreoffice-7.3.4/sw/source/core/unocore/unotext.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/unocore/unotext.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -61,6 +61,7 @@ #include #include #include +#include #include #include #include @@ -2006,6 +2007,65 @@ SwNodeRange aCellRange(aStartCellPam.Start()->nNode, aEndCellPam.End()->nNode); rRowNodes.push_back(aCellRange); // note: invalidates pLastCell! + + // tdf#149649 delete any fieldmarks overlapping the cell + IDocumentMarkAccess & rIDMA(*m_pDoc->getIDocumentMarkAccess()); + while (::sw::mark::IFieldmark *const pMark = rIDMA.getFieldmarkFor(*aStartCellPam.Start())) + { + if (pMark->GetMarkEnd() <= *aEndCellPam.End()) + { + if (pMark->GetMarkStart() < *aStartCellPam.Start()) + { + SAL_INFO("sw.uno", "deleting fieldmark overlapping table cell"); + rIDMA.deleteMark(pMark); + } + else + { + break; + } + } + else + { + SwPosition const sepPos(::sw::mark::FindFieldSep(*pMark)); + if (*aStartCellPam.Start() <= sepPos && sepPos <= *aEndCellPam.End()) + { + SAL_INFO("sw.uno", "deleting fieldmark with separator in table cell"); + rIDMA.deleteMark(pMark); + } + else + { + break; + } + } + } + while (::sw::mark::IFieldmark *const pMark = rIDMA.getFieldmarkFor(*aEndCellPam.End())) + { + if (*aStartCellPam.Start() <= pMark->GetMarkStart()) + { + if (*aEndCellPam.End() < pMark->GetMarkEnd()) + { + SAL_INFO("sw.uno", "deleting fieldmark overlapping table cell"); + rIDMA.deleteMark(pMark); + } + else + { + break; + } + } + else + { + SwPosition const sepPos(::sw::mark::FindFieldSep(*pMark)); + if (*aStartCellPam.Start() <= sepPos && sepPos <= *aEndCellPam.End()) + { + SAL_INFO("sw.uno", "deleting fieldmark with separator in table cell"); + rIDMA.deleteMark(pMark); + } + else + { + break; + } + } + } } typedef uno::Sequence< text::TableColumnSeparator > TableColumnSeparators; diff -Nru libreoffice-7.3.4/sw/source/core/view/viewimp.cxx libreoffice-7.3.5/sw/source/core/view/viewimp.cxx --- libreoffice-7.3.4/sw/source/core/view/viewimp.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/core/view/viewimp.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -129,12 +129,13 @@ if(!m_pPaintRegion->empty()) { // This function often gets called with rectangles that line up vertically. - // Try to extend the last one downwards to include the new one. + // Try to extend the last one downwards to include the new one (use Union() + // in case the new one is actually already contained in the last one). SwRect& last = m_pPaintRegion->back(); if(last.Left() == rRect.Left() && last.Width() == rRect.Width() && last.Bottom() + 1 >= rRect.Top() && last.Bottom() <= rRect.Bottom()) { - last = SwRect( last.TopLeft(), rRect.BottomRight()); + last.Union(rRect); // And these rectangles lined up vertically often come up in groups // that line up horizontally. Try to extend the previous rectangle // to the right to include the last one. @@ -144,7 +145,7 @@ if(last2.Top() == last.Top() && last2.Height() == last.Height() && last2.Right() + 1 >= last.Left() && last2.Right() <= last2.Right()) { - last2 = SwRect( last.TopLeft(), rRect.BottomRight()); + last2.Union(last); m_pPaintRegion->pop_back(); return true; } diff -Nru libreoffice-7.3.4/sw/source/filter/html/css1atr.cxx libreoffice-7.3.5/sw/source/filter/html/css1atr.cxx --- libreoffice-7.3.4/sw/source/filter/html/css1atr.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/filter/html/css1atr.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -103,14 +103,6 @@ namespace { -enum class Css1Background { - Attr = 1, - Page = 2, - Table = 3, - Fly = 4, - Section = 5 -}; - enum class Css1FrameSize { NONE = 0x00, Width = 0x01, @@ -153,7 +145,7 @@ static Writer& OutCSS1_SvxULSpace_SvxLRSpace( Writer& rWrt, const SfxItemSet& rItemSet ); static Writer& OutCSS1_SvxBrush( Writer& rWrt, const SfxPoolItem& rHt, - Css1Background nMode, + sw::Css1Background nMode, const OUString *pGraphicName ); static Writer& OutCSS1_SvxBrush( Writer& rWrt, const SfxPoolItem& rHt ); static Writer& OutCSS1_SwFormatFrameSize( Writer& rWrt, const SfxPoolItem& rHt, @@ -191,10 +183,22 @@ } bool IgnorePropertyForReqIF(bool bReqIF, std::string_view rProperty, std::string_view rValue, - bool bTable) + std::optional oMode) { - if (!bReqIF || bTable) + if (!bReqIF) + return false; + + if (oMode.has_value() && *oMode != sw::Css1Background::TableCell) + { + // Table or row. + if (rProperty == sCSS1_P_background && rValue == "transparent") + { + // This is the default already. + return true; + } + return false; + } // Only allow these two keys, nothing else in ReqIF mode. if (rProperty == sCSS1_P_text_decoration) @@ -250,9 +254,14 @@ void SwHTMLWriter::OutCSS1_Property( const char *pProp, std::string_view sVal, const OUString *pSVal, - bool bTable ) + std::optional oMode ) { - if (IgnorePropertyForReqIF(mbReqIF, pProp, sVal, bTable)) + OString aPropertyValue(sVal); + if (aPropertyValue.isEmpty() && pSVal) + { + aPropertyValue = pSVal->toUtf8(); + } + if (IgnorePropertyForReqIF(mbReqIF, pProp, aPropertyValue, oMode)) return; OStringBuffer sOut; @@ -1765,7 +1774,7 @@ &pItem ) ) { OUString rEmbeddedGraphicName; - OutCSS1_SvxBrush( rWrt, *pItem, Css1Background::Page, &rEmbeddedGraphicName ); + OutCSS1_SvxBrush( rWrt, *pItem, sw::Css1Background::Page, &rEmbeddedGraphicName ); } if( SfxItemState::SET == rItemSet.GetItemState( RES_BOX, false, @@ -1795,7 +1804,6 @@ return rWrt; } -// Wrapper for Table background Writer& OutCSS1_TableBGStyleOpt( Writer& rWrt, const SfxPoolItem& rHt ) { SwHTMLWriter& rHTMLWrt = static_cast(rWrt); @@ -1803,7 +1811,7 @@ SwCSS1OutMode aMode( rHTMLWrt, CSS1_OUTMODE_STYLE_OPT_ON | CSS1_OUTMODE_ENCODE| CSS1_OUTMODE_TABLEBOX, nullptr ); - OutCSS1_SvxBrush( rWrt, rHt, Css1Background::Table, nullptr ); + OutCSS1_SvxBrush( rWrt, rHt, sw::Css1Background::TableRow, nullptr ); if (!rHTMLWrt.m_bFirstCSS1Property) rWrt.Strm().WriteChar(cCSS1_style_opt_end); @@ -2051,7 +2059,7 @@ const SfxPoolItem *pItem; const SfxItemSet& rItemSet = rFrameFormat.GetAttrSet(); if( SfxItemState::SET==rItemSet.GetItemState( RES_BACKGROUND, false, &pItem ) ) - OutCSS1_SvxBrush( *this, *pItem, Css1Background::Table, nullptr ); + OutCSS1_SvxBrush( *this, *pItem, sw::Css1Background::Table, nullptr ); if( IsHTMLMode( HTMLMODE_PRINT_EXT ) ) OutCSS1_SvxFormatBreak_SwFormatPDesc_SvxFormatKeep( *this, rItemSet, false ); @@ -2068,7 +2076,7 @@ SwCSS1OutMode const aMode( *this, CSS1_OUTMODE_STYLE_OPT_ON|CSS1_OUTMODE_ENCODE|CSS1_OUTMODE_TABLEBOX, nullptr ); if (pBrushItem) - OutCSS1_SvxBrush(*this, *pBrushItem, Css1Background::Table, nullptr); + OutCSS1_SvxBrush(*this, *pBrushItem, sw::Css1Background::TableCell, nullptr); OutCSS1_SvxBox(*this, rFrameFormat.GetBox()); if (!m_bFirstCSS1Property) Strm().WriteChar(cCSS1_style_opt_end); @@ -2083,7 +2091,7 @@ const SfxPoolItem *pItem; const SfxItemSet& rItemSet = rFrameFormat.GetAttrSet(); if( SfxItemState::SET==rItemSet.GetItemState( RES_BACKGROUND, false, &pItem ) ) - OutCSS1_SvxBrush( *this, *pItem, Css1Background::Section, nullptr ); + OutCSS1_SvxBrush( *this, *pItem, sw::Css1Background::Section, nullptr ); if (pCol) { @@ -2105,7 +2113,7 @@ !rBrushItem.GetGraphicLink().isEmpty() || 0 != rBrushItem.GetGraphicPos() ) { - OutCSS1_SvxBrush( rWrt, rBrushItem, Css1Background::Fly, nullptr ); + OutCSS1_SvxBrush( rWrt, rBrushItem, sw::Css1Background::Fly, nullptr ); bWritten = true; } return bWritten; @@ -3044,12 +3052,12 @@ // Wrapper for OutCSS1_SfxItemSet etc. static Writer& OutCSS1_SvxBrush( Writer& rWrt, const SfxPoolItem& rHt ) { - OutCSS1_SvxBrush( rWrt, rHt, Css1Background::Attr, nullptr ); + OutCSS1_SvxBrush( rWrt, rHt, sw::Css1Background::Attr, nullptr ); return rWrt; } static Writer& OutCSS1_SvxBrush( Writer& rWrt, const SfxPoolItem& rHt, - Css1Background nMode, + sw::Css1Background nMode, const OUString* pGraphicName) { SwHTMLWriter& rHTMLWrt = static_cast(rWrt); @@ -3066,7 +3074,7 @@ OUString aLink = pGraphicName ? *pGraphicName : static_cast(rHt).GetGraphicLink(); SvxGraphicPosition ePos = static_cast(rHt).GetGraphicPos(); - if( Css1Background::Page == nMode && !rHTMLWrt.mbEmbedImages ) + if( sw::Css1Background::Page == nMode && !rHTMLWrt.mbEmbedImages ) { // page style images are exported if not tiled if( aLink.isEmpty() || GPOS_TILED==ePos ) @@ -3108,7 +3116,7 @@ aLink = aGraphicAsLink; } // In tables we only export something if there is a Graphic - if( Css1Background::Table==nMode && !pGrf && !aLink.isEmpty()) + if( (nMode == sw::Css1Background::Table || nMode == sw::Css1Background::TableRow) && !pGrf && !aLink.isEmpty()) return rWrt; // if necessary, add the orientation of the Graphic @@ -3179,7 +3187,7 @@ if( !pGrf && aLink.isEmpty() && !bColor ) { // no color and no Link, but a transparent Brush - if( bTransparent && Css1Background::Fly != nMode ) + if( bTransparent && sw::Css1Background::Fly != nMode ) sOut += OStringToOUString(sCSS1_PV_transparent, RTL_TEXTENCODING_ASCII_US); } else @@ -3226,8 +3234,10 @@ } if( !sOut.isEmpty() ) + { rHTMLWrt.OutCSS1_Property(sCSS1_P_background, std::string_view(), &sOut, - nMode == Css1Background::Table); + nMode); + } return rWrt; } diff -Nru libreoffice-7.3.4/sw/source/filter/html/htmlatr.cxx libreoffice-7.3.5/sw/source/filter/html/htmlatr.cxx --- libreoffice-7.3.4/sw/source/filter/html/htmlatr.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/filter/html/htmlatr.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -686,11 +686,12 @@ if( nNewDefListLvl != rHWrt.m_nDefListLvl ) rHWrt.OutAndSetDefList( nNewDefListLvl ); + bool bAtLeastOneNumbered = false; // if necessary, start a bulleted or numbered list if( rInfo.bInNumberBulletList ) { OSL_ENSURE( !rHWrt.m_nDefListLvl, "DL cannot be inside OL!" ); - OutHTML_NumberBulletListStart( rHWrt, aNumInfo ); + OutHTML_NumberBulletListStart( rHWrt, aNumInfo, bAtLeastOneNumbered ); if( bNumbered ) { @@ -759,7 +760,14 @@ bool bXhtmlBlockQuote = rHWrt.mbXHTML && rInfo.aToken == OOO_STRING_SVTOOLS_HTML_blockquote; // if necessary, start a new list item - if( rInfo.bInNumberBulletList && bNumbered ) + bool bNumberedForListItem = bNumbered; + if (!bNumberedForListItem && rHWrt.mbXHTML && bAtLeastOneNumbered) + { + // OutHTML_NumberBulletListEnd() will end a list item if at least one text node is numbered + // in the list, so open the list item with the same condition here. + bNumberedForListItem = true; + } + if( rInfo.bInNumberBulletList && bNumberedForListItem ) { HtmlWriter html(rWrt.Strm(), rHWrt.maNamespace); html.start(OOO_STRING_SVTOOLS_HTML_li); diff -Nru libreoffice-7.3.4/sw/source/filter/html/htmlnumwriter.cxx libreoffice-7.3.5/sw/source/filter/html/htmlnumwriter.cxx --- libreoffice-7.3.4/sw/source/filter/html/htmlnumwriter.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/filter/html/htmlnumwriter.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -84,7 +84,8 @@ } Writer& OutHTML_NumberBulletListStart( SwHTMLWriter& rWrt, - const SwHTMLNumRuleInfo& rInfo ) + const SwHTMLNumRuleInfo& rInfo, + bool& rAtLeastOneNumbered ) { SwHTMLNumRuleInfo& rPrevInfo = rWrt.GetNumInfo(); bool bSameRule = rPrevInfo.GetNumRule() == rInfo.GetNumRule(); @@ -124,6 +125,7 @@ ++nPos; } + rAtLeastOneNumbered = bAtLeastOneNumbered; if (!bAtLeastOneNumbered) { return rWrt; diff -Nru libreoffice-7.3.4/sw/source/filter/html/wrthtml.hxx libreoffice-7.3.5/sw/source/filter/html/wrthtml.hxx --- libreoffice-7.3.4/sw/source/filter/html/wrthtml.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/filter/html/wrthtml.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -255,6 +255,20 @@ class IDocumentStylePoolAccess; +namespace sw +{ +enum class Css1Background +{ + Attr = 1, + Page = 2, + Table = 3, + Fly = 4, + Section = 5, + TableRow = 6, + TableCell = 7, +}; +} + class SW_DLLPUBLIC SwHTMLWriter : public Writer { std::unique_ptr m_pHTMLPosFlyFrames; @@ -465,7 +479,7 @@ std::string_view rVal ); inline void OutCSS1_Property( const char *pProp, const OUString& rVal ); void OutCSS1_Property( const char *pProp, std::string_view pVal, - const OUString *pSVal, bool bTable = false ); + const OUString *pSVal, std::optional oBackground = std::nullopt ); void OutCSS1_UnitProperty( const char *pProp, tools::Long nVal ); void OutCSS1_PixelProperty( const char *pProp, tools::Long nVal, bool bVert ); void OutCSS1_SfxItemSet( const SfxItemSet& rItemSet, bool bDeep=true ); @@ -491,8 +505,12 @@ void writeFrameFormatOptions(HtmlWriter& aHtml, const SwFrameFormat& rFrameFormat, std::u16string_view rAltText, HtmlFrmOpts nFrameOpts); + /// Writes the formatting for tables. void OutCSS1_TableFrameFormatOptions( const SwFrameFormat& rFrameFormat ); + + /// Writes the borders and background for table cells. void OutCSS1_TableCellBordersAndBG(const SwFrameFormat& rFrameFormat, const SvxBrushItem *pBrushItem); + void OutCSS1_SectionFormatOptions( const SwFrameFormat& rFrameFormat, const SwFormatCol *pCol ); void OutCSS1_FrameFormatOptions( const SwFrameFormat& rFrameFormat, HtmlFrmOpts nFrameOpts, const SdrObject *pSdrObj=nullptr, @@ -693,12 +711,15 @@ Writer& OutCSS1_HintSpanTag( Writer& rWrt, const SfxPoolItem& rHt ); Writer& OutCSS1_HintStyleOpt( Writer& rWrt, const SfxPoolItem& rHt ); +/// Writes the background of table rows. Writer& OutCSS1_TableBGStyleOpt( Writer& rWrt, const SfxPoolItem& rHt ); + Writer& OutCSS1_NumberBulletListStyleOpt( Writer& rWrt, const SwNumRule& rNumRule, sal_uInt8 nLevel ); Writer& OutHTML_NumberBulletListStart( SwHTMLWriter& rWrt, - const SwHTMLNumRuleInfo& rInfo ); + const SwHTMLNumRuleInfo& rInfo, + bool& rAtLeastOneNumbered ); Writer& OutHTML_NumberBulletListEnd( SwHTMLWriter& rWrt, const SwHTMLNumRuleInfo& rNextInfo ); @@ -708,7 +729,7 @@ /// Determines if rProperty with a given rValue has to be suppressed due to ReqIF mode. bool IgnorePropertyForReqIF(bool bReqIF, std::string_view rProperty, std::string_view rValue, - bool bTable = false); + std::optional oBackground = std::nullopt); #endif // INCLUDED_SW_SOURCE_FILTER_HTML_WRTHTML_HXX diff -Nru libreoffice-7.3.4/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-7.3.5/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-7.3.4/sw/source/filter/ww8/docxattributeoutput.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/filter/ww8/docxattributeoutput.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -3064,7 +3064,7 @@ { const char* pVal = nullptr; m_pColorAttrList->getAsChar(FSNS(XML_w, XML_val), pVal); - if (pVal == nullptr || std::string_view("auto") != pVal) + if (pVal != nullptr && std::string_view("auto") != pVal) { m_pSerializer->startElementNS(XML_w14, XML_textFill); m_pSerializer->startElementNS(XML_w14, XML_solidFill); diff -Nru libreoffice-7.3.4/sw/source/ui/dbui/mmresultdialogs.cxx libreoffice-7.3.5/sw/source/ui/dbui/mmresultdialogs.cxx --- libreoffice-7.3.4/sw/source/ui/dbui/mmresultdialogs.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/ui/dbui/mmresultdialogs.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -685,6 +685,14 @@ pTempView->GetDocShell()->GetDoc()->ReplaceDefaults( *pTargetView->GetDocShell()->GetDoc()); pTempView->GetDocShell()->GetDoc()->ReplaceDocumentProperties( *pTargetView->GetDocShell()->GetDoc(), true ); + uno::Reference const xThisSet( + pTargetView->GetDocShell()->GetBaseModel(), uno::UNO_QUERY_THROW); + uno::Reference const xRetSet( + pTempView->GetDocShell()->GetBaseModel(), uno::UNO_QUERY_THROW); + uno::Sequence aInteropGrabBag; + xThisSet->getPropertyValue("InteropGrabBag") >>= aInteropGrabBag; + xRetSet->setPropertyValue("InteropGrabBag", uno::Any(aInteropGrabBag)); + pTargetView->GetWrtShell().PastePages( pTempView->GetWrtShell(), documentStartPageNumber(xConfigItem.get(), nDoc, false), documentEndPageNumber(xConfigItem.get(), nDoc, false)); diff -Nru libreoffice-7.3.4/sw/source/ui/index/cnttab.cxx libreoffice-7.3.5/sw/source/ui/index/cnttab.cxx --- libreoffice-7.3.4/sw/source/ui/index/cnttab.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/ui/index/cnttab.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1788,6 +1788,7 @@ , m_xChapterInfoPB(m_xBuilder->weld_button("chapterinfo")) , m_xPageNoPB(m_xBuilder->weld_button("pageno")) , m_xHyperLinkPB(m_xBuilder->weld_button("hyperlink")) + , m_xFieldBox(m_xBuilder->weld_widget("fieldbox")) , m_xAuthFieldsLB(m_xBuilder->weld_combo_box("authfield")) , m_xAuthInsertPB(m_xBuilder->weld_button("insert")) , m_xAuthRemovePB(m_xBuilder->weld_button("remove")) @@ -1904,8 +1905,17 @@ m_xSecondKeyLB->set_active(0); m_xThirdKeyLB->set_active(0); - //lock size + // lock size of dialog. Determine the field box's widest possible + // configuration (tdf#149186) before doing so. + int nFieldBoxWidth = 0; + for (int eType = TOX_CITATION; eType >= TOX_INDEX; --eType) + { + ShowHideControls(eType); + nFieldBoxWidth = std::max(m_xFieldBox->get_preferred_size().Width(), nFieldBoxWidth); + } + m_xFieldBox->set_size_request(nFieldBoxWidth, -1); Size aPrefSize(m_xContainer->get_preferred_size()); + m_xFieldBox->set_size_request(-1, -1); m_xContainer->set_size_request(aPrefSize.Width(), aPrefSize.Height()); } @@ -1969,6 +1979,39 @@ m_xCommaSeparatedCB->set_active(m_pCurrentForm->IsCommaSeparated()); } +void SwTOXEntryTabPage::ShowHideControls(int eType) +{ + bool bToxIsAuthorities = TOX_AUTHORITIES == eType; + bool bToxIsIndex = TOX_INDEX == eType; + bool bToxIsContent = TOX_CONTENT == eType; + bool bToxSupportsLinks = TOX_CONTENT == eType || + TOX_ILLUSTRATIONS == eType || + TOX_TABLES == eType || + TOX_OBJECTS == eType || + TOX_USER == eType; + + //show or hide controls + m_xEntryNoPB->set_visible(bToxIsContent); + m_xHyperLinkPB->set_visible(bToxSupportsLinks); + m_xRelToStyleCB->set_visible(!bToxIsAuthorities); + m_xChapterInfoPB->set_visible(!bToxIsContent && !bToxIsAuthorities); + m_xEntryPB->set_visible(!bToxIsAuthorities); + m_xPageNoPB->set_visible(!bToxIsAuthorities); + m_xAuthFieldsLB->set_visible(bToxIsAuthorities); + m_xAuthInsertPB->set_visible(bToxIsAuthorities); + m_xAuthRemovePB->set_visible(bToxIsAuthorities); + + m_xFormatFrame->set_visible(!bToxIsAuthorities); + + m_xSortingFrame->set_visible(bToxIsAuthorities); + m_xSortKeyFrame->set_visible(bToxIsAuthorities); + + m_xMainEntryStyleFT->set_visible(bToxIsIndex); + m_xMainEntryStyleLB->set_visible(bToxIsIndex); + m_xAlphaDelimCB->set_visible(bToxIsIndex); + m_xCommaSeparatedCB->set_visible(bToxIsIndex); +} + void SwTOXEntryTabPage::ActivatePage( const SfxItemSet& /*rSet*/) { SwMultiTOXTabDialog* pTOXDlg = static_cast(GetDialogController()); @@ -1979,12 +2022,6 @@ { bool bToxIsAuthorities = TOX_AUTHORITIES == aCurType.eType; bool bToxIsIndex = TOX_INDEX == aCurType.eType; - bool bToxIsContent = TOX_CONTENT == aCurType.eType; - bool bToxSupportsLinks = TOX_CONTENT == aCurType.eType || - TOX_ILLUSTRATIONS == aCurType.eType || - TOX_TABLES == aCurType.eType || - TOX_OBJECTS == aCurType.eType || - TOX_USER == aCurType.eType; m_xLevelLB->clear(); for(sal_uInt16 i = 1; i < m_pCurrentForm->GetFormMax(); i++) @@ -2047,25 +2084,7 @@ m_xLevelLB->select(bToxIsIndex ? 1 : 0); //show or hide controls - m_xEntryNoPB->set_visible(bToxIsContent); - m_xHyperLinkPB->set_visible(bToxSupportsLinks); - m_xRelToStyleCB->set_visible(!bToxIsAuthorities); - m_xChapterInfoPB->set_visible(!bToxIsContent && !bToxIsAuthorities); - m_xEntryPB->set_visible(!bToxIsAuthorities); - m_xPageNoPB->set_visible(!bToxIsAuthorities); - m_xAuthFieldsLB->set_visible(bToxIsAuthorities); - m_xAuthInsertPB->set_visible(bToxIsAuthorities); - m_xAuthRemovePB->set_visible(bToxIsAuthorities); - - m_xFormatFrame->set_visible(!bToxIsAuthorities); - - m_xSortingFrame->set_visible(bToxIsAuthorities); - m_xSortKeyFrame->set_visible(bToxIsAuthorities); - - m_xMainEntryStyleFT->set_visible(bToxIsIndex); - m_xMainEntryStyleLB->set_visible(bToxIsIndex); - m_xAlphaDelimCB->set_visible(bToxIsIndex); - m_xCommaSeparatedCB->set_visible(bToxIsIndex); + ShowHideControls(aCurType.eType); } aLastTOXType = aCurType; diff -Nru libreoffice-7.3.4/sw/source/ui/misc/pggrid.cxx libreoffice-7.3.5/sw/source/ui/misc/pggrid.cxx --- libreoffice-7.3.4/sw/source/ui/misc/pggrid.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/ui/misc/pggrid.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -318,10 +318,13 @@ { sal_Int32 nCharsPerLine = m_aPageSize.Width() / nTextSize; m_xCharsPerLineNF->set_max(nCharsPerLine); + m_xCharsPerLineNF->set_sensitive(nCharsPerLine != 0); m_xCharsPerLineNF->set_value(nCharsPerLine); - m_xLinesPerPageNF->set_max(m_aPageSize.Height() / + sal_Int32 nMaxLines = m_aPageSize.Height() / ( m_xTextSizeMF->denormalize(m_xTextSizeMF->get_value(FieldUnit::TWIP)) + - m_xRubySizeMF->denormalize(m_xRubySizeMF->get_value(FieldUnit::TWIP)))); + m_xRubySizeMF->denormalize(m_xRubySizeMF->get_value(FieldUnit::TWIP))); + m_xLinesPerPageNF->set_max(nMaxLines); + m_xLinesPerPageNF->set_sensitive(nMaxLines != 0); SetLinesOrCharsRanges( *m_xCharsRangeFT , m_xCharsPerLineNF->get_max() ); SetLinesOrCharsRanges( *m_xLinesRangeFT , m_xLinesPerPageNF->get_max() ); } @@ -371,6 +374,7 @@ ( m_xTextSizeMF->denormalize(m_xTextSizeMF->get_value(FieldUnit::TWIP)) + m_xRubySizeMF->denormalize(m_xRubySizeMF->get_value(FieldUnit::TWIP)))); m_xLinesPerPageNF->set_max(nMaxLines); + m_xLinesPerPageNF->set_sensitive(nMaxLines != 0); } SetLinesOrCharsRanges( *m_xLinesRangeFT , m_xLinesPerPageNF->get_max() ); SetLinesOrCharsRanges( *m_xCharsRangeFT , m_xCharsPerLineNF->get_max() ); @@ -417,6 +421,7 @@ sal_Int32 nMaxChars = m_aPageSize.Width() / nTextSize; m_xCharsPerLineNF->set_value(nMaxChars); m_xCharsPerLineNF->set_max(nMaxChars); + m_xCharsPerLineNF->set_sensitive(nMaxChars != 0); SetLinesOrCharsRanges( *m_xCharsRangeFT , m_xCharsPerLineNF->get_max() ); } } @@ -426,6 +431,7 @@ ( m_xTextSizeMF->denormalize(m_xTextSizeMF->get_value(FieldUnit::TWIP)) + m_xRubySizeMF->denormalize(m_xRubySizeMF->get_value(FieldUnit::TWIP)))); m_xLinesPerPageNF->set_max(nMaxLines); + m_xLinesPerPageNF->set_sensitive(nMaxLines != 0); SetLinesOrCharsRanges( *m_xLinesRangeFT , m_xLinesPerPageNF->get_max() ); } } diff -Nru libreoffice-7.3.4/sw/source/uibase/dochdl/swdtflvr.cxx libreoffice-7.3.5/sw/source/uibase/dochdl/swdtflvr.cxx --- libreoffice-7.3.4/sw/source/uibase/dochdl/swdtflvr.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/dochdl/swdtflvr.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1501,6 +1501,11 @@ &nActionFlags ); } + // when HTML is just an image don't generate new section + if (rData.HasFormat(SotClipboardFormatId::HTML_SIMPLE) && rData.HasFormat(SotClipboardFormatId::HTML_NO_COMMENT) + && rData.HasFormat(SotClipboardFormatId::BITMAP) && nFormat == SotClipboardFormatId::FILE_LIST) + nFormat = SotClipboardFormatId::BITMAP; + // tdf#37223 avoid non-native insertion of Calc worksheets in the following cases: // content of 1-cell worksheets are inserted as simple text using RTF format, // bigger worksheets within native (Writer) table cells are inserted as native tables, @@ -4224,7 +4229,7 @@ if ( bTableSel ) { /* delete table contents not cells */ - rSrcSh.Delete(); + rSrcSh.Delete(false); } else { diff -Nru libreoffice-7.3.4/sw/source/uibase/docvw/edtwin.cxx libreoffice-7.3.5/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-7.3.4/sw/source/uibase/docvw/edtwin.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/docvw/edtwin.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2825,69 +2825,72 @@ { const SwPageFrame* pPageFrame = rSh.GetLayout()->GetPageAtPos( aDocPos ); - // Is it active? - bool bActive = true; - const SwPageDesc* pDesc = pPageFrame->GetPageDesc(); - - const SwFrameFormat* pFormat = pDesc->GetLeftFormat(); - if ( pPageFrame->OnRightPage() ) - pFormat = pDesc->GetRightFormat(); - - if ( pFormat ) + if ( pPageFrame ) { - if ( eControl == FrameControlType::Header ) - bActive = pFormat->GetHeader().IsActive(); - else - bActive = pFormat->GetFooter().IsActive(); - } + // Is it active? + bool bActive = true; + const SwPageDesc* pDesc = pPageFrame->GetPageDesc(); - if ( !bActive ) - { - // When in Hide-Whitespace mode, we don't want header - // and footer controls. - if (!rSh.GetViewOptions()->IsHideWhitespaceMode()) - { - SwPaM aPam(*rSh.GetCurrentShellCursor().GetPoint()); - const bool bWasInHeader = aPam.GetPoint()->nNode.GetNode().FindHeaderStartNode() != nullptr; - const bool bWasInFooter = aPam.GetPoint()->nNode.GetNode().FindFooterStartNode() != nullptr; + const SwFrameFormat* pFormat = pDesc->GetLeftFormat(); + if ( pPageFrame->OnRightPage() ) + pFormat = pDesc->GetRightFormat(); - // Is the cursor in a part like similar to the one we clicked on? For example, - // if the cursor is in a header and we click on an empty header... don't change anything to - // keep consistent behaviour due to header edit mode (and the same for the footer as well). + if ( pFormat ) + { + if ( eControl == FrameControlType::Header ) + bActive = pFormat->GetHeader().IsActive(); + else + bActive = pFormat->GetFooter().IsActive(); + } - // Otherwise, we hide the header/footer control if a separator is shown, and vice versa. - if (!(bWasInHeader && eControl == FrameControlType::Header) && - !(bWasInFooter && eControl == FrameControlType::Footer)) + if ( !bActive ) + { + // When in Hide-Whitespace mode, we don't want header + // and footer controls. + if (!rSh.GetViewOptions()->IsHideWhitespaceMode()) { - const bool bSeparatorWasVisible = rSh.IsShowHeaderFooterSeparator(eControl); - rSh.SetShowHeaderFooterSeparator(eControl, !bSeparatorWasVisible); + SwPaM aPam(*rSh.GetCurrentShellCursor().GetPoint()); + const bool bWasInHeader = aPam.GetPoint()->nNode.GetNode().FindHeaderStartNode() != nullptr; + const bool bWasInFooter = aPam.GetPoint()->nNode.GetNode().FindFooterStartNode() != nullptr; - // Repaint everything - Invalidate(); + // Is the cursor in a part like similar to the one we clicked on? For example, + // if the cursor is in a header and we click on an empty header... don't change anything to + // keep consistent behaviour due to header edit mode (and the same for the footer as well). - // tdf#84929. If the footer control had not been showing, do not change the cursor position, - // because the user may have scrolled to turn on the separator control and - // if the cursor cannot be positioned on-screen, then the user would need to scroll back again to use the control. - // This should only be done for the footer. The cursor can always be re-positioned near the header. tdf#134023. - if ( eControl == FrameControlType::Footer && !bSeparatorWasVisible - && rSh.GetViewOptions()->IsUseHeaderFooterMenu() && !Application::IsHeadlessModeEnabled() ) - return; + // Otherwise, we hide the header/footer control if a separator is shown, and vice versa. + if (!(bWasInHeader && eControl == FrameControlType::Header) && + !(bWasInFooter && eControl == FrameControlType::Footer)) + { + const bool bSeparatorWasVisible = rSh.IsShowHeaderFooterSeparator(eControl); + rSh.SetShowHeaderFooterSeparator(eControl, !bSeparatorWasVisible); + + // Repaint everything + Invalidate(); + + // tdf#84929. If the footer control had not been showing, do not change the cursor position, + // because the user may have scrolled to turn on the separator control and + // if the cursor cannot be positioned on-screen, then the user would need to scroll back again to use the control. + // This should only be done for the footer. The cursor can always be re-positioned near the header. tdf#134023. + if ( eControl == FrameControlType::Footer && !bSeparatorWasVisible + && rSh.GetViewOptions()->IsUseHeaderFooterMenu() && !Application::IsHeadlessModeEnabled() ) + return; + } } } - } - else - { - // Make sure we have the proper Header/Footer separators shown - // as these may be changed if clicking on an empty Header/Footer - rSh.SetShowHeaderFooterSeparator( FrameControlType::Header, eControl == FrameControlType::Header ); - rSh.SetShowHeaderFooterSeparator( FrameControlType::Footer, eControl == FrameControlType::Footer ); - - if ( !rSh.IsHeaderFooterEdit() ) + else { - rSh.ToggleHeaderFooterEdit(); + // Make sure we have the proper Header/Footer separators shown + // as these may be changed if clicking on an empty Header/Footer + rSh.SetShowHeaderFooterSeparator( FrameControlType::Header, eControl == FrameControlType::Header ); + rSh.SetShowHeaderFooterSeparator( FrameControlType::Footer, eControl == FrameControlType::Footer ); + + if ( !rSh.IsHeaderFooterEdit() ) + { + rSh.ToggleHeaderFooterEdit(); - // Repaint everything - rSh.GetWin()->Invalidate(); + // Repaint everything + rSh.GetWin()->Invalidate(); + } } } } @@ -6514,7 +6517,7 @@ if (rSh.SelectTextView(nStartPos + TextFrameIndex(rSelection.Min()), nStartPos + TextFrameIndex(rSelection.Max()))) { - rSh.Delete(); + rSh.Delete(false); return true; } diff -Nru libreoffice-7.3.4/sw/source/uibase/docvw/FrameControlsManager.cxx libreoffice-7.3.5/sw/source/uibase/docvw/FrameControlsManager.cxx --- libreoffice-7.3.4/sw/source/uibase/docvw/FrameControlsManager.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/docvw/FrameControlsManager.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -127,7 +127,7 @@ else { SwFrameControlPtr pNewControl = std::make_shared( - VclPtr::Create( m_pEditWin, pPageFrame ).get() ); + VclPtr::Create( m_pEditWin, pPageFrame ).get() ); const SwViewOption* pViewOpt = m_pEditWin->GetView().GetWrtShell().GetViewOptions(); pNewControl->SetReadonly( pViewOpt->IsReadonly() ); @@ -136,7 +136,7 @@ pControl.swap( pNewControl ); } - SwPageBreakWin* pWin = static_cast(pControl->GetWindow()); + SwBreakDashedLine* pWin = static_cast(pControl->GetWindow()); assert (pWin != nullptr); pWin->UpdatePosition(); if (!pWin->IsVisible()) @@ -215,15 +215,20 @@ pWin->ShowAll(true); } -const SwPageFrame* SwFrameMenuButtonBase::GetPageFrame() const +const SwPageFrame* SwFrameMenuButtonBase::GetPageFrame(const SwFrame* pFrame) { - if (m_pFrame->IsPageFrame()) - return static_cast( m_pFrame ); + if (pFrame->IsPageFrame()) + return static_cast(pFrame); + + if (pFrame->IsFlyFrame()) + return static_cast(pFrame)->GetAnchorFrame()->FindPageFrame(); - if (m_pFrame->IsFlyFrame()) - return static_cast(m_pFrame)->GetAnchorFrame()->FindPageFrame(); + return pFrame->FindPageFrame(); +} - return m_pFrame->FindPageFrame(); +const SwPageFrame* SwFrameMenuButtonBase::GetPageFrame() const +{ + return SwFrameMenuButtonBase::GetPageFrame(m_pFrame); } void SwFrameMenuButtonBase::dispose() @@ -234,11 +239,16 @@ InterimItemWindow::dispose(); } -void SwFrameMenuButtonBase::SetVirDevFont() +void SwFrameMenuButtonBase::SetVirDevFont(OutputDevice& rVirDev) { // Get the font and configure it vcl::Font aFont = Application::GetSettings().GetStyleSettings().GetToolFont(); - weld::SetPointFont(*m_xVirDev, aFont); + weld::SetPointFont(rVirDev, aFont); +} + +void SwFrameMenuButtonBase::SetVirDevFont() +{ + SetVirDevFont(*m_xVirDev); } SwFrameControl::SwFrameControl( const VclPtr &pWindow ) diff -Nru libreoffice-7.3.4/sw/source/uibase/docvw/PageBreakWin.cxx libreoffice-7.3.5/sw/source/uibase/docvw/PageBreakWin.cxx --- libreoffice-7.3.4/sw/source/uibase/docvw/PageBreakWin.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/docvw/PageBreakWin.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -59,69 +59,91 @@ using namespace basegfx; using namespace basegfx::utils; -namespace +SwBreakDashedLine::SwBreakDashedLine(SwEditWin* pEditWin, const SwFrame *pFrame) + : SwDashedLine(pEditWin, &SwViewOption::GetPageBreakColor) + , m_pEditWin(pEditWin) + , m_pFrame(pFrame) { - class SwBreakDashedLine : public SwDashedLine - { - private: - VclPtr m_pWin; + set_id("PageBreak"); // for uitest +} - public: - SwBreakDashedLine( vcl::Window* pParent, Color& ( *pColorFn )(), SwPageBreakWin* pWin ) : - SwDashedLine( pParent, pColorFn ), - m_pWin( pWin ) {}; - virtual ~SwBreakDashedLine() override { disposeOnce(); } - virtual void dispose() override { m_pWin.clear(); SwDashedLine::dispose(); } +SwPageBreakWin& SwBreakDashedLine::GetOrCreateWin() +{ + if (!m_pWin) + { + m_pWin = VclPtr::Create(this, m_pEditWin, m_pFrame); + m_pWin->SetPosSizePixel(m_aBtnRect.TopLeft(), m_aBtnRect.GetSize()); + m_pWin->SetZOrder(this, ZOrderFlags::Before); + } + return *m_pWin; +} - virtual void MouseMove( const MouseEvent& rMEvt ) override; - }; +void SwBreakDashedLine::DestroyWin() +{ + m_pWin.disposeAndClear(); +} - void SwBreakDashedLine::MouseMove( const MouseEvent& rMEvt ) +void SwBreakDashedLine::MouseMove( const MouseEvent& rMEvt ) +{ + if ( rMEvt.IsLeaveWindow() ) { - if ( rMEvt.IsLeaveWindow() ) - { - // don't fade if we just move to the 'button' - Point aEventPos( GetPosPixel() + rMEvt.GetPosPixel() ); - if ( !m_pWin->Contains( aEventPos ) || !m_pWin->IsVisible() ) - m_pWin->Fade( false ); - } - else if ( !m_pWin->IsVisible() ) - { - m_pWin->Fade( true ); - } + // don't fade if we just move to the 'button' + Point aEventPos( GetPosPixel() + rMEvt.GetPosPixel() ); + if (m_pWin && (!Contains(aEventPos) || !m_pWin->IsVisible())) + m_pWin->Fade(false); + } + else if (!m_pWin || !m_pWin->IsVisible()) + { + GetOrCreateWin().Fade(true); + } - if ( !rMEvt.IsSynthetic() && !m_pWin->IsVisible() ) - { - m_pWin->UpdatePosition( rMEvt.GetPosPixel() ); - } + if (!rMEvt.IsSynthetic() && (!m_pWin || !m_pWin->IsVisible())) + { + UpdatePosition(rMEvt.GetPosPixel()); } } -SwPageBreakWin::SwPageBreakWin( SwEditWin* pEditWin, const SwFrame *pFrame ) : - SwFrameMenuButtonBase(pEditWin, pFrame, "modules/swriter/ui/pbmenubutton.ui", "PBMenuButton"), +void SwBreakDashedLine::ShowAll(bool bShow) +{ + Show(bShow); +} + +void SwBreakDashedLine::SetReadonly(bool bReadonly) +{ + ShowAll(!bReadonly); +} + +bool SwBreakDashedLine::Contains(const Point &rDocPt) const +{ + if (m_aBtnRect.Contains(rDocPt)) + return true; + + ::tools::Rectangle aLineRect(GetPosPixel(), GetSizePixel()); + return aLineRect.Contains(rDocPt); +} + +SwPageBreakWin::SwPageBreakWin(SwBreakDashedLine* pLine, SwEditWin* pEditWin, const SwFrame *pFrame) : + InterimItemWindow(pEditWin, "modules/swriter/ui/pbmenubutton.ui", "PBMenuButton"), m_xMenuButton(m_xBuilder->weld_menu_button("menubutton")), - m_pLine( nullptr ), + m_pLine(pLine), + m_pEditWin(pEditWin), + m_pFrame(pFrame), m_bIsAppearing( false ), m_nFadeRate( 100 ), m_nDelayAppearing( 0 ), m_aFadeTimer("SwPageBreakWin m_aFadeTimer"), m_bDestroyed( false ) { - set_id("PageBreak"); // for uitest - m_xMenuButton->connect_toggled(LINK(this, SwPageBreakWin, ToggleHdl)); m_xMenuButton->connect_selected(LINK(this, SwPageBreakWin, SelectHdl)); m_xMenuButton->set_accessible_name(SwResId(STR_PAGE_BREAK_BUTTON)); m_xVirDev = m_xMenuButton->create_virtual_device(); - SetVirDevFont(); + SwFrameMenuButtonBase::SetVirDevFont(*m_xVirDev); // Use pixels for the rest of the drawing m_xVirDev->SetMapMode( MapMode ( MapUnit::MapPixel ) ); - // Create the line control - m_pLine = VclPtr::Create( GetEditWin(), &SwViewOption::GetPageBreakColor, this ); - m_aFadeTimer.SetTimeout( 50 ); m_aFadeTimer.SetInvokeHandler( LINK( this, SwPageBreakWin, FadeHandler ) ); } @@ -136,10 +158,12 @@ m_bDestroyed = true; m_aFadeTimer.Stop(); m_xVirDev.disposeAndClear(); - m_pLine.disposeAndClear(); + + m_pLine.clear(); + m_pEditWin.clear(); m_xMenuButton.reset(); - SwFrameMenuButtonBase::dispose(); + InterimItemWindow::dispose(); } void SwPageBreakWin::PaintButton() @@ -241,26 +265,27 @@ IMPL_LINK(SwPageBreakWin, SelectHdl, const OString&, rIdent, void) { - SwFrameControlPtr pThis = GetEditWin()->GetFrameControlsManager( ).GetControl( FrameControlType::PageBreak, GetFrame() ); + SwFrameControlPtr pFrameControl = m_pEditWin->GetFrameControlsManager().GetControl(FrameControlType::PageBreak, m_pFrame); - execute(rIdent); + m_pLine->execute(rIdent); // Only fade if there is more than this temporary shared pointer: // The main reference has been deleted due to a page break removal - if ( pThis.use_count() > 1 ) + if (pFrameControl.use_count() > 1) Fade( false ); } -void SwPageBreakWin::execute(std::string_view rIdent) +void SwBreakDashedLine::execute(std::string_view rIdent) { + const SwPageFrame* pPageFrame = SwFrameMenuButtonBase::GetPageFrame(m_pFrame); // Is there a PageBefore break on this page? - SwContentFrame *pCnt = const_cast(GetPageFrame()->FindFirstBodyContent()); + SwContentFrame *pCnt = const_cast(pPageFrame->FindFirstBodyContent()); SvxBreak eBreak = lcl_GetBreakItem( pCnt ); // Also check the previous page - to see if there is a PageAfter break SwContentFrame *pPrevCnt = nullptr; SvxBreak ePrevBreak = SvxBreak::NONE; - const SwPageFrame* pPrevPage = static_cast(GetPageFrame()->GetPrev()); + const SwPageFrame* pPrevPage = static_cast(pPageFrame->GetPrev()); if ( pPrevPage ) { pPrevCnt = const_cast(pPrevPage->FindLastBodyContent()); @@ -269,9 +294,7 @@ if (pCnt && rIdent == "edit") { - SwEditWin* pEditWin = GetEditWin(); - - SwWrtShell& rSh = pEditWin->GetView().GetWrtShell(); + SwWrtShell& rSh = m_pEditWin->GetView().GetWrtShell(); bool bOldLock = rSh.IsViewLocked(); rSh.LockView( true ); @@ -290,8 +313,8 @@ rSh.SetSelection( rNd ); - SfxStringItem aItem(pEditWin->GetView().GetPool().GetWhich(FN_FORMAT_TABLE_DLG), "textflow"); - pEditWin->GetView().GetViewFrame()->GetDispatcher()->ExecuteList( + SfxStringItem aItem(m_pEditWin->GetView().GetPool().GetWhich(FN_FORMAT_TABLE_DLG), "textflow"); + m_pEditWin->GetView().GetViewFrame()->GetDispatcher()->ExecuteList( FN_FORMAT_TABLE_DLG, SfxCallMode::SYNCHRON | SfxCallMode::RECORD, { &aItem }); @@ -301,15 +324,15 @@ else { SwPaM aPaM( rNd ); - SwPaMItem aPaMItem( pEditWin->GetView().GetPool( ).GetWhich( FN_PARAM_PAM ), &aPaM ); - SfxStringItem aItem( pEditWin->GetView().GetPool( ).GetWhich( SID_PARA_DLG ), "textflow" ); - pEditWin->GetView().GetViewFrame()->GetDispatcher()->ExecuteList( + SwPaMItem aPaMItem( m_pEditWin->GetView().GetPool( ).GetWhich( FN_PARAM_PAM ), &aPaM ); + SfxStringItem aItem( m_pEditWin->GetView().GetPool( ).GetWhich( SID_PARA_DLG ), "textflow" ); + m_pEditWin->GetView().GetViewFrame()->GetDispatcher()->ExecuteList( SID_PARA_DLG, SfxCallMode::SYNCHRON | SfxCallMode::RECORD, { &aItem, &aPaMItem }); } rSh.LockView( bOldLock ); - pEditWin->GrabFocus( ); + m_pEditWin->GrabFocus( ); } else if (pCnt && rIdent == "delete") { @@ -320,7 +343,7 @@ rNd.GetDoc().GetIDocumentUndoRedo( ).StartUndo( SwUndoId::UI_DELETE_PAGE_BREAK, nullptr ); SfxItemSetFixed aSet( - GetEditWin()->GetView().GetWrtShell().GetAttrPool()); + m_pEditWin->GetView().GetWrtShell().GetAttrPool()); aSet.Put( SwFormatPageDesc( nullptr ) ); // This break could be from the current paragraph, if it has a PageBefore break. @@ -328,7 +351,7 @@ aSet.Put( SvxFormatBreakItem( SvxBreak::NONE, RES_BREAK ) ); rNd.GetDoc().getIDocumentContentOperations().InsertItemSet( - SwPaM(rNd), aSet, SetAttrMode::DEFAULT, GetPageFrame()->getRootFrame()); + SwPaM(rNd), aSet, SetAttrMode::DEFAULT, pPageFrame->getRootFrame()); // This break could be from the previous paragraph, if it has a PageAfter break. if ( ePrevBreak == SvxBreak::PageAfter ) @@ -346,7 +369,7 @@ } } -void SwPageBreakWin::UpdatePosition(const std::optional& xEvtPt) +void SwBreakDashedLine::UpdatePosition(const std::optional& xEvtPt) { if ( xEvtPt ) { @@ -355,7 +378,7 @@ m_xMousePt = xEvtPt; } - const SwPageFrame* pPageFrame = GetPageFrame(); + const SwPageFrame* pPageFrame = SwFrameMenuButtonBase::GetPageFrame(m_pFrame); const SwFrame* pPrevPage = pPageFrame; do { @@ -408,34 +431,20 @@ } // Set the button position - Point aBtnPos( nBtnLeft, nYLineOffset - BUTTON_HEIGHT / 2 ); - SetPosSizePixel( aBtnPos, aBtnSize ); - m_xVirDev->SetOutputSizePixel(aBtnSize); + m_aBtnRect = ::tools::Rectangle(Point(nBtnLeft, nYLineOffset - BUTTON_HEIGHT / 2), aBtnSize); + if (m_pWin) + m_pWin->SetRectanglePixel(m_aBtnRect); // Set the line position Point aLinePos( nLineLeft, nYLineOffset - 5 ); Size aLineSize( nLineRight - nLineLeft, 10 ); - m_pLine->SetPosSizePixel( aLinePos, aLineSize ); -} - -void SwPageBreakWin::ShowAll( bool bShow ) -{ - m_pLine->Show( bShow ); + SetPosSizePixel(aLinePos, aLineSize); } -bool SwPageBreakWin::Contains( const Point &rDocPt ) const +void SwPageBreakWin::SetRectanglePixel(const ::tools::Rectangle& rRect) { - ::tools::Rectangle aRect( GetPosPixel(), GetSizePixel() ); - if ( aRect.Contains( rDocPt ) ) - return true; - - ::tools::Rectangle aLineRect( m_pLine->GetPosPixel(), m_pLine->GetSizePixel() ); - return aLineRect.Contains( rDocPt ); -} - -void SwPageBreakWin::SetReadonly( bool bReadonly ) -{ - ShowAll( !bReadonly ); + SetPosSizePixel(rRect.TopLeft(), rRect.GetSize()); + m_xVirDev->SetOutputSizePixel(rRect.GetSize()); } void SwPageBreakWin::Fade( bool bFadeIn ) @@ -474,10 +483,13 @@ if ( m_nFadeRate != 100 && !IsVisible() ) Show(); else if ( m_nFadeRate == 100 && IsVisible( ) ) + { Hide(); + m_pLine->DestroyWin(); + } else { - UpdatePosition(); + m_pLine->UpdatePosition(); PaintButton(); } @@ -485,7 +497,7 @@ m_aFadeTimer.Start(); } -FactoryFunction SwPageBreakWin::GetUITestFactory() const +FactoryFunction SwBreakDashedLine::GetUITestFactory() const { return PageBreakUIObject::create; } diff -Nru libreoffice-7.3.4/sw/source/uibase/inc/FrameControl.hxx libreoffice-7.3.5/sw/source/uibase/inc/FrameControl.hxx --- libreoffice-7.3.4/sw/source/uibase/inc/FrameControl.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/inc/FrameControl.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -73,6 +73,9 @@ virtual const SwFrame* GetFrame() override { return m_pFrame; } virtual SwEditWin* GetEditWin() override { return m_pEditWin; } const SwPageFrame* GetPageFrame() const; + + static const SwPageFrame* GetPageFrame(const SwFrame* pFrame); + static void SetVirDevFont(OutputDevice& rDevice); }; #endif diff -Nru libreoffice-7.3.4/sw/source/uibase/inc/PageBreakWin.hxx libreoffice-7.3.5/sw/source/uibase/inc/PageBreakWin.hxx --- libreoffice-7.3.4/sw/source/uibase/inc/PageBreakWin.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/inc/PageBreakWin.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -10,6 +10,7 @@ #define INCLUDED_SW_SOURCE_UIBASE_INC_PAGEBREAKWIN_HXX #include "edtwin.hxx" +#include "DashedLine.hxx" #include "FrameControl.hxx" #include #include @@ -17,39 +18,72 @@ class Menu; class SwPageFrame; +class SwPageBreakWin; + /** Class for the page break control window. This control shows a line indicating a manual page break and a button providing a few actions on that page break. */ -class SwPageBreakWin final : public SwFrameMenuButtonBase +class SwBreakDashedLine : public SwDashedLine, public ISwFrameControl +{ +private: + VclPtr m_pWin; + VclPtr m_pEditWin; + std::optional m_xMousePt; + ::tools::Rectangle m_aBtnRect; + const SwFrame* m_pFrame; + + SwPageBreakWin& GetOrCreateWin(); + +public: + SwBreakDashedLine(SwEditWin* pEditWin, const SwFrame *pFrame); + + virtual ~SwBreakDashedLine() override { disposeOnce(); } + virtual void dispose() override { m_pWin.disposeAndClear(); m_pEditWin.clear(); SwDashedLine::dispose(); } + + virtual void MouseMove(const MouseEvent& rMEvt) override; + + virtual const SwFrame* GetFrame() override { return m_pFrame; } + virtual SwEditWin* GetEditWin() override { return m_pEditWin; } + virtual void ShowAll(bool bShow) override; + virtual bool Contains(const Point &rDocPt) const override; + virtual void SetReadonly(bool bReadonly) override; + + void execute(std::string_view rIdent); + + virtual FactoryFunction GetUITestFactory() const override; + + void UpdatePosition(const std::optional& xEvtPt = std::optional()); + void DestroyWin(); +}; + +class SwPageBreakWin final : public InterimItemWindow { std::unique_ptr m_xMenuButton; - VclPtr m_pLine; + VclPtr m_pLine; + VclPtr m_pEditWin; + VclPtr m_xVirDev; + const SwFrame* m_pFrame; bool m_bIsAppearing; int m_nFadeRate; int m_nDelayAppearing; ///< Before we show the control, let it transparent for a few timer ticks to avoid appearing with every mouse over. Timer m_aFadeTimer; bool m_bDestroyed; - std::optional m_xMousePt; - public: - SwPageBreakWin( SwEditWin* pEditWin, const SwFrame *pFrame ); + SwPageBreakWin(SwBreakDashedLine* pLine, SwEditWin* pEditWin, const SwFrame *pFrame); virtual ~SwPageBreakWin() override; virtual void dispose() override; - void execute(std::string_view rIdent); - void UpdatePosition(const std::optional& xEvtPt = std::optional()); - - virtual void ShowAll( bool bShow ) override; - virtual bool Contains( const Point &rDocPt ) const override; - - void SetReadonly( bool bReadonly ) override; - void Fade( bool bFadeIn ); - virtual FactoryFunction GetUITestFactory() const override; + void SetRectanglePixel(const ::tools::Rectangle& rRect); + + const SwPageFrame* GetPageFrame() const + { + return SwFrameMenuButtonBase::GetPageFrame(m_pFrame); + } private: DECL_LINK( FadeHandler, Timer *, void ); diff -Nru libreoffice-7.3.4/sw/source/uibase/inc/swuicnttab.hxx libreoffice-7.3.5/sw/source/uibase/inc/swuicnttab.hxx --- libreoffice-7.3.4/sw/source/uibase/inc/swuicnttab.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/inc/swuicnttab.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -324,6 +324,7 @@ std::unique_ptr m_xChapterInfoPB; std::unique_ptr m_xPageNoPB; std::unique_ptr m_xHyperLinkPB; + std::unique_ptr m_xFieldBox; std::unique_ptr m_xAuthFieldsLB; std::unique_ptr m_xAuthInsertPB; std::unique_ptr m_xAuthRemovePB; @@ -383,6 +384,8 @@ void OnModify(bool bAllLevels); DECL_LINK(ModifyClickHdl, weld::Toggleable&, void); + void ShowHideControls(int eType); + public: SwTOXEntryTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rAttrSet); virtual ~SwTOXEntryTabPage() override; diff -Nru libreoffice-7.3.4/sw/source/uibase/inc/uiobject.hxx libreoffice-7.3.5/sw/source/uibase/inc/uiobject.hxx --- libreoffice-7.3.4/sw/source/uibase/inc/uiobject.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/inc/uiobject.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -66,7 +66,7 @@ { public: - PageBreakUIObject(const VclPtr& xEditWin); + PageBreakUIObject(const VclPtr& xEditWin); virtual void execute(const OUString& rAction, const StringMap& rParameters) override; @@ -77,7 +77,7 @@ virtual OUString get_name() const override; - VclPtr mxPageBreakUIObject; + VclPtr mxPageBreakUIObject; }; diff -Nru libreoffice-7.3.4/sw/source/uibase/inc/wrtsh.hxx libreoffice-7.3.5/sw/source/uibase/inc/wrtsh.hxx --- libreoffice-7.3.4/sw/source/uibase/inc/wrtsh.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/inc/wrtsh.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -282,7 +282,7 @@ bool DelLeft(); // also deletes the frame or sets the cursor in the frame when bDelFrame == false - bool DelRight(); + bool DelRight(bool isReplaceHeuristic = false); void DelToEndOfPara(); void DelToStartOfPara(); bool DelToEndOfSentence(); diff -Nru libreoffice-7.3.4/sw/source/uibase/lingu/hhcwrp.cxx libreoffice-7.3.5/sw/source/uibase/lingu/hhcwrp.cxx --- libreoffice-7.3.4/sw/source/uibase/lingu/hhcwrp.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/lingu/hhcwrp.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -319,7 +319,7 @@ // restore those for the new text m_rWrtShell.GetCurAttr( aItemSet ); - m_rWrtShell.Delete(); + m_rWrtShell.Delete(true); m_rWrtShell.Insert( rNewText ); // select new inserted text (currently the Point is right after the new text) @@ -339,7 +339,7 @@ } else { - m_rWrtShell.Delete(); + m_rWrtShell.Delete(true); m_rWrtShell.Insert( rNewText ); } } diff -Nru libreoffice-7.3.4/sw/source/uibase/ribbar/inputwin.cxx libreoffice-7.3.5/sw/source/uibase/ribbar/inputwin.cxx --- libreoffice-7.3.4/sw/source/uibase/ribbar/inputwin.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/ribbar/inputwin.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -247,7 +247,7 @@ if( m_pWrtShell->SwCursorShell::HasSelection() ) { m_pWrtShell->StartUndo( SwUndoId::DELETE ); - m_pWrtShell->Delete(); + m_pWrtShell->Delete(false); if( SwUndoId::EMPTY != m_pWrtShell->EndUndo( SwUndoId::DELETE )) { m_bCallUndo = true; @@ -469,7 +469,7 @@ m_pWrtShell->MoveSection( GoCurrSection, fnSectionStart ); m_pWrtShell->SetMark(); m_pWrtShell->MoveSection( GoCurrSection, fnSectionEnd ); - m_pWrtShell->SwEditShell::Delete(); + m_pWrtShell->SwEditShell::Delete(false); m_pWrtShell->EndAllAction(); } } diff -Nru libreoffice-7.3.4/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx libreoffice-7.3.5/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx --- libreoffice-7.3.4/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -80,7 +80,11 @@ updateEntries(aStore, m_nParIdx); } -WriterInspectorTextPanel::~WriterInspectorTextPanel() { m_pShell->SetChgLnk(m_oldLink); } +WriterInspectorTextPanel::~WriterInspectorTextPanel() +{ + if (m_pShell) + m_pShell->SetChgLnk(m_oldLink); +} static OUString PropertyNametoRID(const OUString& rName) { diff -Nru libreoffice-7.3.4/sw/source/uibase/uitest/uiobject.cxx libreoffice-7.3.5/sw/source/uibase/uitest/uiobject.cxx --- libreoffice-7.3.4/sw/source/uibase/uitest/uiobject.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/uitest/uiobject.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -220,7 +220,7 @@ return "CommentUIObject"; } -PageBreakUIObject::PageBreakUIObject(const VclPtr& xPageBreakUIObject): +PageBreakUIObject::PageBreakUIObject(const VclPtr& xPageBreakUIObject): WindowUIObject(xPageBreakUIObject), mxPageBreakUIObject(xPageBreakUIObject) { @@ -237,7 +237,7 @@ std::unique_ptr PageBreakUIObject::create(vcl::Window* pWindow) { - SwPageBreakWin* pPageBreakWin = dynamic_cast(pWindow); + SwBreakDashedLine* pPageBreakWin = dynamic_cast(pWindow); assert(pPageBreakWin); return std::unique_ptr(new PageBreakUIObject(pPageBreakWin)); } diff -Nru libreoffice-7.3.4/sw/source/uibase/utlui/content.cxx libreoffice-7.3.5/sw/source/uibase/utlui/content.cxx --- libreoffice-7.3.4/sw/source/uibase/utlui/content.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/utlui/content.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -4728,7 +4728,7 @@ SwRewriter aRewriter; aRewriter.AddRule(UndoArg1, SwResId(STR_CHAPTERS, nChapters)); m_pActiveShell->StartUndo(SwUndoId::DELETE, &aRewriter); - m_pActiveShell->Delete(); + m_pActiveShell->Delete(false); m_pActiveShell->EndUndo(); m_pActiveShell->EndAction(); diff -Nru libreoffice-7.3.4/sw/source/uibase/wrtsh/delete.cxx libreoffice-7.3.5/sw/source/uibase/wrtsh/delete.cxx --- libreoffice-7.3.4/sw/source/uibase/wrtsh/delete.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/wrtsh/delete.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -110,7 +110,7 @@ SetMark(); SwCursorShell::RightMargin(); - bool bRet = Delete(); + bool bRet = Delete(false); Pop(SwCursorShell::PopMode::DeleteCurrent); if( bRet ) UpdateAttr(); @@ -120,7 +120,7 @@ { OpenMark(); SwCursorShell::LeftMargin(); - bool bRet = Delete(); + bool bRet = Delete(false); CloseMark( bRet ); } @@ -128,7 +128,7 @@ { OpenMark(); SwCursorShell::RightMargin(); - bool bRet = Delete(); + bool bRet = Delete(false); CloseMark( bRet ); } @@ -170,7 +170,7 @@ { SwActContext aActContext(this); ResetCursorStack(); - Delete(); + Delete(false); UpdateAttr(); } if( IsBlockMode() ) @@ -279,7 +279,7 @@ } } } - bool bRet = Delete(); + bool bRet = Delete(true); if( !bRet && bSwap ) SwCursorShell::SwapPam(); CloseMark( bRet ); @@ -292,7 +292,7 @@ return bRet; } -bool SwWrtShell::DelRight() +bool SwWrtShell::DelRight(bool const isReplaceHeuristic) { // Will be or'ed, if a tableselection exists; // will here be implemented on SelectionType::Table @@ -319,7 +319,7 @@ { SwActContext aActContext(this); ResetCursorStack(); - Delete(); + Delete(isReplaceHeuristic); UpdateAttr(); } if( IsBlockMode() ) @@ -402,7 +402,7 @@ OpenMark(); SwCursorShell::Right(1, CRSR_SKIP_CELLS); - bRet = Delete(); + bRet = Delete(true); CloseMark( bRet ); if (!bRet) { // false indicates HasReadonlySel failed @@ -485,7 +485,7 @@ } OpenMark(); SwCursorShell::Right(nRedlineLength, CRSR_SKIP_CHARS); - bRet = Delete(); + bRet = Delete(false); CloseMark( bRet ); } else @@ -561,7 +561,7 @@ Pop(SwCursorShell::PopMode::DeleteCurrent); return; } - bool bRet = Delete(); + bool bRet = Delete(false); Pop(SwCursorShell::PopMode::DeleteCurrent); if( bRet ) UpdateAttr(); @@ -578,7 +578,7 @@ Pop(SwCursorShell::PopMode::DeleteCurrent); return; } - bool bRet = Delete(); + bool bRet = Delete(false); Pop(SwCursorShell::PopMode::DeleteCurrent); if( bRet ) UpdateAttr(); @@ -593,7 +593,7 @@ if(IsStartOfDoc()) return; OpenMark(); - bool bRet = BwdSentence_() && Delete(); + bool bRet = BwdSentence_() && Delete(false); CloseMark( bRet ); } @@ -625,7 +625,7 @@ } else { - bRet = FwdSentence_() && Delete(); + bRet = FwdSentence_() && Delete(false); } CloseMark( bRet ); return bRet; @@ -646,7 +646,7 @@ else EndWrd(); - bool bRet = Delete(); + bool bRet = Delete(false); if( bRet ) UpdateAttr(); else @@ -670,7 +670,7 @@ else SttWrd(); } - bool bRet = Delete(); + bool bRet = Delete(false); if( bRet ) UpdateAttr(); else diff -Nru libreoffice-7.3.4/sw/source/uibase/wrtsh/select.cxx libreoffice-7.3.5/sw/source/uibase/wrtsh/select.cxx --- libreoffice-7.3.4/sw/source/uibase/wrtsh/select.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/wrtsh/select.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -908,7 +908,7 @@ ClearMark(); SetMark(); SwCursorShell::Left(1,CRSR_SKIP_CHARS); - SwFEShell::Delete(); + SwFEShell::Delete(true); Pop(SwCursorShell::PopMode::DeleteCurrent); } } @@ -922,7 +922,7 @@ ClearMark(); SetMark(); SwCursorShell::Right(1,CRSR_SKIP_CHARS); - SwFEShell::Delete(); + SwFEShell::Delete(true); Pop(SwCursorShell::PopMode::DeleteCurrent); } } diff -Nru libreoffice-7.3.4/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-7.3.5/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-7.3.4/sw/source/uibase/wrtsh/wrtsh1.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/source/uibase/wrtsh/wrtsh1.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -245,7 +245,8 @@ StartUndo(SwUndoId::REPLACE, &aRewriter); bStarted = true; Push(); - bDeleted = DelRight(); + // let's interpret a selection within the same node as "replace" + bDeleted = DelRight(GetCursor()->GetPoint()->nNode == GetCursor()->GetMark()->nNode); Pop(SwCursorShell::PopMode::DeleteCurrent); // Restore selection (if tracking changes) NormalizePam(false); // tdf#127635 put point at the end of deletion ClearMark(); @@ -1791,7 +1792,7 @@ StartUndo( SwUndoId::REPLACE, &aRewriter ); bStarted = true; - DelRight(); + DelRight(true); } SwEditShell::AutoCorrect( rACorr, IsInsMode(), cChar ); diff -Nru libreoffice-7.3.4/sw/uiconfig/swriter/ui/calendar.ui libreoffice-7.3.5/sw/uiconfig/swriter/ui/calendar.ui --- libreoffice-7.3.4/sw/uiconfig/swriter/ui/calendar.ui 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/uiconfig/swriter/ui/calendar.ui 2022-07-15 19:12:51.000000000 +0000 @@ -15,9 +15,6 @@ True True - 2019 - 1 - 14 False diff -Nru libreoffice-7.3.4/sw/uiconfig/swriter/ui/objectdialog.ui libreoffice-7.3.5/sw/uiconfig/swriter/ui/objectdialog.ui --- libreoffice-7.3.4/sw/uiconfig/swriter/ui/objectdialog.ui 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/uiconfig/swriter/ui/objectdialog.ui 2022-07-15 19:12:51.000000000 +0000 @@ -8,6 +8,7 @@ Object False dialog + True False diff -Nru libreoffice-7.3.4/sw/uiconfig/swriter/ui/tocentriespage.ui libreoffice-7.3.5/sw/uiconfig/swriter/ui/tocentriespage.ui --- libreoffice-7.3.4/sw/uiconfig/swriter/ui/tocentriespage.ui 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sw/uiconfig/swriter/ui/tocentriespage.ui 2022-07-15 19:12:51.000000000 +0000 @@ -513,7 +513,7 @@ - + True False 6 diff -Nru libreoffice-7.3.4/sysui/desktop/macosx/Info.plist.in libreoffice-7.3.5/sysui/desktop/macosx/Info.plist.in --- libreoffice-7.3.4/sysui/desktop/macosx/Info.plist.in 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/sysui/desktop/macosx/Info.plist.in 2022-07-15 19:12:51.000000000 +0000 @@ -1959,6 +1959,8 @@ @MACOSX_DEPLOYMENT_TARGET@.0 NSHighResolutionCapable + NSContactsUsageDescription + You can add your contacts as a data source for mail merge or similar operations. diff -Nru libreoffice-7.3.4/toolkit/source/helper/unowrapper.cxx libreoffice-7.3.5/toolkit/source/helper/unowrapper.cxx --- libreoffice-7.3.4/toolkit/source/helper/unowrapper.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/toolkit/source/helper/unowrapper.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -240,6 +240,12 @@ css::uno::Reference< css::lang::XComponent > xComp = pClient->GetComponentInterface( false ); xComp->dispose(); } + else + { + // We need it to dispose the child windows properly (even without window peer), + // otherwise the vcl::Window will be leaked. + pClient.disposeAndClear(); + } pChild = pNextChild; } diff -Nru libreoffice-7.3.4/translations/source/ab/chart2/messages.po libreoffice-7.3.5/translations/source/ab/chart2/messages.po --- libreoffice-7.3.4/translations/source/ab/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-08 11:26+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -3600,7 +3600,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Иалышәх адиаграмма абазатә тип." diff -Nru libreoffice-7.3.4/translations/source/ab/cui/messages.po libreoffice-7.3.5/translations/source/ab/cui/messages.po --- libreoffice-7.3.4/translations/source/ab/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-04 19:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -17126,176 +17126,152 @@ msgid "Automatic" msgstr "Автоматикала" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Агалактика" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Аконтраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Аклассикатә" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Аграфикатә ҭагалара" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Ашрифтқәа рыхәаҧшра" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Ашрифтқәа рыхьӡынҵа" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/dbaccess/messages.po libreoffice-7.3.5/translations/source/ab/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ab/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-12 17:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -3327,73 +3327,73 @@ msgstr "Иаҧҵатәуп иҿыцу адырқәа рбаза" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Иаарттәуп иҟоу адырқәа рбаза афаил" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Аҵыхәтәантәиқәа:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Иаарттәуп" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3401,7 +3401,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/extensions/messages.po libreoffice-7.3.5/translations/source/ab/extensions/messages.po --- libreoffice-7.3.4/translations/source/ab/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -290,537 +290,525 @@ msgid "Refresh form" msgstr "Ирҿыцтәуп аформа" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Атеқст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Иалхӡам" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Иалхуп" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Уажәтәи адаҟьа" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Мап" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ааи" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Хыхьла" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Мап" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Адиапазон" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Горизонталла" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Астандарт" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Аҟәыхра" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Аилыркаага" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Иалху анҵамҭа" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Мап" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Горизонталла" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Арымарахь" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Ацентр ала" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Иҧсахтәуп" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Иеикәрҳәтәуп" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Мап" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ашәагаа иақәыршәатәуп" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Армарахьтә арӷьарахь" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Арӷьарахьтә армарахь" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Абзац ахь" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Асимвол еиҧш" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Адаҟьахь" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Асимвол ахь" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Адаҟьахь" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/fpicker/messages.po libreoffice-7.3.5/translations/source/ab/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ab/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -211,55 +211,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Афаил ахьӡ:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Афаил атип:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Аҧхьара мацараз" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Иеиқәырхатәуп ажәамаӡа шацу" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Иҧсахтәуп афильтр архиарақәа" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/sc/messages.po libreoffice-7.3.5/translations/source/ab/sc/messages.po --- libreoffice-7.3.4/translations/source/ab/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-09 16:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -25211,97 +25211,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25665,143 +25665,143 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Аҧштәы" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Абызшәа" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Акомментариқәа" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Ахәаҧшра" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Ариашара" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Ахәаҧшра" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Агәыҧ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ашрифт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Аиҟаратәра" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Ахәаҧшра" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Ибжьаргылатәуп" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Амедиа" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Афреим" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ab/sd/messages.po libreoffice-7.3.5/translations/source/ab/sd/messages.po --- libreoffice-7.3.4/translations/source/ab/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-08 11:26+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -4171,109 +4171,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7064,109 +7064,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/sw/messages.po libreoffice-7.3.5/translations/source/ab/sw/messages.po --- libreoffice-7.3.4/translations/source/ab/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2020-10-31 11:36+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Abkhazian \n" @@ -10535,19 +10535,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Астиль" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Астильқәа" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14055,37 +14055,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Аҭыҧхәаҧшра..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14093,31 +14093,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20304,111 +20304,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Аҭыҧхәаҧшра..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Аҭыҧхәаҧшра..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22569,49 +22569,49 @@ msgstr "Аобиеқтқәа" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Атип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Апараметрқәа" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Агиперзхьарҧш" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27409,7 +27409,7 @@ msgstr "Ирҿыцтәуп" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ab/vcl/messages.po libreoffice-7.3.5/translations/source/ab/vcl/messages.po --- libreoffice-7.3.4/translations/source/ab/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ab/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-02-07 23:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -2325,170 +2325,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Даҽакы:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "адаҟьақәа рыбжьара" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Аброшиура" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/af/chart2/messages.po libreoffice-7.3.5/translations/source/af/chart2/messages.po --- libreoffice-7.3.4/translations/source/af/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-14 10:10+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -3602,7 +3602,7 @@ msgstr "Spesifiseer die aantal lyne vir kolom- en lyndiagramme." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Kies 'n basiese kaarttipe." diff -Nru libreoffice-7.3.4/translations/source/af/cui/messages.po libreoffice-7.3.5/translations/source/af/cui/messages.po --- libreoffice-7.3.4/translations/source/af/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-27 17:40+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1560976497.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Outomaties" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Hoë kontras" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassiek" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Kies die simboolstyl vir die simbole in die nutsbalke en dialoogvensters." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikoons_tyl:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Voeg meer ikoon-temas by via die uitbreiding" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Simbool Grootte" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Benodig herbegin" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Gebruik harde_wareversnelling" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Gaan direk toegang tot die hardeware-kenmerke van die grafiese skerm-kaart om die skermvertoon te verbeter." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Gebruik anti-aliasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "As dit ondersteun word, kan u skakeling vir voorwerpe aan of afskakel. As \"anti-aliasing\" geaktiveer is, lyk die meeste grafiese voorwerpe gladder en met minder artefakte." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Gebruik Skia vir alle Vertoning" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forseer die vertoning van die Skia-sagteware" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Herlaai is nodig. Aktivering voorkom die gebruik van grafiese drywers." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia is huidig Aktief." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia is huidig Gedeaktiveerd." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafika-afvoer" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Wys voo_rskou van fonte" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Vertoon die name van die selekteerbare lettertipes in die toepaslike lettertipe, byvoorbeeld in die \"Lettertipe\"-veld op die \"Formateer\"-werkbalk." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Anti-aliasing van die skerm lettertipes" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Laat teks gladder op die skerm vertoon." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "va_naf:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Voer in die kleinste lettergrootte, waarop gelykmaking toegepas moet word." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Fontlyste" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Doen Grafiese Toetse" diff -Nru libreoffice-7.3.4/translations/source/af/dbaccess/messages.po libreoffice-7.3.5/translations/source/af/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/af/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-17 12:37+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1548168630.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Sk_ep ’n nuwe databasis" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Selekteer om 'n nuwe databasis te skep." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Ing_ebedde databasis:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Open ’n bestaande _databasislêer" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Kies vanuit 'n lys onlangs gebruikte lêers om 'n databasis oop te maak of kies vanuit lêer seleksie dialoog." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Onlangs geb_ruik:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Kies 'n databasislêer om uit die lys onlangs gebruikte lêers oop te maak. Klik op Voltooi om die lêer onmiddellik oop te maak en uit die slimmerd te gaan." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Open" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Maak 'n dialoog vir lêerseleksie oop waar u 'n databasislêer kan kies. Klik op Oopmaak of OK in die lêerseleksie -dialoog om die lêer onmiddellik oop te maak en uit die slimmerd te gaan." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Verbind _aan ’n bestaande databasis" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Kies om 'n databasiedokument te skep vir 'n bestaande databasisverbinding." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Kies 'n databasistipe vir die bestaande databasis konneksie." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Dit is nie moontlik om 'n nuwe databasis te skep omdat of HSQLDB, of Firebird nie beskikbaar is in hierdie omgewing." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Die Databasis Simmerd skep 'n databasis lêer wat inligting oor die databasis bevat." diff -Nru libreoffice-7.3.4/translations/source/af/extensions/messages.po libreoffice-7.3.5/translations/source/af/extensions/messages.po --- libreoffice-7.3.4/translations/source/af/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-27 11:32+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Verfris vorm" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "GET" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "POST" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multideel" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teks" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standaard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standaard (kort JJ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standaard (kort JJJJ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standaard (lank)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/JJ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/JJ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "JJ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/JJJJ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/JJJJ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "JJJJ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "JJ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "JJJJ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 nm" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 nm" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nie gemerk nie" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Gemerk" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nie gedefinieer nie" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle rekords" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiewe rekord" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Huidige bladsy" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nee" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Ouervorm" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "blanko" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "eienaar" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Geen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkel" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Omvang" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horisontaal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikaal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Verstek" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Kanselleer" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hulp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Die gemerkte inskrywing" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posisie van die gemerkte inskrywing" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enkelreël" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multireël" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multireël met formatering" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Geen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horisontaal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikaal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Altwee" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Links bo" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Links middel" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Links onder" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Regs bo" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Regs middel" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Regs onder" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Bo links" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Bo gesentreer" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Bo regs" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Onder links" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Onder gesentreer" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Onder regs" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Gesentreer" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Behou" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Vervang" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Invou" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nee" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Behou verhouding" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Pas by grootte" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Links na regs" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Regs na links" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Gebruik bogeskikte objekinstellings" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nooit" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Wanneer gefokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Altyd" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Aan paragraaf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "As karakter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Aan bladsy" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Aan raam" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Aan karakter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Aan bladsy" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Aan sel" diff -Nru libreoffice-7.3.4/translations/source/af/fpicker/messages.po libreoffice-7.3.5/translations/source/af/fpicker/messages.po --- libreoffice-7.3.4/translations/source/af/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-26 17:36+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -216,55 +216,55 @@ msgstr "Wysigingsdatum" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Oopmaak" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "-Speel" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Lêer_naam:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Lêer_tipe:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Leesalleen" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Stoor met wagwoord" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Outomatiese lêernaamuitbreiding" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Redigeer _filterinstellings" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Enkripteer met GPG-sleutel" diff -Nru libreoffice-7.3.4/translations/source/af/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/af/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/af/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-09-13 16:36+0000\n" -"Last-Translator: Paul Roos \n" -"Language-Team: Afrikaans \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: serval2412 \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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022354.000000\n" #. q6Gg3 @@ -743,7 +743,7 @@ "support1\n" "readmeitem.text" msgid "The main support page offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at https://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at https://www.libreoffice.org/lists/users/. Alternatively, you can send in your questions to users@libreoffice.org. If you like to subscribe to the list (to get email responses), send an empty mail to: users+subscribe@libreoffice.org." -msgstr "Die bladsy met gebruikersondersteuning https://de.libreoffice.org/get-help/community-support/ bevat 'n lys van verskillende maniere om hulp op ${PRODUCTNAME} te kry. U vraag is moontlik al beantwoord, sien https://libreoffice.org/get-help/nabble/ of soek die argiewe van die 'users@libreoffice.org' -poslys op https://listarchives.libreoffice.org/ com / gebruikers / . Stuur alternatiewelik u vrae na gebruikers@de.libreoffice.org . Stuur 'n leë e-pos na: gebruikers + subscribe@ de. libreoffice.org ." +msgstr "Die bladsy met gebruikersondersteuning https://de.libreoffice.org/get-help/community-support/ bevat 'n lys van verskillende maniere om hulp op ${PRODUCTNAME} te kry. U vraag is moontlik al beantwoord, sien https://libreoffice.org/get-help/nabble/ of soek die argiewe van die 'users@libreoffice.org' -poslys op https://listarchives.libreoffice.org/ com / gebruikers / . Stuur alternatiewelik u vrae na gebruikers@de.libreoffice.org . Stuur 'n leë e-pos na: gebruikers + subscribe@ de. libreoffice.org ." #. YnDMB #: readme.xrm @@ -770,7 +770,7 @@ "reportbugs1\n" "readmeitem.text" msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at https://bugs.documentfoundation.org/. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}." -msgstr "Ons stelsel om foute aan te meld, op te spoor en op te los, is tans BugZilla en is geleë op https://bugs.documentfoundation.org/ beskikbaar. Ons moedig almal aan om self foute aan te meld wat op die platform mag voorkom. Die aktiewe rapportering van foute is een van die belangrikste bydraes wat die gebruikersgemeenskap kan lewer om die verdere ontwikkeling van ${PRODUCTNAME} te ondersteun." +msgstr "Ons stelsel om foute aan te meld, op te spoor en op te los, is tans BugZilla en is geleë op https://bugs.documentfoundation.org/ beskikbaar. Ons moedig almal aan om self foute aan te meld wat op die platform mag voorkom. Die aktiewe rapportering van foute is een van die belangrikste bydraes wat die gebruikersgemeenskap kan lewer om die verdere ontwikkeling van ${PRODUCTNAME} te ondersteun." #. WpD2B #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/af/sc/messages.po libreoffice-7.3.5/translations/source/af/sc/messages.po --- libreoffice-7.3.4/translations/source/af/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-06 20:39+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1560976792.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Vertoon Merker" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Afbeeldin_g" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Afbeeldin~g" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "\"D_raw\"" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "\"~Draw\"" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objek" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Uitdruk" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Uit~druk" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Vo_rm" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Vo~rm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Uit_breiding" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Uit~breiding" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Nu_tsbalk" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Nu~tsgoed" @@ -25702,139 +25702,139 @@ msgstr "Afbeeldin_g" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "R_angskik" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "K_leur" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Rooster" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Taal" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Oorsig" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Opmerkings" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Vergelyking" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Aansig" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "\"D_raw\"" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Wysig" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Rangskik" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Aansig" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Groep" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Belyning" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Aansig" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Voeg in" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Raam" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Rangskik" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Rooster" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Aansig" diff -Nru libreoffice-7.3.4/translations/source/af/sd/messages.po libreoffice-7.3.5/translations/source/af/sd/messages.po --- libreoffice-7.3.4/translations/source/af/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -4173,109 +4173,109 @@ msgstr "Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Beeld" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Beeld" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Draw" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Draw" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objek" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Vorm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Vorm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Meester" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Meester" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Uitbreiding" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Uitbreiding" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Nu_tsbalk" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Nu~tsgoed" @@ -7062,109 +7062,109 @@ msgstr "Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Beeld" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Beeld" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Tekening" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Tekening" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objek" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Vorm" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Vorm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Model" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Model" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3-D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Uitbreiding" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Uitbreiding" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Nu_tsbalk" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Nu~tsgoed" diff -Nru libreoffice-7.3.4/translations/source/af/sw/messages.po libreoffice-7.3.5/translations/source/af/sw/messages.po --- libreoffice-7.3.4/translations/source/af/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -10499,19 +10499,19 @@ msgstr "Skuif die geselekteerde paragraafstyl 'n vlak af in die indekshiërargie." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Styl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Style" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Skep indeksinskrywings uit spesifieke paragraafsjablone." @@ -13955,37 +13955,37 @@ msgstr "Ruil databasisse" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definieer" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Databasisse in gebruik" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Beskikb_are databasisse" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Rondkyk..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Open 'n \"Lêerseleksie dialoog\" om databasislêers te open (* .odb). Die geselekteerde lêer word by die lys van beskikbare databasisse gevoeg." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Gebruik die blaaiknoppie om ’n databasislêer te kies." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lys die databasisse wat in gebruik is." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lys die databasisse wat in %PRODUCTNAME geregistreer is." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Ruil databasisse" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Databasis toegepas op dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Wysig die databronne vir die huidige dokument." @@ -20073,109 +20073,109 @@ msgstr "Gebruik die huidige _dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Gebruik die huidige \"Writer\"-dokument as die basis vir die e-pos saamvoegdokument." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Skep ’n nu_we dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Skep 'n nuwe \"Writer\"-dokument vir die e-pos saamvoegdokument." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "B_egin met bestaande dokument" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Gebruik 'n bestaande \"Writer\"-dokument as die basis vir die e-pos saamvoegdokument." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "_Begin met ’n sjabloon" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selekteer die sjabloon wat u wil gebruik met die skepping van u e-pos saamvoegdokument." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Begi_n met ’n onlangs gestoorde begindokument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Gebruik die huidige saamvoegdokument as die basis vir die e-pos saamvoegdokument." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selekteer die dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "B_laai..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Vind die \"Writer\" dokument wat u wil gebruik, en klik dan \"Open\"." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Bl_aai..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Open die \"Sjabloon Selekteerder\"-dialoog." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Die huidige dokument se databron is nie geregistreer. Verwissel databasis asseblief." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Uitruil Databasis..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Kies begindokument vir die massapos" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Spesifiseer die dokument wat gebruik moet word as basis vir die epos saamvoegdokument." @@ -22318,49 +22318,49 @@ msgstr "Objek" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Soort" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opsies" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Vou om" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperskakel" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Rande" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Deursigtigheid" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Werk by" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Vertoon statistieke vir die huidige lêer." diff -Nru libreoffice-7.3.4/translations/source/af/vcl/messages.po libreoffice-7.3.5/translations/source/af/vcl/messages.po --- libreoffice-7.3.4/translations/source/af/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/af/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-14 10:10+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -2324,169 +2324,169 @@ msgstr "Druk meerdere bladsye op een vel papier." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Doelgemaak" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Kies hoeveel bladsye om te druk per vel papier." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Bladsye:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selekteer die aantal rye." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "by" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selekteer die aantal kolomme." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Kantlyn:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selekteer die marge tussen individuele bladsye op 'n vel papier." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "tussen bladsye" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Afstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selekteer die marge tussen gedrukte bladsye en papierrand." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "na kant van papier" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Volgorde:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Links na regs, dan af" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Bo na onder, dan regs" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Bo na onder, dan links" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Regs na links, dan af" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Selekter die volgorde waarin bladsye gedruk word." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Teken ’n raam rondom elke bladsy" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Merk die vakkie vir omranding van elke bladsy." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosjure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Spesifiseer om die dokument te druk in brosjure formaat." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Sorteer orde voorskou" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Wysig die bladsyrangskikking soos dit op elke blad gedruk moet word. Die voorskou toon die finale bladuitleg." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_eer" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Bladuitleg" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Algemeen" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Druk die huidige: hele dokument of seleksie- of gespesifiseerde-bladsy(/)e. U kan ook die drukopsies vir die huidige dokument spesifiseer." diff -Nru libreoffice-7.3.4/translations/source/am/chart2/messages.po libreoffice-7.3.5/translations/source/am/chart2/messages.po --- libreoffice-7.3.4/translations/source/am/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-22 01:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1559505967.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "የ መስመሮች ቁጥር ማሰናጃ ለ አምድ እና ለ መስመር ቻርትስ አይነት:" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "ይምረጡ መሰረታዊ የ ቻርትስ አይነት" diff -Nru libreoffice-7.3.4/translations/source/am/cui/messages.po libreoffice-7.3.5/translations/source/am/cui/messages.po --- libreoffice-7.3.4/translations/source/am/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563646037.000000\n" #. GyY9M @@ -2738,7 +2738,7 @@ #: cui/inc/tipoftheday.hrc:151 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 "" +msgstr "በ መቃኛ እርስዎ ራስጌዎችን መምረጥ እና ማንቀሳቀስ ይችላሉ ወደ ላይ/ታች እና ጽሁፍ ከ ራስጌው ስር ማድረግ ይችላሉ: በ መቃኛ እና ሰነድ ውስጥ:" #. 8qYrk #: cui/inc/tipoftheday.hrc:152 @@ -2762,7 +2762,7 @@ #: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." -msgstr "" +msgstr "የ እርስዎን የ ግርጌ ማስታወሻ ቁጥር መስጠት ያስችሎታል በየ ገጹ: በየ ምእራፉ: በየ ሰነዱ ውስጥ: መሳሪያዎች ▸ የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ ▸ የ ግርጌ ማስታወሻ tab ▸ መቁጠሪያ:" #. gpVRV #: cui/inc/tipoftheday.hrc:156 @@ -2774,7 +2774,7 @@ #: cui/inc/tipoftheday.hrc:157 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." -msgstr "" +msgstr "የ ማመሳከሪያ አስተዳዳሪ? የ 3ኛ አካል ተጨማሪዎች ይጠቀሙ:" #. ALczh #: cui/inc/tipoftheday.hrc:158 @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "ራሱ በራሱ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "ጋላክሲ" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ከፍተኛ ማነጻጸሪያ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ኦክስጂን" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ዘመናዊ" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "ሲፍር" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "ነፋስ" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ " #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "የ ምልክት ዘ_ዴ:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "ተጨማሪ የ ምልክቶች ገጽታ መጨመሪያ በ ተጨማሪ በኩል" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "የ ምልክት ዘዴ" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "እንደገና ማስነሳት ያስፈልጋል" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "የ ጠንካራ_አካል ማፍጠኛ ይጠቀሙ" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "በ ቀጥታ መድረሻ ወደ ጠንካራ አካል ገጽታዎች የ ንድፍ ማሳያ ተሰኪ ለ ማሻሻል የ መመልከቻ ማሳያ " #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ፀረ-ማ_ጥሪያ ይጠቀሙ" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "በሚደገፍ ጊዜ: እርስዎ ማስቻል እና ማሰናከል ይችላሉ ፀረ-ደረጃ የ ንድፎችን: ፀረ-ደረጃ ካስቻሉ በርካታ የ ንድፍ እቃዎች የሚታዩት ለስለስ ብለው ነው ማንኛውም ንድፎች" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "የ ንድፎች ውጤት" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ፊደሎችን በ_ቅድመ እይታ ማሳያ" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "ሊመረጡ የሚችሉ ፊደሎች የ ተመሳሳይ ፊደሎች ስም ማሳያ: ለምሳሌ: ፊደሎች በ ፊደሎች ሳጥን ውስጥ በ አቀራረብ መደርደሪያ" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "የ መመልከቻ ፊደል ማጥሪ _ያ" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "ይምረጡ ለ ጽሁፍ ማለስለሻ በ መመልከቻው ላይ" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ከ_:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "የ ፊደል ዝርዝሮች" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/am/dbaccess/messages.po libreoffice-7.3.5/translations/source/am/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/am/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-06-01 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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563039147.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "አ_ዲስ የዳታቤዝ መፍጠሪያ" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "ይምረጡ አዲስ ዳታቤዝ ለ መፍጠር" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "የ _ተጣበቀ ዳታቤዝ:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "የነበረውን የ ዳታቤዝ _ፋይል መክፈቻ" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "ይምረጡ በ ቅርብ ጊዜ የ ተጠቀሙበት ፋይሎች ዝርዝር ውስጥ የ ዳታቤዝ ፋይል ለ መክፈት ወይንም ከ ፋይል መምረጫ ንግግር ውስጥ ለ መምረጥ:" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_በቅርብ ጊዜ የተጠቀሙት:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "ይምረጡ በ ቅርብ ጊዜ የ ተጠቀሙበት ፋይሎች ዝርዝር ውስጥ የ ዳታቤዝ ፋይል ለ መክፈት: ይጫኑ መጨረሻ ፋይል ወዲያውኑ ለ መክፈት እና ከ አዋቂው ለ መውጣት:" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "መክፈቻ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "እርስዎ የ ዳታቤዝ ፋይል የሚመርጡበት የ ፋይል መምረጫ ንግግር መክፈቻ: ይጫኑ መክፈቻ ወይንም እሺ በ ፋይል መምረጫ ንግግር ውስጥ ወዲያውኑ ፋይል ለ መክፈት እና ከ አዋቂው ለ መውጣት:" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "ወደ ነ_በረው የ ዳታቤዝ መገናኛ" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "ይምረጡ የ ዳታቤዝ ሰነድ ለ ነበረው የ ዳታቤዝ ግንኙነት:" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "ይምረጡ የ ዳታቤዝ አይነት ለ ነበረው የ ዳታቤዝ ግንኙነት:" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "ማሰናጃው ውስጥ አልተገኘም:" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/am/dictionaries/ru_RU/dialog.po libreoffice-7.3.5/translations/source/am/dictionaries/ru_RU/dialog.po --- libreoffice-7.3.4/translations/source/am/dictionaries/ru_RU/dialog.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/dictionaries/ru_RU/dialog.po 2022-07-15 19:12:51.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: 2018-11-26 12:31+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Samson B \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Amharic \n" "Language: am\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.12.2\n" "X-POOTLE-MTIME: 1543235510.000000\n" #. iXbyq @@ -140,4 +140,4 @@ "quotation\n" "property.text" msgid "Quotation" -msgstr "ጥቅሶች" +msgstr "ጥቅስ" diff -Nru libreoffice-7.3.4/translations/source/am/editeng/messages.po libreoffice-7.3.5/translations/source/am/editeng/messages.po --- libreoffice-7.3.4/translations/source/am/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-09-10 21:17+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Samson B \n" -"Language-Team: Amharic \n" +"Language-Team: Amharic \n" "Language: am\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561216497.000000\n" #. BHYB4 @@ -1452,7 +1452,7 @@ #: include/editeng/editrids.hrc:256 msgctxt "RID_SVXITEMS_CHARROTATE_FITLINE" msgid "Fit to line" -msgstr "በመስመሩ ልክ" +msgstr "በ መስመሩ ልክ" #. 8DQGe #: include/editeng/editrids.hrc:257 diff -Nru libreoffice-7.3.4/translations/source/am/extensions/messages.po libreoffice-7.3.5/translations/source/am/extensions/messages.po --- libreoffice-7.3.4/translations/source/am/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-27 22:41+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1558548713.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "ፎርም ማነቃቂያ" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ማግኛ" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "መለጠፊያ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "በርካታ አካል" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ጽሁፍ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "መደበኛ (አጭር)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "መደበኛ (አጭር አመት)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "መደበኛ (አጭር አመት)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "መደበኛ (ረጅም)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ቀን/ወር/አመት" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ወር/ቀን/አመት" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "አመት/ወር/ቀን" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ቀን/ወር/አመት" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ወር/ቀን/አመት" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "አመት/ወር/ቀን" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "አመት-ወር-ቀን" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "አመት-ወር-ቀን" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 ከሰአት" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 ከሰአት" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "አልተመረጠም" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ተመርጧል" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "አልተገለጸም" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ሁሉንም መዝገቦች" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ንቁ መዝገቦች" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "የ አሁኑ ገጽ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "አይ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "አዎ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "የ ወላጅ ፎርም" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_ባዶ" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_ወላጅ" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_ራስ" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ከ _ላይ" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ምንም" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ነጠላ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "በርካታ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "መጠን" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "በ አግድም" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "በ ቁመት" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ነባር" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "እሺ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "መሰረዣ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "እርዳታ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "የ ተመረጠው ማስገቢያ" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "የ ተመረጠው ማስገቢያ ቦታ" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ነጠላ-መስመር" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "በርካታ-መስመር" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "በርካታ-መስመር ከ አቀራረብ ጋር" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "መስመር መቀለቢያ (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+ መስመር መቀለቢያ (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ምንም" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "በ አግድም" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "በ ቁመት" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ሁለቱንም" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3ዲ" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ጠፍጣፋ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "በ ግራ ከ ላይ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "በ ግራ መሀከል" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "በ ግራ ከ ታች" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "በ ቀኝ ከ ላይ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "በ ቀኝ መሀከል" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "በ ቀኝ ከ ታች" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ከ ላይ በ ግራ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ከ ላይ መሀከል" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ከ ላይ በ ቀኝ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ከ ታች በ ግራ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ከ ታች መሀከል" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ከ ታች በ ቀኝ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "መሀከል" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "መጠበቂያ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "መቀየሪያ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ማሳነሻ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "አይ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "መጠን መጠበቂያ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "በ መጠኑ ልክ" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ከ ግራ-ወደ-ቀኝ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ከ ቀኝ-ወደ-ግራ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "በፍጹም" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "በሚያተኩር ጊዜ" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ሁል ጊዜ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ወደ አንቀጽ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "እንደ ባህሪ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ወደ ገጽ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ወደ ክፈፍ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ወደ ባህሪ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ወደ ገጽ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "ወደ ክፍል" diff -Nru libreoffice-7.3.4/translations/source/am/fpicker/messages.po libreoffice-7.3.5/translations/source/am/fpicker/messages.po --- libreoffice-7.3.4/translations/source/am/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-25 14:03+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" @@ -216,55 +216,55 @@ msgstr "ቀን ተሻሽሏል" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_መክፈቻ" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_ማጫወቻ" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "የ ፋይሉ _ስም:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "የ ፋይሉ _አይነት:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ለ _ማንበብ-ብቻ" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "በ መግቢያ ቃል ማስቀመጫ" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_ራሱ በራሱ የፋይል ተቀጥያዎችን መሰየሚያ" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ማረሚያ የ _ማጣሪያ ማሰናጃዎች" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "በ GPG ቁልፍ መመስጠሪያ" diff -Nru libreoffice-7.3.4/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -31886,7 +31886,7 @@ "Label\n" "value.text" msgid "None" -msgstr "" +msgstr "ምንም" #. SvFa2 #: WriterCommands.xcu @@ -31926,7 +31926,7 @@ "Label\n" "value.text" msgid "~Through" -msgstr "" +msgstr "~በሙሉ" #. SocUA #: WriterCommands.xcu @@ -33746,7 +33746,7 @@ "Label\n" "value.text" msgid "After" -msgstr "" +msgstr "በኋላ" #. b5mCd #: WriterCommands.xcu @@ -34216,7 +34216,7 @@ "Label\n" "value.text" msgid "Character Highlighting Color" -msgstr "" +msgstr "ባህሪ ማድመቂያ ቀለም" #. sVA9o #: WriterCommands.xcu @@ -34406,7 +34406,7 @@ "Label\n" "value.text" msgid "Book Preview" -msgstr "የመጽሀፍ ቅድመ እይታ" +msgstr "የ መጽሀፍ ቅድመ እይታ" #. pk7kQ #: WriterCommands.xcu @@ -34536,7 +34536,7 @@ "Label\n" "value.text" msgid "~List" -msgstr "" +msgstr "~ዝርዝር" #. ZmR9V #: WriterCommands.xcu @@ -34686,7 +34686,7 @@ "Label\n" "value.text" msgid "~Add to List" -msgstr "" +msgstr "ወደ ዝርዝር ~መጨመሪያ" #. rbB7v #: WriterCommands.xcu @@ -35246,7 +35246,7 @@ "TooltipLabel\n" "value.text" msgid "Quotation Character Style" -msgstr "" +msgstr "የ ጥቅስ ባህሪ ዘዴ" #. 9LD4r #: WriterCommands.xcu @@ -35486,7 +35486,7 @@ "Label\n" "value.text" msgid "Default Table Style" -msgstr "" +msgstr "ነባር የ ሰንጠረዥ ዘዴ" #. 4AbSB #: WriterCommands.xcu @@ -35646,7 +35646,7 @@ "Label\n" "value.text" msgid "ActiveX Controls" -msgstr "ንቁ መቆጣጠሪያ" +msgstr "ActiveX መቆጣጠሪያ" #. vzPPx #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/am/sc/messages.po libreoffice-7.3.5/translations/source/am/sc/messages.po --- libreoffice-7.3.4/translations/source/am/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563147762.000000\n" #. kBovX @@ -25254,97 +25254,97 @@ msgstr "~መመልከቻ" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "ምስ_ል" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "ምስ~ል" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "መ_ሳያ" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~መሳያ" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "እቃ" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~እቃ" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_መገናኛ" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~መገናኛ" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "ማተሚያ" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~ማተሚያ" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "ፎር_ም" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "ፎር~ም" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "ተ_ጨማሪዎች" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "ተ_ጨማሪዎች" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_መሳሪያዎች" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~መሳሪያዎች" @@ -25703,139 +25703,139 @@ msgstr "ምስ_ል" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_ማዘጋጃ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ቀ_ለም" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_መጋጠሚያ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_ቋንቋ" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_ከለሳ" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_አስተያየቶች" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "ማወዳ_ደሪያ" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_መመልከቻ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "መ_ሳያ" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_ማረሚያ" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_ማዘጋጃ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_መመልከቻ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ቡድ_ን" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_ዲ" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ፊ_ደል" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_ማሰለፊያ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_መመልከቻ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_ማስገቢያ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_መገናኛ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ክ_ፈፍ" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_ማዘጋጃ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_መጋጠሚያ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_መመልከቻ" diff -Nru libreoffice-7.3.4/translations/source/am/sd/messages.po libreoffice-7.3.5/translations/source/am/sd/messages.po --- libreoffice-7.3.4/translations/source/am/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562267419.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~ሰንጠረዥ" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "ምስል" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "ምስ~ል" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "መ_ሳያ" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~መሳያ" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "እቃ" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~እቃ" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_መገናኛ" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~መገናኛ" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "ፎር_ም" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "ፎር~ም" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_ዋናው" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~ዋናው" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_ዲ" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~ዲ" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "ተ_ጨማሪ" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "ተ~ጨማሪ" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_መሳሪያዎች" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~መሳሪያዎች" @@ -7062,109 +7062,109 @@ msgstr "~ሰንጠረዥ" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "ምስል" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "ምስ~ል" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "መ_ሳያ" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~መሳያ" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "እቃ" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~እቃ" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_መገናኛ" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~መገናኛ" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "ፎር_ም" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "ፎር~ም" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_ዋናው" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~ዋናው" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_ዲ" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~ዲ" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_መሳሪያዎች" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~መሳሪያዎች" diff -Nru libreoffice-7.3.4/translations/source/am/svx/messages.po libreoffice-7.3.5/translations/source/am/svx/messages.po --- libreoffice-7.3.4/translations/source/am/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -1124,7 +1124,7 @@ #: include/svx/strings.hrc:209 msgctxt "STR_DragInsertGluePoint" msgid "Insert gluepoint to %1" -msgstr "" +msgstr "መጋጠሚያ ነጥብ ማስገቢያ ወደ %1" #. 6JqED #: include/svx/strings.hrc:210 @@ -1292,13 +1292,13 @@ #: include/svx/strings.hrc:237 msgctxt "STR_ViewMarkedGluePoint" msgid "Gluepoint from %1" -msgstr "" +msgstr "መጋጠሚያ ነጥብ ከ %1" #. qCFmV #: include/svx/strings.hrc:238 msgctxt "STR_ViewMarkedGluePoints" msgid "%2 gluepoints from %1" -msgstr "" +msgstr "%2 መጋጠሚያ ነጥቦች ከ %1" #. CDqRQ #: include/svx/strings.hrc:239 @@ -1328,13 +1328,13 @@ #: include/svx/strings.hrc:243 msgctxt "STR_ViewMarkGluePoints" msgid "Mark gluepoints" -msgstr "" +msgstr "መጋጠሚያ ነጥቦች ምልክት ማድረጊያ" #. eH9Vs #: include/svx/strings.hrc:244 msgctxt "STR_ViewMarkMoreGluePoints" msgid "Mark additional gluepoints" -msgstr "" +msgstr "ተጨማሪ መጋጠሚያ ነጥቦች ምልክት ማድረጊያ" #. D5ZZA #: include/svx/strings.hrc:245 @@ -3607,25 +3607,25 @@ #: include/svx/strings.hrc:632 msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A" msgid "Orange A" -msgstr "" +msgstr "ብርቱካን A" #. DMVTT #: include/svx/strings.hrc:633 msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A" msgid "Deep Orange A" -msgstr "" +msgstr "ጥልቅ ብርቱካን A" #. LgNfg #: include/svx/strings.hrc:634 msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE" msgid "Deep Orange" -msgstr "" +msgstr "ጥልቅ ብርቱካን" #. A4JAB #: include/svx/strings.hrc:635 msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A" msgid "Red A" -msgstr "" +msgstr "ቀይ A" #. jsEPc #: include/svx/strings.hrc:636 @@ -3661,13 +3661,13 @@ #: include/svx/strings.hrc:641 msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A" msgid "Blue A" -msgstr "" +msgstr "ሰማያዊ A" #. dDQEi #: include/svx/strings.hrc:642 msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A" msgid "Light Blue A" -msgstr "" +msgstr "ነጣ ያለ ሰማያዊ A" #. BepQT #: include/svx/strings.hrc:643 @@ -3685,13 +3685,13 @@ #: include/svx/strings.hrc:645 msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A" msgid "Green A" -msgstr "" +msgstr "አረንጓዴ A" #. nZDMp #: include/svx/strings.hrc:646 msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A" msgid "Light Green A" -msgstr "" +msgstr "ነጣ ያለ አረንጓዴ A" #. 7RWqh #: include/svx/strings.hrc:647 @@ -3703,13 +3703,13 @@ #: include/svx/strings.hrc:648 msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A" msgid "Brown A" -msgstr "" +msgstr "ቡናማ A" #. wcNMK #: include/svx/strings.hrc:649 msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN" msgid "Brown" -msgstr "" +msgstr "ቡናማ" #. RA8KB #: include/svx/strings.hrc:650 @@ -4762,7 +4762,7 @@ #: include/svx/strings.hrc:837 msgctxt "RID_SVXSTR_BMP80" msgid "Concrete" -msgstr "" +msgstr "ኮንክሪት" #. RxiMA #: include/svx/strings.hrc:838 diff -Nru libreoffice-7.3.4/translations/source/am/sw/messages.po libreoffice-7.3.5/translations/source/am/sw/messages.po --- libreoffice-7.3.4/translations/source/am/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 13:52+0200\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:01+0200\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -4400,13 +4400,13 @@ #: sw/inc/strings.hrc:405 msgctxt "STR_CONTENT_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "የ ግርጌ ማስታወሻ" #. X6DYF #: sw/inc/strings.hrc:406 msgctxt "STR_CONTENT_ENDNOTE" msgid "Endnote" -msgstr "" +msgstr "የ መጨረሻ ማስታወሻ" #. sEQCK #: sw/inc/strings.hrc:407 @@ -7831,7 +7831,7 @@ #: sw/inc/strings.hrc:1035 msgctxt "FMT_REF_PAGE" msgid "Page number (unstyled)" -msgstr "" +msgstr "የ ገጽ ቁጥር (ዘዴ ያልተከተለ)" #. MaB3q #: sw/inc/strings.hrc:1036 @@ -7849,7 +7849,7 @@ #: sw/inc/strings.hrc:1038 msgctxt "FMT_REF_PAGE_PGDSC" msgid "Page number (styled)" -msgstr "" +msgstr "የ ገጽ ቁጥር (ዘዴ የሚከተል)" #. CQitd #: sw/inc/strings.hrc:1039 @@ -10487,19 +10487,19 @@ msgstr "የተመረጠውን የ አንቀጽ ዘዴ አንድ ደረጃ ወደ ታች ማንቀሳቀሻ በ ማውጫ ደረጃ ውስጥ" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "ዘዴ" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ዘዴዎች" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "የ ማውጫ ማስገቢያ መፍጠሪያ ከ ተወሰነ የ አንቀጽ ዘዴዎች ውስጥ" @@ -13943,37 +13943,37 @@ msgstr "ዳታቤዝ መቀያየሪያ" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "መግለጫ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ዳታቤዝ በስራ ላይ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_ዝግጁ ዳታቤዞች" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "መቃኛ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "ፋይል መክፈቻ ንግግር መክፈቻ እርስዎ መምረጥ የሚችሉበት የ ዳታቤዝ ፋይል (*.odb). የ ተመረጠው ፋይል ወደ ዝግጁ ዳታቤዝ ዝርዝር ውስጥ ይጨመራል" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13983,31 +13983,31 @@ "የ ዳታቤዝ ፋይል ለመምረጥ የ መቃኛውን ቁልፍ ይጠቀሙ" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "አሁን እየተጠቀሙ ያሉት ዳታቤዝ ዝርዝር " #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "የተመዘገቡት የ ዳታቤዝ ዝርዝሮች በ %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ዳታቤዞች መቀያየሪያ" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ወደ ሰነድ ውስጥ የተፈጸመ ዳታቤዝ:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "ለ አሁኑ ሰነድ የ ዳታ ምንጭ መቀየሪያ " @@ -20061,109 +20061,109 @@ msgstr "የ አሁኑን _ሰነድ መጠቀሚያ" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "የ አሁኑን የ መጻፊያ ሰነድ እንደ መሰረት ለ ደብዳቤ ማዋሀጃ ሰነድ መጠቀሚያ " #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "አ_ዲስ ሰነድ መፍጠሪያ" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "አዲስ የ መጻፊያ ሰነድ መፍጠሪያ ለ ደብዳቤ ማዋሀጃ ለ መጠቀም " #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "ከ _ነበረው ሰነድ መጀመሪያ" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "ይምረጡ የ ነበረ የ መጻፊያ ሰነድ ለ ደብዳቤ ማዋሀጃ እንደ መሰረት ለ መጠቀም " #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ከ ቴ_ምፕሌት መጀመሪያ" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "ቴምፕሌት ይምረጡ እርስዎ መፍጠር የሚፈልጉትን ለ ደብዳቤ ማዋሀጃ ሰነድ ከ " #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "በቅርብ ጊዜ ከ_ተቀመጠው ሰነድ መጀመሪያ" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "የ ነበረ የ ደብዳቤ ማዋሀጃ ሰነድ ይጠቀሙ እንደ መሰረት ለ ደብዳቤ ማዋሀጃ ሰነድ " #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "ሰነድ ይምረጡ" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "መ_ቃኛ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "እርስዎ መጠቀም የሚፈልጉትን የ መጻፊያ ሰነድ ፈልገው ያግኙ እና ከዛ ይጫኑ መክፈቻ " #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "መ_ቃኛ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "የ ቲምፕሌት መምረጫ ንግግር መክፈቻ " #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "ለ ደብዳቤ ማዋሀጃ መጀመሪያ ሰነድ ይምረጡ" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "እርስዎ እንደ መሰረት መጠቀም የሚፈልጉትን የ ደብዳቤ ማዋሀጃ ሰነድ ይምረጡ " @@ -22306,49 +22306,49 @@ msgstr "እቃ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "አይነት" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ምርጫዎች" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "መጠቅለያ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ድንበሮች" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ቦታ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ግልጽነት" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27042,7 +27042,7 @@ msgstr "ማሻሻያ" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "ለ አሁን ፋይል ስታትስቲክስ ማሳያ" diff -Nru libreoffice-7.3.4/translations/source/am/vcl/messages.po libreoffice-7.3.5/translations/source/am/vcl/messages.po --- libreoffice-7.3.4/translations/source/am/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/am/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-24 11:09+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563643746.000000\n" #. k5jTM @@ -2322,169 +2322,169 @@ msgstr "በርካታ ገጾች በ ወረቀቱ ላይ ማተሚያ" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ማስተካከያ" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "ገጾች:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "የ ረድፎች ቁጥር ይምረጡ" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "በ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "የ አምዶች ቁጥር ይምረጡ" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "መስመር:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "ለ እያንዳንዱ በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "በ ገጾች መካከል" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "እርቀት:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "የ ወረቀቱ ድንበር" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "ደንብ:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "ከ ግራ ወደ ቀኝ: ከዚያ ወደ ታች" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "ከ ላይ ወደ ታች ከዚያ ወደ ቀኝ" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "ከ ላይ ወደ ታች: ክዚያ ወደ ግራ" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "ከ ቀኝ ወደ ግራ: ከዚያ ወደ ታች" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ለማተም የ ገጾች ቅደም ተከተል ይምረጡ" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "በ አያንዳንዱ ገጽ ዙሪያ ድንበር መሳያ" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "በ እያንዳንዱ ገጽ ዙሪያ ድንበር እንዲሳል ምልክት ያድርጉ" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "መግለጫ ጽሁፍ" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "ተ_ጨማሪ" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "የ ገጽ እቅድ" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "ባጠቃላይ" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "የ አሁኑን ሰነድ ማተሚያ: ምርጫ ወይንም እርስዎ መወሰን የሚፈልጉትን ገጽ: እርስዎ እንዲሁም ማስገባት ይችላሉ የ ማተሚያ ምርጫ ለ አሁኑ ሰነድ:" diff -Nru libreoffice-7.3.4/translations/source/an/chart2/messages.po libreoffice-7.3.5/translations/source/an/chart2/messages.po --- libreoffice-7.3.4/translations/source/an/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-17 16:39+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540149291.000000\n" #. NCRDD @@ -3660,7 +3660,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/cui/messages.po libreoffice-7.3.5/translations/source/an/cui/messages.po --- libreoffice-7.3.4/translations/source/an/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -5185,7 +5185,7 @@ #: cui/uiconfig/ui/areatabpage.ui:106 msgctxt "areatabpage|btnbitmap" msgid "Image" -msgstr "" +msgstr "Imachen" #. ELAno #: cui/uiconfig/ui/areatabpage.ui:112 @@ -11304,7 +11304,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:84 msgctxt "imagetabpage|label1" msgid "Image" -msgstr "" +msgstr "Imachen" #. 4HvEn #: cui/uiconfig/ui/imagetabpage.ui:127 @@ -17252,176 +17252,152 @@ msgid "Automatic" msgstr "Automatica" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/dbaccess/messages.po libreoffice-7.3.5/translations/source/an/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/an/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-17 16:38+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524566312.000000\n" #. BiN6g @@ -3342,73 +3342,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ubrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3416,7 +3416,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/extensions/messages.po libreoffice-7.3.5/translations/source/an/extensions/messages.po --- libreoffice-7.3.4/translations/source/an/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542022400.000000\n" #. cBx8W @@ -294,541 +294,529 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Calendata actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Garra" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Intervalo" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "~Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Por defecto" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "D'alcuerdo" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancelar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Aduya" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Garra" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "~Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "~Centrau" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De ~dreita a cucha" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ta la pachina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ta la pachina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/fpicker/messages.po libreoffice-7.3.5/translations/source/an/fpicker/messages.po --- libreoffice-7.3.4/translations/source/an/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-18 09:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538496441.000000\n" #. SJGCw @@ -212,55 +212,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/sc/messages.po libreoffice-7.3.5/translations/source/an/sc/messages.po --- libreoffice-7.3.4/translations/source/an/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-11 14:45+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542022406.000000\n" #. kBovX @@ -27135,97 +27135,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Obchecto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Obchecto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -27600,152 +27600,152 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "~Organizar" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Quadricula" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Comentarios" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Veyer" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "~Organizar" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Veyer" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Agrupar" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Tipo de letra" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Aliniación" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Veyer" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Ficar" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "~Organizar" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Quadricula" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/an/sd/messages.po libreoffice-7.3.5/translations/source/an/sd/messages.po --- libreoffice-7.3.4/translations/source/an/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-18 09:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542022406.000000\n" #. WDjkB @@ -4208,109 +4208,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imachen" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Obchecto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Obchecto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7115,109 +7115,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imachen" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Obchecto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Obchecto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/sw/messages.po libreoffice-7.3.5/translations/source/an/sw/messages.po --- libreoffice-7.3.4/translations/source/an/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195186.000000\n" #. v3oJv @@ -5410,10 +5410,9 @@ #. db5Tg #: sw/inc/strings.hrc:563 -#, fuzzy msgctxt "STR_MATH_FORMULA" msgid "formula" -msgstr "~Formula" +msgstr "formula" #. BirkF #: sw/inc/strings.hrc:564 @@ -10618,20 +10617,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "E~stilo" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14141,38 +14140,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "~Navegar..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14180,31 +14179,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20355,111 +20354,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "~Navegar..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "~Navegar..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22613,49 +22612,49 @@ msgstr "Obchecto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcions" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hipervinclo" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Cantos" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparencia" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27442,7 +27441,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/an/vcl/messages.po libreoffice-7.3.5/translations/source/an/vcl/messages.po --- libreoffice-7.3.4/translations/source/an/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/an/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542022411.000000\n" #. k5jTM @@ -2335,170 +2335,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizau 1" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ar/basctl/messages.po libreoffice-7.3.5/translations/source/ar/basctl/messages.po --- libreoffice-7.3.4/translations/source/ar/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563566502.000000\n" #. fniWp @@ -944,13 +944,13 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:259 msgctxt "dialogpage|extended_tip|DialogPage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "يسرد الوحدات أو الحوارات الحالية." #. EGyCn #: basctl/uiconfig/basicide/ui/dockingwatch.ui:113 msgctxt "dockingwatch|RID_STR_WATCHVARIABLE" msgid "Variable" -msgstr "" +msgstr "متغير" #. QUHSf #: basctl/uiconfig/basicide/ui/dockingwatch.ui:125 @@ -1256,7 +1256,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:187 msgctxt "modulepage|extended_tip|delete" msgid "Creates a new macro, or deletes the selected macro." -msgstr "" +msgstr "يُنشئ ماكرو جديداً، أو يحذف الماكرو المحدد." #. 5FC8g #: basctl/uiconfig/basicide/ui/modulepage.ui:200 @@ -1292,13 +1292,13 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:264 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 @@ -1310,7 +1310,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 @@ -1346,10 +1346,10 @@ #: basctl/uiconfig/basicide/ui/sortmenu.ui:22 msgctxt "sortmenu|alphabetically" msgid "_Alphabetically" -msgstr "" +msgstr "ألف_بائيًا" #. PBmML #: basctl/uiconfig/basicide/ui/sortmenu.ui:32 msgctxt "sortmenu|properorder" msgid "_Proper order" -msgstr "" +msgstr "ترتيب م_ناسب" diff -Nru libreoffice-7.3.4/translations/source/ar/chart2/messages.po libreoffice-7.3.5/translations/source/ar/chart2/messages.po --- libreoffice-7.3.4/translations/source/ar/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540149325.000000\n" #. NCRDD @@ -109,7 +109,7 @@ #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" msgid "Chart Wizard" -msgstr "مرشد الرّسم البيانيّ" +msgstr "مرشد المخطط البياني" #. HCEG9 #: chart2/inc/strings.hrc:25 @@ -1397,7 +1397,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:288 msgctxt "dlg_DataLabel|label1" msgid "Text Attributes" -msgstr "صفات النّصّ" +msgstr "صفات النص" #. FDBQW #: chart2/uiconfig/ui/dlg_DataLabel.ui:322 @@ -1535,13 +1535,13 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:406 msgctxt "dlg_DataLabel|label1" msgid "Attribute Options" -msgstr "" +msgstr "خيارات الصفة" #. gE7CA #: chart2/uiconfig/ui/dlg_DataLabel.ui:458 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:479 @@ -3604,7 +3604,7 @@ msgstr "حدّد عدد الأسطر للعمود و نوع خط الرسم البياني." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "اختر نوع الرسم البياني القاعدي." @@ -3715,7 +3715,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:220 msgctxt "tp_DataLabel|label1" msgid "Text Attributes" -msgstr "صفات النّصّ" +msgstr "صفات النص" #. 2MNGz #: chart2/uiconfig/ui/tp_DataLabel.ui:254 @@ -3853,13 +3853,13 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:338 msgctxt "tp_DataLabel|label1" msgid "Attribute Options" -msgstr "" +msgstr "خيارات الصفة" #. avLCL #: chart2/uiconfig/ui/tp_DataLabel.ui:390 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:411 diff -Nru libreoffice-7.3.4/translations/source/ar/cui/messages.po libreoffice-7.3.5/translations/source/ar/cui/messages.po --- libreoffice-7.3.4/translations/source/ar/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -1141,7 +1141,7 @@ #: cui/inc/strings.hrc:199 msgctxt "RID_STR_SEARCH_COUNTING" msgid "counting records" -msgstr "عدّ السجلات" +msgstr "يعدّ السجلات" #. 7cVWa #: cui/inc/strings.hrc:201 @@ -1724,7 +1724,7 @@ #: cui/inc/strings.hrc:318 msgctxt "RID_SVXSTR_DESC_HATCH" msgid "Please enter a name for the hatching:" -msgstr "الرجاء إدخال اسم للتظليل هنا:" +msgstr "الرجاء إدخال اسم للنقش هنا:" #. rvyBi #: cui/inc/strings.hrc:319 @@ -2178,13 +2178,13 @@ #: cui/inc/tipoftheday.hrc:57 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)." -msgstr "" +msgstr "تريد أن تجمع في خلية عبر عدة أوراق؟ أشِر إلى مدى الأوراق، مثلا ‎=SUM(Sheet1.A1:Sheet3.A1)." #. AxXYW #: cui/inc/tipoftheday.hrc:58 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create fillable form documents (even PDFs) with %PRODUCTNAME." -msgstr "" +msgstr "يمكنك إنشاء استمارات قابلة للملء من المستندات (حتى مستندات بي دي أف) باستخدام %PRODUCTNAME." #. BSUoN #: cui/inc/tipoftheday.hrc:59 @@ -2196,13 +2196,13 @@ #: cui/inc/tipoftheday.hrc:60 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Optimize your table layout with Table ▸ Size ▸ Distribute Rows / Columns Evenly." -msgstr "حسّن تخطيط جدولك بـ جدول ▸ حجم ▸ وزّع الصفوف،الأعمدة بالتساوي." +msgstr "حسّن تخطيط جدولك بـ جدول ◂ حجم ◂ وزّع الصفوف \\ الأعمدة بالتساوي." #. prXEA #: cui/inc/tipoftheday.hrc:61 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)" -msgstr "جد كل التعابير بحسب تحرير ▸ جد واستبدل ▸ جد ▸ \\([^)]+\\) (أشّر “تعابير نظامية”)" +msgstr "جد كل التعابير من تحرير ◂ جد واستبدل ◂ جد ◂ \\([^)]+\\) (أشّر “تعابير نظامية”)" #. DUvk6 #: cui/inc/tipoftheday.hrc:62 @@ -2220,13 +2220,13 @@ #: cui/inc/tipoftheday.hrc:64 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To remove a hyperlink but keep its text, right-click on the hyperlink, and use “Remove Hyperlink”." -msgstr "" +msgstr "لتُزيل رابطًا تشعبيًا لكن تُبقي النص، انقر يمينًا على الرابط التشعبي واستخدم \"أزل الرابط التشعبي\"." #. FeNXF #: cui/inc/tipoftheday.hrc:65 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 "لتُزيل عدة ارتباطات تشعبية دفعة واحدة، حدد النص ذو الارتباطات التشعبية ثم انقر يمينًا واستخدم \"أزِل الارتباط التشعبي\"." #. VnFnz #: cui/inc/tipoftheday.hrc:66 @@ -2483,7 +2483,7 @@ #: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to insert a placeholder for an image in a Writer template? Use Insert ▸ Fields ▸ More fields, click Functions tab, choose PlaceHolder for Type and Image for Format." -msgstr "" +msgstr "تريد إدراج عنصر نائب لصورة في قالب رايتر؟ استخدم إدراج ◂ حقل ◂ المزيد من الحقول، انقر تبويب ⟪الدوال⟫ واختر ⟪عنصر نائب⟫ للنوع و ⟪صورة⟫ للنسَق." #. sSeTz #: cui/inc/tipoftheday.hrc:110 @@ -2539,7 +2539,7 @@ #: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" -msgstr "" +msgstr "خصّص مظهر الملاحظات الذيلية من أدوات ◂ الملاحظات الذيلية والختامية…" #. muc5F #: cui/inc/tipoftheday.hrc:119 @@ -2575,7 +2575,7 @@ #: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." -msgstr "" +msgstr "تحتاج إلى تحديد الموضع بدقة؟ المفاتيح %MOD2+السهم تحرّك الكائنات (الأشكال، الصور، المعادلات) بمقدار بكسل واحد." #. FhocH #: cui/inc/tipoftheday.hrc:125 @@ -2617,7 +2617,7 @@ #: cui/inc/tipoftheday.hrc:131 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 "" +msgstr "في %PRODUCTNAME إمبريس، استخدم إدراج ◂ وسائط ◂ معرض صور لتُنشئ عَرض شرائح من سلسلة من الصور بخاصية \"معرض الصور\"." #. BcK3A #: cui/inc/tipoftheday.hrc:132 @@ -2659,7 +2659,7 @@ #: cui/inc/tipoftheday.hrc:138 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 "" +msgstr "استخدم لصائق الأعمدة أو الصفوف في الصيغ. مثلا، إذا كان لديك عمودان، \"الوقت\" و \"كم\"، فاستخدم =الوقت\\كم لتحصل على الدقائق لكل كيلومتر." #. E7GZz #: cui/inc/tipoftheday.hrc:139 @@ -2762,7 +2762,7 @@ #: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." -msgstr "" +msgstr "يتيح لك رايتر أن ترقّم الملاحظات الذيلية لكل صفحة أو فصل أو مستند: أدوات ◂ الملاحظات الذيلية والختامية ◂ تبويب الملاحظات الذيلية ◂ تعداد." #. gpVRV #: cui/inc/tipoftheday.hrc:156 @@ -5205,7 +5205,7 @@ #: cui/uiconfig/ui/areatabpage.ui:148 msgctxt "areatabpage|extended_tip|btnhatch" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "" +msgstr "يملأ الكائن بنمط نقش محدد في هذه الصفحة." #. TFDzi #: cui/uiconfig/ui/areatabpage.ui:202 @@ -6051,19 +6051,19 @@ #: cui/uiconfig/ui/calloutdialog.ui:8 msgctxt "calloutdialog|CalloutDialog" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. te8F8 #: cui/uiconfig/ui/calloutdialog.ui:136 msgctxt "calloutdialog|RID_SVXPAGE_POSITION_SIZE" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. VWZTj #: cui/uiconfig/ui/calloutdialog.ui:183 msgctxt "calloutdialog|RID_SVXPAGE_SWPOSSIZE" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. sCFW5 #: cui/uiconfig/ui/calloutdialog.ui:231 @@ -6075,7 +6075,7 @@ #: cui/uiconfig/ui/calloutpage.ui:45 msgctxt "calloutpage|extended_tip|valueset" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr "" +msgstr "انقر طراز التعليق التفسيري الذي تريد تطبيقه على التعليق التفسيري المحدد." #. cAZqx #: cui/uiconfig/ui/calloutpage.ui:76 @@ -6117,13 +6117,13 @@ #: cui/uiconfig/ui/calloutpage.ui:99 msgctxt "calloutpage|extended_tip|extension" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "" +msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري." #. CGjKD #: cui/uiconfig/ui/calloutpage.ui:131 msgctxt "calloutpage|extended_tip|length" msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line." -msgstr "" +msgstr "أدخِل طول قطعة سطر التعليق التفسيري التي تمتد من صندوق التعليق إلى نقطة انعكاس السطر." #. SFvEw #: cui/uiconfig/ui/calloutpage.ui:144 @@ -6141,7 +6141,7 @@ #: cui/uiconfig/ui/calloutpage.ui:170 msgctxt "calloutpage|extended_tip|optimal" msgid "Click here to display a single-angled line in an optimal way." -msgstr "" +msgstr "انقر هنا لتُعرِض سطراً مفرد الزاوية بطريقة مثلى." #. dD3os #: cui/uiconfig/ui/calloutpage.ui:190 @@ -6195,13 +6195,13 @@ #: cui/uiconfig/ui/calloutpage.ui:228 msgctxt "calloutpage|extended_tip|position" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "" +msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري." #. rj7LU #: cui/uiconfig/ui/calloutpage.ui:248 msgctxt "calloutpage|extended_tip|by" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "" +msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري." #. jG4AE #: cui/uiconfig/ui/calloutpage.ui:273 @@ -6213,7 +6213,7 @@ #: cui/uiconfig/ui/calloutpage.ui:294 msgctxt "calloutpage|extended_tip|spacing" msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box." -msgstr "" +msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين نهاية سطر التعليق التفسيري وصندوق التعليق." #. wvzCN #: cui/uiconfig/ui/calloutpage.ui:314 @@ -6237,7 +6237,7 @@ #: cui/uiconfig/ui/calloutpage.ui:333 msgctxt "calloutpage|extended_tip|CalloutPage" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr "" +msgstr "انقر طراز التعليق التفسيري الذي تريد تطبيقه على التعليق التفسيري المحدد." #. vQp3A #: cui/uiconfig/ui/cellalignment.ui:49 @@ -6519,7 +6519,7 @@ #: cui/uiconfig/ui/certdialog.ui:132 msgctxt "certdialog|label2" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:" -msgstr "اختر أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية:" +msgstr "حدد أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية:" #. BbEyB #: cui/uiconfig/ui/certdialog.ui:156 @@ -6555,7 +6555,7 @@ #: cui/uiconfig/ui/certdialog.ui:275 msgctxt "certdialog|extended_tip|CertDialog" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "حدد أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية." #. xXVpD #: cui/uiconfig/ui/charnamepage.ui:234 @@ -7941,7 +7941,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:293 msgctxt "cuiimapdlg|label5" msgid "_Description:" -msgstr "ال_وصف:" +msgstr "الو_صف:" #. mF6Pw #: cui/uiconfig/ui/cuiimapdlg.ui:322 @@ -8007,7 +8007,7 @@ #: cui/uiconfig/ui/databaselinkdialog.ui:92 msgctxt "databaselinkdialog|browse" msgid "Browse..." -msgstr "تصفح..." +msgstr "تصفّح..." #. YPWDd #: cui/uiconfig/ui/databaselinkdialog.ui:99 @@ -9790,13 +9790,13 @@ #: cui/uiconfig/ui/gradientpage.ui:604 msgctxt "gradientpage|a11y_center_x" msgid "Center X" -msgstr "الوسط السيني" +msgstr "مركز س" #. qkLcz #: cui/uiconfig/ui/gradientpage.ui:618 msgctxt "gradientpage|a11y_center_y" msgid "Center Y" -msgstr "الوسط الصادي" +msgstr "مركز ص" #. VX2bJ #: cui/uiconfig/ui/gradientpage.ui:632 @@ -10312,7 +10312,7 @@ #: cui/uiconfig/ui/hatchpage.ui:85 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 "" +msgstr "يضيف نمط نقش مخصص إلى القائمة الحالية. حدد خصائص نمط النقش الخاص بك ثم اضغط هذا الزر." #. TGiD7 #: cui/uiconfig/ui/hatchpage.ui:97 @@ -10324,7 +10324,7 @@ #: cui/uiconfig/ui/hatchpage.ui:104 msgctxt "hatchpage|extended_tip|modify" msgid "Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name." -msgstr "" +msgstr "يطبّق خصائص النقش الحالي على نمط النقش المحدد. إذا أردت، يمكنك حفظ النمط تحت اسم مختلف." #. U8bWc #: cui/uiconfig/ui/hatchpage.ui:127 @@ -10396,7 +10396,7 @@ #: cui/uiconfig/ui/hatchpage.ui:316 msgctxt "hatchpage|extended_tip|linecolorlb" msgid "Select the color of the hatch lines." -msgstr "" +msgstr "حدد لون خطوط النقش." #. 3hgCJ #: cui/uiconfig/ui/hatchpage.ui:328 @@ -10426,7 +10426,7 @@ #: cui/uiconfig/ui/hatchpage.ui:454 msgctxt "hatchpage|extended_tip|HatchPage" msgid "Set the properties of a hatching pattern, or save a new hatching pattern." -msgstr "" +msgstr "عيّن خصائص نمط النقش، أو احفظ نمط نقش جديد." #. QqjhD #: cui/uiconfig/ui/hyperlinkdialog.ui:10 @@ -10468,37 +10468,37 @@ #: cui/uiconfig/ui/hyperlinkdialog.ui:169 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP_HELP" msgid "This is where you create a hyperlink to a Web page or FTP server connection." -msgstr "ها هنا تُنشي ارتباطًا تشعبيًا إلى صفحة وب أو اتصال خادوم نقل FTP." +msgstr "ها هنا تُنشي رابطًا تشعبيًا إلى صفحة وب أو اتصال خادوم نقل FTP." #. EJuaG #: cui/uiconfig/ui/hyperlinkdialog.ui:183 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP" msgid "_Internet" -msgstr "" +msgstr "_انترنت" #. TwuBW #: cui/uiconfig/ui/hyperlinkdialog.ui:244 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP_HELP" msgid "This is where you create a hyperlink to an email address." -msgstr "ها هنا تُنشي ارتباطًا تشعبيًا إلى عنوان بريد الكتروني." +msgstr "ها هنا تُنشي رابطًا تشعبيًا إلى عنوان بريد الكتروني." #. RxDSh #: cui/uiconfig/ui/hyperlinkdialog.ui:258 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP" msgid "_Mail" -msgstr "" +msgstr "_بريد الكتروني" #. MXhAV #: cui/uiconfig/ui/hyperlinkdialog.ui:320 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP_HELP" msgid "This is where you create a hyperlink to an existing document or a target within a document." -msgstr "ها هنا تُنشي ارتباطًا تشعبيًا إلى مستند موجود أو هدف ضمن مستند." +msgstr "ها هنا تُنشي رابطًا تشعبيًا إلى مستند موجود أو وجهة ضمن مستند." #. MqhyH #: cui/uiconfig/ui/hyperlinkdialog.ui:334 msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP" msgid "_Document" -msgstr "" +msgstr "م_ستند" #. xFvuL #: cui/uiconfig/ui/hyperlinkdialog.ui:396 @@ -10654,7 +10654,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:435 msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage" msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog." -msgstr "" +msgstr "الروابط التشعبية المؤدية إلى أي مستند أو وجهات في مستندات يمكن تحريرها باستخدام تبويب ⟪مستند⟫ من حوار ⟪رابط تشعبي⟫." #. BpE9F #: cui/uiconfig/ui/hyperlinkinternetpage.ui:38 @@ -10666,7 +10666,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:47 msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet" msgid "Creates an \"http://\" hyperlink." -msgstr "" +msgstr "يُنشئ رابطًا تشعبيًا \"http://‎\"." #. HybDr #: cui/uiconfig/ui/hyperlinkinternetpage.ui:58 @@ -10750,7 +10750,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:261 msgctxt "hyperlinkinternetpage|label2" msgid "Hyperlink Type" -msgstr "نوع الرابط" +msgstr "نوع الارتباط التشعبي" #. x4GDd #: cui/uiconfig/ui/hyperlinkinternetpage.ui:297 @@ -10810,7 +10810,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:445 msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage" msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses." -msgstr "" +msgstr "استخدم صفحة ⟪انترنت⟫ من حوار ⟪رابط تشعبي⟫ لتحرر الروابط التشعبية ذات عناوين WWW أو FTP." #. GKAsu #: cui/uiconfig/ui/hyperlinkmailpage.ui:40 @@ -10924,7 +10924,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:360 msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage" msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses." -msgstr "" +msgstr "في صفحة ⟪بريد الكتروني⟫ من حوار ⟪رابط تشعبي⟫ يمكنك تحرير الروابط التشعبية لعناوين البريد الالكتروني." #. FiqBU #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18 @@ -10984,7 +10984,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:83 msgctxt "hyperlinknewdocpage|extended_tip|editlater" msgid "Specifies that the document is created but it is not immediately opened." -msgstr "" +msgstr "يحدد أنّ المستند قد أُنشئ لكنه لم يُفتح فوراً." #. DqCc6 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:103 @@ -10996,13 +10996,13 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:118 msgctxt "hyperlinknewdocpage|create|tooltip_text" msgid "Select Path" -msgstr "اختر المسار" +msgstr "حرر المسار" #. FPajM #: cui/uiconfig/ui/hyperlinknewdocpage.ui:123 msgctxt "hyperlinknewdocpage|extended_tip|create" msgid "Opens the Select Path dialog, where you can select a path." -msgstr "" +msgstr "يفتح حوار \"حرر المسار\" الذي يمكنك منه تحديد مسار." #. NKd9R #: cui/uiconfig/ui/hyperlinknewdocpage.ui:137 @@ -11014,7 +11014,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:163 msgctxt "hyperlinknewdocpage|extended_tip|path" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "" +msgstr "أدخِل رابطًا للملف الذي تريد أن يفتح عندما تنقر الارتباط التشعبي." #. Ee4g2 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:203 @@ -11038,7 +11038,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:280 msgctxt "hyperlinknewdocpage|indication_label" msgid "Te_xt:" -msgstr "الن_ص:" +msgstr "ال_نص:" #. SVEq9 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:295 @@ -11098,7 +11098,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:444 msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage" msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously." -msgstr "" +msgstr "استخدم تبويب ⟪مستند جديد⟫ من حوار ⟪رابط تشعبي⟫ لتُعِدّ رابطًا تشعبيًا لمستند جديد وتُنشئ المستند الجديد تزامنيًا." #. XkDqc #: cui/uiconfig/ui/hyphenate.ui:18 @@ -11122,7 +11122,7 @@ #: cui/uiconfig/ui/hyphenate.ui:109 msgctxt "hyphenate|extended_tip|ok" msgid "Inserts the hyphen at the indicated position." -msgstr "" +msgstr "يُدرِج الواصلة عند الموضع المحدد." #. gEGtP #: cui/uiconfig/ui/hyphenate.ui:121 @@ -11134,13 +11134,13 @@ #: cui/uiconfig/ui/hyphenate.ui:127 msgctxt "hyphenate|extended_tip|continue" msgid "Ignores the hyphenation suggestion and finds the next word to hyphenate." -msgstr "" +msgstr "يهمل اقتراح الواصلة ويجد الكلمة التالية لوصلها." #. zXLRC #: cui/uiconfig/ui/hyphenate.ui:146 msgctxt "hyphenate|extended_tip|delete" msgid "Removes the current hyphenation point from the displayed word." -msgstr "" +msgstr "يُزيل نقطة الوصل الحالية من الكلمة المحددة." #. dsjvf #: cui/uiconfig/ui/hyphenate.ui:166 @@ -11158,19 +11158,19 @@ #: cui/uiconfig/ui/hyphenate.ui:216 msgctxt "hyphenate|extended_tip|left" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "" +msgstr "أعِدّ موضع الواصلة. هذا الخيار متاح فقط إذا عُرِض أكثر من اقتراح وصل واحد." #. 5gKXt #: cui/uiconfig/ui/hyphenate.ui:235 msgctxt "hyphenate|extended_tip|right" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "" +msgstr "أعِدّ موضع الواصلة. هذا الخيار متاح فقط إذا عُرِض أكثر من اقتراح وصل واحد." #. 8QHd8 #: cui/uiconfig/ui/hyphenate.ui:273 msgctxt "hyphenate|extended_tip|HyphenateDialog" msgid "Inserts hyphens in words that are too long to fit at the end of a line." -msgstr "" +msgstr "يُدرِج وصلات في الكلمات الطويلة جدا بحيث لا تُستقر كاملةَ في نهاية السطر." #. HGCp4 #: cui/uiconfig/ui/iconchangedialog.ui:62 @@ -11450,7 +11450,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:165 msgctxt "insertfloatingframe|buttonbrowse" msgid "Browse..." -msgstr "تصفح..." +msgstr "تصفّح..." #. EQDKW #: cui/uiconfig/ui/insertfloatingframe.ui:172 @@ -11564,7 +11564,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:456 msgctxt "insertfloatingframe|extended_tip|defaultwidth" msgid "Applies the default horizontal spacing." -msgstr "" +msgstr "يطبّق التباعد الأفقي المبدئي." #. dQ8BY #: cui/uiconfig/ui/insertfloatingframe.ui:467 @@ -11576,7 +11576,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:475 msgctxt "insertfloatingframe|extended_tip|defaultheight" msgid "Applies the default vertical spacing." -msgstr "" +msgstr "يطبّق التباعد الرأسي المبدئي." #. YqkF7 #: cui/uiconfig/ui/insertfloatingframe.ui:490 @@ -11684,7 +11684,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:179 msgctxt "insertrowcolumn|extended_tip|insert_before" msgid "Adds new columns to the left of the current column, or adds new rows above the current row." -msgstr "" +msgstr "يضيف أعمدة جديدة إلى يسار العمود الحالي، أو يضيف صفوفا جديدة أعلى الصف الحالي." #. ZmEKX #: cui/uiconfig/ui/insertrowcolumn.ui:191 @@ -12304,7 +12304,7 @@ #: cui/uiconfig/ui/macroselectordialog.ui:281 msgctxt "macroselectordialog|label1" msgid "_Description" -msgstr "" +msgstr "ال_وصف" #. YTX8B #: cui/uiconfig/ui/menuassignpage.ui:46 @@ -13372,7 +13372,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:239 msgctxt "numberingpositionpage|extended_tip|atmf" msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position." -msgstr "" +msgstr "إذا حددت توقف مفتاح التبويب ليتابع التعداد، فيمكنك إدخال قيمة غير سالبة كموضع لتوقف مفتاح التبويب." #. dA4DF #: cui/uiconfig/ui/numberingpositionpage.ui:258 @@ -13438,7 +13438,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:365 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 "أدخِل عُرض منطقة التعداد. رمز التعداد يمكن أن يكون يساراً أو وسطًا أو يمينًا في هذه المساحة." #. zuD8v #: cui/uiconfig/ui/numberingpositionpage.ui:384 @@ -13484,13 +13484,13 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:434 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:449 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:464 @@ -13508,7 +13508,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:502 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:548 @@ -14276,7 +14276,7 @@ #: cui/uiconfig/ui/optemailpage.ui:62 msgctxt "optemailpage|browse" msgid "Browse..." -msgstr "تصفح..." +msgstr "تصفّح..." #. Vs69j #: cui/uiconfig/ui/optemailpage.ui:69 @@ -14958,7 +14958,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:492 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:503 @@ -15960,7 +15960,7 @@ #: cui/uiconfig/ui/optproxypage.ui:186 msgctxt "extended_tip|proxymode" msgid "Specifies the type of proxy definition." -msgstr "" +msgstr "يحدد نوع تعريف الوسيط." #. pkdvs #: cui/uiconfig/ui/optproxypage.ui:199 @@ -16002,7 +16002,7 @@ #: cui/uiconfig/ui/optproxypage.ui:281 msgctxt "optproxypage|ftpportft" msgid "P_ort:" -msgstr "المنف_ذ:" +msgstr "المن_فذ:" #. RW6E4 #: cui/uiconfig/ui/optproxypage.ui:294 @@ -16020,7 +16020,7 @@ #: cui/uiconfig/ui/optproxypage.ui:323 msgctxt "extended_tip|OptProxyPage" msgid "Specifies the type of proxy definition." -msgstr "" +msgstr "يحدد نوع تعريف الوسيط." #. Cdbvg #: cui/uiconfig/ui/optsavepage.ui:34 @@ -16056,7 +16056,7 @@ #: cui/uiconfig/ui/optsavepage.ui:111 msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "احفظ معلومات الا_ستعادة الآلية كل:" +msgstr "احفظ معلومات الا_ستعادة التلقائة كل:" #. 6L2Yh #: cui/uiconfig/ui/optsavepage.ui:119 @@ -16068,13 +16068,13 @@ #: cui/uiconfig/ui/optsavepage.ui:137 msgctxt "autosave_spin" msgid "Specifies the time interval in minutes for the automatic recovery option." -msgstr "" +msgstr "يحدد الفترات الزمنية بالدقائق لخيار الاستعادة التلقائية." #. BN5Js #: cui/uiconfig/ui/optsavepage.ui:150 msgctxt "optsavepage|autosave_mins" msgid "minutes" -msgstr "من الدقائق" +msgstr "دقائق" #. UKeCt #: cui/uiconfig/ui/optsavepage.ui:165 @@ -16098,7 +16098,7 @@ #: cui/uiconfig/ui/optsavepage.ui:192 msgctxt "relative_fsys" msgid "Select this box for relative saving of URLs in the file system." -msgstr "" +msgstr "حدد هذا المربع للحفظ النسبي للروابط في نظام الملفات." #. 8xmX3 #: cui/uiconfig/ui/optsavepage.ui:203 @@ -16110,7 +16110,7 @@ #: cui/uiconfig/ui/optsavepage.ui:211 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:222 @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "تلقائي" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "جالاكسي" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "تباين عالٍ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "أكسجين" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "كلاسيكي" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "صفر" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "نسيم" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "يحدد طراز الأيقونات في أشرطة الأدوات والحوارات." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "نم_ط الأيقونات:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "أضِف المزيد من سمات الأيقونات عبر ملحقة" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "طراز الأيقونات" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "يتطلب إعادة التشغيل" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "استخدم تسريع ال_عتاد" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "يدخل مباشرة إلى خصائص العتاد لمحوّل عَرض الرسوميات لتحسين عَرض الشاشة." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "استخدم ال_تنعيم" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "استخدم سكيا Skia لكل التصيير" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "افرض تصيير سكيا Skia البرمجي" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "يتطلب إعادة التشغيل. تنشيط هذا سيمنع استخدام مشغلات الرسوميات." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "سكيا Skia منشَّطة حاليًا." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "سكيا Skia معطلة حاليًا." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "مُخرجات الرسوميات" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "اعرض م_عاينة الخطوط" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "إزالة ت_عرج خط الشاشة" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_من:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "أدخِل أصغر حجم خط تطبَّق عليه إزالة التعرج." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "قوائم الخطوط" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "شغّل فحوص الرسوميات" @@ -17781,7 +17757,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:380 msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "1.5 Lines" -msgstr "سطر و نصف" +msgstr "1.5 سطر" #. cD4RR #: cui/uiconfig/ui/paraindentspacing.ui:381 @@ -18376,19 +18352,19 @@ #: cui/uiconfig/ui/positionsizedialog.ui:8 msgctxt "positionsizedialog|PositionAndSizeDialog" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. K8BFJ #: cui/uiconfig/ui/positionsizedialog.ui:139 msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. WZtUp #: cui/uiconfig/ui/positionsizedialog.ui:186 msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE" msgid "Position and Size" -msgstr "الموقع والحجم" +msgstr "الموضع و الحجم" #. p8FjL #: cui/uiconfig/ui/positionsizedialog.ui:234 @@ -18789,7 +18765,7 @@ #: cui/uiconfig/ui/querydeletedictionarydialog.ui:7 msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog" msgid "Delete Dictionary?" -msgstr "أأحذف الدليل؟" +msgstr "أأحذف القاموس؟" #. eTBd6 #: cui/uiconfig/ui/querydeletedictionarydialog.ui:14 @@ -18819,7 +18795,7 @@ #: cui/uiconfig/ui/querydeletehatchdialog.ui:7 msgctxt "querydeletehatchdialog|AskDelHatchDialog" msgid "Delete Hatching?" -msgstr "" +msgstr "أأحذف النقش؟" #. xsuqB #: cui/uiconfig/ui/querydeletehatchdialog.ui:14 @@ -18849,7 +18825,7 @@ #: cui/uiconfig/ui/querydeletelinestyledialog.ui:7 msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog" msgid "Delete Line Style?" -msgstr "أأحذف نمط الخط؟" +msgstr "أأحذف طراز الخط؟" #. qLsV8 #: cui/uiconfig/ui/querydeletelinestyledialog.ui:14 @@ -19221,7 +19197,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:133 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 "حدد لترى حوار تحذير عندما تحاول توقيع مستند يحوي تغييرات مسجلة أو إصدارات أو حقول أو إشارات إلى مصادر أخرى (مثلا مقاطع مربوطة أو صور مربوطة) أو تعليقات." #. D6Lsv #: cui/uiconfig/ui/securityoptionsdialog.ui:144 @@ -19299,7 +19275,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:348 msgctxt "securityoptionsdialog|blockuntrusted" msgid "Block any links from documents not among the trusted locations (see Macro Security)" -msgstr "حجز أي وصلات من مستندات ليست من ضمن المواقع الموثوقة (طالع أمان الماكرو)" +msgstr "احجب أية روابط من مستندات ليست من ضمن المواقع الموثوقة (طالع أمان الماكرو)" #. Zm9kD #: cui/uiconfig/ui/securityoptionsdialog.ui:357 @@ -20397,7 +20373,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:240 msgctxt "swpossizepage|extended_tip|topage" msgid "Anchors the selection to the current page." -msgstr "" +msgstr "يربط التحديد إلى الصفحة الحالية." #. 7GtoG #: cui/uiconfig/ui/swpossizepage.ui:251 @@ -20409,7 +20385,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:260 msgctxt "swpossizepage|extended_tip|topara" msgid "Anchors the selection to the current paragraph." -msgstr "" +msgstr "يربط التحديد إلى الفقرة الحالية." #. Uj9Pu #: cui/uiconfig/ui/swpossizepage.ui:271 @@ -20421,7 +20397,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:280 msgctxt "swpossizepage|extended_tip|tochar" msgid "Anchors the selection to a character." -msgstr "" +msgstr "يربط التحديد إلى المحرف الحالي." #. GNmu5 #: cui/uiconfig/ui/swpossizepage.ui:291 @@ -20433,7 +20409,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:300 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 "" +msgstr "يربط التحديد كمحرف. يُغيَّر ارتفاع السطر الحالي ليوافق ارتفاع التحديد." #. e4F9d #: cui/uiconfig/ui/swpossizepage.ui:311 @@ -20709,13 +20685,13 @@ #: cui/uiconfig/ui/textanimtabpage.ui:286 msgctxt "textanimtabpage|TSB_STOP_INSIDE" msgid "Text _visible when exiting" -msgstr "إ_ظهار النص عند الانتهاء" +msgstr "إ_ظهار النص عند الخروج" #. 6a3Ed #: cui/uiconfig/ui/textanimtabpage.ui:295 msgctxt "textanimtabpage|extended_tip|TSB_STOP_INSIDE" msgid "Text remains visible after the effect is applied." -msgstr "" +msgstr "يبقى النص مرئيًا بعد تطبيق التأثير." #. mH7ec #: cui/uiconfig/ui/textanimtabpage.ui:309 @@ -21267,7 +21243,7 @@ #: cui/uiconfig/ui/textflowpage.ui:620 msgctxt "textflowpage|extended_tip|TextFlowPage" msgid "Specify hyphenation and pagination options." -msgstr "" +msgstr "حدّد خيارات الواصلة وترقيم الصفحات" #. 5BskL #: cui/uiconfig/ui/thesaurus.ui:23 @@ -21591,13 +21567,13 @@ #: cui/uiconfig/ui/transparencytabpage.ui:325 msgctxt "transparencytabpage|FT_TRGR_CENTER_X" msgid "Center _X:" -msgstr "وسط _س:" +msgstr "مركز _س:" #. Nsx4p #: cui/uiconfig/ui/transparencytabpage.ui:340 msgctxt "transparencytabpage|FT_TRGR_CENTER_Y" msgid "Center _Y:" -msgstr "وسط _ص:" +msgstr "مركز _ص:" #. RWNkA #: cui/uiconfig/ui/transparencytabpage.ui:355 diff -Nru libreoffice-7.3.4/translations/source/ar/dbaccess/messages.po libreoffice-7.3.5/translations/source/ar/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ar/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-04-27 10:02+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524566341.000000\n" #. BiN6g @@ -2753,7 +2753,7 @@ #: dbaccess/uiconfig/ui/collectionviewdialog.ui:28 msgctxt "collectionviewdialog|CollectionView" msgid "Save" -msgstr "حفظ" +msgstr "احفظ" #. dBcxN #: dbaccess/uiconfig/ui/collectionviewdialog.ui:49 @@ -3202,7 +3202,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:88 msgctxt "fielddescpage|STR_AUTOINCREMENT_VALUE" msgid "A_uto-increment statement" -msgstr "" +msgstr "عبارة التزايد التلقا_ئي" #. QXHDX #: dbaccess/uiconfig/ui/fielddescpage.ui:115 @@ -3220,32 +3220,32 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:172 msgctxt "fielddescpage|STR_BUTTON_FORMAT" msgid "_Format Field" -msgstr "" +msgstr "نسّق الحقل" #. Ff2B8 #: dbaccess/uiconfig/ui/fielddescpage.ui:194 #: dbaccess/uiconfig/ui/fielddescpage.ui:221 msgctxt "fielddescpage|STR_LENGTH" msgid "_Length" -msgstr "" +msgstr "ال_طول" #. 5DRu2 #: dbaccess/uiconfig/ui/fielddescpage.ui:248 msgctxt "fielddescpage|STR_LENGTH" msgid "Decimal _places" -msgstr "" +msgstr "المنا_زل العُشرية" #. oXywj #: dbaccess/uiconfig/ui/fielddescpage.ui:275 msgctxt "fielddescpage|STR_FIELD_REQUIRED" msgid "_Entry required" -msgstr "" +msgstr "المُد_خَل مطلوب" #. SWgjj #: dbaccess/uiconfig/ui/fielddescpage.ui:300 msgctxt "fielddescpage|STR_FIELD_AUTOINCREMENT" msgid "_AutoValue" -msgstr "" +msgstr "قيمة_تلقائية" #. xNbpF #: dbaccess/uiconfig/ui/fielddescpage.ui:325 @@ -3263,13 +3263,13 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:375 msgctxt "fielddescpage|STR_TAB_FIELD_DATATYPE" msgid "Field _type" -msgstr "" +msgstr "ن_وع الحقل" #. dUE3D #: dbaccess/uiconfig/ui/fielddescpanel.ui:46 msgctxt "designhelpbox|textview-tooltip" msgid "Field Properties Help" -msgstr "" +msgstr "مساعدة خصائص الحقل" #. KUVUc #: dbaccess/uiconfig/ui/fielddialog.ui:9 @@ -3392,73 +3392,73 @@ msgstr "أنشئ قاعدة بيانات _جديدة" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "قاعدة البيانات الم_ضمّنة:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "افتح _ملفّ قاعدة بيانات موجود" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "المستخدمة _حديثًا:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "افتح" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "الاتصال بقاعدة بيانا_ت موجودة" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3466,7 +3466,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" @@ -4767,13 +4767,13 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:195 msgctxt "specialsettingspage|createindex" msgid "Create index with ASC or DESC statement" -msgstr "أنشئ فهرسًا مع إفادة ASC أو DESC" +msgstr "أنشئ فهرسًا مع إفادة تصاعدي ASC أو تنازلي DESC" #. 2hRPG #: dbaccess/uiconfig/ui/specialsettingspage.ui:203 msgctxt "specialsettingspage|extended_tip|createindex" msgid "Creates an index with ASC or DESC statements." -msgstr "" +msgstr "ينشئ فهرسًا مع إفادات تصاعدي ASC أو تنازلي DESC." #. Xabxp #: dbaccess/uiconfig/ui/specialsettingspage.ui:214 diff -Nru libreoffice-7.3.4/translations/source/ar/extensions/messages.po libreoffice-7.3.5/translations/source/ar/extensions/messages.po --- libreoffice-7.3.4/translations/source/ar/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022440.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "تحديث النموذج" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "إحضار" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "إرسال" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "رابط" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "متعدد الأجزاء" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "النص" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "قياسي (قصير)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "قياسي (قصير YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "قياسي (قصير YYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "قياسي (طويل)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 م" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 م" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "غير محدد" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "محدد" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "غير معرف" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "كل السجلات" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "السجل النشط" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "الصفحة الحالية" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "لا" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "نعم" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "النموذج الأم" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "فا_رغ" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "الأ_م" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "ال_حالي" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_فوق" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "بِلا" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "مفرد" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "متعدد" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "المجال" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "أفقي" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "رأسي" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "المبدئيّ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "حسنًا" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ألغِ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "مساعدة" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "المُدخل المحدد" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "موضع المُدخل المحدد" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "أحادي السطر" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "متعدد الأسطر" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "متعدد الأسطر مع تنسيق" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "‏‪LF‬ (يونكس)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "‏‪CR+LF‬ (ويندوز)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "بِلا" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "أفقي" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "رأسي" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "كلاهما" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "ثلاثي الأبعاد" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "مسطح" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "أعلى اليسار" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "موسّط يساراً" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "أسفل اليسار" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "أعلى اليمين" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "موسّط يميناً" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "أسفل اليمين" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "فوق يسار" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "موسّط للأعلى" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "فوق يمين" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "تحت يسار" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "موسّط للأسفل" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "تحت يمين" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "موسَّط" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "أبقِ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "استبدل" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "اطوِ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "لا" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "أبقِ التناسب" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "لائِم الحجم" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "من اليسار إلى اليمين" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "من اليمين إلى اليسار" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "استخدم إعدادات الكائن الرئيسي" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "أبدًا" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "عند التركيز" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "دائمًا" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "إلى الفقرة" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "كحرف" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "إلى الصفحة" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "إلى الإطار" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "إلى حرف" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "إلى الصفحة" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "إلى خلية" @@ -1141,7 +1129,7 @@ #: extensions/inc/strings.hrc:79 msgctxt "RID_STR_TABSTOP" msgid "Tabstop" -msgstr "إيقاف جدولة" +msgstr "توقفات‌مفتاح‌التبويب" #. 4kjXk #: extensions/inc/strings.hrc:80 @@ -2089,7 +2077,7 @@ #: extensions/inc/strings.hrc:237 msgctxt "RID_STR_ANCHOR_TYPE" msgid "Anchor" -msgstr "اربط" +msgstr "المربط" #. 6ZJaR #. To translators: That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation. @@ -2219,7 +2207,7 @@ #: extensions/inc/strings.hrc:262 msgctxt "RID_EMBED_IMAGE_PLACEHOLDER" msgid "" -msgstr "<صورة مضمنة>" +msgstr "<صورة-مضمَّنة>" #. jTsR3 #: extensions/inc/strings.hrc:263 @@ -3152,7 +3140,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:78 msgctxt "datasourcepage|browse" msgid "Browse..." -msgstr "تصفح..." +msgstr "تصفّح..." #. apVFE #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:85 @@ -3256,10 +3244,9 @@ #. j8AYS #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17 -#, fuzzy msgctxt "fieldlinkpage|desc" msgid "This is where you select fields with matching contents so that the value from the display field will be shown." -msgstr "يمكنك هنا تحديد حقول ذات محتويات متطابقة لكي تظهر القيمة الموجودة في حقل العرض." +msgstr "ها هنا تحدد حقولاً ذات محتويات متطابقة من أجل أن تظهر القيمة الموجودة في الحقل المعروض." #. cWGwU #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:55 @@ -3852,31 +3839,27 @@ #. hjJFW #: extensions/uiconfig/sbibliography/ui/generalpage.ui:404 -#, fuzzy msgctxt "generalpage|custom1" msgid "User-defined field _1" -msgstr "حقل معرف من قبل المستخدم ~1" +msgstr "حقل معرف من قبل المستخدم _1" #. ZgVyG #: extensions/uiconfig/sbibliography/ui/generalpage.ui:418 -#, fuzzy msgctxt "generalpage|custom4" msgid "User-defined field _4" -msgstr "حقل معرف من قبل المستخدم ~4" +msgstr "حقل معرف من قبل المستخدم _4" #. aDQFC #: extensions/uiconfig/sbibliography/ui/generalpage.ui:432 -#, fuzzy msgctxt "generalpage|custom2" msgid "User-defined field _2" -msgstr "حقل معرف من قبل المستخدم ~2" +msgstr "حقل معرف من قبل المستخدم _2" #. X8g3V #: extensions/uiconfig/sbibliography/ui/generalpage.ui:446 -#, fuzzy msgctxt "generalpage|custom5" msgid "User-defined field _5" -msgstr "حقل معرف من قبل المستخدم ~5" +msgstr "حقل معرف من قبل المستخدم _5" #. ctDaZ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:460 @@ -4110,17 +4093,15 @@ #. LzUki #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:807 -#, fuzzy msgctxt "mappingdialog|label31" msgid "User-defined field _4" -msgstr "حقل معرف من قبل المستخدم ~4" +msgstr "حقل معرف من قبل المستخدم _4" #. jY3cj #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:821 -#, fuzzy msgctxt "mappingdialog|label32" msgid "User-defined field _5" -msgstr "حقل معرف من قبل المستخدم ~5" +msgstr "حقل معرف من قبل المستخدم _5" #. HQPTv #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:955 @@ -4447,13 +4428,13 @@ #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129 msgctxt "formlinksdialog|detailLabel" msgid "label" -msgstr "العنوان" +msgstr "اللصيقة" #. PuKkA #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141 msgctxt "formlinksdialog|masterLabel" msgid "label" -msgstr "العنوان" +msgstr "اللصيقة" #. JFcBM #: extensions/uiconfig/spropctrlr/ui/hyperlinkfield.ui:29 diff -Nru libreoffice-7.3.4/translations/source/ar/extras/source/autocorr/emoji.po libreoffice-7.3.5/translations/source/ar/extras/source/autocorr/emoji.po --- libreoffice-7.3.4/translations/source/ar/extras/source/autocorr/emoji.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/extras/source/autocorr/emoji.po 2022-07-15 19:12:51.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: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -894,7 +894,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "مُ" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji #. 8Riz5 @@ -2888,7 +2888,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag4" -msgstr "" +msgstr "عَلَم4" #. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji #. fc3Gb @@ -2898,7 +2898,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "عَلَم3" #. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji #. BTmxe @@ -2919,7 +2919,7 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "مرساة" +msgstr "مربط" #. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji #. Wx5rd @@ -3240,7 +3240,7 @@ "BLACK_CROSS_ON_SHIELD\n" "LngText.text" msgid "shield2" -msgstr "" +msgstr "درع2" #. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji #. gFz3j @@ -5066,7 +5066,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "بنتو" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji #. wuJ4w @@ -7976,7 +7976,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "دبوس مدور" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #. QnxVB @@ -8036,7 +8036,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "دفترملاحظات" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #. ktHAV @@ -8046,7 +8046,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "دفترملاحظات2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #. DYit7 @@ -8056,7 +8056,7 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book2" -msgstr "" +msgstr "كتاب2" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #. LjMCp @@ -8066,7 +8066,7 @@ "OPEN_BOOK\n" "LngText.text" msgid "book3" -msgstr "" +msgstr "كتاب3" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #. wGEYU @@ -8122,13 +8122,12 @@ #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #. RFzY6 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PAGER\n" "LngText.text" msgid "pager" -msgstr "صفحة" +msgstr "متصفِّح" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #. G6o5r @@ -8148,7 +8147,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "antenna" -msgstr "" +msgstr "هوائي" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #. P5xbh @@ -8158,40 +8157,37 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "مكبرصوت" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #. eJHQG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "أوميغا كبير" +msgstr "سماعةميغا" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #. YcCHy #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "سجود" +msgstr "صينية" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #. f8tnA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "ترام2" +msgstr "صينية2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #. 8uDGB @@ -8241,7 +8237,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "صندوق بريد" +msgstr "صندوق‌بريد" #. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #. zyZUF @@ -8251,7 +8247,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "صندوق بريد2" +msgstr "صندوق‌بريد2" #. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #. Sf5YJ @@ -8261,7 +8257,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "صندوق بريد3" +msgstr "صندوق‌بريد3" #. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #. fCEgu @@ -8271,7 +8267,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "صندوق بريد4" +msgstr "صندوق‌بريد4" #. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #. TManz @@ -8286,13 +8282,12 @@ #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #. u2ynR #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "ذرة" +msgstr "بوق" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #. gZmY9 @@ -11198,7 +11193,7 @@ "JOYSTICK\n" "LngText.text" msgid "joystick" -msgstr "" +msgstr "عصالعب" #. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji #. wY9cB @@ -11208,7 +11203,7 @@ "FRAME_WITH_PICTURE\n" "LngText.text" msgid "picture" -msgstr "" +msgstr "صورة" #. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji #. RWFZz @@ -11218,7 +11213,7 @@ "STUDIO_MICROPHONE\n" "LngText.text" msgid "microphone2" -msgstr "" +msgstr "لاقط‌صوت2" #. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji #. FNDDe @@ -11228,7 +11223,7 @@ "LEVEL_SLIDER\n" "LngText.text" msgid "slider" -msgstr "" +msgstr "منزلق" #. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji #. HRvG2 @@ -11238,7 +11233,7 @@ "CONTROL_KNOBS\n" "LngText.text" msgid "control" -msgstr "" +msgstr "متحكم" #. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji #. DunGT @@ -11248,7 +11243,7 @@ "DESKTOP_COMPUTER\n" "LngText.text" msgid "computer2" -msgstr "" +msgstr "حاسوب2" #. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji #. 5i9iG @@ -11258,7 +11253,7 @@ "PRINTER\n" "LngText.text" msgid "printer" -msgstr "" +msgstr "طابعة" #. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji #. gCiTV @@ -11268,7 +11263,7 @@ "THREE_BUTTON_MOUSE\n" "LngText.text" msgid "mouse3" -msgstr "" +msgstr "فأرة3" #. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji #. kr6mD @@ -11278,7 +11273,7 @@ "TRACKBALL\n" "LngText.text" msgid "trackball" -msgstr "" +msgstr "كرةتتبّع" #. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji #. a7M8c @@ -11288,7 +11283,7 @@ "FILM_FRAMES\n" "LngText.text" msgid "film" -msgstr "" +msgstr "فيلم" #. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji #. 5XEHv @@ -11298,7 +11293,7 @@ "FILM_PROJECTOR\n" "LngText.text" msgid "projector" -msgstr "" +msgstr "عارضة" #. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji #. e6d8k @@ -11308,7 +11303,7 @@ "CAMERA_WITH_FLASH\n" "LngText.text" msgid "flash" -msgstr "" +msgstr "وميض" #. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji #. 85ZZG @@ -11318,7 +11313,7 @@ "CANDLE\n" "LngText.text" msgid "candle" -msgstr "" +msgstr "شمعة" #. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji #. Roj4S @@ -11328,7 +11323,7 @@ "ROLLED-UP_NEWSPAPER\n" "LngText.text" msgid "newspaper2" -msgstr "" +msgstr "جريدة2" #. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji #. KGGrV @@ -11338,7 +11333,7 @@ "LABEL\n" "LngText.text" msgid "label" -msgstr "" +msgstr "اللصيقة" #. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji #. MtcT9 @@ -11348,7 +11343,7 @@ "BALLOT_BOX_WITH_BALLOT\n" "LngText.text" msgid "ballot" -msgstr "" +msgstr "اقتراع" #. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji #. eVhur @@ -11358,7 +11353,7 @@ "LOWER_LEFT_FOUNTAIN_PEN\n" "LngText.text" msgid "pen2" -msgstr "" +msgstr "قلم2" #. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji #. zPbDv @@ -11368,7 +11363,7 @@ "LOWER_LEFT_BALLPOINT_PEN\n" "LngText.text" msgid "pen" -msgstr "" +msgstr "قلم" #. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji #. GMFPP @@ -11378,7 +11373,7 @@ "LOWER_LEFT_PAINTBRUSH\n" "LngText.text" msgid "paintbrush" -msgstr "" +msgstr "فرشاةرسم" #. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji #. oj4qT @@ -11388,7 +11383,7 @@ "LOWER_LEFT_CRAYON\n" "LngText.text" msgid "crayon" -msgstr "" +msgstr "قلم‌شمعي" #. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji #. 6mFoM @@ -11398,7 +11393,7 @@ "CARD_INDEX_DIVIDERS\n" "LngText.text" msgid "index" -msgstr "" +msgstr "الفهرس" #. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji #. 4vrvA @@ -11408,7 +11403,7 @@ "SPIRAL_NOTE_PAD\n" "LngText.text" msgid "notepad" -msgstr "" +msgstr "ورق‌ملاحظات" #. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji #. fjcB6 @@ -11418,7 +11413,7 @@ "SPIRAL_CALENDAR_PAD\n" "LngText.text" msgid "calendar3" -msgstr "" +msgstr "تقويم3" #. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji #. bwrwB @@ -11428,7 +11423,7 @@ "LINKED_PAPERCLIPS\n" "LngText.text" msgid "paperclip2" -msgstr "" +msgstr "مشبك‌ورق2" #. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji #. zm6R6 @@ -11438,7 +11433,7 @@ "CARD_FILE_BOX\n" "LngText.text" msgid "box" -msgstr "" +msgstr "حافظ‌ملفات" #. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji #. D9Ev3 @@ -11448,7 +11443,7 @@ "FILE_CABINET\n" "LngText.text" msgid "cabinet" -msgstr "" +msgstr "خزانة" #. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji #. 7Rhsi @@ -11458,7 +11453,7 @@ "WASTEBASKET\n" "LngText.text" msgid "wastebasket" -msgstr "" +msgstr "سلةمهملات" #. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji #. i498o @@ -11468,7 +11463,7 @@ "OLD_KEY\n" "LngText.text" msgid "key2" -msgstr "" +msgstr "مفتاح2" #. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji #. EDHj7 @@ -11478,7 +11473,7 @@ "HAMMER_AND_WRENCH\n" "LngText.text" msgid "hammer and wrench" -msgstr "" +msgstr "مطرقة وملوى" #. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji #. qnaCC @@ -11488,7 +11483,7 @@ "DAGGER_KNIFE\n" "LngText.text" msgid "knife2" -msgstr "" +msgstr "سكين2" #. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji #. QCXRd @@ -11498,7 +11493,7 @@ "SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "درع" #. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji #. F9G5C @@ -11508,7 +11503,7 @@ "COMPRESSION\n" "LngText.text" msgid "clamp" -msgstr "" +msgstr "كلّاب" #. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji #. g4DGu @@ -11518,7 +11513,7 @@ "BED\n" "LngText.text" msgid "bed" -msgstr "" +msgstr "فراش" #. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji #. XnFom @@ -11528,7 +11523,7 @@ "COUCH_AND_LAMP\n" "LngText.text" msgid "couch" -msgstr "" +msgstr "أريكة" #. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji #. R8EvG @@ -11548,7 +11543,7 @@ "DOUBLE_VERTICAL_BAR\n" "LngText.text" msgid "pause" -msgstr "" +msgstr "لبث" #. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji #. 6Fkq7 @@ -11558,7 +11553,7 @@ "BLACK_SQUARE_FOR_STOP\n" "LngText.text" msgid "stop2" -msgstr "" +msgstr "توقف2" #. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji #. PApbW @@ -11568,7 +11563,7 @@ "BLACK_CIRCLE_FOR_RECORD\n" "LngText.text" msgid "record" -msgstr "" +msgstr "تسجيل" #. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji #. hytrL @@ -11578,7 +11573,7 @@ "WAVING_BLACK_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "عَلَم" #. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji #. mBjRj @@ -11588,7 +11583,7 @@ "WAVING_WHITE_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "عَلَم2" #. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji #. GBXU7 @@ -11618,7 +11613,7 @@ "CIRCLED_INFORMATION_SOURCE\n" "LngText.text" msgid "information3" -msgstr "" +msgstr "معلومات3" #. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji #. 9wBWk @@ -11738,7 +11733,7 @@ "PAGE_WITH_CIRCLED_TEXT\n" "LngText.text" msgid "page4" -msgstr "" +msgstr "صفحة4" #. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji #. zi4B5 @@ -11888,7 +11883,7 @@ "BLACK_TOUCHTONE_TELEPHONE\n" "LngText.text" msgid "phone4" -msgstr "" +msgstr "هاتف4" #. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji #. 335BP @@ -13648,7 +13643,7 @@ "BLACK_HEART\n" "LngText.text" msgid "black heart" -msgstr "" +msgstr "قلب أسود" #. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji #. 2NjPB diff -Nru libreoffice-7.3.4/translations/source/ar/filter/messages.po libreoffice-7.3.5/translations/source/ar/filter/messages.po --- libreoffice-7.3.4/translations/source/ar/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -376,7 +376,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:78 msgctxt "pdfgeneralpage|extended_tip|range" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "يصدّر الصفحات التي تطبعها في الصندوق." #. WTSeS #: filter/uiconfig/ui/pdfgeneralpage.ui:89 @@ -394,7 +394,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:121 msgctxt "pdfgeneralpage|extended_tip|pages" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "يصدّر الصفحات التي تطبعها في الصندوق." #. tFeCH #: filter/uiconfig/ui/pdfgeneralpage.ui:135 @@ -719,13 +719,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:822 msgctxt "pdfgeneralpage|exportplaceholders" msgid "Expo_rt placeholders" -msgstr "ص_دّر ماسكات المكان" +msgstr "ص_دّر العناصر النائبة" #. T6RjA #: filter/uiconfig/ui/pdfgeneralpage.ui:831 msgctxt "pdfgeneralpage|extended_tip|exportplaceholders" msgid "Export the placeholders fields visual markings only. The exported placeholder is ineffective." -msgstr "" +msgstr "صدّر العلامات البصرية لحقول العناصر النائبة. العناصر النائبة المصدَّرة غير متأثرة." #. P4kGd #: filter/uiconfig/ui/pdfgeneralpage.ui:842 @@ -897,10 +897,9 @@ #. B9TGg #: filter/uiconfig/ui/pdflinkspage.ui:183 -#, fuzzy msgctxt "pdflinkspage|label5" msgid "Cross-document Links" -msgstr "الوصلات العابرة للمستندات" +msgstr "الروابط العابرة للمستندات" #. KmFGh #: filter/uiconfig/ui/pdfoptionsdialog.ui:8 @@ -936,7 +935,7 @@ #: filter/uiconfig/ui/pdfoptionsdialog.ui:281 msgctxt "pdfoptionsdialog|links" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. x4GVL #: filter/uiconfig/ui/pdfoptionsdialog.ui:329 @@ -1851,7 +1850,7 @@ #: 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 "يحذف الملف المحدد بعد أن تؤكد الحوار الذي يلي." #. DmuTA #: filter/uiconfig/ui/xmlfiltersettings.ui:232 @@ -1941,7 +1940,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:186 msgctxt "xmlfiltertabpagegeneral|extended_tip|description" msgid "Enter a comment (optional)." -msgstr "" +msgstr "أدخِل تعليقًا (اختياري)." #. G632R #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:206 @@ -1978,7 +1977,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:76 msgctxt "xmlfiltertabpagetransformation|extended_tip|browseexport" msgid "Opens a file selection dialog." -msgstr "" +msgstr "يفتح حوار تحديد ملف." #. oZGZS #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:89 @@ -1991,20 +1990,19 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:101 msgctxt "xmlfiltertabpagetransformation|browseimport" msgid "B_rowse..." -msgstr "تصفّ_ح..." +msgstr "ت_صفح..." #. TecWL #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:108 msgctxt "xmlfiltertabpagetransformation|extended_tip|browseimport" msgid "Opens a file selection dialog." -msgstr "" +msgstr "يفتح حوار تحديد ملف." #. 9nV9R #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:121 -#, fuzzy msgctxt "xmlfiltertabpagetransformation|label6" msgid "Template for _import:" -msgstr "القالب لا_ستيراده" +msgstr "القالب لا_ستيراده:" #. MNLtB #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:133 @@ -2016,7 +2014,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:139 msgctxt "xmlfiltertabpagetransformation|extended_tip|browsetemp" msgid "Opens a file selection dialog." -msgstr "" +msgstr "يفتح حوار تحديد ملف." #. sjWgJ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:162 diff -Nru libreoffice-7.3.4/translations/source/ar/filter/source/config/fragments/filters.po libreoffice-7.3.5/translations/source/ar/filter/source/config/fragments/filters.po --- libreoffice-7.3.4/translations/source/ar/filter/source/config/fragments/filters.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/filter/source/config/fragments/filters.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1530484897.000000\n" #. FR4Ff @@ -675,7 +675,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "مستند نص ماك عتيق" #. ZUJ6t #: MacWrite.xcu @@ -900,14 +900,13 @@ #. SkskA #: Palm_Text_Document.xcu -#, fuzzy msgctxt "" "Palm_Text_Document.xcu\n" "Palm_Text_Document\n" "UIName\n" "value.text" msgid "Palm Text Document" -msgstr "مستند ODF نصّيّ" +msgstr "مستند Palm نصّيّ" #. zUHDY #: Plucker_eBook.xcu @@ -1587,25 +1586,23 @@ #. bTGGv #: draw_PCD_Photo_CD_Base16.xcu -#, fuzzy msgctxt "" "draw_PCD_Photo_CD_Base16.xcu\n" "draw_PCD_Photo_CD_Base16\n" "UIName\n" "value.text" msgid "PCD - Kodak Photo CD (192x128)" -msgstr "PCD - أسطوانة CD لصورة كوداك (192×128)" +msgstr "PCD - أسطوانة صور كوداك (192×128)" #. WkqKk #: draw_PCD_Photo_CD_Base4.xcu -#, fuzzy msgctxt "" "draw_PCD_Photo_CD_Base4.xcu\n" "draw_PCD_Photo_CD_Base4\n" "UIName\n" "value.text" msgid "PCD - Kodak Photo CD (384x256)" -msgstr "أسطوانة CD لصورة كوداك (384×256)" +msgstr "PCD - أسطوانة صور كوداك (384×256)" #. XqdTg #: draw_StarOffice_XML_Draw_Template.xcu diff -Nru libreoffice-7.3.4/translations/source/ar/filter/source/config/fragments/internalgraphicfilters.po libreoffice-7.3.5/translations/source/ar/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-7.3.4/translations/source/ar/filter/source/config/fragments/internalgraphicfilters.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/filter/source/config/fragments/internalgraphicfilters.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029056.000000\n" #. s5fY3 @@ -174,7 +174,7 @@ "UIName\n" "value.text" msgid "PCD - Kodak Photo CD (192x128)" -msgstr "PCD - سي دي صورة كوداك (192x128)" +msgstr "PCD - أسطوانة صور كوداك (192×128)" #. NLTnG #: pcd_Import_Base4.xcu @@ -184,7 +184,7 @@ "UIName\n" "value.text" msgid "PCD - Kodak Photo CD (384x256)" -msgstr "PCD - سي دي صورة كوداك (384x256)" +msgstr "PCD - أسطوانة صور كوداك (384×256)" #. fA8cL #: pct_Import.xcu diff -Nru libreoffice-7.3.4/translations/source/ar/fpicker/messages.po libreoffice-7.3.5/translations/source/ar/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ar/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1538496475.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "تاريخ التعديل" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ا_سم الملفّ:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" -msgstr "_نوع الملفّ:" +msgstr "نوع ال_ملف:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "لل_قراءة فقط" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "احفظ بكلمة مرور" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ألحق ا_متداد اسم الملفّ آليًّا" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "حرّر إعدادات المر_شّح" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "عمِّ بمفتاح GPG" @@ -442,7 +442,7 @@ #: include/fpicker/strings.hrc:24 msgctxt "STR_SVT_FILEPICKER_TEMPLATES" msgid "S~tyles:" -msgstr "الأ~نماط:" +msgstr "الطُرُ~ز:" #. emrjD #: include/fpicker/strings.hrc:25 @@ -472,7 +472,7 @@ #: include/fpicker/strings.hrc:29 msgctxt "STR_SVT_FOLDERPICKER_DEFAULT_TITLE" msgid "Select Path" -msgstr "اختيار مسار" +msgstr "حرر المسار" #. GtMEC #: include/fpicker/strings.hrc:30 diff -Nru libreoffice-7.3.4/translations/source/ar/framework/messages.po libreoffice-7.3.5/translations/source/ar/framework/messages.po --- libreoffice-7.3.4/translations/source/ar/framework/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/framework/messages.po 2022-07-15 19:12:51.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-06-11 17:08+0200\n" -"PO-Revision-Date: 2022-02-26 21:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1513250878.000000\n" #. 5dTDC @@ -239,7 +239,7 @@ #: framework/inc/strings.hrc:57 msgctxt "RID_STR_PROPTITLE_EDIT" msgid "Text Box" -msgstr "" +msgstr "مربع نص" #. CBmAL #: framework/inc/strings.hrc:58 diff -Nru libreoffice-7.3.4/translations/source/ar/librelogo/source/pythonpath.po libreoffice-7.3.5/translations/source/ar/librelogo/source/pythonpath.po --- libreoffice-7.3.4/translations/source/ar/librelogo/source/pythonpath.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/librelogo/source/pythonpath.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2022-03-23 11:35+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1533033583.000000\n" #. tFoAo @@ -131,7 +131,7 @@ "LABEL\n" "property.text" msgid "label" -msgstr "تسمية" +msgstr "اللصيقة" #. 2fBcU #: LibreLogo_en_US.properties @@ -779,7 +779,7 @@ "SET\n" "property.text" msgid "set" -msgstr "مصفوفة" +msgstr "مجموعة" #. 2HJLi #: LibreLogo_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/ar/nlpsolver/src/locale.po libreoffice-7.3.5/translations/source/ar/nlpsolver/src/locale.po --- libreoffice-7.3.4/translations/source/ar/nlpsolver/src/locale.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/nlpsolver/src/locale.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-04 19:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1487168697.000000\n" #. sv3GB @@ -248,7 +248,7 @@ "NLPSolverStatusDialog.Controls.btnStop\n" "property.text" msgid "Stop" -msgstr "إيقاف" +msgstr "توقف" #. QAJcS #: NLPSolverStatusDialog_en_US.properties @@ -338,7 +338,7 @@ "NLPSolverStatusDialog.Time.Second\n" "property.text" msgid "Second" -msgstr "ثانية" +msgstr "الثانية" #. AoHMv #: NLPSolverStatusDialog_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -2124,7 +2124,7 @@ "Label\n" "value.text" msgid "Insert" -msgstr "أدرِج" +msgstr "أدرج" #. jgGQR #: CalcCommands.xcu @@ -2664,7 +2664,7 @@ "Label\n" "value.text" msgid "Insert Co~lumns Before" -msgstr "" +msgstr "أدرِج أع~مدة قبل" #. 7fDfk #: CalcCommands.xcu @@ -2674,7 +2674,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "أعمدة ~قبل" #. AhNfD #: CalcCommands.xcu @@ -2684,7 +2684,7 @@ "PopupLabel\n" "value.text" msgid "Insert Columns ~Before" -msgstr "" +msgstr "أدرِج أعمدة ق~بل" #. AGNAm #: CalcCommands.xcu @@ -4074,7 +4074,7 @@ "Label\n" "value.text" msgid "Anchor: To Cell (~resize with cell)" -msgstr "" +msgstr "المربط: إلى الخلية (~غيّر الحجم مع الخلية)" #. JUsNn #: CalcCommands.xcu @@ -4584,7 +4584,7 @@ "Label\n" "value.text" msgid "Paste As Link" -msgstr "" +msgstr "الصق كرابط" #. f7yoE #: CalcCommands.xcu @@ -4594,7 +4594,7 @@ "PopupLabel\n" "value.text" msgid "As ~Link" -msgstr "" +msgstr "ك~رابط" #. 4DJpG #: CalcCommands.xcu @@ -8119,7 +8119,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "صفات الن~ص..." #. GR6Sf #: DrawImpressCommands.xcu @@ -8433,14 +8433,13 @@ #. RC4j5 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n" "Label\n" "value.text" msgid "Snap Guides to ~Front" -msgstr "خطوط الالت~قاط للأمام" +msgstr "مرشدات الجذب للأ~مام" #. Fk9u2 #: DrawImpressCommands.xcu @@ -9391,7 +9390,7 @@ "Label\n" "value.text" msgid "Change Slide Master..." -msgstr "" +msgstr "غيّر رئيسية الشرائح..." #. 7AUwW #: DrawImpressCommands.xcu @@ -10142,7 +10141,7 @@ "Label\n" "value.text" msgid "Set Background Image..." -msgstr "اضبط صورة الخلفية..." +msgstr "عيّن صورة الخلفية..." #. scFBm #: DrawImpressCommands.xcu @@ -10162,7 +10161,7 @@ "Label\n" "value.text" msgid "Master Background" -msgstr "" +msgstr "خلفية الرئيسية" #. EP8Aw #: DrawImpressCommands.xcu @@ -10172,7 +10171,7 @@ "Label\n" "value.text" msgid "Master Objects" -msgstr "" +msgstr "كائنات الرئيسية" #. U4e4r #: DrawImpressCommands.xcu @@ -10182,7 +10181,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "~حرّر النّمط..." +msgstr "~حرّر الطراز..." #. tRG4u #: DrawImpressCommands.xcu @@ -10402,7 +10401,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "الأ~نماط" +msgstr "ال~طُرُز" #. cv8x3 #: DrawImpressCommands.xcu @@ -10623,7 +10622,7 @@ "Label\n" "value.text" msgid "Minimal Row Height" -msgstr "" +msgstr "أدنى ارتفاع للصف" #. DBq3k #: DrawImpressCommands.xcu @@ -10633,7 +10632,7 @@ "Label\n" "value.text" msgid "Optimal Row Height" -msgstr "" +msgstr "الارتفاع الأمثل للصف" #. PXfS6 #: DrawImpressCommands.xcu @@ -10693,7 +10692,7 @@ "Label\n" "value.text" msgid "Insert Column Before" -msgstr "" +msgstr "أدرِج أعمدة قبل" #. UqFEB #: DrawImpressCommands.xcu @@ -10783,7 +10782,7 @@ "Label\n" "value.text" msgid "Select Row" -msgstr "" +msgstr "حدّد الصف" #. qdmFX #: DrawImpressCommands.xcu @@ -11363,7 +11362,7 @@ "Label\n" "value.text" msgid "Vertical Title, Vertical Text" -msgstr "عنوان رأسي و نص رأسي" +msgstr "عنوان رأسي ونص رأسي" #. 3CuKy #: DrawImpressCommands.xcu @@ -11373,7 +11372,7 @@ "Label\n" "value.text" msgid "Vertical Title, Text, Chart" -msgstr "عنوان رأسي و نص و رسم بياني" +msgstr "عنوان رأسي ونص ورسم بياني" #. BxHmH #: DrawImpressCommands.xcu @@ -11383,18 +11382,17 @@ "Label\n" "value.text" msgid "Title, Vertical Text" -msgstr "عنوان و نص رأسي" +msgstr "عنوان ونص رأسي" #. rHEMC #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:AssignLayout?WhatLayout:long=30\n" "Label\n" "value.text" msgid "Title, 2 Vertical Text, Clipart" -msgstr "عنوان، نص رأسي، صورة" +msgstr "عنوان ونصان رأسيان وقصاصة فنية" #. 3EaGa #: DrawImpressCommands.xcu @@ -11651,7 +11649,6 @@ #. VYgEG #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/popupmenu/graphic\n" @@ -12050,7 +12047,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "أدرِج" +msgstr "أدرج" #. LtC4D #: DrawWindowState.xcu @@ -12240,7 +12237,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "المعاينة الرئيسة" +msgstr "معاينة الرئيسية" #. Bcmob #: DrawWindowState.xcu @@ -12270,7 +12267,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "وزّع التحديد" #. qQQAi #: Effects.xcu @@ -12790,7 +12787,7 @@ "Label\n" "value.text" msgid "Flip" -msgstr "انعكاس" +msgstr "اقلب" #. oUViV #: Effects.xcu @@ -13510,7 +13507,7 @@ "Label\n" "value.text" msgid "Flip" -msgstr "انعكاس" +msgstr "اقلب" #. XDeox #: Effects.xcu @@ -14994,14 +14991,13 @@ #. CHj6A #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.comb\n" "Label\n" "value.text" msgid "Comb" -msgstr "قنبلة" +msgstr "مشط" #. nDEAr #: Effects.xcu @@ -15325,14 +15321,13 @@ #. 6BBXz #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.through-black\n" "Label\n" "value.text" msgid "Through Black" -msgstr "انتقال من خلال لوحة سوداء" +msgstr "خلال الأسود" #. TKERq #: Effects.xcu @@ -15986,7 +15981,7 @@ "Name\n" "value.text" msgid "Insert" -msgstr "أدرِج" +msgstr "أدرج" #. vAhkn #: GenericCategories.xcu @@ -16030,7 +16025,6 @@ #. kEMD4 #: GenericCategories.xcu -#, fuzzy msgctxt "" "GenericCategories.xcu\n" "..GenericCategories.Commands.Categories.14\n" @@ -17677,7 +17671,7 @@ "Label\n" "value.text" msgid "Stop" -msgstr "إيقاف" +msgstr "توقف" #. w4mSG #: GenericCommands.xcu @@ -18447,7 +18441,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "[حالّ محلّ للرسالة]" +msgstr "[عنصر نائب للرسالة]" #. GByEF #: GenericCommands.xcu @@ -18807,7 +18801,7 @@ "Label\n" "value.text" msgid "~Options..." -msgstr "ال~خيارات..." +msgstr "~خيارات..." #. DAyDw #: GenericCommands.xcu @@ -20239,7 +20233,7 @@ "ContextLabel\n" "value.text" msgid "Manage St~yles" -msgstr "أدر الأنما~ط" +msgstr "أدر ال~طُرُز" #. GGfAj #: GenericCommands.xcu @@ -20489,7 +20483,7 @@ "ContextLabel\n" "value.text" msgid "~Edit Style..." -msgstr "حرّر النم~ط..." +msgstr "حرّر ال~طراز..." #. YYoPr #: GenericCommands.xcu @@ -20859,7 +20853,7 @@ "Label\n" "value.text" msgid "~Hyperlink" -msgstr "ا~رتباط تشعبي" +msgstr "~رابط تشعبي" #. UgtoL #: GenericCommands.xcu @@ -20869,7 +20863,7 @@ "PopupLabel\n" "value.text" msgid "Edit Hyperlink..." -msgstr "" +msgstr "حرر الرابط التشعبي..." #. a7D2m #: GenericCommands.xcu @@ -24031,7 +24025,7 @@ "Label\n" "value.text" msgid "Stop" -msgstr "إيقاف" +msgstr "توقف" #. hxGYL #: GenericCommands.xcu @@ -25281,7 +25275,7 @@ "Label\n" "value.text" msgid "User ~Interface" -msgstr "" +msgstr "واج~هة المستخدم" #. BWJqP #: GenericCommands.xcu @@ -26671,7 +26665,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "إ~ضافات..." #. bFKmR #: GenericCommands.xcu @@ -26681,7 +26675,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "تمديدا~ت إضافية..." #. UqjzD #: GenericCommands.xcu @@ -26691,7 +26685,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "تمديدات إضافية" #. YpeR4 #: GenericCommands.xcu @@ -26731,7 +26725,7 @@ "Label\n" "value.text" msgid "~Remove Hyperlink" -msgstr "" +msgstr "أ~زِل الارتباط التشعبي\"" #. eD7JU #: GenericCommands.xcu @@ -26781,7 +26775,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "وزّع التحديد" #. vDkBA #: GenericCommands.xcu @@ -26811,7 +26805,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "وزّع أفقيًا وسطًا" #. SqFTB #: GenericCommands.xcu @@ -26821,7 +26815,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "أفقيًا ~وسطًا" #. QXntz #: GenericCommands.xcu @@ -26831,7 +26825,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "وزّع التباعد أفقيًا" #. GQEXJ #: GenericCommands.xcu @@ -26841,7 +26835,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "~تباعد أفقي" #. Smk23 #: GenericCommands.xcu @@ -26891,7 +26885,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "وزّع رأسيًا وسطًا" #. PaLDT #: GenericCommands.xcu @@ -26901,7 +26895,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "رأسيًا وس~طًا" #. jwLqM #: GenericCommands.xcu @@ -26911,7 +26905,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "وزّع التباعد رأسيا" #. 2RAqA #: GenericCommands.xcu @@ -27098,7 +27092,6 @@ #. Tbiup #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/popupmenu/graphic\n" @@ -27468,7 +27461,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "أدرِج" +msgstr "أدرج" #. mUECT #: ImpressWindowState.xcu @@ -27728,7 +27721,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "المعاينة الرئيسة" +msgstr "معاينة الرئيسية" #. XgwBZ #: ImpressWindowState.xcu @@ -27778,7 +27771,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "وزّع التحديد" #. tpAhh #: MathCommands.xcu @@ -27858,7 +27851,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "استورد MathML من الحافظة" #. km9DF #: MathCommands.xcu @@ -28038,11 +28031,10 @@ "Label\n" "value.text" msgid "Small Gap" -msgstr "تباعد صغير" +msgstr "فجوة صغيرة" #. KdTHS #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Commands..uno:InsertCommandText?Text:string=~\n" @@ -28053,62 +28045,56 @@ #. AxAAC #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:UnaryBinaryMenu\n" "Label\n" "value.text" msgid "~Unary/Binary Operators" -msgstr "~معاملات أحادية/ثنائية" +msgstr "~عاملات أحادية/ثنائية" #. fU3Ww #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:RelationsMenu\n" "Label\n" "value.text" msgid "~Relations" -msgstr "~علاقات" +msgstr "عل~اقات" #. xE5UF #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:SetOperationsMenu\n" "Label\n" "value.text" msgid "~Set Operations" -msgstr "~تعيين العوامل" +msgstr "عمليات الم~جموعات" #. NGa2A #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:FunctionsMenu\n" "Label\n" "value.text" msgid "~Functions" -msgstr "الدوال" +msgstr "~الدوال" #. w7Af9 #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:OperatorsMenu\n" "Label\n" "value.text" msgid "O~perators" -msgstr "م~عاملات" +msgstr "~عاملات" #. hu8z6 #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:AttributesMenu\n" @@ -28119,36 +28105,33 @@ #. rZPUN #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:BracketsMenu\n" "Label\n" "value.text" msgid "~Brackets" -msgstr "أ~قواس" +msgstr "أقواس ~هلالية" #. DYtrW #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:FormatsMenu\n" "Label\n" "value.text" msgid "For~mats" -msgstr "التنسيق" +msgstr "الأ~نساق" #. QBa62 #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:OthersMenu\n" "Label\n" "value.text" msgid "~Others" -msgstr "~غيرها" +msgstr "أ~خرى" #. uXvss #: MathWindowState.xcu @@ -28158,7 +28141,7 @@ "UIName\n" "value.text" msgid "Edit Panel" -msgstr "" +msgstr "عدّل اللوحة" #. M9ihe #: MathWindowState.xcu @@ -28168,7 +28151,7 @@ "UIName\n" "value.text" msgid "View Panel" -msgstr "" +msgstr "عاين اللوحة" #. ntzBZ #: MathWindowState.xcu @@ -28208,7 +28191,7 @@ "Label\n" "value.text" msgid "Report Header/Footer" -msgstr "رأس\\تذييل التقرير" +msgstr "ترويس\\تذييل التقرير" #. EACbA #: ReportCommands.xcu @@ -28382,14 +28365,13 @@ #. Yts2i #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:ImageControl\n" "Label\n" "value.text" msgid "Image..." -msgstr "_صورة..." +msgstr "صورة..." #. E872w #: ReportCommands.xcu @@ -28929,7 +28911,7 @@ "Title\n" "value.text" msgid "Footer" -msgstr "التذييل" +msgstr "تذييل" #. 4FE4o #: Sidebar.xcu @@ -29009,7 +28991,7 @@ "Title\n" "value.text" msgid "Image" -msgstr "الصور" +msgstr "صورة" #. Khag4 #: Sidebar.xcu @@ -30079,7 +30061,7 @@ "TooltipLabel\n" "value.text" msgid "Reject Track Change and select the next one" -msgstr "" +msgstr "ارفض التغيير المتتبَّع وحدد التغيير التالي" #. 4EvCQ #: WriterCommands.xcu @@ -30159,7 +30141,7 @@ "TooltipLabel\n" "value.text" msgid "Accept Track Change and select the next one" -msgstr "" +msgstr "اقبل التغيير المتتبَّع وحدد التغيير التالي" #. TFCgf #: WriterCommands.xcu @@ -30389,7 +30371,7 @@ "Label\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "أظهِر حالات الحذف المتتبَّعة في الهامش" #. 3GVrG #: WriterCommands.xcu @@ -30399,7 +30381,7 @@ "TooltipLabel\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "أظهِر حالات الحذف المتتبَّعة في الهامش" #. QFi68 #: WriterCommands.xcu @@ -30889,7 +30871,7 @@ "ContextLabel\n" "value.text" msgid "All ~Changes Inline" -msgstr "" +msgstr "كل الت~غييرات ضمنًا" #. JQmVz #: WriterCommands.xcu @@ -30899,7 +30881,7 @@ "Label\n" "value.text" msgid "Show Deletions In Margin" -msgstr "" +msgstr "أظهِر حالات الحذف في الهوامش" #. Mo6US #: WriterCommands.xcu @@ -30909,7 +30891,7 @@ "ContextLabel\n" "value.text" msgid "~Deletions In Margin" -msgstr "" +msgstr "حالات الح~ذف في الهوامش" #. AcF7X #: WriterCommands.xcu @@ -31439,7 +31421,7 @@ "Label\n" "value.text" msgid "Select to Document Begin" -msgstr "حدد حتى بداية المستند" +msgstr "حدّد حتى بداية المستند" #. a2oDG #: WriterCommands.xcu @@ -31449,7 +31431,7 @@ "Label\n" "value.text" msgid "Select to Document End" -msgstr "حدد حتى نهاية المستند" +msgstr "حدّد حتى نهاية المستند" #. x39iC #: WriterCommands.xcu @@ -31609,7 +31591,7 @@ "Label\n" "value.text" msgid "Select to End of Word" -msgstr "" +msgstr "حدد حتى نهاية الكلمة" #. bpBoC #: WriterCommands.xcu @@ -31879,7 +31861,7 @@ "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "ال~حواشي و الحواشي الختامية..." +msgstr "الملاح~ظات الذيلية والختامية..." #. eE5gP #: WriterCommands.xcu @@ -31889,7 +31871,7 @@ "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "ال~حواشي و الحواشي الختامية..." +msgstr "الملاح~ظات الذيلية والختامية..." #. ZPvDo #: WriterCommands.xcu @@ -32329,7 +32311,7 @@ "PopupLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "أعمدة ~قبل" #. rzDZU #: WriterCommands.xcu @@ -32909,7 +32891,7 @@ "Label\n" "value.text" msgid "Optimal Row Height" -msgstr "أفضل ارتفاع للصف" +msgstr "الارتفاع الأمثل للصف" #. jeWSo #: WriterCommands.xcu @@ -34009,7 +33991,7 @@ "Label\n" "value.text" msgid "To Next Placeholder" -msgstr "إلى حافظ المكان التالي" +msgstr "إلى العنصر النائب التالي" #. 4nDXh #: WriterCommands.xcu @@ -34019,7 +34001,7 @@ "Label\n" "value.text" msgid "To Previous Placeholder" -msgstr "إلى حافظ المكان السابق" +msgstr "إلى العنصر النائب السابق" #. wjF7p #: WriterCommands.xcu @@ -34669,7 +34651,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "أ~نماط" +msgstr "ال~طُرُز" #. YTNwv #: WriterCommands.xcu @@ -34739,7 +34721,7 @@ "TooltipLabel\n" "value.text" msgid "“Add to List” adds selected paragraphs to an immediately preceding list." -msgstr "" +msgstr "\"أضِف إلى قائمة التعداد\" يضيف الفقرات إلى فقرة تعداد سابقة مباشرة." #. oCEjg #: WriterCommands.xcu @@ -36611,7 +36593,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "أدرِج" +msgstr "أدرج" #. sy3Vp #: WriterGlobalWindowState.xcu diff -Nru libreoffice-7.3.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/ar/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022440.000000\n" #. HhMVS @@ -1594,7 +1594,7 @@ "STR_FILENAME_SUFFIX\n" "value.text" msgid "(minimized)" -msgstr "" +msgstr "(مصغَّر)" #. ZSqeK #: PresentationMinimizer.xcu @@ -1604,7 +1604,7 @@ "STR_WARN_UNSAVED_PRESENTATION\n" "value.text" msgid "Do you want to minimize presentation without saving?" -msgstr "" +msgstr "أتريد تصغير العَرض التقديمي دون حفظ؟" #. pYxGc #: PresentationMinimizer.xcu @@ -1624,7 +1624,7 @@ "Name\n" "value.text" msgid "Email (96 DPI): minimize document size for sharing" -msgstr "" +msgstr "أرسل بالبريد (96 نقطة في البوصة): صغّر حجم المستند للمشاركة" #. mzFCD #: PresentationMinimizer.xcu @@ -1634,7 +1634,7 @@ "Name\n" "value.text" msgid "Web (150 DPI): good for web pages and projectors" -msgstr "" +msgstr "انترنت (150 نقطة في البوصة): جيد لصفحات الانترنت والعارضات" #. wageX #: PresentationMinimizer.xcu @@ -1644,7 +1644,7 @@ "Name\n" "value.text" msgid "Print (300 DPI): excellent quality on most printers and screens" -msgstr "" +msgstr "طباعة (300 نقطة في البوصة): جودة ممتازة في معظم الطابعات والشاشات" #. 5BgC2 #: PresentationMinimizer.xcu @@ -1654,7 +1654,7 @@ "Name\n" "value.text" msgid "High fidelity: preserves quality of the original picture" -msgstr "" +msgstr "ملازمة عالية: تحافظ على جودة الصورة الأصلية" #. Le7Xu #: PresenterScreen.xcu @@ -2854,7 +2854,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "بنوددفع" +msgstr "بنودالدفع" #. JyCyG #: TableWizard.xcu @@ -3034,7 +3034,7 @@ "Name\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. 8KmMy #: TableWizard.xcu @@ -3044,7 +3044,7 @@ "ShortName\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. 838Ju #: TableWizard.xcu @@ -3544,7 +3544,7 @@ "Name\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. H7Bqz #: TableWizard.xcu @@ -3554,7 +3554,7 @@ "ShortName\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. 4dmkL #: TableWizard.xcu @@ -4234,7 +4234,7 @@ "Name\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. nDsvK #: TableWizard.xcu @@ -4244,7 +4244,7 @@ "ShortName\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. xnWhM #: TableWizard.xcu @@ -4364,7 +4364,7 @@ "Name\n" "value.text" msgid "Title" -msgstr "المسمى الوظيفي" +msgstr "العنوان" #. LZRsJ #: TableWizard.xcu @@ -4374,7 +4374,7 @@ "ShortName\n" "value.text" msgid "Title" -msgstr "المسمى الوظيفي" +msgstr "العنوان" #. 23GZC #: TableWizard.xcu @@ -5154,7 +5154,7 @@ "Name\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. UPjpD #: TableWizard.xcu @@ -5164,7 +5164,7 @@ "ShortName\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. o5MH8 #: TableWizard.xcu @@ -5344,7 +5344,7 @@ "Name\n" "value.text" msgid "UnitPrice" -msgstr "UnitPrice" +msgstr "سعر‌الوحدة" #. FEDWA #: TableWizard.xcu @@ -5354,7 +5354,7 @@ "ShortName\n" "value.text" msgid "UnitPrice" -msgstr "UnitPrice" +msgstr "سعر‌الوحدة" #. ZjkrP #: TableWizard.xcu @@ -5794,7 +5794,7 @@ "Name\n" "value.text" msgid "PaymentTerms" -msgstr "PaymentTerms" +msgstr "بنودالدفع" #. xJJBA #: TableWizard.xcu @@ -5804,7 +5804,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "PaymntTerm" +msgstr "بنودالدفع" #. w3BHM #: TableWizard.xcu @@ -5904,7 +5904,7 @@ "Name\n" "value.text" msgid "EmployeeID" -msgstr "EmployeeID" +msgstr "معرِّف‌الموظَّف" #. GUiNL #: TableWizard.xcu @@ -5984,7 +5984,7 @@ "Name\n" "value.text" msgid "Salesperson" -msgstr "Salesperson" +msgstr "البائع" #. Wn6gD #: TableWizard.xcu @@ -5994,7 +5994,7 @@ "ShortName\n" "value.text" msgid "Salespersn" -msgstr "Salespersn" +msgstr "البائع" #. eDBJ6 #: TableWizard.xcu @@ -6004,7 +6004,7 @@ "Name\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. UR4cM #: TableWizard.xcu @@ -6014,7 +6014,7 @@ "ShortName\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. QGS9G #: TableWizard.xcu @@ -6024,7 +6024,7 @@ "Name\n" "value.text" msgid "ShippedTo" -msgstr "ShippedTo" +msgstr "مشحون‌إلى" #. o4DBh #: TableWizard.xcu @@ -6034,7 +6034,7 @@ "ShortName\n" "value.text" msgid "ShippedTo" -msgstr "ShippedTo" +msgstr "مشحون‌إلى" #. WAARk #: TableWizard.xcu @@ -6044,7 +6044,7 @@ "Name\n" "value.text" msgid "ShippedVia" -msgstr "ShippedVia" +msgstr "مشحون‌عبر" #. oGrmR #: TableWizard.xcu @@ -6054,7 +6054,7 @@ "ShortName\n" "value.text" msgid "ShippedVia" -msgstr "ShippedVia" +msgstr "مشحون‌عبر" #. hVjqe #: TableWizard.xcu @@ -6064,7 +6064,7 @@ "Name\n" "value.text" msgid "ShippingCost" -msgstr "ShippingCost" +msgstr "كلفةالشحن" #. VDzPZ #: TableWizard.xcu @@ -6074,7 +6074,7 @@ "ShortName\n" "value.text" msgid "ShipCost" -msgstr "ShipCost" +msgstr "كلفة‌الشحن" #. GRQ3Z #: TableWizard.xcu @@ -6214,7 +6214,7 @@ "Name\n" "value.text" msgid "UnitPrice" -msgstr "UnitPrice" +msgstr "سعر‌الوحدة" #. CRGGb #: TableWizard.xcu @@ -6224,7 +6224,7 @@ "ShortName\n" "value.text" msgid "UnitPrice" -msgstr "UnitPrice" +msgstr "سعر‌الوحدة" #. ZsXui #: TableWizard.xcu @@ -6254,7 +6254,7 @@ "Name\n" "value.text" msgid "PaymentTerms" -msgstr "PaymentTerms" +msgstr "بنودالدفع" #. vkiyA #: TableWizard.xcu @@ -6264,7 +6264,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "PaymntTerm" +msgstr "بنودالدفع" #. GkSif #: TableWizard.xcu @@ -7534,7 +7534,7 @@ "Name\n" "value.text" msgid "ShippedVia" -msgstr "ShippedVia" +msgstr "مشحون‌عبر" #. gtnfp #: TableWizard.xcu @@ -7544,7 +7544,7 @@ "ShortName\n" "value.text" msgid "ShippedVia" -msgstr "ShippedVia" +msgstr "مشحون‌عبر" #. gtCDV #: TableWizard.xcu @@ -7574,7 +7574,7 @@ "Name\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. 6EjRr #: TableWizard.xcu @@ -7584,7 +7584,7 @@ "ShortName\n" "value.text" msgid "ShipDate" -msgstr "ShipDate" +msgstr "تاريخ‌الشحن" #. 9B5q9 #: TableWizard.xcu @@ -7594,7 +7594,7 @@ "Name\n" "value.text" msgid "ShipperPhoneNumber" -msgstr "ShipperPhoneNumber" +msgstr "رقم‌هاتف‌الشاحن" #. BgxzD #: TableWizard.xcu @@ -8344,7 +8344,7 @@ "Name\n" "value.text" msgid "NextScheduledMaintenance" -msgstr "NextScheduledMaintenance" +msgstr "الصيانةالمجدولةالتالية" #. YbgNB #: TableWizard.xcu @@ -8354,7 +8354,7 @@ "ShortName\n" "value.text" msgid "NtSchMaint" -msgstr "NtSchMaint" +msgstr "صيانةمجدولةتالية" #. JiCGL #: TableWizard.xcu @@ -9024,7 +9024,7 @@ "Name\n" "value.text" msgid "Title" -msgstr "المسمى الوظيفي" +msgstr "العنوان" #. Dqyg9 #: TableWizard.xcu @@ -9034,7 +9034,7 @@ "ShortName\n" "value.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. BMGRC #: TableWizard.xcu diff -Nru libreoffice-7.3.4/translations/source/ar/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/ar/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/ar/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022443.000000\n" #. q6Gg3 @@ -203,7 +203,7 @@ "s2we35\n" "readmeitem.text" msgid "Linux Kernel version 3.10 or higher;" -msgstr "" +msgstr "نظام أساس لينكس الإصدار 3.10 أو أعلى؛" #. pNgKX #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po libreoffice-7.3.5/translations/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po --- libreoffice-7.3.4/translations/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po 2022-07-15 19:12:51.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: 2014-09-19 08:45+0000\n" -"Last-Translator: صفا الفليج \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Riyadh Talal \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1411116304.000000\n" #. Ej27A @@ -59,7 +59,7 @@ "display-name\n" "property.text" msgid "MetaData" -msgstr "البيانات الوصفيّة" +msgstr "بيانات‌وصفيّة" #. XECPG #: category_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/ar/reportdesign/messages.po libreoffice-7.3.5/translations/source/ar/reportdesign/messages.po --- libreoffice-7.3.4/translations/source/ar/reportdesign/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/reportdesign/messages.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -126,10 +126,9 @@ #. Hc5De #: reportdesign/inc/stringarray.hrc:60 -#, fuzzy msgctxt "RID_STR_KEEPTOGETHER_CONST" msgid "With First Detail" -msgstr "مع التفاصيل اﻷولى" +msgstr "مع التفصيل اﻷول" #. k2yjS #: reportdesign/inc/stringarray.hrc:66 @@ -268,7 +267,7 @@ #: reportdesign/inc/strings.hrc:29 msgctxt "RID_STR_KEEPTOGETHER" msgid "Keep Together" -msgstr "البقاء معًا" +msgstr "الإبقاء معًا" #. pjADt #: reportdesign/inc/strings.hrc:30 @@ -1265,13 +1264,13 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:260 msgctxt "conditionwin|ToolBoxItem4" msgid "Background Color" -msgstr "لون الخلفيّة" +msgstr "لون الخلفية" #. bF2Nt #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:272 msgctxt "conditionwin|ToolBoxItem5" msgid "Font Color" -msgstr "لون الخطّ" +msgstr "لون الخط" #. Cr7CD #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:284 @@ -1353,16 +1352,15 @@ #. AjmhK #: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:168 -#, fuzzy msgctxt "floatingfield|helptext" msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter." -msgstr "قم بتمييز الحقول لإدراجها في المقطع المحدد للقالب، ثم انقر فوق إدراج أو اضغط على Enter." +msgstr "ميّز الحقول التي ستدرجها في المقطع المحدد من القالب، ثم انقر فوق إدراج أو اضغط على مفتاح الإدخال." #. DCm75 #: reportdesign/uiconfig/dbreport/ui/floatingnavigator.ui:19 msgctxt "floatingnavigator|FloatingNavigator" msgid "Report navigator" -msgstr "ملاح التقرير" +msgstr "ملاح التقارير" #. J7Adn #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:13 @@ -1372,10 +1370,9 @@ #. LRhtG #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:76 -#, fuzzy msgctxt "floatingsort|label5" msgid "Group actions" -msgstr "إجراءات المجموعة" +msgstr "إجراءات المجموعات" #. p6yrj #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:96 @@ -1421,23 +1418,21 @@ #. GWWsG #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:238 -#, fuzzy msgctxt "floatingsort|label9" msgid "Group On" -msgstr "تجميع في" +msgstr "تجميع عند" #. uqrrE #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:252 -#, fuzzy msgctxt "floatingsort|label10" msgid "Group Interval" -msgstr "فاصل المجموعة" +msgstr "مسافة المجموعة" #. iFmvA #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:266 msgctxt "floatingsort|label11" msgid "Keep Together" -msgstr "البقاء معًا" +msgstr "الإبقاء معًا" #. tQbGB #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:283 @@ -1453,17 +1448,15 @@ #. LsRSa #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:299 -#, fuzzy msgctxt "floatingsort|header" msgid "Present" -msgstr "حاضر" +msgstr "متواجد" #. vnGGe #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:300 -#, fuzzy msgctxt "floatingsort|header" msgid "Not present" -msgstr "غير حاضر" +msgstr "غير متواجد" #. xUAEz #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:315 @@ -1480,24 +1473,21 @@ #. uCpDA #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:317 -#, fuzzy msgctxt "floatingsort|keep" msgid "With First Detail" -msgstr "مع التفاصيل اﻷولى" +msgstr "مع التفصيل اﻷول" #. A9ESx #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:332 -#, fuzzy msgctxt "floatingsort|footer" msgid "Present" -msgstr "حاضر" +msgstr "متواجد" #. a5oHV #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:333 -#, fuzzy msgctxt "floatingsort|footer" msgid "Not present" -msgstr "غير حاضر" +msgstr "غير متواجد" #. MYqZY #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:348 diff -Nru libreoffice-7.3.4/translations/source/ar/sc/messages.po libreoffice-7.3.5/translations/source/ar/sc/messages.po --- libreoffice-7.3.4/translations/source/ar/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -235,7 +235,7 @@ #: sc/inc/globstr.hrc:48 msgctxt "STR_UNDO_OPTROWHEIGHT" msgid "Optimal Row Height" -msgstr "أفضل ارتفاع للصف" +msgstr "الارتفاع الأمثل للصف" #. r6cVy #: sc/inc/globstr.hrc:49 @@ -1203,7 +1203,7 @@ #: sc/inc/globstr.hrc:206 msgctxt "STR_TEXTATTRS" msgid "Text Attributes" -msgstr "سمات النص" +msgstr "صفات النص" #. CD5iM #: sc/inc/globstr.hrc:207 @@ -2830,7 +2830,7 @@ #: sc/inc/globstr.hrc:473 msgctxt "STR_COND_NOT_CONTAINS" msgid "does not contain" -msgstr "" +msgstr "لا يحوي" #. GvCEB #: sc/inc/globstr.hrc:474 @@ -4440,10 +4440,9 @@ #. yACyr #: sc/inc/scfuncs.hrc:301 -#, fuzzy msgctxt "SC_OPCODE_GET_TIME" msgid "Hour" -msgstr "ساعات" +msgstr "الساعة" #. AGPC5 #: sc/inc/scfuncs.hrc:302 @@ -4453,10 +4452,9 @@ #. KyzQW #: sc/inc/scfuncs.hrc:303 -#, fuzzy msgctxt "SC_OPCODE_GET_TIME" msgid "Minute" -msgstr "دقائق" +msgstr "الدقيقة" #. oeChi #: sc/inc/scfuncs.hrc:304 @@ -4466,10 +4464,9 @@ #. XEuAN #: sc/inc/scfuncs.hrc:305 -#, fuzzy msgctxt "SC_OPCODE_GET_TIME" msgid "Second" -msgstr "ثوانٍ" +msgstr "الثانية" #. iTyzy #: sc/inc/scfuncs.hrc:306 @@ -5281,7 +5278,7 @@ #: sc/inc/scfuncs.hrc:528 msgctxt "SC_OPCODE_CUM_PRINC" msgid "E" -msgstr "ن" +msgstr "مُ" #. 3AMAi #: sc/inc/scfuncs.hrc:529 @@ -5359,7 +5356,7 @@ #: sc/inc/scfuncs.hrc:546 msgctxt "SC_OPCODE_CUM_IPMT" msgid "E" -msgstr "ن" +msgstr "مُ" #. 33EVk #: sc/inc/scfuncs.hrc:547 @@ -8973,10 +8970,9 @@ #. GGkKW #: sc/inc/scfuncs.hrc:1830 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Value 1; value 2;... are arguments corresponding to a population." -msgstr "قيمة ١، قيمة ٢، ... هي معاملات تمثّل السكانية." +msgstr "قيمة ١، قيمة ٢، ... هي معاملات وسيطة عائدة إلى مجتمع إحصائي." #. GGXRy #: sc/inc/scfuncs.hrc:1836 @@ -14640,7 +14636,7 @@ #: sc/inc/scfuncs.hrc:3487 msgctxt "SC_OPCODE_HYPERLINK" msgid "Construct a Hyperlink." -msgstr "ركّب ارتباطًا تشعبيًا" +msgstr "ركّب رابطًا تشعبيًا" #. UAXBE #: sc/inc/scfuncs.hrc:3488 @@ -16883,20 +16879,20 @@ #: sc/inc/strings.hrc:39 msgctxt "SCSTR_FILTER_BACKGROUND_COLOR" msgid "Background Color" -msgstr "" +msgstr "لون الخلفية" #. td5Gr #. This must match the translation of the same strings of standardfilterdialog|cond #: sc/inc/strings.hrc:41 msgctxt "STANDARDFILTERDIALOG_COND" msgid "Text color" -msgstr "" +msgstr "لون النص" #. sGJCz #: sc/inc/strings.hrc:42 msgctxt "STANDARDFILTERDIALOG_COND" msgid "Background color" -msgstr "" +msgstr "لون الخلفية" #. teYGB #: sc/inc/strings.hrc:43 @@ -16920,7 +16916,7 @@ #: sc/inc/strings.hrc:46 msgctxt "SCSTR_INSERT_RTL" msgid "Shift cells left" -msgstr "" +msgstr "أزِح الخلايا يساراً" #. cZNeR #. "%1 is replaced to column letter, such as 'Column A'" @@ -16952,7 +16948,7 @@ #: sc/inc/strings.hrc:53 msgctxt "SCSTR_APDTABLE" msgid "Append Sheet" -msgstr "إلحاق ورقة" +msgstr "ألحِق ورقة" #. sba4F #: sc/inc/strings.hrc:54 @@ -16980,7 +16976,6 @@ #. 3FHKw #: sc/inc/strings.hrc:58 -#, fuzzy msgctxt "STR_INSERTGRAPHIC" msgid "Insert Image" msgstr "أدرج صورة" @@ -17001,26 +16996,26 @@ #: sc/inc/strings.hrc:60 msgctxt "SCSTR_SKIPPED" msgid "(only %1 are listed)" -msgstr "" +msgstr "(فقط %1 مُدرَجة)" #. YxFpr #. Attribute #: sc/inc/strings.hrc:62 msgctxt "SCSTR_PROTECTDOC" msgid "Protect Spreadsheet Structure" -msgstr "" +msgstr "احمِ بِنية الورقة الممتدة" #. SQCpD #: sc/inc/strings.hrc:63 msgctxt "SCSTR_UNPROTECTDOC" msgid "Unprotect Spreadsheet Structure" -msgstr "" +msgstr "أزِل حماية بِنية الورقة الممتدة" #. rAV3G #: sc/inc/strings.hrc:64 msgctxt "SCSTR_UNPROTECTTAB" msgid "Unprotect Sheet" -msgstr "" +msgstr "أزِل حماية الورقة" #. K7w3B #: sc/inc/strings.hrc:65 @@ -17086,7 +17081,7 @@ #: sc/inc/strings.hrc:75 msgctxt "SCSTR_VALID_FORMULA" msgid "~Formula" -msgstr "" +msgstr "الصي~غة" #. 6YEEk #: sc/inc/strings.hrc:76 @@ -19272,7 +19267,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "يعرض معاينة للتحديد الحالي." #. qcCWk #: sc/uiconfig/scalc/ui/autoformattable.ui:173 @@ -20094,7 +20089,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:405 msgctxt "conditionalentry|typeis" msgid "does not contain" -msgstr "" +msgstr "لا يحوي" #. 5WkbA #: sc/uiconfig/scalc/ui/conditionalentry.ui:417 @@ -20313,7 +20308,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:540 msgctxt "conditionalentry|iconsettype" msgid "4 Circles Red to Black" -msgstr "" +msgstr "4 دوائر أحمر إلى أسود" #. BKpUg #: sc/uiconfig/scalc/ui/conditionalentry.ui:541 @@ -21457,7 +21452,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:173 msgctxt "datafieldoptionsdialog|extended_tip|manual" msgid "Sorts values alphabetically." -msgstr "" +msgstr "يرتّب القيم ألفبائيًا." #. cdBMn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:190 @@ -21898,19 +21893,19 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:53 msgctxt "datetimetransformationentry|monthname" msgid "Month Name" -msgstr "" +msgstr "اسم الشهر" #. HgxcR #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:54 msgctxt "datetimetransformationentry|startofmonth" msgid "Start of Month" -msgstr "" +msgstr "بداية الشهر" #. XNCUa #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:55 msgctxt "datetimetransformationentry|endofmonth" msgid "End of Month" -msgstr "" +msgstr "نهاية الشهر" #. o8MSx #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:56 @@ -21922,49 +21917,49 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:57 msgctxt "datetimetransformationentry|dayofweek" msgid "Day of Week" -msgstr "" +msgstr "يوم أسبوع" #. REwMc #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:58 msgctxt "datetimetransformationentry|dayofyear" msgid "Day of Year" -msgstr "" +msgstr "يوم سنة" #. FwYxx #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:59 msgctxt "datetimetransformationentry|quarter" msgid "Quarter" -msgstr "" +msgstr "ربع السنة" #. uCzda #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:60 msgctxt "datetimetransformationentry|startofquarter" msgid "Start of Quarter" -msgstr "" +msgstr "بداية الربع" #. PNcts #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:61 msgctxt "datetimetransformationentry|endofquarter" msgid "End of Quarter" -msgstr "" +msgstr "نهاية الربع" #. ZF9oj #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:62 msgctxt "datetimetransformationentry|hour" msgid "Hour" -msgstr "" +msgstr "الساعة" #. dtk7E #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:63 msgctxt "datetimetransformationentry|minute" msgid "Minute" -msgstr "" +msgstr "الدقيقة" #. CRQvi #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:64 msgctxt "datetimetransformationentry|second" msgid "Second" -msgstr "" +msgstr "الثانية" #. 5CFb9 #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65 @@ -21982,7 +21977,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:89 msgctxt "datetimetransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "احذف" #. nHoB2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18 @@ -22040,10 +22035,9 @@ #. N8Lui #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:296 -#, fuzzy msgctxt "definedatabaserangedialog|modify" msgid "M_odify" -msgstr "تعديل" +msgstr "ع_دّل" #. AGETd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:317 @@ -22344,13 +22338,13 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:55 msgctxt "deletecolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "احذف" #. VWjSF #: sc/uiconfig/scalc/ui/deletecontents.ui:8 msgctxt "deletecontents|DeleteContentsDialog" msgid "Delete Contents" -msgstr "حذف المحتويات" +msgstr "احذف المحتويات" #. hFamV #: sc/uiconfig/scalc/ui/deletecontents.ui:92 @@ -22482,7 +22476,7 @@ #: sc/uiconfig/scalc/ui/deleterowentry.ui:68 msgctxt "deleterow|delete_btn" msgid "Delete" -msgstr "" +msgstr "احذف" #. gB36A #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:8 @@ -22558,7 +22552,7 @@ #: sc/uiconfig/scalc/ui/dropmenu.ui:22 msgctxt "dropmenu|hyperlink" msgid "Insert as Hyperlink" -msgstr "أدرج كارتباط تشعبي" +msgstr "أدرج كرابط تشعبي" #. EVfz4 #: sc/uiconfig/scalc/ui/dropmenu.ui:28 @@ -22576,7 +22570,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 " تُنشأ رابك عندما تقوم بسحب و إفلات شيء من المتصفح للمستند" +msgstr "تُنشأ رابطًا عند سحب و إفلات كائن من الملّاح إلى مستندٍ ما." #. HHS5F #: sc/uiconfig/scalc/ui/dropmenu.ui:52 @@ -22630,7 +22624,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134 msgctxt "erroralerttabpage-mobile|actionCB" msgid "Stop" -msgstr "" +msgstr "توقف" #. fcLJh #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135 @@ -22694,10 +22688,9 @@ #. BKReu #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:160 -#, fuzzy msgctxt "erroralerttabpage|actionCB" msgid "Stop" -msgstr "إيقاف" +msgstr "توقف" #. oBEAz #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:161 @@ -23208,7 +23201,7 @@ #: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146 msgctxt "floatingborderstyle|left|tooltip_text" msgid "Left Border" -msgstr "حد أيسر" +msgstr "الحد الأيسر" #. FWwqR #: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157 @@ -23585,10 +23578,9 @@ #. rmQie #: sc/uiconfig/scalc/ui/functionpanel.ui:175 -#, fuzzy msgctxt "functionpanel|funcdesc" msgid "label" -msgstr "التسمية" +msgstr "اللصيقة" #. dmA3u #: sc/uiconfig/scalc/ui/goalseekdlg.ui:8 @@ -23914,7 +23906,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:323 @@ -23932,7 +23924,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:346 msgctxt "headerfootercontent|extended_tip|buttonBTN_FILE" msgid "Inserts a file name placeholder in the selected area." -msgstr " أدخل اسم الملف في المكان المحدد" +msgstr "يُدرِج عنصراً نائبًا لاسم الملف في المنطقة المحددة." #. 9qxRg #: sc/uiconfig/scalc/ui/headerfootercontent.ui:361 @@ -23944,7 +23936,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:366 msgctxt "headerfootercontent|extended_tip|buttonBTN_TABLE" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document." -msgstr "إدخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل باسم الورقة في أعلى و أسفل الصفحة للمستند الحالي" +msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل باسم الورقة في ترويس\\تذييل المستند الفعلي." #. QnDzF #: sc/uiconfig/scalc/ui/headerfootercontent.ui:381 @@ -23956,7 +23948,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:386 msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGE" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document." -msgstr "إدخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل رقم الصفحة، مما يسمح للتعداد المستمر للصفحات في المستند" +msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بترقيم الصفحة. هذا يتيح استمرار ترقيم الصفحات في المستند." #. y5CWn #: sc/uiconfig/scalc/ui/headerfootercontent.ui:401 @@ -23968,7 +23960,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:406 msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGES" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document." -msgstr "دخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل بالعدد الإجمالي للصفحات في المستند" +msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالعدد الكلي للصفحات في المستند." #. BhqdB #: sc/uiconfig/scalc/ui/headerfootercontent.ui:421 @@ -23980,7 +23972,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:426 msgctxt "headerfootercontent|extended_tip|buttonBTN_DATE" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document." -msgstr "" +msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالتأريخ الحالي والذي سيُكرَّر في الترويس\\التذييل على كل صفحة قي المستند." #. m5EGS #: sc/uiconfig/scalc/ui/headerfootercontent.ui:441 @@ -23992,7 +23984,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:446 msgctxt "headerfootercontent|extended_tip|buttonBTN_TIME" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document." -msgstr "" +msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالتأريخ الحالي في الترويس\\التذييل على كل صفحة قي المستند." #. 6FVPq #: sc/uiconfig/scalc/ui/headerfootercontent.ui:468 @@ -25085,7 +25077,7 @@ #: sc/uiconfig/scalc/ui/navigatorpanel.ui:22 msgctxt "navigatorpanel|hyperlink" msgid "Insert as Hyperlink" -msgstr "أدرج كارتباط تشعبي" +msgstr "أدرج كرابط تشعبي" #. 62g94 #: sc/uiconfig/scalc/ui/navigatorpanel.ui:28 @@ -25097,13 +25089,13 @@ #: sc/uiconfig/scalc/ui/navigatorpanel.ui:37 msgctxt "navigatorpanel|link" msgid "Insert as Link" -msgstr "" +msgstr "أدرج كرابط" #. mX7ED #: sc/uiconfig/scalc/ui/navigatorpanel.ui:43 msgctxt "navigatorpanel|extended_tip|link" msgid "Creates a link when you drag-and-drop an object from the Navigator into a document." -msgstr " تُنشأ رابك عندما تقوم بسحب و إفلات شيء من المتصفح للمستند" +msgstr "تُنشأ رابطًا عند سحب و إفلات كائن من الملّاح إلى مستندٍ ما." #. 97BBT #: sc/uiconfig/scalc/ui/navigatorpanel.ui:52 @@ -25610,97 +25602,97 @@ msgstr "معاي~نة" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_صورة" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "صور~ة" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "در_و" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~درو" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "كائن" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~كائن" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "و_سائط" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "و~سائط" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "طباعة" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "اس_تمارة" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "ام_تداد" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "ام~تداد" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "أدوا_ت" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "أدوا~ت" @@ -26059,139 +26051,139 @@ msgstr "_صورة" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_رتّب" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ل_ون" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_شبكة" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "الل_غة" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "مر_اجعة" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ت_عليقات" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_قارن" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "معاي_نة" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "در_و" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ح_رّر" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_رتّب" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "معاي_نة" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_جمّع" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_الأبعاد" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ال_خط" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "محا_ذاة" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "معاي_نة" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "أ_درج" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "و_سائط" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "إط_ار" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_رتّب" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_شبكة" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "معاي_نة" @@ -26446,7 +26438,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1728 msgctxt "notebookbar_groups|linksb" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. txpNZ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1842 @@ -26792,10 +26784,9 @@ #. ApqYV #: sc/uiconfig/scalc/ui/optcalculatepage.ui:401 -#, fuzzy msgctxt "optcalculatepage|datestd|tooltip_text" msgid "Value 0 corresponds to 12/30/1899" -msgstr "القيمة 0 متطابقة مع 30/12/18999" +msgstr "القيمة 0 تمثل 30/12/1899" #. SCewx #: sc/uiconfig/scalc/ui/optcalculatepage.ui:407 @@ -26811,10 +26802,9 @@ #. etLCb #: sc/uiconfig/scalc/ui/optcalculatepage.ui:422 -#, fuzzy msgctxt "optcalculatepage|datesc10|tooltip_text" msgid "Value 0 corresponds to 01/01/1900" -msgstr "القيمة 0 متطابقة مع 01/01/19000" +msgstr "القيمة 0 تمثل 01/01/1900" #. LEunE #: sc/uiconfig/scalc/ui/optcalculatepage.ui:428 @@ -26830,10 +26820,9 @@ #. aBzk5 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:443 -#, fuzzy msgctxt "optcalculatepage|date1904|tooltip_text" msgid "0 corresponds to 01/01/1904" -msgstr "القيمة 0 متطابقة مع 01/01/19044" +msgstr "0 يمثل01/01/1904" #. EkAYW #: sc/uiconfig/scalc/ui/optcalculatepage.ui:449 @@ -27243,7 +27232,7 @@ #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:8 msgctxt "optimalrowheightdialog|OptimalRowHeightDialog" msgid "Optimal Row Height" -msgstr "ارتفاع العمود الأمثل" +msgstr "الارتفاع الأمثل للصف" #. nVExa #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:90 @@ -27267,13 +27256,13 @@ #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:129 msgctxt "optimalrowheightdialog|extended_tip|default" msgid "Restores the default value for the optimal row height." -msgstr "" +msgstr "يستعيد القيمة الافتراضية للارتفاع الأمثل للصف." #. zwDoC #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:160 msgctxt "optimalrowheightdialog|extended_tip|OptimalRowHeightDialog" msgid "Determines the optimal row height for the selected rows." -msgstr "" +msgstr "يحدد ارتفاع الصف الأمثل للصفوف المحددة." #. AePrG #: sc/uiconfig/scalc/ui/optsortlists.ui:31 @@ -27694,7 +27683,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:412 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 "يُدرِج كائنات محتواة في نطاق الخلايا المحددة. هذه الكائنات يمكن أن تكون كائنات OLE أو كائنات مخططات بيانية أو كائنات رسم." #. jrjYA #: sc/uiconfig/scalc/ui/pastespecial.ui:423 @@ -29355,13 +29344,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:51 msgctxt "scgeneralpage|label5" msgid "_Tab stops:" -msgstr "_علامات الجدولة:" +msgstr "_توقفات مفتاح التبويب:" #. akEMb #: sc/uiconfig/scalc/ui/scgeneralpage.ui:70 msgctxt "extended_tip|tabmf" msgid "Defines the tab stops distance." -msgstr "" +msgstr "يعرف مسافة توقفات مفتاح التبويب." #. iwwhu #: sc/uiconfig/scalc/ui/scgeneralpage.ui:85 @@ -31572,7 +31561,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:544 msgctxt "standardfilterdialog|cond" msgid "Contains" -msgstr "" +msgstr "يحوي" #. K4RKQ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:428 @@ -31581,7 +31570,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:545 msgctxt "standardfilterdialog|cond" msgid "Does not contain" -msgstr "" +msgstr "لا يحوي" #. VJwkd #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:429 @@ -31590,7 +31579,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:546 msgctxt "standardfilterdialog|cond" msgid "Begins with" -msgstr "" +msgstr "يبدأ بـ" #. A3zBA #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:430 @@ -31599,7 +31588,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:547 msgctxt "standardfilterdialog|cond" msgid "Does not begin with" -msgstr "" +msgstr "لا يبدأ بـ" #. yEk22 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:431 @@ -31608,7 +31597,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:548 msgctxt "standardfilterdialog|cond" msgid "Ends with" -msgstr "" +msgstr "ينتهي بـ" #. KMx5B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:432 @@ -31617,7 +31606,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:549 msgctxt "standardfilterdialog|cond" msgid "Does not end with" -msgstr "" +msgstr "لا ينتهي بـ" #. XCG8Q #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:433 @@ -31626,7 +31615,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:550 msgctxt "standardfilterdialog|cond" msgid "Text color" -msgstr "" +msgstr "لون النص" #. 5Wa7m #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:434 @@ -31635,14 +31624,13 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:551 msgctxt "standardfilterdialog|cond" msgid "Background color" -msgstr "" +msgstr "لون الخلفية" #. rmPTC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:441 -#, fuzzy msgctxt "standardfilterdialog|cond1-atkobject" msgid "Condition 1" -msgstr "الشّروط" +msgstr "الشرط 1" #. D79PB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:442 @@ -31652,10 +31640,9 @@ #. yBMtw #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:480 -#, fuzzy msgctxt "standardfilterdialog|cond2-atkobject" msgid "Condition 2" -msgstr "الشّروط" +msgstr "الشرط 2" #. XVyyC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:481 @@ -31665,10 +31652,9 @@ #. wrG8B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:519 -#, fuzzy msgctxt "standardfilterdialog|cond3-atkobject" msgid "Condition 3" -msgstr "الشّروط" +msgstr "الشرط 3" #. aHUBP #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:520 @@ -31678,10 +31664,9 @@ #. ieYAs #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:555 -#, fuzzy msgctxt "standardfilterdialog|cond4-atkobject" msgid "Condition 4" -msgstr "الشّروط" +msgstr "الشرط 4" #. LyiFB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:569 @@ -31712,10 +31697,9 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:715 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:783 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:851 -#, fuzzy msgctxt "standardfilterdialog|val1-atkobject" msgid "Value 1" -msgstr "القيمة" +msgstr "القيمة 1" #. uyZGo #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:648 @@ -32038,16 +32022,15 @@ #. maa6m #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:148 -#, fuzzy msgctxt "subtotaloptionspage|descending" msgid "D_escending" -msgstr "ت_صاعدي" +msgstr "ت_نازلي" #. 8iUpi #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:158 msgctxt "subtotaloptionspage|extended_tip|descending" msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options." -msgstr "" +msgstr "يرتّب ابتداءاً من أعلى القيم. يمكنك إعداد قواعد الترتيب من بيانات - ترتيب - خيارات." #. EGqiq #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:169 @@ -33263,7 +33246,7 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:112 msgctxt "xmlsourcedialog|selectsource|tooltip_text" msgid "Browse to set source file." -msgstr "" +msgstr "تصفّح لتعيّن ملف مصدر." #. WkbPB #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:126 diff -Nru libreoffice-7.3.4/translations/source/ar/scp2/source/draw.po libreoffice-7.3.5/translations/source/ar/scp2/source/draw.po --- libreoffice-7.3.4/translations/source/ar/scp2/source/draw.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/scp2/source/draw.po 2022-07-15 19:12:51.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: 2022-03-12 20:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1518446707.000000\n" #. txsAG @@ -32,7 +32,7 @@ "STR_FI_TOOLTIP_DRAW\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using Draw." -msgstr "إنشاء الرسوم وتحريرها، ورسوم الدفق البيانية، والشعارات باستخدام درو." +msgstr "أنشئ وحرر الرسوم، والمخططات الانسيابية والشعارات باستخدام درو." #. w5oJE #: module_draw.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_PRG_DRAW\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using %PRODUCTNAME Draw." -msgstr "إنشاء الرسومات وتحريرها، والمخططات الانسيابية، والشعارات باستخدام %PRODUCTNAME درو." +msgstr "أنشئ وحرر الرسومات والمخططات الانسيابية، والشعارات باستخدام %PRODUCTNAME درو." #. 6iuU9 #: module_draw.ulf diff -Nru libreoffice-7.3.4/translations/source/ar/scp2/source/writer.po libreoffice-7.3.5/translations/source/ar/scp2/source/writer.po --- libreoffice-7.3.4/translations/source/ar/scp2/source/writer.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/scp2/source/writer.po 2022-07-15 19:12:51.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: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Riyadh Talal \n" -"Language-Team: Arabic \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "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.12.2\n" "X-POOTLE-MTIME: 1484665673.000000\n" #. V3iDr @@ -41,7 +41,7 @@ "STR_FI_TOOLTIP_WRITER\n" "LngText.text" msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer." -msgstr "أنشئ وحرّر النصوص والصور في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام رايتر." +msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام رايتر." #. 3iX4u #: module_writer.ulf @@ -59,7 +59,7 @@ "STR_DESC_MODULE_PRG_WRT\n" "LngText.text" msgid "Create and edit text and images in letters, reports, documents and Web pages by using %PRODUCTNAME Writer." -msgstr "أنشئ وحرّر النصوص والصور في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام %PRODUCTNAME رايتر." +msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام %PRODUCTNAME رايتر." #. GCUDe #: module_writer.ulf diff -Nru libreoffice-7.3.4/translations/source/ar/sd/messages.po libreoffice-7.3.5/translations/source/ar/sd/messages.po --- libreoffice-7.3.4/translations/source/ar/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -110,7 +110,7 @@ #: sd/inc/DocumentRenderer.hrc:55 msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES" msgid "Black & white" -msgstr "أبيض و أسود" +msgstr "أسود وأبيض" #. v8qMM #: sd/inc/DocumentRenderer.hrc:60 @@ -550,7 +550,7 @@ #: sd/inc/strings.hrc:50 msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT" msgid "Title, 2 Content over Content" -msgstr "عنوان واثنان من المحتوى فوق محتوى" +msgstr "عنوان وعنصرا محتوى فوق محتوى" #. D9Ra9 #: sd/inc/strings.hrc:51 @@ -574,7 +574,7 @@ #: sd/inc/strings.hrc:54 msgctxt "STR_AL_TITLE_VERT_OUTLINE" msgid "Title, Vertical Text" -msgstr "عنوان، نص رأسي" +msgstr "عنوان ونص رأسي" #. GsGaq #: sd/inc/strings.hrc:55 @@ -586,13 +586,13 @@ #: sd/inc/strings.hrc:56 msgctxt "STR_AL_VERT_TITLE_TEXT_CHART" msgid "Vertical Title, Text, Chart" -msgstr "عنوان رأسي، نص، رسم بياني" +msgstr "عنوان رأسي ونص ورسم بياني" #. bEiKk #: sd/inc/strings.hrc:57 msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE" msgid "Vertical Title, Vertical Text" -msgstr "عنوان رأسي، نص رأسي" +msgstr "عنوان رأسي ونص رأسي" #. CAeFA #: sd/inc/strings.hrc:58 @@ -1203,7 +1203,7 @@ #: sd/inc/strings.hrc:158 msgctxt "STR_LOAD_PRESENTATION_LAYOUT" msgid "Load Master Slide" -msgstr "" +msgstr "حمّل شريحة رئيسة" #. HxEp8 #: sd/inc/strings.hrc:159 @@ -1347,7 +1347,7 @@ #: sd/inc/strings.hrc:182 msgctxt "STR_VAR" msgid "Variable" -msgstr "المتغير" +msgstr "متغير" #. eDfmL #: sd/inc/strings.hrc:183 @@ -1663,7 +1663,7 @@ #: sd/inc/strings.hrc:235 msgctxt "STR_TOOLTIP_RENAME" msgid "Duplicate or empty names are not possible" -msgstr "" +msgstr "الأسماء المكررة أو الفارغة غير مقبولة" #. FUm5F #: sd/inc/strings.hrc:236 @@ -1747,7 +1747,7 @@ #: sd/inc/strings.hrc:249 msgctxt "STR_FIELD_PLACEHOLDER_COUNT" msgid "" -msgstr "" +msgstr "<المرات>" #. TDgFU #: sd/inc/strings.hrc:250 @@ -1831,7 +1831,7 @@ #: sd/inc/strings.hrc:263 msgctxt "STR_SET_BACKGROUND_PICTURE" msgid "Set Background Image" -msgstr "" +msgstr "عيّن صورة الخلفية" #. ibpDR #: sd/inc/strings.hrc:264 @@ -2609,7 +2609,7 @@ #: sd/inc/strings.hrc:400 msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE" msgid "Footer" -msgstr "التذييل" +msgstr "تذييل" #. SrrR4 #: sd/inc/strings.hrc:401 @@ -3576,13 +3576,13 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:143 msgctxt "drawprinteroptions|blackandwhite" msgid "Black & white" -msgstr "أبيض وأسود" +msgstr "أسود وأبيض" #. Et9Qj #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:152 msgctxt "drawprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "يحدد أنّ تُطبع الألوان كأسود وأبيض." #. MGAFs #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:168 @@ -3848,7 +3848,7 @@ #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:102 msgctxt "insertslidesdialog|extended_tip|backgrounds" msgid "Unused master pages are not inserted." -msgstr "" +msgstr "الصفحات الرئيسية غير المستخدمة غير مُدرَجة." #. ixGB4 #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:113 @@ -4195,109 +4195,109 @@ msgstr "ج~دول" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "صورة" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "صور~ة" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "در_و" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~درو" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "كائن" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~كائن" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "و_سائط" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "و~سائط" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "اس_تمارة" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "ر_ئيسيّ" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "ر~ئيسيّ" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3أبع_اد" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3أبع~اد" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "ام_تداد" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "ام~تداد" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "أدوا_ت" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "أدوا~ت" @@ -4783,7 +4783,7 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:309 msgctxt "customanimationeffecttab|extended_tip|dim_color_list" msgid "Select the dim color." -msgstr "" +msgstr "حدد لون التعتيم." #. fA4rX #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:327 @@ -4801,13 +4801,13 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:372 msgctxt "customanimationeffecttab|aeffect_list" msgid "Don't dim" -msgstr "" +msgstr "لا تُعتِم" #. Aj8J7 #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:373 msgctxt "customanimationeffecttab|aeffect_list" msgid "Dim with color" -msgstr "" +msgstr "تعتيم بلون" #. RiGMP #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:374 @@ -4849,13 +4849,13 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:401 msgctxt "customanimationeffecttab|extended_tip|text_animation_list" msgid "Select the animation mode for the text of the current shape" -msgstr "" +msgstr "حدد نوع تحريك النص للشكل الحالي" #. vF4Wp #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:416 msgctxt "customanimationeffecttab|label4" msgid "Enhancement" -msgstr "" +msgstr "تحسين" #. GKUGV #: sd/uiconfig/simpress/ui/customanimationfragment.ui:33 @@ -4883,19 +4883,19 @@ #: sd/uiconfig/simpress/ui/customanimationfragment.ui:155 msgctxt "customanimationfragment|400" msgid "Extra Large" -msgstr "" +msgstr "كبير جدا" #. BzHuh #: sd/uiconfig/simpress/ui/customanimationfragment.ui:69 msgctxt "customanimationfragment|90" msgid "Quarter Spin" -msgstr "" +msgstr "ربع دوران" #. qJUof #: sd/uiconfig/simpress/ui/customanimationfragment.ui:77 msgctxt "customanimationfragment|180" msgid "Half Spin" -msgstr "" +msgstr "نصف دوران" #. ZPJWF #: sd/uiconfig/simpress/ui/customanimationfragment.ui:85 @@ -5694,16 +5694,15 @@ #. TcVGb #: sd/uiconfig/simpress/ui/dockinganimation.ui:218 -#, fuzzy msgctxt "dockinganimation|stop|tooltip_text" msgid "Stop" -msgstr "إي~قاف" +msgstr "توقف" #. cwD9G #: sd/uiconfig/simpress/ui/dockinganimation.ui:223 msgctxt "dockinganimation|extended_tip|stop" msgid "Stops playing the animation." -msgstr "" +msgstr "أوقف تشغيل الحركة." #. BSGMb #: sd/uiconfig/simpress/ui/dockinganimation.ui:237 @@ -6021,7 +6020,7 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219 msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog" msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides." -msgstr "يضيف أو يغيّر النص في الحالّات في أعلى وأسفل الشرائح والشرائح الرئيسة." +msgstr "يضيف أو يغيّر النص في العناصر النائبة في أعلى وأسفل الشرائح والشرائح الرئيسة." #. BgFsS #: sd/uiconfig/simpress/ui/headerfootertab.ui:35 @@ -6290,16 +6289,15 @@ #. vnaCm #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:285 -#, fuzzy msgctxt "impressprinteroptions|blackandwhite" msgid "Black & white" -msgstr "أبيض وأسود" +msgstr "أسود وأبيض" #. fKqNu #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:294 msgctxt "impressprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "يحدد أنّ تُطبع الألوان كأسود وأبيض." #. G3CZp #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:310 @@ -6534,7 +6532,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100 msgctxt "masterlayoutdlg|extended_tip|header" msgid "Adds a header placeholder to the master slide for notes." -msgstr "" +msgstr "يضيف عناصر نائبة للترويس إلى الشريحة الرئيسة للملاحظات." #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112 @@ -6547,7 +6545,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120 msgctxt "masterlayoutdlg|extended_tip|datetime" msgid "Adds a date/time placeholder to the master slide." -msgstr "" +msgstr "يضيف عنصر تأريخ\\وقت نائبًا إلى الشريحة الرئيسة." #. SFrZg #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:132 @@ -6559,7 +6557,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:140 msgctxt "masterlayoutdlg|extended_tip|footer" msgid "Adds a footer placeholder to the master slide." -msgstr "" +msgstr "يضيف عنصر تذييل نائبًا إلى الشريحة الرئيسة." #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152 @@ -6571,7 +6569,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160 msgctxt "masterlayoutdlg|extended_tip|pagenumber" msgid "Adds a slide number placeholder to the master slide." -msgstr "" +msgstr "يضيف عنصراً نائبًا بشكل رقم صفحة إلى الشريحة الرئيسة." #. DEikC #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172 @@ -6581,16 +6579,15 @@ #. StLxB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:191 -#, fuzzy msgctxt "masterlayoutdlg|Placeholders" msgid "Placeholders" -msgstr "حافظ مكان" +msgstr "عناصر نائبة" #. 2iPYT #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:216 msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog" msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide." -msgstr "" +msgstr "يضيف أو يُزيل العناصر النائبة للترويس والتذييل والتأريخ ورقم الشريحة إلى مخطط الشريحة الرئيسة." #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 @@ -6620,13 +6617,13 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "أدرج كارتباط تشعبي" +msgstr "أدرج كرابط تشعبي" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 msgctxt "navigatorpanel|STR_DRAGTYPE_LINK" msgid "Insert as Link" -msgstr "" +msgstr "أدرج كرابط" #. z7JSR #: sd/uiconfig/simpress/ui/navigatorpanel.ui:29 @@ -7093,109 +7090,109 @@ msgstr "ج~دول" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "صورة" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "صور~ة" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "در_و" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~درو" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "كائن" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~كائن" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "و_سائط" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "و~سائط" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "اس_تمارة" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "ر_ئيسيّ" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "ر~ئيسيّ" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3أبع_اد" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3أبع~اد" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "ام_تداد" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "ام~تداد" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "أدوا_ت" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "أدوا~ت" @@ -7632,7 +7629,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:49 msgctxt "notebookbar_groups|layout01" msgid "Blank" -msgstr "فارغة" +msgstr "فارغ" #. 8fsnY #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:57 @@ -7815,7 +7812,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1471 msgctxt "notebookbar_groups|linksb" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. txpNZ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585 @@ -8003,7 +8000,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:302 msgctxt "extended_tip|units" msgid "Determines the Unit of measurement for presentations." -msgstr "" +msgstr "يحدد وحدة القياس للعروض التقديمية." #. S8VMD #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:327 @@ -8015,7 +8012,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:350 msgctxt "extended_tip|metricFields" msgid "Defines the spacing between tab stops." -msgstr "" +msgstr "يعرّف التباعد بين توقفات مفتاح التبويب." #. oSmuC #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:367 @@ -8045,7 +8042,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:411 msgctxt "extended_tip|backgroundback" msgid "Specifies whether to use the cache for displaying objects on the master slide." -msgstr "" +msgstr "يحدد فيما لو ستُستخدَم الذاكرة الخبيئة لعَرض الكائنات في الشريحة الرئيسة." #. psubE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:427 @@ -8075,13 +8072,13 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:486 msgctxt "extended_tip|textselected" msgid "Specifies whether to select a text box by clicking the text." -msgstr "" +msgstr "يحدد فيما لو يُحدَّد صندوق النص بالنقر على النص." #. 9SB2g #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:501 msgctxt "optimpressgeneralpage|label2" msgid "Text Objects" -msgstr "كائنات النصوص" +msgstr "كائنات نصّ" #. CrRmE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:533 @@ -9191,7 +9188,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1446 msgctxt "publishingdialog|extended_tip|downloadCheckbutton" msgid "Inserts a hyperlink to download a copy of the presentation file." -msgstr "يُدرج ارتباطاً تشعبيًا لتحميل نسخة من ملف العرض التقديمي." +msgstr "يُدرج رابطاً تشعبيًا لتحميل نسخة من ملف العرض التقديمي." #. zyAyC #: sd/uiconfig/simpress/ui/publishingdialog.ui:1471 @@ -9427,7 +9424,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:82 msgctxt "sdviewpage|moveoutline" msgid "_Contour of each individual object" -msgstr " م_حيط كل كائن فردي" +msgstr "م_حيط كل كائن فردي" #. fWu42 #: sd/uiconfig/simpress/ui/sdviewpage.ui:90 @@ -9445,7 +9442,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:114 msgctxt "extended_tip|SdViewPage" msgid "Specifies the available display modes." -msgstr "" +msgstr "يحدد أنماط العَرض المتاحة." #. 7DgNY #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38 @@ -9475,7 +9472,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:108 msgctxt "sidebarslidebackground|displaymasterobjects" msgid "Master Objects" -msgstr "الكائنات الرئيسية" +msgstr "كائنات الرئيسية" #. iFFSD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146 @@ -9487,7 +9484,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223 msgctxt "sidebarslidebackground|displaymasterbackground" msgid "Master Background" -msgstr "الخلفية الرئيسية" +msgstr "خلفية الرئيسية" #. jeCZN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:252 @@ -9499,7 +9496,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "المعاينة الرئيسة" +msgstr "معاينة الرئيسية" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 @@ -9523,31 +9520,31 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:12 msgctxt "slidecontextmenu|goto" msgid "_Go to Slide" -msgstr "" +msgstr "إ_ذهب إلى الشريحة" #. rCXNj #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 msgctxt "slidecontextmenu|pen" msgid "Mouse Pointer as _Pen" -msgstr "" +msgstr "مؤشر الفأرة كال_قلم" #. TXPqW #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46 msgctxt "slidecontextmenu|width" msgid "_Pen Width" -msgstr "" +msgstr "عُر_ض القلم" #. 4QNpS #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:56 msgctxt "slidecontextmenu|4" msgid "_Very Thin" -msgstr "" +msgstr "نحي_ف جداً" #. otGpz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:64 msgctxt "slidecontextmenu|100" msgid "_Thin" -msgstr "" +msgstr "_نحيف" #. 76rP5 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:72 @@ -9559,45 +9556,43 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:80 msgctxt "slidecontextmenu|200" msgid "_Thick" -msgstr "" +msgstr "_ثخين" #. hrkGo #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:88 msgctxt "slidecontextmenu|400" msgid "_Very Thick" -msgstr "" +msgstr "ث_خين جداً" #. 222Gq #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:100 msgctxt "slidecontextmenu|color" msgid "_Change Pen Color..." -msgstr "" +msgstr "_غيّر لون القلم..." #. zfWFz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:108 msgctxt "slidecontextmenu|erase" msgid "_Erase All Ink on Slide" -msgstr "" +msgstr "_امحُ كل الحبر في الشريحة" #. ufabH #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:122 msgctxt "slidecontextmenu|screen" msgid "_Screen" -msgstr "" +msgstr "_شاشة" #. yNb49 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:132 -#, fuzzy msgctxt "slidecontextmenu|black" msgid "_Black" -msgstr "أسود" +msgstr "أ_سود" #. 4CZGb #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:140 -#, fuzzy msgctxt "slidecontextmenu|white" msgid "_White" -msgstr "أبيض" +msgstr "أ_بيض" #. 4F6dy #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:152 @@ -9615,7 +9610,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:8 msgctxt "slidedesigndialog|SlideDesignDialog" msgid "Available Master Slides" -msgstr "" +msgstr "الشرائح الرئيسة المتاحة" #. rivGM #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:26 @@ -9657,7 +9652,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:186 msgctxt "slidedesigndialog|label1" msgid "Select a Slide Design" -msgstr "" +msgstr "حدد تصميم شريحة" #. SRRvK #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:212 diff -Nru libreoffice-7.3.4/translations/source/ar/sfx2/messages.po libreoffice-7.3.5/translations/source/ar/sfx2/messages.po --- libreoffice-7.3.4/translations/source/ar/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -2529,145 +2529,145 @@ #: sfx2/source/devtools/DevToolsStrings.hrc:44 msgctxt "STR_METHOD_TYPE_STRUCT" msgid "struct" -msgstr "" +msgstr "تركيب" #. 7DCri #: sfx2/source/devtools/DevToolsStrings.hrc:45 msgctxt "STR_METHOD_TYPE_ENUM" msgid "enum" -msgstr "" +msgstr "عناصر مجموعة" #. aEuJR #: sfx2/source/devtools/DevToolsStrings.hrc:46 msgctxt "STR_METHOD_TYPE_SEQUENCE" msgid "sequence" -msgstr "" +msgstr "تتابُع" #. xXMdD #: sfx2/source/devtools/DevToolsStrings.hrc:48 msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER" msgid "name container" -msgstr "" +msgstr "حاوية اسم" #. QLZbz #: sfx2/source/devtools/DevToolsStrings.hrc:49 msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER" msgid "index container" -msgstr "" +msgstr "حاوية فهرس" #. LLsJf #: sfx2/source/devtools/DevToolsStrings.hrc:50 msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION" msgid "enumeration" -msgstr "" +msgstr "عناصر مجموعة" #. aNuA9 #: sfx2/source/devtools/DevToolsStrings.hrc:52 msgctxt "STR_PARMETER_MODE_IN" msgid "[in]" -msgstr "" +msgstr "[داخل]" #. W3AEx #: sfx2/source/devtools/DevToolsStrings.hrc:53 msgctxt "STR_PARMETER_MODE_OUT" msgid "[out]" -msgstr "" +msgstr "[خارج]" #. ENF6w #: sfx2/source/devtools/DevToolsStrings.hrc:54 msgctxt "STR_PARMETER_MODE_IN_AND_OUT" msgid "[in&out]" -msgstr "" +msgstr "[داخل&خارج]" #. rw6AB #: sfx2/source/devtools/DevToolsStrings.hrc:56 msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE" msgid "attribute" -msgstr "" +msgstr "صفة" #. BwCGg #: sfx2/source/devtools/DevToolsStrings.hrc:57 msgctxt "STR_PROPERTY_ATTRIBUTE_GET" msgid "get" -msgstr "" +msgstr "جِد" #. MissY #: sfx2/source/devtools/DevToolsStrings.hrc:58 msgctxt "STR_PROPERTY_ATTRIBUTE_SET" msgid "set" -msgstr "" +msgstr "مجموعة" #. Nhmiv #: sfx2/source/devtools/DevToolsStrings.hrc:59 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID" msgid "may be void" -msgstr "" +msgstr "يمكن أن يكون فارغًا" #. zECkD #: sfx2/source/devtools/DevToolsStrings.hrc:60 msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY" msgid "read-only" -msgstr "" +msgstr "للقراءة-فقط" #. BtQDx #: sfx2/source/devtools/DevToolsStrings.hrc:61 msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY" msgid "write-only" -msgstr "" +msgstr "للكتابة-فقط" #. dBQEu #: sfx2/source/devtools/DevToolsStrings.hrc:62 msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE" msgid "removeable" -msgstr "" +msgstr "قابل_للإزالة" #. jRo8t #: sfx2/source/devtools/DevToolsStrings.hrc:63 msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND" msgid "bound" -msgstr "" +msgstr "محدود" #. rBqTG #: sfx2/source/devtools/DevToolsStrings.hrc:64 msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED" msgid "constrained" -msgstr "" +msgstr "مقيَّد" #. XLnBt #: sfx2/source/devtools/DevToolsStrings.hrc:65 msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT" msgid "transient" -msgstr "" +msgstr "مؤقت" #. BK7Zk #: sfx2/source/devtools/DevToolsStrings.hrc:66 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS" msgid "may be ambiguous" -msgstr "" +msgstr "يمكن أن يكون غامضًا" #. BDEqD #: sfx2/source/devtools/DevToolsStrings.hrc:67 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT" msgid "may be default" -msgstr "" +msgstr "يمكن أن يكون مبدئيًا" #. TGQhd #: sfx2/source/devtools/DevToolsStrings.hrc:69 msgctxt "STR_PROPERTY_VALUE_SEQUENCE" msgid "" -msgstr "" +msgstr "<تتابُع [%1]>" #. KZ5M4 #: sfx2/source/devtools/DevToolsStrings.hrc:70 msgctxt "STR_PROPERTY_VALUE_OBJECT" msgid "" -msgstr "" +msgstr "<كائن@%1>" #. xKaJy #: sfx2/source/devtools/DevToolsStrings.hrc:71 msgctxt "STR_PROPERTY_VALUE_STRUCT" msgid "" -msgstr "" +msgstr "<تركيب>" #. AxfFu #: sfx2/uiconfig/ui/addtargetdialog.ui:8 @@ -2703,13 +2703,13 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:170 msgctxt "addtargetdialog|type" msgid "Regular expression" -msgstr "" +msgstr "تعبير نظامي" #. wgzA4 #: sfx2/uiconfig/ui/addtargetdialog.ui:171 msgctxt "addtargetdialog|type" msgid "Predefined" -msgstr "" +msgstr "معرّف مسبقا" #. nGjTR #: sfx2/uiconfig/ui/addtargetdialog.ui:186 @@ -2980,7 +2980,7 @@ #: sfx2/uiconfig/ui/commandpopup.ui:36 msgctxt "commandpopup|entry" msgid "Search command" -msgstr "" +msgstr "أمر البحث" #. w2G7M #: sfx2/uiconfig/ui/custominfopage.ui:15 @@ -3058,19 +3058,19 @@ #: sfx2/uiconfig/ui/descriptioninfopage.ui:79 msgctxt "descriptioninfopage|extended_tip|title" msgid "Enter a title for the document." -msgstr "" +msgstr "أدخِل عنوانًا للمستند." #. rvZHi #: sfx2/uiconfig/ui/descriptioninfopage.ui:96 msgctxt "descriptioninfopage|extended_tip|subject" msgid "Enter a subject for the document. You can use a subject to group documents with similar contents." -msgstr "" +msgstr "أدخِل موضوعًا للمستند. يمكنك استخدام موضوع لتجميع المستندات ذات الموضوع المتشابه." #. FoxGh #: sfx2/uiconfig/ui/descriptioninfopage.ui:113 msgctxt "descriptioninfopage|extended_tip|keywords" msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons." -msgstr "" +msgstr "أدخِل الكلمات التي تريد استخدامها لأرشفة محتوى المستند. يجب أن تفصل الكلمات المفتاحية بفوارز. يمكن أن تحتوي الكلمة المفتاحية على محارف فراغ أبيض أو فوارز منقوطة." #. bo2q7 #: sfx2/uiconfig/ui/descriptioninfopage.ui:137 diff -Nru libreoffice-7.3.4/translations/source/ar/starmath/messages.po libreoffice-7.3.5/translations/source/ar/starmath/messages.po --- libreoffice-7.3.4/translations/source/ar/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -578,31 +578,31 @@ #: starmath/inc/strings.hrc:46 msgctxt "RID_XODIVIDEY_HELP" msgid "Circled Slash" -msgstr "" +msgstr "شَرْطة محاطة بدائرة" #. PVroC #: starmath/inc/strings.hrc:47 msgctxt "RID_XODOTY_HELP" msgid "Circled Dot" -msgstr "" +msgstr "نقطة محاطة بدائرة" #. 77wcq #: starmath/inc/strings.hrc:48 msgctxt "RID_XOMINUSY_HELP" msgid "Circled Minus" -msgstr "" +msgstr "طرح محاط بدائرة" #. 9yGK7 #: starmath/inc/strings.hrc:49 msgctxt "RID_XOPLUSY_HELP" msgid "Circled Plus" -msgstr "" +msgstr "جمع محاط بدائرة" #. zjt8o #: starmath/inc/strings.hrc:50 msgctxt "RID_XOTIMESY_HELP" msgid "Tensor Product" -msgstr "" +msgstr "حاصل ضرب متجهيّ" #. S6QRE #: starmath/inc/strings.hrc:51 @@ -680,7 +680,7 @@ #: starmath/inc/strings.hrc:63 msgctxt "RID_XDEFY_HELP" msgid "Is Defined As" -msgstr "" +msgstr "معرَّف كـ" #. sXM7x #: starmath/inc/strings.hrc:64 @@ -734,13 +734,13 @@ #: starmath/inc/strings.hrc:72 msgctxt "RID_XTRANSLY_HELP" msgid "Corresponds To (Left)" -msgstr "" +msgstr "يتوافق مع (يساراً)" #. JuZfc #: starmath/inc/strings.hrc:73 msgctxt "RID_XTRANSRY_HELP" msgid "Corresponds To (Right)" -msgstr "" +msgstr "يتوافق مع (يميناً)" #. FA6hg #: starmath/inc/strings.hrc:74 @@ -1170,7 +1170,7 @@ #: starmath/inc/strings.hrc:143 msgctxt "RID_NOTEXISTS_HELP" msgid "There does not exist" -msgstr "" +msgstr "غير موجود" #. yrnBf #: starmath/inc/strings.hrc:144 @@ -1827,13 +1827,13 @@ #: starmath/inc/strings.hrc:252 msgctxt "RID_SBLANK_HELP" msgid "Small Gap" -msgstr "تباعد صغير" +msgstr "فجوة صغيرة" #. 3GBzt #: starmath/inc/strings.hrc:253 msgctxt "RID_BLANK_HELP" msgid "Blank" -msgstr "فراغ" +msgstr "فارغ" #. Tv29B #: starmath/inc/strings.hrc:254 @@ -1981,16 +1981,15 @@ #. JAGx5 #: starmath/inc/strings.hrc:278 -#, fuzzy msgctxt "RID_XWIDESLASHY_HELP" msgid "Division (wideslash)" -msgstr "قسمة (/)" +msgstr "قسمة (شَرْطة واسعة)" #. YeJSK #: starmath/inc/strings.hrc:279 msgctxt "RID_XWIDEBSLASHY_HELP" msgid "Division (counter wideslash)" -msgstr "" +msgstr "قسمة (شَرْطة واسعة معكوسة)" #. wfbfE #: starmath/inc/strings.hrc:280 @@ -2158,13 +2157,13 @@ #: starmath/inc/strings.hrc:307 msgctxt "RID_XNOTPRECEDESY_HELP" msgid "Does not precede" -msgstr "" +msgstr "لا يسبِق" #. tjoye #: starmath/inc/strings.hrc:308 msgctxt "RID_XNOTSUCCEEDSY_HELP" msgid "Does not succeed" -msgstr "" +msgstr "لا يسبِق" #. eu7va #: starmath/inc/strings.hrc:309 @@ -2182,7 +2181,7 @@ #: starmath/inc/strings.hrc:311 msgctxt "RID_CATEGORY_SET_OPERATIONS" msgid "Set Operations" -msgstr "Set Operations" +msgstr "عمليات المجموعات" #. H7MZE #: starmath/inc/strings.hrc:312 @@ -2734,7 +2733,7 @@ #: starmath/uiconfig/smath/ui/alignmentdialog.ui:122 msgctxt "alignmentdialog|extended_tip|left" msgid "Aligns the selected elements of a formula to the left." -msgstr "" +msgstr "يحاذي العناصر المحددة للصيغة إلى اليسار." #. v8DVF #: starmath/uiconfig/smath/ui/alignmentdialog.ui:134 @@ -2758,7 +2757,7 @@ #: starmath/uiconfig/smath/ui/alignmentdialog.ui:164 msgctxt "alignmentdialog|extended_tip|right" msgid "Aligns the elements of a formula to the right." -msgstr "" +msgstr "يحاذي عناصر الصيغة إلى اليمين." #. LbzHM #: starmath/uiconfig/smath/ui/alignmentdialog.ui:180 @@ -2788,7 +2787,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:31 msgctxt "catalogdialog|extended_tip|edit" msgid "Click here to open the Edit Symbols dialog." -msgstr "" +msgstr "انقر هنا لتفتح حوار تحرير الرموز." #. F86fN #: starmath/uiconfig/smath/ui/catalogdialog.ui:43 @@ -2824,19 +2823,19 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:205 msgctxt "catalogdialog|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "يعرض معاينة للتحديد الحالي." #. DSYgZ #: starmath/uiconfig/smath/ui/catalogdialog.ui:246 msgctxt "catalogdialog|extended_tip|CatalogDialog" msgid "Opens the Symbols dialog, in which you can select a symbol to insert in the formula." -msgstr "" +msgstr "يفتح حوار الرموز الذي يمكنك من خلاله تحديد رمز لإدراجه في الصيغة." #. P3rFo #: starmath/uiconfig/smath/ui/dockingelements.ui:16 msgctxt "dockingelements|ElementCategories|tooltip_text" msgid "Element categories" -msgstr "" +msgstr "فئات العناصر" #. 4SGdP #: starmath/uiconfig/smath/ui/fontdialog.ui:16 @@ -2866,7 +2865,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:211 msgctxt "fontdialog|extended_tip|bold" msgid "Check this box to assign the bold attribute to the font." -msgstr "أشّر هذا المربع لتُسند خاصية الثخين إلى الخط." +msgstr "أشّر هذا المربع لتُسند خاصية ⟪ثخين⟫ إلى الخط." #. mBw2w #: starmath/uiconfig/smath/ui/fontdialog.ui:222 @@ -2878,7 +2877,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:230 msgctxt "fontdialog|extended_tip|italic" msgid "Check this box to assign the italic attribute to the font." -msgstr "" +msgstr "أشّر هذا المربع لتُسند خاصية ⟪مائل⟫ إلى الخط." #. uvvT5 #: starmath/uiconfig/smath/ui/fontdialog.ui:245 @@ -2968,7 +2967,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:321 msgctxt "fontsizedialog|label6" msgid "_Indexes:" -msgstr "الأ_سس:" +msgstr "الفهار_س:" #. 2bdgv #: starmath/uiconfig/smath/ui/fontsizedialog.ui:341 @@ -3545,7 +3544,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:909 msgctxt "spacingdialog|2title" msgid "Indexes" -msgstr "الأسس" +msgstr "الفهارس" #. JZwvA #: starmath/uiconfig/smath/ui/spacingdialog.ui:958 diff -Nru libreoffice-7.3.4/translations/source/ar/svtools/messages.po libreoffice-7.3.5/translations/source/ar/svtools/messages.po --- libreoffice-7.3.4/translations/source/ar/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -560,7 +560,7 @@ #: include/svtools/strings.hrc:130 msgctxt "STR_SVT_COLLATE_ZHUYIN" msgid "Zhuyin" -msgstr "Zhuyin" +msgstr "زهووين" #. onJwb #. phone book sorting algorithm. e.g. German @@ -621,7 +621,7 @@ #: include/svtools/strings.hrc:146 msgctxt "STR_SVT_INDEXENTRY_ZHUYIN" msgid "Zhuyin" -msgstr "Zhuyin" +msgstr "زهووين" #. 5qyCq #: include/svtools/strings.hrc:147 @@ -996,13 +996,13 @@ #: include/svtools/strings.hrc:212 msgctxt "STR_SVT_PRNDLG_PAPER_JAM" msgid "Paper jam" -msgstr "Paper jam" +msgstr "انحشر الورق" #. qG4ZG #: include/svtools/strings.hrc:213 msgctxt "STR_SVT_PRNDLG_PAPER_OUT" msgid "Not enough paper" -msgstr "نفذ الورق" +msgstr "الورق لا يكفي" #. bB9PC #: include/svtools/strings.hrc:214 @@ -5328,7 +5328,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:598 msgctxt "graphicexport|extended_tip|savetransparencycb" msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture." -msgstr "" +msgstr "يحدد فيما لو تُحفَظ خلفية الصورة شفافة. الكائنات فقط ستكون مرئية في صور GIF. استخدم مستبدل الألوان لتضبط اللون الشفاف في الصورة." #. ZPmXf #: svtools/uiconfig/ui/graphicexport.ui:607 diff -Nru libreoffice-7.3.4/translations/source/ar/svx/messages.po libreoffice-7.3.5/translations/source/ar/svx/messages.po --- libreoffice-7.3.4/translations/source/ar/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -501,10 +501,9 @@ #. 3FkK6 #: include/svx/strings.hrc:105 -#, fuzzy msgctxt "STR_ObjNameSingulGRAFBMPLNK" msgid "Linked Image" -msgstr "رابط صورة" +msgstr "صورة مربوطة" #. ydd77 #: include/svx/strings.hrc:106 @@ -1538,7 +1537,7 @@ #: include/svx/strings.hrc:277 msgctxt "STR_ItemValFITTOSIZERESIZEAT" msgid "Use hard attributes" -msgstr "استخدام صفات يدوية" +msgstr "استخدام صفات قوية" #. 73uL2 #: include/svx/strings.hrc:278 @@ -2216,7 +2215,6 @@ #. BGR8n #: include/svx/strings.hrc:392 -#, fuzzy msgctxt "SIP_SA_TEXT_HORZADJUST" msgid "Horizontal text anchor" msgstr "مربط النص الأفقي" @@ -4450,188 +4448,188 @@ #: include/svx/strings.hrc:782 msgctxt "RID_SVXSTR_GRDT70" msgid "Pastel Bouquet" -msgstr "" +msgstr "باقة باستيل" #. 9BV4L #: include/svx/strings.hrc:783 msgctxt "RID_SVXSTR_GRDT71" msgid "Pastel Dream" -msgstr "" +msgstr "حلم باستيل" #. jEVDi #: include/svx/strings.hrc:784 msgctxt "RID_SVXSTR_GRDT72" msgid "Blue Touch" -msgstr "" +msgstr "لمسة زرقاء" #. ZAj48 #: include/svx/strings.hrc:785 msgctxt "RID_SVXSTR_GRDT73" msgid "Blank with Gray" -msgstr "" +msgstr "فارغ مع رمادي" #. CJqu3 #: include/svx/strings.hrc:786 msgctxt "RID_SVXSTR_GRDT74" msgid "Spotted Gray" -msgstr "" +msgstr "رمادي منقط" #. s6Z54 #: include/svx/strings.hrc:787 msgctxt "RID_SVXSTR_GRDT75" msgid "London Mist" -msgstr "" +msgstr "غسق لندن" #. nk99S #: include/svx/strings.hrc:788 msgctxt "RID_SVXSTR_GRDT76" msgid "Teal to Blue" -msgstr "" +msgstr "سيان إلى أزرق" #. ud3Bc #: include/svx/strings.hrc:789 msgctxt "RID_SVXSTR_GRDT77" msgid "Midnight" -msgstr "" +msgstr "منتصف الليل" #. 3DFV9 #: include/svx/strings.hrc:790 msgctxt "RID_SVXSTR_GRDT78" msgid "Deep Ocean" -msgstr "" +msgstr "محيط عميق" #. beAAG #: include/svx/strings.hrc:791 msgctxt "RID_SVXSTR_GRDT79" msgid "Submarine" -msgstr "" +msgstr "بحري" #. LCJCH #: include/svx/strings.hrc:792 msgctxt "RID_SVXSTR_GRDT80" msgid "Green Grass" -msgstr "" +msgstr "عشب أخضر" #. wiGu5 #: include/svx/strings.hrc:793 msgctxt "RID_SVXSTR_GRDT81" msgid "Neon Light" -msgstr "" +msgstr "ضوء النيون" #. EGqXT #: include/svx/strings.hrc:794 msgctxt "RID_SVXSTR_GRDT82" msgid "Sunshine" -msgstr "" +msgstr "شروق الشمس" #. WCs3M #: include/svx/strings.hrc:795 msgctxt "RID_SVXSTR_GRDT83" msgid "Present" -msgstr "" +msgstr "متواجد" #. 99B5Z #: include/svx/strings.hrc:796 msgctxt "RID_SVXSTR_GRDT84" msgid "Mahogany" -msgstr "" +msgstr "ماهوغوني" #. Z8RH9 #. /gradients #: include/svx/strings.hrc:798 msgctxt "RID_SVXSTR_HATCH0" msgid "Black 0 Degrees" -msgstr "" +msgstr "أسود 0 درجة" #. BUCv6 #: include/svx/strings.hrc:799 msgctxt "RID_SVXSTR_HATCH1" msgid "Black 90 Degrees" -msgstr "" +msgstr "أسود 90 درجة" #. gyzNu #: include/svx/strings.hrc:800 msgctxt "RID_SVXSTR_HATCH2" msgid "Black 180 Degrees Crossed" -msgstr "" +msgstr "أسود 180 درجة متقاطع" #. KYmyj #: include/svx/strings.hrc:801 msgctxt "RID_SVXSTR_HATCH3" msgid "Blue 45 Degrees" -msgstr "" +msgstr "أزرق 45 درجة" #. 2qkyC #: include/svx/strings.hrc:802 msgctxt "RID_SVXSTR_HATCH4" msgid "Blue -45 Degrees" -msgstr "" +msgstr "أزرق 45- درجة" #. GFqzJ #: include/svx/strings.hrc:803 msgctxt "RID_SVXSTR_HATCH5" msgid "Blue 45 Degrees Crossed" -msgstr "" +msgstr "أزرق 45 درجة متقاطع" #. wRXH2 #: include/svx/strings.hrc:804 msgctxt "RID_SVXSTR_HATCH6" msgid "Green 30 Degrees" -msgstr "" +msgstr "أخضر 30 درجة" #. JAkb9 #: include/svx/strings.hrc:805 msgctxt "RID_SVXSTR_HATCH7" msgid "Green 60 Degrees" -msgstr "" +msgstr "أخضر 60 درجة" #. DnKyA #: include/svx/strings.hrc:806 msgctxt "RID_SVXSTR_HATCH8" msgid "Green 90 Degrees Triple" -msgstr "" +msgstr "أخضر 90 درجة ثلاثي التكرار" #. oTAUx #: include/svx/strings.hrc:807 msgctxt "RID_SVXSTR_HATCH9" msgid "Red 45 Degrees" -msgstr "" +msgstr "أحمر 45 درجة" #. xcHED #: include/svx/strings.hrc:808 msgctxt "RID_SVXSTR_HATCH10" msgid "Red 90 Degrees Crossed" -msgstr "" +msgstr "أحمر 90 درجة متقاطع" #. UZM2R #: include/svx/strings.hrc:809 msgctxt "RID_SVXSTR_HATCH11" msgid "Red -45 Degrees Triple" -msgstr "" +msgstr "أحمر 45 درجة ثلاثي الخطوط" #. TypfV #: include/svx/strings.hrc:810 msgctxt "RID_SVXSTR_HATCH12" msgid "Yellow 45 Degrees" -msgstr "" +msgstr "أصفر 45 درجة" #. eRFD8 #: include/svx/strings.hrc:811 msgctxt "RID_SVXSTR_HATCH13" msgid "Yellow 45 Degrees Crossed" -msgstr "" +msgstr "أصفر 45 درجة متقاطع" #. JhXx3 #: include/svx/strings.hrc:812 msgctxt "RID_SVXSTR_HATCH14" msgid "Yellow 45 Degrees Triple" -msgstr "" +msgstr "أصفر 45 درجة ثلاثي الخطوط" #. 78jyB #: include/svx/strings.hrc:813 msgctxt "RID_SVXSTR_HATCH15" msgid "Hatching" -msgstr "" +msgstr "نقش" #. FJati #: include/svx/strings.hrc:814 @@ -4643,115 +4641,115 @@ #: include/svx/strings.hrc:815 msgctxt "RID_SVXSTR_BMP1" msgid "Painted White" -msgstr "" +msgstr "مصبوغ بالأبيض" #. iHX2t #: include/svx/strings.hrc:816 msgctxt "RID_SVXSTR_BMP2" msgid "Paper Texture" -msgstr "" +msgstr "ملمس ورق" #. mAyG3 #: include/svx/strings.hrc:817 msgctxt "RID_SVXSTR_BMP3" msgid "Paper Crumpled" -msgstr "" +msgstr "ورق مجعّد" #. i3ARe #: include/svx/strings.hrc:818 msgctxt "RID_SVXSTR_BMP4" msgid "Paper Graph" -msgstr "" +msgstr "رسم ورقي" #. 6izYJ #: include/svx/strings.hrc:819 msgctxt "RID_SVXSTR_BMP5" msgid "Parchment Paper" -msgstr "" +msgstr "ورق رِقاع" #. mQCXG #: include/svx/strings.hrc:820 msgctxt "RID_SVXSTR_BMP6" msgid "Fence" -msgstr "" +msgstr "سياج" #. TriUQ #: include/svx/strings.hrc:821 msgctxt "RID_SVXSTR_BMP7" msgid "Wooden Board" -msgstr "" +msgstr "لوح خشب" #. Hp2Gp #: include/svx/strings.hrc:822 msgctxt "RID_SVXSTR_BMP8" msgid "Maple Leaves" -msgstr "" +msgstr "أوراق القبقب" #. 2B5Wr #: include/svx/strings.hrc:823 msgctxt "RID_SVXSTR_BMP9" msgid "Lawn" -msgstr "" +msgstr "مَرج" #. bAE9x #: include/svx/strings.hrc:824 msgctxt "RID_SVXSTR_BMP10" msgid "Colorful Pebbles" -msgstr "" +msgstr "حصيات ملونة" #. nqBbP #: include/svx/strings.hrc:825 msgctxt "RID_SVXSTR_BMP11" msgid "Coffee Beans" -msgstr "" +msgstr "حبوب بُنّ" #. CQS6y #: include/svx/strings.hrc:826 msgctxt "RID_SVXSTR_BMP12" msgid "Little Clouds" -msgstr "" +msgstr "غيوم صغيرة" #. 2hE6A #: include/svx/strings.hrc:827 msgctxt "RID_SVXSTR_BMP13" msgid "Bathroom Tiles" -msgstr "" +msgstr "رصائف حمّام" #. KZeGr #: include/svx/strings.hrc:828 msgctxt "RID_SVXSTR_BMP14" msgid "Wall of Rock" -msgstr "" +msgstr "جدار صخر" #. wAELs #: include/svx/strings.hrc:829 msgctxt "RID_SVXSTR_BMP15" msgid "Zebra" -msgstr "" +msgstr "جمار وحشي" #. AVGfC #: include/svx/strings.hrc:830 msgctxt "RID_SVXSTR_BMP16" msgid "Color Stripes" -msgstr "" +msgstr "أشرطة ألوان" #. ZoUmP #: include/svx/strings.hrc:831 msgctxt "RID_SVXSTR_BMP17" msgid "Gravel" -msgstr "" +msgstr "حصى" #. 5FiBd #: include/svx/strings.hrc:832 msgctxt "RID_SVXSTR_BMP18" msgid "Parchment Studio" -msgstr "" +msgstr "رِقاع صالة" #. HYfqK #: include/svx/strings.hrc:833 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "" +msgstr "سماء الليل" #. NkYV3 #: include/svx/strings.hrc:834 @@ -4769,31 +4767,31 @@ #: include/svx/strings.hrc:836 msgctxt "RID_SVXSTR_BMP79" msgid "Invoice Paper" -msgstr "" +msgstr "ورق فاتورة" #. x5eiA #: include/svx/strings.hrc:837 msgctxt "RID_SVXSTR_BMP80" msgid "Concrete" -msgstr "" +msgstr "خرسانة" #. RxiMA #: include/svx/strings.hrc:838 msgctxt "RID_SVXSTR_BMP81" msgid "Brick Wall" -msgstr "" +msgstr "جدار طابوق" #. WNEfT #: include/svx/strings.hrc:839 msgctxt "RID_SVXSTR_BMP82" msgid "Stone Wall" -msgstr "" +msgstr "جدار صخري" #. dFqW3 #: include/svx/strings.hrc:840 msgctxt "RID_SVXSTR_BMP83" msgid "Floral" -msgstr "" +msgstr "زَهري" #. FzePv #: include/svx/strings.hrc:841 @@ -5563,7 +5561,7 @@ #: include/svx/strings.hrc:991 msgctxt "RID_SVXSTR_LEND25" msgid "Reversed Arrow" -msgstr "" +msgstr "سهم معكوس" #. yTXvH #. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation @@ -10216,7 +10214,7 @@ #: include/svx/svxitems.hrc:35 msgctxt "RID_ATTR_NAMES" msgid "Tab stops" -msgstr "علامات الجدولة" +msgstr "توقفات مفتاح التبويب" #. hdbAu #: include/svx/svxitems.hrc:36 @@ -10390,7 +10388,7 @@ #: include/svx/svxitems.hrc:64 msgctxt "RID_ATTR_NAMES" msgid "Spacing" -msgstr "تباعد" +msgstr "التباعد" #. 2Zwau #: include/svx/svxitems.hrc:65 @@ -11333,43 +11331,43 @@ #: svx/inc/spacing.hrc:25 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Extra Small (1/16″)" -msgstr "" +msgstr "بالغ الصغر (1\\16بوصة)" #. DB9aM #: svx/inc/spacing.hrc:26 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Small (1/8″)" -msgstr "" +msgstr "صغير (1\\8بوصة)" #. 5PhsT #: svx/inc/spacing.hrc:27 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Small Medium (1/4″)" -msgstr "" +msgstr "صغير متوسط (1\\4بوصة)" #. 3LSyH #: svx/inc/spacing.hrc:28 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Medium (3/8″)" -msgstr "" +msgstr "متوسط (3\\8بوصة)" #. NzRZJ #: svx/inc/spacing.hrc:29 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Medium Large (1/2″)" -msgstr "" +msgstr "متوسط كبير (1\\2بوصة)" #. JBwJZ #: svx/inc/spacing.hrc:30 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Large (3/4″)" -msgstr "" +msgstr "كبير (3\\4بوصة)" #. AwWUq #: svx/inc/spacing.hrc:31 msgctxt "RID_SVXSTRARY_SPACING_INCH" msgid "Extra Large (1″)" -msgstr "" +msgstr "بالغ الكبر (1بوصة)" #. SGERK #: svx/inc/spacing.hrc:38 @@ -11396,7 +11394,7 @@ #: svx/inc/spacing.hrc:44 msgctxt "RID_SVXSTRARY_SPACING_CM" msgid "Small Medium (%1)" -msgstr "" +msgstr "متوسط صغير (%1)" #. zN8GJ #. Medium (0.95 cm) @@ -11436,7 +11434,7 @@ #: svx/inc/spacing.hrc:60 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Extra Small (1/16″)" -msgstr "" +msgstr "بالغ الصغر (1\\16بوصة)" #. BUnaC #: svx/inc/spacing.hrc:61 @@ -11448,31 +11446,31 @@ #: svx/inc/spacing.hrc:62 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Small Medium (1/4″)" -msgstr "" +msgstr "صغير متوسط (1\\4بوصة)" #. tDBA3 #: svx/inc/spacing.hrc:63 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Medium (3/8″)" -msgstr "" +msgstr "متوسط (3\\8بوصة)" #. fDRCW #: svx/inc/spacing.hrc:64 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Medium Large (1/2″)" -msgstr "" +msgstr "متوسط كبير (1\\2بوصة)" #. Ls2Jq #: svx/inc/spacing.hrc:65 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Large (3/4″)" -msgstr "" +msgstr "كبير (3\\4بوصة)" #. DLXcU #: svx/inc/spacing.hrc:66 msgctxt "RID_SVXSTRARY_MARGINS_INCH" msgid "Extra Large (1″)" -msgstr "" +msgstr "بالغ الكبر (1بوصة)" #. phGfi #: svx/inc/spacing.hrc:73 @@ -11499,7 +11497,7 @@ #: svx/inc/spacing.hrc:79 msgctxt "RID_SVXSTRARY_MARGINS_CM" msgid "Small Medium (%1)" -msgstr "متوسط صعير (%1)" +msgstr "متوسط صغير (%1)" #. Z7Wot #. Medium (0.95 cm) @@ -13922,7 +13920,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:345 msgctxt "classificationdialog|extended_tip|signButton" msgid "Opens the Select Certificate dialog to select a digital certificate for paragraph signature." -msgstr "" +msgstr "يفتح حوار تحديد الشهادة لتحديد شهادة رقمية لتوقيع الفقرة." #. xjChP #: svx/uiconfig/ui/classificationdialog.ui:382 @@ -15076,13 +15074,13 @@ #: svx/uiconfig/ui/docking3deffects.ui:1758 msgctxt "docking3deffects|textype|tooltip_text" msgid "Black & White" -msgstr "أسود و أبيض" +msgstr "أسود وأبيض" #. S5ACF #: svx/uiconfig/ui/docking3deffects.ui:1766 msgctxt "docking3deffects|extended_tip|textype" msgid "Converts the texture to black and white." -msgstr "" +msgstr "يحوّل الملمس إلى أسود وأبيض." #. rfdVf #: svx/uiconfig/ui/docking3deffects.ui:1780 @@ -15520,10 +15518,9 @@ #. ebshb #: svx/uiconfig/ui/dockingcolorreplace.ui:197 -#, fuzzy msgctxt "dockingcolorreplace|tol1-atkobject" msgid "Tolerance 1" -msgstr "التحمل" +msgstr "السماح 1" #. 5yRXd #: svx/uiconfig/ui/dockingcolorreplace.ui:198 @@ -15533,10 +15530,9 @@ #. dCyn7 #: svx/uiconfig/ui/dockingcolorreplace.ui:217 -#, fuzzy msgctxt "dockingcolorreplace|tol2-atkobject" msgid "Tolerance 2" -msgstr "التحمل" +msgstr "السماح 2" #. meE29 #: svx/uiconfig/ui/dockingcolorreplace.ui:218 @@ -15546,10 +15542,9 @@ #. bUkAc #: svx/uiconfig/ui/dockingcolorreplace.ui:237 -#, fuzzy msgctxt "dockingcolorreplace|tol3-atkobject" msgid "Tolerance 3" -msgstr "التحمل" +msgstr "السماح 3" #. TFmby #: svx/uiconfig/ui/dockingcolorreplace.ui:238 @@ -15559,10 +15554,9 @@ #. Wp3Q3 #: svx/uiconfig/ui/dockingcolorreplace.ui:257 -#, fuzzy msgctxt "dockingcolorreplace|tol4-atkobject" msgid "Tolerance 4" -msgstr "التحمل" +msgstr "السماح 4" #. PBa9G #: svx/uiconfig/ui/dockingcolorreplace.ui:258 @@ -16033,7 +16027,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 "بسبب خطأ، انهار %PRODUCTNAME. ستُحفَظ الآن كل الحقول التي كنت تعمل عليها. في المرة القادمة التي سيُشغَّل بها %PRODUCTNAME، ستُستعاد ملفاتك تلقائيًا." #. JEJdG #: svx/uiconfig/ui/docrecoverysavedialog.ui:101 @@ -16522,7 +16516,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:723 msgctxt "findreplacedialog|regexp" msgid "Re_gular expressions" -msgstr "ت_عابير نمطية" +msgstr "تعابير ن_ظامية" #. cX5ta #: svx/uiconfig/ui/findreplacedialog.ui:744 @@ -16788,17 +16782,15 @@ #. hrDvA #: svx/uiconfig/ui/floatingareastyle.ui:278 -#, fuzzy msgctxt "floatingareastyle|label2" msgid "Center _X:" -msgstr "وسط _س" +msgstr "مركز _س:" #. 2edDC #: svx/uiconfig/ui/floatingareastyle.ui:292 -#, fuzzy msgctxt "floatingareastyle|label3" msgid "Center _Y:" -msgstr "وسط _Yص" +msgstr "مركز _ص:" #. C7FRC #: svx/uiconfig/ui/floatingareastyle.ui:305 @@ -17063,7 +17055,7 @@ #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:20 msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_VERY_TIGHT" msgid "_Very Tight" -msgstr "" +msgstr "مت_قارب جداً" #. DQsFf #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:35 @@ -17099,7 +17091,7 @@ #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:110 msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_KERN_PAIRS" msgid "_Kern Character Pairs" -msgstr "" +msgstr "_قنّن أزواج المحارف" #. 8SKCU #: svx/uiconfig/ui/fontworkgallerydialog.ui:18 @@ -17604,7 +17596,7 @@ #: svx/uiconfig/ui/imapdialog.ui:346 msgctxt "imapdialog|extended_tip|TBI_POLYDELETE" msgid "Deletes the selected anchor point." -msgstr "" +msgstr "يحذف نقطة المربط المحددة." #. TcAdh #: svx/uiconfig/ui/imapdialog.ui:359 @@ -18232,7 +18224,7 @@ #: svx/uiconfig/ui/paralinespacingcontrol.ui:125 msgctxt "paralinespacingcontrol|line_dist" msgid "1.5 Lines" -msgstr "سطر ونصف" +msgstr "1.5 سطر" #. 5jgLT #: svx/uiconfig/ui/paralinespacingcontrol.ui:126 @@ -18504,10 +18496,9 @@ #. R9bBj #: svx/uiconfig/ui/queryunlinkgraphicsdialog.ui:15 -#, fuzzy msgctxt "queryunlinkgraphicsdialog|QueryUnlinkGraphicsDialog" msgid "Do you want to unlink the graphics in order to edit it?" -msgstr "أتريد فصل ربط الصورة لتتمكن من تحريرها؟" +msgstr "أتريد فصل ربط الرسوميات من أجل تحريرها؟" #. GtoFq #: svx/uiconfig/ui/redlinecontrol.ui:26 @@ -19187,7 +19178,7 @@ #: svx/uiconfig/ui/sidebararea.ui:224 msgctxt "sidebararea|fillattrhb-atkobject" msgid "Hatching/Bitmap" -msgstr "" +msgstr "نقش\\صورة نقطية" #. 6ziwq #: svx/uiconfig/ui/sidebararea.ui:239 @@ -19197,22 +19188,21 @@ #. UE2EH #: svx/uiconfig/ui/sidebararea.ui:264 -#, fuzzy msgctxt "sidebararea|gradangle|tooltip_text" msgid "Select the gradient angle." -msgstr "اختر نمط التدرج." +msgstr "حدد زاوية التدرج." #. fuzvt #: svx/uiconfig/ui/sidebararea.ui:270 msgctxt "sidebararea|gradangle-atkobject" msgid "Gradient angle" -msgstr "" +msgstr "زاوية التدرج" #. FjG3M #: svx/uiconfig/ui/sidebararea.ui:284 msgctxt "sidebararea|fillgrad2|tooltip_text" msgid "Fill gradient to." -msgstr "" +msgstr "املأ التدرج إلى." #. VnsM7 #: svx/uiconfig/ui/sidebararea.ui:302 @@ -19282,10 +19272,9 @@ #. J46j4 #: svx/uiconfig/ui/sidebararea.ui:329 -#, fuzzy msgctxt "sidebararea|transtype-atkobject" msgid "Transparency Type" -msgstr "وضع الشفافية" +msgstr "نوع الشفافية" #. 8hBpk #: svx/uiconfig/ui/sidebararea.ui:348 @@ -19297,7 +19286,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:57 msgctxt "sidebarglow|radius" msgid "Radius:" -msgstr "" +msgstr "نصف القطر:" #. bEFFC #: svx/uiconfig/ui/sidebareffect.ui:84 @@ -19315,37 +19304,37 @@ #: svx/uiconfig/ui/sidebareffect.ui:145 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "التوهج" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:177 msgctxt "sidebarsoftedge|radius" msgid "Radius:" -msgstr "" +msgstr "نصف القطر:" #. KRr2U #: svx/uiconfig/ui/sidebareffect.ui:206 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "حافة لينة" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 msgctxt "sidebarempty|RID_SIDEBAR_EMPTY_PANEL_TEXT" msgid "Properties for the task that you are performing are not available for the current selection." -msgstr "" +msgstr "الخصائص للمهمة التي تؤديها غير متوفرة للتحديد الحالي." #. ED99f #: svx/uiconfig/ui/sidebargallery.ui:108 msgctxt "sidebargallery|RID_SVXSTR_GALLERYPROPS_GALTHEME" msgid "Gallery Theme" -msgstr "" +msgstr "سمة المعرض" #. wqE5z #: 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 @@ -19429,7 +19418,7 @@ #: 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 diff -Nru libreoffice-7.3.4/translations/source/ar/sw/messages.po libreoffice-7.3.5/translations/source/ar/sw/messages.po --- libreoffice-7.3.4/translations/source/ar/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -650,7 +650,7 @@ #: sw/inc/fldref.hrc:28 msgctxt "fldrefpage|liststore1" msgid "Footnotes" -msgstr "الحواشي" +msgstr "الملاحظات الذيلية" #. DyZeU #: sw/inc/fldref.hrc:29 @@ -746,7 +746,7 @@ #: sw/inc/inspectorproperties.hrc:44 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Break Type" -msgstr "" +msgstr "نوع الفاصل" #. kFMbA #: sw/inc/inspectorproperties.hrc:45 @@ -764,7 +764,7 @@ #: sw/inc/inspectorproperties.hrc:47 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Escapement" -msgstr "" +msgstr "المجاوزة التلقائية للمحرف" #. sGjrW #: sw/inc/inspectorproperties.hrc:48 @@ -782,73 +782,73 @@ #: sw/inc/inspectorproperties.hrc:50 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Back Color" -msgstr "" +msgstr "لون خلفية المحرف" #. op3aQ #: sw/inc/inspectorproperties.hrc:51 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Back Transparent" -msgstr "" +msgstr "خلفية المحرف شفافة" #. a6CtM #: sw/inc/inspectorproperties.hrc:52 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Border Distance" -msgstr "" +msgstr "مسافة حدود المحرف" #. CGu8x #: sw/inc/inspectorproperties.hrc:53 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Bottom Border" -msgstr "" +msgstr "الحد الأسفل للمحرف" #. s75ej #: sw/inc/inspectorproperties.hrc:54 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Bottom Border Distance" -msgstr "" +msgstr "مسافة الحد الأسفل للمحرف" #. pZwAM #: sw/inc/inspectorproperties.hrc:55 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Case Map" -msgstr "" +msgstr "خارطة حالة المحرف" #. AxVck #: sw/inc/inspectorproperties.hrc:56 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Color" -msgstr "" +msgstr "لون المحرف" #. FBN8b #: sw/inc/inspectorproperties.hrc:57 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine is On" -msgstr "" +msgstr "تركيب المحرف نشط" #. 5kpZt #: sw/inc/inspectorproperties.hrc:58 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Prefix" -msgstr "" +msgstr "بادئة تركيب المحرف" #. nq7ZN #: sw/inc/inspectorproperties.hrc:59 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Suffix" -msgstr "" +msgstr "لاحقة تركيب المحرف" #. EYEqN #: sw/inc/inspectorproperties.hrc:60 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Contoured" -msgstr "" +msgstr "المحرف ذو مناسيب" #. ZBAH9 #: sw/inc/inspectorproperties.hrc:61 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Crossed Out" -msgstr "" +msgstr "المحرف مشطوب" #. gABwu #: sw/inc/inspectorproperties.hrc:62 @@ -872,13 +872,13 @@ #: sw/inc/inspectorproperties.hrc:65 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Emphasis" -msgstr "تشديد المحارف" +msgstr "تشديد المحرف" #. bXxkA #: sw/inc/inspectorproperties.hrc:66 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement" -msgstr "مجاوزة المحارف" +msgstr "مجاوزة المحرف" #. QikGB #: sw/inc/inspectorproperties.hrc:67 @@ -1016,7 +1016,7 @@ #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "حقيبة توافق المحارف" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 @@ -1082,37 +1082,37 @@ #: sw/inc/inspectorproperties.hrc:100 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture" -msgstr "" +msgstr "جِلسة المحرف" #. yTFRk #: sw/inc/inspectorproperties.hrc:101 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Asian" -msgstr "" +msgstr "جِلسة المحرف آسيوي" #. 8WG25 #: sw/inc/inspectorproperties.hrc:102 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Complex" -msgstr "" +msgstr "جِلسة المحرف مركّب" #. yuK3c #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "ارتفاع خاصية المحرف" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "ارتفاع خاصية المحرف آسيوي" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "ارتفاع خاصية المحرف مركّب" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 @@ -1124,169 +1124,169 @@ #: sw/inc/inspectorproperties.hrc:107 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border" -msgstr "" +msgstr "الحد الأيمن للمحرف" #. jrnRf #: sw/inc/inspectorproperties.hrc:108 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border Distance" -msgstr "" +msgstr "مسافة الحد الأيمن للمحرف" #. UEpDe #: sw/inc/inspectorproperties.hrc:109 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation" -msgstr "" +msgstr "تدوير المحرف" #. jwSQF #: sw/inc/inspectorproperties.hrc:110 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation is Fit To Line" -msgstr "" +msgstr "تدوير المحرف متسق مع السطر" #. cYG7T #: sw/inc/inspectorproperties.hrc:111 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Scale Width" -msgstr "" +msgstr "عُرض قياس المحرف" #. WFuSd #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "قيمة تظليل المحرف" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadow Format" -msgstr "" +msgstr "نَسَق ظلّ المحرف" #. tKjaF #: sw/inc/inspectorproperties.hrc:114 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadowed" -msgstr "" +msgstr "المحرف ذو ظلّ" #. H9st9 #: sw/inc/inspectorproperties.hrc:115 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Strikeout" -msgstr "" +msgstr "المحرف يتوسطه خط" #. zrLCN #: sw/inc/inspectorproperties.hrc:116 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Name" -msgstr "" +msgstr "اسم طراز المحرف" #. PN2pE #: sw/inc/inspectorproperties.hrc:117 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Names" -msgstr "" +msgstr "أسماء طُرُز المحارف" #. rq2fu #: sw/inc/inspectorproperties.hrc:118 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border" -msgstr "" +msgstr "الحد الأعلى للمحرف" #. SNLiC #: sw/inc/inspectorproperties.hrc:119 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border Distance" -msgstr "" +msgstr "مسافة الحد الأعلى للمحرف" #. ZoAde #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "شفافية المحرف" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline" -msgstr "" +msgstr "الخط السفلي للمحرف" #. yGPLz #: sw/inc/inspectorproperties.hrc:122 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Color" -msgstr "" +msgstr "لون الخط السفلي للمحرف" #. HmfPF #: sw/inc/inspectorproperties.hrc:123 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Has Color" -msgstr "" +msgstr "لون للخط السفلي للمحرف" #. QRCs4 #: sw/inc/inspectorproperties.hrc:124 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight" -msgstr "" +msgstr "وزن المحرف" #. EwWk2 #: sw/inc/inspectorproperties.hrc:125 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Asian" -msgstr "" +msgstr "وزن المحرف آسيوي" #. nxNQB #: sw/inc/inspectorproperties.hrc:126 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Complex" -msgstr "" +msgstr "وزن المحرف مركّب" #. D4T2M #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "طور كلمة المحرف" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Continuing Previous Tree" -msgstr "" +msgstr "يواصل الشجرة السابقة" #. 4BCE7 #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "" +msgstr "اسم العرض" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index" -msgstr "" +msgstr "فهرس المستند" #. A3nea #: sw/inc/inspectorproperties.hrc:131 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index Mark" -msgstr "" +msgstr "علامة فهرس المستند" #. XgFaZ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "اسم طراز محارف البدء الكبيرة" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "نَسَق محارف البدء الكبيرة" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "كلمة كاملة تبدأ كبيرة" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 @@ -1298,163 +1298,163 @@ #: sw/inc/inspectorproperties.hrc:136 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Background" -msgstr "" +msgstr "خلفية ملء" #. TvMCc #: sw/inc/inspectorproperties.hrc:137 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap" -msgstr "" +msgstr "صورة ملء نقطية" #. GWWrC #: sw/inc/inspectorproperties.hrc:138 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Logical Size" -msgstr "" +msgstr "الحجم المنطقي لصورة الملء النقطية" #. r2Aif #: sw/inc/inspectorproperties.hrc:139 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Mode" -msgstr "" +msgstr "طور صورة الملء النقطية" #. FZtcW #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "اسم صورة الملء النقطية" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "إزاحة س لصورة الملء النقطية" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "إزاحة ص لصورة الملء النقطية" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "موضع إزاحة س لصورة الملء النقطية" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "موضع إزاحة ص لصورة الملء النقطية" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "نقطة مستطيل صورة الملء النقطية" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "حجم س لصورة الملء النقطية" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "حجم ص لصورة الملء النقطية" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "توسيع صورة الملء النقطية" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "ترصيف صورة الملء النقطية" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "رابط صورة الملء النقطية" #. Fd28G #: 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 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient" -msgstr "" +msgstr "تدرج التعبئة" #. uWcQT #: sw/inc/inspectorproperties.hrc:154 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Name" -msgstr "" +msgstr "اسم تدرج التعبئة" #. uazQm #: sw/inc/inspectorproperties.hrc:155 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Step Count" -msgstr "" +msgstr "عدد خطوات تدرج التعبئة" #. bTjNu #: sw/inc/inspectorproperties.hrc:156 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch" -msgstr "" +msgstr "نسيج التعبئة" #. YCBtr #: sw/inc/inspectorproperties.hrc:157 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch Name" -msgstr "" +msgstr "اسم نسيج التعبئة" #. GbQPt #: sw/inc/inspectorproperties.hrc:158 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Style" -msgstr "" +msgstr "طراز التعبئة" #. tFYmZ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "شفافية التعبئة" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "تدرج شفافية التعبئة" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "اسم تدرج شفافية التعبئة" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Follow Style" -msgstr "" +msgstr "اتبع الطراز" #. 32Vgt #: sw/inc/inspectorproperties.hrc:163 @@ -1472,109 +1472,109 @@ #: sw/inc/inspectorproperties.hrc:165 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Events" -msgstr "" +msgstr "أحداث رابط تشعبي" #. XU6P3 #: sw/inc/inspectorproperties.hrc:166 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Name" -msgstr "" +msgstr "اسم الرابط التشعبي" #. qRBxH #: sw/inc/inspectorproperties.hrc:167 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Target" -msgstr "" +msgstr "هدف الرابط التشعبي" #. BoFLZ #: sw/inc/inspectorproperties.hrc:168 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink URL" -msgstr "" +msgstr "وصلة الرابط التشعبي" #. CbvLt #: sw/inc/inspectorproperties.hrc:169 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Auto Update" -msgstr "" +msgstr "تلقائي التحديث" #. DYXxe #: sw/inc/inspectorproperties.hrc:170 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Physical" -msgstr "" +msgstr "ملموس" #. AdAo8 #: sw/inc/inspectorproperties.hrc:171 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border" -msgstr "" +msgstr "الحد الأيسر" #. tAqBG #: sw/inc/inspectorproperties.hrc:172 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border Distance" -msgstr "" +msgstr "مسافة الحد الأيسر" #. 9cGvH #: sw/inc/inspectorproperties.hrc:173 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Auto Format" -msgstr "" +msgstr "النَسَق التلقائي للقائمة" #. fBeTS #: sw/inc/inspectorproperties.hrc:174 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Id" -msgstr "" +msgstr "معرِّف القائمة" #. b73Zq #: sw/inc/inspectorproperties.hrc:175 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Label String" -msgstr "" +msgstr "عبارة لصيقة القائمة" #. A2KEW #: sw/inc/inspectorproperties.hrc:176 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Metadata Reference" -msgstr "" +msgstr "مرجع البيانات الوصفية" #. n9DQD #: sw/inc/inspectorproperties.hrc:177 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Nested Text Content" -msgstr "" +msgstr "محتوى النص المتداخل" #. AzBDm #: sw/inc/inspectorproperties.hrc:178 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering is Number" -msgstr "" +msgstr "التعداد هو بالأعداد" #. WsqfF #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Level" -msgstr "" +msgstr "مستوى التعداد" #. CEkBY #: sw/inc/inspectorproperties.hrc:180 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "" +msgstr "قواعد التعداد" #. nTMoh #: sw/inc/inspectorproperties.hrc:181 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Start Value" -msgstr "" +msgstr "قيمة بدء التعداد" #. tBVDF #: sw/inc/inspectorproperties.hrc:182 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Style Name" -msgstr "" +msgstr "اسم طراز القائمة" #. zrVDM #: sw/inc/inspectorproperties.hrc:183 @@ -1592,13 +1592,13 @@ #: sw/inc/inspectorproperties.hrc:185 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Desc Name" -msgstr "" +msgstr "الاسم التنازلي للصفحة" #. wLGct #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "" +msgstr "إزاحة رقم الصفحة" #. ryHzy #: sw/inc/inspectorproperties.hrc:187 @@ -1610,103 +1610,103 @@ #: sw/inc/inspectorproperties.hrc:188 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Rsid" -msgstr "" +msgstr "معرّف مراجعة الفقرة" #. xqcEV #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "مساواة الفقرة" #. SyTxG #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "اسم الطراز التلقائي للفقرة" #. WHaym #: sw/inc/inspectorproperties.hrc:191 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Color" -msgstr "" +msgstr "لون خلفية الفقرة" #. uKmB5 #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "" +msgstr "رسوميات خلفية الفقرة" #. f6RGz #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "" +msgstr "مصفى رسوميات خلفية الفقرة" #. Yy5RY #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "" +msgstr "موضع رسوميات خلفية الفقرة" #. MLDdK #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "" +msgstr "رابط رسوميات خلفية الفقرة" #. HkGF3 #: sw/inc/inspectorproperties.hrc:196 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "" +msgstr "خلفية الفقرة شفافة" #. TuYLo #: sw/inc/inspectorproperties.hrc:197 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin" -msgstr "" +msgstr "حاشية أسفل الفقرة" #. r5BAb #: sw/inc/inspectorproperties.hrc:198 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin Relative" -msgstr "" +msgstr "حاشية اسفل الفقرة نسبية" #. rCWLX #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "مستوى تعداد فقرة الفصل" #. GLxXC #: sw/inc/inspectorproperties.hrc:200 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "" +msgstr "الاسم الشرطي لطراز الفقرة" #. AFGoP #: sw/inc/inspectorproperties.hrc:201 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Context Margin" -msgstr "" +msgstr "الحاشية السياقية للفقرة" #. dpsFJ #: sw/inc/inspectorproperties.hrc:202 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "توسيع الكلمة المفردة للفقرة" #. iD2DL #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent" -msgstr "" +msgstr "إزاحة السطر الأول للفقرة" #. wCMnF #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "إزاحة السطر الأول للفقرة نسبي" +msgstr "إزاحة السطر الأول للفقرة نسبية" #. z47wS #: sw/inc/inspectorproperties.hrc:205 @@ -1736,7 +1736,7 @@ #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "حقيبة توافق الفقرة" #. fCGA4 #: sw/inc/inspectorproperties.hrc:210 @@ -1754,37 +1754,37 @@ #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "الفقرة ذات حدود متصلة" #. tBy9h #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "" +msgstr "الفقرة ذات فواعد محظورة" #. yZZSA #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "" +msgstr "الفقرة ذات علامات ترقيم معلّقة" #. dDgrE #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "" +msgstr "الفقرة ذات واصلات" #. mHDWE #: sw/inc/inspectorproperties.hrc:216 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "" +msgstr "الفقرة ذات إعادة تعداد" #. Mnm2C #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Keep Together" -msgstr "" +msgstr "الفقرة ذات إبقاء سوية" #. 8Z5AP #: sw/inc/inspectorproperties.hrc:218 @@ -1808,13 +1808,13 @@ #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "عدّ عدد سطور الفقرة" #. EjnTM #: sw/inc/inspectorproperties.hrc:222 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "قيمة بدء رقم سطر الفقرة" #. eo9RR #: sw/inc/inspectorproperties.hrc:223 @@ -1826,13 +1826,13 @@ #: sw/inc/inspectorproperties.hrc:224 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "يتيمات الفقرة" #. FmuG6 #: sw/inc/inspectorproperties.hrc:225 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Register Mode Active" -msgstr "" +msgstr "طور تسجيل الفقرة نشط" #. Kwp9H #: sw/inc/inspectorproperties.hrc:226 @@ -1868,7 +1868,7 @@ #: sw/inc/inspectorproperties.hrc:231 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "توقفات مفتاح تبويب الفقرة" #. reW9Y #: sw/inc/inspectorproperties.hrc:232 @@ -1880,25 +1880,25 @@ #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "الحاشية العليا للفقرة نسبية" #. pUjFj #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "صفات الفقرة التي عرّفها المستخدم" #. WvA9C #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "المحاذاة الرأسية للفقرة" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "مرمَّلات الفقرة" #. cdw2Q #: sw/inc/inspectorproperties.hrc:237 @@ -1922,7 +1922,7 @@ #: sw/inc/inspectorproperties.hrc:240 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Rsid" -msgstr "" +msgstr "معرّف المراجعة" #. Uoosp #: sw/inc/inspectorproperties.hrc:241 @@ -1958,13 +1958,13 @@ #: sw/inc/inspectorproperties.hrc:246 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Snap to Grid" -msgstr "" +msgstr "اجذب إلى الشبكة" #. oDk6s #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "حقيبة توافق الطُرُز" #. PV65u #: sw/inc/inspectorproperties.hrc:248 @@ -2388,7 +2388,7 @@ #: sw/inc/strings.hrc:47 msgctxt "STR_POOLCHR_JUMPEDIT" msgid "Placeholder" -msgstr "حافظ مكان" +msgstr "عنصر نائب" #. 3iSvv #: sw/inc/strings.hrc:48 @@ -2418,13 +2418,13 @@ #: sw/inc/strings.hrc:52 msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR" msgid "Footnote Anchor" -msgstr "مربط الحاشية" +msgstr "مربط الملاحظات الختامية" #. m7FsY #: sw/inc/strings.hrc:53 msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR" msgid "Endnote Anchor" -msgstr "مربط الحاشية الختامية" +msgstr "مربط الملاحظات الختامية" #. CorJC #: sw/inc/strings.hrc:54 @@ -3612,7 +3612,7 @@ #: sw/inc/strings.hrc:263 msgctxt "SW_STR_READONLY" msgid "read-only" -msgstr "للقراءة فقط" +msgstr "للقراءة-فقط" #. QRU4j #: sw/inc/strings.hrc:264 @@ -3630,7 +3630,7 @@ #: sw/inc/strings.hrc:266 msgctxt "STR_OUTLINENUMBERING_DISABLED" msgid "This option is disabled when chapter numbering is assigned to a paragraph style" -msgstr "" +msgstr "هذا الخيار يكون متاحًا عندما يكون ترقيم الفصول مسنداً إلى طراز الفقرة" #. cW3cP #. Statusbar-titles @@ -4446,7 +4446,7 @@ #: sw/inc/strings.hrc:408 msgctxt "STR_DEFINE_NUMBERFORMAT" msgid "Additional formats..." -msgstr "تنسيقات إضافية..." +msgstr "أنساق إضافية..." #. Cfiyt #: sw/inc/strings.hrc:409 @@ -4486,25 +4486,25 @@ #: sw/inc/strings.hrc:414 msgctxt "STR_HIDDEN_CHANGES" msgid "Track Changes" -msgstr "" +msgstr "تتبع التغييرات" #. DcXvE #: sw/inc/strings.hrc:415 msgctxt "STR_HIDDEN_CHANGES_DETAIL" msgid "Document contains tracked changes and recording is enabled." -msgstr "" +msgstr "المستند يحوي تغييرات متتبَّعة والتسجيل مفعَّل." #. zxuEu #: sw/inc/strings.hrc:416 msgctxt "STR_HIDDEN_CHANGES_DETAIL2" msgid "Recording of changes is enabled." -msgstr "" +msgstr "تسجيل التغييرات مفعَّل." #. BH7Ud #: sw/inc/strings.hrc:417 msgctxt "STR_HIDDEN_CHANGES_DETAIL3" msgid "Document contains tracked changes." -msgstr "" +msgstr "المستند يحوي تغييرات متتبَّعة." #. MEN2d #. Undo @@ -5171,7 +5171,7 @@ #: sw/inc/strings.hrc:528 msgctxt "STR_UNDO_REDLINE_TABLE" msgid "Table changed" -msgstr "تغيير الجدول" +msgstr "الجدول غُيّر" #. DCGPF #: sw/inc/strings.hrc:529 @@ -5183,7 +5183,7 @@ #: sw/inc/strings.hrc:530 msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "تغيير تنسيق الفقرة" +msgstr "تنسيق الفقرة غُيّر" #. nehrq #: sw/inc/strings.hrc:531 @@ -5766,7 +5766,7 @@ #: sw/inc/strings.hrc:632 msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS" msgid "~Text placeholders" -msgstr "حافظات مكان ال~نص" +msgstr "عناصر نائبة لل~نص" #. JBWVd #: sw/inc/strings.hrc:633 @@ -6024,7 +6024,7 @@ #: sw/inc/strings.hrc:678 msgctxt "STR_HYPERLINK" msgid "Insert as Hyperlink" -msgstr "أدرج كارتباط تشعبي" +msgstr "أدرج كرابط تشعبي" #. sdfGe #: sw/inc/strings.hrc:679 @@ -6090,7 +6090,7 @@ #: sw/inc/strings.hrc:689 msgctxt "STR_EDIT_LINK" msgid "Edit link" -msgstr "حرّر الرابط" +msgstr "حرر الرابط" #. xyPWE #: sw/inc/strings.hrc:690 @@ -6150,7 +6150,7 @@ #: sw/inc/strings.hrc:699 msgctxt "STR_UPDATE_LINK" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. TaaJK #: sw/inc/strings.hrc:700 @@ -6343,7 +6343,7 @@ #: sw/inc/strings.hrc:736 msgctxt "STR_TOX_ILL" msgid "Table of Figures" -msgstr "" +msgstr "جدول بالأشكال" #. TspkU #. SubType DocInfo @@ -6410,13 +6410,13 @@ #: sw/inc/strings.hrc:748 msgctxt "STR_PAGEDESC_FIRSTNAME" msgid "First convert $(ARG1)" -msgstr "" +msgstr "أول تحويل $(ARG1)" #. eQtGV #: sw/inc/strings.hrc:749 msgctxt "STR_PAGEDESC_FOLLOWNAME" msgid "Next convert $(ARG1)" -msgstr "" +msgstr "التحويل التالي $(ARG1)" #. aBwxC #: sw/inc/strings.hrc:750 @@ -7122,7 +7122,7 @@ #: sw/inc/strings.hrc:874 msgctxt "ST_DOCUMENTTYPE" msgid "Select Document Type" -msgstr "" +msgstr "حدد نوع المستند" #. QwrpS #: sw/inc/strings.hrc:875 @@ -7343,7 +7343,7 @@ #: sw/inc/strings.hrc:918 msgctxt "STR_JUMPEDITFLD" msgid "Placeholder" -msgstr "حافظ مكان" +msgstr "عنصر نائب" #. zZCg6 #: sw/inc/strings.hrc:919 @@ -8290,25 +8290,25 @@ #: sw/inc/strings.hrc:1116 msgctxt "STR_FLY_AT_PARA" msgid "to paragraph" -msgstr "مرتبط بالفقرة" +msgstr "إلى الفقرة" #. A8nAb #: sw/inc/strings.hrc:1117 msgctxt "STR_FLY_AS_CHAR" msgid "as character" -msgstr "" +msgstr "كمحرف" #. Uszmm #: sw/inc/strings.hrc:1118 msgctxt "STR_FLY_AT_CHAR" msgid "to character" -msgstr "" +msgstr "إلى المحرف" #. hDUSa #: sw/inc/strings.hrc:1119 msgctxt "STR_FLY_AT_PAGE" msgid "to page" -msgstr "مرتبط بالصفحة" +msgstr "إلى الصفحة" #. JMHRz #: sw/inc/strings.hrc:1120 @@ -8348,10 +8348,9 @@ #. MU7hC #: sw/inc/strings.hrc:1126 -#, fuzzy msgctxt "STR_LINE_CENTER" msgid "Line centered" -msgstr "وسط اليسار" +msgstr "موسّط إلى السطر" #. ZvEq7 #: sw/inc/strings.hrc:1127 @@ -8558,7 +8557,7 @@ #: sw/inc/strings.hrc:1160 msgctxt "STR_DRAWMODE_BLACKWHITE" msgid "Black & White" -msgstr "أسود و أبيض" +msgstr "أسود وأبيض" #. tABTr #: sw/inc/strings.hrc:1161 @@ -8991,34 +8990,31 @@ #: sw/inc/strings.hrc:1234 msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN" msgid "Next '%FIELDTYPE' field" -msgstr "" +msgstr "حقل '%FIELDTYPE' التالي" #. hSYa3 #: sw/inc/strings.hrc:1236 -#, fuzzy msgctxt "STR_REDLINE_INSERT" msgid "Inserted" -msgstr "أدرج" +msgstr "أُدرِج" #. LnFkq #: sw/inc/strings.hrc:1237 -#, fuzzy msgctxt "STR_REDLINE_DELETE" msgid "Deleted" -msgstr "احذف" +msgstr "حُذِف" #. cTNEn #: sw/inc/strings.hrc:1238 msgctxt "STR_REDLINE_FORMAT" msgid "Formatted" -msgstr "" +msgstr "نُسِّق" #. YWr7C #: sw/inc/strings.hrc:1239 -#, fuzzy msgctxt "STR_REDLINE_TABLE" msgid "Table changed" -msgstr "تغيير الجدول" +msgstr "الجدول غُيّر" #. 6xVDN #: sw/inc/strings.hrc:1240 @@ -9028,10 +9024,9 @@ #. 32AND #: sw/inc/strings.hrc:1241 -#, fuzzy msgctxt "STR_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "تغيير تنسيق الفقرة" +msgstr "تنسيق الفقرة غُيّر" #. wLDkj #: sw/inc/strings.hrc:1242 @@ -9041,34 +9036,33 @@ #. Eb5Gb #: sw/inc/strings.hrc:1243 -#, fuzzy msgctxt "STR_REDLINE_TABLE_ROW_DELETE" msgid "Row Deleted" -msgstr "تم حذف السطر" +msgstr "حُذف السطر" #. i5ZJt #: sw/inc/strings.hrc:1244 msgctxt "STR_REDLINE_TABLE_CELL_INSERT" msgid "Cell Inserted" -msgstr "" +msgstr "أُدرجَت الخلية" #. 4gE3z #: sw/inc/strings.hrc:1245 msgctxt "STR_REDLINE_TABLE_CELL_DELETE" msgid "Cell Deleted" -msgstr "" +msgstr "حُذِفت الخلية" #. BLEBh #: sw/inc/strings.hrc:1246 msgctxt "STR_REDLINE_INSERT_MOVED" msgid "Moved (insertion)" -msgstr "" +msgstr "نُقلَت (إدراج)" #. o39AA #: sw/inc/strings.hrc:1247 msgctxt "STR_REDLINE_DELETE_MOVED" msgid "Moved (deletion)" -msgstr "" +msgstr "نُقِلَت (حذف)" #. DRCyp #: sw/inc/strings.hrc:1248 @@ -9400,19 +9394,19 @@ #: sw/inc/strings.hrc:1309 msgctxt "STR_TOKEN_ENTRY_NO" msgid "E#" -msgstr "" +msgstr "#مُ" #. 8EgTx #: sw/inc/strings.hrc:1310 msgctxt "STR_TOKEN_ENTRY" msgid "E" -msgstr "" +msgstr "مُ" #. gxt8B #: sw/inc/strings.hrc:1311 msgctxt "STR_TOKEN_TAB_STOP" msgid "T" -msgstr "" +msgstr "ت" #. pGAb4 #: sw/inc/strings.hrc:1312 @@ -9424,25 +9418,25 @@ #: sw/inc/strings.hrc:1313 msgctxt "STR_TOKEN_CHAPTER_INFO" msgid "CI" -msgstr "" +msgstr "م‌م" #. XWaFn #: sw/inc/strings.hrc:1314 msgctxt "STR_TOKEN_LINK_START" msgid "LS" -msgstr "" +msgstr "ب‌ر" #. xp6D6 #: sw/inc/strings.hrc:1315 msgctxt "STR_TOKEN_LINK_END" msgid "LE" -msgstr "" +msgstr "ن‌ر" #. AogDK #: sw/inc/strings.hrc:1316 msgctxt "STR_TOKEN_AUTHORITY" msgid "A" -msgstr "" +msgstr "س" #. 5A4jw #: sw/inc/strings.hrc:1317 @@ -9508,7 +9502,7 @@ #: sw/inc/strings.hrc:1327 msgctxt "STR_STRUCTURE" msgid "Structure text" -msgstr "" +msgstr "نص البِنية" #. kwoGP #: sw/inc/strings.hrc:1328 @@ -9520,7 +9514,7 @@ #: sw/inc/strings.hrc:1329 msgctxt "STR_ADDITIONAL_ACCNAME_STRING2" msgid "Press left or right arrow to choose the structure controls" -msgstr "" +msgstr "اضغط السهم اليمين أو اليسار لتختار متحكمات البِنية" #. 59eRi #: sw/inc/strings.hrc:1330 @@ -9541,19 +9535,19 @@ #: sw/inc/strings.hrc:1336 msgctxt "STR_FRMUI_TOP_BASE" msgid "Base line at ~top" -msgstr "أ~على الخط الأساسي" +msgstr "الخط الأساسي أ~على" #. 5GiEA #: sw/inc/strings.hrc:1337 msgctxt "STR_FRMUI_BOTTOM_BASE" msgid "~Base line at bottom" -msgstr "أ~سفل الخط الأساسي" +msgstr "الخط الأساسي أ~سفل" #. sdyVF #: sw/inc/strings.hrc:1338 msgctxt "STR_FRMUI_CENTER_BASE" msgid "Base line ~centered" -msgstr "و~سط الخط الأساسي" +msgstr "الخط الأساسي مو~سّط" #. NAXyZ #: sw/inc/strings.hrc:1339 @@ -9589,7 +9583,7 @@ #: sw/inc/strings.hrc:1345 msgctxt "STR_TEXTCOLL_HEADER" msgid "(Paragraph Style: " -msgstr "(نمط الفقرة: " +msgstr "(طراز الفقرة: " #. Fsanh #: sw/inc/strings.hrc:1346 @@ -10535,19 +10529,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "الطراز" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "الطُرُز" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -10676,7 +10670,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:309 msgctxt "authenticationsettingsdialog|port_label" msgid "P_ort:" -msgstr "الم_نفذ:" +msgstr "المن_فذ:" #. RjbdV #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:324 @@ -10754,7 +10748,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "يعرض معاينة للتحديد الحالي." #. q7HjF #: sw/uiconfig/swriter/ui/autoformattable.ui:173 @@ -11096,7 +11090,7 @@ #: sw/uiconfig/swriter/ui/bibliofragment.ui:45 msgctxt "bibliofragment|browse" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. ni4Mj #: sw/uiconfig/swriter/ui/bibliofragment.ui:68 @@ -11654,7 +11648,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:68 msgctxt "cardmediumpage|extended_tip|address" msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten." -msgstr "" +msgstr "يُنشئ لصيقة مع عنوان الإرجاع إليك. يُكتَب على النص الموجود حاليًا في مربع اللصيقة." #. HH2Su #: sw/uiconfig/swriter/ui/cardmediumpage.ui:82 @@ -11678,7 +11672,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:166 msgctxt "cardmediumpage|extended_tip|database" msgid "Select the database that you want to use as the data source for your label." -msgstr "" +msgstr "حدد قاعدة البيانات التي تريد استخدامها كمصدر بيانات لجدولك." #. G2Vhh #: sw/uiconfig/swriter/ui/cardmediumpage.ui:193 @@ -11690,7 +11684,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:210 msgctxt "cardmediumpage|extended_tip|table" msgid "Select the database table containing the field(s) that you want to use in your label." -msgstr "" +msgstr "حدد جدول قاعدة البيانات الذي يحوي الحقل (الحقول) الذي تريد استخدامه في لصيقتك." #. LB3gM #: sw/uiconfig/swriter/ui/cardmediumpage.ui:237 @@ -11702,7 +11696,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:254 msgctxt "cardmediumpage|extended_tip|field" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "حدد حقل قاعدة البيانات الذي تريده، ثم انقر السهم إلى يسار هذا المربع لتُدرِج الحقل في مربع نص اللصيقة." #. VfLpb #: sw/uiconfig/swriter/ui/cardmediumpage.ui:280 @@ -11714,7 +11708,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:286 msgctxt "cardmediumpage|extended_tip|insert" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "حدد حقل قاعدة البيانات الذي تريده، ثم انقر السهم إلى يسار هذا المربع لتُدرِج الحقل في مربع نص اللصيقة." #. Y9YPN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:301 @@ -11732,7 +11726,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:356 msgctxt "cardmediumpage|extended_tip|continuous" msgid "Prints labels on continuous paper." -msgstr "" +msgstr "يطبع اللصائق في ورق مستمر." #. iqG7v #: sw/uiconfig/swriter/ui/cardmediumpage.ui:367 @@ -11756,19 +11750,19 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:431 msgctxt "cardmediumpage|extended_tip|brand" msgid "Select the brand of paper that you want to use." -msgstr "" +msgstr "حدد العلامة التجارية للورق التي تريد استخدامها." #. T3wp9 #: sw/uiconfig/swriter/ui/cardmediumpage.ui:448 msgctxt "cardmediumpage|extended_tip|type" msgid "Select the size format that you want to use. The available formats depend on the brand on what you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format." -msgstr "" +msgstr "حدد نَسَق الحجم الذي تريد استخدامه. الأنساق المتاحة تعتمد على العلامة التجارية التي حددتها في قائمة العلامات التجارية. إذا أردت استخدام نسَق لصيقة، حدد [مستخدِم] ثم انقر على تبويب التنسيق لتعرّف النسَق." #. DCFRk #: sw/uiconfig/swriter/ui/cardmediumpage.ui:476 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 "نوع الورق وأبعاد بطاقة العمل تُعرَض أسفل منطقة التنسيق." #. 3zCCN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:501 @@ -11780,7 +11774,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:516 msgctxt "cardmediumpage|extended_tip|CardMediumPage" msgid "Specify the label text and choose the paper size for the label." -msgstr "" +msgstr "حدد نص اللصيقة واختر حجم الورق للصيقة." #. J96RD #: sw/uiconfig/swriter/ui/ccdialog.ui:8 @@ -11804,19 +11798,19 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:126 msgctxt "ccdialog|label4" msgid "Note: Separate email addresses with a semicolon (;)." -msgstr "" +msgstr "ملاحظة: افصل عناوين البريد بفارزة منقوطة (;)." #. GFwkE #: sw/uiconfig/swriter/ui/ccdialog.ui:145 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:163 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:178 @@ -11840,7 +11834,7 @@ #: sw/uiconfig/swriter/ui/characterproperties.ui:35 msgctxt "characterproperties|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار." #. GJNuu #: sw/uiconfig/swriter/ui/characterproperties.ui:159 @@ -11918,13 +11912,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:91 msgctxt "charurlpage|extended_tip|eventpb" msgid "Specify an event that triggers when you click the hyperlink." -msgstr "" +msgstr "حدد الحدث الذي ينطلق عندما تنقر الارتباط التشعبي." #. MhJbE #: sw/uiconfig/swriter/ui/charurlpage.ui:109 msgctxt "charurlpage|extended_tip|urled" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "" +msgstr "أدخِل رابطًا للملف الذي تريد أن يفتح عندما تنقر الارتباط التشعبي." #. YGnoF #: sw/uiconfig/swriter/ui/charurlpage.ui:127 @@ -11936,25 +11930,25 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:145 msgctxt "charurlpage|extended_tip|texted" msgid "Enter the text that you want to display for the hyperlink." -msgstr "" +msgstr "أدخِل النص الذي تريد عَرضه للارتباط التشعبي." #. BmLb8 #: sw/uiconfig/swriter/ui/charurlpage.ui:156 msgctxt "charurlpage|urlpb" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. 4276D #: sw/uiconfig/swriter/ui/charurlpage.ui:163 msgctxt "charurlpage|extended_tip|urlpb" msgid "Locate the file that you want to link to, and then click Open." -msgstr "" +msgstr "حدد موضع الملف الذي تربط إليه، ثم انقر فتح." #. ha6rk #: sw/uiconfig/swriter/ui/charurlpage.ui:186 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 "أدخِل اسم الإطار الذي تريد أن يُفتح فيه الملف المربوط، أو حدد إطاراً مسبق التعريف من القائمة." #. CQvaG #: sw/uiconfig/swriter/ui/charurlpage.ui:216 @@ -11966,13 +11960,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:248 msgctxt "charurlpage|label34" msgid "Visited links:" -msgstr "الوصلات المزارة:" +msgstr "الروابط المزارة:" #. EvDaT #: sw/uiconfig/swriter/ui/charurlpage.ui:262 msgctxt "charurlpage|label10" msgid "Unvisited links:" -msgstr "الوصلات غير المزارة:" +msgstr "الروابط غير المزارة:" #. CqHA6 #: sw/uiconfig/swriter/ui/charurlpage.ui:278 @@ -11996,7 +11990,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:323 msgctxt "charurlpage|extended_tip|CharURLPage" msgid "Assigns a new hyperlink or edits the selected hyperlink." -msgstr "" +msgstr "يعيّن رابطًأ تشعبيًا جديداً أو يحرر الرابط التشعبي المحدد." #. 3mgNE #: sw/uiconfig/swriter/ui/columndialog.ui:8 @@ -12056,13 +12050,13 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:302 msgctxt "columnpage|extended_tip|spacing1mf" msgid "Enter the amount of space that you want to leave between the columns." -msgstr "" +msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين الأعمدة." #. CwCXd #: sw/uiconfig/swriter/ui/columnpage.ui:325 msgctxt "columnpage|extended_tip|spacing2mf" msgid "Enter the amount of space that you want to leave between the columns." -msgstr "" +msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين الأعمدة." #. j8J9w #: sw/uiconfig/swriter/ui/columnpage.ui:353 @@ -12986,7 +12980,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:233 msgctxt "dropcapspage|labelTXT_TEXT" msgid "_Text:" -msgstr "ال_نّصّ:" +msgstr "ال_نص:" #. MdKAS #: sw/uiconfig/swriter/ui/dropcapspage.ui:247 @@ -13028,19 +13022,19 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40 msgctxt "dropdownfielddialog|prev" msgid "_Previous" -msgstr "" +msgstr "ال_سابق" #. 2Wx2B #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53 msgctxt "dropdownfielddialog|next" msgid "_Next" -msgstr "" +msgstr "ال_تالي" #. USGaG #: 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 "يغلق قائمة الإدخال الحالية ويعرض التالية، إن توفرت" #. Ct7px #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84 @@ -13166,7 +13160,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:105 msgctxt "editfielddialog|extended_tip|prev" msgid "Edit field contents." -msgstr "" +msgstr "حرر محتويات الحقل" #. T4GAj #: sw/uiconfig/swriter/ui/editfielddialog.ui:119 @@ -13178,7 +13172,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:125 msgctxt "editfielddialog|extended_tip|next" msgid "Edit field contents." -msgstr "" +msgstr "حرر محتويات الحقل" #. Gg5FB #: sw/uiconfig/swriter/ui/editfielddialog.ui:136 @@ -13196,13 +13190,13 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:146 msgctxt "editfielddialog|extended_tip|edit" msgid "Edit field contents." -msgstr "" +msgstr "حرر محتويات الحقل" #. Lds2R #: sw/uiconfig/swriter/ui/editfielddialog.ui:178 msgctxt "editfielddialog|extended_tip|EditFieldDialog" msgid "Edit field contents." -msgstr "" +msgstr "حرر محتويات الحقل" #. cL2RH #: sw/uiconfig/swriter/ui/editsectiondialog.ui:18 @@ -13268,13 +13262,13 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:309 msgctxt "editsectiondialog|file" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. YSbbe #: sw/uiconfig/swriter/ui/editsectiondialog.ui:316 msgctxt "editsectiondialog|extended_tip|file" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "" +msgstr "حدد موضع الملف الذي تريد إدراجه كرابط ثم انقر ⟪أدرِج⟫." #. KpDNG #: sw/uiconfig/swriter/ui/editsectiondialog.ui:334 @@ -13430,7 +13424,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:90 msgctxt "endnotepage|extended_tip|offsetnf" msgid "Enter the number for the first endnote in the document." -msgstr "" +msgstr "أدخِل رقم أول ملحوظة ختامية في المستند." #. kEbXn #: sw/uiconfig/swriter/ui/endnotepage.ui:107 @@ -13448,7 +13442,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:139 msgctxt "endnotepage|extended_tip|numberinglb" msgid "Enter the number for the first endnote in the document." -msgstr "" +msgstr "أدخِل رقم أول ملحوظة ختامية في المستند." #. C5Z3B #: sw/uiconfig/swriter/ui/endnotepage.ui:154 @@ -13496,7 +13490,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:268 msgctxt "endnotepage|extended_tip|charanchorstylelb" msgid "Select the character style that you want to use for endnote anchors in the text area of your document." -msgstr "" +msgstr "حدد طراز المحرف الذي تريد استخدامه لمرابط الملاحظات الختامية في مساحة نص المستند." #. p8rDB #: sw/uiconfig/swriter/ui/endnotepage.ui:284 @@ -13991,37 +13985,37 @@ msgstr "تبادل قواعد البيانات" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "تعريف" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "قواعد البيانات قيد الاستخدام" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "قواعد البيانات ال_متوفّرة" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14031,31 +14025,31 @@ "استخدم زر الاستعراض لاختيار ملف قاعدة بيانات." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "تبادل قواعد البيانات" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "قاعدة البيانات المرتبطة بالمستند:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "غيّر مصادر البيانات للمستند الحالي." @@ -14178,7 +14172,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:89 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 "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." +msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. A5HF3 #: sw/uiconfig/swriter/ui/flddbpage.ui:100 @@ -14232,7 +14226,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:326 msgctxt "flddbpage|browse" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. FnCPc #: sw/uiconfig/swriter/ui/flddbpage.ui:332 @@ -14286,7 +14280,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:77 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 "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." +msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. 5B97z #: sw/uiconfig/swriter/ui/flddocinfopage.ui:88 @@ -14298,7 +14292,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:144 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 "" +msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج." #. xAe8o #: sw/uiconfig/swriter/ui/flddocinfopage.ui:155 @@ -14310,7 +14304,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:218 msgctxt "flddocinfopage|extended_tip|format" msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا." #. yAc6z #: sw/uiconfig/swriter/ui/flddocinfopage.ui:232 @@ -14328,13 +14322,13 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:256 msgctxt "flddocinfopage|label3" msgid "_Format" -msgstr "النسَق" +msgstr "ال_نسَق" #. BmH6G #: sw/uiconfig/swriter/ui/flddocumentpage.ui:98 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 "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." +msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. pmEvX #: sw/uiconfig/swriter/ui/flddocumentpage.ui:109 @@ -14346,7 +14340,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:165 msgctxt "flddocumentpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "" +msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج." #. hnWF4 #: sw/uiconfig/swriter/ui/flddocumentpage.ui:176 @@ -14358,13 +14352,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:247 msgctxt "flddocumentpage|extended_tip|format" msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا." #. DXvK2 #: sw/uiconfig/swriter/ui/flddocumentpage.ui:305 msgctxt "flddocumentpage|label3" msgid "_Format" -msgstr "النسَق" +msgstr "ال_نسَق" #. k7KnK #: sw/uiconfig/swriter/ui/flddocumentpage.ui:321 @@ -14388,13 +14382,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:366 msgctxt "flddocumentpage|extended_tip|level" msgid "Select the chapter heading level that you want to include in the selected field." -msgstr "" +msgstr "حدد مستوى خط عنوان الفصل الذي تريد تضمينه في الحقل المحدد." #. PjBqv #: sw/uiconfig/swriter/ui/flddocumentpage.ui:384 msgctxt "flddocumentpage|extended_tip|offset" msgid "Enter the offset that you want to apply to a date or time field." -msgstr "" +msgstr "أدخِل التعويض الذي تريد تطبيقه على حقل التأريخ أو الوقت." #. j7fjs #: sw/uiconfig/swriter/ui/flddocumentpage.ui:397 @@ -14406,7 +14400,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:411 msgctxt "flddocumentpage|minutesft" msgid "Offs_et in minutes" -msgstr "التعويض في الد_قاق" +msgstr "الإزاحة بالد_قاق" #. mENqn #: sw/uiconfig/swriter/ui/flddocumentpage.ui:437 @@ -14418,13 +14412,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:455 msgctxt "flddocumentpage|extended_tip|value" msgid "Enter the offset value that you want to apply to a page number field, for example \"+1\"." -msgstr "" +msgstr "أدخِل قيمة الإزاحة التي تريد تطبيقها على حقل رقم صفحة، مثلاً \"+1\"." #. DMTgW #: sw/uiconfig/swriter/ui/fldfuncpage.ui:79 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 "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." +msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. GvXix #: sw/uiconfig/swriter/ui/fldfuncpage.ui:90 @@ -14442,13 +14436,13 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:210 msgctxt "fldfuncpage|extended_tip|format" msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا." #. AYXG3 #: sw/uiconfig/swriter/ui/fldfuncpage.ui:221 msgctxt "fldfuncpage|label2" msgid "_Format" -msgstr "النسَق" +msgstr "ال_نسَق" #. CGoTS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:246 @@ -14460,7 +14454,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:254 msgctxt "fldfuncpage|extended_tip|macro" msgid "Opens the Macro Selector, where you can choose the macro that will run when you click the selected field in the document." -msgstr "" +msgstr "يفتح منتقي الماكروهات، حيث يمكنك منه اختيار الماكرو الذي سيشتغل عندما تنقر الحقل المحدد في المستند." #. cyE7z #: sw/uiconfig/swriter/ui/fldfuncpage.ui:274 @@ -14472,7 +14466,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:293 msgctxt "fldfuncpage|extended_tip|value" msgid "Sets additional function parameters for fields. The type of parameter depends on the field type that you select." -msgstr "" +msgstr "يُعِدّ متغيرات معادلة وسيطة إضافية للحقول. نوع المتغير الوسيط يعتمد على نوع الحقل الذي تحدده." #. Wm4pw #: sw/uiconfig/swriter/ui/fldfuncpage.ui:319 @@ -14484,13 +14478,13 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:359 msgctxt "fldfuncpage|cond1ft" msgid "Then" -msgstr "إذن" +msgstr "إذَن" #. bByDc #: sw/uiconfig/swriter/ui/fldfuncpage.ui:378 msgctxt "fldfuncpage|extended_tip|cond1" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "" +msgstr "أدخِل النص الذي سيُعرَض عندما يتحقق الشرط في مربع ⟪إذَن⟫، والنص الذي سيُعرَض عندما لا يتحقق الشرط في مربع ⟪وإلّا⟫." #. VjhuY #: sw/uiconfig/swriter/ui/fldfuncpage.ui:403 @@ -14502,37 +14496,37 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:422 msgctxt "fldfuncpage|extended_tip|cond2" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "" +msgstr "أدخِل النص الذي سيُعرَض عندما يتحقق الشرط في مربع ⟪إذَن⟫، والنص الذي سيُعرَض عندما لا يتحقق الشرط في مربع ⟪وإلّا⟫." #. ALCUE #: sw/uiconfig/swriter/ui/fldfuncpage.ui:454 msgctxt "fldfuncpage|itemft" msgid "It_em" -msgstr "ب_ند" +msgstr "ع_نصر" #. zERBz #: sw/uiconfig/swriter/ui/fldfuncpage.ui:473 msgctxt "fldfuncpage|extended_tip|item" msgid "Enter a new item." -msgstr "أدخِل اسمًا جديداً." +msgstr "أدخِل عنصراً جديداً." #. F6LmM #: sw/uiconfig/swriter/ui/fldfuncpage.ui:498 msgctxt "fldfuncpage|extended_tip|add" msgid "Adds the Item to the list." -msgstr "" +msgstr "يضيف العنصر إلى القائمة." #. 4KX6H #: sw/uiconfig/swriter/ui/fldfuncpage.ui:517 msgctxt "fldfuncpage|listitemft" msgid "Items on _list" -msgstr "البنود التي في ال_قائمة" +msgstr "العناصر التي في ال_قائمة" #. KegJr #: sw/uiconfig/swriter/ui/fldfuncpage.ui:560 msgctxt "fldfuncpage|extended_tip|listitems" msgid "Lists the items. The topmost item is shown in the document." -msgstr "" +msgstr "يسرد العناصر. العنصر الأعلى يُعرَض في المستند." #. 2GZLS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:588 @@ -14550,7 +14544,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:607 msgctxt "fldfuncpage|extended_tip|up" msgid "Moves the selected item up in the list." -msgstr "" +msgstr "يحرّك العنصر المحدد إلى الأعلى في القائمة." #. 5EA2P #: sw/uiconfig/swriter/ui/fldfuncpage.ui:619 @@ -14562,25 +14556,25 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:626 msgctxt "fldfuncpage|extended_tip|down" msgid "Moves the selected item down in the list." -msgstr "" +msgstr "يحرّك العنصر المحدد إلى الأسفل في القائمة." #. 52SQ6 #: sw/uiconfig/swriter/ui/fldfuncpage.ui:652 msgctxt "fldfuncpage|listnameft" msgid "Na_me" -msgstr "الإس_م" +msgstr "الاس_م" #. QGMno #: sw/uiconfig/swriter/ui/fldfuncpage.ui:671 msgctxt "fldfuncpage|extended_tip|listname" msgid "Enter a unique name for the Input list." -msgstr "" +msgstr "أدخِل اسمًا فريداً لقائمة الإدخال." #. knXRc #: sw/uiconfig/swriter/ui/fldrefpage.ui:102 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 "" +msgstr "يسرد أنواع الحقول المتاحة. لتضيف حقلاً إلى مستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. xiiPJ #: sw/uiconfig/swriter/ui/fldrefpage.ui:113 @@ -14664,7 +14658,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:107 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 "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." +msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج." #. MYGxL #: sw/uiconfig/swriter/ui/fldvarpage.ui:118 @@ -14676,7 +14670,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:189 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 "" +msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج." #. JFbpp #: sw/uiconfig/swriter/ui/fldvarpage.ui:200 @@ -14688,7 +14682,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:286 msgctxt "fldvarpage|extended_tip|numformat" msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا." #. xFAmF #: sw/uiconfig/swriter/ui/fldvarpage.ui:331 @@ -14700,7 +14694,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:349 msgctxt "fldvarpage|label3" msgid "_Format" -msgstr "النسَق" +msgstr "ال_نسَق" #. qPpKb #: sw/uiconfig/swriter/ui/fldvarpage.ui:366 @@ -14946,7 +14940,7 @@ #: sw/uiconfig/swriter/ui/footendnotedialog.ui:135 msgctxt "footendnotedialog|footnotes" msgid "Footnotes" -msgstr "الحواشي" +msgstr "الملاحظات الذيلية" #. CUa3E #: sw/uiconfig/swriter/ui/footendnotedialog.ui:182 @@ -14964,7 +14958,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:68 msgctxt "footnoteareapage|extended_tip|maxheightpage" msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes." -msgstr "" +msgstr "يعدّل تلقائيًا ارتفاع منطقة الملاحظات الذيلية استناداً إلى عدد الملاحظات الذيلية." #. FA6CC #: sw/uiconfig/swriter/ui/footnoteareapage.ui:80 @@ -15036,7 +15030,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:266 msgctxt "footnoteareapage|label9" msgid "_Spacing to footnote contents" -msgstr "المسا_فة حتى محتويات الحاشية" +msgstr "الت_باعد عن محتويات الملاحظات الذيلية" #. uZuEN #: sw/uiconfig/swriter/ui/footnoteareapage.ui:282 @@ -15084,7 +15078,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:373 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 "" +msgstr "أدخِل مقدار الفراغ الذي سيُترَك بين السطر الفاصل وأول سطر من مساحة الملاحظات الذيلية." #. Fnt7q #: sw/uiconfig/swriter/ui/footnoteareapage.ui:393 @@ -15102,7 +15096,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:423 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 "" +msgstr "يحدد خيارات مخطط الملاحظات الذيلية، ومن ضمنها الخط الذي يفصل الملاحظة الذيلية عن المتن الرئيس للمستند." #. PAqDe #: sw/uiconfig/swriter/ui/footnotepage.ui:38 @@ -15150,7 +15144,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:120 msgctxt "footnotepage|extended_tip|pospagecb" msgid "Displays footnotes at the bottom of the page." -msgstr "" +msgstr "يعرض الملاحظات الذيلية أسفل الصفحة." #. 8zwoB #: sw/uiconfig/swriter/ui/footnotepage.ui:131 @@ -15162,13 +15156,13 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:143 msgctxt "footnotepage|extended_tip|posdoccb" msgid "Displays footnotes at the end of the document as endnotes." -msgstr "" +msgstr "يعرض الملاحظات الذيلية في نهاية المستند كملاحظات ختامية." #. BGVTw #: sw/uiconfig/swriter/ui/footnotepage.ui:161 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 "" +msgstr "أدخِل رقم أول ملاحظة ذيلية في المستند. هذا الخيار متاح فقط إذا حددت \"للمستند\" في صندوق التعداد." #. RWgzD #: sw/uiconfig/swriter/ui/footnotepage.ui:175 @@ -15192,7 +15186,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:181 msgctxt "footnotepage|extended_tip|countinglb" msgid "Select the numbering option for the footnotes." -msgstr "" +msgstr "حدد خيارات التعداد للملاحظات الذيلية." #. 7GqFA #: sw/uiconfig/swriter/ui/footnotepage.ui:198 @@ -15270,13 +15264,13 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:419 msgctxt "footnotepage|extended_tip|pagestylelb" msgid "Select the page style that you want to use for footnotes." -msgstr "" +msgstr "حدد طراز الصفحة الذي تريد استخدامه للملاحظات الذيلية." #. ESqR9 #: sw/uiconfig/swriter/ui/footnotepage.ui:435 msgctxt "footnotepage|extended_tip|charanchorstylelb" msgid "Select the character style that you want to use for footnote anchors in the text area of your document." -msgstr "" +msgstr "حدد طراز المحرف الذي تريد استخدامه لمرابط الملاحظات الذيلية في مساحة نص المستند." #. EfWvJ #: sw/uiconfig/swriter/ui/footnotepage.ui:451 @@ -15306,7 +15300,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:504 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "يحدد التنسيق للملاحظات الذيلية." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51 @@ -15324,7 +15318,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:86 msgctxt "footnotesendnotestabpage|extended_tip|ftnoffset" msgid "Enter the number that you want to assign the footnote." -msgstr "" +msgstr "أدخِل الرقم الذي تريد تعيينه إلى الملاحظة الذيلية." #. GVtFs #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:100 @@ -15354,7 +15348,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:179 msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox" msgid "Select the numbering scheme for the footnotes." -msgstr "" +msgstr "حدد مخطط التعداد للملاحظات الذيلية." #. 7RJB2 #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:198 @@ -15378,13 +15372,13 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:245 msgctxt "footnotesendnotestabpage|extended_tip|ftnntattextend" msgid "Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear." -msgstr "" +msgstr "يضيف الملاحظات الذيلية في نهاية المقطع. إذا امتد المقطع على أكثر من صفحة فستُضاف الملاحظات الذيلية إلى أسفل الصفحة التي تظهر فيها مراسي الملاحظات الذيلية." #. J8Vb4 #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:260 msgctxt "footnotesendnotestabpage|label1" msgid "Footnotes" -msgstr "الحواشي" +msgstr "الملاحظات الذيلية" #. AUkwM #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:292 @@ -15414,7 +15408,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:356 msgctxt "footnotesendnotestabpage|extended_tip|endoffset" msgid "Enter the number that you want to assign the endnote." -msgstr "" +msgstr "أدخِل الرقم الذي تريد تعيينه إلى الملاحظة الختامية." #. 3vUD5 #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:370 @@ -15474,7 +15468,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:530 msgctxt "footnotesendnotestabpage|extended_tip|FootnotesEndnotesTabPage" msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats." -msgstr "" +msgstr "يحدد أين تُعرَض الملاحظات الذيلية والختامية إضافة إلى أنساق الترقيم." #. GzLJU #: sw/uiconfig/swriter/ui/formatsectiondialog.ui:8 @@ -15504,7 +15498,7 @@ #: sw/uiconfig/swriter/ui/formatsectiondialog.ui:282 msgctxt "formatsectiondialog|notes" msgid "Footnotes/Endnotes" -msgstr "الحواشي/الحواشي الختامية" +msgstr "الملاحظات الذيلية/الختامية" #. nq24V #: sw/uiconfig/swriter/ui/formattablepage.ui:76 @@ -15660,7 +15654,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:463 msgctxt "formattablepage|extended_tip|center" msgid "Centers the table horizontally on the page." -msgstr "" +msgstr "يوسّط الجدول أفقيًا في الصفحة." #. 52nix #: sw/uiconfig/swriter/ui/formattablepage.ui:474 @@ -16092,7 +16086,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:383 msgctxt "frmtypepage|extended_tip|topage" msgid "Anchors the selection to the current page." -msgstr "" +msgstr "يربط التحديد إلى الصفحة الحالية." #. MMqAf #: sw/uiconfig/swriter/ui/frmtypepage.ui:394 @@ -16104,19 +16098,19 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:403 msgctxt "frmtypepage|extended_tip|topara" msgid "Anchors the selection to the current paragraph." -msgstr "" +msgstr "يربط التحديد إلى الفقرة الحالية." #. yX6rK #: sw/uiconfig/swriter/ui/frmtypepage.ui:414 msgctxt "frmtypepage|tochar" msgid "To cha_racter" -msgstr "بالم_حرف" +msgstr "إلى الم_حرف" #. CKgCn #: sw/uiconfig/swriter/ui/frmtypepage.ui:423 msgctxt "frmtypepage|extended_tip|tochar" msgid "Anchors the selection to a character." -msgstr "" +msgstr "يربط التحديد إلى المحرف الحالي." #. C9xQY #: sw/uiconfig/swriter/ui/frmtypepage.ui:434 @@ -16128,7 +16122,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:443 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 "" +msgstr "يربط التحديد كمحرف. يُغيَّر ارتفاع السطر الحالي ليوافق ارتفاع التحديد." #. TGg8f #: sw/uiconfig/swriter/ui/frmtypepage.ui:454 @@ -16296,13 +16290,13 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:125 msgctxt "frmurlpage|extended_tip|search" msgid "Locate the file that you want the hyperlink to open, and then click Open." -msgstr "" +msgstr "حدد موضع الملف الذي تريد أن يفتحه الارتباط التشعبي، ثم انقر فتح." #. N7zSV #: sw/uiconfig/swriter/ui/frmurlpage.ui:156 msgctxt "frmurlpage|extended_tip|frame" msgid "Specify the name of the frame where you want to open the targeted file." -msgstr "" +msgstr "حدد اسم الإطار الذي تريد أن تفتح فيه الملف المستهدَف." #. ADpZK #: sw/uiconfig/swriter/ui/frmurlpage.ui:172 @@ -16344,13 +16338,13 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:264 msgctxt "frmurlpage|extended_tip|FrameURLPage" msgid "Specify the properties of the hyperlink for the selected graphic, frame or OLE object." -msgstr "" +msgstr "حدد خصائص الارتباط التشعبي للرسم أو الإطار أو كائن OLE." #. kyPYk #: sw/uiconfig/swriter/ui/gotopagedialog.ui:8 msgctxt "gotopagedialog|GotoPageDialog" msgid "Go to Page" -msgstr "انتقال إلى صفحة" +msgstr "اذهب إلى الصفحة" #. wjidN #: sw/uiconfig/swriter/ui/gotopagedialog.ui:74 @@ -16398,13 +16392,13 @@ #: sw/uiconfig/swriter/ui/indentpage.ui:89 msgctxt "indentpage|extended_tip|before" msgid "Specifies the indents before the section, at the left margin." -msgstr "" +msgstr "يحدد الإزاحات قبل المقطع، في الحاشية اليسرى." #. sBtvo #: sw/uiconfig/swriter/ui/indentpage.ui:108 msgctxt "indentpage|extended_tip|after" msgid "Specifies the indents after the section, at the right margin." -msgstr "" +msgstr "يحدد الإزاحات بعد المقطع، في الحاشية اليمنى." #. rrGkM #: sw/uiconfig/swriter/ui/indentpage.ui:123 @@ -16428,7 +16422,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:80 msgctxt "indexentry|extended_tip|delete" msgid "Deletes the selected entry from the index. The entry text in the document is not deleted." -msgstr "" +msgstr "يحذف المُدخَل المحدد من الفهرس. لن يُحذَف نص المُدخَل في المستند." #. UAN8C #: sw/uiconfig/swriter/ui/indexentry.ui:92 @@ -16524,13 +16518,13 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:541 msgctxt "indexentry|extended_tip|previous" msgid "Jumps to the previous index entry of the same type in the document." -msgstr "" +msgstr "يقفز إلى مُدخَل الفهرس السابق من نفس النوع في المستند." #. WsgJC #: sw/uiconfig/swriter/ui/indexentry.ui:561 msgctxt "indexentry|extended_tip|next" msgid "Jumps to the next index entry of the same type in the document." -msgstr "" +msgstr "يقفز إلى مُدخَل الفهرس التالي من نفس النوع في المستند." #. GEB3A #: sw/uiconfig/swriter/ui/indexentry.ui:581 @@ -16584,25 +16578,25 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:8 msgctxt "inputfielddialog|InputFieldDialog" msgid "Review Fields" -msgstr "" +msgstr "راجع الحقول" #. jLu5C #: sw/uiconfig/swriter/ui/inputfielddialog.ui:31 msgctxt "inputfielddialog|next" msgid "_Previous" -msgstr "" +msgstr "ال_سابق" #. iwh9e #: sw/uiconfig/swriter/ui/inputfielddialog.ui:45 msgctxt "inputfielddialog|next" msgid "_Next" -msgstr "" +msgstr "ال_تالي" #. YpSqb #: sw/uiconfig/swriter/ui/inputfielddialog.ui:52 msgctxt "inputfielddialog|extended_tip|next" msgid "Jumps to the next input field in the document." -msgstr "" +msgstr "يقفز إلى حقل الإدخال التالي في المستند." #. m9uWN #: sw/uiconfig/swriter/ui/inputfielddialog.ui:135 @@ -17106,7 +17100,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:392 msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time." -msgstr "" +msgstr "يُدرِج علامة عند موضع المؤشر الحالي. يمكنك بعدها استخدام الملّاح لتقفز بسرعة إلى الموضع المؤشَّر في وقت لاحق." #. ydP4q #: sw/uiconfig/swriter/ui/insertbreak.ui:14 @@ -17124,7 +17118,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:107 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 "" +msgstr "يُنهي السطر الحالي ويحرّك النص الموجود إلى يسار المؤشِّر إلى السطر التالي، دون إنشاء فقرة جديدة." #. gqCuB #: sw/uiconfig/swriter/ui/insertbreak.ui:119 @@ -17136,19 +17130,19 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:128 msgctxt "insertbreak|columnrb-atkobject" msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column." -msgstr "" +msgstr "يُدرِج فاصل أعمدة يدوي (في مخطط الأعمدة المتعددة) ويحرّك النص الموجود إلى يسار المؤشر إلى بداية العمود التالي. يُشار إلى فاصل العمود المُدرَج بإطار غير قابل للطباعة في أعلى العمود الجديد." #. 9GAAp #: sw/uiconfig/swriter/ui/insertbreak.ui:140 msgctxt "insertbreak|pagerb" msgid "Page break" -msgstr "فاصل صفحات" +msgstr "فاصل صفحة" #. G7e9T #: sw/uiconfig/swriter/ui/insertbreak.ui:149 msgctxt "insertbreak|pagerb-atkobject" msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page." -msgstr "" +msgstr "يُدرِج فاصل صفحة يدوي ويحرّك النص الموجود إلى يسار المؤشر إلى بداية الصفحة التالية. يُشار إلى فاصل الصفحة المُدرَج بإطار غير قابل للطباعة في أعلى الصفحة الجديدة." #. qAj3x #: sw/uiconfig/swriter/ui/insertbreak.ui:164 @@ -17166,7 +17160,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:185 msgctxt "insertbreak|stylelb-atkobject" msgid "Select the page style for the page that follows the manual page break." -msgstr "" +msgstr "حدد طراز الصفحة للصفحة التي تلي فاصل الصفحة اليدوي." #. LbNq3 #: sw/uiconfig/swriter/ui/insertbreak.ui:197 @@ -17178,13 +17172,13 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:206 msgctxt "insertbreak|pagenumcb-atkobject" msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break." -msgstr "" +msgstr "يُسنِد رقم الصفحة الذي تحدده إلى الصفحة التي تلي فاصل الصفحة اليدوي. هذا الخيار متاح فقط إذا كنت قد أسندت طراز صفحة مختلف إلى الصفحة التي تلي فاصل الصفحة اليدوي." #. iWGZG #: sw/uiconfig/swriter/ui/insertbreak.ui:229 msgctxt "insertbreak|pagenumsb-atkobject" msgid "Enter the new page number for the page that follows the manual page break." -msgstr "" +msgstr "أدرِج رقم الصفحة الجديدة للصفحة التي تلي فاصل الصفحة اليدوي." #. uAMAX #: sw/uiconfig/swriter/ui/insertbreak.ui:245 @@ -17196,7 +17190,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:269 msgctxt "insertbreak|extended_tip|BreakDialog" msgid "Inserts a manual line break, column break or a page break at the current cursor position." -msgstr "" +msgstr "يُدرِج فاصل أسطر يدوي أو فاصل أعمدة أو فاصل صفحة عند الموضع الحالي للمؤشِّر." #. C4mDz #: sw/uiconfig/swriter/ui/insertcaption.ui:8 @@ -17262,7 +17256,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:234 msgctxt "insertcaption|extended_tip|separator_edit" msgid "Enter optional text characters to appear between the number and the caption text." -msgstr "" +msgstr "أدخِل محارف نص اختيارية لتظهر بين الرقم ونص الواصفة." #. 3QKNx #: sw/uiconfig/swriter/ui/insertcaption.ui:248 @@ -17581,7 +17575,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:169 msgctxt "insertfootnote|extended_tip|automatic" msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert." -msgstr "" +msgstr "يعيّن تلقائيًا أرقامًا متتابعة للملاحظات الذيلية والختامية التي تدرجها." #. sCxPm #: sw/uiconfig/swriter/ui/insertfootnote.ui:181 @@ -17791,7 +17785,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:205 msgctxt "insertsectiondialog|notes" msgid "Footnotes/Endnotes" -msgstr "الحواشي/الحواشي الختامية" +msgstr "الملاحظات الذيلية/الختامية" #. BBLE8 #: sw/uiconfig/swriter/ui/inserttable.ui:37 @@ -17923,7 +17917,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:437 msgctxt "inserttable|extended_tip|previewinstable" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "يعرض معاينة للتحديد الحالي." #. QDdwV #: sw/uiconfig/swriter/ui/inserttable.ui:479 @@ -18326,13 +18320,13 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:275 msgctxt "linenumbering|extended_tip|spacingspin" msgid "Enter the amount of space that you want to leave between the line numbers and the text." -msgstr "" +msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين أرقام السطور والنص." #. mPYiA #: sw/uiconfig/swriter/ui/linenumbering.ui:298 msgctxt "linenumbering|extended_tip|intervalspin" msgid "Enter the counting interval for the line numbers." -msgstr "" +msgstr "أدخِل مسافة التعداد لأرقام السطور." #. YatD8 #: sw/uiconfig/swriter/ui/linenumbering.ui:312 @@ -18732,17 +18726,15 @@ #. f5arv #: sw/uiconfig/swriter/ui/mailmerge.ui:631 -#, fuzzy msgctxt "mailmerge|html" msgid "HTM_L" -msgstr "HTML" +msgstr "مل_ف HTML" #. aqcBi #: sw/uiconfig/swriter/ui/mailmerge.ui:646 -#, fuzzy msgctxt "mailmerge|rtf" msgid "RT_F" -msgstr "RT~F" +msgstr "ملف نص _غني RTF" #. aDQVK #: sw/uiconfig/swriter/ui/mailmerge.ui:661 @@ -18760,7 +18752,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:693 msgctxt "mailmerge|passwd-label" msgid "Password field:" -msgstr "" +msgstr "حقل كلمة المرور:" #. LDBbz #: sw/uiconfig/swriter/ui/mailmerge.ui:753 @@ -18772,7 +18764,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:762 msgctxt "mailmerge|extended_tip|singledocument" msgid "Create one big document containing all data records." -msgstr "" +msgstr "أنشئ مستنداً واحداً كبيراً يحوي كل قيود البيانات." #. mdC58 #: sw/uiconfig/swriter/ui/mailmerge.ui:774 @@ -18784,7 +18776,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:783 msgctxt "mailmerge|extended_tip|individualdocuments" msgid "Create one document for each data record." -msgstr "" +msgstr "أنشئ مستنداً واحداً لكل قيد بيانات." #. bAuH5 #: sw/uiconfig/swriter/ui/mailmerge.ui:801 @@ -18872,10 +18864,9 @@ #. HTAC6 #: sw/uiconfig/swriter/ui/managechangessidebar.ui:179 -#, fuzzy msgctxt "managechangessidebar|writeraction" msgid "Action" -msgstr "الإجراءات" +msgstr "الإجراء" #. dfFhr #: sw/uiconfig/swriter/ui/managechangessidebar.ui:187 @@ -18899,13 +18890,13 @@ #: sw/uiconfig/swriter/ui/managechangessidebar.ui:214 msgctxt "managechangessidebar|writerposition" msgid "Document Position" -msgstr "" +msgstr "موضع المستند" #. qy73g #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:12 msgctxt "readonlymenu|STR_UPDATE" msgid "_Update" -msgstr "" +msgstr "_حدّث" #. MUFyx #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:22 @@ -18917,13 +18908,13 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:30 msgctxt "mastercontextmenu|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "" +msgstr "الفهارس" #. NekK7 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:38 msgctxt "mastercontextmenu|STR_UPDATE_SEL" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. RiguA #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:46 @@ -18953,13 +18944,13 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:84 msgctxt "mastercontextmenu|STR_INDEX" msgid "_Index" -msgstr "" +msgstr "ف_هرس" #. Eg3ib #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:92 msgctxt "mastercontextmenu|STR_FILE" msgid "File" -msgstr "" +msgstr "ملف" #. m6agV #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:100 @@ -20148,109 +20139,109 @@ msgstr "استخدم الم_ستند الحالي" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "أنشئ مستندا _جديدا" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "اب_دأ من مستند موجود" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ابدأ من _قالب" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "اب_دأ من مستند بداية حُفظ حديثا" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ت_صفح..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." -msgstr "" +msgstr "حدد موضع مستند رايتر الذي تريد استخدامه ثم انقر ⟪افتح⟫." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ت_صفح..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "اختر مستند البداية لدمج المراسلات" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -20295,7 +20286,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:201 msgctxt "mmsendmails|errorstatus" msgid "Emails not sent: %1" -msgstr "" +msgstr "رسائل غير مرسلة: %1" #. 2CxFG #: sw/uiconfig/swriter/ui/mmsendmails.ui:248 @@ -20373,13 +20364,13 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96 msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX" msgid "_Remove Index" -msgstr "" +msgstr "أ_زِل الفهرس" #. C4355 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104 msgctxt "navigatorcontextmenu|STR_UPDATE" msgid "_Update" -msgstr "" +msgstr "_حدّث" #. BtCca #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112 @@ -20391,13 +20382,13 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120 msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION" msgid "_Unprotect" -msgstr "" +msgstr "أزِل الح_ماية" #. 6KWWG #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128 msgctxt "navigatorcontextmenu|STR_READONLY_IDX" msgid "Read-_only" -msgstr "" +msgstr "للقراءة _فقط" #. BUQRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136 @@ -20547,13 +20538,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:18 msgctxt "navigatorpanel|hyperlink" msgid "Insert as Hyperlink" -msgstr "أدرج كارتباط تشعبي" +msgstr "أدرج كرابط تشعبي" #. YFPAS #: sw/uiconfig/swriter/ui/navigatorpanel.ui:28 msgctxt "navigatorpanel|link" msgid "Insert as Link" -msgstr "" +msgstr "أدرج كرابط" #. 97BBT #: sw/uiconfig/swriter/ui/navigatorpanel.ui:38 @@ -20565,13 +20556,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:155 msgctxt "navigatorpanel|STR_INDEX" msgid "_Index" -msgstr "" +msgstr "ف_هرس" #. NyHHE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:163 msgctxt "navigatorpanel|STR_FILE" msgid "File" -msgstr "" +msgstr "ملف" #. NZZqB #: sw/uiconfig/swriter/ui/navigatorpanel.ui:171 @@ -20601,13 +20592,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:377 msgctxt "navigatorpanel|spinbutton|tooltip_text" msgid "Go to Page" -msgstr "" +msgstr "اذهب إلى الصفحة" #. avLGA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:384 msgctxt "navigatorpanel|extended_tip|spinbutton" msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward." -msgstr "" +msgstr "أدخِل رقم الصفحة واضغط مفتاح الإدخال. استخدم الأسهم للانتقال إلى الصفحة التالية أمامًا أو خلفًا." #. DgvFE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:416 @@ -20619,7 +20610,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:420 msgctxt "navigatorpanel|extended_tip|root" msgid "Switches between the display of all categories in the Navigator and the selected category." -msgstr "" +msgstr "يناوب بين عَرض كل الأصناف في الملّاح والصنف المحدد." #. Ngjxu #: sw/uiconfig/swriter/ui/navigatorpanel.ui:442 @@ -20631,7 +20622,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:446 msgctxt "navigatorpanel|extended_tip|header" msgid "Moves the cursor to the header, or from the header to the document text area." -msgstr "" +msgstr "ينقل المؤشر إلى الرأس أو من الرأس إلى مساحة نص المستند." #. dfTJU #: sw/uiconfig/swriter/ui/navigatorpanel.ui:458 @@ -20643,7 +20634,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:462 msgctxt "navigatorpanel|extended_tip|footer" msgid "Moves the cursor to the footer, or from the footer to the document text area." -msgstr "" +msgstr "ينقل المؤشر إلى التذييل أو من التذييل إلى مساحة نص المستند." #. EefnL #: sw/uiconfig/swriter/ui/navigatorpanel.ui:474 @@ -20655,7 +20646,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:478 msgctxt "navigatorpanel|extended_tip|anchor" msgid "Jumps between the footnote text and the footnote anchor." -msgstr "" +msgstr "يقفز بين نص الملاحظة الذيلية ومربط الملاحظة الذيلية." #. GbEFs #: sw/uiconfig/swriter/ui/navigatorpanel.ui:490 @@ -20667,31 +20658,31 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:494 msgctxt "navigatorpanel|extended_tip|reminder" msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button." -msgstr "" +msgstr "انقر هنا لتعيّن تذكيراً عند الموضع الحالي للمؤشر. يمكنك إعداد ما لا يزيد عن خمسة تذكيرات. لتقفز إلى تذكير ما، انقر أيقونة الملّاح، في نافذة الملّاح انقر أيقونة التذكير، ثم انقر زر السابق أو التالي." #. PjUEP #: sw/uiconfig/swriter/ui/navigatorpanel.ui:516 msgctxt "navigatorpanel|headings|tooltip_text" msgid "Heading Levels Shown" -msgstr "" +msgstr "مستويات خطوط العناوين الظاهرة" #. dJcmy #: sw/uiconfig/swriter/ui/navigatorpanel.ui:520 msgctxt "navigatorpanel|extended_tip|headings" msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window." -msgstr "" +msgstr "انقر هذه الأيقونة ثم اختر عدد مستويات مخطط خطوط العناوين التي تريد مشاهدتها في نافذة الملّاح." #. sxyvw #: sw/uiconfig/swriter/ui/navigatorpanel.ui:544 msgctxt "navigatorpanel|listbox|tooltip_text" msgid "List Box On/Off" -msgstr "" +msgstr "فتح/غلق مربع القائمة" #. y7YBB #: sw/uiconfig/swriter/ui/navigatorpanel.ui:548 msgctxt "navigatorpanel|extended_tip|listbox" msgid "Shows or hides the Navigator list." -msgstr "" +msgstr "يُظهِر أو يخفي قائمة الملّاح." #. ijAjg #: sw/uiconfig/swriter/ui/navigatorpanel.ui:570 @@ -20704,7 +20695,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 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 "" +msgstr "يزيد مستوى المخطط لخط العنوان المحدد، وخطوط العناوين الواقعة أسفل خط العنوان، بواحد. لتزيد فقط مستوى مخطط خط العنوان المحدد، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة." #. A7vWQ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 @@ -20717,7 +20708,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 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 "" +msgstr "ينقص مستوى المخطط لخط العنوان المحدد، وخطوط العناوين الواقعة أسفل خط العنوان، بواحد. لتنقص فقط مستوى مخطط خط العنوان المحدد، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة." #. SndsZ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -20729,7 +20720,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:606 msgctxt "navigatorpanel|extended_tip|chapterup" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "ينقل خط العنوان المحدد والنص أسفله إلى الأعلى بمقدار موضع عنوان واحد في الملّاح وفي المستند. لتنقل العنوان المحدد وليس النص المرتبط بالعنوان، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة." #. MRuAa #: sw/uiconfig/swriter/ui/navigatorpanel.ui:618 @@ -20741,7 +20732,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:622 msgctxt "navigatorpanel|extended_tip|chapterdown" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "ينقل خط العنوان المحدد والنص أسفله إلى الأسفل بمقدار موضع عنوان واحد في الملّاح وفي المستند. لتنقل العنوان المحدد وليس النص المرتبط بالعنوان، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة." #. mHVom #: sw/uiconfig/swriter/ui/navigatorpanel.ui:644 @@ -20753,7 +20744,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:648 msgctxt "navigatorpanel|extended_tip|dragmode" msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use." -msgstr "يعيّن خيارات السحب والأسقاط لإدراج العناصر من الملاح إلى المستند، مثلا كارتباط تشعبي. انقر هذه الأيقونة ثم اختر الخيار الذي تريد استخدامه." +msgstr "يعيّن خيارات السحب والأسقاط لإدراج العناصر من الملاح إلى المستند، مثلا كرابط تشعبي. انقر هذه الأيقونة ثم اختر الخيار الذي تريد استخدامه." #. 3rY8r #: sw/uiconfig/swriter/ui/navigatorpanel.ui:680 @@ -20795,7 +20786,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:809 msgctxt "navigatorpanel|update|tooltip_text" msgid "Update" -msgstr "تحديث" +msgstr "حدّث" #. FEEGn #: sw/uiconfig/swriter/ui/navigatorpanel.ui:813 @@ -20861,13 +20852,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:997 msgctxt "navigatorpanel|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "" +msgstr "الفهارس" #. fvFtM #: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005 msgctxt "navigatorpanel|STR_UPDATE_SEL" msgid "Links" -msgstr "الوصلات" +msgstr "الروابط" #. Njw6i #: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013 @@ -21958,10 +21949,9 @@ #. ToC4E #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:504 -#, fuzzy msgctxt "notebookbar_groups|rowmenuselect" msgid "Select Rows" -msgstr "تحديد الصفوف" +msgstr "حدد الصفوف" #. DVYQN #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:519 @@ -21973,7 +21963,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:528 msgctxt "notebookbar_groups|rowmenuminimalrow" msgid "Minimal Row Height" -msgstr "" +msgstr "أدنى ارتفاع للصف" #. 75tn7 #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:537 @@ -22013,10 +22003,9 @@ #. geGED #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1571 -#, fuzzy msgctxt "notebookbar_groups|linksb" msgid "Links" -msgstr "ارتباط" +msgstr "الروابط" #. QdJQU #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1615 @@ -22026,7 +22015,6 @@ #. txpNZ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1724 -#, fuzzy msgctxt "notebookbar_groups|insertgrouplabel" msgid "Insert" msgstr "أدرج" @@ -22187,7 +22175,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:57 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Assigned Outline Level" -msgstr "" +msgstr "مستوى المخطط المسنَد" #. y9mKV #: sw/uiconfig/swriter/ui/numparapage.ui:59 @@ -22406,49 +22394,49 @@ msgstr "كائن" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "النوع" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "خيارات" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "التفاف" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "رابط تشعبي" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "الحدود" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "منطقة" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "الشفافية" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ماكرو" @@ -22990,7 +22978,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:118 msgctxt "extended_tip|tabs" msgid "Specifies that tab stops are displayed as small arrows." -msgstr "" +msgstr "يحدد أنّ توقفات مفتاح التبويب معروضة كسهام صغيرة." #. rBxLK #: sw/uiconfig/swriter/ui/optformataidspage.ui:129 @@ -23245,13 +23233,13 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:248 msgctxt "optgeneralpage|tablabel" msgid "_Tab stops:" -msgstr "_علامات الجدولة:" +msgstr "_توقفات مفتاح التبويب:" #. ptDvH #: sw/uiconfig/swriter/ui/optgeneralpage.ui:271 msgctxt "extended_tip|tab" msgid "Specifies the spacing between the individual tab stops." -msgstr "" +msgstr "يحدد التباعد بين التوقفات الفردية لمفتاح التبويب." #. 4c98s #: sw/uiconfig/swriter/ui/optgeneralpage.ui:294 @@ -23866,7 +23854,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:106 msgctxt "outlinenumbering|extended_tip|form" msgid "Click a numbering scheme in the list, and then enter a name for the scheme. The numbers correspond to the outline level that the styles are assigned to." -msgstr "" +msgstr "انقر على خطة تعداد في القائمة ثم أدخِل اسمًا للخطة. الأعداد تتوافق مع مستوى المخطط الذي تُسنَد إليه الطُرُز." #. d2QaP #: sw/uiconfig/swriter/ui/outlinenumbering.ui:113 @@ -24055,7 +24043,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:158 msgctxt "outlinepositionpage|extended_tip|numalignlb" msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position." -msgstr "" +msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"." #. DCbYC #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:171 @@ -24083,7 +24071,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:227 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 "أدخِل عُرض منطقة التعداد. رمز التعداد يمكن أن يكون يساراً أو وسطًا أو يمينًا في هذه المساحة." #. aZwtj #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:238 @@ -24133,7 +24121,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:344 msgctxt "outlinepositionpage|extended_tip|num2alignlb" msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position." -msgstr "" +msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"." #. wnCMF #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:357 @@ -24157,7 +24145,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:412 msgctxt "outlinepositionpage|extended_tip|atmf" msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position." -msgstr "" +msgstr "إذا حددت توقف مفتاح التبويب ليتابع التعداد، فيمكنك إدخال قيمة غير سالبة كموضع لتوقف مفتاح التبويب." #. AtJnm #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:427 @@ -24205,7 +24193,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469 msgctxt "outlinepositionpage|extended_tip|standard" msgid "Resets the indent and the spacing values to the default values." -msgstr "" +msgstr "يصفّر قيم الإزاحة والتباعد إلى القيم المبدئية." #. bLuru #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490 @@ -24643,7 +24631,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:35 msgctxt "paradialog|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار." #. 6xRiy #: sw/uiconfig/swriter/ui/paradialog.ui:159 @@ -24799,13 +24787,13 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:41 msgctxt "picturepage|extended_tip|browse" msgid "Locate the new graphic file that you want to link to, and then click Open." -msgstr "" +msgstr "عيّن موضع ملف الرسومات الجديد الذي تريد أن تربط إليه، ثم انقر فتح." #. dGTfN #: sw/uiconfig/swriter/ui/picturepage.ui:59 msgctxt "picturepage|extended_tip|entry" msgid "Displays the path to the linked graphic file. To change the link, click the Browse button and then locate the file that you want to link to." -msgstr "" +msgstr "يعرض المسار إلى ملف الرسومات المربوط. لتغيّر الرابط، انقر زر التصفح ثم عيّن موضع الملف الذي تريد أن تربط إليه،" #. PqFMY #: sw/uiconfig/swriter/ui/picturepage.ui:72 @@ -24829,7 +24817,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:129 msgctxt "picturepage|extended_tip|vert" msgid "Flips the selected image vertically." -msgstr "" +msgstr "يقلب الصورة المحددة رأسيًا" #. jwAir #: sw/uiconfig/swriter/ui/picturepage.ui:140 @@ -24841,7 +24829,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:148 msgctxt "picturepage|extended_tip|hori" msgid "Flips the selected image horizontally." -msgstr "" +msgstr "يقلب الصورة المحددة أفقيًا" #. F3zpM #: sw/uiconfig/swriter/ui/picturepage.ui:159 @@ -24853,7 +24841,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:169 msgctxt "picturepage|extended_tip|allpages" msgid "Flips the selected image horizontally on all pages." -msgstr "" +msgstr "يقلب الصورة المحددة أفقيًا على كل الصفحات." #. FX5Cn #: sw/uiconfig/swriter/ui/picturepage.ui:180 @@ -24865,7 +24853,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:190 msgctxt "picturepage|extended_tip|leftpages" msgid "Flips the selected image horizontally only on even pages." -msgstr "" +msgstr "يقلب الصورة المحددة على الصفحات الزوجية فقط." #. 6eLFK #: sw/uiconfig/swriter/ui/picturepage.ui:201 @@ -24877,7 +24865,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:211 msgctxt "picturepage|extended_tip|rightpages" msgid "Flips the selected image horizontally only on odd pages." -msgstr "" +msgstr "يقلب الصورة المحددة على الصفحات الفردية فقط." #. M9Lxh #: sw/uiconfig/swriter/ui/picturepage.ui:258 @@ -24925,7 +24913,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:458 msgctxt "picturepage|extended_tip|PicturePage" msgid "Specify the flip and the link options for the selected image." -msgstr "" +msgstr "حدد الإقلاب وخيارات الرابط للصورة المحددة." #. fSmkv #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:22 @@ -24949,19 +24937,19 @@ #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:138 msgctxt "previewzoomdialog|extended_tip|rows" msgid "Defines the number of rows of pages." -msgstr "" +msgstr "يعرّف عدد الصفوف للصفحات." #. 9PMpM #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:157 msgctxt "previewzoomdialog|extended_tip|cols" msgid "Defines the number of pages shown in columns." -msgstr "" +msgstr "يعرّف عدد الصفحات المعروضة في الأعمدة." #. A5j6C #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:185 msgctxt "previewzoomdialog|extended_tip|PreviewZoomDialog" msgid "Defines the number of pages displayed on screen. Click the arrow next to the icon to open a grid to select the number of pages to be displayed as rows and columns in the preview." -msgstr "" +msgstr "يعرّف عدد الصفحات المعروضة على الشاشة. انقر السهم بجانب الأيقونة لتفتح شبكة لتحدد عدد الصفحات التي تُعرَض كصفوف وأعمدة في المعاينة." #. 2UCY8 #: sw/uiconfig/swriter/ui/printeroptions.ui:26 @@ -24985,7 +24973,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:54 msgctxt "printeroptions|extended_tip|pictures" msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed." -msgstr "" +msgstr "يحدد فيما لو ستُطبَع الرسوميات والرسوم أو كائنات OLE في مستندك النصي." #. VRCmc #: sw/uiconfig/swriter/ui/printeroptions.ui:66 @@ -25009,7 +24997,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:94 msgctxt "printeroptions|extended_tip|placeholders" msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." -msgstr "" +msgstr "مكّن هذا الخيار لتطبع عناصر النص النائبة. عطّل هذا الخيار لتترك عناصر النص النائبة فارغة في مخرَجات الطباعة." #. 3y2Gm #: sw/uiconfig/swriter/ui/printeroptions.ui:106 @@ -25033,7 +25021,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:150 msgctxt "printeroptions|extended_tip|writercomments" msgid "Specify where to print comments (if any)." -msgstr "" +msgstr "حدد أين تُطبَع التعليقات (إن وجدت)" #. M6JQf #: sw/uiconfig/swriter/ui/printeroptions.ui:173 @@ -25051,7 +25039,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:204 msgctxt "printeroptions|extended_tip|textinblack" msgid "Specifies whether to always print text in black." -msgstr "" +msgstr "يحدد فيما لو يُطبع النص دومًا بالأسود." #. uFDfh #: sw/uiconfig/swriter/ui/printeroptions.ui:213 @@ -25142,13 +25130,13 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:91 msgctxt "printoptionspage|inblack" msgid "Print text in blac_k" -msgstr "ط_باعة النص باللون الأسود" +msgstr "اط_بع النص باللون الأسود" #. W6rPX #: sw/uiconfig/swriter/ui/printoptionspage.ui:99 msgctxt "extended_tip|inblack" msgid "Specifies whether to always print text in black." -msgstr "" +msgstr "يحدد فيما لو يُطبع النص دومًا بالأسود." #. EhvUm #: sw/uiconfig/swriter/ui/printoptionspage.ui:110 @@ -25166,13 +25154,13 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:129 msgctxt "printoptionspage|textplaceholder" msgid "Text _placeholder" -msgstr "معوض _النص" +msgstr "عناصر النص النا_ئبة" #. QfL9u #: sw/uiconfig/swriter/ui/printoptionspage.ui:137 msgctxt "extended_tip|textplaceholder" msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." -msgstr "" +msgstr "مكّن هذا الخيار لتطبع عناصر النص النائبة. عطّل هذا الخيار لتترك عناصر النص النائبة فارغة في مخرَجات الطباعة." #. nxmuA #: sw/uiconfig/swriter/ui/printoptionspage.ui:152 @@ -25825,10 +25813,9 @@ #. 2SJDt #: sw/uiconfig/swriter/ui/readonlymenu.ui:114 -#, fuzzy msgctxt "readonlymenu|graphicaslink" msgid "As Link" -msgstr "كوصلة" +msgstr "كرابط" #. YikY9 #: sw/uiconfig/swriter/ui/readonlymenu.ui:122 @@ -25847,7 +25834,7 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:156 msgctxt "readonlymenu|backaslink" msgid "As Link" -msgstr "" +msgstr "كرابط" #. CwLB2 #: sw/uiconfig/swriter/ui/readonlymenu.ui:164 @@ -26136,13 +26123,13 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:244 msgctxt "sectionpage|selectfile" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. XjJAi #: sw/uiconfig/swriter/ui/sectionpage.ui:252 msgctxt "sectionpage|extended_tip|selectfile" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "" +msgstr "حدد موضع الملف الذي تريد إدراجه كرابط ثم انقر ⟪أدرِج⟫." #. ZFBBc #: sw/uiconfig/swriter/ui/sectionpage.ui:272 @@ -26973,7 +26960,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:894 msgctxt "sortdialog|extended_tip|SortDialog" msgid "Sorts the selected paragraphs or table rows alphabetically or numerically." -msgstr "يرتّب الفقرات أو صفوف الجداول المحدد أبجدياً أو رقمياً." +msgstr "يرتّب الفقرات أو صفوف الجداول المحددة ألفبائياً أو رقمياً." #. vBG3R #: sw/uiconfig/swriter/ui/spellmenu.ui:12 @@ -27165,10 +27152,10 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:240 msgctxt "statisticsinfopage|update" msgid "Update" -msgstr "تحديث" +msgstr "حدّث" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" @@ -27640,7 +27627,7 @@ #: sw/uiconfig/swriter/ui/templatedialog1.ui:34 msgctxt "templatedialog1|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار." #. UH8Vz #: sw/uiconfig/swriter/ui/templatedialog1.ui:172 @@ -27760,7 +27747,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:412 msgctxt "templatedialog16|position" msgid "Modify indent, spacing, and alignment for list numbers or symbols" -msgstr "" +msgstr "عدّل الإزاحة والتباعد والمحاذاة لأرقام أو رموز القوائم." #. g5NQF #: sw/uiconfig/swriter/ui/templatedialog16.ui:460 @@ -28360,10 +28347,9 @@ #. Yk7XD #: sw/uiconfig/swriter/ui/tocdialog.ui:8 -#, fuzzy msgctxt "tocdialog|TocDialog" msgid "Table of Contents, Index or Bibliography" -msgstr "جدول محتويات، أو ~فهرس، أو ببلوجرافيا..." +msgstr "جدول محتويات، أو فهرس، أو ثَبَت مراجع" #. 49G83 #: sw/uiconfig/swriter/ui/tocdialog.ui:86 @@ -28484,13 +28470,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:342 msgctxt "tocentriespage|tabstopposft" msgid "Tab stop position:" -msgstr "موضع علامة الجدولة:" +msgstr "موضع توقف مفتاح التبويب:" #. F77Kt #: sw/uiconfig/swriter/ui/tocentriespage.ui:364 msgctxt "tocentriespage|extended_tip|tabstoppos" msgid "Enter the distance to leave between the left page margin and the tab stop." -msgstr "" +msgstr "أدخِل المسافة المتروكة بين الحافة اليمنى للصفحة وتوقف مفتاح التبويب." #. okgoX #: sw/uiconfig/swriter/ui/tocentriespage.ui:375 @@ -28503,7 +28489,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:383 msgctxt "tocentriespage|extended_tip|alignright" msgid "Aligns the tab stop to the right page margin." -msgstr "" +msgstr "يحاذي توقف مفتاح التبويب إلى الحاشية اليسرى للصفحة." #. btD2T #: sw/uiconfig/swriter/ui/tocentriespage.ui:396 @@ -28521,13 +28507,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:414 msgctxt "tocentriespage|chapterentry" msgid "Description only" -msgstr "" +msgstr "وصف فقط" #. PMa3U #: sw/uiconfig/swriter/ui/tocentriespage.ui:415 msgctxt "tocentriespage|chapterentry" msgid "Number range and description" -msgstr "" +msgstr "مجال الأرقام والوصف" #. bmtXn #: sw/uiconfig/swriter/ui/tocentriespage.ui:419 @@ -28627,16 +28613,15 @@ #. BQH4d #: sw/uiconfig/swriter/ui/tocentriespage.ui:621 -#, fuzzy msgctxt "tocentriespage|tabstop" msgid "Tab Stop" -msgstr "علامة الجدولة" +msgstr "توقُّف مفتاح التبويب" #. 28QwC #: sw/uiconfig/swriter/ui/tocentriespage.ui:628 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 "" +msgstr "يُدرِج توقف مفتاح التبويب. لتضيف نقاطًا بادئة إلى توقف مفتاح التبويب، حدد محرفًا في مربع ⟪محرف الملء⟫. لتغير موضع توقف مفتاح التبويب، أدخِل قيمة في مربع موضع توقف مفتاح التبويب، أو حدد مربع تأشير المحاذاة إلى اليسار." #. Dbwdu #: sw/uiconfig/swriter/ui/tocentriespage.ui:640 @@ -28691,7 +28676,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:754 msgctxt "tocentriespage|extended_tip|reltostyle" msgid "Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the Styles tab. Otherwise the tab stop is positioned relative to the left text margin." -msgstr "" +msgstr "يضع توقف مفتاح التبويب نسبيًا إلى قيمة \"أزِح من اليسار\" المعرَّفة في طراز الفقرة المحدد في تبويب الطُرُز. خلاف ذلك سيوضَع توقف مفتاح التبويب نسبيًا إلى حاشية النص اليمنى." #. pmiey #: sw/uiconfig/swriter/ui/tocentriespage.ui:766 @@ -28824,7 +28809,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1064 msgctxt "tocentriespage|extended_tip|down1cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." +msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." #. PJr9b #: sw/uiconfig/swriter/ui/tocentriespage.ui:1078 @@ -28860,7 +28845,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1127 msgctxt "tocentriespage|extended_tip|down2cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." +msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." #. VRkA3 #: sw/uiconfig/swriter/ui/tocentriespage.ui:1141 @@ -28872,7 +28857,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1148 msgctxt "tocentriespage|extended_tip|down3cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." +msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل." #. heqgT #: sw/uiconfig/swriter/ui/tocentriespage.ui:1163 @@ -28932,13 +28917,13 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:142 msgctxt "tocindexpage|liststore1" msgid "Alphabetical Index" -msgstr "" +msgstr "فهرس أبجدي" #. uL3jM #: sw/uiconfig/swriter/ui/tocindexpage.ui:143 msgctxt "tocindexpage|liststore1" msgid "Table of Figures" -msgstr "" +msgstr "جدول بالأشكال" #. gijYT #: sw/uiconfig/swriter/ui/tocindexpage.ui:144 @@ -29106,7 +29091,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:454 msgctxt "tocindexpage|extended_tip|fromoles" msgid "Includes OLE objects in the index." -msgstr "" +msgstr "يضمّن كائنات OLE في الفهرس." #. JnBBj #: sw/uiconfig/swriter/ui/tocindexpage.ui:465 @@ -29422,7 +29407,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1198 msgctxt "tocindexpage|extended_tip|keytype" msgid "Select numeric when you want to sort numbers by value, such as in 1, 2, 12. Select alphanumeric, when you want to sort the numbers by character code, such as in 1, 12, 2." -msgstr "" +msgstr "حدد الرقمي عندما تريد ترتيب الأعداد بحسب القيمة، كما في 1، 2، 12. حدد ألفبائي رقمي عندما تريد ترتيب الأعداد بحسب رمز المحرف، كما في 1، 12، 2." #. Ec4gF #: sw/uiconfig/swriter/ui/tocindexpage.ui:1219 @@ -29602,7 +29587,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:290 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "" +msgstr "حالات ال_حذف المتتبَّعة في الهامش" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:298 @@ -29614,13 +29599,13 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:309 msgctxt "viewoptionspage|changestooltip" msgid "_Tooltips on tracked changes" -msgstr "" +msgstr "_تلميحات عن التغييرات المتتبَّعة" #. 8no6x #: sw/uiconfig/swriter/ui/viewoptionspage.ui:327 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "" +msgstr "اعرِض التغييرات المتتبَّعة" #. YD6TK #: sw/uiconfig/swriter/ui/viewoptionspage.ui:369 diff -Nru libreoffice-7.3.4/translations/source/ar/swext/mediawiki/help.po libreoffice-7.3.5/translations/source/ar/swext/mediawiki/help.po --- libreoffice-7.3.4/translations/source/ar/swext/mediawiki/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/swext/mediawiki/help.po 2022-07-15 19:12:51.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: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022451.000000\n" #. 7EFBE @@ -586,13 +586,12 @@ #. G3qA6 #: wikiformats.xhp -#, fuzzy msgctxt "" "wikiformats.xhp\n" "par_id3541673\n" "help.text" 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 "يتعذر تصدير الصور بواسطة عملية تحويل تؤدي للحصول على ملف مفرد من نص الويكي. ومع ذلك، في حالة تحميل الصورة بالفعل إلى مجال موقع الويكي المقصود (على سبيل المثالWikiMedia Commons) فسينتج عن عملية التحويل علامة صورة صالحة تشتمل على الصورة. يتم دعم واصفات الصور أيضًا." +msgstr "يتعذر تصدير الصور بعملية تحويل تُنتج ملفًا واحداً من نص الويكي. ومع ذلك، في حالة تحميل الصورة بالفعل إلى نطاق موقع الويكي المقصود (على سبيل المثال WikiMedia Commons) فسينتج عن عملية التحويل وسم صورة صالحًا يشتمل على الصورة. واصفات الصور مدعومة أيضًا." #. nGuGG #: wikiformats.xhp diff -Nru libreoffice-7.3.4/translations/source/ar/sysui/desktop/share.po libreoffice-7.3.5/translations/source/ar/sysui/desktop/share.po --- libreoffice-7.3.4/translations/source/ar/sysui/desktop/share.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/sysui/desktop/share.po 2022-07-15 19:12:51.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: 2022-03-02 22:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1511612289.000000\n" #. a9uCy @@ -428,7 +428,7 @@ "writer\n" "LngText.text" msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer." -msgstr "أنشئ النصوص والصور وحررها في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام رايتر." +msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام رايتر." #. hnW8F #: launcher_comment.ulf @@ -446,7 +446,7 @@ "draw\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using Draw." -msgstr "إنشاء الرسوم وتحريرها، ورسوم الدفق البيانية، والشعارات باستخدام درو." +msgstr "أنشئ وحرر الرسوم، والمخططات الانسيابية والشعارات باستخدام درو." #. US56A #: launcher_comment.ulf diff -Nru libreoffice-7.3.4/translations/source/ar/vcl/messages.po libreoffice-7.3.5/translations/source/ar/vcl/messages.po --- libreoffice-7.3.4/translations/source/ar/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -154,7 +154,7 @@ #: vcl/inc/print.hrc:55 msgctxt "RID_STR_PAPERNAMES" msgid "E" -msgstr "E" +msgstr "مُ" #. 9quGe #: vcl/inc/print.hrc:56 @@ -634,7 +634,7 @@ #: vcl/inc/strings.hrc:25 msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE" msgid "[No selection possible]" -msgstr "" +msgstr "[لا يمكن التحديد]" #. QbQEb #: vcl/inc/strings.hrc:27 @@ -1967,7 +1967,7 @@ #: vcl/uiconfig/ui/printdialog.ui:160 msgctxt "printdialog|printpreview" msgid "Print preview" -msgstr "" +msgstr "معاينة الطباعة" #. 67YPm #: vcl/uiconfig/ui/printdialog.ui:166 @@ -1985,7 +1985,7 @@ #: vcl/uiconfig/ui/printdialog.ui:205 msgctxt "printdialog|extended_tip|previewbox" msgid "Turn on or off display of the print preview." -msgstr "" +msgstr "شغّل أو عطّل عَرض معاينة الطباعة." #. SbgFv #: vcl/uiconfig/ui/printdialog.ui:235 @@ -2243,7 +2243,7 @@ #: vcl/uiconfig/ui/printdialog.ui:815 msgctxt "printdialog|extended_tip|collate" msgid "Preserves the page order of the original document." -msgstr "" +msgstr "يحافظ على ترتيب الصفحات للمستند الأصلي." #. GZrpG #: vcl/uiconfig/ui/printdialog.ui:845 @@ -2303,7 +2303,7 @@ #: vcl/uiconfig/ui/printdialog.ui:967 msgctxt "printdialog|extended_tip|pageorientationbox" msgid "Select the orientation of the paper." -msgstr "" +msgstr "حدد اتجاه الورق." #. DSFv2 #: vcl/uiconfig/ui/printdialog.ui:983 @@ -2315,178 +2315,178 @@ #: vcl/uiconfig/ui/printdialog.ui:1018 msgctxt "printdialog|pagespersheetbtn" msgid "Pages per sheet:" -msgstr "" +msgstr "الصفحات في الورقة:" #. ok8Lw #: vcl/uiconfig/ui/printdialog.ui:1032 msgctxt "printdialog|extended_tip|pagespersheetbtn" msgid "Print multiple pages per sheet of paper." -msgstr "" +msgstr "اطبع صفحات متعددة لكل قطعة ورق." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "مخصص" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." -msgstr "" +msgstr "حدد كم صفحة تُطبَع لكل قطعة ورق." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "الصفحات:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "حدد عدد الصفوف." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "حسب" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "حدد عدد الأعمدة." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "الحافة:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." -msgstr "" +msgstr "حدد الحافة بين الصفحات المنفردة في كل قطعة ورق." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "بين الصفحات" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "المسافة:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "إلى حد الورقة" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "الترتيب:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" -msgstr "" +msgstr "من اليسار إلى اليمين ثم لأسفل" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" -msgstr "" +msgstr "من أعلى لأسفل ثم إلى اليمين" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "أعلى إلى أسفل، ثم يساراً" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" -msgstr "" +msgstr "من اليمين إلى اليسار ثم لأسفل" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." -msgstr "" +msgstr "حدد الترتيب الذي ستُطبَع به الصفحات." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ارسم حدًا حول كل صفحة" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." -msgstr "" +msgstr "أشّر لترسم حدًا حول كل صفحة." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "منشور" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "عامّ" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ar/wizards/messages.po libreoffice-7.3.5/translations/source/ar/wizards/messages.po --- libreoffice-7.3.4/translations/source/ar/wizards/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/wizards/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -614,7 +614,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:138 msgctxt "RID_LETTERWIZARDROADMAP_START_6" msgid "Name and Location" -msgstr "الإسم و المكان" +msgstr "الاسم و الموضع" #. AZSy8 #: wizards/com/sun/star/wizards/common/strings.hrc:141 @@ -1046,7 +1046,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:220 msgctxt "RID_FAXWIZARDROADMAP_START_5" msgid "Name and Location" -msgstr "الاسم و المكان" +msgstr "الاسم و الموضع" #. N6985 #: wizards/com/sun/star/wizards/common/strings.hrc:223 @@ -1160,13 +1160,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:241 msgctxt "RID_AGENDAWIZARDDIALOG_START_19" msgid "Create an ~agenda from this template" -msgstr "إنشاء ~مفكرة من هذا القالب" +msgstr "إنشاء ~جدول أعمال من هذا القالب" #. TUJyC #: wizards/com/sun/star/wizards/common/strings.hrc:242 msgctxt "RID_AGENDAWIZARDDIALOG_START_20" msgid "To create a new agenda out of the template, go to the location where you saved the template and double-click the file." -msgstr "لإنشاء مفكرة جديدة من القالب، اذهب إلى المكان الذي حفظت فيه القالب و اضغط الملف ضغطًا مزدوجًا." +msgstr "لإنشاء جدول أعمال جديد من القالب، اذهب إلى الموضع الذي حفظت فيه القالب و انقر الملف نقراً مزدوجًا." #. GbdcR #: wizards/com/sun/star/wizards/common/strings.hrc:243 @@ -1274,7 +1274,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:260 msgctxt "RID_AGENDAWIZARDDIALOG_START_39" msgid "This wizard creates an agenda template which enables you to create multiple agendas with the same layout and settings." -msgstr "يُنشئ هذا المرشد قالب جدوال أعمال يتيح لك إنشاء جداول أعمال بنفس التخطيط و الإعدادات." +msgstr "يُنشئ هذا المرشد قالب جدول أعمال يمكّنك من إنشاء جداول أعمال متعددة بنفس التخطيط والإعدادات." #. CS6WP #: wizards/com/sun/star/wizards/common/strings.hrc:261 @@ -1286,19 +1286,19 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:262 msgctxt "RID_AGENDAWIZARDDIALOG_START_41" msgid "myAgendaTemplate.stw" -msgstr "myAgendaTemplate.stw" +msgstr "قالب‌جدول‌أعمالي.stw" #. YpeTB #: wizards/com/sun/star/wizards/common/strings.hrc:263 msgctxt "RID_AGENDAWIZARDDIALOG_START_42" msgid "My Agenda Template" -msgstr "قالب مفكرتي" +msgstr "قالب جدول أعمالي" #. ZK3nA #: wizards/com/sun/star/wizards/common/strings.hrc:264 msgctxt "RID_AGENDAWIZARDDIALOG_START_43" msgid "An error occurred while saving the agenda template." -msgstr "حصل خطأ أثناء حفظ قالب جدول المواعيد." +msgstr "حصل خطأ أثناء حفظ قالب جدول الأعمال." #. kFgjn #: wizards/com/sun/star/wizards/common/strings.hrc:265 @@ -1364,7 +1364,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:275 msgctxt "RID_AGENDAWIZARDDIALOG_START_55" msgid "Name and Location" -msgstr "الاسم و المكان" +msgstr "الاسم و الموضع" #. VNixB #: wizards/com/sun/star/wizards/common/strings.hrc:276 @@ -1454,13 +1454,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:290 msgctxt "RID_AGENDAWIZARDDIALOG_START_70" msgid "Move up" -msgstr "تحريك للأعلى" +msgstr "انقل لأعلى" #. 8uZEg #: wizards/com/sun/star/wizards/common/strings.hrc:291 msgctxt "RID_AGENDAWIZARDDIALOG_START_71" msgid "Move down" -msgstr "تحريك للأسفل" +msgstr "انقل لأسفل" #. wEi4D #: wizards/com/sun/star/wizards/common/strings.hrc:292 diff -Nru libreoffice-7.3.4/translations/source/ar/wizards/source/resources.po libreoffice-7.3.5/translations/source/ar/wizards/source/resources.po --- libreoffice-7.3.4/translations/source/ar/wizards/source/resources.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/wizards/source/resources.po 2022-07-15 19:12:51.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: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516047284.000000\n" #. 8UKfi @@ -4159,7 +4159,7 @@ "CorrespondenceFields_0\n" "property.text" msgid "Click placeholder and overwrite" -msgstr "ضغط العنصر النائب والكتابة عليه" +msgstr "انقر العنصر النائب واكتب عليه" #. hRJRf #: resources_en_US.properties @@ -4240,7 +4240,7 @@ "CorrespondenceFields_9\n" "property.text" msgid "Title" -msgstr "اللقب" +msgstr "العنوان" #. s8G9A #: resources_en_US.properties @@ -4465,7 +4465,7 @@ "AgendaDlgName\n" "property.text" msgid "Minutes Template" -msgstr "قالب مسودّة" +msgstr "قالب محضر" #. 3Yeqe #: resources_en_US.properties @@ -4483,7 +4483,7 @@ "AgendaDlgFrame\n" "property.text" msgid "Minutes Type" -msgstr "نوع المسودّة" +msgstr "نوع المحضر" #. hyGRE #: resources_en_US.properties @@ -4492,7 +4492,7 @@ "AgendaDlgButton1\n" "property.text" msgid "Results Minutes" -msgstr "مسودّة نتائج" +msgstr "محضر نتائج" #. DMfQn #: resources_en_US.properties @@ -4501,7 +4501,7 @@ "AgendaDlgButton2\n" "property.text" msgid "Evaluation Minutes" -msgstr "مسودّة تقييم" +msgstr "محضر تقييم" #. 9zy6P #: resources_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/ar/writerperfect/messages.po libreoffice-7.3.5/translations/source/ar/writerperfect/messages.po --- libreoffice-7.3.4/translations/source/ar/writerperfect/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/writerperfect/messages.po 2022-07-15 19:12:51.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-23 11:46+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525785878.000000\n" #. DXXuk @@ -157,7 +157,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:146 msgctxt "exportepub|splitpage" msgid "Page break" -msgstr "فاصل صفحات" +msgstr "فاصل صفحة" #. u8EWu #: writerperfect/uiconfig/ui/exportepub.ui:147 @@ -241,7 +241,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:442 msgctxt "exportepub|coverbutton" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. 3tfAE #: writerperfect/uiconfig/ui/exportepub.ui:456 @@ -253,7 +253,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:481 msgctxt "exportepub|mediabutton" msgid "Browse..." -msgstr "تصفّح…" +msgstr "تصفّح..." #. yFjyH #: writerperfect/uiconfig/ui/exportepub.ui:497 diff -Nru libreoffice-7.3.4/translations/source/ar/xmlsecurity/messages.po libreoffice-7.3.5/translations/source/ar/xmlsecurity/messages.po --- libreoffice-7.3.4/translations/source/ar/xmlsecurity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ar/xmlsecurity/messages.po 2022-07-15 19:12:51.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-29 16:04+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1527110925.000000\n" #. EyJrF @@ -462,7 +462,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:196 msgctxt "digitalsignaturesdialog|extended_tip|signatures" msgid "Lists the digital signatures for the current document." -msgstr "" +msgstr "يسرد التواقيع الرقمية للمستند الحالي." #. GAMdr #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:216 @@ -474,7 +474,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:222 msgctxt "digitalsignaturesdialog|extended_tip|view" msgid "Opens the View Certificate dialog." -msgstr "" +msgstr "يفتح حوار عَرض الشهادة." #. uM8mn #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:234 @@ -486,7 +486,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241 msgctxt "digitalsignaturesdialog|extended_tip|sign" msgid "Opens the Select Certificate dialog." -msgstr "" +msgstr "يفتح حوار تحديد الشهادة." #. hFd4m #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:253 @@ -534,7 +534,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426 msgctxt "digitalsignaturesdialog|oldsignatureft" msgid "At least one signature has problems: the document is only partially signed." -msgstr "" +msgstr "توجد مشاكل في توقيع واحد على الأقل: وُقّع المستند جزئيا فقط." #. wn85z #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439 @@ -784,7 +784,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:208 msgctxt "selectcertificatedialog|extended_tip|signatures" msgid "Select the certificate that you want to digitally sign the current document with." -msgstr "" +msgstr "حدد الشهادة التي تريد توقيع المستند الحالي رقميًا بها." #. uwjMQ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:221 @@ -814,7 +814,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297 msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog" msgid "Select the certificate that you want to digitally sign the current document with." -msgstr "" +msgstr "حدد الشهادة التي تريد توقيع المستند الحالي رقميًا بها." #. nBkSy #: xmlsecurity/uiconfig/ui/viewcertdialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/as/chart2/messages.po libreoffice-7.3.5/translations/source/as/chart2/messages.po --- libreoffice-7.3.4/translations/source/as/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-05-12 07:38+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -3692,7 +3692,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/cui/messages.po libreoffice-7.3.5/translations/source/as/cui/messages.po --- libreoffice-7.3.4/translations/source/as/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-05-13 23:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -17539,181 +17539,155 @@ msgid "Automatic" msgstr "স্বচালিত" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "উচ্চ কনট্ৰাস্ট" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "অক্সিজেন" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "কালজয়ী" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "হাৰ্ডৱেৰ ত্বৰণ ব্যৱহাৰ কৰক (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "এন্টি-এলিায়াচিং ব্যৱহাৰ কৰক (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "গ্ৰাফিক্স আউটপুট" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ফন্টসমূহৰ পূৰ্বদৰ্শন দেখুৱাওক (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "পৰ্দা ফন্ট এন্টিএলিয়াচিং (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "পৰা (_m)" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ফন্ট তালিকাসমূহ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/dbaccess/messages.po libreoffice-7.3.5/translations/source/as/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/as/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -3466,74 +3466,74 @@ msgstr "এটা নতুন ডাটাবেছ সৃষ্টি কৰক (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "অন্তৰ্ভুক্ত ডাটাবেইচ (_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "এটা বৰ্তি থকা ডাটাবেছ ফাইল খোলক (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "অলপতে ব্যৱহাৰ কৰা (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "খোলক" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "এটা বৰ্তি থকা ডাটাবেছৰ সৈতে সংযোগ কৰক (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3541,7 +3541,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/extensions/messages.po libreoffice-7.3.5/translations/source/as/extensions/messages.po --- libreoffice-7.3.4/translations/source/as/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -310,600 +310,586 @@ msgid "Refresh form" msgstr "পুনৰ সজীৱ কৰক" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "পোৱা" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "পোষ্ট" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "টেক্সট" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "মানবিশিষ্ট (চুটি)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "মানবিশিষ্ট (চুটি YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "মানবিশিষ্ট (চুটি YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "মানবিশিষ্ট (দীঘল)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "নিৰ্বাচন কৰা হোৱা নাই" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "নিৰ্বাৰ্চিত" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "সংজ্ঞা নিৰূপিত" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ৰেকৰ্ডবোৰ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "সক্ৰিয় ৰেকৰ্ড" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "সদায় বৰ্তমান পৃষ্ঠাৰ সৈতে" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "নহয়" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "হয়" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ফৰ্ম" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "বন্ধ কৰক" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "কোনো নহয়" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "একক" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "বহু-অংশবিশিষ্ট ৰেখা" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "পৰিসৰ" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "অনুভূমিক" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "উলম্ব" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ডিফল্ট" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ঠিক আছে" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "বাতিল কৰক" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "সহায়" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "নিৰ্বাচিত নিবেশ" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "নিৰ্বাচিত নিবেশৰ স্থান" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "একমাত্ৰ ৰেখা" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "বহু-অংশবিশিষ্ট ৰেখা" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ফৰমেটিংৰ সৈতে বহু-অংশবিশিষ্ট ৰেখা" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (ইউনিক্স)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (উইণ্ড'জ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "কোনো নহয়" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "অনুভূমিক" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "উলম্ব" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "দুয়োটা" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ফ্লেট" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "বাওফালে ওপৰৰ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "বাওঁফালে কেন্দ্রীকৃত" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "বাওঁফালে তলত" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "সোঁফালৰ ওপৰত" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "সোঁফালে কেন্দ্রিত" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "সোঁফালে তলত" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ওপৰত বাওঁফালে" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ওপৰত কেন্দ্ৰীকৃত" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ওপৰত সোঁফালে" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "তলত বাওঁফালে" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "তলত কেন্দ্রিত" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "তলত সোঁফালে" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "কেন্দ্ৰীকৃত" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "সংৰক্ষণ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "প্ৰতিস্থাপন কৰক" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "স্খলন কৰক" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "নহয়" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "অনুপাত ৰাখক" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "আকাৰৰ বাবে যোগ্য" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "বাওঁফালৰ পৰা-সোঁফাললৈ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "সোঁফালৰ পৰা-বাওঁফাললৈ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "চুপাৰঅৰ্ডিনেইট অবজেক্টৰ সংহতি ব্যৱহাৰ কৰক" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "কেতিয়াও নহয়" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "যেতিয়া মনোযোগ নিবদ্ধ কৰা হয়" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "সদায়" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "পেৰেগ্ৰাফলৈ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "আখৰ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠালৈ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ফ্ৰেমলৈ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "আখৰ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠালৈ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/as/fpicker/messages.po libreoffice-7.3.5/translations/source/as/fpicker/messages.po --- libreoffice-7.3.4/translations/source/as/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -221,61 +221,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "নথিপত্ৰৰ নাম:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ফাইলৰ ধৰণ (‌~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "কেৱল-পঢ়িবৰ বাবে (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "পাছৱৰ্ডৰ সৈতে সংৰক্ষণ কৰক (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "স্বচালিত ফাইল নামৰ সম্প্ৰসাৰন (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ফিল্টাৰ সংহতিসমূহ সম্পাদনা কৰক (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/sc/messages.po libreoffice-7.3.5/translations/source/as/sc/messages.po --- libreoffice-7.3.4/translations/source/as/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -25831,97 +25831,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26307,152 +26307,152 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "সঁজাওক" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ৰঙ (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "জাল (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ভাষা (_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "পুনৰীক্ষণ" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "বিষয়সূচী (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "দৃশ্য" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "সম্পাদন কৰক (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "সঁজাওক" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "দৃশ্য" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "গোট" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ফণ্ট (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "শাৰীকৰণ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "দৃশ্য" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "সুমুৱাওক" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "মাধ্যম" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ফ্ৰেইম (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "সঁজাওক" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "জাল (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/as/sd/messages.po libreoffice-7.3.5/translations/source/as/sd/messages.po --- libreoffice-7.3.4/translations/source/as/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -4225,109 +4225,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7192,109 +7192,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/sw/messages.po libreoffice-7.3.5/translations/source/as/sw/messages.po --- libreoffice-7.3.4/translations/source/as/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -10736,19 +10736,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "শৈলীসমূহ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14289,37 +14289,37 @@ msgstr "ডাটাবেছবোৰ সালসলনি কৰক" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "ব্যাখ্যা কৰক" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ব্যৱহাৰ হৈ থকা ডাটাবেছবোৰ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "উপলব্ধ ডাটাবেইচসমূহ (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "চৰণ কৰক..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14329,31 +14329,31 @@ "ডাটাবেছ ফাইল বাছনী কৰিবলৈ ব্ৰাউজ ব্যৱহাৰ কৰক।" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ডাটাবেছবোৰ সালসলনি কৰক" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ডাটাবেছ দস্তাবেজত প্ৰয়োগ কৰা হৈছে:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20619,111 +20619,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "চৰণ কৰক..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "চৰণ কৰক..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22892,52 +22892,52 @@ msgstr "বস্তু" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ধৰণ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "বিকল্পসমূহ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "আবৃত কৰক (~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "হাইপাৰলিংক" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "সীমাৰেখাবোৰ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "ক্ষেত্ৰ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "স্বচ্ছতা" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27802,7 +27802,7 @@ msgstr "আপডেট কৰক" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/as/vcl/messages.po libreoffice-7.3.5/translations/source/as/vcl/messages.po --- libreoffice-7.3.4/translations/source/as/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/as/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Mondeep Kalita \n" "Language-Team: Assamese \n" @@ -2332,169 +2332,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "স্বনিৰ্বাচিত" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "দ্বাৰা" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "পৃষ্ঠাসমূহৰ মাজত" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "চাদৰৰ সীমালৈ" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "প্ৰতিটো পৃষ্ঠাৰ চাৰিওফালে এটা প্ৰান্ত আকক" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "বিষয়সূচী" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/accessibility/messages.po libreoffice-7.3.5/translations/source/ast/accessibility/messages.po --- libreoffice-7.3.4/translations/source/ast/accessibility/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/accessibility/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029123.000000\n" #. be4e7 @@ -84,7 +84,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/avmedia/messages.po libreoffice-7.3.5/translations/source/ast/avmedia/messages.po --- libreoffice-7.3.4/translations/source/ast/avmedia/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/avmedia/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029123.000000\n" #. FaxGP @@ -156,7 +156,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/basctl/messages.po libreoffice-7.3.5/translations/source/ast/basctl/messages.po --- libreoffice-7.3.4/translations/source/ast/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516043755.000000\n" #. fniWp @@ -571,7 +571,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/basic/messages.po libreoffice-7.3.5/translations/source/ast/basic/messages.po --- libreoffice-7.3.4/translations/source/ast/basic/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/basic/messages.po 2022-07-15 19:12:51.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-09-20 13:02+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029123.000000\n" #. CacXi @@ -787,7 +787,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/chart2/messages.po libreoffice-7.3.5/translations/source/ast/chart2/messages.po --- libreoffice-7.3.4/translations/source/ast/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540149368.000000\n" #. NCRDD @@ -48,7 +48,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -3005,19 +3005,19 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos." #. AyMWn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168 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 "Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos." #. EGS4B #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186 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 "Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos." #. RGQDC #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92 @@ -3602,7 +3602,7 @@ msgstr "Axuste'l númberu de llinies pa los gráficos de tipu Columna y Llinia." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Escueye un gráficu de tipu básicu." diff -Nru libreoffice-7.3.4/translations/source/ast/connectivity/messages.po libreoffice-7.3.5/translations/source/ast/connectivity/messages.po --- libreoffice-7.3.4/translations/source/ast/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1535974914.000000\n" #. 9KHB8 @@ -614,7 +614,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/cui/messages.po libreoffice-7.3.5/translations/source/ast/cui/messages.po --- libreoffice-7.3.4/translations/source/ast/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -90,7 +90,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -406,7 +406,7 @@ #: cui/inc/strings.hrc:70 msgctxt "RID_SVXSTR_TABBED" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. xqrfE #: cui/inc/strings.hrc:71 @@ -3527,7 +3527,7 @@ #: cui/inc/tipoftheday.hrc:280 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" -msgstr "" +msgstr "Conseyu del día: %CURRENT/%TOTAL" #. C6Dsn #: cui/inc/tipoftheday.hrc:281 @@ -5175,7 +5175,7 @@ #: cui/uiconfig/ui/areatabpage.ui:106 msgctxt "areatabpage|btnbitmap" msgid "Image" -msgstr "" +msgstr "Imaxe" #. ELAno #: cui/uiconfig/ui/areatabpage.ui:112 @@ -5793,7 +5793,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:340 msgctxt "bulletandposition|bullet" msgid "Select..." -msgstr "" +msgstr "Esbillar..." #. sNFJM #: cui/uiconfig/ui/bulletandposition.ui:346 @@ -5817,7 +5817,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:382 msgctxt "bulletandposition|colorft" msgid "Color:" -msgstr "" +msgstr "Color:" #. XqDTh #: cui/uiconfig/ui/bulletandposition.ui:405 @@ -7143,7 +7143,7 @@ #: cui/uiconfig/ui/colorpage.ui:136 msgctxt "colorpage|label20" msgid "Recent Colors" -msgstr "" +msgstr "Colores recién" #. MwnMh #: cui/uiconfig/ui/colorpage.ui:190 @@ -11308,13 +11308,13 @@ #: cui/uiconfig/ui/imagetabpage.ui:84 msgctxt "imagetabpage|label1" msgid "Image" -msgstr "" +msgstr "Imaxe" #. 4HvEn #: cui/uiconfig/ui/imagetabpage.ui:127 msgctxt "imagetabpage|label3" msgid "Style:" -msgstr "" +msgstr "Estilu:" #. cAwPK #: cui/uiconfig/ui/imagetabpage.ui:143 @@ -11338,19 +11338,19 @@ #: cui/uiconfig/ui/imagetabpage.ui:171 msgctxt "imagetabpage|label4" msgid "Size:" -msgstr "" +msgstr "Tamañu:" #. YtPnn #: cui/uiconfig/ui/imagetabpage.ui:189 msgctxt "imagetabpage|label5" msgid "Width:" -msgstr "" +msgstr "Anchor:" #. GAfGG #: cui/uiconfig/ui/imagetabpage.ui:228 msgctxt "imagetabpage|label6" msgid "Height:" -msgstr "" +msgstr "Altor:" #. HBRGU #: cui/uiconfig/ui/imagetabpage.ui:260 @@ -12231,7 +12231,7 @@ #: cui/uiconfig/ui/linetabpage.ui:755 msgctxt "linetabpage|MB_SYMBOL_BITMAP" msgid "Select..." -msgstr "Seleición..." +msgstr "Esbillar..." #. LaBcU #: cui/uiconfig/ui/linetabpage.ui:784 @@ -12711,10 +12711,9 @@ #. LKQEa #: cui/uiconfig/ui/mosaicdialog.ui:263 -#, fuzzy msgctxt "mosaicdialog|label1" msgid "Parameters" -msgstr "Parámetru" +msgstr "Parámetros" #. LGB8f #: cui/uiconfig/ui/mosaicdialog.ui:288 @@ -13285,7 +13284,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:401 msgctxt "numberingoptionspage|bitmap" msgid "Select..." -msgstr "Seleición..." +msgstr "Esbillar..." #. Eqa4C #: cui/uiconfig/ui/numberingoptionspage.ui:413 @@ -13309,7 +13308,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:464 msgctxt "numberingoptionspage|bullet" msgid "Select..." -msgstr "Seleición..." +msgstr "Esbillar..." #. vfKmd #: cui/uiconfig/ui/numberingoptionspage.ui:470 @@ -13368,10 +13367,9 @@ #. 6r484 #: cui/uiconfig/ui/numberingoptionspage.ui:602 -#, fuzzy msgctxt "numberingoptionspage|colorft" msgid "Color:" -msgstr "Colo_r:" +msgstr "Color:" #. ksG2M #: cui/uiconfig/ui/numberingoptionspage.ui:616 @@ -17306,181 +17304,155 @@ msgid "Automatic" msgstr "Automáticu" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxa" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Altu contraste" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxíxenu" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clásicu" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Usar l'aceleración por hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Apuerta direutamente a les funciones de hardware del adaptador de gráficos en pantalla p'ameyorar la visualización en pantalla." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Usar el suavi_záu de fontes" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Cuando ye soportáu, pue habilitase o evacuar l'anti-aliasing de gráficos. Con anti-aliasing habilitáu, la visualización de la mayoría de los oxetos gráficos llucen nidios y con menos artefactos." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Salida gráfica" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Amosar vista p_revia de les fontes" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavizar les _fontes na pantalla" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_dende" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Especifica'l tamañu de fonte más pequeñu p'aplicar l'anidiáu." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Llistes de fontes" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" @@ -18776,10 +18748,9 @@ #. 3iZDQ #: cui/uiconfig/ui/posterdialog.ui:178 -#, fuzzy msgctxt "posterdialog|label1" msgid "Parameters" -msgstr "Parámetru" +msgstr "Parámetros" #. DoLFC #: cui/uiconfig/ui/posterdialog.ui:203 @@ -20119,10 +20090,9 @@ #. b62Mc #: cui/uiconfig/ui/smoothdialog.ui:175 -#, fuzzy msgctxt "smoothdialog|label1" msgid "Parameters" -msgstr "Parámetru" +msgstr "Parámetros" #. RHoUb #: cui/uiconfig/ui/smoothdialog.ui:200 @@ -20163,10 +20133,9 @@ #. vd8sF #: cui/uiconfig/ui/solarizedialog.ui:196 -#, fuzzy msgctxt "solarizedialog|label1" msgid "Parameters" -msgstr "Parámetru" +msgstr "Parámetros" #. Vec6B #: cui/uiconfig/ui/solarizedialog.ui:221 @@ -20188,10 +20157,9 @@ #. CLtzq #: cui/uiconfig/ui/specialcharacters.ui:109 -#, fuzzy msgctxt "specialcharacters|subsetft" msgid "Subset:" -msgstr "Conxuntu parcial" +msgstr "Bloque de caráuteres:" #. mPCRR #: cui/uiconfig/ui/specialcharacters.ui:123 @@ -21326,7 +21294,7 @@ #: cui/uiconfig/ui/textflowpage.ui:211 msgctxt "textflowpage|LabelHyphenation" msgid "Hyphenation" -msgstr "Dixebráu silábicu" +msgstr "Guionáu" #. ZLB8K #: cui/uiconfig/ui/textflowpage.ui:240 @@ -21653,7 +21621,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:128 msgctxt "ToolbarmodeDialog|radiobutton2" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. DZLbS #: cui/uiconfig/ui/toolbarmodedialog.ui:156 diff -Nru libreoffice-7.3.4/translations/source/ast/dbaccess/messages.po libreoffice-7.3.5/translations/source/ast/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ast/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1524566374.000000\n" #. BiN6g @@ -42,7 +42,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -3169,10 +3169,9 @@ #. QCHBC #: dbaccess/uiconfig/ui/directsqldialog.ui:114 -#, fuzzy msgctxt "directsqldialog|sql_label" msgid "_Command to execute:" -msgstr "_Orde a executar" +msgstr "_Comandu a executar:" #. KDRkq #: dbaccess/uiconfig/ui/directsqldialog.ui:132 @@ -3419,74 +3418,74 @@ msgstr "Crear una base de datos nu_eva" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Base de datos _incrustada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Abrir un _ficheru de base de datos esistente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Usáu a_pocayá:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Abrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Coneutar a una base de datos e_sistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3496,7 +3495,7 @@ "tan disponibles nin HSQLDB nin Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/desktop/messages.po libreoffice-7.3.5/translations/source/ast/desktop/messages.po --- libreoffice-7.3.4/translations/source/ast/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1535974915.000000\n" #. v2iwK @@ -802,7 +802,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/editeng/messages.po libreoffice-7.3.5/translations/source/ast/editeng/messages.po --- libreoffice-7.3.4/translations/source/ast/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516043757.000000\n" #. BHYB4 @@ -105,7 +105,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/extensions/messages.po libreoffice-7.3.5/translations/source/ast/extensions/messages.po --- libreoffice-7.3.4/translations/source/ast/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. cBx8W @@ -42,7 +42,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -291,559 +291,547 @@ msgid "Refresh form" msgstr "Anovar formulariu" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Llograr" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Publicar" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multiparte" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testu" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estándar (cortu)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estándar (curtiu AA)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estándar (curtiu AAAA)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estándar (llargu)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ensin seleicionar" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleicionáu" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ensin definir" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tolos rexistros" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Rexistru activu" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Páxina actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Non" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sí" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulariu padre" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nengún" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Simple" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Estaya" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predetermináu" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Aceutar" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Encaboxar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ayuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "La entrada seleicionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posición de la entrada seleicionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Llinia única" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multillinia" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multillinia con formatu" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Denguna" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Dambes" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Planu" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Cimero izquierda" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centru izquierda" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Baxero izquierda" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Cimero drecha" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centru drecha" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Baxero drecha" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Enriba izquierda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Enriba centru" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Enriba drecha" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Debaxo izquierda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Debaxo centru" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Debaxo drecha" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centráu" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Caltener" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Trocar" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Contrayer" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Non" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Caltener razón" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Axustar al tamañu" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Manzorga a mandrecha" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Mandrecha a manzorga" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Usar los axustes del oxetu superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Enxamás" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Cuando tea enfocada" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Siempres" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "A párrafu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Como Caráuter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A páxina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "A marcu" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "A Caráuter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A páxina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ast/filter/messages.po libreoffice-7.3.5/translations/source/ast/filter/messages.po --- libreoffice-7.3.4/translations/source/ast/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029128.000000\n" #. 5AQgJ @@ -297,7 +297,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -1194,7 +1194,7 @@ #: filter/uiconfig/ui/pdfsignpage.ui:69 msgctxt "pdfsignpage|select" msgid "Select..." -msgstr "Seleicionar..." +msgstr "Esbillar..." #. UCtFh #: filter/uiconfig/ui/pdfsignpage.ui:76 diff -Nru libreoffice-7.3.4/translations/source/ast/forms/messages.po libreoffice-7.3.5/translations/source/ast/forms/messages.po --- libreoffice-7.3.4/translations/source/ast/forms/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/forms/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507237308.000000\n" #. naBgZ @@ -38,7 +38,7 @@ #: forms/inc/strings.hrc:29 msgctxt "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN" msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder." -msgstr "Hebo un fallu al cargar esti control. Camudóse por un comodín." +msgstr "Hebo un fallu al cargar esti control. Camudóse por un llugar de colocación." #. CLzFr #: forms/inc/strings.hrc:30 @@ -376,7 +376,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/formula/messages.po libreoffice-7.3.5/translations/source/ast/formula/messages.po --- libreoffice-7.3.4/translations/source/ast/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. YfKFn @@ -2548,7 +2548,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/fpicker/messages.po libreoffice-7.3.5/translations/source/ast/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ast/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1538496517.000000\n" #. SJGCw @@ -98,7 +98,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -218,57 +218,57 @@ msgstr "Data de modificación" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nome del ficheru:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Triba de ficheru:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Namái llectu_ra" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Grabar con c~ontraseña" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Estensión del nome de ficheru ~automática" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar axustes de _peñeres" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/framework/messages.po libreoffice-7.3.5/translations/source/ast/framework/messages.po --- libreoffice-7.3.4/translations/source/ast/framework/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/framework/messages.po 2022-07-15 19:12:51.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-06-11 17:08+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1513251152.000000\n" #. 5dTDC @@ -361,7 +361,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1531405556.000000\n" #. ViEWM @@ -3335,7 +3335,7 @@ "hd_id681618825574599\n" "help.text" msgid "Predefined Formats" -msgstr "" +msgstr "Formatos predefiníos" #. osJdR #: sf_basic.xhp @@ -10400,7 +10400,7 @@ "par_id591612629836830\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. P6NX8 #: sf_dialogcontrol.xhp @@ -10418,7 +10418,7 @@ "par_id891612629836630\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. oCDXm #: sf_dialogcontrol.xhp @@ -10454,7 +10454,7 @@ "par_id211612629836725\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. mzbBD #: sf_dialogcontrol.xhp @@ -10490,7 +10490,7 @@ "par_id981612629836116\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 8B9ct #: sf_dialogcontrol.xhp @@ -11858,7 +11858,7 @@ "par_id201589194571955\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. Aw2Tv #: sf_document.xhp @@ -11876,7 +11876,7 @@ "par_id761589194633950\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. pSbRu #: sf_document.xhp @@ -16412,7 +16412,7 @@ "par_id761584027709516\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. Enqxp #: sf_formcontrol.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "«?» representa cualisquier caráuter únicu;" #. CFPcW #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: la cadena que va comprobase. Si ta balera, el métodu devuelve False." #. 7Ryzp #: sf_string.xhp @@ -24602,7 +24602,7 @@ "par_id951587913266220\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. c5EiC #: sf_ui.xhp @@ -24611,7 +24611,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. vQ8TT #: sf_ui.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -32990,7 +32990,7 @@ "par_id3159201\n" "help.text" msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch." -msgstr "Fai sonar un tonu al traviés del altavoz del ordenador. El tonu depende del sistema y nun pue modificar el volume nin la modulación." +msgstr "Fai sonar un tonu al traviés del altavoz del ordenador. El tonu depende del sistema y nun se pue modificar el volume nin la modulación." #. JMATz #: 03130100.xhp @@ -34646,7 +34646,7 @@ "tit\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Oxetu ThisComponent" #. AKrki #: 03132200.xhp @@ -34664,7 +34664,7 @@ "hd_id3155342\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Oxetu ThisComponent" #. ECFFs #: 03132200.xhp @@ -34718,7 +34718,7 @@ "par_id3156422\n" "help.text" msgid "' use the default name for Table of Contents and a 1" -msgstr "' usa'l nome predetermináu pa un Índiz ya'l númberu 1" +msgstr "' usa'l nome predetermináu pa un Sumariu ya'l númberu 1" #. XF28a #: 03132200.xhp @@ -34763,7 +34763,7 @@ "par_id105622646874083\n" "help.text" msgid "com.sun.star.formula.FormulaProperties API service" -msgstr "" +msgstr "Serviciu de l'API com.sun.star.formula.FormulaProperties" #. FLbnX #: 03132200.xhp @@ -34772,7 +34772,7 @@ "par_id106622646874083\n" "help.text" msgid "com.sun.star.sdb.OfficeDatabaseDocument API service" -msgstr "" +msgstr "Serviciu de l'API com.sun.star.sdb.OfficeDatabaseDocument" #. vZW9w #: 03132200.xhp @@ -34781,7 +34781,7 @@ "par_id581622646875379\n" "help.text" msgid "com.sun.star.document.OfficeDocument API service" -msgstr "" +msgstr "Serviciu de l'API com.sun.star.document.OfficeDocument" #. QgZSF #: 03132300.xhp @@ -34790,7 +34790,7 @@ "tit\n" "help.text" msgid "CreateUnoValue Function" -msgstr "" +msgstr "Función CreateUnoValue" #. VGQcy #: 03132300.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -17997,7 +17997,7 @@ "hd_id3147299\n" "help.text" msgid "Example:" -msgstr "Exemplu" +msgstr "Exemplu:" #. oCjxy #: 04060109.xhp @@ -45681,7 +45681,7 @@ "par_id31494140\n" "help.text" msgid "3, 4 or 5 - arrows" -msgstr "" +msgstr "3, 4 o 5: fleches" #. EmC6A #: 05120000.xhp @@ -45771,7 +45771,7 @@ "hd_id3156384\n" "help.text" msgid "Dates" -msgstr "Fecha" +msgstr "Dates" #. WYB6t #: 05120000.xhp @@ -57174,7 +57174,7 @@ "par_id251620415562967\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. tpUMy #: func_convert.xhp @@ -57345,7 +57345,7 @@ "par_id215779983443756\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. wERLT #: func_convert.xhp @@ -57426,7 +57426,7 @@ "par_id498448587944728\n" "help.text" msgid "Joule" -msgstr "" +msgstr "Xuliu" #. PUrZh #: func_convert.xhp @@ -57462,7 +57462,7 @@ "par_id747764511138273\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. dvVVc #: func_convert.xhp @@ -57516,7 +57516,7 @@ "par_id613697367784781\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. 3ZxxK #: func_convert.xhp @@ -57561,7 +57561,7 @@ "par_id472715992174398\n" "help.text" msgid "Pond" -msgstr "" +msgstr "Pondiu" #. Z8snf #: func_convert.xhp @@ -57588,7 +57588,7 @@ "par_id612374956817974\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. kNxR2 #: func_convert.xhp @@ -57642,7 +57642,7 @@ "par_id385965635167839\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. qBet6 #: func_convert.xhp @@ -57795,7 +57795,7 @@ "par_id314237495552874\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. YXvAc #: func_convert.xhp @@ -57939,7 +57939,7 @@ "par_id222988613874967\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. 6DsPs #: func_convert.xhp @@ -58002,7 +58002,7 @@ "par_id385992865555923\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. geMDd #: func_convert.xhp @@ -58029,7 +58029,7 @@ "par_id849582553771429\n" "help.text" msgid "Millimeter of mercury" -msgstr "" +msgstr "Milímetru de mercuriu" #. AsDNh #: func_convert.xhp @@ -58038,7 +58038,7 @@ "par_id477235647442515\n" "help.text" msgid "Pascal" -msgstr "" +msgstr "Pascal" #. yyvEQ #: func_convert.xhp @@ -58065,7 +58065,7 @@ "hd_id61620426438099\n" "help.text" msgid "Speed" -msgstr "" +msgstr "Velocidá" #. AXQxd #: func_convert.xhp @@ -58083,7 +58083,7 @@ "par_id886677898259849\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. PWNGi #: func_convert.xhp @@ -58146,7 +58146,7 @@ "hd_id351620426496272\n" "help.text" msgid "Temperature" -msgstr "" +msgstr "Temperatura" #. C5MHQ #: func_convert.xhp @@ -58164,7 +58164,7 @@ "par_id828222863857386\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. sGE7h #: func_convert.xhp @@ -58245,7 +58245,7 @@ "par_id664526138752768\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. 8X7qR #: func_convert.xhp @@ -58326,7 +58326,7 @@ "par_id954441838321316\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. QnLHF #: func_convert.xhp @@ -58335,7 +58335,7 @@ "par_id487448753979859\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefixu" #. oFBFc #: func_convert.xhp @@ -58452,7 +58452,7 @@ "par_id538319527687728\n" "help.text" msgid "Cubic meter" -msgstr "" +msgstr "Metru cúbicu" #. GG8ep #: func_convert.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: guide\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -5361,7 +5361,7 @@ "par_idN107B6\n" "help.text" msgid "Locate the directory that contains the dBASE file, and click OK." -msgstr "Allugue'l direutoriu que contién el ficheru dBASE, y prima clic en Aceutar." +msgstr "Alluga'l direutoriu que contién el ficheru dBASE y calca Aceutar." #. 5kG55 #: dbase_files.xhp @@ -5451,7 +5451,7 @@ "hd_id3150791\n" "help.text" msgid "Selecting Themes for Sheets " -msgstr "Escoyer Temes pa Fueyes" +msgstr "Escoyer temes pa fueyes" #. axrVR #: design.xhp @@ -7440,7 +7440,7 @@ "bm_id3145120\n" "help.text" msgid "accessibility; %PRODUCTNAME Calc shortcutsshortcut keys;%PRODUCTNAME Calc accessibility" -msgstr "accesibilidá; tecles d'accesu direutu de %PRODUCTNAME Calctecles d'accesu direutu;accesibilidá de %PRODUCTNAME Calc" +msgstr "accesibilidá; atayos de tecláu de %PRODUCTNAME Calcatayos de tecláu;accesibilidá de %PRODUCTNAME Calc" #. 5D3u4 #: keyboard.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/schart/01.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/schart/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/schart/01.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -5243,7 +5243,7 @@ "par_id4721823\n" "help.text" msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings." -msgstr "Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos." #. r68Bu #: three_d_view.xhp @@ -5252,7 +5252,7 @@ "par_id5806756\n" "help.text" msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings." -msgstr "Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos." #. HG7NF #: three_d_view.xhp @@ -5261,7 +5261,7 @@ "par_id8915372\n" "help.text" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones." +msgstr "Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos." #. P3E59 #: three_d_view.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/schart.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/schart.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/schart.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/schart.po 2022-07-15 19:12:51.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: 2022-02-05 00:39+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525794593.000000\n" #. wtFDe @@ -131,7 +131,7 @@ "par_id7911008\n" "help.text" msgid "Click a chart to edit the object properties:" -msgstr "Faiga clic nun gráficu pa modificar les propiedaes del oxetu del gráficu:" +msgstr "Calca nuna gráfica pa modificar les propiedaes del oxetu:" #. MMYWv #: main0000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1859,7 +1859,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for Drawing Objects" -msgstr "Tecles d'accesu direutu pa oxetos de dibuxu" +msgstr "Tecles d'atayu pa oxetos de dibuxu" #. WaKgD #: keyboard.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2012,7 +2012,7 @@ "par_id3152946\n" "help.text" msgid "Icon" -msgstr "Iconu" +msgstr "Iconu" #. QDsEn #: 00000004.xhp @@ -3326,7 +3326,7 @@ "par_id3153716\n" "help.text" msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (xxx represents the name of the object) will be created directly in the same directory as that of the selected object." -msgstr "Esta orde pue activase si hai un oxetu escoyíu. va crease un enllaz col nome \"Enllaz a xxx\" (xxx representa'l nome del oxetu) nel mesmu direutoriu que l'oxetu escoyíu." +msgstr "Esta orde pue activase si hai un oxetu esbilláu. Va crease un enllaz col nome «Enllaz a xxx» (xxx representa'l nome del oxetu) nel mesmu direutoriu que l'oxetu esbilláu." #. HKFbQ #: 00000011.xhp @@ -3578,7 +3578,7 @@ "par_id3150129\n" "help.text" msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off." -msgstr "\"Fonte: 10pt\" pasa a una fonte con 10pt y coles mesmes negrina, cursiva y versalita." +msgstr "«Font: 10pt» pasa a una fonte con 10 pt y ensin negrina, cursiva o versalita." #. sx5EP #: 00000020.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542196269.000000\n" #. 3u8hR @@ -6674,7 +6674,7 @@ "tit\n" "help.text" msgid "Recent Documents" -msgstr "" +msgstr "Documentos recién" #. AMcQP #: 01990000.xhp @@ -6683,7 +6683,7 @@ "hd_id3150279\n" "help.text" msgid "Recent Documents" -msgstr "" +msgstr "Documentos recién" #. doka7 #: 01990000.xhp @@ -15431,7 +15431,7 @@ "hd_id3154894\n" "help.text" msgid "OLE Object" -msgstr "" +msgstr "Oxetu OLE" #. Prhay #: 04150100.xhp @@ -24944,7 +24944,7 @@ "hd_id3150449\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Estilos" #. NyRLW #: 05060000.xhp @@ -26888,7 +26888,7 @@ "hd_id3148983\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Estilos" #. LBH3d #: 05200100.xhp @@ -26906,7 +26906,7 @@ "hd_id3150789\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Colores" #. kJdyQ #: 05200100.xhp @@ -26924,7 +26924,7 @@ "hd_id3159234\n" "help.text" msgid "Widths" -msgstr "" +msgstr "Anchores" #. ZdQdF #: 05200100.xhp @@ -27707,7 +27707,7 @@ "tit\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Colores" #. RSPZA #: 05210200.xhp @@ -27725,7 +27725,7 @@ "hd_id681578759272545\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Colores" #. QfPqQ #: 05210200.xhp @@ -27752,7 +27752,7 @@ "hd_id931578758906569\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Colores" #. 2iXVW #: 05210200.xhp @@ -27779,7 +27779,7 @@ "hd_id981578758969146\n" "help.text" msgid "Recent colors" -msgstr "" +msgstr "Colores recién" #. 6LC8v #: 05210200.xhp @@ -36959,7 +36959,7 @@ "hd_id3147275\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Colores" #. bX6cX #: 06030000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -10689,7 +10689,7 @@ "par_id3154750\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Estilos" #. eQswn #: 02010000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/04.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/04.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/04.po 2022-07-15 19:12:51.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-19 17:31+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -24,7 +24,7 @@ "tit\n" "help.text" msgid "General Shortcut Keys in $[officename]" -msgstr "Tecles d'accesu direutu xenerales en $[officename]" +msgstr "Tecles d'atayu xenerales en $[officename]" #. xFAX2 #: 01010000.xhp @@ -2337,7 +2337,7 @@ "bm_id3149809\n" "help.text" msgid "shortcut keys; in databasesdatabases; shortcut keys" -msgstr "tecles d'accesu direutu;bases de datosbases de datos;tecles d'accesu direutu" +msgstr "tecles d'atayu;bases de datosbases de datos;tecles d'atayu" #. b99D3 #: 01020000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540152128.000000\n" #. WPTtk @@ -1283,7 +1283,7 @@ "par_id131592238966436\n" "help.text" msgid "The page does not exist and must be created." -msgstr "" +msgstr "La páxina nun esiste y ha crease." #. wBHiJ #: err_html.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -3974,7 +3974,7 @@ "par_id3150443\n" "help.text" msgid "You can change the shortcut keys." -msgstr "Les tecles d'accesu direutu puen modificar." +msgstr "Pues modificar les tecles d'atayu." #. 7GQeh #: configure_overview.xhp @@ -10589,7 +10589,7 @@ "par_id3156113\n" "help.text" msgid "Click the Save icon or press the shortcut keys CommandCtrl+S." -msgstr "Faiga clic nel iconu Guardar o calque les tecles d'accesu direutu ComanduCtrl + G." +msgstr "Calca l'iconu Guardar o calca les tecles d'atayu ComanduCtrl + S." #. JubEi #: doc_save.xhp @@ -14855,7 +14855,7 @@ "tit\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Tecles d'accesu direutu (Accesibilidá de %PRODUCTNAME)" +msgstr "Tecles d'atayu (Accesibilidá de %PRODUCTNAME)" #. DCFvC #: keyboard.xhp @@ -14864,7 +14864,7 @@ "bm_id3158421\n" "help.text" msgid "accessibility;general shortcuts shortcut keys; %PRODUCTNAME accessibility" -msgstr "accesibilidá;accesos direutos xenerales tecles d'accesu direutu; accesibilidá de %PRODUCTNAME" +msgstr "accesibilidá;atayos xeneralestecles d'atayu; accesibilidá de %PRODUCTNAME" #. ArwDt #: keyboard.xhp @@ -14873,7 +14873,7 @@ "hd_id3158421\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Tecles d'accesu direutu (Accesibilidá de %PRODUCTNAME)" +msgstr "Tecles d'atayu (Accesibilidá de %PRODUCTNAME)" #. 2drEq #: keyboard.xhp @@ -19391,7 +19391,7 @@ "par_id1029200801240965\n" "help.text" msgid "Direct Cursor" -msgstr "Cursor direutu" +msgstr "Cursor direutu" #. 4jGFy #: microsoft_terms.xhp @@ -22397,7 +22397,7 @@ "par_id381566315781439\n" "help.text" msgid "Generate linear and matrix codes for any text or URL." -msgstr "" +msgstr "Xenera códigos lliniales y matriciales pa cualisquier testu o URL." #. UCs5m #: qrcode.xhp @@ -22793,7 +22793,7 @@ "par_id3147008\n" "help.text" msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document." -msgstr "Por exemplu: usté ye un editor y va apurrir l'últimu informe. Pero enantes de publicar l'informe tien de lleelo un editor xefe y un corrector de pruebes, y dambos van amestar los sos cambeos. L'editor xefe escribe \"esclariar\" dempués d'un párrafu y tacha otru dafechu. El corrector de pruebes revisa la ortografía del documentu y anota dos exemplos onde les referencies concretes al sexu d'una persona imaxinaria podríen camudase pa evitales dafechu." +msgstr "Por casu: usté ye un editor y va apurrir l'últimu informe. Pero enantes de publicar l'informe tien de lleelu un editor xefe y una correutora de pruebes, y dambos van amestar los sos cambeos. L'editor xefe escribe «esclariar» dempués d'un párrafu y tacha otru dafechu. La correutora de pruebes revisa la ortografía del documentu." #. sZdoa #: redlining.xhp @@ -23135,7 +23135,7 @@ "tit\n" "help.text" msgid "Recording Changes" -msgstr "Rexistrar cambeos" +msgstr "Enrexistrar cambeos" #. V8ATh #: redlining_enter.xhp @@ -23153,7 +23153,7 @@ "hd_id3155364\n" "help.text" msgid "Recording Changes" -msgstr "Rexistrar cambeos" +msgstr "Enrexistrar cambeos" #. VBpWf #: redlining_enter.xhp @@ -23171,7 +23171,7 @@ "par_id3145669\n" "help.text" msgid "Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting." -msgstr "Nun se rexistren tolos cambeos. Por exemplu, si camuda l'alliniación d'un tabulador d'esquierda a derecha, el cambéu nun se rexistra. Anque tolos cambeos comunes que se realicen al revisar un testu sí se rexistren, como amiestes, eliminaciones, cambeos del testu y cambeos de formatu comunes." +msgstr "Nun tolos cambeos se rexistren. Por exemplu, si camudes l'alliniación d'un tabulador d'izquierda a derecha, el cambéu nun s'enrexistra. Poro, tolos cambeos que los correutores de pruebes realicen al revisar un testu sí que se rexistren, como amiestos, desanicios, cambeos nel testu y cambeos de formatu comunes." #. FHNi5 #: redlining_enter.xhp @@ -23756,7 +23756,7 @@ "par_idN10A78\n" "help.text" msgid "Select a key combination from the Shortcut keys list box and click Modify." -msgstr "Escueya una combinación de tecles del cuadru de llista Tecles d'accesu direutu y faiga clic en Modificar." +msgstr "Escueya una combinación de tecles del cuadru de llista Tecles d'atayu y faiga clic en Modificar." #. qzjKN #: scripting.xhp @@ -27158,7 +27158,7 @@ "hd_id81630844306451\n" "help.text" msgid "Next Tip" -msgstr "" +msgstr "Conseyu siguiente" #. nqjpy #: tipoftheday.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/simpress/04.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/simpress/04.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/simpress/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/simpress/04.po 2022-07-15 19:12:51.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 18:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for $[officename] Impress" -msgstr "Tecles d'accesu direutu de $[officename] Impress" +msgstr "Tecles d'atayu de $[officename] Impress" #. sHrEU #: 01020000.xhp @@ -1355,7 +1355,7 @@ "hd_id3156192\n" "help.text" msgid "Shortcut Keys in $[officename] Impress" -msgstr "Tecles d'accesu direutu de $[officename] Impress" +msgstr "Tecles d'atayu de $[officename] Impress" #. MaLzD #: 01020000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2696,7 +2696,7 @@ "tit\n" "help.text" msgid "Using Shortcut Keys in $[officename] Impress" -msgstr "Utilizar tecles d'accesu direutu de $[officename] Impress" +msgstr "Utilizar tecles d'atayu de $[officename] Impress" #. wGBuB #: keyboard.xhp @@ -2714,7 +2714,7 @@ "hd_id3154702\n" "help.text" msgid "Using Shortcut Keys in $[officename] Impress" -msgstr "Usar tecles d'accesu direutu de $[officename] Impress" +msgstr "Usar tecles d'atayu de $[officename] Impress" #. 8sLBi #: keyboard.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/smath/00.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/smath/00.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/smath/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/smath/00.po 2022-07-15 19:12:51.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:35+0000\n" -"Last-Translator: Xandru Martino Ruz \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2022-06-06 18:38+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 3.10.3\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1494346285.000000\n" #. E9tti @@ -113,7 +113,7 @@ "par_id3149127\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. FqS3z #: 00000004.xhp @@ -149,7 +149,7 @@ "par_id3156398\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. cFNys #: 00000004.xhp @@ -185,7 +185,7 @@ "par_id3149878\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. eEHDh #: 00000004.xhp @@ -221,7 +221,7 @@ "par_id3147169\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. dhew7 #: 00000004.xhp @@ -266,7 +266,7 @@ "par_id3149289\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. xD6qA #: 00000004.xhp @@ -518,7 +518,7 @@ "par_id3145268\n" "help.text" msgid "On the Tools bar, click" -msgstr "En barra de Ferramientes, faiga clic en" +msgstr "Na barra Ferramientes, calca" #. 63bpb #: 00000004.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/smath/04.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/smath/04.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/smath/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/smath/04.po 2022-07-15 19:12:51.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: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -131,7 +131,7 @@ "par_id3149871\n" "help.text" msgid "Next Marker (Placeholder)" -msgstr "Marcador siguiente (Comodín)" +msgstr "Marcador siguiente (llugar de colocación)" #. CjJwC #: 01020000.xhp @@ -149,7 +149,7 @@ "par_id3151390\n" "help.text" msgid "Previous Marker (Placeholder)" -msgstr "Marcador anterior (Comodín)" +msgstr "Marcador anterior (llugar de colocación)" #. TEBFE #: 01020000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542196274.000000\n" #. E9tti @@ -266,7 +266,7 @@ "par_id3143228\n" "help.text" msgid "On the Insert toolbar, click" -msgstr "Na barra de ferramientes Inxertar, faiga clic" +msgstr "Na barra de ferramientes Inxertar, calca" #. na7eb #: 00000402.xhp @@ -473,7 +473,7 @@ "par_id3154508\n" "help.text" msgid "On Standard bar, click" -msgstr "En barra Estándar, faiga clic en" +msgstr "Na barra Estándar, calca" #. 9xqfr #: 00000403.xhp @@ -716,7 +716,7 @@ "par_id3147174\n" "help.text" msgid "On Insert toolbar, click" -msgstr "Na barra de ferramientes Inxertar, faiga clic en" +msgstr "Na barra de ferramientes Inxertar, calca" #. CBN2Y #: 00000404.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1157,7 +1157,7 @@ "par_id901603571492300\n" "help.text" msgid "References Icon" -msgstr "" +msgstr "Iconu Referencies" #. iDyLx #: 02110000.xhp @@ -5891,7 +5891,7 @@ "par_id5187536\n" "help.text" msgid "Choose the \"Default\" page style from the submenu." -msgstr "Escueya l'estilu de páxina predetermináu usando'l submenú." +msgstr "Escueyi l'estilu de páxina «Predetermináu» usando'l somenú." #. JyxEQ #: 04070000.xhp @@ -5900,7 +5900,7 @@ "par_id6952726\n" "help.text" msgid "This removes the special \"Envelope\" page formatting." -msgstr "Esto desanicia'l formatu especial del \"Sobre\"." +msgstr "Esto desanicia'l formatu especial del «Sobre»." #. 3iAPy #: 04070000.xhp @@ -19427,7 +19427,7 @@ "par_id3151373\n" "help.text" msgid "Locate the new graphic file that you want to link to, and then click Open." -msgstr "Busque el ficheru d'imaxe nuevu que deseya enllazar y faiga clic en Abrir." +msgstr "Gueta'l ficheru d'imaxe nuevu al que quies enllazar y calca Abrir." #. ECJK7 #: 05060300.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/04.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/04.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/04.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -41,7 +41,7 @@ "hd_id3145763\n" "help.text" msgid "Shortcut Keys for %PRODUCTNAME Writer" -msgstr "Tecles d'accesu direutu de %PRODUCTNAME Writer" +msgstr "Tecles d'atayu de %PRODUCTNAME Writer" #. qbPEo #: 01020000.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -8213,7 +8213,7 @@ "par_id3147132\n" "help.text" msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents." -msgstr "La meyor mou de xenerar una tabla de conteníos ye aplicar los estilos de párrafos predefiníos, tales como el \"Testera 1\", a los párrafos que deseya incluyir na tabla de conteníos." +msgstr "El meyor mou de xenerar un sumariu ye aplicar los estilos de párrafu predefiníos, tales como'l «Títulu 1», a los párrafos que quies incluyir nel sumariu." #. SuiqC #: indices_enter.xhp @@ -15044,7 +15044,7 @@ "bm_id3149689\n" "help.text" msgid "text; formatting bold while typing formatting; bold, while typing keyboard;bold formatting bold;formatting while typing shortcut keys;bold formatting" -msgstr "testu;aplicar negrina al escribir dar formatu;negrina, al escribir tecláu;aplicación de negrina negrina;aplicar al tecles d'accesu direutu;aplicación de negrina" +msgstr "testu;aplicar negrina n'escribiendodar formatu;negrina, n'escribiendotecláu;aplicación de negrinanegrina;aplicar n'escribiendoatayos de tecláu;aplicación de negrina" #. sBSH2 #: shortcut_writing.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/menu.po libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.3.4/translations/source/ast/helpcontent2/source/text/swriter/menu.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/helpcontent2/source/text/swriter/menu.po 2022-07-15 19:12:51.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: 2022-04-27 10:03+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1462662262.000000\n" #. tP5yN @@ -113,7 +113,7 @@ "par_id030720160603138925\n" "help.text" msgid "This submenu contains both interactive and non-interactive means of inserting a frame." -msgstr "Esti submenú contien medios interactivos y non interactivos pa inxertar un marcu." +msgstr "Esti somenú contién medios interactivos y non interactivos pa inxertar un marcu." #. Hq4D6 #: insert_frame.xhp diff -Nru libreoffice-7.3.4/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.5/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.4/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-07-15 19:12:51.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-31 10:35+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. tBfTE @@ -158,7 +158,7 @@ "OOO_ACTIONTEXT_16\n" "LngText.text" msgid "Shortcut: [1]" -msgstr "Accesu direutu: [1]" +msgstr "Atayu: [1]" #. GeKVY #: ActionTe.ulf @@ -761,7 +761,7 @@ "OOO_ACTIONTEXT_83\n" "LngText.text" msgid "Shortcut: [1]" -msgstr "Accesu direutu: [1]" +msgstr "Atayu: [1]" #. A8hxh #: ActionTe.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 "Nun se puede crear l'accesu direutu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella." +msgstr "Nun se puede crear l'atayu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella." #. 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 "Nun se puede desaniciar l'accesu direutu [2]. Mira a ver que'l ficheru d'accesu direutu existe y que puedes acceder a elli." +msgstr "Nun se puede desaniciar l'atayu [2]. Mira a ver que'l ficheru d'atayu existe y que puedes acceder a elli." #. 3MqnE #: Error.ulf diff -Nru libreoffice-7.3.4/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -25699,7 +25699,7 @@ "Label\n" "value.text" msgid "Recent Doc~uments" -msgstr "Doc~umentos recientes" +msgstr "Doc~umentos recién" #. KSiFH #: GenericCommands.xcu @@ -29648,7 +29648,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. 8Nfyz #: ToolbarMode.xcu @@ -29738,7 +29738,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. 5bBrj #: ToolbarMode.xcu @@ -29808,7 +29808,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. DnZxB #: ToolbarMode.xcu @@ -29878,7 +29878,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "Llingüetes" #. mGCMC #: ToolbarMode.xcu diff -Nru libreoffice-7.3.4/translations/source/ast/oox/messages.po libreoffice-7.3.5/translations/source/ast/oox/messages.po --- libreoffice-7.3.4/translations/source/ast/oox/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/oox/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" #. C5e9E #: oox/inc/strings.hrc:15 @@ -35,7 +35,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/ast/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/ast/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2020-02-25 19:15+0000\n" -"Last-Translator: Xuacu Saturio \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2022-06-15 20:56+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022493.000000\n" #. q6Gg3 @@ -644,7 +644,7 @@ "w32e1\n" "readmeitem.text" msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documentation of your operating system." -msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'accesu direutu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi accesu direutu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu." +msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'atayu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi atayu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu." #. DBXZ8 #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/ast/reportdesign/messages.po libreoffice-7.3.5/translations/source/ast/reportdesign/messages.po --- libreoffice-7.3.4/translations/source/ast/reportdesign/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/reportdesign/messages.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516047320.000000\n" #. FBVr9 @@ -197,7 +197,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/sc/messages.po libreoffice-7.3.5/translations/source/ast/sc/messages.po --- libreoffice-7.3.4/translations/source/ast/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -92,7 +92,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -2419,7 +2419,7 @@ #: sc/inc/globstr.hrc:413 msgctxt "STR_UNDO_TEXTTOCOLUMNS" msgid "Text to Columns" -msgstr "Testu a Columnes" +msgstr "Testu a columnes" #. VWhZ3 #: sc/inc/globstr.hrc:414 @@ -21346,7 +21346,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:184 msgctxt "datafielddialog|extended_tip|checkbutton1" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Inclúi les columnes y fileres baleres na tabla de resultaos." #. CNVLs #: sc/uiconfig/scalc/ui/datafielddialog.ui:203 @@ -21770,7 +21770,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:203 msgctxt "dataproviderdlg/lbSource" msgid "Source" -msgstr "" +msgstr "Orixe" #. fHfGq #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:237 @@ -22386,7 +22386,7 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:29 msgctxt "deletecolumnentry|name" msgid "Delete Columns" -msgstr "" +msgstr "Desaniciar columnes" #. QFtCG #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:46 @@ -25661,97 +25661,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Oxetu" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Oxetu" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprentar" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Imprentar" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26128,153 +26128,153 @@ msgstr "Im_axe" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Posición" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Rexella" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Llingua" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Revisar" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentarios" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Comparar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Ver" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "E_ditar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Posición" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Ver" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Agrupar" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fonte" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Alliniación" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Ver" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inxertar" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Medios" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ma_rcu" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Posición" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Rexella" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" @@ -28044,7 +28044,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250 msgctxt "pivotfielddialog|extended_tip|showall" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Inclúi les columnes y fileres baleres na tabla de resultaos." #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269 @@ -28476,10 +28476,9 @@ #. QTYpg #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1001 -#, fuzzy msgctxt "pivottablelayoutdialog|label9" msgid "Source" -msgstr "Fonte:" +msgstr "Orixe" #. daE6g #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1019 @@ -31140,14 +31139,13 @@ #: sc/uiconfig/scalc/ui/solversuccessdialog.ui:88 msgctxt "solversuccessdialog|label2" msgid "Solving successfully finished." -msgstr "" +msgstr "Finó'l cálculu de la solución." #. hA9oa #: sc/uiconfig/scalc/ui/solversuccessdialog.ui:100 -#, fuzzy msgctxt "solversuccessdialog|result" msgid "Result:" -msgstr "Resultáu" +msgstr "Resultáu:" #. xDbWL #: sc/uiconfig/scalc/ui/sortcriteriapage.ui:33 @@ -31634,10 +31632,9 @@ #. jHRCJ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:349 -#, fuzzy msgctxt "standardfilterdialog|field1-atkobject" msgid "Field Name 1" -msgstr "Nome del campu" +msgstr "Nome del campu 1" #. e9keG #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:350 @@ -31647,10 +31644,9 @@ #. 4ozHK #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:368 -#, fuzzy msgctxt "standardfilterdialog|field2-atkobject" msgid "Field Name 2" -msgstr "Nome del campu" +msgstr "Nome del campu 2" #. yhdgc #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:369 @@ -31660,10 +31656,9 @@ #. C4XRG #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:387 -#, fuzzy msgctxt "standardfilterdialog|field3-atkobject" msgid "Field Name 3" -msgstr "Nome del campu" +msgstr "Nome del campu 3" #. FCNiT #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:388 @@ -31673,10 +31668,9 @@ #. Y9hSS #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:403 -#, fuzzy msgctxt "standardfilterdialog|field4-atkobject" msgid "Field Name 4" -msgstr "Nome del campu" +msgstr "Nome del campu 4" #. ajVU5 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:423 @@ -31788,10 +31782,9 @@ #. rmPTC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:441 -#, fuzzy msgctxt "standardfilterdialog|cond1-atkobject" msgid "Condition 1" -msgstr "Condición" +msgstr "Condición 1" #. D79PB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:442 @@ -31801,10 +31794,9 @@ #. yBMtw #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:480 -#, fuzzy msgctxt "standardfilterdialog|cond2-atkobject" msgid "Condition 2" -msgstr "Condición" +msgstr "Condición 2" #. XVyyC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:481 @@ -31814,10 +31806,9 @@ #. wrG8B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:519 -#, fuzzy msgctxt "standardfilterdialog|cond3-atkobject" msgid "Condition 3" -msgstr "Condición" +msgstr "Condición 3" #. aHUBP #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:520 @@ -31827,10 +31818,9 @@ #. ieYAs #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:555 -#, fuzzy msgctxt "standardfilterdialog|cond4-atkobject" msgid "Condition 4" -msgstr "Condición" +msgstr "Condición 4" #. LyiFB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:569 @@ -32537,7 +32527,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:812 msgctxt "textimportcsv|textalttitle" msgid "Text to Columns" -msgstr "Testu a Columnes" +msgstr "Testu a columnes" #. XjAZq #: sc/uiconfig/scalc/ui/textimportcsv.ui:826 @@ -32585,10 +32575,9 @@ #. iRYr7 #: sc/uiconfig/scalc/ui/textimportoptions.ui:169 -#, fuzzy msgctxt "textimportoptions|convertdata" msgid "Detect special numbers (such as dates)" -msgstr "Detectar númberos especiales (talos como dates)." +msgstr "Detectar númberos especiales (talos como dates)" #. 6aP7U #: sc/uiconfig/scalc/ui/textimportoptions.ui:183 @@ -32600,7 +32589,7 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:28 msgctxt "texttransformationentry|name" msgid "Text Transformation" -msgstr "Tresformación de testu" +msgstr "Tresformación del testu" #. zXpJU #: sc/uiconfig/scalc/ui/texttransformationentry.ui:47 diff -Nru libreoffice-7.3.4/translations/source/ast/scaddins/messages.po libreoffice-7.3.5/translations/source/ast/scaddins/messages.po --- libreoffice-7.3.4/translations/source/ast/scaddins/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/scaddins/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516029136.000000\n" #. i8Y7Z @@ -4067,7 +4067,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/sccomp/messages.po libreoffice-7.3.5/translations/source/ast/sccomp/messages.po --- libreoffice-7.3.4/translations/source/ast/sccomp/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/sccomp/messages.po 2022-07-15 19:12:51.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-29 16:03+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1511366288.000000\n" #. whDxm @@ -109,7 +109,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/sd/messages.po libreoffice-7.3.5/translations/source/ast/sd/messages.po --- libreoffice-7.3.4/translations/source/ast/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -228,7 +228,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -2684,10 +2684,9 @@ #. eJ4qZ #: sd/inc/strings.hrc:412 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY" msgid "First color:" -msgstr "Primer columna" +msgstr "Primer color:" #. CSbCE #: sd/inc/strings.hrc:413 @@ -2752,10 +2751,9 @@ #. R3GgU #: sd/inc/strings.hrc:422 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY" msgid "Size:" -msgstr "Tamañu" +msgstr "Tamañu:" #. YEwoz #: sd/inc/strings.hrc:423 @@ -2766,10 +2764,9 @@ #. wiQPZ #: sd/inc/strings.hrc:424 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY" msgid "Color:" -msgstr "Color" +msgstr "Color:" #. f5u6C #: sd/inc/strings.hrc:425 @@ -4230,109 +4227,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imaxe" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Oxetu" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Oxetu" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -5284,7 +5281,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:645 msgctxt "customanimationspanel|custom_animation_list_label" msgid "Animation List" -msgstr "" +msgstr "Llista d'animaciones" #. F7AZL #: sd/uiconfig/simpress/ui/customanimationspanel.ui:701 @@ -5417,7 +5414,7 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:103 msgctxt "customanimationtimingtab|start_list" msgid "On click" -msgstr "Al facer clic" +msgstr "En calcando" #. b2hFe #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:104 @@ -5441,7 +5438,7 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:160 msgctxt "customanimationtimingtab|rewind" msgid "Rewind _when done playing" -msgstr "Re_bobinar en acabando de reproducir" +msgstr "Re_bobinar n'acabando de reproducir" #. jkPKA #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:179 @@ -7186,109 +7183,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imaxe" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Oxetu" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Oxetu" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "_3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "~3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/sfx2/messages.po libreoffice-7.3.5/translations/source/ast/sfx2/messages.po --- libreoffice-7.3.4/translations/source/ast/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540149375.000000\n" #. bHbFE @@ -757,7 +757,7 @@ #: include/sfx2/strings.hrc:145 msgctxt "STR_QUICKSTART_RECENTDOC" msgid "Recent Documents" -msgstr "Documentos recientes" +msgstr "Documentos recién" #. DirQf #: include/sfx2/strings.hrc:146 @@ -1996,7 +1996,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -2915,7 +2915,7 @@ #: sfx2/uiconfig/ui/charmapcontrol.ui:261 msgctxt "charmapcontrol|label2" msgid "Recent" -msgstr "" +msgstr "Recién" #. BQwCQ #: sfx2/uiconfig/ui/charmapcontrol.ui:500 @@ -3214,13 +3214,13 @@ #: sfx2/uiconfig/ui/developmenttool.ui:598 msgctxt "developmenttool|parameters" msgid "Parameters" -msgstr "" +msgstr "Parámetros" #. tmttq #: sfx2/uiconfig/ui/developmenttool.ui:612 msgctxt "developmenttool|implementation_class" msgid "Implementation Class" -msgstr "" +msgstr "Clas d'implementación" #. Q2CBK #: sfx2/uiconfig/ui/developmenttool.ui:634 diff -Nru libreoffice-7.3.4/translations/source/ast/shell/messages.po libreoffice-7.3.5/translations/source/ast/shell/messages.po --- libreoffice-7.3.4/translations/source/ast/shell/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/shell/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" #. 9taro #: shell/inc/spsupp/spsuppStrings.hrc:15 @@ -63,7 +63,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/starmath/messages.po libreoffice-7.3.5/translations/source/ast/starmath/messages.po --- libreoffice-7.3.4/translations/source/ast/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525785908.000000\n" #. GrDhX @@ -432,7 +432,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/svl/messages.po libreoffice-7.3.5/translations/source/ast/svl/messages.po --- libreoffice-7.3.4/translations/source/ast/svl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/svl/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1519741537.000000\n" #. PDMJD @@ -37,7 +37,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/svtools/messages.po libreoffice-7.3.5/translations/source/ast/svtools/messages.po --- libreoffice-7.3.4/translations/source/ast/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542195213.000000\n" #. fLdeV @@ -1741,7 +1741,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -5122,7 +5122,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:51 msgctxt "graphicexport|GraphicExportDialog" msgid "%1 Options" -msgstr " Opciones de %1" +msgstr "Opciones de %1" #. C3C7t #: svtools/uiconfig/ui/graphicexport.ui:141 diff -Nru libreoffice-7.3.4/translations/source/ast/svx/messages.po libreoffice-7.3.5/translations/source/ast/svx/messages.po --- libreoffice-7.3.4/translations/source/ast/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -10170,7 +10170,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/sw/messages.po libreoffice-7.3.5/translations/source/ast/sw/messages.po --- libreoffice-7.3.4/translations/source/ast/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -132,7 +132,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -7584,7 +7584,7 @@ #: sw/inc/strings.hrc:958 msgctxt "FLD_INPUT_TEXT" msgid "[Text]" -msgstr "" +msgstr "[Testu]" #. TyYok #. -------------------------------------------------------------------- @@ -9615,7 +9615,7 @@ #: sw/inc/strings.hrc:1331 msgctxt "STR_AUTOMARK_TYPE" msgid "Selection file for the alphabetical index (*.sdi)" -msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)" +msgstr "Ficheru d'esbilla pal indiz alfabéticu (*.sdi)" #. Rvcdk #. ----------------------------------------------------------------------- @@ -9654,7 +9654,7 @@ #: sw/inc/strings.hrc:1341 msgctxt "STR_FRMUI_COLL_HEADER" msgid " (Template: " -msgstr " (Plantilla: " +msgstr " (Plantía: " #. oUhnK #: sw/inc/strings.hrc:1342 @@ -9672,7 +9672,7 @@ #: sw/inc/strings.hrc:1345 msgctxt "STR_TEXTCOLL_HEADER" msgid "(Paragraph Style: " -msgstr "(Estilu Párrafu: " +msgstr "(Estilu de párrafu: " #. Fsanh #: sw/inc/strings.hrc:1346 @@ -9715,7 +9715,7 @@ #: sw/inc/strings.hrc:1355 msgctxt "STR_LANGSTATUS_NONE" msgid "None (Do not check spelling)" -msgstr "Dengún (Nun igua la ortografía)" +msgstr "Dengún (nun igua la ortografía)" #. Z8EjG #: sw/inc/strings.hrc:1356 @@ -10644,19 +10644,19 @@ msgstr "Mueve l'estilu de párrafu escoyíu un nivel embaxo na xerarquía d'índices." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilos" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crea entraes del índiz a partir d'estilos concretos de párrafos." @@ -14147,37 +14147,37 @@ msgstr "Bases de Datos Exchange" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de Datos n'Usu" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "B_ases de datos disponibles" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Restolar..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Abre un diálogu d'apertura de ficheros pa escoyer un ficheru de base de datos (*.odb). El ficheru escoyíu incorporar a la llista Bases de datos disponibles." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14187,31 +14187,31 @@ "Usar el botón restolar pa seleicionar un ficheru de base de datos." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Amuesa les bases de datos n'usu." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Presenta la llista de les bases de datos que tan rexistraes en %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Bases de Datos Exchange" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de datos aplicaes al documentu:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Camuda l'orixe de datos del documentu abiertu." @@ -20380,110 +20380,110 @@ msgstr "Usar el _documentu actual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilice'l documentu de Writer actual como base del documentu de combinar correspondencia." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crear un documentu _nuevu" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Cree un documentu de Writer pa utilizase cola combinación de correspondencia." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Partir d'un documentu _esistente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Escueya un documentu de Writer pa utilizalo como base del documentu de combinar correspondencia." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Partir d'una plan_tía" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Escueya la plantía cola que deseya crear el documentu de combinar correspondencia." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Partir d'un docu_mentu de partida recién guardáu" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utilice un documentu de combinar correspondencia como base pa unu nuevu." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Escueya'l documentu." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Navega_r..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Llocalizar el documentu de Writer que quier usar, y dempués facer clic en Abrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Navega_r..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleicionar documentu de partida pa la combinación de corréu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22643,49 +22643,49 @@ msgstr "Oxetu" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Triba" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opciones" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Axuste" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperenllaz" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Berbesos" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Tresparencia" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -25063,7 +25063,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:41 msgctxt "picturepage|extended_tip|browse" msgid "Locate the new graphic file that you want to link to, and then click Open." -msgstr "Busque el ficheru d'imaxe nuevu que deseya enllazar y faiga clic en Abrir." +msgstr "Gueta'l ficheru d'imaxe nuevu al que quies enllazar y calca Abrir." #. dGTfN #: sw/uiconfig/swriter/ui/picturepage.ui:59 @@ -27202,10 +27202,9 @@ #. XC5zv #: sw/uiconfig/swriter/ui/sortdialog.ui:729 -#, fuzzy msgctxt "sortdialog|delimpb" msgid "Select..." -msgstr "Seleición..." +msgstr "Esbillar..." #. VhhBB #: sw/uiconfig/swriter/ui/sortdialog.ui:739 @@ -27454,7 +27453,7 @@ msgstr "Anovar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/uui/messages.po libreoffice-7.3.5/translations/source/ast/uui/messages.po --- libreoffice-7.3.4/translations/source/ast/uui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/uui/messages.po 2022-07-15 19:12:51.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-11-19 15:45+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1522251360.000000\n" #. DLY8p @@ -538,7 +538,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/vcl/messages.po libreoffice-7.3.5/translations/source/ast/vcl/messages.po --- libreoffice-7.3.4/translations/source/ast/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022501.000000\n" #. k5jTM @@ -543,7 +543,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" @@ -2326,169 +2326,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizáu" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Páxines:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "por" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marxe:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ente les páxines" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "al berbesu la fueya" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dibuxar un berbesu alredor de cada páxina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Folletu" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ast/wizards/messages.po libreoffice-7.3.5/translations/source/ast/wizards/messages.po --- libreoffice-7.3.4/translations/source/ast/wizards/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/wizards/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516047326.000000\n" #. gbiMx @@ -278,7 +278,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:76 msgctxt "RID_LETTERWIZARDDIALOG_START_21" msgid "Use placeholders for ~recipient's address" -msgstr "Usar los marcadores de posición pa les señes del ~destinatariu" +msgstr "Usar llugares de colocación pa les señes del ~destinatariu" #. AkZCA #: wizards/com/sun/star/wizards/common/strings.hrc:77 @@ -843,7 +843,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:178 msgctxt "RID_FAXWIZARDDIALOG_START_38" msgid "Use placeholders for ~recipient's address" -msgstr "Usar los marcadores de posición pa les señes del ~destinatariu" +msgstr "Usar llugares de colocación pa les señes del ~destinatariu" #. gqzFF #: wizards/com/sun/star/wizards/common/strings.hrc:179 @@ -1048,7 +1048,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:220 msgctxt "RID_FAXWIZARDROADMAP_START_5" msgid "Name and Location" -msgstr "" +msgstr "Nome y allugamientu" #. N6985 #: wizards/com/sun/star/wizards/common/strings.hrc:223 @@ -1150,7 +1150,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:239 msgctxt "RID_AGENDAWIZARDDIALOG_START_17" msgid "Placeholders will be used in empty fields. You can replace placeholders with text later." -msgstr "Nos campos vacios úsense marcadores de posición. Dempués puedes camudalos por testu." +msgstr "Nos campos vacios úsense llugares de colocación. Dempués puedes camudalos por testu." #. raUGn #: wizards/com/sun/star/wizards/common/strings.hrc:240 @@ -1360,13 +1360,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:274 msgctxt "RID_AGENDAWIZARDDIALOG_START_54" msgid "Agenda Items" -msgstr "" +msgstr "Puntos del orde del día" #. rSC3E #: wizards/com/sun/star/wizards/common/strings.hrc:275 msgctxt "RID_AGENDAWIZARDDIALOG_START_55" msgid "Name and Location" -msgstr "" +msgstr "Nome y allugamientu" #. VNixB #: wizards/com/sun/star/wizards/common/strings.hrc:276 @@ -1420,13 +1420,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:284 msgctxt "RID_AGENDAWIZARDDIALOG_START_64" msgid "Minute keeper" -msgstr "Controlador de minutos" +msgstr "Secretariu/a" #. m4CU7 #: wizards/com/sun/star/wizards/common/strings.hrc:285 msgctxt "RID_AGENDAWIZARDDIALOG_START_65" msgid "Moderator" -msgstr "Moderador" +msgstr "Moderador/a" #. gDUai #: wizards/com/sun/star/wizards/common/strings.hrc:286 @@ -1626,7 +1626,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/writerperfect/messages.po libreoffice-7.3.5/translations/source/ast/writerperfect/messages.po --- libreoffice-7.3.4/translations/source/ast/writerperfect/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/writerperfect/messages.po 2022-07-15 19:12:51.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-23 11:46+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525785911.000000\n" #. DXXuk @@ -72,7 +72,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/ast/xmlsecurity/messages.po libreoffice-7.3.5/translations/source/ast/xmlsecurity/messages.po --- libreoffice-7.3.4/translations/source/ast/xmlsecurity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ast/xmlsecurity/messages.po 2022-07-15 19:12:51.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-29 16:04+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1527110958.000000\n" #. EyJrF @@ -235,7 +235,7 @@ #. S9dsC msgctxt "stock" msgid "_Apply" -msgstr "" +msgstr "Apl_icar" #. TMo6G msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/az/chart2/messages.po libreoffice-7.3.5/translations/source/az/chart2/messages.po --- libreoffice-7.3.4/translations/source/az/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3619,7 +3619,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/cui/messages.po libreoffice-7.3.5/translations/source/az/cui/messages.po --- libreoffice-7.3.4/translations/source/az/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17227,176 +17227,152 @@ msgid "Automatic" msgstr "" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/dbaccess/messages.po libreoffice-7.3.5/translations/source/az/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/az/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-01 21:46+0000\n" "Last-Translator: Emin Mastizada \n" "Language-Team: LANGUAGE \n" @@ -3332,73 +3332,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Aç" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3406,7 +3406,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/extensions/messages.po libreoffice-7.3.5/translations/source/az/extensions/messages.po --- libreoffice-7.3.4/translations/source/az/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -296,539 +296,527 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(Seçilmiş)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Yox" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Hə" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Dayan" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Varsayılan" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Xərçəng" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Yardım" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Əvəzlə" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Yığ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Yox" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/fpicker/messages.po libreoffice-7.3.5/translations/source/az/fpicker/messages.po --- libreoffice-7.3.4/translations/source/az/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -214,57 +214,57 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fayl adı:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Avtomatik fayl adı uzantısı" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/sc/messages.po libreoffice-7.3.5/translations/source/az/sc/messages.po --- libreoffice-7.3.4/translations/source/az/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25249,97 +25249,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25710,145 +25710,145 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Şərhlər" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Göstәr" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Düzəlt" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Göstәr" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Göstәr" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Daxil et" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/az/sd/messages.po libreoffice-7.3.5/translations/source/az/sd/messages.po --- libreoffice-7.3.4/translations/source/az/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4190,109 +4190,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7093,109 +7093,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/sw/messages.po libreoffice-7.3.5/translations/source/az/sw/messages.po --- libreoffice-7.3.4/translations/source/az/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10569,19 +10569,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14068,37 +14068,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14106,31 +14106,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20238,109 +20238,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22494,49 +22494,49 @@ msgstr "Obyektlər" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Növ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Seçimlər" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27277,7 +27277,7 @@ msgstr "~Yenilə" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/az/vcl/messages.po libreoffice-7.3.5/translations/source/az/vcl/messages.po --- libreoffice-7.3.4/translations/source/az/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/az/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2339,169 +2339,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/chart2/messages.po libreoffice-7.3.5/translations/source/be/chart2/messages.po --- libreoffice-7.3.4/translations/source/be/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/cui/messages.po libreoffice-7.3.5/translations/source/be/cui/messages.po --- libreoffice-7.3.4/translations/source/be/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17131,176 +17131,152 @@ msgid "Automatic" msgstr "Аўтаматычна" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галактыка" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Моцны кантраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Оксіген" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Класіка" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Брыз" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Стыль піктаграм:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Патрабуе перазапуск" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Карыстацца апаратнымі паскаральнікамі" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Згладжванне краёў (Anti-A_liasing)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Вывад графікі" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "З перадпаказам шрыфтаў" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Згладжванне шрыфтаў на экране" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ад:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Спісы шрыфтаў" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/dbaccess/messages.po libreoffice-7.3.5/translations/source/be/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/be/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3395,73 +3395,73 @@ msgstr "Стварыць новую базу даных" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Убудаваная база даных:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Адкрыць наяўны ф_айл базы даных" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Нядаўна выкарыстаныя:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Адкрыць" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Далучыцца да наяўнай базы даных" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/extensions/messages.po libreoffice-7.3.5/translations/source/be/extensions/messages.po --- libreoffice-7.3.4/translations/source/be/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Перачытаць форму" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Тэкст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартна (каротка)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартна (каротка ГГ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартна (каротка ГГГГ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартна (доўга)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/ГГ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/ГГ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ГГ/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/ГГГГ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/ГГГГ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ГГГГ/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ГГ-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Не выбрана" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Выбрана" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Нявызначана" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Усе запісы" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Актыўны запіс" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Цяперашняя старонка" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Не" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Так" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Бацькоўская форма" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Няма" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Адзінкавы" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Множны" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Дыяпазон" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Гарызантальны" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертыкальны" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Прадвызначана" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ОК" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Нічога" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Даведка" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Азначаны складнік" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Пазіцыя азначанага складніка" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Адна-радковы" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Многарадковы" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Многарадковы з фарматаваннем" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Няма" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Гарызантальна" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертыкальна" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Абодва" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Плоска" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Левы верх" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Левы цэнтр" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Левы ніз" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Правы верх" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Правы цэнтр" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Правы ніз" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Над і злева" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Над і ў цэнтры" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Над і справа" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Пад і злева" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Пад і ў цэнтры" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Пад і справа" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "У цэнтры" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Захоўваць" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Замяніць" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Згарнуць" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Не" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Захоўваць прапорцыі" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Дапасаваць да памеру" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Злева направа" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Справа налева" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Як у вышэйпастаўленага аб'екта" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ніколі" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Калі ў фокусе" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Заўсёды" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Да абзацу" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Як знак" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Да старонкі" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Да рамкі" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Да знаку" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Да старонкі" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Да клеткі" diff -Nru libreoffice-7.3.4/translations/source/be/fpicker/messages.po libreoffice-7.3.5/translations/source/be/fpicker/messages.po --- libreoffice-7.3.4/translations/source/be/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Назва файла:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Тып файла:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Толь_кі-чытанае" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Запісаць з паролем" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Аўтаматычна дапісваць канчатак назвы файла" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Пр_авіць настаўленні фільтра" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Зашыфраваць ключом GPG" diff -Nru libreoffice-7.3.4/translations/source/be/sc/messages.po libreoffice-7.3.5/translations/source/be/sc/messages.po --- libreoffice-7.3.4/translations/source/be/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25811,97 +25811,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26271,142 +26271,142 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Упарадкаваць" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Колер" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Рашотка" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Мова" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Праверыць" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Заўвагі" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Параўнаць" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Від" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Рысаваць" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Змяніць" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Упарадкаваць" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Від" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Група" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Шрыфт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Раўнаванне" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Від" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Уставіць" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Медыя" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Рам_ка" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Упарадкаваць" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Рашотка" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Від" diff -Nru libreoffice-7.3.4/translations/source/be/sd/messages.po libreoffice-7.3.5/translations/source/be/sd/messages.po --- libreoffice-7.3.4/translations/source/be/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4179,109 +4179,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7068,109 +7068,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/sw/messages.po libreoffice-7.3.5/translations/source/be/sw/messages.po --- libreoffice-7.3.4/translations/source/be/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10501,19 +10501,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стылі" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13957,37 +13957,37 @@ msgstr "Абмяніць базы даных" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Акрэсліць" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Ужываныя базы даных" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Базы даных у наяўнасці" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Выбраць..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13997,31 +13997,31 @@ "Выбраць файл базы даных можна праз кнопку \"Выбраць\"." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Абмяніць базы даных" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "База даных ужытая ў дакуменце:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20075,109 +20075,109 @@ msgstr "Ужыць адкрыты дакумент" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Ствары_ць новы дакумент" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Пачаць з прыс_утнага дакумента" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Пачаць з шаблона" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Пачац_ь з нядаўна запісанага пачатковага дакументу" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Выбраць..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Выбраць..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Выбраць дакумент як аснову для памножанай пошты" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22320,49 +22320,49 @@ msgstr "Аб'ект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тып" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Настаўленні" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Загарнуць" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Спасылка" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Межы" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Абсяг" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Празрыстасць" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрас" @@ -27054,7 +27054,7 @@ msgstr "Абнавіць" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/be/vcl/messages.po libreoffice-7.3.5/translations/source/be/vcl/messages.po --- libreoffice-7.3.4/translations/source/be/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/be/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Па-свойму" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "на" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "паміж старонкамі" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "да краю аркуша" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Мяжа навокал кожнай старонкі" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брашура" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bg/chart2/messages.po libreoffice-7.3.5/translations/source/bg/chart2/messages.po --- libreoffice-7.3.4/translations/source/bg/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-20 14:53+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -3602,7 +3602,7 @@ msgstr "Определя броя на линиите в диаграма от тип „Колона и линия“." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Изберете основния тип на диаграмата." diff -Nru libreoffice-7.3.4/translations/source/bg/connectivity/messages.po libreoffice-7.3.5/translations/source/bg/connectivity/messages.po --- libreoffice-7.3.4/translations/source/bg/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2021-02-26 09:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.12.2\n" "X-POOTLE-MTIME: 1536274064.000000\n" #. 9KHB8 @@ -391,7 +391,7 @@ #: connectivity/inc/strings.hrc:88 msgctxt "STR_QUERY_COMPLEX_COUNT" msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported." -msgstr "Заявката не може да бъде изпълнена, тъй като в твърде сложна. Поддържа се само „COUNT(*)“." +msgstr "Заявката не може да бъде изпълнена, тъй като е твърде сложна. Поддържа се само „COUNT(*)“." #. 8VQo4 #: connectivity/inc/strings.hrc:89 @@ -415,7 +415,7 @@ #: connectivity/inc/strings.hrc:92 msgctxt "STR_DELETE_ROW" msgid "The row could not be deleted. The option \"Display inactive records\" is set." -msgstr "Заявката не може да бъде изпълнена." +msgstr "Заявката не може да бъде изпълнена. Включена е настройката „Показване на неактивните записи“." #. TZTfv #: connectivity/inc/strings.hrc:93 diff -Nru libreoffice-7.3.4/translations/source/bg/cui/messages.po libreoffice-7.3.5/translations/source/bg/cui/messages.po --- libreoffice-7.3.4/translations/source/bg/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-19 10:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564897785.000000\n" #. GyY9M @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Автоматично" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Висок контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Класически" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Указва стила на иконите в лентите с инструменти и диалоговите прозорци." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Стил на иконите:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Добавяне на още теми с икони чрез разширение" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Стил на иконите" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Изисква рестартиране" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Използване на хард_уерно ускоряване" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Разрешава пряк достъп до хардуерните възможности на графичния адаптер, за да се подобри изображението върху екрана." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Изглаждане на назъбванията" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Когато се поддържа, можете да включвате и изключвате изглаждането на назъбените краища в графики. С включено изглаждане повечето графични обекти изглеждат на екрана по-гладки и с по-малко дефекти." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Рендиране на всичко със Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Налагане на софтуерно рендиране със Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Изисква рестартиране. Забранява използването на графичните драйвери." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia е включен." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia е изключен." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графичен изход" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Показване на _мостра от шрифтовете" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "Показва имената на достъпните за избиране шрифтове със самите шрифтове, например за шрифтовете от списъка на лентата Форматиране." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Из_глаждане на екранните шрифтове" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Отметнете, ако желаете текстът да се изглажда при показване на екрана." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "от:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Въведете най-малкия размер на шрифта, при който да се изглаждат назъбванията." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Списъци с шрифтове" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Изпълняване на тестове за графика" diff -Nru libreoffice-7.3.4/translations/source/bg/dbaccess/messages.po libreoffice-7.3.5/translations/source/bg/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/bg/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-31 21:50+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562324222.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Създаване на _нова база от данни" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Изберете това, за да създадете нова база от данни." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Вградена база от данни:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Отваряне на съществуващ _файл на база от данни" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Изберете това, за да отворите файл на база от данни от списък с последните използвани файлове или чрез диалогов прозорец за избор на файл." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Наскоро _използвани:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Изберете файл от списъка с последните използвани файлове. Натиснете „Готово“, за да отворите файла незабавно, затваряйки помощника." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Отваряне" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Отваря диалогов прозорец за избор на файлове, в който можете да изберете файл на база от данни. Натиснете „Отваряне“ или „OK“ в диалоговия прозорец, за да отворите файла незабавно, затваряйки помощника." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Създаване на _връзка към съществуваща база от данни" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Изберете това, за да създадете нов документ на база от данни за съществуваща връзка към база от данни." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Изберете вида на базата от данни за съществуващата връзка." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "не е налице нито HSQLDB, нито Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Помощникът за бази от данни създава файл на база от данни, който съдържа информация за базата." diff -Nru libreoffice-7.3.4/translations/source/bg/extensions/messages.po libreoffice-7.3.5/translations/source/bg/extensions/messages.po --- libreoffice-7.3.4/translations/source/bg/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-18 09:18+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562351698.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Опресняване на формуляра" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартен (кратък)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартен (кратък ГГ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартен (кратък ГГГГ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартен (дълъг)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/ГГ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/ГГ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ГГ/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/ГГГГ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/ГГГГ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ГГГГ/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ГГ-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Не е избрано" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Избрано" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Неопределено" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Всички записи" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Активен запис" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Текуща страница" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Не" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Да" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Родителски формуляр" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Няма" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Единичен" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Множествен" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Диапазон" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Хоризонтална" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертикална" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "По подразбиране" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Отказ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Помощ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Избраният запис" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Позицията на избрания запис" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "На един ред" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "На няколко реда" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "На няколко реда с форматиране" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Няма" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Хоризонтален" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикален" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "И двата" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Релефен" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Плосък" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Отляво горе" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Отляво в средата" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Отляво долу" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Отдясно горе" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Отдясно в средата" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Отдясно долу" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Отгоре вляво" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Отгоре в средата" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Отгоре вдясно" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Отдолу вляво" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Отдолу в средата" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Отдолу вдясно" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "В средата" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Запазване" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Заместване" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Свиване" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Не" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Запазване на пропорциите" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Напасване по размер" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "От ляво надясно" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "От дясно наляво" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Настройки от родителския обект" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Никога" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "При фокус" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Винаги" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Към абзац" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Като знак" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Към страница" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Към рамка" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Към знак" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Към страница" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Към клетка" diff -Nru libreoffice-7.3.4/translations/source/bg/fpicker/messages.po libreoffice-7.3.5/translations/source/bg/fpicker/messages.po --- libreoffice-7.3.4/translations/source/bg/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-26 09:36+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -216,55 +216,55 @@ msgstr "Дата на промяна" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Отваряне" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Пускане" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Име на файл:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Тип файл:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Само за четене" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Записване с парола" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Автоматично разширение" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Настройки на филтъра" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Шифроване с ключ на GPG" diff -Nru libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562357378.000000\n" #. yzYVt @@ -3452,7 +3452,7 @@ "par_id3156441\n" "help.text" msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 kB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library." -msgstr "Модулите съдържат процедури, функции и декларации на променливи. Дължината на програмата, която може да се съхранява в един модул, е ограничена до 64 КБ. Ако е необходимо повече пространство, можете да разделите проекта на $[officename] Basic на няколко модула и да ги запишете в една обща библиотека." +msgstr "Модулите съдържат процедури, функции и декларации на променливи. Дължината на програмата, която може да се съхранява в един модул, е ограничена до 64 кБ. Ако е необходимо повече пространство, можете да разделите проекта на $[officename] Basic на няколко модула и да ги запишете в една обща библиотека." #. oo2bB #: 01020500.xhp diff -Nru libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -12921,7 +12921,7 @@ "par_id441635243969504\n" "help.text" msgid "=TRUNC(-45.67) returns -45. The default value for Count is 0." -msgstr "" +msgstr "=TRUNC(-45,67) връща -45. Подразбираната стойност за Брой is 0." #. gMj5a #: 04060106.xhp @@ -67371,7 +67371,7 @@ "par_id240920171007389295\n" "help.text" msgid "Menu Data – Streams..." -msgstr "" +msgstr "Меню Данни - Потоци..." #. k7H5Y #: solver.xhp @@ -69963,7 +69963,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;regression analysisregression analysis;Analysis toolpackData statistics;regression analysisConfidence level;regression analysisregression analysis;linearregression analysis;powerregression analysis;logarithmic" -msgstr "" +msgstr "анализ, инструменти за;регресионен анализрегресионен анализ;анализ, инструменти застатистики на данни;регресионен анализниво на доверие;регресионен анализрегресионен анализ;линеенрегресионен анализ;експоненциаленрегресионен анализ;логаритмичен" #. UPKr7 #: statistics_regression.xhp @@ -69981,7 +69981,7 @@ "par_id1001240\n" "help.text" msgid "Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables." -msgstr "" +msgstr "Извършва линеен, логаритмичен или степенен регресионен анализ на съвкупност от данни, включваща една зависима променлива и множество независими променливи." #. PDDGb #: statistics_regression.xhp @@ -69990,7 +69990,7 @@ "par_id431629832333206\n" "help.text" msgid "For example, a crop yield (dependent variable) may be related to rainfall, temperature conditions, sunshine, humidity, soil quality and more, all of them independent variables." -msgstr "" +msgstr "Например добивът на дадена култура (зависима променлива) може да е свързан с валежите, температурните условия, слънчевата светлина, влажността, качеството на почвата и други, всички от които са независими променливи." #. ENJtD #: statistics_regression.xhp @@ -70017,7 +70017,7 @@ "hd_id891629830986496\n" "help.text" msgid "Data" -msgstr "" +msgstr "Данни" #. 9uRGh #: statistics_regression.xhp @@ -70026,7 +70026,7 @@ "hd_id101629830993962\n" "help.text" msgid "Independent variable(s) (X) range:" -msgstr "" +msgstr "Диапазон с независими променливи (X):" #. XGD77 #: statistics_regression.xhp @@ -70035,7 +70035,7 @@ "par_id961629834099308\n" "help.text" msgid "Enter a single range that contains multiple independent variable observations (along columns or rows). All X variable observations need to be entered adjacent to each other in the same table." -msgstr "" +msgstr "Въведете един диапазон, който съдържа множество наблюдения на независимите променливи (по колоните или редовете. Всички наблюдения на променливата X трябва да бъдат въведени едно до друго в една и съща таблица." #. yCogF #: statistics_regression.xhp @@ -70044,7 +70044,7 @@ "hd_id871629830998653\n" "help.text" msgid "Dependent variable (Y) range:" -msgstr "" +msgstr "Диапазон със зависими променливи (Y):" #. NiB9B #: statistics_regression.xhp @@ -70053,7 +70053,7 @@ "par_id391629834089370\n" "help.text" msgid "Enter the range that contains the dependent variable whose regression is to be calculated." -msgstr "" +msgstr "Въведете диапазона, съдържащ зависимата променлива, чиято регресия трябва да се изчисли." #. A8dZ8 #: statistics_regression.xhp @@ -70062,7 +70062,7 @@ "hd_id931629831003368\n" "help.text" msgid "Both X and Y ranges have labels" -msgstr "" +msgstr "Диапазоните X и Y имат надписи" #. mSnba #: statistics_regression.xhp @@ -70071,7 +70071,7 @@ "par_id261629834071776\n" "help.text" msgid "Check to use the first line (or column) of the data sets as variable names in the output range." -msgstr "" +msgstr "Отметнете, за да се използва първият ред (или колона) на наборите от данни като имена на променливите в диапазона с резултата." #. 7TDwz #: statistics_regression.xhp @@ -70080,7 +70080,7 @@ "hd_id11629831014811\n" "help.text" msgid "Results to:" -msgstr "" +msgstr "Резултати в:" #. CAKdU #: statistics_regression.xhp @@ -70089,7 +70089,7 @@ "par_id441629834000533\n" "help.text" msgid "The reference of the top left cell of the range where the results will be displayed." -msgstr "" +msgstr "Обръщение към горната лява клетка на диапазона, в който да се покажат резултатите." #. ZMxv6 #: statistics_regression.xhp @@ -70098,7 +70098,7 @@ "hd_id1000070\n" "help.text" msgid "Output Regression Types" -msgstr "" +msgstr "Варианти за извеждане на регресия" #. QMDBG #: statistics_regression.xhp @@ -70116,7 +70116,7 @@ "par_id1701201620334364\n" "help.text" msgid "Linear Regression: finds a linear function in the form of y = b + a1.[x1] + a2.[x2] + a3.[x3] ..., where ai is the i-th slope, [xi] is the i-th independent variable, and b is the intercept that best fits the data." -msgstr "" +msgstr "Линейна регресия: намира линейна функция във вида y = b + a1.[x1] + a2.[x2] + a3.[x3] ..., където ai е i-тият наклон, [xi] е i-тата независима променлива, а b е свободният член, който най-добре пасва на данните." #. cR7FM #: statistics_regression.xhp @@ -70125,7 +70125,7 @@ "par_id1701201620340168\n" "help.text" msgid "Logarithmic regression: finds a logarithmic curve in the form of y = b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ..., where ai is the i-th coefficient, b is the intercept and ln[xi] is the natural logarithm of the i-th independent variable, that best fits the data." -msgstr "" +msgstr "Логаритмична регресия: намира логаритмична крива във вида y = b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ..., където ai е i-тият коефициент, b е свободният член и ln[xi] е натуралният логаритъм на i-тата независима променлива, който най-добре пасва на данните." #. YfNEL #: statistics_regression.xhp @@ -70134,7 +70134,7 @@ "par_id1701201620340139\n" "help.text" msgid "Power regression: finds a power curve in the form of y = exp( b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ...), where ai is the i-th power, [xi] is the i-th independent variable, and b is intercept that best fits the data." -msgstr "" +msgstr "Степенна регресия: намира експоненциална крива във вида y = exp( b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ...), където ai е i-тият степенен показател, [xi] е i-тата независима променлива, а b е свободният член, който най-добре пасва на данните." #. 3KkxA #: statistics_regression.xhp @@ -70143,7 +70143,7 @@ "hd_id331629834218606\n" "help.text" msgid "Options" -msgstr "" +msgstr "Настройки" #. uBCr7 #: statistics_regression.xhp @@ -70152,7 +70152,7 @@ "hd_id481629834269509\n" "help.text" msgid "Confidence level" -msgstr "" +msgstr "Ниво на доверие" #. YjBMV #: statistics_regression.xhp @@ -70161,7 +70161,7 @@ "par_id971629835636129\n" "help.text" msgid "A numeric value between 0 and 1 (exclusive), default is 0.95. Calc uses this percentage to compute the corresponding confidence intervals for each of the estimates (namely the slopes and intercept)." -msgstr "" +msgstr "Числова стойност между 0 и 1 (отворен интервал), подразбира се 0,95. Calc използва този процент, за да изчисли съответните доверителни интервали за всяка от оценките (а именно наклоните и свободния член)." #. f2CEs #: statistics_regression.xhp @@ -70170,7 +70170,7 @@ "hd_id751629834274709\n" "help.text" msgid "Calculate residuals" -msgstr "" +msgstr "Изчисляване на остатъци" #. b4unQ #: statistics_regression.xhp @@ -70179,7 +70179,7 @@ "par_id401629835408653\n" "help.text" msgid "Select whether to opt in or out of computing the residuals, which may be beneficial in cases where you are interested only in the slopes and intercept estimates and their statistics. The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model." -msgstr "" +msgstr "Изберете дали да се изчисляват остатъци, което може да е от полза, когато се интересувате само от оценките за наклоните и свободния член и техните статистики. Остатъците дават информация за това доколко действителните данни се отклоняват от прогнозираните според регресионния модел." #. F99az #: statistics_regression.xhp @@ -70188,7 +70188,7 @@ "hd_id861629834279039\n" "help.text" msgid "Force intercept to be zero" -msgstr "" +msgstr "Фиксиране свободния член на нула" #. UYdQb #: statistics_regression.xhp @@ -70197,7 +70197,7 @@ "par_id121629837424848\n" "help.text" msgid "Calculates the regression model using zero as the intercept, thus forcing the model to pass through the origin." -msgstr "" +msgstr "Изчислява регресионния модел с нулев свободен член, при което кривата ще минава през началото на координатната система." #. u47eB #: statistics_sampling.xhp diff -Nru libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562357690.000000\n" @@ -16854,7 +16854,7 @@ "par_id3146130\n" "help.text" msgid "If the cursor is placed in a table cell, you can change the indents for the contents of the cell by dragging them with the mouse on the ruler. You can change the boundary lines of the table on the ruler or by dragging the actual boundary line." -msgstr "Ако курсорът е в клетка от таблица, может� да променяте отстъпите на съдържанието на клетката като ги плъзгате с мишката в скалата. Можете да променяте разделителните линии на таблицата върху скалата или като плъзгате самите разделителни линии." +msgstr "Ако курсорът е в клетка от таблица, можете да променяте отстъпите на съдържанието на клетката като ги плъзгате с мишката в скалата. Можете да променяте разделителните линии на таблицата върху скалата или като плъзгате самите разделителни линии." #. kd7Gb #: 13020000.xhp diff -Nru libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -663,7 +663,7 @@ "tit\n" "help.text" msgid "Automatic Redaction" -msgstr "" +msgstr "Автоматично заличаване" #. K7arh #: auto_redact.xhp @@ -672,7 +672,7 @@ "bm_id821562797360035\n" "help.text" msgid "spreadsheet; auto-redact presentations; auto-redact text documents; auto-redact contents automatic redaction" -msgstr "" +msgstr "електронни таблици; автозаличаване на информацияпрезентации; автозаличаванетекстови документи; автозаличаване на съдържаниеавтоматично заличаване на информация" #. dujqZ #: auto_redact.xhp @@ -681,7 +681,7 @@ "hd_id171562795247122\n" "help.text" msgid "Automatic Redaction" -msgstr "" +msgstr "Автоматично заличаване" #. 5TXro #: auto_redact.xhp @@ -690,7 +690,7 @@ "par_id4715627952214572\n" "help.text" msgid "Use automatic redaction to define words and patterns that are automatically marked for redaction. This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues." -msgstr "" +msgstr "Използвайте автоматичното заличаване на информация, за да дефинирате думи и изрази, които автоматично се маркират за заличаване. Автоматичното заличаване улеснява премахването на информация от документи на %PRODUCTNAME, в които много текстови откъси трябва да бъдат скрити по съображения за поверителност или защита на личните данни." #. erJBg #: auto_redact.xhp @@ -699,7 +699,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Auto-Redact" -msgstr "" +msgstr "Изберете Инструменти - Автозаличаване." #. XFRFz #: auto_redact.xhp @@ -708,7 +708,7 @@ "par_id551626027709362\n" "help.text" msgid "This feature comes in handy in documents that have multiple occurrences of names and other personal information (e.g. credit cards, phone numbers, etc). Redacting all these portions of the document manually would required significant effort, but with Automatic Redaction this task can be automated in a more efficient manner." -msgstr "" +msgstr "Тази функция е удобна в документи, които съдържат множество срещания на имена и друга лична информация (кредитни карти, телефонни номера и т.н.). Заличаването на всички тези откъси от документа ръчно би изисквало значително усилие, но с „Автоматично заличаване“ задачата може да се автоматизира за по-ефективно изпълнение." #. HsEH7 #: auto_redact.xhp @@ -717,7 +717,7 @@ "hd_id11626028179231\n" "help.text" msgid "Creating Targets" -msgstr "" +msgstr "Създаване на цели" #. U4tPq #: auto_redact.xhp @@ -726,7 +726,7 @@ "par_id211626097811059\n" "help.text" msgid "Targets are rules and patterns used by Automatic Redaction to find portions of the document to be automatically marked for redaction." -msgstr "" +msgstr "Целите представляват правила и шаблони за сравнение, използвани от функцията „Автоматично заличаване“ за намиране на части от документа, които да бъдат автоматично маркирани за заличаване." #. A6CCF #: auto_redact.xhp @@ -735,7 +735,7 @@ "par_id851626028193218\n" "help.text" msgid "To create a new target, click the Add Target button." -msgstr "" +msgstr "За да създадете нова цел, щракнете върху бутона Добавяне на цел." #. RGwFa #: auto_redact.xhp @@ -744,7 +744,7 @@ "par_id101626028852152\n" "help.text" msgid "The Add Target dialog appears, to let you define a Name for the new target, as well as to choose its Type and Content. There are three types of targets to choose from in the Type dropdown list:" -msgstr "" +msgstr "Ще се появи диалогът Добавяне на цел, в който можете да зададете Име за новата цел, както и да изберете Тип и Съдържание. Падащият списък Тип предлага три вида цели:" #. 5AKPv #: auto_redact.xhp @@ -753,7 +753,7 @@ "par_id241626028988544\n" "help.text" msgid "Text: Automatic Redaction will look for all occurrences of the specified text and mark them for redaction." -msgstr "" +msgstr "Текст: „Автоматично заличаване“ ще търси всички срещания на указания текст и ще ги маркира за заличаване." #. iCDRP #: auto_redact.xhp @@ -762,7 +762,7 @@ "par_id31626028992866\n" "help.text" msgid "Regular expression: Define a regular expression to use to search the document. All matches will be marked for redaction." -msgstr "" +msgstr "Регулярен израз: задайте регулярен израз, който да се използва за търсене в документа. Всички съвпадения ще бъдат маркирани за заличаване." #. puprE #: auto_redact.xhp @@ -771,7 +771,7 @@ "par_id391626028994653\n" "help.text" msgid "Predefined: Choose predefined regular expressions to automatically redact contents, such as credit card numbers, email addresses and so on." -msgstr "" +msgstr "Предварително зададени: изберете предварително дефинирани регулярни изрази за автоматично заличаване на съдържание като на номера на кредитни карти, адреси за е-поща и подобни." #. bMHnY #: auto_redact.xhp @@ -780,7 +780,7 @@ "par_id181626029575406\n" "help.text" msgid "Add all targets that you want to apply to your document and click OK. This opens the document as a drawing in %PRODUCTNAME Draw with all targets automatically redacted with the Rectangle Redaction tool." -msgstr "" +msgstr "Добавете всички цели, които искате да приложите за документа, и щракнете върху OK. Това ще предизвика отваряне на документа като рисунка в %PRODUCTNAME Draw с всички цели, автоматично заличени с инструмента Заличаване с правоъгълник." #. kiFS3 #: auto_redact.xhp @@ -789,7 +789,7 @@ "par_id611626029791762\n" "help.text" msgid "Continue redacting other portions of the generated document and then print or export it to PDF." -msgstr "" +msgstr "Можете да продължите да заличавате други части от генерирания документ, а след това да го отпечатате или експортирате към PDF." #. AGQiE #: auto_redact.xhp @@ -798,7 +798,7 @@ "par_id581626101004089\n" "help.text" msgid "Refer to the help page List of Regular Expressions to learn more about how to use regular expressions in %PRODUCTNAME." -msgstr "" +msgstr "Вижте страницата от помощта Списък на регулярните изрази, за да научите повече за това как да използвате регулярни изрази в %PRODUCTNAME." #. AE55E #: auto_redact.xhp @@ -807,7 +807,7 @@ "hd_id951626029985729\n" "help.text" msgid "Exporting and Importing Targets" -msgstr "" +msgstr "Експортиране и импортиране на цели" #. CsYeH #: auto_redact.xhp @@ -816,7 +816,7 @@ "par_id701626030005749\n" "help.text" msgid "Click the Save Targets button to save all defined targets in the document as a JSON (JavaScript Object Notation) file." -msgstr "" +msgstr "Щракнете върху бутона Записване на цели, за да запишете всички дефинирани цели в документа като файл във формат JSON (JavaScript Object Notation)." #. M2XoB #: auto_redact.xhp @@ -825,7 +825,7 @@ "par_id971626030103135\n" "help.text" msgid "Click the Load Targets button to import and apply the targets defined in a JSON file to another %PRODUCTNAME document." -msgstr "" +msgstr "Щракнете върху бутона Зареждане на цели, за да импортирате и приложите целите, зададени в JSON файл, върху друг документ на %PRODUCTNAME." #. 2haDR #: auto_redact.xhp @@ -834,7 +834,7 @@ "par_id311626030327293\n" "help.text" msgid "The document automatic redaction targets are saved alongside the document. Hence, they are available in the document after you save and close it." -msgstr "" +msgstr "Целите за автоматично заличаване в даден документ се записват заедно с него. Така те са налице в документа, след като го запишете и затворите." #. K7YtD #: autocorr_url.xhp @@ -1869,7 +1869,7 @@ "par_id3156136\n" "help.text" msgid "You can add texture to the bars in a graph or chart (instead of the default colors) via graphics:" -msgstr "" +msgstr "Можете да добавите текстура в лентите на диаграма (вместо подразбираните цветове) чрез изображение:" #. 4UEfD #: chart_barformat.xhp @@ -1914,7 +1914,7 @@ "par_id3146797\n" "help.text" msgid "Click on Image. In the list box select an image as a texture for the currently selected bars. Click OK to accept the setting." -msgstr "" +msgstr "Щракнете върху Изображение. В списъчното поле изберете изображение като текстура за текущо избраните ленти. Щракнете върху OK, за да потвърдите настройката." #. rgZEg #: chart_insert.xhp @@ -4047,7 +4047,7 @@ "hd_id771554399002497\n" "help.text" msgid "File Conversion Filter Names" -msgstr "" +msgstr "Имена на филтри за преобразуване на файлове" #. EoDwz #: convertfilters.xhp @@ -4056,7 +4056,7 @@ "par_id581554399002498\n" "help.text" msgid " Tables with filter names for command line document conversion. " -msgstr "" +msgstr "Таблици с имена на филтри за преобразуване на документи през командния ред." #. Whybs #: convertfilters.xhp @@ -4065,7 +4065,7 @@ "hd_id531633524464103\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Употреба" #. vcWaC #: convertfilters.xhp @@ -4074,7 +4074,7 @@ "par_id801633524474460\n" "help.text" msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the command line." -msgstr "" +msgstr "Имената на филтри се използват при импортиране и експортиране на файлове в чужди формати и преобразуване форматите на файлове чрез командния ред." #. QAzjK #: convertfilters.xhp @@ -4434,7 +4434,7 @@ "FilterName_writer_indexing_export\n" "help.text" msgid "Writer Indexing Export XML" -msgstr "" +msgstr "Writer Indexing Export XML" #. Va5zD #: convertfilters.xhp @@ -5451,7 +5451,7 @@ "FilterName_writer_png_Export\n" "help.text" msgid "PNG - Portable Network Graphics" -msgstr "" +msgstr "PNG – преносима мрежова графика" #. FeKia #: convertfilters.xhp @@ -5469,7 +5469,7 @@ "bm_000pdfimport\n" "help.text" msgid "command line document conversion; filters for PDFIMPORT" -msgstr "" +msgstr "команден ред, преобразуване на документи с; филтри за PDFIMPORT" #. K7dq5 #: convertfilters.xhp @@ -5478,7 +5478,7 @@ "hd_000pdfimport\n" "help.text" msgid "Filters for PDFIMPORT" -msgstr "" +msgstr "Филтри за PDFIMPORT" #. xJhTH #: convertfilters.xhp @@ -5487,7 +5487,7 @@ "FilterName_draw_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Draw)" -msgstr "" +msgstr "PDF – преносим документен формат (Draw)" #. JDFdH #: convertfilters.xhp @@ -5496,7 +5496,7 @@ "FilterName_impress_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Impress)" -msgstr "" +msgstr "PDF – преносим документен формат (Impress)" #. WsMeW #: convertfilters.xhp @@ -5505,7 +5505,7 @@ "FilterName_writer_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Writer)" -msgstr "" +msgstr "PDF – преносим документен формат (Writer)" #. 9WyPm #: convertfilters.xhp @@ -5514,7 +5514,7 @@ "FilterName_writer_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – преносим документен формат" #. kF4WL #: convertfilters.xhp @@ -5523,7 +5523,7 @@ "FilterName_impress_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – преносим документен формат" #. aFqyu #: convertfilters.xhp @@ -5532,7 +5532,7 @@ "FilterName_draw_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – преносим документен формат" #. 5AFFP #: convertfilters.xhp @@ -5541,7 +5541,7 @@ "FilterName_calc_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – преносим документен формат" #. ziEHZ #: convertfilters.xhp @@ -5550,7 +5550,7 @@ "bm_000xsltfilter\n" "help.text" msgid "command line document conversion; filters for XSLTFILTER" -msgstr "" +msgstr "команден ред, преобразуване на документи с; филтри за XSLTFILTER" #. AzDaX #: convertfilters.xhp @@ -5559,7 +5559,7 @@ "hd_000xsltfilter\n" "help.text" msgid "Filters for XSLTFILTER" -msgstr "" +msgstr "Филтри за XSLTFILTER" #. ebRhP #: convertfilters.xhp @@ -5568,7 +5568,7 @@ "FilterName_ADO_Rowset_XML\n" "help.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "Набор редове на ADO в XML" #. tTViV #: convertfilters.xhp @@ -5577,7 +5577,7 @@ "FilterName_DocBook_File\n" "help.text" msgid "DocBook" -msgstr "" +msgstr "DocBook" #. GHC43 #: convertfilters.xhp @@ -5586,7 +5586,7 @@ "FilterName_MS_Excel_2003_XML\n" "help.text" msgid "Microsoft Excel 2003 XML" -msgstr "" +msgstr "Microsoft Excel 2003 XML" #. 5wBfH #: convertfilters.xhp @@ -5595,7 +5595,7 @@ "FilterName_MS_Word_2003_XML\n" "help.text" msgid "Word 2003 XML" -msgstr "" +msgstr "Word 2003 XML" #. CTAEj #: convertfilters.xhp @@ -5604,7 +5604,7 @@ "FilterName_XHTML_Calc_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. VUZrD #: convertfilters.xhp @@ -5613,7 +5613,7 @@ "FilterName_XHTML_Draw_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. AhcRA #: convertfilters.xhp @@ -5622,7 +5622,7 @@ "FilterName_XHTML_Impress_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. iCCFv #: convertfilters.xhp @@ -5631,7 +5631,7 @@ "FilterName_XHTML_Writer_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. MCrWq #: convertfilters.xhp @@ -5640,7 +5640,7 @@ "FilterName_UOF_text\n" "help.text" msgid "Unified Office Format text" -msgstr "" +msgstr "Unified Office Format – текст" #. TXKeC #: convertfilters.xhp @@ -5649,7 +5649,7 @@ "FilterName_UOF_spreadsheet\n" "help.text" msgid "Unified Office Format spreadsheet" -msgstr "" +msgstr "Unified Office Format – електронна таблица" #. VW3Gt #: convertfilters.xhp @@ -5658,7 +5658,7 @@ "FilterName_UOF_presentation\n" "help.text" msgid "Unified Office Format presentation" -msgstr "" +msgstr "Unified Office Format – презентация" #. Bkz5M #: copy_drawfunctions.xhp @@ -5964,7 +5964,7 @@ "tit\n" "help.text" msgid "CSV Filter parameters" -msgstr "" +msgstr "Параметри на филтъра за CSV" #. KyLbg #: csv_params.xhp @@ -5973,7 +5973,7 @@ "bm_id181634740978601\n" "help.text" msgid "CSV;filter options CSV;separator specification line CSV;import options CSV;export options CSV;command line filter options" -msgstr "" +msgstr "CSV;настройки на филтъраCSV;ред за задаване на разделителCSV;импортиране, настройки заCSV;експортиране, настройки заCSV;команден ред, настройки на филтъра" #. szBoK #: csv_params.xhp @@ -5982,7 +5982,7 @@ "hd_id551634734576194\n" "help.text" msgid "CSV Filter Options" -msgstr "" +msgstr "Настройки на филтъра за CSV" #. qRkBK #: csv_params.xhp @@ -5991,7 +5991,7 @@ "par_id401634734576197\n" "help.text" msgid "The CSV filter accepts an option string containing five to thirteen tokens, separated by commas. Tokens 6 to 13 are optional." -msgstr "" +msgstr "Филтърът за CSV приема низ с настройки, съдържащ между пет и тринадесет кода, разделени със запетаи. Кодовете от 6 до 13 са незадължителни." #. BQKWB #: csv_params.xhp @@ -6000,7 +6000,7 @@ "par_id431634743318433\n" "help.text" msgid "Import from UTF-8, Language German, Comma separated, Text delimiter \", Quoted field as text. CSV file has columns formatted as date, number, number, number:" -msgstr "" +msgstr "Импортиране от UTF-8, немски език, разделител запетая, текстовете оградени с \", полета в кавички като текст. CSV файлът има колони, форматирани като дата, число, число, число:" #. rdZgZ #: csv_params.xhp @@ -6009,7 +6009,7 @@ "par_id281634743298078\n" "help.text" msgid "Export to Windows-1252, Field delimiter : comma, Text delimiter : quote, Save cell contents as shown:" -msgstr "" +msgstr "Експортиране към Windows-1252, разделител на полетата: запетая, разделител на текста: кавичка, записване съдържанието на клетките както се вижда:" #. J8rtr #: csv_params.xhp @@ -6018,7 +6018,7 @@ "par_id511634735255956\n" "help.text" msgid "Token Position" -msgstr "" +msgstr "Позиция на кода" #. 5rrFy #: csv_params.xhp @@ -6027,7 +6027,7 @@ "par_id71634735255956\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Дефиниция" #. tBx7H #: csv_params.xhp @@ -6036,7 +6036,7 @@ "par_id581634735255956\n" "help.text" msgid "Meaning and Example of Token" -msgstr "" +msgstr "Значение и пример за кода" #. FBZ5h #: csv_params.xhp @@ -6045,7 +6045,7 @@ "par_id691634735255956\n" "help.text" msgid "Field Separator" -msgstr "" +msgstr "Разделител на полетата" #. Zgou6 #: csv_params.xhp @@ -6054,7 +6054,7 @@ "par_id501634735255956\n" "help.text" msgid "Field separator(s) as ASCII values. Multiple values are separated by the slash sign (\"/\"), that is, if the values are separated by semicolons and horizontal tabulators, the token would be 59/9. To treat several consecutive separators as one, then append '/MRG' to the token. If the file contains fixed width fields, then use 'FIX'. Example: 44 (,)" -msgstr "" +msgstr "Разделител(и) на полетата като стойности от ASCII. Ако стойностите са няколко, се разделят с наклонена черта („/“), т.е. ако стойностите са разделени с точки и запетаи и хоризонтални знаци за табулация, кодът ще бъде 59/9. За да се обработват няколко последователни разделителя като един, към кода трябва да се добави „/MRG“. Ако файлът съдържа полета с фиксирана ширина, използвайте „FIX“. Пример: 44 (,)" #. HqX6Y #: csv_params.xhp @@ -6063,7 +6063,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Разделител за текст" #. AtZEw #: csv_params.xhp @@ -6072,7 +6072,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, that is, 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "Разделителят за текст като стойност от ASCII, например 34 за двойни кавички и 39 за единични. Пример: 34 (\")." #. 5EFCS #: csv_params.xhp @@ -6081,7 +6081,7 @@ "par_id901634735627024\n" "help.text" msgid "Character Set" -msgstr "" +msgstr "Знаков набор" #. v4Gzf #: csv_params.xhp @@ -6090,7 +6090,7 @@ "par_id871634735631362\n" "help.text" msgid "The character set code used in the file as described in the table below. Example: 0 (System)." -msgstr "" +msgstr "Код за знаковия набор, използван във файла, както е описано в таблицата по-долу. Пример: 0 (системен)." #. rrrw3 #: csv_params.xhp @@ -6099,7 +6099,7 @@ "par_id371634735705688\n" "help.text" msgid "Number of First Row" -msgstr "" +msgstr "Номер на първия ред" #. DzcEC #: csv_params.xhp @@ -6108,7 +6108,7 @@ "par_id681634735710417\n" "help.text" msgid "Row number to start reading. Example: 3 (start from third row)." -msgstr "" +msgstr "Номер на ред, от който да започне четенето. Пример: 3 (да се започне от третия ред)." #. BeXqG #: csv_params.xhp @@ -6117,7 +6117,7 @@ "par_id741634735821982\n" "help.text" msgid "Cell Format Codes for Each Column" -msgstr "" +msgstr "Кодове за формат на клетките за всяка колона" #. fjBqE #: csv_params.xhp @@ -6126,7 +6126,7 @@ "par_id481634735825359\n" "help.text" msgid "A sequence of column/formatting code, where the formatting code is given in the table below. Example: \"1/5/2/1/3/1/4/1\"." -msgstr "" +msgstr "Последователност от кодове колона/формат, където стойностите за формат са от долната таблица. Пример: \"1/5/2/1/3/1/4/1\"." #. mFfyA #: csv_params.xhp @@ -6135,7 +6135,7 @@ "par_id831634735631362\n" "help.text" msgid "If value separators are used, the form of this token is column/format[/column/format/…] where column is the number of the column, with 1 being the leftmost column. The format code is detailed below." -msgstr "" +msgstr "Ако се използват разделители за стойности, формата на този код е колона/формат[/колона/формат/…], където колона е номерът на колоната и 1 означава най-лявата колона. Кодовете на формати са описани по-долу." #. bMC9A #: csv_params.xhp @@ -6144,7 +6144,7 @@ "par_id831635735631362\n" "help.text" msgid "If the first token is FIX it has the form start/format[/start/format/…], where start is the number of the first character for this field, with 0 being the leftmost character in a line. The format is explained below." -msgstr "" +msgstr "Ако първият код е FIX, има формата начало/формат[/начало/формат/…], където начало е номерът на първия знак за това поле и 0 означава най-левият знак в реда. Форматът е обяснен по-долу." #. ZwqfD #: csv_params.xhp @@ -6153,7 +6153,7 @@ "par_id971634736857464\n" "help.text" msgid "Language identifier" -msgstr "" +msgstr "Идентификатор на език" #. DrnsR #: csv_params.xhp @@ -6162,7 +6162,7 @@ "par_id951634736861475\n" "help.text" msgid "String expressed in decimal notation. This token is the equivalent of the \"Language\" listbox in the user interface for CSV import. If the value is 0 or omitted, the language identifier of the user interface is used. The language identifier is based on the Microsoft language identifiers." -msgstr "" +msgstr "Низ в десетичен запис. Този код е еквивалентът на списъчното поле „Език“ в потребителския интерфейс за импортиране от CSV. Ако стойността е 0 или е пропусната, се използва идентификаторът на езика на потребителския интерфейс. Този параметър е базиран на идентификаторите на език на Microsoft." #. B8dVu #: csv_params.xhp @@ -6171,7 +6171,7 @@ "par_id181634736918511\n" "help.text" msgid "CSV Import, CSV Export" -msgstr "" +msgstr "Импортиране от CSV, Експортиране към CSV" #. 4EDix #: csv_params.xhp @@ -6180,7 +6180,7 @@ "par_id481634736922278\n" "help.text" msgid "String, either false or true. Default value: false. This token is the equivalent of the check box \"Quoted field as text\"." -msgstr "" +msgstr "Низ, или false, или true. Подразбирана стойност: false. Този код е еквивалентът на полето за отметка „Полета в кавички като текст“." #. bDTPa #: csv_params.xhp @@ -6189,7 +6189,7 @@ "par_id761634737057161\n" "help.text" msgid "CSV Import, CSV Export" -msgstr "" +msgstr "Импортиране от CSV, Експортиране към CSV" #. SDFCG #: csv_params.xhp @@ -6198,7 +6198,7 @@ "par_id41634737061097\n" "help.text" msgid "Import: String, either false or true. Default value: false. This token is the equivalent of the check box \"Detect special numbers\"." -msgstr "" +msgstr "Импортиране: низ, или false, или true. Подразбирана стойност: false. Този код е еквивалентът на полето за отметка „Откриване на специални числа“." #. kvUjv #: csv_params.xhp @@ -6207,7 +6207,7 @@ "par_id161634737264744\n" "help.text" msgid "Export: String, either false or true. Default value: true. This token has no UI equivalent. If true, the number cells are stored as numbers. If false, the numbers are stored as text, with text delimiters." -msgstr "" +msgstr "Експортиране: низ, или false, или true. Подразбирана стойност: true. Този код няма еквивалент в ПИ. Ако е true, числовите клетки се съхраняват като числа. Ако е false, числата се съхраняват като текст, с текстови разделители." #. D9GzU #: csv_params.xhp @@ -6216,7 +6216,7 @@ "par_id961634737712752\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Експортиране към CSV" #. bE733 #: csv_params.xhp @@ -6225,7 +6225,7 @@ "par_id701634737971414\n" "help.text" msgid "String, either false or true. Default value:true. This token is the equivalent of the check box \"Save cell contents as shown\"." -msgstr "" +msgstr "Низ, или false, или true. Подразбирана стойност: true. Този код е еквивалентът на полето за отметка „Записване съдържанието на клетките както се вижда“." #. DbAB4 #: csv_params.xhp @@ -6234,7 +6234,7 @@ "par_id481634896761359\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Експортиране към CSV" #. 3V5FY #: csv_params.xhp @@ -6243,7 +6243,7 @@ "par_id411634896764659\n" "help.text" msgid "String, either false or true. Default value: false. Export cell formulas." -msgstr "" +msgstr "Низ, или false, или true. Подразбирана стойност: false. Експортиране на формулите в клетките." #. FE6AD #: csv_params.xhp @@ -6252,7 +6252,7 @@ "par_id221634896896383\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Импортиране от CSV" #. o6NCQ #: csv_params.xhp @@ -6261,7 +6261,7 @@ "par_id641634896897119\n" "help.text" msgid "String, either false or true. Default value: false. Remove spaces. Trim leading and trailing spaces, when reading the file." -msgstr "" +msgstr "Низ, или false, или true. Подразбирана стойност: false. Премахване на интервалите. При четене на файла водещите и завършващите интервали се отрязват." #. e7nRn #: csv_params.xhp @@ -6270,7 +6270,7 @@ "par_id521634896971296\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Експортиране към CSV" #. NaJRN #: csv_params.xhp @@ -6279,7 +6279,7 @@ "par_id161634896971802\n" "help.text" msgid "Export the entire document to individual sheets .csv files or a specified sheet." -msgstr "" +msgstr "Експортиране на целия документ към отделни .csv файлове за листовете или само на указан лист." #. X7QDK #: csv_params.xhp @@ -6288,7 +6288,7 @@ "par_id341634897309489\n" "help.text" msgid "0 or absent means the default behaviour, first sheet from command line, or current sheet in macro filter options, exported to sample.csv" -msgstr "" +msgstr "0 или пропуснат означава подразбираното поведение: първия лист от командния ред или текущия лист в настройките на макро филтъра, експортиран към документ.csv." #. mnMGx #: csv_params.xhp @@ -6297,7 +6297,7 @@ "par_id381634897377753\n" "help.text" msgid "-1 for all sheets, each sheet is exported to an individual file of the base file name concatenated with the sheet name, for example sample-Sheet1.csv, sample-Sheet2.csv and sample-Sheet3.csv" -msgstr "" +msgstr "-1 за всички листова, всеки лист се експортира към отделен файл с името на основния файл, обединено с името на листа, например документ-Лист1.csv, документ-Лист2.csv и документ-Лист3.csv." #. ANajZ #: csv_params.xhp @@ -6306,7 +6306,7 @@ "par_id531634897438255\n" "help.text" msgid "N export the N-th sheet within the range of number of sheets. Example: to export the second sheet, set 2 here to get sample-Sheet2.csv" -msgstr "" +msgstr "N експортиране на N-тия лист в диапазона на номерата на листовете. Например: за да експортирате втория лист, задайте тук 2, за да получите документ-Лист2.csv." #. xfaM3 #: csv_params.xhp @@ -6315,7 +6315,7 @@ "par_id451635293273892\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Импортиране от CSV" #. 54sie #: csv_params.xhp @@ -6324,7 +6324,7 @@ "par_id701635293273893\n" "help.text" msgid "String, either false or true. Default value: false. Determines whether formula expressions starting with a = equal sign character are to be evaluated as formulas or imported as textual data. If true evaluate formulas on input. If false formulas are input as text. If omitted (not present at all), the default value is true to keep the behaviour of old versions' options string that didn't have this token at all. If present and empty (or any other value than true) the default value is false." -msgstr "" +msgstr "Низ, или false, или true. Подразбирана стойност: false. Определя дали изразите формули, започващи със знак равно =, трябва да се изчисляват като формули, или да се импортират като текстови данни. Ако е true, формулите се изчисляват при въвеждане. Ако е false, формулите се въвеждат като текст. Ако е пропуснат (не присъства изобщо), подразбираната стойност е true, за да се запази поведението на настройките от старите версии, в които този код изобщо не фигурира. Ако е наличен и празен (или със стойност, различна от true), се подразбира стойност false." #. DAriB #: csv_params.xhp @@ -6333,7 +6333,7 @@ "hd_id591638374883162\n" "help.text" msgid "Special case of CSV files with separator defined in the first line" -msgstr "" +msgstr "Частен случай на CSV файлове с разделител, дефиниран на първия ред" #. gpBdg #: csv_params.xhp @@ -6342,7 +6342,7 @@ "par_id781638374952502\n" "help.text" msgid "CSV import and export support a sep= and \"sep=\" field separator setting. When reading a CSV document, the separator is taken from the initial sep= or \"sep=\" single field, if that is the only line content." -msgstr "" +msgstr "При импортиране и експортиране на CSV се поддържа настройка sep= и \"sep=\" за разделител на полетата. При четене на CSV документ разделителят се взема от началното единично поле sep= или \"sep=\", ако това е единственото съдържание на реда." #. q8D8y #: csv_params.xhp @@ -6351,7 +6351,7 @@ "par_id561638377619263\n" "help.text" msgid "When reading a CSV file, the quoted form is preserved as (unquoted) cell content. You see sep=| when | is the separator in the first line. In the unquoted form, the separator is discarded because it is a real field separator in the context. You see sep= in the first line." -msgstr "" +msgstr "При четене на CSV файл ограденият с кавички вариант се запазва като съдържание на клетка (без кавичките). Ако разделителят в първия ред е |, виждате sep=|. При варианта без кавички разделителят се отхвърля, защото е действителен разделител на поле в този контекст. В първия ред виждате sep=." #. j5dBK #: csv_params.xhp @@ -6360,7 +6360,7 @@ "par_id761638377626465\n" "help.text" msgid "When writing a CSV file, the existing single top left cell's content such as sep=| is adapted to the current separator with the quoted form of \"sep=|\" (if quotes / text delimiters aren't set empty and | is the separator) and always uses the ASCII \" double quote character." -msgstr "" +msgstr "При записване на CSV файл съществуващото съдържание на единична горна лява клетка, например sep=|, се адаптира към текущия разделител във варианта с кавички \"sep=|\" (ако кавичките / разделителите за текст не са зададени като празни и разделителят е |) и винаги се използва знакът двойна кавичка \" от ASCII." #. uBq4B #: csv_params.xhp @@ -6369,7 +6369,7 @@ "par_id61638377631743\n" "help.text" msgid "If the line containing the sep=| is not to be imported as data, remember to set the From row number in the dialog to 2. Note that this line will not be preserved when re-saving." -msgstr "" +msgstr "Ако редът, съдържащ sep=|, не трябва да се импортира като данни, не забравяйте да укажете стойност 2 за настройката От ред в диалога. Обърнете внимание, че този ред няма да бъде запазен при повторно записване." #. oGd5z #: csv_params.xhp @@ -6378,7 +6378,7 @@ "par_id731638374814029\n" "help.text" msgid "\"LETTER\"|\"ANIMAL\"" -msgstr "" +msgstr "\"БУКВА\"|\"ЖИВОТНО\"" #. CsfKB #: csv_params.xhp @@ -6387,7 +6387,7 @@ "par_id801638374818291\n" "help.text" msgid "\"a\"|\"aardvark\"" -msgstr "" +msgstr "\"а\"|\"антилопа\"" #. t62e9 #: csv_params.xhp @@ -6396,7 +6396,7 @@ "par_id621638374822275\n" "help.text" msgid "\"b\"|\"bear\"" -msgstr "" +msgstr "\"б\"|\"бобър\"" #. G2aQG #: csv_params.xhp @@ -6405,7 +6405,7 @@ "par_id851638374831208\n" "help.text" msgid "\"c\"|\"cow\"" -msgstr "" +msgstr "\"в\"|\"вълк\"" #. EFwn3 #: csv_params.xhp @@ -6414,7 +6414,7 @@ "hd_id181634739011588\n" "help.text" msgid "Formatting Codes for Token 5" -msgstr "" +msgstr "Форматиращи кодове за позиция 5" #. 3KE5V #: csv_params.xhp @@ -6423,7 +6423,7 @@ "par_id31634738948892\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Значение" #. kDygY #: csv_params.xhp @@ -6432,7 +6432,7 @@ "par_id101634738948892\n" "help.text" msgid "Code" -msgstr "" +msgstr "Код" #. BpiaC #: csv_params.xhp @@ -6441,7 +6441,7 @@ "par_id1011670216\n" "help.text" msgid "Standard" -msgstr "" +msgstr "Стандартна" #. o2zeW #: csv_params.xhp @@ -6450,7 +6450,7 @@ "par_id1605952714\n" "help.text" msgid "Text" -msgstr "" +msgstr "Текст" #. pPwcP #: csv_params.xhp @@ -6459,7 +6459,7 @@ "par_id5066036143\n" "help.text" msgid "MM/DD/YY" -msgstr "" +msgstr "ММ/ДД/ГГ" #. 6yrFg #: csv_params.xhp @@ -6468,7 +6468,7 @@ "par_id6386378851\n" "help.text" msgid "DD/MM/YY" -msgstr "" +msgstr "ДД/ММ/ГГ" #. BrCte #: csv_params.xhp @@ -6477,7 +6477,7 @@ "par_id6847541095\n" "help.text" msgid "YY/MM/DD" -msgstr "" +msgstr "ГГ/ММ/ДД" #. nixiA #: csv_params.xhp @@ -6486,7 +6486,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Игнориране на полето (не се импортира)" #. LEJDn #: csv_params.xhp @@ -6495,7 +6495,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Английски (САЩ)" #. wLth6 #: csv_params.xhp @@ -6504,7 +6504,7 @@ "hd_id591634740467955\n" "help.text" msgid "Character Set Codes for Token 3" -msgstr "" +msgstr "Кодове на знакови набори за позиция 3" #. Ag4xM #: ctl.xhp @@ -7368,7 +7368,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Или създайте нов файл на Base с помощника за бази от данни, или отворете произволен съществуващ файл на Base, който не е само за четене." #. JHYC6 #: data_im_export.xhp @@ -7494,7 +7494,7 @@ "par_idN105CB\n" "help.text" msgid "This opens the Database Wizard, where you create a new database file." -msgstr "" +msgstr "Това отваря помощника за бази от данни, в който можете да създадете нов файл на база от данни." #. zTCBz #: data_new.xhp @@ -7512,7 +7512,7 @@ "par_idN105E0\n" "help.text" msgid "The Table Wizard helps you to add a table to the new database file." -msgstr "" +msgstr "Помощникът за таблици служи за добавяне на таблица към новата база от данни." #. pF4kL #: data_queries.xhp @@ -7674,7 +7674,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 "В инсталираното копие на %PRODUCTNAME могат да бъдат регистрирани данни от произволен файл на база от данни . Регистрирането се състои в това да посочите на %PRODUCTNAME къде се намират данните, как са организирани, как се извличат и др. След като базата от данни е регистрирана, можете да използвате командата Изглед - Източник на данни за достъп до записите с данни от текстови документи и електронни таблици." #. ADK4M #: data_register.xhp @@ -8430,7 +8430,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 "Всяко поле може да приема данни само от посочения тип. Например, не е възможно да се въвежда текст в числово поле. Полетата от тип Memo във формата на dBASE III представляват обръщения към вътрешно управлявани текстови файлове, които могат да съдържат до 64КБ текст." +msgstr "Всяко поле може да приема данни само от посочения тип. Например не е възможно да се въвежда текст в числово поле. Полетата от тип Memo във формата на dBASE III представляват обръщения към вътрешно управлявани текстови файлове, които могат да съдържат до 64 кБ текст." #. oApsQ #: data_tabledefine.xhp @@ -8538,7 +8538,7 @@ "par_idN1061E\n" "help.text" msgid "In %PRODUCTNAME you can create a new table using the Table Wizard:" -msgstr "" +msgstr "В %PRODUCTNAME можете да създадете нова таблица чрез помощника за таблици:" #. aBysk #: data_tables.xhp @@ -8718,7 +8718,7 @@ "par_idN105D1\n" "help.text" msgid "The database file gives you full access to tables, queries, reports, and forms. You can edit the structure of your tables and change the contents of the data records." -msgstr "" +msgstr "Файлът на базата от данни ви дава пълен достъп до таблиците, заявките, справките и формулярите. Можете да редактирате структурата на таблиците и да променяте съдържанието на записите с данни." #. drvbN #: data_view.xhp @@ -8835,7 +8835,7 @@ "par_idN106A4\n" "help.text" msgid "Menu bar of a database file" -msgstr "" +msgstr "Лента с менюта за файл на база от данни" #. QGxEh #: database_main.xhp @@ -8934,7 +8934,7 @@ "par_idN1078F\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Помощник за таблици" #. x7kax #: database_main.xhp @@ -8952,7 +8952,7 @@ "tit\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Инструменти за разработка" #. EQHbW #: dev_tools.xhp @@ -8961,7 +8961,7 @@ "bm_id821562797360035\n" "help.text" msgid "development tools object inspector" -msgstr "" +msgstr "инструменти за разработкаинспектор на обекти" #. SfpDF #: dev_tools.xhp @@ -8970,7 +8970,7 @@ "hd_id951627860296699\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Инструменти за разработка" #. p3pqz #: dev_tools.xhp @@ -8979,7 +8979,7 @@ "par_id3155069\n" "help.text" msgid "Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces. This feature also allows to explore the document structure using the Document Object Model (DOM)." -msgstr "" +msgstr "Инспектира обекти в документи на %PRODUCTNAME и показва поддържаните услуги на UNO, както и наличните методи, свойства и реализирани интерфейси. Тази функция също позволява да се експортира структурата на документа чрез обектния модел на документа (DOM)." #. st97j #: dev_tools.xhp @@ -8988,7 +8988,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Development Tools" -msgstr "" +msgstr "Изберете Инструменти - Инструменти за разработка." #. G6m74 #: dev_tools.xhp @@ -8997,7 +8997,7 @@ "par_id241637079282587\n" "help.text" msgid "Icon Development Tools" -msgstr "" +msgstr "Икона „Инструменти за разработка“" #. Adauw #: dev_tools.xhp @@ -9006,7 +9006,7 @@ "par_id991637079282590\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Инструменти за разработка" #. EcEEb #: dev_tools.xhp @@ -9015,7 +9015,7 @@ "par_id271627931218557\n" "help.text" msgid "The Development Tools are visible in all documents of %PRODUCTNAME Writer, Calc, Impress and Draw. The display is persistent and remain visible until deselected." -msgstr "" +msgstr "Инструментите за разработка са видими във всички документи на %PRODUCTNAME Writer, Calc, Impress и Draw. Визуализацията им е постоянна и остава включена, докато не я деактивирате." #. YrKDj #: dev_tools.xhp @@ -9024,7 +9024,7 @@ "par_id3152821\n" "help.text" msgid "When Development Tools is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:" -msgstr "" +msgstr "Когато Инструменти за разработка е активирано, в долната част на екрана се показва прикрепващ се прозорец. Той има две секции:" #. BbGGE #: dev_tools.xhp @@ -9033,7 +9033,7 @@ "par_id31627862228021\n" "help.text" msgid "Document Object Model tree view: Displays document portions according to the Document Object Model (DOM). Use this section to chose the object to inspect." -msgstr "" +msgstr "Дървовиден изглед на обектния модел на документа: показва частите на документа според обектния модел на документа (DOM). Използвайте тази секция, за да изберете кой обект да инспектирате." #. fJXDt #: dev_tools.xhp @@ -9042,7 +9042,7 @@ "par_id581627862228381\n" "help.text" msgid "Object inspection panel: Displays the available services, methods, properties and interfaces of the selected object." -msgstr "" +msgstr "Панел за инспектиране на обект: показва наличните услуги, методи, свойства и интерфейси на избрания обект." #. fiPDo #: dev_tools.xhp @@ -9051,7 +9051,7 @@ "par_id91627862617231\n" "help.text" msgid "This feature is available since %PRODUCTNAME 7.2 for Writer, Calc, Impress and Draw." -msgstr "" +msgstr "Тази функция е достъпна от %PRODUCTNAME 7.2 нататък за Writer, Calc, Impress и Draw." #. 5J2jc #: dev_tools.xhp @@ -9060,7 +9060,7 @@ "hd_id791627911297568\n" "help.text" msgid "Document Model Tree View" -msgstr "" +msgstr "Дървовиден изглед на модела на документа" #. WCR6k #: dev_tools.xhp @@ -9069,7 +9069,7 @@ "par_id3153303\n" "help.text" msgid "The left side of the window contains a Current Selection toggle button, a Refresh button and a tree view that displays all objects in the document." -msgstr "" +msgstr "Лявата страна на прозореца съдържа бутон за превключване Текуща селекция, бутон Опресняване и дървовиден изглед, който показва всички обекти в документа." #. DEPEn #: dev_tools.xhp @@ -9078,7 +9078,7 @@ "par_id891627912224207\n" "help.text" msgid "The behavior of the tree view depends on the status of the Current Selection toggle button:" -msgstr "" +msgstr "Поведението на дървовидния изглед зависи от състоянието на превключващия бутон Текуща селекция:" #. CJUxG #: dev_tools.xhp @@ -9087,7 +9087,7 @@ "par_id811627912238786\n" "help.text" msgid "Click on Current Selection to display the properties of the object currently selected in the document. Hence, clicking any item in the tree view have no effect." -msgstr "" +msgstr "Щракнете върху Текуща селекция, за да се покажат свойствата на обекта, избран в момента в документа. В този случай щракването върху който и да е елемент в дървовидния изглед няма да има ефект." #. C3mpn #: dev_tools.xhp @@ -9096,7 +9096,7 @@ "par_id721627912239053\n" "help.text" msgid "Click on Current Selection again to display any item in the tree view and update the contents of the Object Inspection Panel." -msgstr "" +msgstr "Щракнете отново върху Текуща селекция, за да се покаже елемент от дървовидния изглед и да се обнови съдържанието на панела за инспектиране на обект." #. PmkTZ #: dev_tools.xhp @@ -9105,7 +9105,7 @@ "par_id931627912467594\n" "help.text" msgid "The types of objects displayed by the Document Model Tree View depend on the %PRODUCTNAME application being used:" -msgstr "" +msgstr "Типовете обекти, показвани в дървовидния изглед на модела на документа зависят от използваното приложение от %PRODUCTNAME:" #. AMFhp #: dev_tools.xhp @@ -9114,7 +9114,7 @@ "par_id691627912559559\n" "help.text" msgid "%PRODUCTNAME application" -msgstr "" +msgstr "Приложение на %PRODUCTNAME" #. 44vcy #: dev_tools.xhp @@ -9123,7 +9123,7 @@ "par_id771627912559559\n" "help.text" msgid "Supported objects" -msgstr "" +msgstr "Поддържани обекти" #. meXjs #: dev_tools.xhp @@ -9132,7 +9132,7 @@ "par_id941627912559559\n" "help.text" msgid "Paragraphs
    Text Portions in a Paragraph
    Shapes
    Tables
    Frames
    Graphic Objects
    Embedded Objects (OLE)
    Style Families and Styles" -msgstr "" +msgstr "Абзаци
    Текстови части в абзац
    Фигури
    Таблици
    Рамки
    Графични обекти
    Вградени обекти (OLE)
    Стилове и семейства от стилове" #. SHryG #: dev_tools.xhp @@ -9141,7 +9141,7 @@ "par_id601627912702265\n" "help.text" msgid "Sheets
    Shapes per sheet
    Charts per sheet
    Pivot tables per sheet
    Style Families and Styles" -msgstr "" +msgstr "Листове
    Фигури в лист
    Диаграми в лист
    Обобщени таблици в лист
    Стилове и семейства от стилове" #. G7tq6 #: dev_tools.xhp @@ -9150,7 +9150,7 @@ "par_id561627912902324\n" "help.text" msgid "Slides
    Shapes per slide
    Master slides
    Style Families and Styles" -msgstr "" +msgstr "Кадри
    Фигури в кадър
    Кадри образци
    Стилове и семейства от стилове" #. QBNop #: dev_tools.xhp @@ -9159,7 +9159,7 @@ "par_id561627912902123\n" "help.text" msgid "Pages
    Shapes per page
    Style Families and Styles" -msgstr "" +msgstr "Страници
    Фигури в страница
    Стилове и семейства от стилове" #. SsmFY #: dev_tools.xhp @@ -9168,7 +9168,7 @@ "hd_id731627913346236\n" "help.text" msgid "Object Inspection Panel" -msgstr "" +msgstr "Панел за инспектиране на обект" #. ULvie #: dev_tools.xhp @@ -9177,7 +9177,7 @@ "par_id571627913372273\n" "help.text" msgid "The right side of the window is the Object Inspection Panel that displays information about the object being inspected." -msgstr "" +msgstr "Дясната страна на прозореца представлява панел за инспектиране на обект, който показва информация за инспектирания обект." #. KJDUA #: dev_tools.xhp @@ -9186,7 +9186,7 @@ "par_id361627930602108\n" "help.text" msgid "Class Name: is the name of the object class." -msgstr "" +msgstr "Име на клас: името на класа на обекта." #. TbDBD #: dev_tools.xhp @@ -9195,7 +9195,7 @@ "par_id111627931046662\n" "help.text" msgid "Use the class name to search more information in the API documentation. For example, the top-level object in a Writer document is an instance of the class SwXTextDocument, which is documented at SwXTextDocument Class Reference." -msgstr "" +msgstr "Използвайте името на класа, за да потърсите още информация в документацията за API. Например обектът на най-горно ниво в документ на Writer е екземпляр на класа SwXTextDocument, който е документиран на страницата SwXTextDocument Class Reference." #. 7g3wB #: dev_tools.xhp @@ -9204,7 +9204,7 @@ "par_id371627930700568\n" "help.text" msgid "You can inspect the object further by using the four tabs available that display its Interfaces, Services, Properties and Methods." -msgstr "" +msgstr "Можете да инспектирате обекта по-подробно чрез четирите налични раздела, които показват неговите интерфейси, услуги, свойства и методи." #. hd4cE #: dev_tools.xhp @@ -9213,7 +9213,7 @@ "par_id71627913884995\n" "help.text" msgid "The information about the object is organized in columns in each tab. The set of columns displayed depend on the selected tab." -msgstr "" +msgstr "Информацията за обекта е организирана в колони във всеки раздел. Наборът от показвани колони зависи от избрания раздел." #. RECVL #: dev_tools.xhp @@ -9222,7 +9222,7 @@ "hd_id511627914011995\n" "help.text" msgid "Interfaces tab" -msgstr "" +msgstr "Раздел „Интерфейси“" #. FJcvE #: dev_tools.xhp @@ -9231,7 +9231,7 @@ "par_id321627914033147\n" "help.text" msgid "Contains a single column presenting the list of interfaces implemented by the object." -msgstr "" +msgstr "Съдържа една колона със списък на реализираните от обекта интерфейси." #. BF7qu #: dev_tools.xhp @@ -9240,7 +9240,7 @@ "hd_id21627913972266\n" "help.text" msgid "Services tab" -msgstr "" +msgstr "Раздел „Услуги“" #. HZPma #: dev_tools.xhp @@ -9249,7 +9249,7 @@ "par_id371627913989665\n" "help.text" msgid "Contains a single column presenting the list of services supported by the object." -msgstr "" +msgstr "Съдържа една колона със списък на поддържаните от обекта услуги." #. NGnte #: dev_tools.xhp @@ -9258,7 +9258,7 @@ "hd_id901627914056156\n" "help.text" msgid "Properties tab" -msgstr "" +msgstr "Раздел „Свойства“" #. 9kX9a #: dev_tools.xhp @@ -9267,7 +9267,7 @@ "par_id531627914066770\n" "help.text" msgid "Contains four columns that describe the properties of the object:" -msgstr "" +msgstr "Съдържа четири колони, които описват свойствата на обекта:" #. eNhy9 #: dev_tools.xhp @@ -9276,7 +9276,7 @@ "par_id461627914264898\n" "help.text" msgid "Property: Shows the names of the object properties." -msgstr "" +msgstr "Свойство: показва имената на свойствата на обекта." #. hDfcB #: dev_tools.xhp @@ -9285,7 +9285,7 @@ "par_id491627914265327\n" "help.text" msgid "Value: Displays a textual representation of the current property value." -msgstr "" +msgstr "Стойност: показва текстово представяне на текущата стойност на свойството." #. 7P4rv #: dev_tools.xhp @@ -9294,7 +9294,7 @@ "par_id981627914265672\n" "help.text" msgid "Type: Shows the property type." -msgstr "" +msgstr "Тип:показва типа на свойството." #. VxeGP #: dev_tools.xhp @@ -9303,7 +9303,7 @@ "par_id391627914265992\n" "help.text" msgid "Info: display relevant information about the property. For example, a read-only property displays \"read-only\" in this column." -msgstr "" +msgstr "Информация: показва допълнителна информация за свойството. Например за свойство само за четене в тази колона се показва „само за четене“." #. L6iHf #: dev_tools.xhp @@ -9312,7 +9312,7 @@ "par_id161627914138859\n" "help.text" msgid "The Properties tab also includes a text box on the bottom to display the full textual representation of the property value." -msgstr "" +msgstr "Разделът Свойства включва и текстово поле долу, което показва пълното текстово представяне на стойността на свойството." #. ptFVa #: dev_tools.xhp @@ -9321,7 +9321,7 @@ "hd_id941627914764723\n" "help.text" msgid "Methods tab" -msgstr "" +msgstr "Раздел „Методи“" #. XBugD #: dev_tools.xhp @@ -9330,7 +9330,7 @@ "par_id671627914803456\n" "help.text" msgid "Contains four columns that describe the combined list of methods that can be called by the current object:" -msgstr "" +msgstr "Съдържа четири колони, описващи комбинирания списък на методите, които могат да се извикват от текущия обект:" #. iFvEX #: dev_tools.xhp @@ -9339,7 +9339,7 @@ "par_id281627914839271\n" "help.text" msgid "Method: Shows the names of all methods of the object." -msgstr "" +msgstr "Метод: показва имената на всички методи на обекта." #. hFE8H #: dev_tools.xhp @@ -9348,7 +9348,7 @@ "par_id421627914839748\n" "help.text" msgid "Return type: Displays the return type of the object methods. Methods that do not return any value are marked as \"void\" in this column." -msgstr "" +msgstr "Тип на резултата: показва типа на резултата на методите на обекта. Методите, които не връщат стойност, са отбелязани с „void“ в тази колона." #. NwGtg #: dev_tools.xhp @@ -9357,7 +9357,7 @@ "par_id891627914840174\n" "help.text" msgid "Parameters: Shows the list of parameters that are required by the method as well as their respective types." -msgstr "" +msgstr "Параметри: показва списъка с параметрите, изисквани от метода, и техните типове." #. KDTST #: dev_tools.xhp @@ -9366,7 +9366,7 @@ "par_id371627914840561\n" "help.text" msgid "Implementation class: Displays the name of the class where the method is implemented." -msgstr "" +msgstr "Реализационен клас: показва името на класа, в който е реализиран методът." #. WNbRY #: digital_signatures.xhp @@ -17493,7 +17493,7 @@ "tit\n" "help.text" msgid "Lotus, dBase and Diff filter parameters" -msgstr "" +msgstr "Параметри на филтрите за Lotus, dBase и Diff" #. vTZDY #: lotusdbasediff.xhp @@ -17502,7 +17502,7 @@ "bm_id561634741028649\n" "help.text" msgid "Lotus;command line filter optionsdBase;command line filter optionsDiff;command line filter options" -msgstr "" +msgstr "Lotus;параметри на командния ред за филтъраdBase;параметри на командния ред за филтъраDiff;параметри на командния ред за филтъра" #. AMfh8 #: lotusdbasediff.xhp @@ -17511,7 +17511,7 @@ "hd_id871634727961723\n" "help.text" msgid "Lotus, dBase and Diff filter parameters" -msgstr "" +msgstr "Параметри на филтрите за Lotus, dBase и Diff" #. GaDJ8 #: lotusdbasediff.xhp @@ -17520,7 +17520,7 @@ "par_id951634727961726\n" "help.text" msgid "The Lotus, dBase and Diff filters accept a string containing the numerical index of the used character set for single-byte characters, that is, 0 for the system character set. The numerical indexes assigned to the character sets are in the table below." -msgstr "" +msgstr "Филтрите за Lotus, dBase и Diff приемат низ, съдържащ числовия индекс на използвания знаков набор за еднобайтови знаци, т.е. 0 за системния знаков набор. Числовите индекси, присвоени на знаковите набори, са изброени в долната таблица." #. DC55B #: lotusdbasediff.xhp @@ -17529,7 +17529,7 @@ "par_id711634734305500\n" "help.text" msgid "To import file myLotus.wk3 with DOS/OS2-850/International (Western) character set." -msgstr "" +msgstr "За да импортирате файла myLotus.wk3 със знаков набор DOS/OS2-850/международен (западен):" #. 9K3yd #: lotusdbasediff.xhp @@ -17538,7 +17538,7 @@ "par_id271634732842048\n" "help.text" msgid "soffice --infilter=\"Lotus:4\" myLotus.wk3" -msgstr "" +msgstr "soffice --infilter=\"Lotus:4\" myLotus.wk3" #. vgUAD #: lotusdbasediff.xhp @@ -17547,7 +17547,7 @@ "par_id941634728189424\n" "help.text" msgid "Character set" -msgstr "" +msgstr "Знаков набор" #. tgBCT #: lotusdbasediff.xhp @@ -17556,7 +17556,7 @@ "par_id361634728189424\n" "help.text" msgid "Index" -msgstr "" +msgstr "Индекс" #. mwKC2 #: lotusdbasediff.xhp @@ -17565,7 +17565,7 @@ "par_id3595418994\n" "help.text" msgid "Unknown" -msgstr "" +msgstr "Неизвестен" #. t4M3L #: lotusdbasediff.xhp @@ -17574,7 +17574,7 @@ "par_id6867528259\n" "help.text" msgid "Windows-1252/WinLatin 1 (Western)" -msgstr "" +msgstr "Windows-1252/WinLatin 1 (западен)" #. n8WbE #: lotusdbasediff.xhp @@ -17583,7 +17583,7 @@ "par_id8119642953\n" "help.text" msgid "Apple Macintosh (Western)" -msgstr "" +msgstr "Apple Macintosh (западен)" #. wYujo #: lotusdbasediff.xhp @@ -17592,7 +17592,7 @@ "par_id463985409\n" "help.text" msgid "DOS/OS2-437/US (Western)" -msgstr "" +msgstr "DOS/OS2-437/САЩ (западен)" #. yK7oB #: lotusdbasediff.xhp @@ -17601,7 +17601,7 @@ "par_id7577032620\n" "help.text" msgid "DOS/OS2-850/International (Western)" -msgstr "" +msgstr "DOS/OS2-850/международен (западен)" #. LDVc7 #: lotusdbasediff.xhp @@ -17610,7 +17610,7 @@ "par_id8394619482\n" "help.text" msgid "DOS/OS2-860/Portuguese (Western)" -msgstr "" +msgstr "DOS/OS2-860/португалски (западен)" #. eyZPs #: lotusdbasediff.xhp @@ -17619,7 +17619,7 @@ "par_id8817860061\n" "help.text" msgid "DOS/OS2-861/Icelandic (Western)" -msgstr "" +msgstr "DOS/OS2-861/исландски (западен)" #. wMUyq #: lotusdbasediff.xhp @@ -17628,7 +17628,7 @@ "par_id4921442704\n" "help.text" msgid "DOS/OS2-863/Canadian-French (Western)" -msgstr "" +msgstr "DOS/OS2-863/канадски френски (западен)" #. 8ZQ69 #: lotusdbasediff.xhp @@ -17637,7 +17637,7 @@ "par_id7664791639\n" "help.text" msgid "DOS/OS2-865/Nordic (Western)" -msgstr "" +msgstr "DOS/OS2-865/скандинавски (западен)" #. dVvsS #: lotusdbasediff.xhp @@ -17646,7 +17646,7 @@ "par_id2517707917\n" "help.text" msgid "System default" -msgstr "" +msgstr "Подразбиран системен" #. uxJB9 #: lotusdbasediff.xhp @@ -17655,7 +17655,7 @@ "par_id726768156\n" "help.text" msgid "Symbol" -msgstr "" +msgstr "Символен" #. MsC3b #: lotusdbasediff.xhp @@ -17664,7 +17664,7 @@ "par_id9649275081\n" "help.text" msgid "ASCII/US (Western)" -msgstr "" +msgstr "ASCII/САЩ (западен)" #. QMkdx #: lotusdbasediff.xhp @@ -17673,7 +17673,7 @@ "par_id7560998407\n" "help.text" msgid "ISO-8859-1 (Western)" -msgstr "" +msgstr "ISO-8859-1 (западен)" #. 5Coku #: lotusdbasediff.xhp @@ -17682,7 +17682,7 @@ "par_id7110791405\n" "help.text" msgid "ISO-8859-2 (Central European)" -msgstr "" +msgstr "ISO-8859-2 (централноевропейски)" #. cnoiQ #: lotusdbasediff.xhp @@ -17691,7 +17691,7 @@ "par_id6569976233\n" "help.text" msgid "ISO-8859-3 (Latin 3)" -msgstr "" +msgstr "ISO-8859-3 (латиница 3)" #. NfYxS #: lotusdbasediff.xhp @@ -17700,7 +17700,7 @@ "par_id6885689002\n" "help.text" msgid "ISO-8859-4 (Baltic)" -msgstr "" +msgstr "ISO-8859-4 (балтийски)" #. FEpGp #: lotusdbasediff.xhp @@ -17709,7 +17709,7 @@ "par_id9664335036\n" "help.text" msgid "ISO-8859-5 (Cyrillic)" -msgstr "" +msgstr "ISO-8859-5 (кирилица)" #. jSnZ8 #: lotusdbasediff.xhp @@ -17718,7 +17718,7 @@ "par_id8104755630\n" "help.text" msgid "ISO-8859-6 (Arabic)" -msgstr "" +msgstr "ISO-8859-6 (арабски)" #. 3MTAK #: lotusdbasediff.xhp @@ -17727,7 +17727,7 @@ "par_id5395014781\n" "help.text" msgid "ISO-8859-7 (Greek)" -msgstr "" +msgstr "ISO-8859-7 (гръцки)" #. w7DLg #: lotusdbasediff.xhp @@ -17736,7 +17736,7 @@ "par_id5354416572\n" "help.text" msgid "ISO-8859-8 (Hebrew)" -msgstr "" +msgstr "ISO-8859-8 (иврит)" #. nzT2W #: lotusdbasediff.xhp @@ -17745,7 +17745,7 @@ "par_id3982667842\n" "help.text" msgid "ISO-8859-9 (Turkish)" -msgstr "" +msgstr "ISO-8859-9 (турски)" #. GZMhu #: lotusdbasediff.xhp @@ -17754,7 +17754,7 @@ "par_id4764337087\n" "help.text" msgid "ISO-8859-14 (Western)" -msgstr "" +msgstr "ISO-8859-14 (западен)" #. htMTX #: lotusdbasediff.xhp @@ -17763,7 +17763,7 @@ "par_id5341317667\n" "help.text" msgid "ISO-8859-15/EURO (Western)" -msgstr "" +msgstr "ISO-8859-15/EURO (западен)" #. iCAjC #: lotusdbasediff.xhp @@ -17772,7 +17772,7 @@ "par_id8190805703\n" "help.text" msgid "DOS/OS2-737 (Greek)" -msgstr "" +msgstr "DOS/OS2-737 (гръцки)" #. 9xBJb #: lotusdbasediff.xhp @@ -17781,7 +17781,7 @@ "par_id3299597784\n" "help.text" msgid "DOS/OS2-775 (Baltic)" -msgstr "" +msgstr "DOS/OS2-775 (балтийски)" #. 6hVhF #: lotusdbasediff.xhp @@ -17790,7 +17790,7 @@ "par_id7018988324\n" "help.text" msgid "DOS/OS2-852 (Central European)" -msgstr "" +msgstr "DOS/OS2-852 (централноевропейски)" #. SX66i #: lotusdbasediff.xhp @@ -17799,7 +17799,7 @@ "par_id9277324375\n" "help.text" msgid "DOS/OS2-855 (Cyrillic)" -msgstr "" +msgstr "DOS/OS2-855 (кирилица)" #. agTyE #: lotusdbasediff.xhp @@ -17808,7 +17808,7 @@ "par_id138732955\n" "help.text" msgid "DOS/OS2-857 (Turkish)" -msgstr "" +msgstr "DOS/OS2-857 (турски)" #. K7Ngv #: lotusdbasediff.xhp @@ -17817,7 +17817,7 @@ "par_id6163462950\n" "help.text" msgid "DOS/OS2-862 (Hebrew)" -msgstr "" +msgstr "DOS/OS2-862 (иврит)" #. oBLqw #: lotusdbasediff.xhp @@ -17826,7 +17826,7 @@ "par_id957523556\n" "help.text" msgid "DOS/OS2-864 (Arabic)" -msgstr "" +msgstr "DOS/OS2-864 (арабски)" #. wDrHu #: lotusdbasediff.xhp @@ -17835,7 +17835,7 @@ "par_id3620965595\n" "help.text" msgid "DOS/OS2-866/Russian (Cyrillic)" -msgstr "" +msgstr "DOS/OS2-866/руски (кирилица)" #. KmHiA #: lotusdbasediff.xhp @@ -17844,7 +17844,7 @@ "par_id5590690561\n" "help.text" msgid "DOS/OS2-869/Modern (Greek)" -msgstr "" +msgstr "DOS/OS2-869/съвременен (гръцки)" #. HzHu5 #: lotusdbasediff.xhp @@ -17853,7 +17853,7 @@ "par_id4413925285\n" "help.text" msgid "DOS/Windows-874 (Thai)" -msgstr "" +msgstr "DOS/Windows-874 (тайски)" #. ASun4 #: lotusdbasediff.xhp @@ -17862,7 +17862,7 @@ "par_id8678281824\n" "help.text" msgid "Windows-1250/WinLatin 2 (Central European)" -msgstr "" +msgstr "Windows-1250/WinLatin 2 (централноевропейски)" #. EBPgi #: lotusdbasediff.xhp @@ -17871,7 +17871,7 @@ "par_id7262965442\n" "help.text" msgid "Windows-1251 (Cyrillic)" -msgstr "" +msgstr "Windows-1251 (кирилица)" #. dSjzb #: lotusdbasediff.xhp @@ -17880,7 +17880,7 @@ "par_id349886227\n" "help.text" msgid "Windows-1253 (Greek)" -msgstr "" +msgstr "Windows-1253 (гръцки)" #. JqWit #: lotusdbasediff.xhp @@ -17889,7 +17889,7 @@ "par_id9334140001\n" "help.text" msgid "Windows-1254 (Turkish)" -msgstr "" +msgstr "Windows-1254 (турски)" #. osHL5 #: lotusdbasediff.xhp @@ -17898,7 +17898,7 @@ "par_id198637729\n" "help.text" msgid "Windows-1255 (Hebrew)" -msgstr "" +msgstr "Windows-1255 (иврит)" #. AGNDB #: lotusdbasediff.xhp @@ -17907,7 +17907,7 @@ "par_id1915253947\n" "help.text" msgid "Windows-1256 (Arabic)" -msgstr "" +msgstr "Windows-1256 (арабски)" #. yLXBd #: lotusdbasediff.xhp @@ -17916,7 +17916,7 @@ "par_id3963233883\n" "help.text" msgid "Windows-1257 (Baltic)" -msgstr "" +msgstr "Windows-1257 (балтийски)" #. 4R3tM #: lotusdbasediff.xhp @@ -17925,7 +17925,7 @@ "par_id7531693853\n" "help.text" msgid "Windows-1258 (Vietnamese)" -msgstr "" +msgstr "Windows-1258 (виетнамски)" #. XCFQC #: lotusdbasediff.xhp @@ -17934,7 +17934,7 @@ "par_id1467844465\n" "help.text" msgid "Apple Macintosh (Arabic)" -msgstr "" +msgstr "Apple Macintosh (арабски)" #. BPTER #: lotusdbasediff.xhp @@ -17943,7 +17943,7 @@ "par_id6024654003\n" "help.text" msgid "Apple Macintosh (Central European)" -msgstr "" +msgstr "Apple Macintosh (централноевропейски)" #. HD8gK #: lotusdbasediff.xhp @@ -17952,7 +17952,7 @@ "par_id5126976760\n" "help.text" msgid "Apple Macintosh/Croatian (Central European)" -msgstr "" +msgstr "Apple Macintosh/хърватски (централноевропейски)" #. 8VBmx #: lotusdbasediff.xhp @@ -17961,7 +17961,7 @@ "par_id3792290000\n" "help.text" msgid "Apple Macintosh (Cyrillic)" -msgstr "" +msgstr "Apple Macintosh (кирилица)" #. YXyyc #: lotusdbasediff.xhp @@ -17970,7 +17970,7 @@ "par_id9965406690\n" "help.text" msgid "Not supported: Apple Macintosh (Devanagari)" -msgstr "" +msgstr "Неподдържан: Apple Macintosh (деванагари)" #. u4DPB #: lotusdbasediff.xhp @@ -17979,7 +17979,7 @@ "par_id8871119906\n" "help.text" msgid "Not supported: Apple Macintosh (Farsi)" -msgstr "" +msgstr "Неподдържан: Apple Macintosh (фарси)" #. 8BsMh #: lotusdbasediff.xhp @@ -17988,7 +17988,7 @@ "par_id4888972012\n" "help.text" msgid "Apple Macintosh (Greek)" -msgstr "" +msgstr "Apple Macintosh (гръцки)" #. t5ZDC #: lotusdbasediff.xhp @@ -17997,7 +17997,7 @@ "par_id4238449987\n" "help.text" msgid "Not supported: Apple Macintosh (Gujarati)" -msgstr "" +msgstr "Неподдържан: Apple Macintosh (гуджарати)" #. d9zo6 #: lotusdbasediff.xhp @@ -18006,7 +18006,7 @@ "par_id7304430577\n" "help.text" msgid "Not supported: Apple Macintosh (Gurmukhi)" -msgstr "" +msgstr "Неподдържан: Apple Macintosh (гурмукхи)" #. EdkVx #: lotusdbasediff.xhp @@ -18015,7 +18015,7 @@ "par_id5620424688\n" "help.text" msgid "Apple Macintosh (Hebrew)" -msgstr "" +msgstr "Apple Macintosh (иврит)" #. UvmYZ #: lotusdbasediff.xhp @@ -18024,7 +18024,7 @@ "par_id9801830706\n" "help.text" msgid "Apple Macintosh/Icelandic (Western)" -msgstr "" +msgstr "Apple Macintosh/исландски (западен)" #. NUAXB #: lotusdbasediff.xhp @@ -18033,7 +18033,7 @@ "par_id1158047357\n" "help.text" msgid "Apple Macintosh/Romanian (Central European)" -msgstr "" +msgstr "Apple Macintosh/румънски (централноевропейски)" #. VjbPQ #: lotusdbasediff.xhp @@ -18042,7 +18042,7 @@ "par_id8229976184\n" "help.text" msgid "Apple Macintosh (Thai)" -msgstr "" +msgstr "Apple Macintosh (тайски)" #. fTrd4 #: lotusdbasediff.xhp @@ -18051,7 +18051,7 @@ "par_id9198338282\n" "help.text" msgid "Apple Macintosh (Turkish)" -msgstr "" +msgstr "Apple Macintosh (турски)" #. k2DCo #: lotusdbasediff.xhp @@ -18060,7 +18060,7 @@ "par_id8309681854\n" "help.text" msgid "Apple Macintosh/Ukrainian (Cyrillic)" -msgstr "" +msgstr "Apple Macintosh/украински (кирилица)" #. LaGmk #: lotusdbasediff.xhp @@ -18069,7 +18069,7 @@ "par_id8838054309\n" "help.text" msgid "Apple Macintosh (Chinese Simplified)" -msgstr "" +msgstr "Apple Macintosh (китайски, опростен)" #. SSjQu #: lotusdbasediff.xhp @@ -18078,7 +18078,7 @@ "par_id3756233214\n" "help.text" msgid "Apple Macintosh (Chinese Traditional)" -msgstr "" +msgstr "Apple Macintosh (китайски, традиционен)" #. QU5fA #: lotusdbasediff.xhp @@ -18087,7 +18087,7 @@ "par_id2879385879\n" "help.text" msgid "Apple Macintosh (Japanese)" -msgstr "" +msgstr "Apple Macintosh (японски)" #. jExUJ #: lotusdbasediff.xhp @@ -18096,7 +18096,7 @@ "par_id1036377524\n" "help.text" msgid "Apple Macintosh (Korean)" -msgstr "" +msgstr "Apple Macintosh (корейски)" #. 4YszB #: lotusdbasediff.xhp @@ -18105,7 +18105,7 @@ "par_id864841246\n" "help.text" msgid "Windows-932 (Japanese)" -msgstr "" +msgstr "Windows-932 (японски)" #. PFMie #: lotusdbasediff.xhp @@ -18114,7 +18114,7 @@ "par_id2673430188\n" "help.text" msgid "Windows-936 (Chinese Simplified)" -msgstr "" +msgstr "Windows-936 (китайски, опростен)" #. CCkYn #: lotusdbasediff.xhp @@ -18123,7 +18123,7 @@ "par_id8091466179\n" "help.text" msgid "Windows-Wansung-949 (Korean)" -msgstr "" +msgstr "Windows-Wansung-949 (корейски)" #. vaegT #: lotusdbasediff.xhp @@ -18132,7 +18132,7 @@ "par_id39627464\n" "help.text" msgid "Windows-950 (Chinese Traditional)" -msgstr "" +msgstr "Windows-950 (китайски, традиционен)" #. 9TDCJ #: lotusdbasediff.xhp @@ -18141,7 +18141,7 @@ "par_id9816819191\n" "help.text" msgid "Shift-JIS (Japanese)" -msgstr "" +msgstr "Shift-JIS (японски)" #. pcnRD #: lotusdbasediff.xhp @@ -18150,7 +18150,7 @@ "par_id3206710481\n" "help.text" msgid "GB-2312 (Chinese Simplified)" -msgstr "" +msgstr "GB-2312 (китайски, опростен)" #. ELQVE #: lotusdbasediff.xhp @@ -18159,7 +18159,7 @@ "par_id4470976171\n" "help.text" msgid "GBT-12345 (Chinese Traditional)" -msgstr "" +msgstr "GBT-12345 (китайски, традиционен)" #. iAUTD #: lotusdbasediff.xhp @@ -18168,7 +18168,7 @@ "par_id4932831786\n" "help.text" msgid "GBK/GB-2312-80 (Chinese Simplified)" -msgstr "" +msgstr "GBK/GB-2312-80 (китайски, опростен)" #. pmCaK #: lotusdbasediff.xhp @@ -18177,7 +18177,7 @@ "par_id838501984\n" "help.text" msgid "BIG5 (Chinese Traditional)" -msgstr "" +msgstr "BIG5 (китайски, традиционен)" #. 9UAnC #: lotusdbasediff.xhp @@ -18186,7 +18186,7 @@ "par_id1029043733\n" "help.text" msgid "EUC-JP (Japanese)" -msgstr "" +msgstr "EUC-JP (японски)" #. YAg8h #: lotusdbasediff.xhp @@ -18195,7 +18195,7 @@ "par_id6012776196\n" "help.text" msgid "EUC-CN (Chinese Simplified)" -msgstr "" +msgstr "EUC-CN (китайски, опростен)" #. EUiHu #: lotusdbasediff.xhp @@ -18204,7 +18204,7 @@ "par_id5452136920\n" "help.text" msgid "EUC-TW (Chinese Traditional)" -msgstr "" +msgstr "EUC-TW (китайски, традиционен)" #. kbAeV #: lotusdbasediff.xhp @@ -18213,7 +18213,7 @@ "par_id3435928309\n" "help.text" msgid "ISO-2022-JP (Japanese)" -msgstr "" +msgstr "ISO-2022-JP (японски)" #. Nk6pG #: lotusdbasediff.xhp @@ -18222,7 +18222,7 @@ "par_id2502757680\n" "help.text" msgid "ISO-2022-CN (Chinese Simplified)" -msgstr "" +msgstr "ISO-2022-CN (китайски, опростен)" #. AggZE #: lotusdbasediff.xhp @@ -18231,7 +18231,7 @@ "par_id1644410169\n" "help.text" msgid "KOI8-R (Cyrillic)" -msgstr "" +msgstr "KOI8-R (кирилица)" #. D4igh #: lotusdbasediff.xhp @@ -18240,7 +18240,7 @@ "par_id5346160920\n" "help.text" msgid "Unicode (UTF-7)" -msgstr "" +msgstr "Уникод (UTF-7)" #. 4mFF3 #: lotusdbasediff.xhp @@ -18249,7 +18249,7 @@ "par_id6945821257\n" "help.text" msgid "Unicode (UTF-8)" -msgstr "" +msgstr "Уникод (UTF-8)" #. EFYkJ #: lotusdbasediff.xhp @@ -18258,7 +18258,7 @@ "par_id360272883\n" "help.text" msgid "ISO-8859-10 (Central European)" -msgstr "" +msgstr "ISO-8859-10 (централноевропейски)" #. DANdZ #: lotusdbasediff.xhp @@ -18267,7 +18267,7 @@ "par_id7595099556\n" "help.text" msgid "ISO-8859-13 (Central European)" -msgstr "" +msgstr "ISO-8859-13 (централноевропейски)" #. JDPMV #: lotusdbasediff.xhp @@ -18276,7 +18276,7 @@ "par_id9690820995\n" "help.text" msgid "EUC-KR (Korean)" -msgstr "" +msgstr "EUC-KR (корейски)" #. cBnEq #: lotusdbasediff.xhp @@ -18285,7 +18285,7 @@ "par_id5313899602\n" "help.text" msgid "ISO-2022-KR (Korean)" -msgstr "" +msgstr "ISO-2022-KR (корейски)" #. EnC6J #: lotusdbasediff.xhp @@ -18294,7 +18294,7 @@ "par_id8105979305\n" "help.text" msgid "JIS 0201 (Japanese)" -msgstr "" +msgstr "JIS 0201 (японски)" #. JtyuF #: lotusdbasediff.xhp @@ -18303,7 +18303,7 @@ "par_id1229669587\n" "help.text" msgid "JIS 0208 (Japanese)" -msgstr "" +msgstr "JIS 0208 (японски)" #. ncHwS #: lotusdbasediff.xhp @@ -18312,7 +18312,7 @@ "par_id3628381032\n" "help.text" msgid "JIS 0212 (Japanese)" -msgstr "" +msgstr "JIS 0212 (японски)" #. sBZGC #: lotusdbasediff.xhp @@ -18321,7 +18321,7 @@ "par_id7686777017\n" "help.text" msgid "Windows-Johab-1361 (Korean)" -msgstr "" +msgstr "Windows-Johab-1361 (корейски)" #. wmAKk #: lotusdbasediff.xhp @@ -18330,7 +18330,7 @@ "par_id4764349313\n" "help.text" msgid "GB-18030 (Chinese Simplified)" -msgstr "" +msgstr "GB-18030 (китайски, опростен)" #. fDAdA #: lotusdbasediff.xhp @@ -18339,7 +18339,7 @@ "par_id3047093405\n" "help.text" msgid "BIG5-HKSCS (Chinese Traditional)" -msgstr "" +msgstr "BIG5-HKSCS (китайски, традиционен)" #. f89n4 #: lotusdbasediff.xhp @@ -18348,7 +18348,7 @@ "par_id472750950\n" "help.text" msgid "TIS 620 (Thai)" -msgstr "" +msgstr "TIS 620 (тайски)" #. sMGuE #: lotusdbasediff.xhp @@ -18357,7 +18357,7 @@ "par_id5498125014\n" "help.text" msgid "KOI8-U (Cyrillic)" -msgstr "" +msgstr "KOI8-U (кирилица)" #. TRHTM #: lotusdbasediff.xhp @@ -18366,7 +18366,7 @@ "par_id7311184156\n" "help.text" msgid "ISCII Devanagari (Indian)" -msgstr "" +msgstr "ISCII деванагари (индийски)" #. DEuFQ #: lotusdbasediff.xhp @@ -18375,7 +18375,7 @@ "par_id6161848540\n" "help.text" msgid "Unicode (Java's modified UTF-8)" -msgstr "" +msgstr "Уникод (модифициран явански UTF-8)" #. fiMu3 #: lotusdbasediff.xhp @@ -18384,7 +18384,7 @@ "par_id3941935297\n" "help.text" msgid "Adobe Standard" -msgstr "" +msgstr "Adobe Standard" #. vbSBX #: lotusdbasediff.xhp @@ -18393,7 +18393,7 @@ "par_id9054912223\n" "help.text" msgid "Adobe Symbol" -msgstr "" +msgstr "Adobe Symbol" #. HuPBo #: lotusdbasediff.xhp @@ -18402,7 +18402,7 @@ "par_id317092561\n" "help.text" msgid "PT 154 (Windows Cyrillic Asian codepage developed in ParaType)" -msgstr "" +msgstr "PT 154 (кирилска азиатска кодова таблица за Windows, разработена в ParaType)" #. DJAEX #: lotusdbasediff.xhp @@ -18411,7 +18411,7 @@ "par_id3689682515\n" "help.text" msgid "Unicode UCS4" -msgstr "" +msgstr "Уникод UCS4" #. VoHsG #: lotusdbasediff.xhp @@ -18420,7 +18420,7 @@ "par_id7382215766\n" "help.text" msgid "Unicode UCS2" -msgstr "" +msgstr "Уникод UCS2" #. F8tDM #: macro_recording.xhp @@ -18753,7 +18753,7 @@ "par_idN10841\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Помощник за таблици" #. fLi53 #: main.xhp @@ -20886,7 +20886,7 @@ "par_id291631706320606\n" "help.text" msgid "GPG signing only works for ODF documents." -msgstr "" +msgstr "Подписването с GPG работи само за документи на ODF." #. LrFLD #: openpgp.xhp @@ -21300,7 +21300,7 @@ "bm_id380260\n" "help.text" msgid "Format Paintbrush clone formatting formatting;copying copying;formatting Paintbrush" -msgstr "" +msgstr "четка за форматиклониране на форматиранетоформатиране;копиранекопиране;форматиранечетка" #. 7BBrB #: paintbrush.xhp @@ -21318,7 +21318,7 @@ "par_idN10655\n" "help.text" msgid "Use the Clone Formatting tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object." -msgstr "" +msgstr "Използвайте инструмента Копиране на форматирането, за да копирате форматиране от избран текст или обект и да го приложите върху друг текст или обект." #. F7Fcd #: paintbrush.xhp @@ -21336,7 +21336,7 @@ "par_idN10667\n" "help.text" msgid "On the Standard Bar, click the Clone Formatting icon. The mouse cursor will change to a paint bucket." -msgstr "" +msgstr "В лентата Стандартни щракнете върху иконата Клониране на форматирането. Курсорът на мишката ще се промени на кофа с боя." #. AZjCv #: paintbrush.xhp @@ -21354,7 +21354,7 @@ "par_id291629997756899\n" "help.text" msgid "If you want to apply the formatting to more than one selection, double-click the Clone Formatting icon Icon. After you apply all the formatting, click the icon again." -msgstr "" +msgstr "Ако желаете да приложите форматирането върху няколко селекции, щракнете двукратно върху иконата Копиране на форматирането Икона. След като приключите с прилагането, щракнете върху иконата отново." #. 9ivCF #: paintbrush.xhp @@ -21372,7 +21372,7 @@ "par_id1001629997571404\n" "help.text" msgid "In Calc, the Clone Formatting tool only copies formatting applied using the Format - Cells dialog or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the Format - Character dialog will not be copied using the Clone Formatting tool." -msgstr "" +msgstr "В Calc инструментът „Клониране на форматирането“ копира само форматиране, приложено чрез диалога Форматиране - Клетки или други еквивалентни методи. Следователно форматирането, приложено пряко върху знаци чрез избиране на текст в клетка и отваряне на диалога Форматиране - Знак, няма да се копира с този инструмент." #. pjGa2 #: paintbrush.xhp @@ -21570,7 +21570,7 @@ "par_idN1070C\n" "help.text" msgid "Copies cell formatting specified using the Format - Cells dialog." -msgstr "" +msgstr "Копира форматирането на клетки, зададено чрез диалога Форматиране - Клетки." #. LFKkc #: pasting.xhp @@ -22119,7 +22119,7 @@ "bm_id3150620\n" "help.text" msgid "protecting; contents protected contents contents protection encryption of contents passwords for protecting contents security;protecting contents form controls; protecting draw objects;protecting OLE objects;protecting graphics;protecting frames;protecting" -msgstr "" +msgstr "защитаване; съдържаниезащитено съдържаниесъдържание, защитаванешифроване на съдържаниепароли за защитаване на съдържаниесигурност;защитаване на съдържаниеконтроли; защитаванеграфични обекти;защитаванеOLE обекти;защитаванеграфики;защитаванерамки;защитаване" #. gpCCS #: protection.xhp @@ -22128,7 +22128,7 @@ "hd_id3155364\n" "help.text" msgid "Protecting Contents in %PRODUCTNAME" -msgstr "" +msgstr "Защитаване на съдържание в %PRODUCTNAME" #. srHbB #: protection.xhp @@ -22146,7 +22146,7 @@ "hd_id3146957\n" "help.text" msgid "Protecting Documents With Passwords When Saving" -msgstr "" +msgstr "Защитаване на документи с пароли при записване" #. 74CYA #: protection.xhp @@ -22200,7 +22200,7 @@ "par_id761632164002322\n" "help.text" msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read Encrypting Documents with OpenPGP to learn more on how to set up OpenPGP encryption keys." -msgstr "" +msgstr "Възможно е с OpenPGP да се дефинират частни и публични ключове, с които да се шифроват документи на %PRODUCTNAME. Прочетете Шифроване на документи с OpenPGP, за да научите повече за създаването на ключове за шифроване с OpenPGP." #. HfUCF #: protection.xhp @@ -22371,7 +22371,7 @@ "tit\n" "help.text" msgid "QR and Barcode" -msgstr "" +msgstr "QR и щрихкод" #. 3tty9 #: qrcode.xhp @@ -22380,7 +22380,7 @@ "bm_id901566317201860\n" "help.text" msgid "QR code;barcode" -msgstr "" +msgstr "QR код;щрихкод" #. 82bgJ #: qrcode.xhp @@ -22389,7 +22389,7 @@ "hd_id461566315781439\n" "help.text" msgid "QR and Barcode" -msgstr "" +msgstr "QR и щрихкод" #. ztYka #: qrcode.xhp @@ -22398,7 +22398,7 @@ "par_id381566315781439\n" "help.text" msgid "Generate linear and matrix codes for any text or URL." -msgstr "" +msgstr "Генериране на линейни и матрични кодове за произволен текст или URL." #. UCs5m #: qrcode.xhp @@ -22407,7 +22407,7 @@ "par_id411566316109551\n" "help.text" msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning." -msgstr "" +msgstr "Функцията за генериране на QR кодове и щрихкодове ви позволява да кодирате произволен текстов низ или URL адрес като щрихкод или QR код и да го вмъкнете в документа като графичен обект за сканиране." #. N32UF #: qrcode.xhp @@ -22416,7 +22416,7 @@ "par_id761566316165430\n" "help.text" msgid "Choose Insert - Object - QR and Barcode." -msgstr "" +msgstr "Изберете Вмъкване - Обект - QR и щрихкод." #. UCeXG #: qrcode.xhp @@ -22425,7 +22425,7 @@ "hd_id611566316506278\n" "help.text" msgid "URL or text" -msgstr "" +msgstr "URL или текст" #. q98jw #: qrcode.xhp @@ -22434,7 +22434,7 @@ "par_id251566316519649\n" "help.text" msgid "The text from which to generate the code." -msgstr "" +msgstr "Текстът, от който да се генерира кодът." #. 6mj5K #: qrcode.xhp @@ -22515,7 +22515,7 @@ "par_id981566316947064\n" "help.text" msgid "The width of the margin surrounding the code." -msgstr "" +msgstr "Ширината на полето около кода." #. kZPNW #: qrcode.xhp @@ -22569,7 +22569,7 @@ "hd_id171562795247717\n" "help.text" msgid "Redacting Documents" -msgstr "" +msgstr "Заличаване на информация в документи" #. AFwWF #: redaction.xhp @@ -22578,7 +22578,7 @@ "par_id471562795247717\n" "help.text" msgid "Redacting documents blocks out words or portions of a document for authorized use or viewing. Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy." -msgstr "" +msgstr "Заличаването на информация в документи представлява закриване на думи или откъси, предназначени за използване или преглеждане само от упълномощени лица. То служи за защита на поверителна информация и улеснява спазването на изисквания за поверителност и защита на личните данни при разпространяване на документи." #. QdoMp #: redaction.xhp @@ -22839,7 +22839,7 @@ "bm_id3150247\n" "help.text" msgid "changes; accepting or rejecting review function;accepting or rejecting changes" -msgstr "" +msgstr "промени; приемане или отхвърлянеследене на промените;приемане или отхвърляне" #. FTaFc #: redlining_accept.xhp @@ -22884,7 +22884,7 @@ "par_id3147008\n" "help.text" msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see Merging Versions)." -msgstr "" +msgstr "Ако сте пуснали в обращение няколко копия на документа, първо ги обединете (вижте Сливане на версии)." #. Rk8jv #: redlining_accept.xhp @@ -24693,7 +24693,7 @@ "par_id3156152\n" "help.text" msgid "Search for Run in the Windows Start menu." -msgstr "" +msgstr "Намерете Изпълнение (Run) в менюто „Старт“ на Windows." #. xf2BF #: start_parameters.xhp @@ -24702,7 +24702,7 @@ "par_id3152472\n" "help.text" msgid "Type the following text in the Open text field and click OK." -msgstr "" +msgstr "Въведете следния текст в текстовото поле Отвори (Open) и щракнете върху OK." #. nMQWE #: start_parameters.xhp @@ -24711,7 +24711,7 @@ "par_id3147561\n" "help.text" msgid "{install}\\program\\soffice.exe {parameter}" -msgstr "" +msgstr "{инсталация}\\program\\soffice.exe {параметър}" #. mmyAy #: start_parameters.xhp @@ -24720,7 +24720,7 @@ "par_id3153360\n" "help.text" msgid "Replace {install} with the path to your installation of %PRODUCTNAME software (for example, C:\\Program Files\\%PRODUCTNAME" -msgstr "" +msgstr "Заменете {инсталация} с пътя до инсталираното копие на %PRODUCTNAME (например C:\\Program Files\\%PRODUCTNAME)." #. x5jE9 #: start_parameters.xhp @@ -24729,7 +24729,7 @@ "par_id3157152\n" "help.text" msgid "Open a shell under Linux, *BSD, or macOS platforms." -msgstr "" +msgstr "В платформа Linux, *BSD или macOS отворете командна обвивка." #. LEs72 #: start_parameters.xhp @@ -24738,7 +24738,7 @@ "par_id3147669\n" "help.text" msgid "Type the following line of text, then press Return:" -msgstr "" +msgstr "Въведете следния ред текст и натиснете Return:" #. smkWS #: start_parameters.xhp @@ -24747,7 +24747,7 @@ "par_id3143561\n" "help.text" msgid "{install}/program/soffice {parameter}" -msgstr "" +msgstr "{инсталация}/program/soffice {параметър}" #. BEAF7 #: start_parameters.xhp @@ -24756,7 +24756,7 @@ "par_id3157360\n" "help.text" msgid "Replace {install} with the path to your installation of %PRODUCTNAME software (for example, /opt/%PRODUCTNAME in UNIX)" -msgstr "" +msgstr "Заменете {инсталация} с пътя до инсталираното копие на %PRODUCTNAME (например в UNIX /opt/%PRODUCTNAME)." #. 4EMfS #: start_parameters.xhp @@ -24990,7 +24990,7 @@ "par_id3146786\n" "help.text" msgid "Sets the DISPLAY environment variable on UNIX-like platforms to the value {display}. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms." -msgstr "" +msgstr "Задава на променливата от обкръжението DISPLAY в съвместими с UNIX платформи стойност {дисплей}. Този параметър се поддържа само от стартовия скрипт за $[officename] в съвместими с UNIX платформи." #. 67rps #: start_parameters.xhp @@ -25449,7 +25449,7 @@ "par_id2016120401222926\n" "help.text" msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName[:OutputFilterParams]] is effective. If --outdir is used more than once, only its last value is effective. For example:" -msgstr "" +msgstr "Ако --convert-to е използван повече от веднъж, в сила е последната стойност на разширение_на_резултата[:име_на_изходен_филтър[:параметри_на_изходен_филтър]]. Ако --outdir е използван повече от веднъж, в сила е само последната му стойност. Например:" #. ir37U #: start_parameters.xhp @@ -25467,7 +25467,7 @@ "par_id51634741869672\n" "help.text" msgid "The list of filter options for Lotus, dBase and Diff files." -msgstr "" +msgstr "Списък с настройки на филтрите за файлове на Lotus, dBase и Diff." #. goKPf #: start_parameters.xhp @@ -25476,7 +25476,7 @@ "par_id1001634741874640\n" "help.text" msgid "The list of filter options for CSV files." -msgstr "" +msgstr "Списък с настройки на филтъра за CSV файлове." #. EiUnD #: start_parameters.xhp @@ -27078,7 +27078,7 @@ "tit\n" "help.text" msgid "Tip of the day" -msgstr "" +msgstr "Съвет на деня" #. hEahE #: tipoftheday.xhp @@ -27087,7 +27087,7 @@ "bm_id961630844980165\n" "help.text" msgid "tip of the day" -msgstr "" +msgstr "съвет на деня" #. Pmxkf #: tipoftheday.xhp @@ -27096,7 +27096,7 @@ "hd_id161630843025887\n" "help.text" msgid "Tip of the Day" -msgstr "" +msgstr "Съвет на деня" #. PtZCz #: tipoftheday.xhp @@ -27105,7 +27105,7 @@ "par_id731630843025888\n" "help.text" msgid "The Tip of the Day dialog displays useful tips for the user." -msgstr "" +msgstr "Диалоговият прозорец „Съвет на деня“ показва полезни съвети за потребителя." #. eGRcH #: tipoftheday.xhp @@ -27114,7 +27114,7 @@ "par_id721630843443217\n" "help.text" msgid "Choose Help - Show Tip of the day." -msgstr "" +msgstr "Изберете Помощ - Показване на „Съвет на деня“." #. Mix66 #: tipoftheday.xhp @@ -27123,7 +27123,7 @@ "par_id601630844290206\n" "help.text" msgid "The set of tips is collected from several %PRODUCTNAME community web pages, and is updated on each new release of the software." -msgstr "" +msgstr "Наборът от съвети се събира от няколко уебстраници на общността на %PRODUCTNAME и се обновява с всяко ново издание на софтуера." #. cFRY5 #: tipoftheday.xhp @@ -27132,7 +27132,7 @@ "par_id51630844860633\n" "help.text" msgid "The tip of the day is not specific to the current module." -msgstr "" +msgstr "Съветът на деня не е обвързан с текущия модул." #. XjuPZ #: tipoftheday.xhp @@ -27141,7 +27141,7 @@ "hd_id171630844295289\n" "help.text" msgid "Show tips on startup" -msgstr "" +msgstr "Показване на съвети при стартиране" #. LqZHq #: tipoftheday.xhp @@ -27150,7 +27150,7 @@ "par_id711630844302059\n" "help.text" msgid "Displays a dialog with a random tip on %PRODUCTNAME startup." -msgstr "" +msgstr "Показва диалогов прозорец със случаен съвет при стартиране на %PRODUCTNAME." #. PAxHM #: tipoftheday.xhp @@ -27159,7 +27159,7 @@ "hd_id81630844306451\n" "help.text" msgid "Next Tip" -msgstr "" +msgstr "Следващ съвет" #. nqjpy #: tipoftheday.xhp @@ -27168,7 +27168,7 @@ "par_id401630844318220\n" "help.text" msgid "Displays another tip of the day in the same dialog." -msgstr "" +msgstr "Показва следващия съвет на деня в същия диалог." #. rSTiz #: tipoftheday.xhp @@ -27177,7 +27177,7 @@ "hd_id251630844323484\n" "help.text" msgid "OK" -msgstr "" +msgstr "OK" #. GoQru #: tipoftheday.xhp @@ -27186,7 +27186,7 @@ "par_id511630844327861\n" "help.text" msgid "Close the Tip of the Day dialog." -msgstr "" +msgstr "Затваря диалога „Съвет на деня“." #. C6Bb4 #: undo_formatting.xhp diff -Nru libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/bg/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562351067.000000\n" @@ -4425,7 +4425,7 @@ "par_id3150251\n" "help.text" msgid "Shows or hides hidden paragraphs. This option only affects the screen display of hidden paragraphs, and not the printing of hidden paragraphs." -msgstr "Показва или скрива абзаци. Тази настройка засяга само показването върху екрана, не и отпечатването на скрити абзаци." +msgstr "Показва или скрива скритите абзаци. Тази настройка засяга само показването върху екрана, не и отпечатването на скрити абзаци." #. 6bm6N #: 03140000.xhp diff -Nru libreoffice-7.3.4/translations/source/bg/sc/messages.po libreoffice-7.3.5/translations/source/bg/sc/messages.po --- libreoffice-7.3.4/translations/source/bg/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562424086.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "Изглед" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Изображение" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Изображение" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Рисуване" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Рисуване" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Обект" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Обект" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Мултимедия" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "Мултимедия" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Печат" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Печат" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Формуляр" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Формуляр" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Разширение" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Разширение" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Инструменти" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Инструменти" @@ -25702,139 +25702,139 @@ msgstr "Изображение" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Подреждане" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Цвят" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Мрежа" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Език" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Преглед" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Коментари" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Сравняване" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Изглед" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Рисуване" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Редактиране" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Подреждане" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Изглед" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Група" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Шрифт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Подравняване" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Изглед" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Вмъкване" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Мултимедия" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Рамка" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Подреждане" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Мрежа" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Изглед" diff -Nru libreoffice-7.3.4/translations/source/bg/sd/messages.po libreoffice-7.3.5/translations/source/bg/sd/messages.po --- libreoffice-7.3.4/translations/source/bg/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-09 04:12+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562423894.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "Таблица" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Изображение" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Изображение" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Рисуване" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Рисуване" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Обект" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Обект" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Мултимедия" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Мултимедия" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Формуляр" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Формуляр" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Образец" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Образец" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Разширение" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Разширение" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Инструменти" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Инструменти" @@ -7062,109 +7062,109 @@ msgstr "Таблица" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Изображение" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Изображение" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Рисуване" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Рисуване" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Обект" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Обект" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Мултимедия" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Мултимедия" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Формуляр" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Формуляр" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Образец" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Образец" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Разширение" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Разширение" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Инструменти" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Инструменти" diff -Nru libreoffice-7.3.4/translations/source/bg/svtools/messages.po libreoffice-7.3.5/translations/source/bg/svtools/messages.po --- libreoffice-7.3.4/translations/source/bg/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-08 10:33+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559419310.000000\n" #. fLdeV @@ -885,19 +885,19 @@ #: include/svtools/strings.hrc:194 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1" msgid "The image needs about %1 KB of memory." -msgstr "Изображението заема около %1 КБ памет." +msgstr "Изображението заема около %1 кБ памет." #. FCnVT #: include/svtools/strings.hrc:195 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2" msgid "The image needs about %1 KB of memory, the file size is %2 KB." -msgstr "Изображението заема около %1 КБ памет, а размерът на файла е %2 КБ." +msgstr "Изображението заема около %1 кБ памет, а размерът на файла е %2 кБ." #. CdHU8 #: include/svtools/strings.hrc:196 msgctxt "STR_SVT_ESTIMATED_SIZE_VEC" msgid "The file size is %1 KB." -msgstr "Размерът на файла е %1 КБ." +msgstr "Размерът на файла е %1 кБ." #. TaCaF #: include/svtools/strings.hrc:197 diff -Nru libreoffice-7.3.4/translations/source/bg/sw/messages.po libreoffice-7.3.5/translations/source/bg/sw/messages.po --- libreoffice-7.3.4/translations/source/bg/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-01 10:40+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -10499,19 +10499,19 @@ msgstr "Премества избрания абзацен стил с едно ниво надолу в йерархията на указателя." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Стил" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стилове" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Създава елементи на указател от конкретни абзацни стилове." @@ -13955,37 +13955,37 @@ msgstr "Смяна на БД" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Дефиниране" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Бази от данни в употреба" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Налични бази от данни" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Преглед..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Показва диалогов прозорец за отваряне на файл с база от данни (*.odb). Избраният файл ще бъде добавен в списъка „Налични бази от данни“." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Използвайте бутона за преглед, за да изберете файл на БД." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Изброява базите от данни, които в момента са в употреба." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Изброява всички бази от данни, регистрирани в %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Смяна на БД" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "БД, приложена върху документа:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Смяна на източниците на данни за текущия документ." @@ -20073,109 +20073,109 @@ msgstr "Използване на текущия документ" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Използва текущия документ на Writer като основа на циркулярното писмо." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Създаване на нов документ" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Създава нов документ на Writer, който да бъде използван като циркулярно писмо." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Започване от съществуващ документ" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Изберете съществуващ документ на Writer, който да използвате за основа на циркулярното писмо." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Започване от шаблон" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Изберете шаблона, който искате да използвате като основа за циркулярното писмо." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Започване от наскоро запазен документ" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Използва съществуващо циркулярно писмо като основа за ново." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Изберете документа." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Преглед..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Намерете документа на Writer, който искате да използвате, и щракнете върху Отваряне." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Преглед..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Отваря диалог за избор на шаблон." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Източникът на данни на текущия документ не е регистриран. Моля, сменете базата от данни." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Смяна на базата от данни..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Изберете начален документ за циркулярно писмо" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Укажете документа, който искате да се използва за основа на циркулярното писмо." @@ -22318,49 +22318,49 @@ msgstr "Обект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Настройки" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Обтичане" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Хипервръзка" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Кантове" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Област" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Прозрачност" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27056,7 +27056,7 @@ msgstr "Обновяване" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Показва статистика за текущия файл." diff -Nru libreoffice-7.3.4/translations/source/bg/vcl/messages.po libreoffice-7.3.5/translations/source/bg/vcl/messages.po --- libreoffice-7.3.4/translations/source/bg/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bg/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-10-22 04:15+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -2324,169 +2324,169 @@ msgstr "Указва отпечатване на няколко страници върху всеки лист хартия." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "По избор" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Изберете колко страници да бъдат отпечатани на всеки лист хартия." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Страници:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Задайте броя редове." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "на" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Задайте броя колони." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Бели полета:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Задайте полето между отделните страници върху всеки лист хартия." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "между страниците" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Разстояние:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Задайте полето между отпечатаните страници и ръба на хартията." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "до ръба на листа" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ред:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "От ляво надясно, после надолу" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "От горе надолу, после надясно" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "От горе надолу, после наляво" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "От дясно наляво, после надолу" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Изберете реда на отпечатване на страниците." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Кант около всяка страница" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Отметнете за отпечатване на кант около всяка страница." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошура" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Изберете, за да отпечатате документа във формат на брошура." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Мостра за комплектуване" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Задайте разположението на страниците, които да се отпечатат върху всеки лист хартия. Мострата показва как ще изглежда всеки от напечатаните листове." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Още" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Подредба на страниците" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Общи" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Отпечатва текущия документ, избор, или страниците, които сте посочили. Можете да промените настройките на принтера за текущия документ." diff -Nru libreoffice-7.3.4/translations/source/bn/chart2/messages.po libreoffice-7.3.5/translations/source/bn/chart2/messages.po --- libreoffice-7.3.4/translations/source/bn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3701,7 +3701,7 @@ msgstr "কলাম এবং রেখা লেখচিত্র ধরনের জন্য মোট রেখা নির্ধারণ করুন।" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "একটি মৌলিক লেখচিত্র ধরন নির্বাচন করুন।" diff -Nru libreoffice-7.3.4/translations/source/bn/cui/messages.po libreoffice-7.3.5/translations/source/bn/cui/messages.po --- libreoffice-7.3.4/translations/source/bn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Bengali \n" @@ -17646,177 +17646,152 @@ msgid "Automatic" msgstr "স্বয়ংক্রিয়" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "উচ্চ বৈসাদৃশ্য (~H)" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "পর্দার ডিস্প্লে উন্নত করার জন্য গ্রাফিকাল ডিস্প্লে এডাপ্টারের হার্ডওয়্যার বৈশিষ্ট্য সরাসরি ব্যবহৃত হয়।" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn/dbaccess/messages.po libreoffice-7.3.5/translations/source/bn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/bn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Bengali \n" @@ -3478,75 +3478,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "সন্নিবেশিত ডাটাবেস" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "সম্প্রতি ব্যবহার করা হয়েছে" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "খুলুন" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3554,7 +3554,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn/extensions/messages.po libreoffice-7.3.5/translations/source/bn/extensions/messages.po --- libreoffice-7.3.4/translations/source/bn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -312,596 +312,582 @@ msgid "Refresh form" msgstr "ফর্ম রিফ্রেস করুন" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "গ্রহণ করুন" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "পোষ্ট করুন" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "বহু-অংশ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "পাঠ্য" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "আদর্শ (ছোট)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "আদর্শ (সংক্ষেপ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "আদর্শ (সংক্ষেপ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "আদর্শ (বড়)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "১৩:৪৫" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "১৩:৪৫:০০" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "০১:৪৫ PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "০১:৪৫:০০ PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "নির্বাচিত নয়" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "নির্বাচিত" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "সুনির্দিষ্ট নয়" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "সকল রেকর্ড" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "সক্রিয় রেকর্ড" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "বর্তমান পৃষ্ঠা" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "না" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "হ্যাঁ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "মূল ফর্ম" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "থামানো" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "কোনটি না" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "একক" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "বহুবিধ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "পরিসর" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "অনুভূমিক" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "উল্লম্ব" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "পূর্বনির্ধারিত" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ঠিক আছে" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "বাতিল" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "সহায়তা" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "নির্বাচিত ভুক্তি" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "নির্বাচিত ভুক্তির অবস্থান" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "একক-লাইন" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "বহুবিধ-লাইন" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "বিন্যাস যুক্ত বহুবিধ-লাইন" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (ইউনিক্স)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (উইন্ডোজ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "কোনটি না" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "অনুভূমিক" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "উল্লম্ব" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "উভয়" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "ত্রিমাত্রিক" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "সমতল" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "বামদিকে শীর্ষে" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "বাম কেন্দ্রস্থিত" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "বামদিকে নিচে" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ডানদিকে শীর্ষে" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ডান কেন্দ্রস্থিত" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ডানদিকে নিচে" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "উপরের বামে" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "উপরে কেন্দ্রস্থিত" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "উপরের ডানে" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "নিচের বামে" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "নিচের কেন্দ্রস্থিত" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "নিচের ডানে" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "কেন্দ্রস্থিত" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "সংরক্ষণ করুন" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "প্রতিস্থাপন" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ভাঁজ হয়ে গুটানো" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "না" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "অনুপাত বজায় রাখা হবে" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "মানানসই আকার" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "বাম-থেকে-ডান" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ডান-থেকে-বাম" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "উর্ধঃস্তন বস্তুর সেটিং ব্যবহার" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "কখনো নয়" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "যখন ফোকাস করা হয়" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "সবসময়" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "অনুচ্ছেদে" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "অক্ষর হিসেবে" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠায়" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ফ্রেমে" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "অক্ষরে" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠায়" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/bn/fpicker/messages.po libreoffice-7.3.5/translations/source/bn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/bn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ফাইলের নাম:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ফাইলের ধরন: (~t)" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "শুধুমাত্র পাঠযোগ্য (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "পাসওয়ার্ড দিয়ে সংরক্ষণ (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "স্বয়ংক্রিয় ফাইল নামের বর্ধিতাংশ (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "পরিশোধক সেটিংসমূহ সম্পাদনা (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn/sc/messages.po libreoffice-7.3.5/translations/source/bn/sc/messages.po --- libreoffice-7.3.4/translations/source/bn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25904,97 +25904,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26384,158 +26384,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "সাজানো" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "রঙ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "গ্রিড" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ভাষা" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "পর্যালোচনা" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "মন্তব্য" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "দৃশ্যপট" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "সম্পাদনা" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "সাজানো" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "দৃশ্যপট" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "গ্রুপ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ফন্ট" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "প্রান্তিককরণ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "দৃশ্যপট" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "সন্নিবেশ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "মিডিয়া" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ফ্রেম" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "সাজানো" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "গ্রিড" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/bn/sd/messages.po libreoffice-7.3.5/translations/source/bn/sd/messages.po --- libreoffice-7.3.4/translations/source/bn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4247,109 +4247,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7233,109 +7233,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn/sw/messages.po libreoffice-7.3.5/translations/source/bn/sw/messages.po --- libreoffice-7.3.4/translations/source/bn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:00+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10767,20 +10767,20 @@ msgstr "সূচী স্তরায়নের এক স্তর নিচে নির্বাচিত অনুচ্ছেদ শৈলী সরিয়ে নিন।" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "শৈলী" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "সুনির্দিষ্ট অনুচ্ছেদ শৈলীসমূহ থেকে সূচী ভুক্তিসমূহ তৈরি করা হয়।" @@ -14373,38 +14373,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "নির্ধারণ (~D)" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ব্রাউজ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "একটি ডাটাবেস ফাইল (*.odb) খুলতে একটি ফাইল খুলুন ডায়ালগ উন্মুক্ত করা হয়। নির্বাচিত ফাইলটি বিদ্যমান ডাটাবেস তালিকায় যুক্ত করা হয়।" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14412,31 +14412,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "বর্তমানে ব্যবহৃত ডাটাবেস তালিকাভূক্ত করুন।" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "বর্তমান নথির জন্য ডাটাবেস উৎস পরিবর্তন করুন।" @@ -20771,111 +20771,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "বার্তা একত্রিতকরনের ভিত্তি হিসেবে বর্তমান রাইটার নথি ব্যবহার করা হয়।" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "বার্তা একত্রিতকরনে ব্যবহার করার জন্য একটি নতুন রাইটার নথি তৈরি করা হয়।" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "বার্তা একত্রিতকরনে ভিত্তি হিসেবে ব্যবহার করার জন্য একটি নতুন রাইটার নথি নির্বাচন করুন।" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "ফর্মা নির্বাচন করুন যা আপনি আপনার বার্তা একত্রিতকরনের সাথে তৈরি করতে চান।" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "নতুন বার্তা একত্রিতকরণ নথির ভিত্তি হিসেবে একটি বিদ্যমান বার্তা একত্রিতকরণ নথি ব্যবহার করুন।" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "নথিটি নির্বাচন করুন।" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ব্রাউজ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ব্রাউজ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23068,50 +23068,50 @@ msgstr "বস্তু" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ধরন" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "অপশন" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "মোড়ানো (~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "হাইপারলিংক" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "সীমানা" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "এলাকা" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "স্বচ্ছতা" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ম্যাক্রো" @@ -28013,7 +28013,7 @@ msgstr "হালনাগাদ" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn/vcl/messages.po libreoffice-7.3.5/translations/source/bn/vcl/messages.po --- libreoffice-7.3.4/translations/source/bn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2345,170 +2345,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "স্বনির্ধারিত:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "দ্বারা" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "পৃষ্ঠার মাঝে" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "শীটের সীমানায়" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "প্রতিটি পৃষ্ঠার বাইরে সীমানা আঁকা হবে" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "বিলিপত্র" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/chart2/messages.po libreoffice-7.3.5/translations/source/bn-IN/chart2/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-13 05:59+0000\n" "Last-Translator: joydeep \n" "Language-Team: LANGUAGE \n" @@ -3603,7 +3603,7 @@ msgstr "কলাম এবং রেখা লেখচিত্র ধরনের জন্য মোট রেখা নির্ধারণ করুন।" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "একটি মৌলিক লেখচিত্র ধরন নির্বাচন করুন।" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/cui/messages.po libreoffice-7.3.5/translations/source/bn-IN/cui/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-25 05:04+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -17172,178 +17172,152 @@ msgid "Automatic" msgstr "স্বয়ংক্রিয়" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "গ্যালাক্সি" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "উচ্চ বৈশাদৃশ্য" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "অক্সিজেন" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ক্লাসিক" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "হার্ডওয়্যার ত্বরয়ণ ব্যবহার করুন (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "পর্দার ডিস্প্লে উন্নত করার জন্য গ্রাফিকাল ডিস্প্লে এডাপ্টারের হার্ডওয়্যার বৈশিষ্ট্য সরাসরি ব্যবহৃত হয়।" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "অ্যান্টি অ্যাললিয়েসিং ব্যবহার করুন (_l):" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "গ্রাফিক্স আউটপুট" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ফন্টের পূর্বদর্শন (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "থেকে (_m):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ফন্টের তালিকা" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/dbaccess/messages.po libreoffice-7.3.5/translations/source/bn-IN/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-11 07:30+0000\n" "Last-Translator: biraj \n" "Language-Team: LANGUAGE \n" @@ -3417,74 +3417,74 @@ msgstr "নতুন ডাটাবেস তৈরি করুন (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "সন্নিবেশিত ডাটাবেস (_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "একটি বিদ্যমান ডাটাবেস ফাইল খুলুন (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "সম্প্রতি ব্যবহৃত (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "খুলুন" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "একটি বিদ্যমান ডাটাবেসে সংযোগ করুন (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3492,7 +3492,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/extensions/messages.po libreoffice-7.3.5/translations/source/bn-IN/extensions/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "ফর্ম রিফ্রেস করুন" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "গ্রহণ করুন" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "পোষ্ট করুন" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "বহু-অংশ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "পাঠ্য" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "আদর্শ (ছোট)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "সাধারণ (সংক্ষেপ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "সাধারণ (সংক্ষেপ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "আদর্শ (বড়)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "১৩:৪৫" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "১৩:৪৫:০০" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "০১:৪৫ PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "০১:৪৫:০০ PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "নির্বাচিত নয়" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "নির্বাচিত" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "সুনির্দিষ্ট নয়" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "সকল রেকর্ড" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "সক্রিয় রেকর্ড" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "বর্তমান পৃষ্ঠা" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "না" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "হ্যাঁ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "মূল ফর্ম" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "খালি (_b)" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "মূল (_p)" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "নিজস্ব (_s)" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "শীর্ষ (_T)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "কোনটি না" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "একক" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "বহুবিধ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "পরিসর" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "অনুভূমিক" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "উল্লম্ব" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "পূর্বনির্ধারিত" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ঠিক আছে" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "বাতিল" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "সহায়তা" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "নির্বাচিত ভুক্তি" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "নির্বাচিত ভুক্তির অবস্থান" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "একক-লাইন" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "বহুবিধ-লাইন" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "বিন্যাস যুক্ত বহুবিধ-লাইন" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (ইউনিক্স)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (উইন্ডোজ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "কোনটি না" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "অনুভূমিক" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "উল্লম্ব" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "উভয়" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "ত্রিমাত্রিক" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "সমতল" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "বামদিকে শীর্ষে" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "বাম কেন্দ্রস্থিত" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "বামদিকে নিচে" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ডানদিকে শীর্ষে" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ডান কেন্দ্রস্থিত" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ডানদিকে নিচে" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "উপরের বামে" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "উপরে কেন্দ্রস্থিত" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "উপরের ডানে" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "নিচের বামে" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "নিচের কেন্দ্রস্থিত" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "নিচের ডানে" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "কেন্দ্রস্থিত" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "সংরক্ষণ করুন" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "প্রতিস্থাপন" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "পতন" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "না" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "অনুপাত রাখুন" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "আকারে ফিট" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "বাম-থেকে-ডান" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ডান-থেকে-বাম" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "উর্ধঃস্তন অবজেক্ট সেটিং ব্যবহার" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "কখনো নয়" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "যখন ফোকাস করা হয়" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "সবসময়" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "অনুচ্ছেদে" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "অক্ষর" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠায়" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ফ্রেমে" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "অক্ষর" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "পৃষ্ঠায়" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "ঘরে" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/fpicker/messages.po libreoffice-7.3.5/translations/source/bn-IN/fpicker/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-22 09:37+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -216,55 +216,55 @@ msgstr "পরিবর্তনের তারিখ" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ফাইলের নাম (_n):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ফাইলের ধরন (_t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "শুধুমাত্র পাঠযোগ্য (_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "পাসওয়ার্ডসহ সংরক্ষণ" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "স্বয়ংক্রিয়ভাবে নির্ধারিত ফাইলের এক্সটেনশন (_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ফিল্টারের সেটিং সম্পাদনা (_f)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG কি দ্বারা এনক্রিপ্ট করুন" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/sc/messages.po libreoffice-7.3.5/translations/source/bn-IN/sc/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-17 12:37+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -25750,97 +25750,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26226,154 +26226,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "সাজানো" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "রং (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "গ্রিড (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ভাষা (_L):" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "পর্যালোচনা" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "মন্তব্য (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "তুলনা (_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "দৃশ্যপট" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "সম্পাদনা (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "সাজানো" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "দৃশ্যপট" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "গ্রুপ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "হরফ (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "প্রান্তিককরণ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "দৃশ্যপট" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "সন্নিবেশ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "মিডিয়া" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ফ্রেম (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "সাজানো" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "গ্রিড (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/sd/messages.po libreoffice-7.3.5/translations/source/bn-IN/sd/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-17 12:37+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -4211,109 +4211,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7163,109 +7163,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/sw/messages.po libreoffice-7.3.5/translations/source/bn-IN/sw/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-17 12:37+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -10701,19 +10701,19 @@ msgstr "সূচী স্তরায়নের এক স্তর নিচে নির্বাচিত অনুচ্ছেদ শৈলী সরিয়ে নিন।" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "শৈলী" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "সুনির্দিষ্ট অনুচ্ছেদ শৈলীসমূহ থেকে সূচী ভুক্তিসমূহ তৈরি করা হয়।" @@ -14257,37 +14257,37 @@ msgstr "ডাটাবেস বিনিময়" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "নির্ধারণ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ব্যবহৃত ডাটাবেস" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ব্রাউজ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "একটি ডাটাবেস ফাইল (*.odb) খুলতে একটি ফাইল খুলুন ডায়ালগ উন্মুক্ত করা হয়। নির্বাচিত ফাইলটি বিদ্যমান ডাটাবেস তালিকায় যুক্ত করা হয়।" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14297,31 +14297,31 @@ "ডাটাবেস ফাইল নির্বাচন করতে ব্রাউজ বোতাম ব্যবহার করুন।" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "বর্তমানে ব্যবহৃত ডাটাবেস তালিকাভূক্ত করুন।" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ডাটাবেস বিনিময়" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "নথিতে প্রয়োগকৃত ডাটাবেস:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "বর্তমান নথির জন্য ডাটাবেস উৎস পরিবর্তন করুন।" @@ -20586,111 +20586,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "বার্তা একত্রিতকরনের ভিত্তি হিসেবে বর্তমান রাইটার নথি ব্যবহার করা হয়।" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "বার্তা একত্রিতকরনে ব্যবহার করার জন্য একটি নতুন রাইটার নথি তৈরি করা হয়।" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "বার্তা একত্রিতকরনে ভিত্তি হিসেবে ব্যবহার করার জন্য একটি নতুন রাইটার নথি নির্বাচন করুন।" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "ফর্মা নির্বাচন করুন যা আপনি আপনার বার্তা একত্রিতকরনের সাথে তৈরি করতে চান।" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "নতুন বার্তা একত্রিতকরণ নথির ভিত্তি হিসেবে একটি বিদ্যমান বার্তা একত্রিতকরণ নথি ব্যবহার করুন।" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "নথিটি নির্বাচন করুন।" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ব্রাউজ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ব্রাউজ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22861,51 +22861,51 @@ msgstr "বস্তু" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ধরন" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "অপশন" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "মোড়ানো (~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "হাইপারলিংক" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "সীমানা" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "এলাকা" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "স্বচ্ছতা" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ম্যাক্রো" @@ -27765,7 +27765,7 @@ msgstr "হালনাগাদ" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bn-IN/vcl/messages.po libreoffice-7.3.5/translations/source/bn-IN/vcl/messages.po --- libreoffice-7.3.4/translations/source/bn-IN/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bn-IN/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-08-25 05:04+0000\n" "Last-Translator: Shaunak Basu \n" "Language-Team: Bengali (India) \n" @@ -2339,169 +2339,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "স্বনির্ধারিত:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "দ্বারা" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "পৃষ্ঠার মাঝে" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "শীটের সীমানায়" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "প্রতিটি পৃষ্ঠার বাইরে সীমানা আঁকা হবে" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "বিলিপত্র" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/chart2/messages.po libreoffice-7.3.5/translations/source/bo/chart2/messages.po --- libreoffice-7.3.4/translations/source/bo/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3704,7 +3704,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/cui/messages.po libreoffice-7.3.5/translations/source/bo/cui/messages.po --- libreoffice-7.3.4/translations/source/bo/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tibetan \n" @@ -17590,177 +17590,152 @@ msgid "Automatic" msgstr "རང་འགུལ།" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "སྡུར་བའི་ཚད།(~H)" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "རིས་དབྱིབས་མངོན་པའི་མཚམས་སྒྲིག་ཆས་ཀྱི་མཁྲེགས་ཆས་བྱེད་ནུས་ཐད་ཀར་འཚམས་འདྲི་བྱས་ནས་གསལ་ཡོལ་མངོན་རྒྱུ་ལེགས་སྒྱུར་བྱེད།" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/dbaccess/messages.po libreoffice-7.3.5/translations/source/bo/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/bo/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Tibetan \n" @@ -3449,75 +3449,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "གྲངས་མཛོད་བཙུད་འཇུག་བྱེད་རྒྱུ།" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ཉེ་ཆར་བེད་སྤྱོད་བྱས་པ།" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ཁ་འབྱེད།" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3525,7 +3525,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/extensions/messages.po libreoffice-7.3.5/translations/source/bo/extensions/messages.po --- libreoffice-7.3.4/translations/source/bo/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -313,599 +313,585 @@ msgid "Refresh form" msgstr "རེའུ་མིག་གསར་འདོན།" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ཚད་གཞི(ཐུང་)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ཚད་གཞི(རྣམ་གཞག་ཐུང་བYY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ཚད་གཞི(རྣམ་གཞག་ཐུང་བ་YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ཚད་གཞི(རིང་)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "བདམས་མེད།" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "བདམས་ཟིན་པ།" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "མཚན་ཉིད་བཞག་མེད་པ།" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ཡོངས་རྫོགས་ཐོ་འགོད།" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "འགུལ་སྐྱོད་ཀྱི་ཟིན་ཐོ།" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "མིག་སྔའི་ཤོག་གྲངས།" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "མིན།" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "རེད།" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ཕ་རྒྱུད་རེའུ་མིག" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "སྙོམས་ཟུར་གྲུ་གཞིའི་གཟུགས།" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "མེད་པ།" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "གཅིག་རྐྱང་།" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ཕལ་མོ་ཆེ།" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ས་ཁོངས།" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ངོས་བཟུང་བྱས་པ།" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "གཏན་འཁེལ།" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "རྩིས་མེད།" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "རོགས་རམ།" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "འདེམས་གཏན་འཁེལ་བའི་དོན་ཚན།" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ཚན་བྱང་གི་གནས་ས་གདམ་གཏན་འཁེལ་བ།" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "རྐྱང་ཕྲེང་།" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "མང་ཕྲེང་།" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "རྣམ་གཞག་ལྡན་པའི་མང་ཕྲེང་།" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "མེད་པ།" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "གཉིས་པོ།" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "རྩ་གསུམ།" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ངོས་དབྱེབས།" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "གཡོན་མཐའི་རྩེ་སྣེ།" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "གཡོན་མཐའི་དཀྱིལ་བསྡུ།" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "གཡོན་མཐའི་རྩེ་སྣེ།" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "གཡས་མཐའི་རྩེ་སྣེ།" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "གཡས་མཐའི་དཀྱིལ་བསྡུ།" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "གཡས་མཐའ་འོག་ལ།" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "གཡོས་མཐའི་སྟེང་ལ།" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "དཀྱིལ་བསྡུའི་སྟེང་ལ།" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "གཡས་མཐའ་སྟེང་ལ།" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "གཡོན་མཐའ་འོག་ལ།" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "དཀྱིལ་བསྡུའི་འོག་ལ།" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "གཡས་མཐའ་འོག་ལ།" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "དཀྱིལ་བསྡུ།" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "སྔོན་བཞག" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ཚབ་བརྗེ།" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "རིམ་རྩེག" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "མིན།" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "འཕྲེད་གཞུང་གི་བསྡུར་ཚད་གཏན་བཀག" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "རང་འགུལ་དུ་ལེགས་སྒྲིག་བྱེད་པ།" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "གཡོན་ནས་གཡས་སུ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "གཡས་ནས་གཡོན་དུ།" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "རིམ་པ་མཐོ་བའི་བྱ་ཡུལ་གནས་ས་བེད་སྤྱོད་བྱེད་རྒྱུ།" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "དུམ་མཚམས་སྟེང་ལ།(~P)" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ཡིག་རྟགས།" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ཤོག་ངོས་ལ་སྒྱུར།" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "སྒྲོམ་སྟེང་ལ།(~F)" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ཡིག་རྟགས།" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ཤོག་ངོས་ལ་སྒྱུར།" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/bo/fpicker/messages.po libreoffice-7.3.5/translations/source/bo/fpicker/messages.po --- libreoffice-7.3.4/translations/source/bo/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -212,61 +212,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ཡིག་ཆའི་མིང་།: " #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ཡིག་ཆའི་རིགས(~T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ཀློག་ཙམ།(~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "གསང་ཨང་སྤྱད་ནས་ཉར་སྡེར་བྱེད།" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "རང་འགུལ་གྱིས་ཡིག་ཚགས་རྒྱ་བསྐྱེད་མིང་སྣོན་པ།(~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "འཚག་འདེམ་བཀོད་སྒྲིག་རྩོམ་སྒྲིག" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/sc/messages.po libreoffice-7.3.5/translations/source/bo/sc/messages.po --- libreoffice-7.3.4/translations/source/bo/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26009,97 +26009,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26485,158 +26485,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ཚོས་གཞི།" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ལས་ཁྲའི་དྲ་མིག" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "སྐད་བརྡ།" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "བརྟག་དཔྱད།" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "དཔྱད་གཏམ།" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "མཐོང་རིས།" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "རྩོམ་སྒྲིག" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "མཐོང་རིས།" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ཚོ་སྒྲིག" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ཡིག་གཟུགས།" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "སྙོམ་སྒྲིག" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "མཐོང་རིས།" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "བསྒར་འཛུད།" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "མཚམས་སྦྱོར།" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "སྒྲོམ་གྱི་ཁ་གཏད།" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ལས་ཁྲའི་དྲ་མིག" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/bo/sd/messages.po libreoffice-7.3.5/translations/source/bo/sd/messages.po --- libreoffice-7.3.4/translations/source/bo/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4263,109 +4263,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7246,109 +7246,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/sw/messages.po libreoffice-7.3.5/translations/source/bo/sw/messages.po --- libreoffice-7.3.4/translations/source/bo/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:00+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10775,20 +10775,20 @@ msgstr "འདེམས་ངེས་དུམ་མཚམས་བཟོ་ལྟ་དེ་བཤེར་འདྲེན་རིམ་པ་གྱི་གྲུབ་ཆའི་ཁྲོད་སྟེང་ཕྱོགས་སུ་རིམ་པ་གཅིག་སྤོས་དགོས།" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "བཟོ་དབྱིབས།" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "དམིགས་བསལ་གྱི་དུམ་མཚམས་བཟོ་ལྟའི་ནང་ནས་བཤེར་འདྲེན་གཤར་བྱང་འཛུགས་དགོས།" @@ -14380,38 +14380,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "གཏན་འཁེལ།(~S)" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "མིག་བཤར།..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "འདེམས་ཆོག་པའི་གཞི་གྲངས་མཛོད་ཡིག་ཆའི་(*.odb)\"ཁ་ཕྱེ་\"གླིང་སྒྲོམ་ཞིག་ཁ་ཕྱེ་དགོས་པས། འདེམས་ངེས་ཡིག་ཆ་\"བེད་སྤྱད་ཆོག་པའི་གཞི་གྲངས་མཛོད་\"རེའུ་འགོད་ནང་ཁ་སྣོན་རྒྱབ་དགོས།" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14419,31 +14419,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "མིག་སྔའི་བེད་སྤྱོད་བཞིན་པའི་གཞི་གྲངས་མཛོད་སྒྲིག་དགོས།" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "མི་སྔའི་ཡིག་ཚགས་ཀྱི་གཞི་གྲངས་ཁུངས་བཟོ་བཅོས་བྱེད།" @@ -20780,111 +20780,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "མིག་སྔའི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་གྱི་རྨང་གཞི་སྤྱོད་པ་ཡིག་ཚགས་གསར་བཟོ་" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "གསར་དུ་བཟོ་བའི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་སྤྱོད་པ།" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "སྦྲགས་ཡིག་སྒྲིལསྒྲིལཡིག་ཚགས་རྨངས་གཞི་སྤྱོད་པའི་ད་ཡོད་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་འདེམས་པ།" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་འཛུགས་རྒྱུར་སྤྱོད་པའི་སྨོ་པང་འདེམས་པ་" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "ད་ཡོད་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་གསར་པའི་རྨངས་གཞིར་སྤྱོད་པ་" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "རིགས་འདེམས་པ། " #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "མིག་བཤར།..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "མིག་བཤར།..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23078,52 +23078,52 @@ msgstr "བྱ་ཡུལ།" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "རིགས།" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "གདམ་ཚན།" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "གདུབ་འཁོར།(~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "རིམ་འདས་སྦྲེལ་མཐུད།" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "མཐའ་སྒྲོམ།" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ཁ་སྐོང་།" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "དྭངས་གསལ།" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28031,7 +28031,7 @@ msgstr "གསར་བཟོ།" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bo/vcl/messages.po libreoffice-7.3.5/translations/source/bo/vcl/messages.po --- libreoffice-7.3.4/translations/source/bo/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bo/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2346,170 +2346,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "རང་བཟོས།" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ནས།" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ལག་དེབ་ཆུང་བ།(~U)" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/chart2/messages.po libreoffice-7.3.5/translations/source/br/chart2/messages.po --- libreoffice-7.3.4/translations/source/br/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3605,7 +3605,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/cui/messages.po libreoffice-7.3.5/translations/source/br/cui/messages.po --- libreoffice-7.3.4/translations/source/br/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17162,176 +17162,152 @@ msgid "Automatic" msgstr "Emgefreek" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Dargemm uhel" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oksigen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasel" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_til an arlun :" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Adloc'hañ goulennet" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Arverañ an herrekaat dre ar _periant" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Arverañ al lufr_añ" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Deouez ar skeudennoù" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Diskouez un albe_rz eus an nodrezhoù" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Lufrañ an nodrezhoù _skramm" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "e_us :" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Rolloù nodrezhoù" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/dbaccess/messages.po libreoffice-7.3.5/translations/source/br/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/br/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3399,73 +3399,73 @@ msgstr "Krouiñ ur stle_nnvon nevez" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Stlennvon enkorfet :" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Digeriñ ur restr _stlennvon ez eus anezhi" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Arveret _nevez zo :" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Digeriñ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Kennaskañ ouzh ur stlennvon ez eus ane_zhañ" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3473,7 +3473,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/extensions/messages.po libreoffice-7.3.5/translations/source/br/extensions/messages.po --- libreoffice-7.3.4/translations/source/br/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -312,596 +312,584 @@ msgid "Refresh form" msgstr "Azbevaat ar furmskrid" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Tapout" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Postañ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Liesparzhioù" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testenn" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Skoueriek (berr)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Skoueriek (berr BB)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Skoueriek (berr BBBB)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Skoueriek (hir)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/BB" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/BB" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "BB/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/BBBB" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/BBBB" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "BBBB/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "BB-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "BBBB-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "N'eo ket diuzet" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Diuzet" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ket Despizet" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "An holl Enrolladennoù" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Gweredekaat an enrollañ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pajenn vremanel" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ket" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ya" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Furmskrid kar" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_Paouez" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Tra ebet" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Eeun" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Lies" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Lijorenn" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "A-blaen" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "A-serzh" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Dre ziouer" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Mat eo" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Nullañ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Skoazell" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "An enankad diuzet" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Lec'hiadur an enankad diuzet" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Unlinenn" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Lieslinennoù" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Lieslinennoù gant ur mentrezh" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Tra ebet" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "A-blaen" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "A-serzh" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "An eil hag egile" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3M" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plaen" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "A-gleiz e-krec'h" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "A-gleiz e-kreiz" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "A-gleiz en traoñ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "A-zehou e-krec'h" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "A-zehou e-kreiz" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "A-zehou en traoñ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "A-us a-gleiz" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "A-us e-kreiz" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "A-us a-zehou" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Dindan a-gleiz" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Dindan e-kreiz" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Dindan a-zehou" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Kreizet" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Derc'hel" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Amsaviñ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Bihanaat" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ket" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Kenfeuriek" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Lakaat da genglotañ gant ar vent" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "A gleiz da zehou" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "A zehou da gleiz" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Arverañ arventennoù an ergorenn uheloc'h" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Biken" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Pa vez stiet" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Bepred" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ouzh ar rannbennad" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Arouezenn" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ouzh ar bajenn" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ouzh ar stern" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Arouezenn" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ouzh ar bajenn" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/br/fpicker/messages.po libreoffice-7.3.5/translations/source/br/fpicker/messages.po --- libreoffice-7.3.4/translations/source/br/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "A_nv ar restr :" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Rizh ar restr:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "E mod _lenn nemetken" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Enrollañ gant ur ger-tremen" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Askouezhadenn emgefreek anv ar restr" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Embann arventennoù ar _sil" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/sc/messages.po libreoffice-7.3.5/translations/source/br/sc/messages.po --- libreoffice-7.3.4/translations/source/br/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25640,97 +25640,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26116,154 +26116,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Frammadur" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Liv" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Kael" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Yezh :" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Evezhiadenn" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Askelennoù" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Keñ_veriañ" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Skrammañ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Embann" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Frammadur" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Skrammañ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Strollañ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "N_odrezh" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Steudadur" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Skrammañ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Enlakaat" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Stern" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Frammadur" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Kael" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/br/sd/messages.po libreoffice-7.3.5/translations/source/br/sd/messages.po --- libreoffice-7.3.4/translations/source/br/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4213,109 +4213,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7137,109 +7137,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/sw/messages.po libreoffice-7.3.5/translations/source/br/sw/messages.po --- libreoffice-7.3.4/translations/source/br/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10600,19 +10600,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiloù" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14056,37 +14056,37 @@ msgstr "Eskemmañ ar stlennvonoù" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Despizañ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Stlennvonoù implijet" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Stlennvonoù _hegerz" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Kantreal..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14096,31 +14096,31 @@ "Arverit an afell Kantreal da ziuzañ ur restr stlennvon." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Eskemmañ ar stlennvonoù" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Stlennvon staget ouzh an teul :" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20195,109 +20195,109 @@ msgstr "Arverañ an _teul bremanel" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Krouiñ un teul _nevez" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Arv_erañ un teul ez eus anezhañ" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Arverañ ur pa_trom" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Arverañ un teul diazez enrollet nevez zo" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Kan_treal..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Kantreal..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Diuzañ an teul diazez evit al lizhiri dre doueziañ" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22472,49 +22472,49 @@ msgstr "Egorenn" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Rizh" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Dibarzhioù" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Azasaat" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Gourere" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Riblennoù" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Maez" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Boullder" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27265,7 +27265,7 @@ msgstr "Hizivaat" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/br/vcl/messages.po libreoffice-7.3.5/translations/source/br/vcl/messages.po --- libreoffice-7.3.4/translations/source/br/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/br/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2330,169 +2330,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personelaet" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "dre" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "etre ar bajennoù" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "diouzh riblenn ar follenn" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Tresañ ur riblenn tro dro da bep pajenn" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Kraflevr" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/chart2/messages.po libreoffice-7.3.5/translations/source/brx/chart2/messages.po --- libreoffice-7.3.4/translations/source/brx/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3696,7 +3696,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/cui/messages.po libreoffice-7.3.5/translations/source/brx/cui/messages.po --- libreoffice-7.3.4/translations/source/brx/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17540,177 +17540,152 @@ msgid "Automatic" msgstr "गावनो गाव" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~गोजौ फाराग" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/dbaccess/messages.po libreoffice-7.3.5/translations/source/brx/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/brx/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Bodo \n" @@ -3462,74 +3462,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "बावैसो बाहाय जाबाय" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "खेव" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3537,7 +3537,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/extensions/messages.po libreoffice-7.3.5/translations/source/brx/extensions/messages.po --- libreoffice-7.3.4/translations/source/brx/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -303,571 +303,557 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "मोन" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "पस्ट खालाम" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "फराय बिजाब" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "थाखो मान(गुसुं)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "थाखो मान(गुसुं)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "थाखो मान(गुसुं)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "थाखो मान (गोलाव)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "सायख" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "बोहैथि अक्ट'" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "नङा" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "नंगौ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "थादनाय" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "रावबो नङा" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "मोनसेल'" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "सारि" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "समानथि" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "थोंगोर" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "खामानिआव उदायै जानाय" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "नागार" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदद हो" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "मोनसेल'-सारि" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "गोबां-सारि" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "दाथायजों गोबां-सारि" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF(विंडोजस)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "रावबो नङा" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "समानथि" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "थोंगोर" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "मोननैबो" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "दाब्ले" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "आगसि सायाव" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "आगसि गेजेराव" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "आगसि सिं बाहागो" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "आगदा सायाव" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "आगदा गेजेराव" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "आगदा सिंथारनि बाहागो" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "आगसि गोजौआव" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "गेजेर गोजौआव" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "आगदा गोजौआव" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "आगसि गाहायाव" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "गेजेर गाहायाव" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "आगदा गाहायाव" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "मिरु" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "दोन्थुमनाय" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "जायगा सोलाय हो" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "हरखाब बायनाय" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "नङा" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "आगसि निफ्राय आगदा सिम" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "आगदा-निफ्राय-आगसि" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "सुपारअर्डिनेट बेसाद फज'नाय बाहाय" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "आन्थोर" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "हांखो बादि" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "बिखं सिम" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "फ्रेम" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "हांखोआव" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "बिखं सिम" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/brx/fpicker/messages.po libreoffice-7.3.5/translations/source/brx/fpicker/messages.po --- libreoffice-7.3.4/translations/source/brx/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -215,61 +215,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फाइलनि मुं:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फाइल~ रोखोम:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~फरायनो-थाखायल'" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "पासवर्डजों थिना दोन" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~गावनो गाव फाइल मुं बारायनाय" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "फिल्टार फज'नायफोर सुजु" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/sc/messages.po libreoffice-7.3.5/translations/source/brx/sc/messages.po --- libreoffice-7.3.4/translations/source/brx/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25842,97 +25842,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26319,157 +26319,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "साजाय" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "गाब" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ग्रिड" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "राव" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "बिजिरना नायफिन" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "सुद' लिरथाय" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "नुथाय" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "सुजु" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "साजाय" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "नुथाय" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "हानजा" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फन्ट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "सारि सारि साजायनाय" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "नुथाय" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "फज'" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "फ्रेम" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "साजाय" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ग्रिड" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/brx/sd/messages.po libreoffice-7.3.5/translations/source/brx/sd/messages.po --- libreoffice-7.3.4/translations/source/brx/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4261,109 +4261,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7242,109 +7242,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/sw/messages.po libreoffice-7.3.5/translations/source/brx/sw/messages.po --- libreoffice-7.3.4/translations/source/brx/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:00+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10762,20 +10762,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "आदबफोर" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14365,38 +14365,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~ओंथि बेखेव" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्राउज..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14404,31 +14404,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20741,111 +20741,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्राउज..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्राउज..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23035,51 +23035,51 @@ msgstr "बेसाद" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "रोखोम" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "उफ्राफोर" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~खोबसिननाय" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपारलिंक" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "सिमनाफोर" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ओनसोल" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "गोजों" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मेक्र'" @@ -27981,7 +27981,7 @@ msgstr "आपडेट खालाम" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/brx/vcl/messages.po libreoffice-7.3.5/translations/source/brx/vcl/messages.po --- libreoffice-7.3.4/translations/source/brx/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/brx/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2348,171 +2348,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "कास्टम:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "जों" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "बिजाबसा" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/chart2/messages.po libreoffice-7.3.5/translations/source/bs/chart2/messages.po --- libreoffice-7.3.4/translations/source/bs/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3694,7 +3694,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Postavi rezoluciju." diff -Nru libreoffice-7.3.4/translations/source/bs/cui/messages.po libreoffice-7.3.5/translations/source/bs/cui/messages.po --- libreoffice-7.3.4/translations/source/bs/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17558,181 +17558,155 @@ msgid "Automatic" msgstr "Automatski" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaksija" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Visok Kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasično" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Koristi akceleraciju hard_vera" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Koristi Anti-A_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Izlaz ilustracije" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Prikaži p_regled fontova" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Umekšavanje _slova na ekranu" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "o_d" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Lista fontova" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/dbaccess/messages.po libreoffice-7.3.5/translations/source/bs/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/bs/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Bosnian \n" @@ -3477,74 +3477,74 @@ msgstr "Napravi n_ovu bazu podataka" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Ugrađena baza podataka:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Otvori postojeći _fajl baze podataka" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Prethodno korišteno:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otvori" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Spoji se sa p_ostojećom bazom podataka" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3552,7 +3552,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/extensions/messages.po libreoffice-7.3.5/translations/source/bs/extensions/messages.po --- libreoffice-7.3.4/translations/source/bs/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,598 +309,584 @@ msgid "Refresh form" msgstr "Osvježi formular" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "GET" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Višedjelno" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standardno (kratko)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardan (kratko YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardan (kratki YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standardno (dugo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nije odabrano" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Odabrano" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nije definisano" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Svi zapisi" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Trenutni zapis" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Trenutna stranica" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Da" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formular prije ovog" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "prazno" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "vrh" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nijedna" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jednostruko" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Višestruki" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Opseg" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vodoravno" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Uspravno" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Uobičajeno" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "U redu" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Odustani" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoć" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Izabrani unos" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozicija izabranog unosa" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jednolinijski" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Višelinijski" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Višelinijski sa formatiranjem" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nijedna" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vodoravno" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Uspravno" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Oba" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Ravno" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Lijevo gore" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Lijevo centrirano" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Lijevo dolje" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Desno gore" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Desno centrirano" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Desno dolje" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Iznad lijevo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Iznad centrirano" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Iznad desno" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ispod lijevo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ispod centrirano" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ispod desno" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrirano" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Sačuvaj" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zamijeni" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Zatvori" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Sačuvaj omjer" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Namjesti po dimenzijama" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "S lijeva na desno" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "S desna na lijevo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Koristi pretpostavljene postavke objekta" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nikad" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kada ima fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Uvijek" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Do odlomka" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kao znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranu" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Na okvir" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Na znak" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranu" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/bs/fpicker/messages.po libreoffice-7.3.5/translations/source/bs/fpicker/messages.po --- libreoffice-7.3.4/translations/source/bs/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Ime datoteke:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Vrsta dokumenta:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Samo za čitanje" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Snimi sa š~ifrom" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Automatska ekstenzija datoteke" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Izmijeni opcije filtera" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/sc/messages.po libreoffice-7.3.5/translations/source/bs/sc/messages.po --- libreoffice-7.3.4/translations/source/bs/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25747,97 +25747,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26228,155 +26228,155 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rasporedi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "B_oja" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Mreža" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Jezik" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Recenzija" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentari" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Uporedi" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Pogled" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Izmjeni" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rasporedi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Pogled" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Poravnanje" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Pogled" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Ubaci" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Medij" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "O_kvir" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rasporedi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Mreža" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/bs/sd/messages.po libreoffice-7.3.5/translations/source/bs/sd/messages.po --- libreoffice-7.3.4/translations/source/bs/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4235,109 +4235,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7197,109 +7197,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/sw/messages.po libreoffice-7.3.5/translations/source/bs/sw/messages.po --- libreoffice-7.3.4/translations/source/bs/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10755,19 +10755,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilovi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14273,37 +14273,37 @@ msgstr "Razmjena podataka" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definiši" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Baza podataka u upotrebi" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Dostupna baza podataka" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Potraži..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14313,31 +14313,31 @@ "Koristite tipku za pretraživanje da izaberete datoteku baze podataka." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Razmjena podataka" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Baza podataka primjenjena na dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20530,110 +20530,110 @@ msgstr "Koristi tekući _dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Kreiraj _novi dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Počni od _postojećeg dokumenta" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Počni od _predloška" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Počni od posljednjeg spašenog početnog dokumenta" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Potraži..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Potraži..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Odaberite početni dokument za spajanje pošte" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22810,51 +22810,51 @@ msgstr "Objekat" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Vrsta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Postavke" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Omotavanje" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiper-veza" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Rubovi" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Površina" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Prozirnost" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27676,7 +27676,7 @@ msgstr "Ažuriraj" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/bs/vcl/messages.po libreoffice-7.3.5/translations/source/bs/vcl/messages.po --- libreoffice-7.3.4/translations/source/bs/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/bs/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2330,169 +2330,169 @@ msgstr "Unesi glavnu lozinku." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Prilagođeno" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Odaberite operator sa liste." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Odaberite operator sa liste." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "od" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Postavi rezoluciju." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Postavi redosljed podataka." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "između stranica" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Postavi redosljed podataka." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "okviru lista" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Odaberite operator sa liste." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Nacrtaj okvir oko svake stranica" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Odaberite ovu ikonu da listate stranice." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ca/chart2/messages.po libreoffice-7.3.5/translations/source/ca/chart2/messages.po --- libreoffice-7.3.4/translations/source/ca/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547819235.000000\n" #. NCRDD @@ -3005,19 +3005,19 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon a la nova configuració." +msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon als paràmetres nous." #. AyMWn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168 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 "Defineix el gir del diagrama a l'eix Y. La previsualització respon als nous paràmetres." +msgstr "Defineix el gir del diagrama a l'eix Y. La previsualització respon als paràmetres nous." #. EGS4B #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186 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 "Defineix el gir del diagrama a l'eix X. La previsualització respon a la nova configuració." +msgstr "Defineix el gir del diagrama a l'eix X. La previsualització respon als paràmetres nous." #. RGQDC #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92 @@ -3602,7 +3602,7 @@ msgstr "Definiu el nombre de línies per al diagrama de tipus Columna i línia." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Seleccioneu un tipus de diagrama bàsic." diff -Nru libreoffice-7.3.4/translations/source/ca/cui/messages.po libreoffice-7.3.5/translations/source/ca/cui/messages.po --- libreoffice-7.3.4/translations/source/ca/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564129929.000000\n" #. GyY9M @@ -3137,7 +3137,7 @@ #: cui/inc/tipoftheday.hrc:215 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." +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 per defecte per als documents ▸ Asiàtic, i feu el botó visible fent-hi clic dret." #. mmG7g #: cui/inc/tipoftheday.hrc:216 @@ -15380,7 +15380,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:301 msgctxt "optlanguagespage|label2" msgid "Default Languages for Documents" -msgstr "Llengües predeterminades per als documents" +msgstr "Llengües per defecte per als documents" #. 25J4E #: cui/uiconfig/ui/optlanguagespage.ui:329 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automàtic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galàxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alt contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clàssic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Brisa" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Indica l'estil d'icona per a les icones de les barres d'eines i diàlegs." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_til de les icones:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Afegeix més temes d'icones mitjançant extensions" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estil de les icones" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Cal reiniciar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Accelera per ma_quinari" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accedeix directament a les funcions de maquinari de l'adaptador de visualització gràfica per millorar la visualització de pantalla." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Su_avitza les vores" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Utilitza l'Skia per a totes les renderitzacions" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Força la renderització per programari Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Requereix el reinici. Si s'activa això, s'evita l'ús dels controladors de gràfics." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "L'Skia està activat." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "L'Skia està desactivat." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Sortida de gràfics" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "P_revisualitza les lletres tipogràfiques" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra Formatació." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavitza la lletra tipogràfica a la _pantalla" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_des de:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Introduïu la mida de lletra més petita que cal suavitzar." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Llistes de lletres tipogràfiques" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Executa proves gràfiques" @@ -19966,7 +19942,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:109 msgctxt "specialcharacters|subsetft" msgid "Subset:" -msgstr "Subconjunt:" +msgstr "Bloc de caràcters:" #. mPCRR #: cui/uiconfig/ui/specialcharacters.ui:123 diff -Nru libreoffice-7.3.4/translations/source/ca/dbaccess/messages.po libreoffice-7.3.5/translations/source/ca/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ca/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-21 04:38+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562301145.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Crear una base de dades _nova" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Seleccioneu-ho per a crear una base de dades" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Base de dades _incrustada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Obrir una _base de dades existent" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Seleccioneu-ho per a obrir un fitxer de base de dades d'una llista de fitxers usats recentment o des d'un diàleg de selecció de fitxers." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Emprats _recentment:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Seleccioneu un fitxer de base de dades per obrir des de la llista de fitxers utilitzats recentment. Feu clic a «Finalitza» per a obrir el fitxer immediatament i sortir de l'auxiliar." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Obre" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Obre un diàleg de selecció de fitxers on podeu seleccionar un fitxer de base de dades. Feu clic a Obre o D'acord en el diàleg de selecció de fitxers per a obrir el fitxer immediatament i sortir de l'auxiliar." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connectar amb una base de dades e_xistent" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Seleccioneu aquesta opció per a crear un document de base de dades per a una connexió de base de dades existent." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Seleccioneu el tipus de base de dades per a la connexió existent a la base de dades." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "No és possible crear una base de dades nova, perquè ni l'HSQLDB ni el Firebird són disponibles en aquesta instal·lació." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "L'auxiliar de bases de dades crea un fitxer de base de dades que conté informació sobre una base de dades." diff -Nru libreoffice-7.3.4/translations/source/ca/extensions/messages.po libreoffice-7.3.5/translations/source/ca/extensions/messages.po --- libreoffice-7.3.4/translations/source/ca/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556389250.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Actualitza el formulari" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Aconsegueix" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Publica" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Múltiples parts" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estàndard (curta)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estàndard (curta YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estàndard (curta YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estàndard (llarga)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "No seleccionats" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleccionat" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "No definit" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tots els registres" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registre actiu" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pàgina actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sí" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulari pare" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_en blanc" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_pare" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_si-mateix" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_superior" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Cap" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Simple" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Múltiple" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Interval" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horitzontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Per defecte" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "D'acord" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancel·la" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "L'entrada seleccionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "La posició de l'entrada seleccionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Línia única" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Línies múltiples" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Línies múltiples amb formatació" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Cap" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horitzontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Totes dues" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Pla" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Superior esquerre" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centrat a l'esquerra" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Inferior esquerre" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Superior dret" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centrat a la dreta" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Inferior dret" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Dalt a l'esquerra" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Dalt centrat" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Dalt a la dreta" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Avall a l'esquerra" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Avall centrat" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Avall a la dreta" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrat" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Conserva" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Substitueix" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Redueix" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantén la proporció" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajusta a la mida" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "D'esquerra a dreta" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De dreta a esquerra" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilitza la configuració d'objectes superordinats" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Mai" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Quan tingui el focus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al paràgraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Com a caràcter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A la pàgina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Al marc" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al caràcter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A la pàgina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "A la cel·la" diff -Nru libreoffice-7.3.4/translations/source/ca/fpicker/messages.po libreoffice-7.3.5/translations/source/ca/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ca/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-18 09:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538496751.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Data de modificació" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Obre" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Re_produeix" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nom del fitxer:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipus de fitxer:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Només lectu_ra" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Desa amb contrasenya" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensió del nom del fitxer _automàtica" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Edita els paràmetres del _filtre" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Xifra amb clau GPG" diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: serval2412 \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561604938.000000\n" #. naSFZ @@ -2631,7 +2631,7 @@ "N0222\n" "help.text" msgid "Genuine Basic UNO facilities can be inferred from XSCRIPTCONTEXT global variable. Refer to %PRODUCTNAME API for a complete description of XSCRIPTCONTEXT. XSCRIPTCONTEXT methods summarize as:" -msgstr "Les instal·lacions bàsiques de l'UNO es poden inferir a partir de la variable global XSCRIPTCONTEXT. Consulteu l'API del %PRODUCTNAME per a una descripció completa de XSCRIPTCONTEXT. Els mètodes XSCRIPTCONTEXT resumeixen com a" +msgstr "Les instal·lacions bàsiques de l'UNO es poden inferir a partir de la variable global XSCRIPTCONTEXT. Consulteu l'API del %PRODUCTNAME per a una descripció completa de XSCRIPTCONTEXT. Els mètodes XSCRIPTCONTEXT resumeixen com a" #. U6KbS #: python_programming.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562337011.000000\n" #. ViEWM @@ -3390,7 +3390,7 @@ "par_id451618876389788\n" "help.text" msgid "Returns the operating system-dependent directory separator used to specify file paths." -msgstr "" +msgstr "Retorna el separador de directoris, que depèn del sistema operatiu, utilitzat per a especificar els camins dels fitxers." #. BWvPB #: sf_basic.xhp @@ -10455,7 +10455,7 @@ "par_id211612629836725\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. mzbBD #: sf_dialogcontrol.xhp @@ -10473,7 +10473,7 @@ "par_id311612629836481\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. FCBxu #: sf_dialogcontrol.xhp @@ -10509,7 +10509,7 @@ "par_id711612629836704\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 4c5qE #: sf_dialogcontrol.xhp @@ -10563,7 +10563,7 @@ "par_id811612707606330\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. th6Kr #: sf_dialogcontrol.xhp @@ -22308,7 +22308,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "«?» representa qualsevol caràcter individual;" #. CFPcW #: sf_string.xhp @@ -22443,7 +22443,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: la cadena que es comprovarà. Si és buida, el mètode retorna False." #. 7Ryzp #: sf_string.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -8498,7 +8498,7 @@ "bm_id3147230\n" "help.text" msgid "Print statement Print statement; Tab function Print statement; Spc function Spc function; in Print statement Tab function; in Print statement" -msgstr "Print expressióExpressió Print; funció Tabexpressió Print; funció Spc funciófunció Spc; expressió Print funció<Tab; expressió Print" +msgstr "Print expressióExpressió Print; funció Tabexpressió Print; funció Spc funciófunció Spc; expressió Print funcióTab; expressió Print" #. ARzns #: 03010103.xhp @@ -10312,7 +10312,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 "GA var Una variable numèrica o de cadena a la qual a els valors llegits des del fitxer obert." +msgstr "var: una variable numèrica o de cadena a la qual s'assignen els valors llegits des del fitxer obert." #. 23Pzt #: 03020202.xhp @@ -22749,7 +22749,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 "Utilitzeu l'expressió GoTo per instruir al $[officename] Basic que continuï l'execució del programa en un altre lloc dins del procediment. La posició s'ha d'indicar amb una etiqueta. Per establir una etiqueta a un nom i acabeu-lo amb dos punts (\":\")." +msgstr "Utilitzeu l'expressió GoTo per instruir al $[officename] Basic que continuï l'execució del programa en un altre lloc dins del procediment. La posició s'ha d'indicar amb una etiqueta. Per establir una etiqueta, un nom i acabeu-lo amb dos punts (\":\")." #. 8o2aP #: 03090302.xhp @@ -34935,13 +34935,12 @@ #. EPYGA #: 03132200.xhp -#, fuzzy msgctxt "" "03132200.xhp\n" "tit\n" "help.text" msgid "ThisComponent Object" -msgstr "Objecte d'acord" +msgstr "Objecte ThisComponent" #. AKrki #: 03132200.xhp @@ -34959,7 +34958,7 @@ "hd_id3155342\n" "help.text" msgid "ThisComponent Object" -msgstr "ThisComponent Objecte" +msgstr "Objecte ThisComponent" #. ECFFs #: 03132200.xhp @@ -34995,7 +34994,7 @@ "par_id3154123\n" "help.text" msgid "' updates the \"Table of Contents\" in a text doc" -msgstr "' actualitza l'\"Índex de continguts\" en un document de text" +msgstr "' actualitza la «Taula de continguts» en un document de text" #. 3vMxq #: 03132200.xhp @@ -35013,7 +35012,7 @@ "par_id3156422\n" "help.text" msgid "' use the default name for Table of Contents and a 1" -msgstr "' utilitzeu el nom per defecte per a l'Índex de continguts i a 1" +msgstr "' utilitzeu el nom per defecte per a la Taula de continguts i a 1" #. XF28a #: 03132200.xhp @@ -35058,7 +35057,7 @@ "par_id105622646874083\n" "help.text" msgid "com.sun.star.formula.FormulaProperties API service" -msgstr "" +msgstr "Servei de l'API com.sun.star.formula.FormulaProperties" #. FLbnX #: 03132200.xhp @@ -35067,7 +35066,7 @@ "par_id106622646874083\n" "help.text" msgid "com.sun.star.sdb.OfficeDatabaseDocument API service" -msgstr "" +msgstr "Servei de l'API com.sun.star.sdb.OfficeDatabaseDocument" #. vZW9w #: 03132200.xhp @@ -35076,7 +35075,7 @@ "par_id581622646875379\n" "help.text" msgid "com.sun.star.document.OfficeDocument API service" -msgstr "" +msgstr "Servei de l'API com.sun.star.document.OfficeDocument" #. QgZSF #: 03132300.xhp @@ -38489,13 +38488,12 @@ #. dWBDB #: GetPathSeparator.xhp -#, fuzzy msgctxt "" "GetPathSeparator.xhp\n" "N0003\n" "help.text" msgid "Returns the operating system-dependent directory separator used to specify file paths." -msgstr "Retorna el separador de directori dependent del sistema operatiu utilitzat per especificar els camins de fitxer." +msgstr "Retorna el separador de directoris, que depèn del sistema operatiu, utilitzat per a especificar els camins dels fitxers." #. 8jaPZ #: GetPathSeparator.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1560441763.000000\n" @@ -40009,7 +40009,6 @@ #. DL6D2 #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id961585163990543\n" @@ -44211,7 +44210,7 @@ "par_id441632808439621\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Feu una de les accions següents:" #. bnEwD #: 05060000.xhp @@ -45972,7 +45971,7 @@ "par_id271609781812913\n" "help.text" msgid "change colors" -msgstr "" +msgstr "canviar els colors" #. uncF8 #: 05120000.xhp @@ -45999,7 +45998,7 @@ "hd_id3153709\n" "help.text" msgid "Icon Set" -msgstr "Conjunt d'icones" +msgstr "Joc d'icones" #. 76M6e #: 05120000.xhp @@ -46131,13 +46130,12 @@ #. XCEeu #: 05120000.xhp -#, fuzzy msgctxt "" "05120000.xhp\n" "par_id31494167\n" "help.text" msgid "Click the Add button to add another condition, click the Remove button to remove a condition." -msgstr "Feu clic al botó Afegeix per afegir una altra condició feu clic al botó Elimina per eliminar una condició." +msgstr "Feu clic al botó Afegeix per a afegir una altra condició; feu clic al botó Elimina per a eliminar-ne una." #. 5bcGZ #: 05120000.xhp @@ -46160,13 +46158,12 @@ #. KaFUh #: 05120000.xhp -#, fuzzy msgctxt "" "05120000.xhp\n" "par_id3155906\n" "help.text" msgid "This dialog allows you to see all the conditional formatting defined in the spreadsheet." -msgstr "GA Aquest diàleg permet veure tota la formatació condicional definida al full de càlcul." +msgstr "Aquest diàleg us permet veure tota la formatació condicional definida al full de càlcul." #. oGo9V #: 05120000.xhp @@ -47172,7 +47169,7 @@ "hd_id3153087\n" "help.text" msgid "Protecting Sheet" -msgstr "" +msgstr "Protecció dels fulls" #. LcpD8 #: 06060100.xhp @@ -51159,7 +51156,7 @@ "par_idN108E0\n" "help.text" msgid "Do one of the following:" -msgstr "Dueu a terme una de les següents opcions:" +msgstr "Feu una de les accions següents:" #. 4BfPW #: 12090102.xhp @@ -58161,7 +58158,7 @@ "par_id472715992174398\n" "help.text" msgid "Pond" -msgstr "" +msgstr "Pond" #. Z8snf #: func_convert.xhp @@ -58521,7 +58518,7 @@ "hd_id1001620426284123\n" "help.text" msgid "Power" -msgstr "" +msgstr "Potència" #. HvGBm #: func_convert.xhp @@ -58638,7 +58635,7 @@ "par_id477235647442515\n" "help.text" msgid "Pascal" -msgstr "" +msgstr "Pascal" #. yyvEQ #: func_convert.xhp @@ -58665,7 +58662,7 @@ "hd_id61620426438099\n" "help.text" msgid "Speed" -msgstr "" +msgstr "Velocitat" #. AXQxd #: func_convert.xhp @@ -58701,7 +58698,7 @@ "par_id391572877557741\n" "help.text" msgid "Admiralty knot" -msgstr "" +msgstr "Nus de l'Almirallat" #. X3yym #: func_convert.xhp @@ -58710,7 +58707,7 @@ "par_id152721538362456\n" "help.text" msgid "International knot" -msgstr "" +msgstr "Nus internacional" #. KAWp4 #: func_convert.xhp @@ -58737,7 +58734,7 @@ "par_id233825548718154\n" "help.text" msgid "Miles per hour" -msgstr "" +msgstr "Milles per hora" #. FyEd2 #: func_convert.xhp @@ -58746,7 +58743,7 @@ "hd_id351620426496272\n" "help.text" msgid "Temperature" -msgstr "" +msgstr "Temperatura" #. C5MHQ #: func_convert.xhp @@ -59052,7 +59049,7 @@ "par_id538319527687728\n" "help.text" msgid "Cubic meter" -msgstr "" +msgstr "Metre cúbic" #. GG8ep #: func_convert.xhp @@ -64304,7 +64301,7 @@ "par_id381625600941159\n" "help.text" msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format." -msgstr "" +msgstr "El nombre de sortida rep el format d'un valor de coma flotant vàlid i es mostra amb el format numèric de la cel·la actual." #. CdgXz #: func_numbervalue.xhp @@ -68651,23 +68648,21 @@ #. jDGPG #: solver.xhp -#, fuzzy msgctxt "" "solver.xhp\n" "par_id221589917833431\n" "help.text" msgid "The Solver Options dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." -msgstr "El diàleg Opcions permet seleccionar els diferents algoritmes de solucionador per a problemes lineals i no lineals i establir els seus paràmetres de resolució." +msgstr "El diàleg Opcions del solucionador permet seleccionar els diferents algoritmes de solucionador per a problemes lineals i no lineals i establir-ne els paràmetres de resolució." #. 8YGDA #: solver.xhp -#, fuzzy msgctxt "" "solver.xhp\n" "hd_id771589917064147\n" "help.text" msgid "Solve" -msgstr "Resoldre" +msgstr "Resol" #. jFwTt #: solver.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-03-23 11:41+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551343811.000000\n" @@ -586,23 +586,21 @@ #. PE8wQ #: background.xhp -#, fuzzy msgctxt "" "background.xhp\n" "bm_id3149346\n" "help.text" msgid "spreadsheets; backgroundsbackgrounds;cell rangestables; backgroundscells; backgroundsrows, see also cellscolumns, see also cells" -msgstr "Fulls de càlcul ; fonsfons ;intervals de cel·les taules; fonscel·les ; fons filesvegeu també cel·lescolumnes vegeu també cel·les " +msgstr "fulls de càlcul; fonsfons;intervals de cel·lestaules;fonscel·les;fonsfiles, mostra també les cel·lescolumnes, mostra també les cel·les" #. tMFWU #: background.xhp -#, fuzzy msgctxt "" "background.xhp\n" "hd_id3149346\n" "help.text" msgid "Defining Background Colors or Background Graphics " -msgstr " Definició de colors de fons o gràfics de fons " +msgstr "Definició dels colors de fons dels gràfics de fons " #. gwwiM #: background.xhp @@ -678,13 +676,12 @@ #. 2BGVn #: background.xhp -#, fuzzy msgctxt "" "background.xhp\n" "par_id3153575\n" "help.text" msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the Arrange - To Background command to place this in the background. To select a graphic that has been placed in the background, use the Navigator." -msgstr "El gràfic s'insereix ancorat a la cel·la actual. Podeu moure i escalar el gràfic com vulgueu. En el menú contextual podeu utilitzar l'ordre Organitza - Al fons per col·locar-lo al fons. Per seleccionar un gràfic que s'ha col·locat al fons utilitzeu el Navegador ." +msgstr "El gràfic s'insereix ancorat a la cel·la actual. Podeu moure i escalar el gràfic com vulgueu. Al menú de context podeu utilitzar l'ordre Organitza ▸ Al fons per a col·locar-lo al fons. Per a seleccionar un gràfic que s'ha col·locat al fons, feu servir el Navegador." #. vTxFX #: background.xhp @@ -2268,7 +2265,7 @@ "par_id3166427\n" "help.text" msgid "Cells were hidden using the Hide command in the context menu of the row or column headers, or through an outline." -msgstr "Les cel·les s'han amagat amb l'ordre Amaga del menú contextual de les capçaleres de fila o de columna, o bé amb un contorn." +msgstr "Les cel·les s'han amagat amb l'ordre Amaga del menú contextual de les capçaleres de fila o de columna, o bé amb un esquema." #. hCVpN #: cellcopy.xhp @@ -5605,13 +5602,12 @@ #. xSB4o #: edit_multitables.xhp -#, fuzzy msgctxt "" "edit_multitables.xhp\n" "par_idN10614\n" "help.text" msgid "You can use Shift+CommandCtrl+Page Up or Page Down to select multiple sheets using the keyboard." -msgstr "Podeu utilitzar Maj+ OrdreCtrl+Pàgina Amunto Av Pàgper seleccionar múltiples fulls utilitzant el teclat." +msgstr "Podeu utilitzar Maj+OrdreCtrl+Re pàg o Av pàg per seleccionar diversos fulls amb el teclat." #. bwHKS #: edit_multitables.xhp @@ -11646,7 +11642,7 @@ "hd_id3148798\n" "help.text" msgid "Applying Advanced Filters" -msgstr "" +msgstr "Aplicació de filtres avançats" #. tYuAi #: specialfilter.xhp @@ -11853,7 +11849,7 @@ "par_id3147372\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view." -msgstr "" +msgstr "Trieu Dades ▸ Més filtres ▸ Filtre avançat i seleccioneu l'interval A20:E22. Després de que feu clic a D'acord, només es mostraran les files filtrades. La resta s'amagarà de la visualització." #. jQ6bn #: subtotaltool.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/schart/01.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/schart/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/schart/01.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-03-23 11:41+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551858787.000000\n" @@ -5247,7 +5247,7 @@ "par_id4721823\n" "help.text" msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings." -msgstr "Defineix el gir del diagrama a l'eix X. La previsualització respon a la nova configuració." +msgstr "Defineix el gir del diagrama a l'eix X. La previsualització respon als paràmetres nous." #. r68Bu #: three_d_view.xhp @@ -5256,7 +5256,7 @@ "par_id5806756\n" "help.text" msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings." -msgstr "Defineix el gir del diagrama a l'eix Y. La previsualització respon als nous paràmetres." +msgstr "Defineix el gir del diagrama a l'eix Y. La previsualització respon als paràmetres nous." #. HG7NF #: three_d_view.xhp @@ -5265,7 +5265,7 @@ "par_id8915372\n" "help.text" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon a la nova configuració." +msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon als paràmetres nous." #. P3E59 #: three_d_view.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1561601622.000000\n" @@ -3349,7 +3349,7 @@ "par_id3153716\n" "help.text" msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (xxx represents the name of the object) will be created directly in the same directory as that of the selected object." -msgstr "Es pot activar aquesta ordre si hi ha un objecte seleccionat. Es crearà un enllaç directament anomenat \"Enllaç a xxx\" (on xxx representa el nom de l'objecte) en el mateix directori que el de l'objecte seleccionat." +msgstr "Es pot activar aquesta ordre si hi ha un objecte seleccionat. Es crearà un enllaç directament anomenat «Enllaç a xxx» (on xxx representa el nom de l'objecte) en el mateix directori que el de l'objecte seleccionat." #. HKFbQ #: 00000011.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1565199637.000000\n" @@ -26110,7 +26110,7 @@ "par_id1001632807096225\n" "help.text" msgid "Select the cells to be unmerged then do one of the following:" -msgstr "" +msgstr "Seleccioneu les cel·les que s'han de separar i efectueu un dels procediments següents:" #. 8HDVx #: 05100200.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2022-07-15 19:12:51.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 18:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -150,7 +150,7 @@ "par_id3153748\n" "help.text" msgid "Within the wizard, you can modify your entries and options at any time. You may also skip an entire page or even all the wizard pages, in which case the current (or default) settings will remain in effect." -msgstr "Dins l'auxiliar, podeu modificar les dades i les opcions en qualsevol moment. També podeu saltar-vos una pàgina sencera o fins i tot totes les pàgines de l'auxiliar, cas en què s'aplicarà la configuració actual (o els paràmetres per defecte)." +msgstr "Dins l'auxiliar, podeu modificar les dades i les opcions en qualsevol moment. També podeu saltar-vos una pàgina sencera o fins i tot totes les pàgines de l'auxiliar, cas en què s'aplicaran els paràmetres actuals (o els valors per defecte)." #. oHQpt #: 01010000.xhp @@ -177,7 +177,7 @@ "par_id3153543\n" "help.text" msgid "Allows you to view the selections that you made on the previous steps. The current settings will be saved." -msgstr "Us permet veure les seleccions que heu fet en els passos anteriors. Es desarà la configuració actual." +msgstr "Us permet veure les seleccions que heu fet en els passos anteriors. Es desaran els paràmetres actuals." #. cNLgv #: 01010000.xhp @@ -195,7 +195,7 @@ "par_id3155923\n" "help.text" msgid "Saves the current settings and continues to the next page." -msgstr "Desa la configuració actual i continua a la pàgina següent." +msgstr "Desa els paràmetres actuals i continua a la pàgina següent." #. RTbvH #: 01010000.xhp @@ -222,7 +222,7 @@ "par_id3144433\n" "help.text" msgid "$[officename] saves the current settings in the wizard according to the chosen template. These settings are used as the default settings the next time you activate the wizard." -msgstr "El $[officename] desa la configuració actual de l'auxiliar segons la plantilla seleccionada. Aquesta configuració s'utilitzarà per defecte la propera vegada que activeu l'auxiliar." +msgstr "El $[officename] desa els paràmetres actuals de l'auxiliar segons la plantilla seleccionada. Aquests paràmetres s'utilitzaran per defecte la propera vegada que activeu l'auxiliar." #. HCxtN #: 01010100.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-03-31 21:47+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1564412548.000000\n" @@ -22983,7 +22983,7 @@ "par_id3147008\n" "help.text" msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document." -msgstr "Per exemple: sou editor i esteu a punt de lliurar el vostre últim informe. Abans de publicar-lo, l'han de llegir l'editor sènior i el corrector, i ambdós hi afegeixen canvis. L'editor sènior escriu «aclarir» després d'un paràgraf i en barra completament un altre. El corrector corregeix l'ortografia del document." +msgstr "Per exemple: sou editor i esteu a punt de lliurar el vostre últim informe. Abans de publicar-lo, l'han de llegir l'editor sènior i la correctora, i ambdós hi afegeixen canvis. L'editor sènior escriu «aclarir» després d'un paràgraf i en barra completament un altre. La correctora corregeix l'ortografia del document." #. sZdoa #: redlining.xhp @@ -23210,7 +23210,7 @@ "par_id3145315\n" "help.text" msgid "A file selection dialog appears. Select your older original document and confirm the dialog." -msgstr "Apareix un diàleg de selecció de fitxer. Seleccioneu el document antic original i confirmeu el diàleg." +msgstr "Apareix un diàleg de selecció de fitxers. Seleccioneu el document antic original i confirmeu el diàleg." #. sabfp #: redlining_doccompare.xhp @@ -23327,7 +23327,7 @@ "tit\n" "help.text" msgid "Recording Changes" -msgstr "Registre de canvis" +msgstr "Enregistrament de canvis" #. V8ATh #: redlining_enter.xhp @@ -23345,7 +23345,7 @@ "hd_id3155364\n" "help.text" msgid "Recording Changes" -msgstr "Registre de canvis" +msgstr "Enregistrament de canvis" #. VBpWf #: redlining_enter.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561340808.000000\n" #. mu9aV @@ -8902,13 +8902,12 @@ #. kZkbo #: effectoptionstext.xhp -#, fuzzy msgctxt "" "effectoptionstext.xhp\n" "par_idN105E7\n" "help.text" msgid "As one object - all paragraphs are animated as one object." -msgstr "Com un objecte - tots els paràgrafs són animats com un objecte." +msgstr "Com a objecte únic: tots els paràgrafs són animats com un sol objecte." #. iFEvf #: effectoptionstext.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1561340761.000000\n" @@ -1014,7 +1014,7 @@ "par_id3149756\n" "help.text" msgid "Lets you drag the handles of the selected object to change its shape. If the selected object is not a polygon or Bézier curve, you are prompted to change the object to a curve before you can distort it." -msgstr "Us permet arrossegar les anses de l'objecte seleccionat per canviar-ne la forma. Si l'objecte seleccionat no és un polígon ni una corba de Bézier, se us sol·licitarà que canvieu l'objecte a una corba abans de distorsionar-lo." +msgstr "Us permet arrossegar les anses de l'objecte seleccionat per a canviar-ne la forma. Si l'objecte seleccionat no és un polígon ni una corba de Bézier, se us sol·licitarà que canvieu l'objecte a una corba abans de distorsionar-lo." #. e6Ep6 #: 10030000.xhp @@ -1059,7 +1059,7 @@ "par_id3147516\n" "help.text" msgid "Drag the white handle to change the direction of the transparency gradient. Drag the black handle to change the length of the gradient. You can also drag and drop colors onto the handles from the Color Bar to change their grayscale values." -msgstr "Arrossegueu l'ansa blanca per canviar la direcció del degradat de transparència. Arrossegueu l'ansa negra per canviar la longitud del degradat. També podeu arrossegar i deixar anar colors a les anses des de la barra Color per canviar-ne els valors d'escala de grisos." +msgstr "Arrossegueu l'ansa blanca per a canviar la direcció del degradat de transparència. Arrossegueu l'ansa negra per a canviar la longitud del degradat. També podeu arrossegar i deixar anar colors a les anses des de la barra Color per a canviar-ne els valors d'escala de grisos." #. UVA2E #: 10030000.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1561340858.000000\n" @@ -1002,7 +1002,7 @@ "par_id291603290382271\n" "help.text" msgid "Go to, Select, Edit, Delete, Rename" -msgstr "Vés a, Selecciona, Edita, Suprimeix, Canvia el nom" +msgstr "Ves a, Selecciona, Edita, Suprimeix, Canvia el nom" #. raARd #: 02110000.xhp @@ -1095,7 +1095,7 @@ "par_id611603290373033\n" "help.text" msgid "Go to, Edit, Delete, Rename" -msgstr "Vés a, Edita, Suprimeix, Canvia el nom" +msgstr "Ves a, Edita, Suprimeix, Canvia el nom" #. wRDwv #: 02110000.xhp @@ -1133,7 +1133,7 @@ "par_id291694280382271\n" "help.text" msgid "Go to, Select, Edit, Rename" -msgstr "Vés a, Selecciona, Edita, Canvia el nom" +msgstr "Ves a, Selecciona, Edita, Canvia el nom" #. RTDr9 #: 02110000.xhp @@ -1167,23 +1167,21 @@ #. RT7Pi #: 02110000.xhp -#, fuzzy msgctxt "" "02110000.xhp\n" "par_id961603570483539\n" "help.text" msgid "Go to, Edit, Delete, Rename" -msgstr "Vés a Edita Suprimeix el canvi de nom" +msgstr "Ves a, Edita, Suprimeix, Canvia el nom" #. MmCsC #: 02110000.xhp -#, fuzzy msgctxt "" "02110000.xhp\n" "par_id901603571492300\n" "help.text" msgid "References Icon" -msgstr "GAReferences Icona" +msgstr "Icona Referències" #. iDyLx #: 02110000.xhp @@ -1229,7 +1227,7 @@ "par_id29160996782271\n" "help.text" msgid "Go to" -msgstr "Vés a" +msgstr "Ves a" #. DY5cm #: 02110000.xhp @@ -1277,7 +1275,7 @@ "par_id291604453382271\n" "help.text" msgid "Go to, Edit, Delete" -msgstr "Vés a Edita Suprimeix" +msgstr "Ves a Edita Suprimeix" #. E5dpv #: 02110000.xhp @@ -1316,7 +1314,7 @@ "par_id291603347382271\n" "help.text" msgid "Go to, Delete, Rename" -msgstr "Vés a, Suprimeix, Canvia el nom" +msgstr "Ves a, Suprimeix, Canvia el nom" #. vGwzZ #: 02110000.xhp @@ -5556,7 +5554,7 @@ "hd_id3149838\n" "help.text" msgid "Go to" -msgstr "Vés a" +msgstr "Ves a" #. ABDnD #: 04040000.xhp @@ -5971,7 +5969,7 @@ "par_id5187536\n" "help.text" msgid "Choose the \"Default\" page style from the submenu." -msgstr "Trieu l'estil de pàgina \"Per defecte\" del submenú." +msgstr "Trieu l'estil de pàgina «Per defecte» del submenú." #. JyxEQ #: 04070000.xhp @@ -5980,7 +5978,7 @@ "par_id6952726\n" "help.text" msgid "This removes the special \"Envelope\" page formatting." -msgstr "Aquesta acció suprimeix la formatació especial \"Sobre\" de la pàgina." +msgstr "Aquesta acció suprimeix la formatació especial «Sobre» de la pàgina." #. 3iAPy #: 04070000.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/02.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/02.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1536890914.000000\n" @@ -4028,7 +4028,7 @@ "par_id901615999151001\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Feu una de les accions següents:" #. qPKKN #: add_to_list.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1564507881.000000\n" @@ -312,7 +312,7 @@ "par_id3155089\n" "help.text" msgid "Do one of the following:" -msgstr "Dueu a terme una de les següents opcions:" +msgstr "Feu una de les accions següents:" #. JBqEQ #: arrange_chapters.xhp @@ -872,7 +872,7 @@ "par_id3147762\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. nw7Cq #: autocorr_except.xhp @@ -3884,7 +3884,7 @@ "par_id3155606\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. imU8h #: dragdroptext.xhp @@ -6341,7 +6341,7 @@ "par_id3149634\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. CvjTX #: globaldoc_howtos.xhp @@ -8223,7 +8223,7 @@ "hd_id3147119\n" "help.text" msgid "To Define Table of Contents Entries" -msgstr "Per definir entrades en les taules de continguts" +msgstr "Per a definir entrades en les taules de continguts" #. s2tDv #: indices_enter.xhp @@ -8232,7 +8232,7 @@ "par_id3147132\n" "help.text" msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents." -msgstr "La millor manera de generar una taula de continguts consisteix a aplicar estils de paràgraf predefinits, com ara \"Encapçalament 1\", als paràgrafs que vulgueu incloure a la taula de continguts." +msgstr "La millor manera de generar una taula de continguts consisteix a aplicar estils de paràgraf predefinits, com ara «Encapçalament 1», als paràgrafs que vulgueu incloure a la taula de continguts." #. SuiqC #: indices_enter.xhp @@ -8979,7 +8979,7 @@ "par_id3153161\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. GnvFq #: indices_toc.xhp @@ -10035,7 +10035,7 @@ "par_id3145098\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. 4CCmS #: load_styles.xhp @@ -10404,7 +10404,7 @@ "par_id3155919\n" "help.text" msgid "Choose Table - Number Recognition." -msgstr "" +msgstr "Trieu Taula ▸ Reconeixement de nombres." #. EX3eD #: number_date_conv.xhp @@ -10521,7 +10521,7 @@ "par_id3153387\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. bFejc #: number_sequence.xhp @@ -10910,7 +10910,7 @@ "par_id3153366\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. KhZd2 #: numbering_paras.xhp @@ -10919,7 +10919,7 @@ "par_id3153390\n" "help.text" msgid "To remove the number while preserving the indent of the paragraph, press the Backspace key." -msgstr "Per eliminar el nombre i conservar el sagnat del paràgraf, premeu la tecla Retrocés." +msgstr "Per a eliminar el nombre i conservar el sagnat del paràgraf, premeu la tecla Retrocés." #. cszDd #: numbering_paras.xhp @@ -12276,7 +12276,7 @@ "par_id3145110\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. uSYiK #: pagestyles.xhp @@ -12285,7 +12285,7 @@ "par_id3156252\n" "help.text" msgid "To apply the custom page style to a single page, select the default page style that is used in your document in the Next Style box." -msgstr "Per aplicar l'estil de pàgina personalitzat a una sola pàgina, seleccioneu al quadre Estil següent l'estil de pàgina per defecte utilitzat al document." +msgstr "Per a aplicar l'estil de pàgina personalitzat a una sola pàgina, seleccioneu al quadre Estil següent l'estil de pàgina per defecte utilitzat al document." #. hzTs7 #: pagestyles.xhp @@ -12294,7 +12294,7 @@ "par_id3153376\n" "help.text" msgid "To apply the custom page style to more than one page, select its name in the Next Style box. To stop using the style, insert a manual page break and assign it a different page style." -msgstr "Per aplicar l'estil de pàgina personalitzat a més d'una pàgina, seleccioneu-ne el nom al quadre Estil següent. Per deixar d'utilitzar l'estil, inseriu un salt de pàgina manual i assigneu-li un altre estil de pàgina." +msgstr "Per a aplicar l'estil de pàgina personalitzat a més d'una pàgina, seleccioneu-ne el nom al quadre Estil següent. Per a deixar d'utilitzar l'estil, inseriu un salt de pàgina manual i assigneu-li un altre estil de pàgina." #. uqEFP #: pagestyles.xhp @@ -12303,7 +12303,7 @@ "par_id3154252\n" "help.text" msgid "Use the tabs in the dialog to set the layout options for the page style, and then click OK." -msgstr "Utilitzeu les pestanyes del diàleg per a definir les opcions de disposició per a l'estil de pàgina i a continuació feu clic a D'acord." +msgstr "Utilitzeu les pestanyes del diàleg per a definir les opcions de disposició per a l'estil de pàgina i, a continuació, feu clic a D'acord." #. 3gsE5 #: pagestyles.xhp @@ -12330,7 +12330,7 @@ "par_id471615462517274\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Feu una de les accions següents:" #. GC7eD #: pagestyles.xhp @@ -14575,13 +14575,12 @@ #. bDZCd #: search_regexp.xhp -#, fuzzy msgctxt "" "search_regexp.xhp\n" "par_id3153136\n" "help.text" msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"." -msgstr "L'expressió regular per a zero o més aparicions del caràcter anterior és un asterisc. Per exemple «123*» troba «12» «123» i «1233»." +msgstr "L'expressió regular per a zero o més aparicions del caràcter anterior és un asterisc. Per exemple, «123*» troba «12» «123» i «1233»." #. fSHTB #: search_regexp.xhp @@ -14683,7 +14682,7 @@ "par_id3153397\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. SLABp #: section_edit.xhp @@ -15532,7 +15531,7 @@ "par_id3149861\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. BQn9T #: spellcheck_dialog.xhp @@ -15541,7 +15540,7 @@ "par_id3145099\n" "help.text" msgid "To accept a correction, click the suggestion, and then click Correct." -msgstr "Per acceptar una correcció feu clic al suggeriment i a continuació a Corregeix." +msgstr "Per a acceptar una correcció, feu clic al suggeriment i, a continuació, a Corregeix." #. TTKPE #: spellcheck_dialog.xhp @@ -15956,7 +15955,7 @@ "par_id3155865\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. 936N5 #: subscript.xhp @@ -16749,7 +16748,7 @@ "par_id3149587\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. NNFYn #: table_sizing.xhp @@ -17174,7 +17173,7 @@ "par_id3149841\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. EHAWs #: text_capital.xhp @@ -17219,7 +17218,7 @@ "par_id3149606\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. BGYFM #: text_capital.xhp @@ -18807,7 +18806,7 @@ "par_id181615764064889\n" "help.text" msgid "Do one of the following:" -msgstr "Realitzeu una de les accions següents:" +msgstr "Feu una de les accions següents:" #. B2NZk #: using_numbered_lists2.xhp diff -Nru libreoffice-7.3.4/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-06-06 18:34+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562301193.000000\n" #. W5ukN @@ -20156,7 +20156,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "Mou amunt" +msgstr "Mou cap amunt" #. GvBYt #: GenericCommands.xcu @@ -20176,7 +20176,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "Mou avall" +msgstr "Mou cap avall" #. KQLPA #: GenericCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/ca/sc/messages.po libreoffice-7.3.5/translations/source/ca/sc/messages.po --- libreoffice-7.3.4/translations/source/ca/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" -"Last-Translator: Joan Montané \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562916192.000000\n" #. kBovX @@ -22018,7 +22018,7 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:29 msgctxt "deletecolumnentry|name" msgid "Delete Columns" -msgstr "Esborra columnes" +msgstr "Suprimeix columnes" #. QFtCG #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:46 @@ -25252,97 +25252,97 @@ msgstr "~Visualitza" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_atge" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimeix" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Im~primeix" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ei~nes" @@ -25701,139 +25701,139 @@ msgstr "Im_atge" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Organitza" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Graella" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Llengua" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisió" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentaris" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_para" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Visualització" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "D_ibuixa" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edita" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Organitza" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Visualització" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Agrupa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Lletra tipogràfica" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alineació" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Visualització" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insereix" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimèdia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Marc" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Organitza" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Graella" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Visualització" @@ -30594,7 +30594,7 @@ #: sc/uiconfig/scalc/ui/solversuccessdialog.ui:88 msgctxt "solversuccessdialog|label2" msgid "Solving successfully finished." -msgstr "El càlcul de la solució ha finalitzat amb èxit." +msgstr "El càlcul de la solució ha finalitzat correctament." #. hA9oa #: sc/uiconfig/scalc/ui/solversuccessdialog.ui:100 diff -Nru libreoffice-7.3.4/translations/source/ca/sd/messages.po libreoffice-7.3.5/translations/source/ca/sd/messages.po --- libreoffice-7.3.4/translations/source/ca/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562916317.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Taula" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestra" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Mestra" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Eines" @@ -5239,7 +5239,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:84 msgctxt "customanimationtexttab|group_text_list" msgid "As one object" -msgstr "Com un objecte" +msgstr "Com a objecte únic" #. BAUhG #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:85 @@ -7062,109 +7062,109 @@ msgstr "~Taula" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestra" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Mestra" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Eines" diff -Nru libreoffice-7.3.4/translations/source/ca/setup_native/source/mac.po libreoffice-7.3.5/translations/source/ca/setup_native/source/mac.po --- libreoffice-7.3.4/translations/source/ca/setup_native/source/mac.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/setup_native/source/mac.po 2022-07-15 19:12:51.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-06 10:28+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2022-07-01 09:59+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 3.8\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516019742.000000\n" #. HQKCW @@ -77,7 +77,7 @@ "ChooseMyOwnText\n" "LngText.text" msgid "Not listed (choose location in an extra step)" -msgstr "No llistada (trieu la ubicació en un pas addicional)" +msgstr "Una altra (trieu la ubicació en un pas addicional)" #. ey87A #: macinstall.ulf @@ -140,7 +140,7 @@ "StartInstallText1\n" "LngText.text" msgid "Click Install to start the installation" -msgstr "Feu clic a Instal·la per iniciar la instal·lació" +msgstr "Feu clic a Instal·la per a iniciar la instal·lació" #. ikAwX #: macinstall.ulf @@ -176,7 +176,7 @@ "IdentifyYES\n" "LngText.text" msgid "Yes, identify" -msgstr "Sí, identifiqueu-me" +msgstr "Sí, identifica'm" #. QdpWc #: macinstall.ulf @@ -212,7 +212,7 @@ "InstallCompleteText2\n" "LngText.text" msgid "Call '[PRODUCTNAME] - Preferences - Language Settings - Languages' to change the user interface language." -msgstr "Aneu a «[PRODUCTNAME] ▸ Preferències ▸ Configuració de llengua ▸ Llengües» per a canviar la llengua de la interfície d'usuari." +msgstr "Aneu a «[PRODUCTNAME] ▸ Preferències ▸ Paràmetres de la llengua ▸ Llengües» per a canviar la llengua de la interfície d'usuari." #. kAZvs #: macinstall.ulf diff -Nru libreoffice-7.3.4/translations/source/ca/svtools/messages.po libreoffice-7.3.5/translations/source/ca/svtools/messages.po --- libreoffice-7.3.4/translations/source/ca/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564413316.000000\n" #. fLdeV @@ -2420,7 +2420,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 "L'execució de macros està desactivada. Les macros estan desactivades, però el document (que conté esdeveniments de document) no està signat." +msgstr "L'execució de macros està desactivada. Les macros estan signades, però no pas el document (que conté esdeveniments)." #. 24FhM #: svtools/inc/errtxt.hrc:123 diff -Nru libreoffice-7.3.4/translations/source/ca/sw/messages.po libreoffice-7.3.5/translations/source/ca/sw/messages.po --- libreoffice-7.3.4/translations/source/ca/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562916102.000000\n" #. v3oJv @@ -6285,7 +6285,7 @@ #: sw/inc/strings.hrc:731 msgctxt "STR_TOC" msgid "Table of Contents" -msgstr "Índex de continguts" +msgstr "Taula de continguts" #. BESjb #: sw/inc/strings.hrc:732 @@ -10499,19 +10499,19 @@ msgstr "Mou l'estil de paràgraf seleccionat un nivell avall en la jerarquia de l'índex." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estils" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crea entrades d'índex a partir d'estils de paràgraf concrets." @@ -13955,37 +13955,37 @@ msgstr "Intercanvia les bases de dades" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Defineix" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de dades utilitzades" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Bases de dades _disponibles" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Navega..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Obre un diàleg d'obertura de fitxer per seleccionar un fitxer de base de dades (*.odb). El fitxer seleccionat s'afegeix a la llista Bases de dades disponibles." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Feu servir el botó del navegador per a seleccionar un fitxer de base de dades." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Enumera les bases de dades que estan en ús actualment." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Mostra una llista de les bases de dades que s'han registrat al %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Intercanvia les bases de dades" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de dades aplicada al document:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Canvia les fonts de dades per al document actual." @@ -20073,109 +20073,109 @@ msgstr "Utilitza el _document actual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilitza el document del Writer actual com a base per al document de combinació de correu." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crea un document no_u" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Crea un document del Writer nou per a la combinació de correu." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Comença pel document _existent" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Seleccioneu un document del Writer existent per a utilitzar-lo com a base per al document de combinació de correu." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Com_ença a partir d'una plantilla" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Seleccioneu la plantilla que voleu utilitzar per a crear un document de combinació de correu." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Co_mença a partir d'un document inicial desat recentment" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utilitzeu un document de combinació de correu existent com a base per a un document de combinació de correu nou." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Seleccioneu el document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Navega..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localitzeu el document del Writer que voleu utilitzar i feu clic a Obre." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Navega..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Obre un diàleg per a seleccionar una plantilla." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "La font de dades del document actual no està registrada. Intercanvieu la base de dades." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Intercanvia la base de dades..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleccioneu un document inicial per a la combinació de correu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu." @@ -22318,49 +22318,49 @@ msgstr "Objecte" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipus" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcions" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ajusta" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Enllaç" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Vores" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Àrea" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparència" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Actualitza" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Mostra les estadístiques del document actual." @@ -28805,7 +28805,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:141 msgctxt "tocindexpage|liststore1" msgid "Table of Contents" -msgstr "Índex de continguts" +msgstr "Taula de continguts" #. hP5JM #: sw/uiconfig/swriter/ui/tocindexpage.ui:142 diff -Nru libreoffice-7.3.4/translations/source/ca/vcl/messages.po libreoffice-7.3.5/translations/source/ca/vcl/messages.po --- libreoffice-7.3.4/translations/source/ca/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-12-27 06:38+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562301320.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Imprimeix diverses pàgines per full de paper." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalitzat" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleccioneu quantes pàgines s'imprimiran per full de paper." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pàgines:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleccioneu el nombre de files." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "per" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Seleccioneu el nombre de columnes." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marge:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Seleccioneu el marge entre les pàgines individuals de cada full de paper." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre les pàgines" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distància:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Seleccioneu el marge entre les pàgines impreses i la vora del paper." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "fins a la vora del full" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordre:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "D'esquerra a dreta, i avall" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De dalt a baix, i a la dreta" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De dalt a baix, i a l'esquerra" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De dreta a esquerra, i avall" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleccioneu l'ordre en què s'imprimiran les pàgines." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dibuixa una vora al voltant de cada pàgina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Activeu aquesta opció per a dibuixar una vora al voltant de cada pàgina." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Fullet" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Trieu per a imprimir el document en format de fulletó." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Previsualització de la intercalació" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Canvia la disposició de les pàgines a imprimir en cada full de paper. La previsualització mostra com es veurà cada full de paper final." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Mé_s" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Disposició de la pàgina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprimeix el document actual, la selecció o les pàgines que indiqueu. També podeu definir les opcions d'impressió per al document actual." diff -Nru libreoffice-7.3.4/translations/source/ca/xmlsecurity/messages.po libreoffice-7.3.5/translations/source/ca/xmlsecurity/messages.po --- libreoffice-7.3.4/translations/source/ca/xmlsecurity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca/xmlsecurity/messages.po 2022-07-15 19:12:51.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-29 16:04+0200\n" -"PO-Revision-Date: 2021-02-09 16:36+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1556385421.000000\n" #. EyJrF @@ -441,7 +441,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:146 msgctxt "digitalsignaturesdialog|issued" msgid "Digital ID issued by " -msgstr "ID digital emesa per " +msgstr "Id. digital emesa per " #. DSCb7 #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:159 diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/chart2/messages.po libreoffice-7.3.5/translations/source/ca-valencia/chart2/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -3602,7 +3602,7 @@ msgstr "Definiu el nombre de línies per al diagrama de tipus Columna i línia." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Seleccioneu un tipus de diagrama bàsic." diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/cui/messages.po libreoffice-7.3.5/translations/source/ca-valencia/cui/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Automàtic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galàxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alt contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clàssic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Brisa" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Indica l'estil d'icona per a les icones de les barres d'eines i diàlegs." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_til de les icones:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Afig més temes d'icones mitjançant extensions" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estil de les icones" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Cal reiniciar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Accelera per ma_quinari" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accedeix directament a les funcions de maquinari de l'adaptador de visualització gràfica per millorar la visualització de pantalla." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Su_avitza les vores" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Utilitza l'Skia per a totes les renderitzacions" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Força la renderització per programari Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Requereix el reinici. Si s'activa això, s'evita l'ús dels controladors de gràfics." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "L'Skia està activat." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "L'Skia està desactivat." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Eixida de gràfics" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "P_revisualitza els tipus de lletra" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra Formatació." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavitza el tipus de lletra a la _pantalla" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_des de:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Llistes de tipus de lletra" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/dbaccess/messages.po libreoffice-7.3.5/translations/source/ca-valencia/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -3395,73 +3395,73 @@ msgstr "Crear una base de dades _nova" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Base de dades _incrustada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Obrir una _base de dades existent" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Utilitzats _recentment:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Obri" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connectar amb una base de dades e_xistent" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "No és possible crear una base de dades nova, perquè ni l'HSQLDB ni el Firebird són disponibles en aquesta instal·lació." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/extensions/messages.po libreoffice-7.3.5/translations/source/ca-valencia/extensions/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Actualitza el formulari" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Aconsegueix" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Publica" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Múltiples parts" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estàndard (curt)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estàndard (curta YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estàndard (curta YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estàndard (llarg)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "No seleccionats" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleccionat" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "No definit" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tots els registres" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registre actiu" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pàgina actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sí" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulari pare" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_en blanc" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_pare" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_si-mateix" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_superior" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Cap" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Simple" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Múltiple" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Interval" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horitzontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Per defecte" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "D'acord" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancel·la" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "L'entrada seleccionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "La posició de l'entrada seleccionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Línia única" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Línies múltiples" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Línies múltiples amb formatació" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Cap" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horitzontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Totes dues" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Pla" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Superior esquerre" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centrat a l'esquerra" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Inferior esquerre" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Superior dret" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centrat a la dreta" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Inferior dret" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Dalt a l'esquerra" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Dalt centrat" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Dalt a la dreta" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Avall a l'esquerra" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Avall centrat" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Avall a la dreta" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrat" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preserva" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Substitueix" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Redueix" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantén la proporció" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajusta a la mida" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "D'esquerra a dreta" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De dreta a esquerra" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilitza la configuració d'objectes superordinats" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Mai" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Quan tinga el focus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al paràgraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Com a caràcter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A la pàgina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Al marc" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al caràcter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A la pàgina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "A la cel·la" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/fpicker/messages.po libreoffice-7.3.5/translations/source/ca-valencia/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2020-05-23 22:47+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -216,55 +216,55 @@ msgstr "Data de modificació" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nom del fitxer:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipus de fitxer:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Només lectu_ra" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Guarda amb contrasenya" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensió del nom del fitxer _automàtica" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Edita els paràmetres del _filtre" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Xifra amb clau GPG" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/sc/messages.po libreoffice-7.3.5/translations/source/ca-valencia/sc/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -25245,97 +25245,97 @@ msgstr "~Visualitza" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_atge" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimeix" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Im~primeix" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ei~nes" @@ -25694,139 +25694,139 @@ msgstr "Im_atge" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Organitza" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Graella" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Llengua" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisió" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentaris" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_para" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Visualització" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "D_ibuixa" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edita" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Organitza" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Visualització" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Agrupa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Tipus de lletra" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alineació" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Visualització" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insereix" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimèdia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Marc" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Organitza" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Graella" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Visualització" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/sd/messages.po libreoffice-7.3.5/translations/source/ca-valencia/sd/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -4171,109 +4171,109 @@ msgstr "~Taula" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestra" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Mestra" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Eines" @@ -7060,109 +7060,109 @@ msgstr "~Taula" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ibuix" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Dibuix" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objecte" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objecte" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestra" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Mestra" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensió" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensió" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eines" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Eines" diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/sw/messages.po libreoffice-7.3.5/translations/source/ca-valencia/sw/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -10499,19 +10499,19 @@ msgstr "Mou l'estil de paràgraf seleccionat un nivell avall en la jerarquia de l'índex." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estils" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crea entrades d'índex a partir d'estils de paràgraf concrets." @@ -13955,37 +13955,37 @@ msgstr "Intercanvia les bases de dades" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Defineix" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de dades utilitzades" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Bases de dades _disponibles" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Navega..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Obri un diàleg d'obertura de fitxer per seleccionar un fitxer de base de dades (*.odb). El fitxer seleccionat s'afig a la llista Bases de dades disponibles." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Feu servir el botó del navegador per seleccionar un fitxer de base de dades." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Llista les bases de dades que estan en ús actualment." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Mostra una llista de les bases de dades que s'han registrat al %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Intercanvia les bases de dades" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de dades aplicada al document:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Canvia les fonts de dades per al document actual." @@ -20073,109 +20073,109 @@ msgstr "Utilitza el _document actual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilitza el document del Writer actual com a base per al document de combinació de correu." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crea un document no_u" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Crea un document del Writer nou per a la combinació de correu." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Comença pel document _existent" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Seleccioneu un document del Writer existent per utilitzar com a base per al document de combinació de correu." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Com_ença a partir d'una plantilla" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Seleccioneu la plantilla que voleu utilitzar per crear un document de combinació de correu." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Co_mença a partir d'un document inicial guardat recentment" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utilitzeu un document de combinació de correu existent com a base per a un document de combinació de correu nou." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Seleccioneu el document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Navega..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localitzeu el document del Writer que voleu utilitzar i feu clic a Obri." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Navega..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Obri un diàleg per a seleccionar una plantilla." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleccioneu un document inicial per a la combinació de correu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu." @@ -22318,49 +22318,49 @@ msgstr "Objecte" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipus" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcions" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ajusta" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Enllaç" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Vores" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Àrea" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparència" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Actualitza" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Mostra les estadístiques del document actual." diff -Nru libreoffice-7.3.4/translations/source/ca-valencia/vcl/messages.po libreoffice-7.3.5/translations/source/ca-valencia/vcl/messages.po --- libreoffice-7.3.4/translations/source/ca-valencia/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ca-valencia/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-01-12 09:36+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" @@ -2319,169 +2319,169 @@ msgstr "Imprimeix diverses pàgines per full de paper." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalitzat" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleccioneu quantes pàgines s'imprimiran per full de paper." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pàgines:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleccioneu el nombre de files." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "per" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Seleccioneu el nombre de columnes." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marge:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Seleccioneu el marge entre les pàgines individuals de cada full de paper." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre les pàgines" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distància:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Seleccioneu el marge entre les pàgines impreses i la vora del paper." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "fins a la vora del full" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordre:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "D'esquerra a dreta, i avall" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De dalt a baix, i a la dreta" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De dalt a baix, i a l'esquerra" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De dreta a esquerra, i avall" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleccioneu l'orde en què s'imprimiran les pàgines." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dibuixa una vora al voltant de cada pàgina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Activeu esta opció per dibuixar una vora al voltant de cada pàgina." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Fullet" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Previsualització de la intercalació" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Canvia la disposició de les pàgines a imprimir en cada full de paper. La vista prèvia mostra com es veurà cada full de paper final." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Mé_s" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Esquema de la pàgina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprimeix el document actual, la selecció o les pàgines que indiqueu. També podeu definir les opcions d'impressió per al document actual." diff -Nru libreoffice-7.3.4/translations/source/ckb/chart2/messages.po libreoffice-7.3.5/translations/source/ckb/chart2/messages.po --- libreoffice-7.3.4/translations/source/ckb/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -3599,7 +3599,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ckb/cui/messages.po libreoffice-7.3.5/translations/source/ckb/cui/messages.po --- libreoffice-7.3.4/translations/source/ckb/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -17104,176 +17104,152 @@ msgid "Automatic" msgstr "خۆکار" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "تۆخی بەرز" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "کلاسیک" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "ش_ێوەی وێنۆچکە:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "پێویستی بە پێکردنەوەیە" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "پێویستی بە پێکردنەوەیە. چالاککردنی ئەمە نایەڵێت وەگەڕخەری گرافیک ئیش بکات." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "سکیا ئێستا چالاک کراوە." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "سکیا ئێستا ناچالاک کراوە." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "دەرخستەی گرافیک" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "پێشب_ینی جۆرەپیتەکان پیشانبدە" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ل_ە:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ckb/dbaccess/messages.po libreoffice-7.3.5/translations/source/ckb/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ckb/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -3319,73 +3319,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "کردنەوە" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3393,7 +3393,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ckb/extensions/messages.po libreoffice-7.3.5/translations/source/ckb/extensions/messages.po --- libreoffice-7.3.4/translations/source/ckb/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -290,536 +290,524 @@ msgid "Refresh form" msgstr "نوێکردنەوەی فۆرم" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "بەدەستهێنان" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "بەستەر" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "دەق" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ستاندارد (کورت)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ستاندارد (کورت YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ستاندارد (کورت)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ستاندارد (درێژ )" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ڕ/م/س" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "م/ڕ/س" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "س/م/ڕ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ڕ/م/س" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "س/ڕ/م" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "س/م/ڕ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "س-م-ڕ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "س-م-ڕ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "١٣:٤٥" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "١٣:٤٥:٠٠ پ.ن" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "٠١:٤٥ پ.ن" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "٠١:٤٥:٠٠ پ.ن" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "دیارینەکراوە" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "دیاریکراوە" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "نەناسێنراوە" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "هەموو تۆمارەکان" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "تۆماری چالاک" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "پەڕەی ئێستا" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "نەخێر" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "بەڵێ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_بەتاڵ" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_سەرەوە" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "هیج" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "تاک" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "دووانی" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "بوار" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ئاسۆیی" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ستوونی" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "بنەڕەت" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "باشە" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "هه‌ڵوه‌شاندنه‌وه‌" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "یارمەتی" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "هیج" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ئاسۆیی" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ستوونی" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "هەردووک" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "تەخت" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "لە ناوەڕاست" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ناوچەی پارێزراو" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "جێگرتنەوە" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "چەپ-بۆ-ڕاست" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ڕاست-بۆ-چەپ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "هه‌رگیز" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "هەموو کات" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "بۆ بەند" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "وەکوو نووسە" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "بۆ پەڕە" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "بۆ چوارچێوە" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "بۆ نووسە" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "بۆ پەڕەی" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "بۆ خانەی" diff -Nru libreoffice-7.3.4/translations/source/ckb/fpicker/messages.po libreoffice-7.3.5/translations/source/ckb/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ckb/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -217,55 +217,55 @@ msgstr "ئەو رۆژەی کە پەڕگە دەستکاریکراوە" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_ناوی پەڕگە:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "جۆری _پەڕگە:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "تەنها _خوێندنەوە" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "‫پاشەکەوتکردن لەگەڵ وشەی تێپەڕبوو" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_پاشگری ناوی پەڕگەی خۆکار" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ڕێکخستنەکانی _پاڵێوکردن دەستکاریبکە" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "باهێماکردنی بە هۆی کلیلی GPG" diff -Nru libreoffice-7.3.4/translations/source/ckb/sc/messages.po libreoffice-7.3.5/translations/source/ckb/sc/messages.po --- libreoffice-7.3.4/translations/source/ckb/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -25154,97 +25154,97 @@ msgstr "~پیشاندان" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "وێن_ە" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "وێ~نە" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "کێ_شان" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~کێشان" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "تەن" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~تەن" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_میدیا" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~میدیا" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "چاپکردن" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~چاپکردن" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "فۆ_رم" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "فۆ~رم" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "زیاد_کراو" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "زیادکر~او" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_ئامرازەکان" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~ئامرازەکان" @@ -25603,139 +25603,139 @@ msgstr "وێن_ە" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_ڕێکخستن" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ڕە_نگ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_هێڵەکی" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_زمان" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_پێداچوونەوە" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_لێدوانەکان" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "بەراو_ردکردن" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_بینین" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "کێ_شان" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_دەستکاریکردن" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_ڕێکخستن" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_بینین" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "گروو_پ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "‫3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "جۆرە_پیت" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_ڕێککردن" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_بینین" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_هێنان" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_میدیا" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "چوارچچ_ێوە" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_ڕێکخستن" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_هێڵەکی" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_بینین" diff -Nru libreoffice-7.3.4/translations/source/ckb/sd/messages.po libreoffice-7.3.5/translations/source/ckb/sd/messages.po --- libreoffice-7.3.4/translations/source/ckb/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -4160,109 +4160,109 @@ msgstr "~خشتە" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "وێنە" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "وێ~نە" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "کێ_شان" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~کێشان" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "تەن" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~تەن" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_میدیا" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~میدیا" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "فۆ_رم" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "فۆ~رم" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_سەرەکی" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~سەرەکی" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "‫3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "‫3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "زیاد_کراو" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "زیادکر~او" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_ئامرازەکان" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~ئامرازەکان" @@ -7049,109 +7049,109 @@ msgstr "~خشتە" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "وێنە" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "وێ~نە" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "کێ_شان" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~کێشان" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "تەن" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~تەن" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_میدیا" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~میدیا" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "فۆ_رم" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "فۆ~رم" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_سەرەکی" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~سەرەکی" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "‫3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "‫3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "زیاد_کراو" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "زیادکر~او" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_ئامرازەکان" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~ئامرازەکان" diff -Nru libreoffice-7.3.4/translations/source/ckb/sw/messages.po libreoffice-7.3.5/translations/source/ckb/sw/messages.po --- libreoffice-7.3.4/translations/source/ckb/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-01-10 13:21+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:01+0200\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" "Language: ckb\n" @@ -10474,19 +10474,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "شێوە" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "شێوازەکان" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13930,37 +13930,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "بگەڕێ…" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13968,31 +13968,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20046,109 +20046,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "گە_ڕان…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "گە_ڕان…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22291,49 +22291,49 @@ msgstr "تەن" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "جۆر" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "هەڵبژاردەکان" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "پێچانەوە" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "سەرووبەستەر" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "قەراخ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ڕووبەر" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "دیارخەری ڕوونی" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ماکرۆ" @@ -27027,7 +27027,7 @@ msgstr "نوێکردنەوە" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ckb/vcl/messages.po libreoffice-7.3.5/translations/source/ckb/vcl/messages.po --- libreoffice-7.3.4/translations/source/ckb/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ckb/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-02-05 14:07+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -2316,169 +2316,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "دەستکرد" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "پەڕەکان:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "لەلایەن" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "قەراخ:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "نێوان پەڕەکان" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "دووری:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "بۆ سنووری شیت" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "ڕێکی:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "چەپ بۆ ڕاست، پاشان بۆ خوارەوە" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "سەرەوە بۆ خوارەوە، پاشان ڕاست" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "سەرەوە بۆ خوارەوە، پاشان چەپ" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "ڕاست بۆ چەپ، پاشان خوارەوە" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "سنوورێک بکێشە بە دەوری هەر پەڕەیەک" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "کڵێشەی پەڕە" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "گشتی" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/cs/chart2/messages.po libreoffice-7.3.5/translations/source/cs/chart2/messages.po --- libreoffice-7.3.4/translations/source/cs/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547326849.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Určení počtu čar pro typ grafu Sloupce a čáry." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Zvolte základní typ grafu." diff -Nru libreoffice-7.3.4/translations/source/cs/cui/messages.po libreoffice-7.3.5/translations/source/cs/cui/messages.po --- libreoffice-7.3.4/translations/source/cs/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565905500.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automaticky" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Vysoký kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasické" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Určuje styl ikon na nástrojových lištách a v dialogových oknech." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Styl ikon:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Další motivy ikon přidáte pomocí rozšíření" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Styl ikon" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Vyžaduje restart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Použít hardwarovou _akceleraci" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Pro vylepšení zobrazení budou použity přímo hardwarové vlastnosti grafické karty." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Použít vy_hlazení" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Pokud je podporováno, můžete použít vyhlazení grafiky. Při zapnutém vyhlazování má většina grafických objektů méně artefaktů." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Použít pro veškeré vykreslování knihovnu Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Vynutit softwarové vykreslování knihovnou Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Vyžaduje restart. Povolením se zabrání použití grafického ovladače." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Knihovna Skia je aktuálně povolena." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Knihovna Skia je aktuálně zakázána." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafický výstup" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Zobrazit náh_led písem" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Při výběru písma se název písma zobrazí daným písmem, např. v seznamu písem v poli Písmo na liště Formátování." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Vyhlazování písem na obrazovce" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Zvolte, pokud chcete vyhlazovat písma na obrazovce." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_od:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Zadejte nejmenší velikost písma pro vyhlazování." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Seznamy písem" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Spustit testy grafiky" diff -Nru libreoffice-7.3.4/translations/source/cs/dbaccess/messages.po libreoffice-7.3.5/translations/source/cs/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/cs/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563225070.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Vytvořit _novou databázi" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Vytvoří novou databázi." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Vestavěná databáze:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Otevřít existující databázový _soubor" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Vyberte databázový soubor ze seznamu naposledy použitých souborů nebo z dialogového okna pro výběr souboru." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Naposledy použité:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Vyberte databázový soubor, který chcete otevřít, ze seznamu naposledy použitých souborů. Klepnutím na Dokončit soubor okamžitě otevřete a ukončíte průvodce." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otevřít" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Otevře dialogové okno pro výběr souboru, ve kterém je možné vybrat databázový soubor. Klepnutím na Otevřít nebo OK v dialogovém okně soubor okamžitě otevřete a ukončíte průvodce." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Připojit se k _databázi" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Vytvoří databázový dokument s připojením k existující databázi." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Vyberte typ databáze existujícího databázového připojení." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "databáze HSQLDB ani Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Průvodce databází vytvoří databázový soubor, který obsahuje informace o databázi." diff -Nru libreoffice-7.3.4/translations/source/cs/extensions/messages.po libreoffice-7.3.5/translations/source/cs/extensions/messages.po --- libreoffice-7.3.4/translations/source/cs/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555043285.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Obnovit formulář" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "GET" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "POST" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standardní (krátké)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardní (krátké RR)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardní (krátké RRRR)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standardní (dlouhé)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/RR" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/RR" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "RR/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/RRRR" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/RRRR" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "RRRR/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "RR-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "RRRR-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nevybráno" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Vybráno" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nedefinováno" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Všechny záznamy" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktivní záznam" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuální stránka" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ano" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Zdrojový formulář" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Žádné" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jeden" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Více" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Oblast" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vodorovná" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Svislá" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Výchozí" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Zrušit" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Nápověda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Zvolená položka" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozice zvolené položky" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jednořádkový" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Víceřádkový" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Víceřádkový s formátováním" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Žádné" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vodorovný" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Svislý" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Oba" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plochý" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Vlevo nahoře" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Vlevo uprostřed" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Vlevo dole" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Vpravo nahoře" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Vpravo uprostřed" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Vpravo dole" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Vlevo nad" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Uprostřed nad" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Vpravo nad" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Vlevo pod" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Uprostřed pod" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Vpravo pod" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Uprostřed" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Zachovat" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Nahradit" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Skrýt všechno" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Zachovat poměr" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Přizpůsobit velikosti" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Zleva doprava" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Zprava doleva" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Použít nastavení nadřazeného objektu" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nikdy" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Při zaměření" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Vždy" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "K odstavci" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Jako znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ke stránce" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "K rámci" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ke znaku" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ke stránce" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "K buňce" diff -Nru libreoffice-7.3.4/translations/source/cs/fpicker/messages.po libreoffice-7.3.5/translations/source/cs/fpicker/messages.po --- libreoffice-7.3.4/translations/source/cs/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538496813.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Datum změny" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Otevřít" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Pře_hrát" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Název souboru:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Typ souboru:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Jen pro čtení" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Uložit s heslem" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatická přípona názvu souboru" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Upravit nastavení _filtru" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Zašifrovat klíčem GPG" diff -Nru libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-02-16 09:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1559927186.000000\n" @@ -2544,7 +2544,7 @@ "par_id3145801\n" "help.text" msgid "You cannot delete a sheet while Edit - Track Changes - Record is activated." -msgstr "Pokud je aktivní Úpravy - Sledování změn - Zaznamenávat, nelze mazat listy" +msgstr "Pokud je aktivní Úpravy - Sledování změn - Zaznamenávat, nelze mazat listy." #. FDyRG #: 02170000.xhp @@ -2580,7 +2580,7 @@ "par_id3154510\n" "help.text" msgid "Cancels the dialog. No delete is performed." -msgstr "Zavře dialog. Žádné odstranění se neprovede." +msgstr "Zavře dialogové okno. Žádné odstranění se neprovede." #. k9Be9 #: 02180000.xhp diff -Nru libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547111868.000000\n" #. 3u8hR @@ -30857,7 +30857,7 @@ "tit\n" "help.text" msgid "To Page" -msgstr "Na stránku" +msgstr "Ke stránce" #. gGh5R #: 05260100.xhp @@ -30866,7 +30866,7 @@ "hd_id3150278\n" "help.text" msgid "To Page" -msgstr "Na stránku" +msgstr "Ke stránce" #. CJAET #: 05260100.xhp diff -Nru libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-04-11 14:42+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547113478.000000\n" #. iharT @@ -17312,7 +17312,7 @@ "par_id3151176\n" "help.text" msgid "Click OK to close the dialog." -msgstr "Klepnutím na OK zavřete dialog." +msgstr "Klepnutím na OK zavřete dialogové okno." #. 6cEAQ #: linestyle_define.xhp diff -Nru libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/cs/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2021-11-26 20:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Stanislav Horáček \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565687607.000000\n" #. sZfWF @@ -17987,7 +17987,7 @@ "par_id981629211796563\n" "help.text" msgid "Page text area: the object is positioned considering the whole width available for text in the page, from the left to the right page margins." -msgstr "Textová oblast stránky: objekt se umístí vzhledem s celé šířce textu na stránce, tj. od levého do pravého okraje stránky." +msgstr "Textová oblast stránky: objekt se umístí vzhledem k celé šířce textu na stránce, tj. od levého do pravého okraje stránky." #. JuoS4 #: 05060100.xhp diff -Nru libreoffice-7.3.4/translations/source/cs/sc/messages.po libreoffice-7.3.5/translations/source/cs/sc/messages.po --- libreoffice-7.3.4/translations/source/cs/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565903887.000000\n" #. kBovX @@ -25256,97 +25256,97 @@ msgstr "~Zobrazit" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "O_brázek" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "O~brázek" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Kresba" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Tisk" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Tisk" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Formulář" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Formulář" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšíření" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšíření" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Nástroj_e" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Nástroj~e" @@ -25705,139 +25705,139 @@ msgstr "O_brázek" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Uspořádat" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Barva" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Mřížka" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Jazyk" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revize" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Ko_mentáře" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Porovnat" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Zobrazit" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Kr_esba" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Uprav_it" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Uspořádat" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Zobrazit" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Seskup_it" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Písmo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Zarovnání" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Zobrazit" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Vložit" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimédia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ráme_c" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Uspořádat" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Mřížka" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Zobrazit" diff -Nru libreoffice-7.3.4/translations/source/cs/sd/messages.po libreoffice-7.3.5/translations/source/cs/sd/messages.po --- libreoffice-7.3.4/translations/source/cs/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563224604.000000\n" #. WDjkB @@ -4174,109 +4174,109 @@ msgstr "T~abulka" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Obrázek" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "O~brázek" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Kresba" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Formulář" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Formulář" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Předlo_ha" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Předlo~ha" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšíření" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšíření" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nástroje" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Nástroje" @@ -7063,109 +7063,109 @@ msgstr "T~abulka" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Obrázek" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "O~brázek" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Kresba" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Formulář" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Formulář" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Předlo_ha" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Předlo~ha" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšíření" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšíření" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Nástroj_e" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Nástroj~e" diff -Nru libreoffice-7.3.4/translations/source/cs/sw/messages.po libreoffice-7.3.5/translations/source/cs/sw/messages.po --- libreoffice-7.3.4/translations/source/cs/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563223676.000000\n" #. v3oJv @@ -10506,19 +10506,19 @@ msgstr "Posune vybraný styl odstavce v rejstříku o jednu úroveň níže." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Styl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Styly" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Vytvoří položky rejstříku z určitých stylů odstavců." @@ -13962,37 +13962,37 @@ msgstr "Vyměnit databáze" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definovat" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Používané databáze" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Dostupné databáze" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Procházet..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Zobrazí dialog Otevřít soubor, kde můžete vybrat soubor s databází (*.odb). Vybraný soubor se přidá do seznamu dostupných databází." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Soubor databáze vyberete pomocí tlačítka Procházet." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Seznam aktuálně používaných databází." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Seznam databází registrovaných v %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Vyměnit databáze" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Databáze použité v dokumentu:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Změní zdroj dat pro aktuální dokument." @@ -20080,109 +20080,109 @@ msgstr "Použít _aktuální dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Použije aktuální dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Vytvořit _nový dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Vytvoří nový dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Začít s _existujícím dokumentem" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Vyberte stávající dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Začít ze ša_blony" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Vyberte šablonu na které chcete založit hromadně rozesílanou zprávu." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Začít z naposledy _uloženého počátečního dokumentu" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Založí nový dokument hromadné korespondence na již existujícím." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vyberte dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Procházet..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Vyhledejte dokument aplikace Writer, který chcete použít, a poté klepněte na Otevřít." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pro_cházet..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Otevře dialogové okno pro výběr šablony." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Zdroj dat aktuálního dokumentu není zaregistrován. Vyměňte databázi." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Vyměnit databázi..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Vyberte počáteční dokument pro hromadnou korespondenci" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Určete dokument, na kterém se založí hromadně rozesílaná zpráva." @@ -22325,49 +22325,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Možnosti" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Obtékání textu" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hypertextový odkaz" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ohraničení" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Oblast" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Průhlednost" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27063,7 +27063,7 @@ msgstr "Aktualizovat" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Zobrazí pro aktuální soubor statistiku." diff -Nru libreoffice-7.3.4/translations/source/cs/vcl/messages.po libreoffice-7.3.5/translations/source/cs/vcl/messages.po --- libreoffice-7.3.4/translations/source/cs/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cs/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1558934371.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Tisk více stránek na jeden list papíru." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Vlastní" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Vyberte, kolik stránek má být vytištěno na jeden list papíru." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Stránky:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Vyberte počet řádků." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "x" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Vyberte počet sloupců." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Okraj:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Vyberte mezeru mezi jednotlivými stránkami na každém listu papíru." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mezi stránkami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Vzdálenost:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Vyberte mezeru mezi tisknutými stránkami a okrajem papíru." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "k okraji listu" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Pořadí:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Zleva doprava, potom dolů" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Shora dolů, potom vpravo" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Shora dolů, potom vlevo" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Zprava doleva, potom dolů" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Zvolte pořadí tisku stránek." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Nakreslit ohraničení kolem každé stránky" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Zaškrtněte, pokud chcete mít kolem každé stránky ohraničení." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Příručka" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Vyberte, chcete-li dokument vytisknout ve formátu příručky." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Náhled řazení" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Změňte uspořádání stránek, které se budou tisknout na každý list papíru. Náhled ukáže, jak bude vypadat každý výsledný list papíru." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "D_alší" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Rozvržení stránky" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Obecné" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Vytiskne aktuální dokument, výběr nebo určené stránky. Také je možné nastavit volby tisku pro aktuální dokument." diff -Nru libreoffice-7.3.4/translations/source/cy/chart2/messages.po libreoffice-7.3.5/translations/source/cy/chart2/messages.po --- libreoffice-7.3.4/translations/source/cy/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-13 16:36+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" @@ -3602,7 +3602,7 @@ msgstr "Gosodwch nifer y llinellau ar gyfer y math siart Colofn a Llinell." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Dewiswch fath o siart sylfaenol." diff -Nru libreoffice-7.3.4/translations/source/cy/cui/messages.po libreoffice-7.3.5/translations/source/cy/cui/messages.po --- libreoffice-7.3.4/translations/source/cy/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-10 10:03+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565800847.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Awtomatig" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Cyferbynnedd Uchel" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Ocsigen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clasurol" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Seifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Awel" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Yn pennu'r arddull eicon ar gyfer eiconau mewn bariau offer a deialogau." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Arddull eicon:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Ychwanegwch ragor o themâu eicon trwy estyniad" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Arddull Eicon" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Mae angen ailgychwyn" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Defnyddio cyflymu c_aledwedd" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Yn cyrchu nodweddion caledwedd yr addasydd arddangos graffigol yn uniongyrchol i wella'r dangosydd sgrin." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Defnyddio _llyfnhau" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Pan fydd yn cael ei gefnogi, gallwch alluogi ac analluogi llyfnhau graffeg. Gyda llyfnhau wedi'i alluogi, mae dangos y mwyafrif o wrthrychau graffigol yn llyfnach a gyda llai o arteffactau." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Defnyddio Skia ar gyfer yr holl rendro" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Gorfodi rendro meddalwedd Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Mae angen ailgychwyn. Bydd galluogi hwn yn atal y defnydd o yrwyr graffigol." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Mae Skia wedi'i alluogi ar hyn o bryd." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Ar hyn o bryd mae Skia wedi ei analluogi." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Allbwn Graffigau" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Dangos _rhagolwg ffontiau" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Yn dangos enwau ffontiau dewisaday yn y ffont gyfatebol, er enghraifft, ffontiau yn y blwch Ffont ar y bar Fformatio." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Llyfnhau ffont sgrin" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Dewiswch i lyfnhau ymddangosiad sgrin testun." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_oddi wrth:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Rhowch y maint ffont lleiaf i'w llyfnhau." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Rhestrau Font" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Rhedeg Profion Graffigol" diff -Nru libreoffice-7.3.4/translations/source/cy/dbaccess/messages.po libreoffice-7.3.5/translations/source/cy/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/cy/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-19 08:37+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \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==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565695943.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Creu cronfa ddata _newydd" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Dewis i greu cronfa ddata newydd." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Cronfa ddata mewnosodedig:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Agor ffeil cronfa ddata _presennol" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Dewis i agor ffeil cronfa ddata o restr o ffeiliau a ddefnyddiwyd yn ddiweddar nei o ddeialog dewis ffeiliau." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Defnyddiwyd yn ddiweddar:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Dewiswch y ffeil cronfa ddata i'w hagor o'r rhestr o ffeiliau a ddefnyddiwyd yn ddiweddar. Cliciwch Gorffen i agor y ffeil ar unwaith ac i adael y dewin." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Agor" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Yn agor deialog dewis ffeiliau lle gallwch ddewis ffeil cronfa ddata. Cliciwch Agor neu Iawn yn y dialog dewis ffeiliau i agor y ffeil ar unwaith ac i adael y dewin." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Cysylltu i gronfa ddata p_resennol" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Dewiswch i greu dogfen gronfa ddata ar gyfer cysylltiad cronfa ddata sy'n bodoli eisoes." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Dewiswch y math o gronfa ddata ar gyfer y cysylltiad cronfa ddata bresennol." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "ar gael yn y gosodiad yma." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Mae'r Dewin Cronfa Ddata yn creu ffeil gronfa ddata sy'n cynnwys gwybodaeth am gronfa ddata." diff -Nru libreoffice-7.3.4/translations/source/cy/extensions/messages.po libreoffice-7.3.5/translations/source/cy/extensions/messages.po --- libreoffice-7.3.4/translations/source/cy/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Adnewyddu'r ffurflen" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Estyn" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Cofnod" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Aml ddarn" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testun" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Safonol (byr)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Safonol (byr YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Safonol (byr YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Safonol (hir)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/BB" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/BB" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "BB/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/BBBB" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/BBBB" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "BBBB/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "BB-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "BBBB-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Heb ei Ddewis" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Dewiswyd" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Heb ei Ddiffinio" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Pob cofnod" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Cofnodion byw" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Tudalen bresennol" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Na" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Iawn" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Ffurflen Rhiant" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_gwag" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_rhiant" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_hunan" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_brig" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Dim" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Sengl" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Aml" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Amrediad" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Llorweddol" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Fertigol" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Rhagosodiad" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Iawn" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Diddymu" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Cymorth" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Y cofnod dewiswyd" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Safle'r cofnod dewiswyd" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Llinell sengl" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Aml-linell" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Aml-linell gyda fformatio" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Dim" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Llorweddol" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Fertigol" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Y ddau" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Gwastad" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Brig chwith" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Canoli i'r chwith" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Gwaelod chwith" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Brig de" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Canoli i'r dde" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Gwaelod de" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Uwchlaw chwith" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Canoli uwchlaw" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Uwchlaw de" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Islaw chwith" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Canoli islaw" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Islaw de" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Canolwyd" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Diogelu" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Amnewid" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Cwympo" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Na" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Cadw Cymhareb" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ffitio i'r Maint" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Chwith i dde" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De i chwith" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Defnyddio gosodiadau gwrthrych uwcholyn" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Byth" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Wedi ffocysu" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Bob tro" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "I Baragraff" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Fel Nod" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "I Dudalen" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "I Ffrâm" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "I Nod" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "I Dudalen" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "I Gell" diff -Nru libreoffice-7.3.4/translations/source/cy/fpicker/messages.po libreoffice-7.3.5/translations/source/cy/fpicker/messages.po --- libreoffice-7.3.4/translations/source/cy/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-26 17:36+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" @@ -216,55 +216,55 @@ msgstr "Dyddiad newidwyd" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Agor" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Chwarae" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Enw ffeil:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Math o ffeil:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Darllen-yn-unig" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Cadw gyda chyfrinair" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Estyniad enw ffeil awtomatig" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Golygu gosodiadau'r hidl" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Amgryptio gydag allwedd GPG" diff -Nru libreoffice-7.3.4/translations/source/cy/sc/messages.po libreoffice-7.3.5/translations/source/cy/sc/messages.po --- libreoffice-7.3.4/translations/source/cy/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-11-23 14:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+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" @@ -1031,7 +1031,7 @@ #: sc/inc/globstr.hrc:179 msgctxt "STR_FILL_TAB" msgid "Fill Sheets" -msgstr "Dalenni llanw" +msgstr "Dalennau llanw" #. GzG9j #: sc/inc/globstr.hrc:180 @@ -1758,7 +1758,7 @@ #: sc/inc/globstr.hrc:306 msgctxt "STR_UNDO_SHOWTABS" msgid "Show Sheets" -msgstr "Dangos Dalenni" +msgstr "Dangos Dalennau" #. RpgBp #: sc/inc/globstr.hrc:307 @@ -1770,7 +1770,7 @@ #: sc/inc/globstr.hrc:308 msgctxt "STR_UNDO_HIDETABS" msgid "Hide sheets" -msgstr "Cuddio Dalenni" +msgstr "Cuddio Dalennau" #. dcXQA #: sc/inc/globstr.hrc:309 @@ -2048,7 +2048,7 @@ #: sc/inc/globstr.hrc:352 msgctxt "STR_TABREMOVE_ERROR" msgid "The sheets could not be deleted." -msgstr "Methu dileu'r dalenni." +msgstr "Methu dileu'r dalennau." #. SQGAE #: sc/inc/globstr.hrc:353 @@ -3539,7 +3539,7 @@ "The document contains more sheets than supported in the selected format.\n" "Additional sheets were not saved." msgstr "" -"Mae'r ddogfen yn cynnwys mwy o ddalenni na mae'r fformat hwn yn ei gynnal.\n" +"Mae'r ddogfen yn cynnwys mwy o ddalennau na mae'r fformat hwn yn ei gynnal.\n" "Nid yw'r colofnau ychwanegol wedi eu cadw." #. UbTaD @@ -16910,14 +16910,14 @@ #: sc/inc/strings.hrc:87 msgctxt "STR_DLG_SELECTTABLES_TITLE" msgid "Select Sheets" -msgstr "Dewis Dalenni" +msgstr "Dewis Dalennau" #. SEDS2 #. Select tables dialog listbox #: sc/inc/strings.hrc:89 msgctxt "STR_DLG_SELECTTABLES_LBNAME" msgid "~Selected sheets" -msgstr "~Dalenni dewiswyd" +msgstr "~Y dalennau a ddewiswyd" #. SfEhE #: sc/inc/strings.hrc:90 @@ -24081,7 +24081,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:393 msgctxt "insertsheet|extended_tip|tables" msgid "If you selected a file by using the Browse button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box." -msgstr "Os gwnaethoch ddewis ffeil trwy ddefnyddio'r botwm Pori, mae'r dalenni sydd ynddo yn cael eu dangos yn y blwch rhestr. Mae'r llwybr ffeiliau i'w weld o dan y blwch hwn. Dewiswch y ddalen i'w mewnosod o'r blwch rhestr." +msgstr "Os gwnaethoch ddewis ffeil trwy ddefnyddio'r botwm Pori, mae'r dalennau sydd ynddi'n cael eu dangos yn y blwch rhestr. Mae'r llwybr ffeiliau i'w gweld o dan y blwch hwn. Dewiswch y ddalen i'w mewnosod o'r blwch rhestr." #. mGqDq #: sc/uiconfig/scalc/ui/insertsheet.ui:412 @@ -25269,97 +25269,97 @@ msgstr "~Golwg" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Delwedd" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Delwedd" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Lluniadu" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Lluniadu" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Gwrthrych" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Gwrthrych" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Cyfrwng" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Cyfrwng" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Argraffu" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Argraffu" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "-Ffurflen" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Ffurflen" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_styniad" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~styniad" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Offer" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Offer" @@ -25718,139 +25718,139 @@ msgstr "_Delwedd" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Trefnu" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "L_liw" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grid" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Iaith" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Adolygu" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Nodiadau" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Cymharu" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Golwg" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Lluniadu" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Golygu" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Trefnu" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Golwg" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grŵ_p" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Ffont" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Aliniad" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Golwg" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Mewnosod" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Cyfrwng" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Ffrâm" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Trefnu" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grid" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Golwg" @@ -26705,7 +26705,7 @@ #: sc/uiconfig/scalc/ui/optdlg.ui:119 msgctxt "optdlg|label2" msgid "Sheets" -msgstr "Dalenni" +msgstr "Dalennau" #. JptgQ #: sc/uiconfig/scalc/ui/optdlg.ui:135 @@ -29843,7 +29843,7 @@ #: sc/uiconfig/scalc/ui/showsheetdialog.ui:132 msgctxt "showsheetdialog|label1" msgid "Hidden Sheets" -msgstr "Dalenni Cudd" +msgstr "Dalennau Cudd" #. 2NR97 #: sc/uiconfig/scalc/ui/showsheetdialog.ui:157 @@ -31475,7 +31475,7 @@ #: sc/uiconfig/scalc/ui/statisticsinfopage.ui:76 msgctxt "statisticsinfopage|label2" msgid "Sheets:" -msgstr "Dalenni:" +msgstr "Dalennau:" #. BnU73 #: sc/uiconfig/scalc/ui/statisticsinfopage.ui:103 diff -Nru libreoffice-7.3.4/translations/source/cy/sd/messages.po libreoffice-7.3.5/translations/source/cy/sd/messages.po --- libreoffice-7.3.4/translations/source/cy/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-04 19:38+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \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==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565695968.000000\n" #. WDjkB @@ -4177,109 +4177,109 @@ msgstr "~Tabl" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Delwedd" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Delwedd" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Lluniadu" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Lluniadu" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Gwrthrych" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Gwrthrych" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Cyfrwng" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Cyfrwng" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "-Ffurflen" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Ffurflen" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "~Prif" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Prif" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_styniad" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~styniad" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Offer" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Offer" @@ -7066,109 +7066,109 @@ msgstr "~Tabl" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Delwedd" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "~Delwedd" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Lluniadu" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Lluniadu" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Gwrthrych" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Gwrthrych" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Cyfrwng" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Cyfrwng" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "-Ffurflen" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Ffurflen" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "~Prif" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Prif" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_styniad" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~styniad" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Offer" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Offer" diff -Nru libreoffice-7.3.4/translations/source/cy/sw/messages.po libreoffice-7.3.5/translations/source/cy/sw/messages.po --- libreoffice-7.3.4/translations/source/cy/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-04 19:39+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \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==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565695976.000000\n" #. v3oJv @@ -10527,19 +10527,19 @@ msgstr "Symud yr arddull paragraff a ddewiswyd i lawr un lefel yn yr hierarchaeth mynegai." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Arddull" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Arddulliau" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Yn creu cofnodion mynegai o arddulliau paragraff penodol." @@ -13983,37 +13983,37 @@ msgstr "Cyfnewid Cronfeydd Data" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Diffinio" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Cronfeydd Data ar waith" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Cronfeydd _Data ar Gael" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Pori..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Yn agor deialog ffeil agored i ddewis ffeil cronfa ddata (* .odb). Bydd y y ffeil a ddewiswyd yn cael ei hychwanegu at y rhestr Cronfeydd Data sydd ar Gael." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14023,31 +14023,31 @@ "Defnyddiwch y botwm pori i ddewis ffeil cronfa ddata." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Yn rhestru'r cronfeydd data sy'n cael eu defnyddio ar hyn o bryd." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Yn rhestru'r cronfeydd data sydd wedi'u cofrestru yn %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Cyfnewid Cronfeydd Data" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Cronfa Ddata cysylltiedig â'r ddogfen:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Newid y ffynonellau data ar gyfer y ddogfen gyfredol." @@ -20101,109 +20101,109 @@ msgstr "Defnyddio'r _ddogfen gyfredol" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Yn defnyddio'r ddogfen Write gyfredol fel sylfaen ar gyfer y ddogfen cyfuno post." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Creu dogfen _newydd" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Yn creu dogfen Write newydd i'w defnyddio ar gyfer cyfuno post." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Cychwyn o _ddogfen newydd" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Dewiswch ddogfen Writer bresennol i'w defnyddio fel sylfaen ar gyfer y ddogfen cyfuno post." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Cychwyn o _dempled" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Dewiswch y templed rydych am greu eich dogfen cyfuno post gydag ef." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "C_ychwyn o ddogfen gychwyn cadwyd yn ddiweddar" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Defnyddiwch ddogfen cyfuno post sy'n bodoli eisoes fel sylfaen ar gyfer dogfen cyfuno post newydd." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Dewis y ddogfen" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Pori..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Lleolwch y ddogfen Write rydych am ei defnyddio, ac yna cliciwch Agor." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Pori..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Yn agor deialog dewisydd templed." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Nid yw ffynhonnell data'r ddogfen gyfredol wedi ei chofrestri. Cyfnewidiwch y gronfa ddata." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Cyfnewid Cronfa Ddata..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Dewis Dogfen Gychwynnol ar gyfer Cyfuno Post" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Pennwch y ddogfen rydych am ei defnyddio fel sylfaen ar gyfer y ddogfen cyfuno post." @@ -22346,49 +22346,49 @@ msgstr "Gwrthrych" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Math" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Dewisiadau" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Amlapio" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Dolen" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borderi" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Ardal" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Tryloywder" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27084,7 +27084,7 @@ msgstr "Diweddaru" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Yn dangos ystadegau ar gyfer y ffeil gyfredol." diff -Nru libreoffice-7.3.4/translations/source/cy/vcl/messages.po libreoffice-7.3.5/translations/source/cy/vcl/messages.po --- libreoffice-7.3.4/translations/source/cy/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/cy/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-13 16:36+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" @@ -2324,169 +2324,169 @@ msgstr "Argraffu tudalennau lluosog fesul dalen o bapur." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Cyfaddasu" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Dewiswch faint o dudalennau i'w hargraffu fesul dalen o bapur." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Tudalennau:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Dewiswch nifer y rhesi." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "gan" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Dewiswch nifer y colofnau." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Ymyl:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Dewiswch ymyl rhwng tudalennau unigol ar bob dalen o bapur." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "rhwng tudalennau" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Pellter:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Dewiswch ymyl rhwng y tudalennau argraffedig ac ymyl papur." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "i forder y ddalen" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Trefn" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Chwith i'r dde, ac yna i lawr" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Brig i'r gwaelod, yna i'r dde" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Brig i'r gwaelod, yna i'r chwith" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De i'r chwith, yna i lawr" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Dewiswch y drefn y bydd tudalennau'n cael eu hargraffu." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Gosod border o amgylch pob tudalen" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Gwiriwch i dynnu border o amgylch pob tudalen." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Llyfryn" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Dewis i argraffu'r ddogfen yn fformat llyfryn." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Rhagolwg coladu" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Newid trefn y tudalennau i'w hargraffu ar bob dalen o bapur. Mae'r rhagolwg yn dangos sut y bydd pob dalen olaf o bapur yn edrych." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "R_hagor" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Cynllun Tudalen" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Cyffredinol" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Yn argraffu'r ddogfen gyfredol, y detholiad, neu'r tudalennau rydych chi'n eu nodi. Gallwch hefyd osod y dewisidau argraffu ar gyfer y ddogfen gyfredol." diff -Nru libreoffice-7.3.4/translations/source/da/chart2/messages.po libreoffice-7.3.5/translations/source/da/chart2/messages.po --- libreoffice-7.3.4/translations/source/da/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-22 00:39+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: Danish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547493259.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Definer antal kurver for typen søjle- og kurvediagram." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Vælg en basal diagramtype." diff -Nru libreoffice-7.3.4/translations/source/da/cui/messages.po libreoffice-7.3.5/translations/source/da/cui/messages.po --- libreoffice-7.3.4/translations/source/da/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562743938.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisk" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Høj kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassisk" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Specificerer ikonstil for ikoner i værktøjslinje og dialoger." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikonstil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Tilføj flere ikontemaer med udvidelser" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikontypografi" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Kræver genstart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Brug hardwareacceleration" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Du kan tilgå hardwarefunktionerne for dit grafikkort for at forbedre skærmfremvisningen." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Brug anti-aliasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Når det er understøttet, kan du aktivere og deaktivere anti-aliasing af grafik. Når anti-aliasing er aktiveret, vil de fleste grafiske objekter fremstå glattere." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Brug Skia til al tegning" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Gennemtving Skia software gengivelse" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Genstart nødvendig, Aktivering af dette vil forhindre brug af grafikdrivere." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia er aktiveret i øjeblikket." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia er deaktiveret i øjeblikket." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafikoutput" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "_Forhåndsvisning af skrifttyper" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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å tilgængelige skrifttyper i den tilsvarende skrifttype, for eksempel skrifttyper i feltet Skrifttype på værktøjslinjen Formatering." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Trim skærmskrifttyper" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Marker for at udjævne tekstens udseende på skærmen." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_fra:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Skriv den mindste skriftstørrelse, du vil bruge antialiasing på." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Skrifttypelister" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Kør grafik-tests." diff -Nru libreoffice-7.3.4/translations/source/da/dbaccess/messages.po libreoffice-7.3.5/translations/source/da/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/da/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-22 00:39+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: Danish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562523246.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Opret en ny database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Vælg for at oprette en ny database." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Indlejret database:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Åbn en eksisterende databasefil" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Vælg for at åbne en databasefil fra en liste over nyligt brugte filer eller fra en dialog til filvalg." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Senest brugte:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Vælg en databasefil for at åbne en liste over nyligt brugte filer. Klik på Afslut for at åbne filen udmiddelbart og gå ud af guiden." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Åbn" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Åbner en filvalgsdialog, hvor du kan vælge en databasefil. Klik på Åbn eller OK i filvalgsdialogen for at åbne filen umiddelbart og gå ud af guiden." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Forbind til en eksisterende database" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Vælg for at oprette et databasedokument til en eksisterende databaseforbindelse." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Vælg en databasetype til en eksisterende databaseforbindelse." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Det er ikke muligt at oprette en ny database, da hverken HSQLDB eller Firebird er tilgængelige i denne opsætning." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Database-guiden opretter en databasefil, der indeholder information om en database." diff -Nru libreoffice-7.3.4/translations/source/da/extensions/messages.po libreoffice-7.3.5/translations/source/da/extensions/messages.po --- libreoffice-7.3.4/translations/source/da/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555775202.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Opdater formular" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Flerdelt" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kort YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kort YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "13:45" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "13:45:00" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ikke markeret" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Valgt" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ikke defineret" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle dataposter" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiv datapost" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuel side" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nej" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Overordnet formular" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ingen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkelt" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Flere" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Område" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vandret" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Lodret" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Ok" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Annuller" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hjælp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Det valgte element" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Placering af det valgte element" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enkeltlinje" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Flerlinjet" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Flerlinjet med formatering" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ingen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vandret" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Lodret" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Begge" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flad" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Venstre top" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Venstre midte" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Venstre bund" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Højre top" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Højre midte" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Højre bund" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Over til venstre" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Over centreret" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Over til højre" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Under til venstre" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Under centreret" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Under til højre" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centreret" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Bevar" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Erstat" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Fold sammen" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nej" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Behold proportion" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Tilpas til størrelse" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Venstre mod højre" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Højre mod venstre" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Brug indstillinger fra det overordnede objekt" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Aldrig" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Når i fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Altid" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Til afsnit" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Som tegn" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Til ramme" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Til tegn" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Til celle" diff -Nru libreoffice-7.3.4/translations/source/da/fpicker/messages.po libreoffice-7.3.5/translations/source/da/fpicker/messages.po --- libreoffice-7.3.4/translations/source/da/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-06 20:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" @@ -216,55 +216,55 @@ msgstr "Ændringsdato" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Åbn" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Spil" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fil_navn:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Fil_type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Skrivebeskyttet" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Gem med adgangskode" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatisk filendelse" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Rediger _filterindstillinger" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Krypter med GPG-nøgle" diff -Nru libreoffice-7.3.4/translations/source/da/sc/messages.po libreoffice-7.3.5/translations/source/da/sc/messages.po --- libreoffice-7.3.4/translations/source/da/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-22 00:39+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: Danish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562523528.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Vis" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Bill_ede" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Bille~de" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Draw" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Medie" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Medie" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Udskriv" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Udskriv" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Udvidelse" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Udvidelse" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Funktioner" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Fun~ktioner" @@ -25702,139 +25702,139 @@ msgstr "Bill_ede" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Arranger" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Farve" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Gitter" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Sprog" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Gennemsyn" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Kommentarer" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Sammenlign" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Vis" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Tegne" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Redigér" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Arranger" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Vis" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gruppe" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Skrifttype" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Justering" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Vis" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Indsæt" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medie" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Ramme" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Arranger" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Gitter" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Vis" diff -Nru libreoffice-7.3.4/translations/source/da/sd/messages.po libreoffice-7.3.5/translations/source/da/sd/messages.po --- libreoffice-7.3.4/translations/source/da/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-22 00:39+0000\n" "Last-Translator: Jesper Hertel \n" "Language-Team: Danish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562822671.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Billede" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Bille~de" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Tegne" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Tegne" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medie" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Medie" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Master" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Udvidelse" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Udvidelse" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Funktioner" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Fun~ktioner" @@ -7062,109 +7062,109 @@ msgstr "~Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Billede" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Bille~de" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Tegn" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Medie" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Medie" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Master" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Udvidelse" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Udvidelse" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Funktioner" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Fun~ktioner" diff -Nru libreoffice-7.3.4/translations/source/da/sw/messages.po libreoffice-7.3.5/translations/source/da/sw/messages.po --- libreoffice-7.3.4/translations/source/da/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562523751.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Flytter den valgte afsnitstypografi et niveau ned i indekshierarkiet." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Typografi" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Typografier" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Opretter indekselementer ud fra specifikke afsnitstypografier." @@ -13955,37 +13955,37 @@ msgstr "Udskift databaser" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definer" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Anvendte databaser" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Tilgængelige databaser" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Gennemse..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Åbner en filåbningsdialog til at vælge en database fil (*.odb). Den valgte fil bliver føjet til listen over tilgængelige databaser." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Brug knappen Gennemse for at vælge en databasefil." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Viser databaserne, der for øjeblikket er i brug." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lister databaserne, som er registreret i %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Udskift databaser" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database tilknyttet til dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Skift datakilderne for det aktuelle dokument." @@ -20073,109 +20073,109 @@ msgstr "Benyt det aktuelle dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Bruger det aktuelle Writer-dokument som basis for brevfletningsdokumentet." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Opret et nyt dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Opretter et nyt Writer-dokument til brug for brevfletningen." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Begynd med et eksisterende dokument" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Vælg et eksisterende Writer-dokument til brug som basis for brevfletningsdokumentet." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Begynd med en skabelon" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Vælg den skabelon, som du vil oprette dit brevfletningsdokument med." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Begynd med et netop gemt startdokument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Brug et eksisterende brevfletningsdokument som basis for et nyt brevfletningsdokument." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vælg dokumentet." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Gennemse..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Lokaliser det Writer-dokument du vil bruge, og klik Åbn." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Gennemse..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Åbner en skabelonvælger-dialog." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Det aktuelle dokuments datakilde er ikke registreret. Skift venligst database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Skift database…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Vælg startdokument for brevfletning" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Angiv det dokument som du vil bruge som basis for brevfletningsdokumentet." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Indstillinger" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ombryd" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kanter" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Område" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Gennemsigtighed" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Opdater" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Viser statistik for den aktuelle fil." diff -Nru libreoffice-7.3.4/translations/source/da/vcl/messages.po libreoffice-7.3.5/translations/source/da/vcl/messages.po --- libreoffice-7.3.4/translations/source/da/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/da/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-07 05:14+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" @@ -2324,169 +2324,169 @@ msgstr "Udskriv flere sider på hvert ark papir." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Brugerdefineret" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Vælg hvor mange sider der skal udskrives på hvert ark papir." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sider:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Vælg antal rækker." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "med" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Vælg antal kolonner." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margen:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Vælg marginen mellem individuelle sider på hvert ark papir." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mellem sider" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Afstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Vælg marginen mellem udskrivningsområdet og papirets kant." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "til arkkant" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Rækkefølge:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Venstre mod højre, så nedad" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Top til bund, så mod højre" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Top til bund, så mod venstre" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Højre mod venstre, så ned" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Vælg den rækkefølge som siderne skal udskrives i." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Tegn en kant omkring hver side" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Marker for at tegne en kant rundt om hver side." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Vælg at udskrive dokumentet i brochureformat." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Forhåndvisning af samling" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Skift om på opstillingen af de sider, der skal trykkes på hvert ark papir. Forhåndsvisningen viser, hvordan hvert ark papir vil se ud til sidst." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Flere" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sidelayout" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Generelt" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Udskriver det aktuelle dokument, markeringen eller de sider, som du angiver. Du kan også indstille udskriftsindstillingerne for det aktuelle dokument." diff -Nru libreoffice-7.3.4/translations/source/de/chart2/messages.po libreoffice-7.3.5/translations/source/de/chart2/messages.po --- libreoffice-7.3.4/translations/source/de/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-11 14:07+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547564210.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Legt die Linienanzahl für Säulen- und Liniendiagramme fest." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Wählen Sie einen grundlegenden Diagrammtyp aus." diff -Nru libreoffice-7.3.4/translations/source/de/cui/messages.po libreoffice-7.3.5/translations/source/de/cui/messages.po --- libreoffice-7.3.4/translations/source/de/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566197858.000000\n" #. GyY9M @@ -8297,7 +8297,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:137 msgctxt "editdictionarydialog|lang_label" msgid "_Language:" -msgstr "_Sprache:" +msgstr "S_prache:" #. mE3Lo #: cui/uiconfig/ui/editdictionarydialog.ui:185 @@ -11236,7 +11236,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:62 msgctxt "imagetabpage|BTN_IMPORT" msgid "Add / Import" -msgstr "Hinzufügen / Importieren" +msgstr "Hinzufügen / Importieren…" #. HDX5z #: cui/uiconfig/ui/imagetabpage.ui:68 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisch" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Hoher Kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassisch" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Wählen Sie das Symbolthema für die Symbole in den Symbolleisten und Dialogen aus." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Sy_mbolstil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Fügen Sie weitere Symbolthemen über Extensions hinzu" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Symbolstil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Erfordert Neustart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Hard_warebeschleunigung verwenden" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Diese Option greift zur Verbesserung der Darstellung auf dem Bildschirm direkt auf die Hardwareleistungsmerkmale der Grafikkarte zu." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "_Kantenglättung verwenden" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Wenn es unterstützt wird, können Sie Antialiasing für Objekte aktivieren oder deaktivieren. Wenn Antialiasing aktiviert ist, erscheint die Ansicht der meisten grafischen Objekte glatter und mit weniger Artefakten." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia für das Rendern verwenden" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Rendern mittels Skia-Software erzwingen" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Neustart erforderlich. Bei Aktivierung wird die Verwendung von Grafiktreibern verhindert." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia ist gegenwärtig aktiviert." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia ist gegenwärtig deaktiviert." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafikausgabe" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Schriftarten_vorschau aktivieren" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Zeigt die Namen der auswählbaren Schriftarten in der entsprechenden Schriftart an, beispielsweise im Feld \"Schrift\" in der Symbolleiste Format." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Bildschirmschriftarten _glätten" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Lässt die Textdarstellung auf dem Bildschirm glatter aussehen." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "a_b:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Geben Sie die kleinste Schriftgröße ein, auf welche die Kantenglättung angewendet werden soll." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Liste der Schriftarten" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafiktests ausführen" @@ -20152,7 +20128,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:443 msgctxt "spellingdialog|change" msgid "Co_rrect" -msgstr "Ä_ndern" +msgstr "Än_dern" #. m7FFp #: cui/uiconfig/ui/spellingdialog.ui:452 @@ -20176,7 +20152,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:483 msgctxt "spellingdialog|autocorrect" msgid "Add to _AutoCorrect" -msgstr "Zur _AutoKorrektur hinzufügen" +msgstr "Zur Auto_Korrektur hinzufügen" #. xpvWk #: cui/uiconfig/ui/spellingdialog.ui:487 diff -Nru libreoffice-7.3.4/translations/source/de/dbaccess/messages.po libreoffice-7.3.5/translations/source/de/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/de/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562385716.000000\n" #. BiN6g @@ -1977,7 +1977,7 @@ #: dbaccess/inc/strings.hrc:347 msgctxt "STR_WIZ_TYPE_SELECT_TITEL" msgid "Type formatting" -msgstr "Typformatierungen" +msgstr "Typformatierung" #. C5Zs4 #: dbaccess/inc/strings.hrc:348 @@ -2937,7 +2937,7 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:162 msgctxt "copytablepage|infoLabel" msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard." -msgstr "Existierende Datenfelder können beim Formatierungsschritt Typ (dritte Seite) des Assistenten als Primärschlüssel gesetzt werden." +msgstr "Existierende Datenfelder können beim Schritt Typformatierung (dritte Seite) des Assistenten als Primärschlüssel gesetzt werden." #. LqAEB #: dbaccess/uiconfig/ui/copytablepage.ui:179 @@ -3399,73 +3399,73 @@ msgstr "Eine n_eue Datenbank erstellen" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Wählen Sie aus, um eine neue Datenbank zu erstellen." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Eingebettete Datenbank:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "_Bestehende Datenbankdatei öffnen" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Wählen Sie aus, um eine Datenbankdatei aus der Liste kürzlich verwendeter Dateien oder aus dem Dialog Dateiauswahl auszuwählen." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Zu_letzt benutzt:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Wählen Sie aus, um eine Datenbankdatei aus der Liste kürzlich verwendeter Dateien zu öffnen. Klicken Sie auf »Fertigstellen«, um die Datei sofort zu öffnen und den Assistenten zu beenden." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Öffnen" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Öffnet den Dialog „Dateiauswahl“, in dem Sie eine Datenbankdatei auswählen können. Klicken Sie im Dialog „Dateiauswahl“ auf »Öffnen« oder »OK«, um die Datei sofort zu Öffnen und den Assistenten zu beenden." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "_Verbindung zu einer bestehenden Datenbank herstellen" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Wählen Sie aus, um ein Datenbankdokument zu einer bestehende Verbindung zu erstellen." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Wählen Sie den Datenbanktyp für eine bestehende Datenbankverbindung aus." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3475,7 +3475,7 @@ "da weder HSQLDB noch Firebird auf diesem System verfügbar ist." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Der Datenbank-Assisent erstellt eine Datenbankdatei, die Informationen über die Datenbank enthält." @@ -4504,7 +4504,7 @@ #: dbaccess/uiconfig/ui/saveindexdialog.ui:7 msgctxt "saveindexdialog|SaveIndexDialog" msgid "Exit Index Design" -msgstr "Index-Entwurf verlassen" +msgstr "Indexentwurf verlassen" #. k9pCR #: dbaccess/uiconfig/ui/saveindexdialog.ui:13 @@ -5056,13 +5056,13 @@ #: dbaccess/uiconfig/ui/textpage.ui:164 msgctxt "textpage|fieldlabel" msgid "Field separator:" -msgstr "Feldtrenner:" +msgstr "Feldtrennzeichen:" #. EBzXo #: dbaccess/uiconfig/ui/textpage.ui:178 msgctxt "textpage|textlabel" msgid "Text separator:" -msgstr "Texttrenner:" +msgstr "Texttrennzeichen:" #. Va37w #: dbaccess/uiconfig/ui/textpage.ui:192 diff -Nru libreoffice-7.3.4/translations/source/de/desktop/messages.po libreoffice-7.3.5/translations/source/de/desktop/messages.po --- libreoffice-7.3.4/translations/source/de/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-28 03:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1558846552.000000\n" #. v2iwK @@ -278,7 +278,7 @@ msgstr "" "%PRODUCTNAME wurde auf eine neue Version aktualisiert. Einige für alle Anwender installierte %PRODUCTNAME-Extensions sind mit dieser Version nicht kompatibel und müssen aktualisiert werden, bevor %PRODUCTNAME gestartet werden kann.\n" "\n" -"Um für alle Anwender installierte Extensions zu aktualisieren, werden Administratorrechte benötigt. Kontaktieren Sie ihren Administrator, um folgende Extensions zu aktualisieren:" +"Um für alle Anwender installierte Extensions zu aktualisieren, werden Administratorrechte benötigt. Kontaktieren Sie Ihren Administrator, um folgende Extensions zu aktualisieren:" #. mQAQ9 #: desktop/inc/strings.hrc:77 @@ -566,7 +566,7 @@ #: desktop/inc/strings.hrc:148 msgctxt "RID_DLG_UPDATE_NODESCRIPTION" msgid "No more details are available for this update." -msgstr "Es ist keine Beschreibung für diese Extension verfügbar." +msgstr "Für dieses Update sind keine weiteren Informationen verfügbar." #. NECjC #: desktop/inc/strings.hrc:149 diff -Nru libreoffice-7.3.4/translations/source/de/dictionaries/be_BY.po libreoffice-7.3.5/translations/source/de/dictionaries/be_BY.po --- libreoffice-7.3.4/translations/source/de/dictionaries/be_BY.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/dictionaries/be_BY.po 2022-07-15 19:12:51.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-09-27 19:08+0200\n" -"PO-Revision-Date: 2021-10-17 05:31+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1369349948.000000\n" #. ASUni @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Belarusian spelling dictionary and hyphenation: official orthography 2008" -msgstr "Weißrussisches Wörterbuch für Rechtschreibprüfung (offizielle Rechtschreibung 2008) und Silbentrennung" +msgstr "Belarussisches Wörterbuch für Rechtschreibprüfung (offizielle Rechtschreibung 2008) und Silbentrennung" diff -Nru libreoffice-7.3.4/translations/source/de/extensions/messages.po libreoffice-7.3.5/translations/source/de/extensions/messages.po --- libreoffice-7.3.4/translations/source/de/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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: Weblate 4.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555474560.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formular aktualisieren" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Mehrteilig" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (kurz)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kurz JJ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kurz JJJJ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "TT/MM/JJ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/TT/JJ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "JJ/MM/TT" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "TT/MM/JJJJ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/TT/JJJJ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "JJJJ/MM/TT" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "JJ-MM-TT" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "JJJJ-MM-TT" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nicht ausgewählt" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Ausgewählt" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nicht definiert" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle Datensätze" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktueller Datensatz" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuelle Seite" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nein" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Übergeordnetes Formular" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Keine" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Einfach" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Mehrfach" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Bereich" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Abbrechen" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hilfe" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Der ausgewählte Eintrag" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Position des ausgewählten Eintrags" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Einzeilig" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Mehrzeilig" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Mehrzeilig mit Formatierung" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Keine" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Beide" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flach" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Links oben" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Links mittig" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Links unten" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Rechts oben" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Rechts mittig" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Rechts unten" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Oben links" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Oben zentriert" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Oben rechts" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Unten links" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Unten zentriert" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Unten rechts" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Zentriert" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Erhalten" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ersetzen" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Zusammenfassen" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nein" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Größenverhältnis beibehalten" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Automatische Größe" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Links-nach-Rechts" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Rechts-nach-Links" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Einstellungen des übergeordneten Objekts verwenden" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nie" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Wenn ausgewählt" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Immer" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Am Absatz" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Als Zeichen" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "An der Seite" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Am Rahmen" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Am Zeichen" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "An der Seite" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "An der Zelle" @@ -4444,7 +4432,7 @@ #: extensions/uiconfig/spropctrlr/ui/taborder.ui:18 msgctxt "taborder|TabOrderDialog" msgid "Tab Order" -msgstr "Register-Reihenfolge" +msgstr "Tabulatorreihenfolge" #. bdEtz #: extensions/uiconfig/spropctrlr/ui/taborder.ui:147 diff -Nru libreoffice-7.3.4/translations/source/de/filter/messages.po libreoffice-7.3.5/translations/source/de/filter/messages.po --- libreoffice-7.3.4/translations/source/de/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-02-28 03:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562385794.000000\n" #. 5AQgJ @@ -682,7 +682,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:748 msgctxt "pdfgeneralpage|pdfua" msgid "Universal Accessibilit_y (PDF/UA)" -msgstr "Barrierefreiheit (PDF/UA)" +msgstr "Universelle Zugänglichkeit (PDF/UA)" #. 4B3FD #: filter/uiconfig/ui/pdfgeneralpage.ui:752 diff -Nru libreoffice-7.3.4/translations/source/de/fpicker/messages.po libreoffice-7.3.5/translations/source/de/fpicker/messages.po --- libreoffice-7.3.4/translations/source/de/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-25 06:37+0000\n" "Last-Translator: Mister Update \n" "Language-Team: German \n" @@ -216,55 +216,55 @@ msgstr "Letzte Änderung" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Ö_ffnen" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "~Wiedergeben" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Datei_name:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Datei_typ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Schreibgeschützt" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Mit Kennwort speichern" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Automatische Datei_endung" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Filtereinstellungen _bearbeiten" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Mit GPG-Schlüssel verschlüsseln" diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-01-06 07:38+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: David Schledewitz \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561087588.000000\n" #. WcTKB @@ -734,7 +734,7 @@ "bas_id131630537785605\n" "help.text" msgid "' Creates the UNO struct that will store the new line format" -msgstr "" +msgstr "' Erstellt die UNO-Struktur, die das neue Zeilenformat speichern wird" #. qpADJ #: calc_borders.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-01-02 15:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566103429.000000\n" #. naSFZ @@ -491,7 +491,7 @@ "N0527\n" "help.text" msgid "Listening to Document Events" -msgstr "" +msgstr "Dokumentereignisse überwachen" #. 9kSGW #: python_document_events.xhp @@ -500,7 +500,7 @@ "par_id641630582314861\n" "help.text" msgid "Listening to document events can help in the following situations:" -msgstr "" +msgstr "Die Überwachung von Dokumentereignissen kann in folgenden Situationen hilfreich sein:" #. NEQoZ #: python_document_events.xhp @@ -509,7 +509,7 @@ "par_id431630582396327\n" "help.text" msgid "Identify a new document at opening time, as opposed to existing ones, and perform a dedicated setup." -msgstr "" +msgstr "Identifiziert ein neues Dokument zum Zeitpunkt des Öffnens, im Gegensatz zu existierenden, und führt eine entsprechende Konfiguration durch." #. Tror9 #: python_document_events.xhp @@ -527,7 +527,7 @@ "par_id631630582394790\n" "help.text" msgid "Recalculate table of contents, indexes or table entries of a Writer document when document is going to be closed" -msgstr "" +msgstr "Aktualisiert das Inhaltsverzeichnisses, die Indexe oder die Tabelleneinträge eines Writer-Dokuments, wenn das Dokument geschlossen werden soll" #. fCNvj #: python_document_events.xhp @@ -536,7 +536,7 @@ "par_id601630582398998\n" "help.text" msgid "Import math Python packages before opening a Calc document. Release these packages when the document closes." -msgstr "" +msgstr "Importiert mathematische Python-Pakete vor dem Öffnen eines Calc-Dokuments. Gibt diese Pakete frei, wenn das Dokument geschlossen wird." #. bXprs #: python_document_events.xhp @@ -554,7 +554,7 @@ "N0529\n" "help.text" msgid "Monitoring Document Events" -msgstr "" +msgstr "Überwachung von Dokumentenereignissen" #. VwSwW #: python_document_events.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -10103,7 +10103,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "Boolesch oder ganze Zahl" +msgstr "Boolesche oder ganze Zahl" #. 7GZGS #: sf_dialogcontrol.xhp @@ -19994,7 +19994,7 @@ "par_id11636721653208\n" "help.text" msgid "tooltip: Text to be displayed as tooltip." -msgstr "tooltip: Text der als Infotext angezeigt werden soll." +msgstr "tooltip: Text, der als Infotext angezeigt werden soll." #. NEE76 #: sf_popupmenu.xhp @@ -20039,7 +20039,7 @@ "par_id11636721653118\n" "help.text" msgid "tooltip: Text to be displayed as tooltip." -msgstr "tooltip: Text der als Infofeld angezeigt werden soll." +msgstr "tooltip: Text, der als Infofeld angezeigt werden soll." #. dJTZs #: sf_popupmenu.xhp @@ -21128,7 +21128,7 @@ "tit\n" "help.text" msgid "ScriptForge.String service (SF_String)" -msgstr "" +msgstr "Dienst ScriptForge.String (SF_String)" #. ZhvDP #: sf_string.xhp @@ -21137,7 +21137,7 @@ "hd_id521580038927003\n" "help.text" msgid "ScriptForge.String service" -msgstr "" +msgstr "Dienst ScriptForge.String" #. yaisH #: sf_string.xhp @@ -21146,7 +21146,7 @@ "par_id351579602570526\n" "help.text" msgid "The String service provides a collection of methods for string processing. These methods can be used to:" -msgstr "" +msgstr "Der Dienst String stellt eine Sammlung von Methoden zur Verarbeitung von Zeichenfolgen bereit. Diese Methoden können verwendet werden, um:" #. oNvbV #: sf_string.xhp @@ -21155,7 +21155,7 @@ "par_id611611952070366\n" "help.text" msgid "Validate the contents of strings" -msgstr "" +msgstr "Überprüfen des Inhalts von Zeichenfolgen" #. UmFAv #: sf_string.xhp @@ -21164,7 +21164,7 @@ "par_id611611952070376\n" "help.text" msgid "Format strings by trimming, justifying or wrapping their contents" -msgstr "" +msgstr "Formatieren von Zeichenfolgen, indem Sie ihren Inhalt kürzen, ausrichten oder umbrechen" #. EZKAi #: sf_string.xhp @@ -21173,7 +21173,7 @@ "par_id611611952070367\n" "help.text" msgid "Use regular expressions to search and replace substrings" -msgstr "" +msgstr "Verwenden Sie reguläre Ausdrücke, um Teilzeichenfolgen zu suchen und zu ersetzen" #. D2qPU #: sf_string.xhp @@ -21182,7 +21182,7 @@ "par_id611611952070368\n" "help.text" msgid "Apply hash algorithms on strings, etc." -msgstr "" +msgstr "Anwenden von Hash-Algorithmen auf Zeichenfolgen, …" #. Nd4es #: sf_string.xhp @@ -21191,7 +21191,7 @@ "hd_id961579603699855\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definitionen" #. dQjPv #: sf_string.xhp @@ -21200,7 +21200,7 @@ "hd_id441579603838777\n" "help.text" msgid "Line breaks" -msgstr "" +msgstr "Zeilenumbrüche" #. ePyj2 #: sf_string.xhp @@ -21209,7 +21209,7 @@ "par_id791611946942340\n" "help.text" msgid "The String service recognizes the following line breaks:" -msgstr "" +msgstr "Der Dienst String erkennt die folgenden Zeilenumbrüche:" #. o2TiZ #: sf_string.xhp @@ -21218,7 +21218,7 @@ "par_id151611947117831\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolischer Name" #. fEbm9 #: sf_string.xhp @@ -21227,7 +21227,7 @@ "par_id721611947117831\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-Nummer" #. yqVHd #: sf_string.xhp @@ -21236,7 +21236,7 @@ "par_id761611947117831\n" "help.text" msgid "Line feed
    Vertical tab
    Carriage return
    Line feed + Carriage return
    File separator
    Group separator
    Record separator
    Next line
    Line separator
    Paragraph separator" -msgstr "" +msgstr "Zeilenvorschub
    Vertikaler Tabulator
    Wagenrücklauf
    Zeilenvorschub + Wagenrücklauf
    Dateitrenner
    Gruppentrenner
    Datensatztrenner
    Nächste Zeile
    Zeilentrenner
    Absatztrenner" #. WCvgW #: sf_string.xhp @@ -21245,7 +21245,7 @@ "hd_id161579604225813\n" "help.text" msgid "Whitespaces" -msgstr "" +msgstr "Leerzeichen" #. mFfbq #: sf_string.xhp @@ -21254,7 +21254,7 @@ "par_id401611948279056\n" "help.text" msgid "The String service recognizes the following whitespaces:" -msgstr "" +msgstr "Der Dienst String erkennt die folgenden Leerzeichen:" #. U3GSy #: sf_string.xhp @@ -21263,7 +21263,7 @@ "par_id151611947117893\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolischer Name" #. ZsSFF #: sf_string.xhp @@ -21272,7 +21272,7 @@ "par_id721611947117855\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-Nummer" #. TXAFP #: sf_string.xhp @@ -21281,7 +21281,7 @@ "par_id761611947117835\n" "help.text" msgid "Space
    Horizontal tab
    Line feed
    Vertical tab
    Form feed
    Carriage return
    Next line
    No-break space
    Line separator
    Paragraph separator" -msgstr "" +msgstr "Leerzeichen
    Horizontaler Tabulator
    Zeilenvorschub
    Vertikaler Tabulator
    Seitenvorschub
    Wagenrücklauf
    Nächste Zeile
    Geschütztes Leerzeichen
    Zeilentrennzeichen
    Absatztrennzeichen" #. UPByW #: sf_string.xhp @@ -21290,7 +21290,7 @@ "hd_id191580480825160\n" "help.text" msgid "Escape sequences" -msgstr "" +msgstr "Escape-Sequenzen" #. JD6CK #: sf_string.xhp @@ -21299,7 +21299,7 @@ "par_id971611949145057\n" "help.text" msgid "Below is a list of escape sequences that can be used in strings." -msgstr "" +msgstr "Nachfolgend finden Sie eine Liste von Escape-Sequenzen, die in Zeichenfolgen verwendet werden können." #. D4DjE #: sf_string.xhp @@ -21308,7 +21308,7 @@ "par_id151611947117287\n" "help.text" msgid "Escape Sequence" -msgstr "" +msgstr "Escape-Sequenz" #. xzDai #: sf_string.xhp @@ -21317,7 +21317,7 @@ "par_id721611947117732\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolischer Name" #. rrxV4 #: sf_string.xhp @@ -21326,7 +21326,7 @@ "par_id721611947117144\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-Nummer" #. fS24a #: sf_string.xhp @@ -21335,7 +21335,7 @@ "par_id761611947119834\n" "help.text" msgid "Line feed
    Carriage return
    Horizontal tab" -msgstr "" +msgstr "Zeilenvorschub
    Wagenrücklauf
    Horizontaler Tabulator" #. wAbkt #: sf_string.xhp @@ -21344,7 +21344,7 @@ "par_id251611949474763\n" "help.text" msgid "To have the escape sequence \"\\n\" interpreted as an actual string, simply use \"\\\\n\" instead of \"\\\" & Chr(10)." -msgstr "" +msgstr "Um die Escape-Sequenz \"\\n\" als tatsächliche Zeichenfolge interpretieren zu lassen, verwenden Sie einfach \"\\\\n\" anstelle von \"\\\" & Chr(10)." #. AYQbH #: sf_string.xhp @@ -21353,7 +21353,7 @@ "hd_id771579606799550\n" "help.text" msgid "Non-printable characters:" -msgstr "" +msgstr "Nicht druckbare Zeichen:" #. WXEDi #: sf_string.xhp @@ -21362,7 +21362,7 @@ "par_id531579606877342\n" "help.text" msgid "Characters defined in the Unicode Character Database as “Other” or “Separator” are considered as non-printable characters." -msgstr "" +msgstr "Zeichen, die in der Unicode-Zeichendatenbank als „Andere“ oder „Trennzeichen“ definiert sind, gelten als nicht druckbare Zeichen." #. EsBdD #: sf_string.xhp @@ -21371,7 +21371,7 @@ "par_id221611949584320\n" "help.text" msgid "Control characters (ascii code <= 0x1F) are also considered as non-printable." -msgstr "" +msgstr "Steuerzeichen (ASCII-Code <= 0x1F) gelten ebenfalls als nicht druckbar." #. GfNfK #: sf_string.xhp @@ -21380,7 +21380,7 @@ "hd_id661579604944268\n" "help.text" msgid "Quotes inside strings:" -msgstr "" +msgstr "Anführungszeichen innerhalb von Zeichenfolgen:" #. 6KLF9 #: sf_string.xhp @@ -21389,7 +21389,7 @@ "par_id551579605035332\n" "help.text" msgid "To add quotes in strings use \\' (single quote) or \\\" (double quote). For example:" -msgstr "" +msgstr "Um Anführungszeichen in Zeichenfolgen einzufügen, verwenden Sie \\' (einfaches Anführungszeichen) oder \\\" (doppeltes Anführungszeichen). Beispielsweise:" #. BKoHN #: sf_string.xhp @@ -21398,7 +21398,7 @@ "par_id201611949691285\n" "help.text" msgid "The string [str\\'i\\'ng] is interpreted as [str'i'ng]" -msgstr "" +msgstr "Die Zeichenfolge [Ze\\'i\\'chenfolge] wird als [Ze'i'chenfolge] interpretiert" #. eRosR #: sf_string.xhp @@ -21407,7 +21407,7 @@ "par_id201611949691323\n" "help.text" msgid "The string [str\\\"i\\\"ng] is interpreted as [str\"i\"ng]" -msgstr "" +msgstr "Die Zeichenfolge [Ze\\\"i\\\"chenfolge] wird als [Ze\"i\"chenfolge] interpretiert" #. FtzhT #: sf_string.xhp @@ -21416,7 +21416,7 @@ "hd_id201586594659135\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Dienstaufruf" #. 4WFve #: sf_string.xhp @@ -21425,7 +21425,7 @@ "par_id141609955500101\n" "help.text" msgid "Before using the ScriptForge.String service the ScriptForge library needs to be loaded using:" -msgstr "" +msgstr "Vor der Verwendung des Dienstes ScriptForge.String muss die Bibliothek ScriptForge geladen werden mit:" #. znLHV #: sf_string.xhp @@ -21434,7 +21434,7 @@ "par_id271627158844922\n" "help.text" msgid "Loading the library will create the SF_String object that can be used to call the methods in the String service." -msgstr "" +msgstr "Durch das Laden der Bibliothek wird das Objekt SF_String erstellt, das verwendet werden kann, um die Methoden im Dienst String aufzurufen." #. e2Gty #: sf_string.xhp @@ -21443,7 +21443,7 @@ "par_id63158659509728\n" "help.text" msgid "The following code snippets show the three ways to call methods from the String service (the Capitalize method is used as an example):" -msgstr "" +msgstr "Die folgenden Codeschnipsel zeigen die drei Möglichkeiten zum Aufrufen von Methoden aus dem Dienst String (die Methode Capitalize wird als Beispiel verwendet):" #. UE3DL #: sf_string.xhp @@ -21452,7 +21452,7 @@ "par_id761627158463235\n" "help.text" msgid "The code snippet below illustrates how to invoke methods from the String service in Python scripts. The IsIPv4 method is used as an example." -msgstr "" +msgstr "Der folgende Codeschnipsel veranschaulicht, wie Methoden aus dem Dienst String in Python-Skripten aufgerufen werden. Als Beispiel wird die Methode IsIPv4 verwendet." #. GfEcK #: sf_string.xhp @@ -21461,7 +21461,7 @@ "hd_id651584978211886\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschaften" #. qKhL4 #: sf_string.xhp @@ -21470,7 +21470,7 @@ "par_id241611950267068\n" "help.text" msgid "The SF_String object provides the following properties for Basic scripts:" -msgstr "" +msgstr "Das Objekt SF_String stellt die folgenden Eigenschaften für Basic-Skripte bereit:" #. FDjPb #: sf_string.xhp @@ -21479,7 +21479,7 @@ "par_id271584978211792\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. HGYbF #: sf_string.xhp @@ -21506,7 +21506,7 @@ "par_id71584978715562\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YJA6w #: sf_string.xhp @@ -21515,7 +21515,7 @@ "par_id581584978715701\n" "help.text" msgid "Carriage return: Chr(13)" -msgstr "" +msgstr "Wagenrücklauf: Chr(13)" #. NCbTs #: sf_string.xhp @@ -21524,7 +21524,7 @@ "par_id211584978211383\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. xht7K #: sf_string.xhp @@ -21533,7 +21533,7 @@ "par_id691584978211774\n" "help.text" msgid "Carriage return + Linefeed: Chr(13) & Chr(10)" -msgstr "" +msgstr "Wagenrücklauf + Zeilenvorschub: Chr(13) & Chr(10)" #. ennLs #: sf_string.xhp @@ -21542,7 +21542,7 @@ "par_id671584978666689\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. pdykp #: sf_string.xhp @@ -21551,7 +21551,7 @@ "par_id951584978666296\n" "help.text" msgid "Linefeed: Chr(10)" -msgstr "" +msgstr "Zeilenvorschub: Chr(10)" #. TTF6v #: sf_string.xhp @@ -21560,7 +21560,7 @@ "par_id421584978666327\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 9djV3 #: sf_string.xhp @@ -21569,7 +21569,7 @@ "par_id901584978666158\n" "help.text" msgid "Carriage return + Linefeed, which can be
    1) Chr(13) & Chr(10) or
    2) Linefeed: Chr(10)
    depending on the operating system." -msgstr "" +msgstr "Wagenrücklauf + Zeilenvorschub, das je nach Betriebssystem
    1) Chr(13) & Chr(10) oder
    2) Zeilenvorschub: Chr(10)
    sein kann." #. EMV7g #: sf_string.xhp @@ -21578,7 +21578,7 @@ "par_id541584978666991\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. VrjGQ #: sf_string.xhp @@ -21587,7 +21587,7 @@ "par_id741584978666508\n" "help.text" msgid "Horizontal tabulation: Chr(9)" -msgstr "" +msgstr "Horizontale Tabulator: Chr(9)" #. Ee5CF #: sf_string.xhp @@ -21596,7 +21596,7 @@ "par_id461584978880380\n" "help.text" msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by SF_String.sfLF." -msgstr "" +msgstr "Sie können die obigen Eigenschaften verwenden, um die entsprechenden Zeichen in Zeichenfolgen zu identifizieren oder einzufügen. Beispielsweise kann der Zeilenvorschub mittels SF_String.sfLF ersetzt werden." #. TFfR3 #: sf_string.xhp @@ -21605,7 +21605,7 @@ "par_id151611951803163\n" "help.text" msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution." -msgstr "" +msgstr "Das erste Argument der meisten Methoden ist die zu berücksichtigende Zeichenfolge. Sie wird immer als Referenz übergeben und unverändert gelassen. Methoden wie Capitalize, Escape und so weiter geben nach ihrer Ausführung eine neue Zeichenfolge zurück." #. PYcny #: sf_string.xhp @@ -21614,7 +21614,7 @@ "par_id371627158142730\n" "help.text" msgid "Because Python has comprehensive built-in string support, most of the methods in the String service are available for Basic scripts only. The methods available for Basic and Python are: HashStr, IsADate, IsEmail, IsFileName, IsIBAN, IsIPv4, IsLike, IsSheetName, IsUrl, SplitNotQuoted and Wrap." -msgstr "" +msgstr "Da Python über eine umfassende integrierte Zeichenfolgenunterstützung verfügt, sind die meisten Methoden im Dienst String nur für Basic-Skripts verfügbar. Die für Basic und Python verfügbaren Methoden sind: HashStr, IsADate, IsEmail, IsFileName, IsIBAN, IsIPv4, IsLike, IsSheetName, IsUrl, SplitNotQuoted und Wrap." #. jaBZR #: sf_string.xhp @@ -21623,7 +21623,7 @@ "par_id271579683706571\n" "help.text" msgid "Capitalizes the first character from each word in the input string." -msgstr "" +msgstr "Schreibt das erste Zeichen jedes Wortes in der Eingabezeichenfolge groß." #. ibgky #: sf_string.xhp @@ -21632,7 +21632,7 @@ "par_id941582304592013\n" "help.text" msgid "inputstr: The string to be capitalized." -msgstr "" +msgstr "inputstr: Die Zeichenfolge, die groß geschrieben werden soll." #. DB982 #: sf_string.xhp @@ -21641,7 +21641,7 @@ "par_id891582384556756\n" "help.text" msgid "Counts the number of occurrences of a substring or a regular expression within a string." -msgstr "" +msgstr "Zählt die Anzahl der Vorkommen einer Teilzeichenfolge oder eines regulären Ausdrucks innerhalb einer Zeichenfolge." #. DxK5L #: sf_string.xhp @@ -21650,7 +21650,7 @@ "par_id571582384689863\n" "help.text" msgid "inputstr: The input string to be examined" -msgstr "" +msgstr "inputstr: Die zu untersuchende Eingabezeichenfolge" #. QUeur #: sf_string.xhp @@ -21659,7 +21659,7 @@ "par_id601582384696486\n" "help.text" msgid "substring: The substring or the regular expression to be used during search" -msgstr "" +msgstr "substring: Die Teilzeichenfolge oder der reguläre Ausdruck, die/der während der Suche verwendet werden soll" #. vGiqm #: sf_string.xhp @@ -21668,7 +21668,7 @@ "par_id451582384703719\n" "help.text" msgid "isregex: Use True if the substring is a regular expression (Default = False)" -msgstr "" +msgstr "isregex: Verwenden Sie True, wenn die Teilzeichenfolge ein regulärer Ausdruck ist (Standard = False)" #. WiFme #: sf_string.xhp @@ -21677,7 +21677,7 @@ "par_id141582384726168\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. QcE5q #: sf_string.xhp @@ -21686,7 +21686,7 @@ "bas_id371582384749769\n" "help.text" msgid "'Counts the occurrences of the substring \"or\" inside the input string (returns 2)" -msgstr "" +msgstr "' Zählt die Vorkommen der Teilzeichenfolge \"or\" innerhalb der Eingabezeichenfolge (gibt 2 zurück)" #. XXCR4 #: sf_string.xhp @@ -21695,7 +21695,7 @@ "bas_id561582384801586\n" "help.text" msgid "'Counts the number of words with only lowercase letters (returns 7)" -msgstr "" +msgstr "' Zählt die Anzahl der Wörter mit nur Kleinbuchstaben (gibt 7 zurück)" #. aJNDg #: sf_string.xhp @@ -21704,7 +21704,7 @@ "par_id131612223767126\n" "help.text" msgid "To learn more about regular expressions, refer to the Python's documentation on Regular Expression Operations." -msgstr "" +msgstr "Weitere Informationen zu regulären Ausdrücken finden Sie in der Python-Dokumentation unter Regular Expression Operations ." #. CCzMc #: sf_string.xhp @@ -21713,7 +21713,7 @@ "par_id581579687739629\n" "help.text" msgid "Returns True if a string ends with a specified substring." -msgstr "" +msgstr "Gibt True zurück, wenn eine Zeichenfolge mit einer angegebenen Teilzeichenfolge endet." #. cAmFW #: sf_string.xhp @@ -21722,7 +21722,7 @@ "par_id21612306392239\n" "help.text" msgid "The function returns False when either the string or the substring have a length = 0 or when the substring is longer than the string." -msgstr "" +msgstr "Die Funktion gibt False zurück, wenn entweder die Zeichenfolge oder die Teilzeichenfolge eine Länge = 0 haben oder wenn die Teilzeichenfolge länger als die Zeichenfolge ist." #. qk5nE #: sf_string.xhp @@ -21731,7 +21731,7 @@ "par_id191579861552201\n" "help.text" msgid "inputstr: The string to be tested." -msgstr "" +msgstr "inputstr: Die zu testende Zeichenfolge." #. ErigR #: sf_string.xhp @@ -21740,7 +21740,7 @@ "par_id211579861561473\n" "help.text" msgid "substring: The substring to be searched at the end of inputstr." -msgstr "" +msgstr "substring: Die zu durchsuchende Teilzeichenfolge am Ende von inputstr." #. 4DKkW #: sf_string.xhp @@ -21749,7 +21749,7 @@ "par_id801579861574009\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. gn2F8 #: sf_string.xhp @@ -21758,7 +21758,7 @@ "bas_id811579862998452\n" "help.text" msgid "'Returns True because the method was called with the default CaseSensitive = False" -msgstr "" +msgstr "' Gibt \"True\" zurück, weil die Methode mit dem Standard \"CaseSensitive = False\" aufgerufen wurde" #. vJDmx #: sf_string.xhp @@ -21767,7 +21767,7 @@ "bas_id231579863168747\n" "help.text" msgid "'Returns False due to the CaseSensitive parameter" -msgstr "" +msgstr "' Gibt aufgrund des Parameters \"CaseSensitive\" \"False\" zurück" #. zThMM #: sf_string.xhp @@ -21776,7 +21776,7 @@ "par_id921585921441429\n" "help.text" msgid "Converts linebreaks and tabs contained in the input string to their equivalent escaped sequence (\\\\, \\n, \\r, \\t)." -msgstr "" +msgstr "Konvertiert Zeilenumbrüche und Tabulatoren, die in der Eingabezeichenfolge enthalten sind, in ihre entsprechende Escape-Sequenz (\\\\, \\n, \\r, \\t)." #. kBiBE #: sf_string.xhp @@ -21785,7 +21785,7 @@ "par_id9158592144110\n" "help.text" msgid "inputstr: The string to be converted." -msgstr "" +msgstr "inputstr: Die zu konvertierende Zeichenfolge." #. cpLKD #: sf_string.xhp @@ -21794,7 +21794,7 @@ "bas_id901585921441483\n" "help.text" msgid "'Returns the string \"abc\\n\\tdef\\\\n\"" -msgstr "" +msgstr "' Gibt die Zeichenfolge \"abc\\n\\tdef\\\\n\" zurück" #. ADN8M #: sf_string.xhp @@ -21803,7 +21803,7 @@ "par_id271579868053137\n" "help.text" msgid "Replaces Tab characters Chr(9) by space characters to replicate the behavior of tab stops." -msgstr "" +msgstr "Ersetzt Tabulatoren Chr(9) durch Leerzeichen, um das Verhalten von Tabulatoren zu replizieren." #. Eb23Z #: sf_string.xhp @@ -21812,7 +21812,7 @@ "par_id951579868064344\n" "help.text" msgid "If a line break is found, a new line is started and the character counter is reset." -msgstr "" +msgstr "Wird ein Zeilenumbruch gefunden, wird eine neue Zeile begonnen und der Zeichenzähler zurückgesetzt." #. E73Ko #: sf_string.xhp @@ -21821,7 +21821,7 @@ "par_id231579868290408\n" "help.text" msgid "inputstr: The string to be expanded" -msgstr "" +msgstr "inputstr: Die zu erweiternde Zeichenfolge" #. 9dyYc #: sf_string.xhp @@ -21830,7 +21830,7 @@ "par_id281579868299807\n" "help.text" msgid "tabsize: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)" -msgstr "" +msgstr "tabsize: Mit diesem Parameter werden die Tabulatoren bestimmt nach der Formel: TabSize + 1, 2 * TabSize + 1 , … N * TabSize + 1 (Standard = 8)" #. GUoE8 #: sf_string.xhp @@ -21839,7 +21839,7 @@ "par_id161579874552729\n" "help.text" msgid "Replaces all non-printable characters in the input string by a given character." -msgstr "" +msgstr "Ersetzt alle nicht druckbaren Zeichen in der Eingabezeichenfolge durch ein vorgegebenes Zeichen." #. GpHwp #: sf_string.xhp @@ -21848,7 +21848,7 @@ "par_id431579874633865\n" "help.text" msgid "inputstr: The string to be searched" -msgstr "" +msgstr "inputstr: Die zu durchsuchende Zeichenfolge" #. GttDN #: sf_string.xhp @@ -21857,7 +21857,7 @@ "par_id31579874656437\n" "help.text" msgid "replacedby: Zero, one or more characters that will replace all non-printable characters in inputstr (Default = \"\")" -msgstr "" +msgstr "replacedby: Null, ein oder mehrere Zeichen, die alle nicht druckbaren Zeichen in inputstr ersetzen (Standard = \"\")" #. W44TL #: sf_string.xhp @@ -21866,7 +21866,7 @@ "par_id1001579876228707\n" "help.text" msgid "Finds in a string a substring matching a given regular expression." -msgstr "" +msgstr "Findet in einer Zeichenfolge eine Teilzeichenfolge, die mit einem vorgegebenen regulären Ausdruck übereinstimmt." #. aq28M #: sf_string.xhp @@ -21875,7 +21875,7 @@ "par_id131579876314120\n" "help.text" msgid "inputstr: The string to be searched" -msgstr "" +msgstr "inputstr: Die zu durchsuchende Zeichenfolge" #. hRrBB #: sf_string.xhp @@ -21884,7 +21884,7 @@ "par_id751579876371545\n" "help.text" msgid "regex: The regular expression" -msgstr "" +msgstr "regex: Der reguläre Ausdruck" #. y2Fqs #: sf_string.xhp @@ -21893,7 +21893,7 @@ "par_id881579876394584\n" "help.text" msgid "start: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of start will point to the first character of the found substring. If no matching substring is found, start will be set to 0." -msgstr "" +msgstr "start: Die Position in der Zeichenfolge, an der die Suche beginnt. Dieser Parameter wird als Referenz übergeben, sodass nach der Ausführung der Wert von start auf das erste Zeichen der gefundenen Teilzeichenfolge zeigt. Wenn keine passende Teilzeichenfolge gefunden wird, wird start auf 0 gesetzt." #. yZMDg #: sf_string.xhp @@ -21902,7 +21902,7 @@ "par_id251579876403831\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. A4JC7 #: sf_string.xhp @@ -21911,7 +21911,7 @@ "par_id841579876412287\n" "help.text" msgid "forward: Determines the direction of the search. If True, search moves forward. If False search moves backwards (Default = True)" -msgstr "" +msgstr "forward: Bestimmt die Suchrichtung. Wenn True, geht die Suche vorwärts. Wenn False, geht die Suche rückwärts (Standard = True)" #. SkaCi #: sf_string.xhp @@ -21920,7 +21920,7 @@ "par_id451612309155653\n" "help.text" msgid "At the first iteration, if forward = True, then start should be equal to 1, whereas if forward = False then start should be equal to Len(inputstr)" -msgstr "" +msgstr "Bei der ersten Wiederholung, wenn forward = True, sollte start gleich 1 sein, wohingegen, wenn forward = False ist, sollte start gleich Len(inputstr) sein." #. gv3oo #: sf_string.xhp @@ -21929,7 +21929,7 @@ "par_id221612309579001\n" "help.text" msgid "In the example above, the new value of lStart can be used to keep searching the same input string by setting the Start parameter to lStart + Len(result) at the next iteration." -msgstr "" +msgstr "Im obigen Beispiel kann der neue Wert von lStart verwendet werden, um weiterhin dieselbe Eingabezeichenfolge zu suchen, indem der Parameter Start bei der nächsten Wiederholung auf lStart + Len(result) gesetzt wird." #. qAkN4 #: sf_string.xhp @@ -21938,7 +21938,7 @@ "par_id471601048983628\n" "help.text" msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more." -msgstr "" +msgstr "Hash-Funktionen werden in einigen kryptografischen Algorithmen, in digitalen Signaturen, Nachrichtenauthentifizierungscodes, Manipulationserkennung, Fingerabdrücken, Prüfsummen (Nachrichtenintegritätsprüfung), Hash-Tabellen, Kennwortspeicherung und vielem mehr verwendet." #. HupGD #: sf_string.xhp @@ -21947,7 +21947,7 @@ "par_id301601048983765\n" "help.text" msgid "The HashStr method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits." -msgstr "" +msgstr "Die Methode HashStr gibt das Ergebnis einer Hash-Funktion, die auf eine gegebene Zeichenfolge angewendet wird und einen angegebenen Algorithmus verwendet, als eine Zeichenfolge aus hexadezimalen Ziffern in Kleinbuchstaben zurück." #. ZRZEF #: sf_string.xhp @@ -21956,7 +21956,7 @@ "par_id631601048983149\n" "help.text" msgid "The hash algorithms supported are: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512." -msgstr "" +msgstr "Die unterstützten Hash-Algorithmen sind: MD5, SHA1, SHA224, SHA256, SHA384 und SHA512." #. yUmmb #: sf_string.xhp @@ -21965,7 +21965,7 @@ "par_id621601048983210\n" "help.text" msgid "inputstr: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes." -msgstr "" +msgstr "inputstr: Die zu hashende Zeichenfolge. Es wird angenommen, dass es in UTF-8 codiert ist. Der Hash-Algorithmus betrachtet die Zeichenfolge als eine Folge von Bytes." #. nuQRb #: sf_string.xhp @@ -21974,7 +21974,7 @@ "par_id941601048983822\n" "help.text" msgid "algorithm: One of the supported algorithms listed above, passed as a string." -msgstr "" +msgstr "algorithm: Einer der oben aufgeführten unterstützten Algorithmen, der als Zeichenfolge übergeben wird." #. TXGmB #: sf_string.xhp @@ -21983,7 +21983,7 @@ "par_id221579879516929\n" "help.text" msgid "Encodes the input string into the HTML character codes, replacing special characters by their & counterparts." -msgstr "" +msgstr "Kodiert die Eingabezeichenfolge in die HTML-Zeichencodes und ersetzt Sonderzeichen durch ihre Entsprechungen mit &." #. YNfid #: sf_string.xhp @@ -21992,7 +21992,7 @@ "par_id341612351999692\n" "help.text" msgid "For example, the character é would be replaced by é or an equivalent numerical HTML code." -msgstr "" +msgstr "Beispielsweise würde das Zeichen é durch é oder einen entsprechenden numerischen HTML-Code ersetzt." #. CGFQH #: sf_string.xhp @@ -22001,7 +22001,7 @@ "bas_id501579879570781\n" "help.text" msgid "inputstr: The string to encode." -msgstr "" +msgstr "inputstr: Die zu codierende Zeichenfolge." #. jpv97 #: sf_string.xhp @@ -22010,7 +22010,7 @@ "par_id171579880990533\n" "help.text" msgid "Returns True if the input string is a valid date according to a specified date format." -msgstr "" +msgstr "Gibt True zurück, wenn die Eingabezeichenfolge ein gültiges Datum gemäß einem angegebenen Datumsformat ist." #. tBGBH #: sf_string.xhp @@ -22019,7 +22019,7 @@ "par_id151579881091821\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False" -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück" #. nmTv3 #: sf_string.xhp @@ -22028,7 +22028,7 @@ "par_id991579881107670\n" "help.text" msgid "dateformat: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\"" -msgstr "" +msgstr "dateformat: Das Datumsformat als Zeichenfolge. Kann \"YYYY-MM-DD\" (Standard), \"DD-MM-YYYY\" oder \"MM-DD-YYYY\" sein" #. GvZLC #: sf_string.xhp @@ -22037,7 +22037,7 @@ "par_id291579881117126\n" "help.text" msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space." -msgstr "" +msgstr "Der Bindestrich (-) kann durch einen Punkt (.), einen Schrägstrich (/) oder ein Leerzeichen ersetzt werden." #. yCA3T #: sf_string.xhp @@ -22046,7 +22046,7 @@ "par_id51579881125801\n" "help.text" msgid "If the format is invalid, the method returns False." -msgstr "" +msgstr "Wenn das Format ungültig ist, gibt die Methode False zurück." #. qFmWW #: sf_string.xhp @@ -22055,7 +22055,7 @@ "par_id211612370427721\n" "help.text" msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the IsDate built-in function." -msgstr "" +msgstr "Diese Methode prüft das Format der Eingabezeichenfolge, ohne kalenderspezifische Prüfungen durchzuführen. Daher wird die Eingabezeichenfolge nicht auf Schaltjahre oder Monate mit 30 oder 31 Tagen getestet. Siehe hierzu die integrierte Funktion IsDate." #. DJQFQ #: sf_string.xhp @@ -22064,7 +22064,7 @@ "par_id181612371147364\n" "help.text" msgid "The example below shows the difference between the methods IsADate (ScriptForge) and the IsDate (built-in) function." -msgstr "" +msgstr "Das folgende Beispiel zeigt den Unterschied zwischen den Methoden IsADate (ScriptForge) und der Funktion IsDate (eingebaut)." #. hAADi #: sf_string.xhp @@ -22073,7 +22073,7 @@ "par_id161579881600317\n" "help.text" msgid "Returns True if all characters in the string are alphabetic." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge alphabetisch sind." #. Cpeo3 #: sf_string.xhp @@ -22082,7 +22082,7 @@ "par_id251579881615469\n" "help.text" msgid "Alphabetic characters are those characters defined in the Unicode Character Database as Letter." -msgstr "" +msgstr "Alphabetische Zeichen sind die Zeichen, die in der Unicode-Zeichendatenbank als Buchstaben definiert sind." #. a9rTa #: sf_string.xhp @@ -22091,7 +22091,7 @@ "par_id11579881691826\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. KaLGv #: sf_string.xhp @@ -22100,7 +22100,7 @@ "par_id421579883181382\n" "help.text" msgid "Returns True if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge alphabetisch, Ziffern oder \"_\" (Unterstrich) sind. Das erste Zeichen darf keine Ziffer sein." #. BAEB4 #: sf_string.xhp @@ -22109,7 +22109,7 @@ "par_id31579884464101\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. qAZpA #: sf_string.xhp @@ -22118,7 +22118,7 @@ "par_id671580039484786\n" "help.text" msgid "Returns True if all characters in the string are Ascii characters." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge ASCII-Zeichen sind." #. 3DNou #: sf_string.xhp @@ -22127,7 +22127,7 @@ "par_id791580039528838\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. iuPF4 #: sf_string.xhp @@ -22136,7 +22136,7 @@ "par_id861580044805749\n" "help.text" msgid "Returns True if all characters in the string are digits." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge Ziffern sind." #. yU7cc #: sf_string.xhp @@ -22145,7 +22145,7 @@ "par_id41580044873043\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. J8Ykx #: sf_string.xhp @@ -22154,7 +22154,7 @@ "par_id521580045221758\n" "help.text" msgid "Returns True if the string is a valid email address." -msgstr "" +msgstr "Gibt True zurück, wenn die Zeichenfolge eine gültige E-Mail-Adresse ist." #. 8Pxsn #: sf_string.xhp @@ -22163,7 +22163,7 @@ "par_id841580045280071\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. R6MsU #: sf_string.xhp @@ -22172,7 +22172,7 @@ "par_id41580047039666\n" "help.text" msgid "Returns True if the string is a valid filename in a given operating system." -msgstr "" +msgstr "Gibt True zurück, wenn die Zeichenfolge ein gültiger Dateiname in einem bestimmten Betriebssystem ist." #. aQbRF #: sf_string.xhp @@ -22181,7 +22181,7 @@ "par_id801580047079938\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. jWMpJ #: sf_string.xhp @@ -22190,7 +22190,7 @@ "par_id781580047088954\n" "help.text" msgid "osname: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"." -msgstr "" +msgstr "osname: Der Name des Betriebssystems als Zeichenfolge. Kann \"WINDOWS\", \"LINUX\", \"MACOSX\" oder \"SOLARIS\" sein." #. GnrxA #: sf_string.xhp @@ -22199,7 +22199,7 @@ "par_id991612372824234\n" "help.text" msgid "The default value is the current operating system on which the script is running." -msgstr "" +msgstr "Der Standardwert ist das aktuelle Betriebssystem, auf dem das Skript ausgeführt wird." #. FPuAV #: sf_string.xhp @@ -22208,7 +22208,7 @@ "par_id911580047551929\n" "help.text" msgid "Returns True if all characters in the string are hexadecimal digits." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge Hexadezimalziffern sind." #. hWqAh #: sf_string.xhp @@ -22217,7 +22217,7 @@ "par_id331580047594144\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. kEz4y #: sf_string.xhp @@ -22226,7 +22226,7 @@ "par_id521612377109554\n" "help.text" msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"." -msgstr "" +msgstr "Den Hexadezimalziffern kann „0x“ oder „&H“ vorangestellt werden." #. 3WKNf #: sf_string.xhp @@ -22235,7 +22235,7 @@ "par_id791584008420941\n" "help.text" msgid "Returns True if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive." -msgstr "" +msgstr "Gibt True zurück, wenn die Zeichenfolge eine gültige internationale Bankkontonummer (IBAN) ist. Beim Vergleich wird die Groß-/Kleinschreibung nicht beachtet." #. DnC6i #: sf_string.xhp @@ -22244,7 +22244,7 @@ "par_id951880048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. VgT3x #: sf_string.xhp @@ -22253,7 +22253,7 @@ "par_id631619526542367\n" "help.text" msgid "True if the string contains a valid IBAN number." -msgstr "" +msgstr "True, wenn die Zeichenfolge eine gültige IBAN-Nummer enthält." #. CcTNk #: sf_string.xhp @@ -22262,7 +22262,7 @@ "par_id791580048420941\n" "help.text" msgid "Returns True if the string is a valid IP(v4) address." -msgstr "" +msgstr "Gibt True zurück, wenn die Zeichenfolge eine gültige IP(v4)-Adresse ist." #. rMpXB #: sf_string.xhp @@ -22271,7 +22271,7 @@ "par_id981580048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. yWHew #: sf_string.xhp @@ -22280,7 +22280,7 @@ "par_id831580049093038\n" "help.text" msgid "Returns True if the whole input string matches a given pattern containing wildcards." -msgstr "" +msgstr "Gibt True zurück, wenn die gesamte Eingabezeichenfolge mit einem bestimmten Muster übereinstimmt, das Platzhalter enthält." #. PzigS #: sf_string.xhp @@ -22289,7 +22289,7 @@ "par_id141580049142548\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. XEBzh #: sf_string.xhp @@ -22298,7 +22298,7 @@ "par_id31580049154551\n" "help.text" msgid "pattern: The pattern as a string. Wildcards are:" -msgstr "" +msgstr "pattern: Das Muster als Zeichenfolge. Platzhalter sind:" #. ZCzDP #: sf_string.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "\"?\" stellt ein beliebiges einzelnes Zeichen dar;" #. CFPcW #: sf_string.xhp @@ -22316,7 +22316,7 @@ "par_id861612377611438\n" "help.text" msgid "\"*\" represents zero, one, or multiple characters." -msgstr "" +msgstr "\"*\" steht für null, ein oder mehrere Zeichen." #. eLYBF #: sf_string.xhp @@ -22325,7 +22325,7 @@ "par_id991580049206617\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. kSMmn #: sf_string.xhp @@ -22334,7 +22334,7 @@ "par_id581580050048679\n" "help.text" msgid "Returns True if all characters in the string are in lowercase. Non-alphabetic characters are ignored." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge in Kleinbuchstaben geschrieben sind. Nicht alphabetische Zeichen werden ignoriert." #. nWGvX #: sf_string.xhp @@ -22343,7 +22343,7 @@ "par_id751580050122938\n" "help.text" msgid "InputStr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "InputStr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. BzD3y #: sf_string.xhp @@ -22352,7 +22352,7 @@ "par_id231580051650488\n" "help.text" msgid "Returns True if all characters in the string are printable." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge druckbar sind." #. gUhut #: sf_string.xhp @@ -22361,7 +22361,7 @@ "par_id721580051706431\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. HYBp5 #: sf_string.xhp @@ -22370,7 +22370,7 @@ "par_id281580052400960\n" "help.text" msgid "Returns True if the whole input string matches a given regular expression." -msgstr "" +msgstr "Gibt True zurück, wenn die gesamte Eingabezeichenfolge mit einem gegebenen regulären Ausdruck übereinstimmt." #. ZuBxC #: sf_string.xhp @@ -22379,7 +22379,7 @@ "par_id161580052454770\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. mi4mi #: sf_string.xhp @@ -22388,7 +22388,7 @@ "par_id581580052467973\n" "help.text" msgid "regex: The regular expression. If empty, the method returns False." -msgstr "" +msgstr "regex: Der reguläre Ausdruck. Wenn leer, gibt die Methode False zurück." #. vmqZM #: sf_string.xhp @@ -22397,7 +22397,7 @@ "par_id621580052654341\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. iZSEw #: sf_string.xhp @@ -22406,7 +22406,7 @@ "par_id1001589460240467\n" "help.text" msgid "Returns True if the input string is a valid Calc sheet name." -msgstr "" +msgstr "Gibt True zurück, wenn die Eingabezeichenfolge ein gültiger Calc-Tabellenname ist." #. xPFLm #: sf_string.xhp @@ -22415,7 +22415,7 @@ "par_id671589460240552\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. uE5gz #: sf_string.xhp @@ -22424,7 +22424,7 @@ "par_id551612442002823\n" "help.text" msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character." -msgstr "" +msgstr "Ein Tabellenname darf nicht die Zeichen [ ] * ? : / \\ oder das Zeichen ' (Apostroph) als erstes oder letztes Zeichen enthalten." #. ALdgg #: sf_string.xhp @@ -22433,7 +22433,7 @@ "par_id371580293093655\n" "help.text" msgid "Returns True if the first character of every word is in uppercase and the other characters are in lowercase." -msgstr "" +msgstr "Gibt True zurück, wenn das erste Zeichen jedes Wortes in Großbuchstaben und die anderen Zeichen in Kleinbuchstaben geschrieben sind." #. uVF9U #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. 7Ryzp #: sf_string.xhp @@ -22451,7 +22451,7 @@ "par_id801580128672004\n" "help.text" msgid "Returns True if all characters in the string are in uppercase. Non alphabetic characters are ignored." -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge in Großbuchstaben geschrieben sind. Nicht alphabetische Zeichen werden ignoriert." #. HFDCW #: sf_string.xhp @@ -22460,7 +22460,7 @@ "par_id391580128736809\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. BTRpG #: sf_string.xhp @@ -22469,7 +22469,7 @@ "par_id531580132067813\n" "help.text" msgid "Returns True if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported." -msgstr "" +msgstr "Gibt True zurück, wenn die Zeichenfolge eine gültige absolute URL-Adresse (Uniform Resource Locator) ist. Es werden nur die Protokolle http, https und ftp unterstützt." #. HrFqG #: sf_string.xhp @@ -22478,7 +22478,7 @@ "par_id321580132113593\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. wBAqG #: sf_string.xhp @@ -22487,7 +22487,7 @@ "par_id41580132491698\n" "help.text" msgid "Returns True if all characters in the string are whitespaces" -msgstr "" +msgstr "Gibt True zurück, wenn alle Zeichen in der Zeichenfolge Leerzeichen sind" #. JDD85 #: sf_string.xhp @@ -22496,7 +22496,7 @@ "par_id801580132535511\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode False zurück." #. 7EBbA #: sf_string.xhp @@ -22505,7 +22505,7 @@ "par_id891580133307100\n" "help.text" msgid "Returns the input string center-justified." -msgstr "" +msgstr "Gibt die Eingabezeichenfolge zentriert zurück." #. TLmnE #: sf_string.xhp @@ -22514,7 +22514,7 @@ "par_id571612380829021\n" "help.text" msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total length with the character padding." -msgstr "" +msgstr "Die führenden und abschließenden Leerzeichen werden entfernt und die restlichen Zeichen werden links und rechts bis zu einer angegebenen Gesamtlänge lenght mit dem Zeichen padding aufgefüllt." #. 4uuQT #: sf_string.xhp @@ -22523,7 +22523,7 @@ "par_id911580133391827\n" "help.text" msgid "inputstr: The string to be center-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Die Zeichenfolge, die zentriert werden soll. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück." #. jHJNT #: sf_string.xhp @@ -22532,7 +22532,7 @@ "par_id671580133694946\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)." #. A3qof #: sf_string.xhp @@ -22541,7 +22541,7 @@ "par_id511612381090109\n" "help.text" msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Wenn die angegebene Länge kürzer als die zentrierte Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten." #. fys4j #: sf_string.xhp @@ -22550,7 +22550,7 @@ "par_id101580133705268\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")." #. 4zk3p #: sf_string.xhp @@ -22559,7 +22559,7 @@ "par_id911580135466348\n" "help.text" msgid "Returns the input string left-justified." -msgstr "" +msgstr "Gibt die Eingabezeichenfolge linksbündig zurück." #. 9KeCE #: sf_string.xhp @@ -22568,7 +22568,7 @@ "par_id431612381917641\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total length with the character padding." -msgstr "" +msgstr "Die führenden Leerzeichen werden entfernt und die restlichen Zeichen bis zu einer vorgegebenen Gesamtlänge length mit dem Zeichen padding nach rechts aufgefüllt." #. UQXSM #: sf_string.xhp @@ -22577,7 +22577,7 @@ "par_id281580135523448\n" "help.text" msgid "inputstr: The string to be left-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Die linksbündig auszurichtende Zeichenfolge. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück." #. EAwAa #: sf_string.xhp @@ -22586,7 +22586,7 @@ "par_id431580135534910\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)." #. ntKXx #: sf_string.xhp @@ -22595,7 +22595,7 @@ "par_id161612381664182\n" "help.text" msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Wenn die angegebene Länge kürzer als die linksbündige Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten." #. wBnmv #: sf_string.xhp @@ -22604,7 +22604,7 @@ "par_id221580135568475\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")." #. TTokb #: sf_string.xhp @@ -22613,7 +22613,7 @@ "par_id821580136091225\n" "help.text" msgid "Returns the input string right-justified." -msgstr "" +msgstr "Gibt den Eingabestring rechtsbündig zurück." #. 4fG7c #: sf_string.xhp @@ -22622,7 +22622,7 @@ "par_id771612382000293\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total length with the character padding." -msgstr "" +msgstr "Dabei werden die führenden Leerzeichen entfernt und die restlichen Zeichen nach links bis zu einer vorgegebenen Gesamtlänge length mit dem Zeichen padding aufgefüllt." #. KxskT #: sf_string.xhp @@ -22631,7 +22631,7 @@ "par_id201580136154170\n" "help.text" msgid "inputstr: The string to be right-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Die rechtsbündig auszurichtende Zeichenfolge. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück." #. FboQc #: sf_string.xhp @@ -22640,7 +22640,7 @@ "par_id71580136164632\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)." #. dshKE #: sf_string.xhp @@ -22649,7 +22649,7 @@ "par_id191612381732163\n" "help.text" msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Wenn die angegebene Länge kürzer als die rechtsbündige Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten." #. LtcVG #: sf_string.xhp @@ -22658,7 +22658,7 @@ "par_id751580136200680\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")." #. Wn55u #: sf_string.xhp @@ -22667,7 +22667,7 @@ "par_id251580136888958\n" "help.text" msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes." -msgstr "" +msgstr "Gibt die in einfache oder doppelte Anführungszeichen eingeschlossene Eingabezeichenfolge zurück. Vorhandene Anführungszeichen werden unverändert gelassen, einschließlich vorangestellter und/oder nachgestellter Anführungszeichen." #. YBvt4 #: sf_string.xhp @@ -22676,7 +22676,7 @@ "par_id811580136944674\n" "help.text" msgid "inputstr: The string to quote." -msgstr "" +msgstr "inputstr: Die zu zitierende Zeichenfolge." #. GynWV #: sf_string.xhp @@ -22685,7 +22685,7 @@ "par_id581599129397412\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar: Entweder das einfache (') oder das doppelte (\") Anführungszeichen (Standard)." #. fY3PC #: sf_string.xhp @@ -22694,7 +22694,7 @@ "par_id911612382537087\n" "help.text" msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes." -msgstr "" +msgstr "Diese Methode kann nützlich sein, wenn ein Zeichenfolgenfeld vorbereitet wird, das in einer CSV-ähnlichen Datei gespeichert werden soll, was erfordert, dass Textwerte in einfache oder doppelte Anführungszeichen gesetzt werden." #. 8Rr4M #: sf_string.xhp @@ -22703,7 +22703,7 @@ "par_id951580139124650\n" "help.text" msgid "Replaces all occurrences of the characters specified in the Before parameter by the corresponding characters specified in After." -msgstr "" +msgstr "Ersetzt alle Vorkommen der im Parameter Before angegebenen Zeichen durch die entsprechenden Zeichen, die in After angegeben sind." #. 5hn2y #: sf_string.xhp @@ -22712,7 +22712,7 @@ "par_id1001612384040018\n" "help.text" msgid "If the length of Before is greater than the length of After, the residual characters in Before are replaced by the last character in After." -msgstr "" +msgstr "Wenn die Länge von Before größer als die Länge von After ist, werden die Restzeichen in Before durch das letzte Zeichen in After ersetzt." #. DD2CL #: sf_string.xhp @@ -22721,7 +22721,7 @@ "par_id11580139160633\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen." #. DvaRE #: sf_string.xhp @@ -22730,7 +22730,7 @@ "par_id111580139169795\n" "help.text" msgid "before: A string with the characters that will be searched in the input string for replacement." -msgstr "" +msgstr "before: Eine Zeichenfolge mit den Zeichen, nach denen in der Eingabezeichenfolge zur Ersetzung gesucht werden." #. N46b3 #: sf_string.xhp @@ -22739,7 +22739,7 @@ "par_id851580139182113\n" "help.text" msgid "after: A string with the new characters that will replace those defined in before." -msgstr "" +msgstr "after: Eine Zeichenfolge mit den neuen Zeichen, welche die in before definierten ersetzen." #. CDuCC #: sf_string.xhp @@ -22748,7 +22748,7 @@ "bas_id921580139218457\n" "help.text" msgid "' Replaces accented characters" -msgstr "" +msgstr "' Ersetzt akzentuierte Zeichen" #. 5ww5A #: sf_string.xhp @@ -22757,7 +22757,7 @@ "par_id151612442904499\n" "help.text" msgid "The SF_String service provides useful public constants for the Latin character sets, as shown in the example below:" -msgstr "" +msgstr "Der Dienst SF_String stellt nützliche öffentliche Konstanten für die lateinischen Zeichensätze bereit, wie im folgenden Beispiel gezeigt:" #. 9SPjv #: sf_string.xhp @@ -22766,7 +22766,7 @@ "par_id671580140272818\n" "help.text" msgid "Replaces all occurrences of a given regular expression by a new string." -msgstr "" +msgstr "Ersetzt alle Vorkommen eines bestimmten regulären Ausdrucks durch eine neue Zeichenfolge." #. ujCyu #: sf_string.xhp @@ -22775,7 +22775,7 @@ "par_id471580140311626\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen." #. o2DS2 #: sf_string.xhp @@ -22784,7 +22784,7 @@ "par_id651580140322666\n" "help.text" msgid "regex: The regular expression." -msgstr "" +msgstr "regex: Der reguläre Ausdruck." #. itEEd #: sf_string.xhp @@ -22793,7 +22793,7 @@ "par_id891580140334754\n" "help.text" msgid "newstr: The replacing string." -msgstr "" +msgstr "newstr: Die ersetzende Zeichenfolge." #. gJRAr #: sf_string.xhp @@ -22802,7 +22802,7 @@ "par_id581580140345221\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. ykPVR #: sf_string.xhp @@ -22811,7 +22811,7 @@ "bas_id961612384647003\n" "help.text" msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")" -msgstr "" +msgstr "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxx xxxxxxxxxx xxxx.\" (jeder Kleinbuchstabe wird durch ein \"x\" ersetzt)" #. rkMsv #: sf_string.xhp @@ -22820,7 +22820,7 @@ "bas_id751612384623936\n" "help.text" msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")" -msgstr "" +msgstr "' \"x x x x x, x x x.\" (jedes Wort wird durch ein \"x\" ersetzt)" #. 2Gd5C #: sf_string.xhp @@ -22829,7 +22829,7 @@ "par_id51580146471894\n" "help.text" msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings." -msgstr "" +msgstr "Ersetzt in einer Zeichenfolge einige oder alle Vorkommen einer Matriv von Zeichenfolgen durch eine Matrix neuer Zeichenfolgen." #. SDpot #: sf_string.xhp @@ -22838,7 +22838,7 @@ "par_id831580146504326\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen." #. UfuEm #: sf_string.xhp @@ -22847,7 +22847,7 @@ "par_id411580146514927\n" "help.text" msgid "oldstr: A single string or an array of strings. Zero-length strings are ignored." -msgstr "" +msgstr "oldstr: Eine einzelne Zeichenfolge oder eine Matrix mit Zeichenfolgen. Zeichenfolgen der Länge Null werden ignoriert." #. Ukr3F #: sf_string.xhp @@ -22856,7 +22856,7 @@ "par_id591580146532966\n" "help.text" msgid "newstr: The replacing string or the array of replacing strings." -msgstr "" +msgstr "newstr: Die ersetzende Zeichenfolge oder die Matrix mit ersetzenden Zeichenfolgen." #. 7BQ7F #: sf_string.xhp @@ -22865,7 +22865,7 @@ "par_id611612384873347\n" "help.text" msgid "If oldstr is an array, each occurrence of any of the items in oldstr is replaced by newstr." -msgstr "" +msgstr "Wenn oldstr eine Matrix ist, wird jedes Vorkommen eines der Elemente in oldstr durch newstr ersetzt." #. AfRz6 #: sf_string.xhp @@ -22874,7 +22874,7 @@ "par_id611612384880820\n" "help.text" msgid "If oldstr and newstr are arrays, replacements occur one by one up to the UBound(newstr)." -msgstr "" +msgstr "Wenn oldstr und newstr Matrizen sind, erfolgt die Ersetzung nacheinander bis zu UBound(newstr)." #. E39aH #: sf_string.xhp @@ -22883,7 +22883,7 @@ "par_id241612385058264\n" "help.text" msgid "If oldstr has more entries than newstr, then the residual elements in oldstr are replaced by the last element in newstr." -msgstr "" +msgstr "Wenn oldstr mehr Einträge hat als newstr, dann werden die restlichen Elemente in oldstr durch das letzte Element in newstr ersetzt." #. MkqW5 #: sf_string.xhp @@ -22892,7 +22892,7 @@ "par_id701580146547619\n" "help.text" msgid "occurrences: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced." -msgstr "" +msgstr "occurrences: Die maximale Anzahl von Ersetzungen. Der Standardwert ist 0, was bedeutet, dass alle Vorkommen ersetzt werden." #. QX33p #: sf_string.xhp @@ -22901,7 +22901,7 @@ "par_id741612385380533\n" "help.text" msgid "When oldstr is an array, the occurrence parameter is computed separately for each item in the array." -msgstr "" +msgstr "Wenn oldstr eine Matrix ist, wird der Parameter occurrence für jedes Element in der Matrix separat berechnet." #. aWrvA #: sf_string.xhp @@ -22910,7 +22910,7 @@ "par_id301580146556599\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. eygyi #: sf_string.xhp @@ -22919,7 +22919,7 @@ "par_id901580147558931\n" "help.text" msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes." -msgstr "" +msgstr "Gibt eine Zeichenfolge, die bei einer bestimmten Länge abgeschnitten wird, mit einer lesbaren Darstellung des Arguments zurück. Dies ist hauptsächlich für Debugging- oder Protokollierungszwecke nützlich." #. cU3Ev #: sf_string.xhp @@ -22928,7 +22928,7 @@ "par_id11612386054691\n" "help.text" msgid "If the anyvalue parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"." -msgstr "" +msgstr "Wenn der Parameter anyvalue ein Objekt ist, wird es in eckige Klammern \"[\" und \"]\" eingeschlossen." #. gVB32 #: sf_string.xhp @@ -22937,7 +22937,7 @@ "par_id491612386081802\n" "help.text" msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r." -msgstr "" +msgstr "In Zeichenfolgen werden Tabulatoren und Zeilenumbrüche durch \\t, \\n oder \\r ersetzt." #. SfUGD #: sf_string.xhp @@ -22946,7 +22946,7 @@ "par_id921612386089103\n" "help.text" msgid "If the final length exceeds the maxlength parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation." -msgstr "" +msgstr "Wenn die endgültige Länge den Parameter maxlength überschreitet, wird der letzte Teil der Zeichenfolge durch \" … (N)\" ersetzt, wobei N die Gesamtlänge der ursprünglichen Zeichenfolge vor dem Abschneiden ist." #. zLfNR #: sf_string.xhp @@ -22955,7 +22955,7 @@ "par_id91580147593626\n" "help.text" msgid "anyvalue: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc." -msgstr "" +msgstr "anyvalue: Der darzustellende Eingabewert. Dies kann ein beliebiger Wert sein, beispielsweise eine Zeichenfolge, eine Matrix, ein Basic-Objekt, ein UNO-Objekt …" #. hdDFi #: sf_string.xhp @@ -22964,7 +22964,7 @@ "par_id811580147609322\n" "help.text" msgid "maxlength: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation." -msgstr "" +msgstr "maxlength: Die maximale Länge der resultierenden Zeichenfolge. Der Standardwert ist 0, was bedeutet, dass die Länge der resultierenden Darstellung unbegrenzt ist." #. Ape7i #: sf_string.xhp @@ -22973,7 +22973,7 @@ "par_id641612386659292\n" "help.text" msgid "Note that the representation of data types such as Arrays and ScriptForge.Dictionary object instances include both the data type and their values:" -msgstr "" +msgstr "Beachten Sie, dass die Darstellung von Datentypen wie Matrizen und Objektinstanzen ScriptForge.Dictionary sowohl den Datentyp als auch ihre Werte enthalten:" #. ZFFAD #: sf_string.xhp @@ -22982,7 +22982,7 @@ "bas_id971612386906463\n" "help.text" msgid "' An example with a Basic built-in Array" -msgstr "" +msgstr "' Ein Beispiel mit einer eingebauten Matrix in Basic" #. GEZzM #: sf_string.xhp @@ -22991,7 +22991,7 @@ "bas_id401612386876329\n" "help.text" msgid "' An example with a ScriptForge Array" -msgstr "" +msgstr "' Ein Beispiel mit einer Matrix in ScriptForge" #. mZ3ar #: sf_string.xhp @@ -23000,7 +23000,7 @@ "bas_id551612386931680\n" "help.text" msgid "' An example with a ScriptForge Dictionary" -msgstr "" +msgstr "' Ein Beispiel mit einem Wörterbuch in ScriptForge" #. vvADG #: sf_string.xhp @@ -23009,7 +23009,7 @@ "par_id411580312925741\n" "help.text" msgid "Returns the input string in reversed order." -msgstr "" +msgstr "Gibt die Eingabezeichenfolge in umgekehrter Reihenfolge zurück." #. EEyG6 #: sf_string.xhp @@ -23018,7 +23018,7 @@ "par_id141612387177873\n" "help.text" msgid "This method is equivalent to the built-in StrReverse Basic function." -msgstr "" +msgstr "Diese Methode entspricht der integrierten Basic-Funktion StrReverse." #. ZEarP #: sf_string.xhp @@ -23027,7 +23027,7 @@ "par_id961612387463144\n" "help.text" msgid "To use the StrReverse function, the statement Option VBASupport 1 must be present in the module." -msgstr "" +msgstr "Um die Funktion StrReverse zu verwenden, muss die Anweisung Option VBASupport 1 im Modul vorhanden sein." #. pSyL6 #: sf_string.xhp @@ -23036,7 +23036,7 @@ "par_id241580312964497\n" "help.text" msgid "inputstr: The string to be reversed." -msgstr "" +msgstr "inputstr: Die umzukehrende Zeichenfolge." #. KBFDk #: sf_string.xhp @@ -23045,7 +23045,7 @@ "par_id721580210762286\n" "help.text" msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters." -msgstr "" +msgstr "Gibt eine nullbasierte Matrix von Zeichenfolgen mit den Zeilen in der Eingabezeichenfolge zurück. Jedes Element in der Matrix wird erhalten, indem die Eingabezeichenfolge an Zeilenumbruchzeichen geteilt wird." #. nuUF6 #: sf_string.xhp @@ -23054,7 +23054,7 @@ "par_id481580210806878\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: Die zu teilende Zeichenfolge." #. FEFUw #: sf_string.xhp @@ -23063,7 +23063,7 @@ "par_id231580210820309\n" "help.text" msgid "keepbreaks: When True, line breaks are preserved in the output array (default = False)." -msgstr "" +msgstr "keepbreaks: Wenn True, werden Zeilenumbrüche in der Ausgabematrix beibehalten (Standard = False)." #. HAG8Q #: sf_string.xhp @@ -23072,7 +23072,7 @@ "par_id471580211762739\n" "help.text" msgid "Splits a string into an array of elements using a specified delimiter." -msgstr "" +msgstr "Teilt eine Zeichenfolge mithilfe eines angegebenen Trennzeichens in eine Matrix von Elementen." #. zsADB #: sf_string.xhp @@ -23081,7 +23081,7 @@ "par_id281612388034501\n" "help.text" msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Wenn eine Teilzeichenfolge in Anführungszeichen ein Trennzeichen enthält, wird es ignoriert. Dies ist nützlich, wenn CSV-ähnliche Datensätze analysiert werden, die Zeichenfolgen in Anführungszeichen enthalten." #. JKAaG #: sf_string.xhp @@ -23090,7 +23090,7 @@ "par_id881580211809490\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: Die zu teilende Zeichenfolge." #. zFjwe #: sf_string.xhp @@ -23099,7 +23099,7 @@ "par_id811580211821162\n" "help.text" msgid "delimiter: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character." -msgstr "" +msgstr "delimiter: Eine Zeichenfolge aus einem oder mehreren Zeichen, die als Trennzeichen verwendet werden. Das Standardtrennzeichen ist das ASCII-Leerzeichen \" \"." #. 3rGRu #: sf_string.xhp @@ -23108,7 +23108,7 @@ "par_id181580211833778\n" "help.text" msgid "occurrences: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings." -msgstr "" +msgstr "occurrences: Die maximale Anzahl der zurückzugebenden Teilzeichenfolgen. Der Standardwert ist 0, was bedeutet, dass die Anzahl der zurückzugebenden Zeichenfolgen unbegrenzt ist." #. W2og7 #: sf_string.xhp @@ -23117,7 +23117,7 @@ "par_id421599123777334\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote." -msgstr "" +msgstr "quotechar: Entweder das einfache (') oder das doppelte (\") Anführungszeichen." #. DiYMJ #: sf_string.xhp @@ -23126,7 +23126,7 @@ "par_id661627251379676\n" "help.text" msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them." -msgstr "" +msgstr "Achten Sie bei der Darstellung von Zeichenfolgen auf die Unterschiede zwischen Basic und Python. Beispielsweise werden in Basic zwei doppelte Anführungszeichen (\"\") innerhalb einer Zeichenfolge als einzelnes doppeltes Anführungszeichen (\") interpretiert. In Python können in einfache Anführungszeichen eingeschlossene Zeichenfolgen doppelte Anführungszeichen (\") enthalten, ohne sie verdoppeln zu müssen." #. 6Q2tJ #: sf_string.xhp @@ -23135,7 +23135,7 @@ "par_id771580212837884\n" "help.text" msgid "Returns True if the first characters of a string are identical to a given substring." -msgstr "" +msgstr "Gibt True zurück, wenn die ersten Zeichen einer Zeichenfolge mit einer gegebenen Teilzeichenfolge identisch sind." #. BYx4G #: sf_string.xhp @@ -23144,7 +23144,7 @@ "par_id781612393174350\n" "help.text" msgid "This method returns False if either the input string or the substring have a length = 0 or when the substring is longer than the input string." -msgstr "" +msgstr "Diese Methode gibt False zurück, wenn entweder die Eingabezeichenfolge oder die Teilzeichenfolge eine Länge = 0 haben oder wenn die Teilzeichenfolge länger als die Eingabezeichenfolge ist." #. jrzxu #: sf_string.xhp @@ -23153,7 +23153,7 @@ "par_id271580212876135\n" "help.text" msgid "inputstr: The string to be tested." -msgstr "" +msgstr "inputstr: Die zu testende Zeichenfolge." #. tE9WD #: sf_string.xhp @@ -23162,7 +23162,7 @@ "par_id571580212889462\n" "help.text" msgid "substring: The substring to be searched at the start of inputstr." -msgstr "" +msgstr "substring: Die zu durchsuchende Teilzeichenfolge am Anfang von inputstr." #. ZeQP4 #: sf_string.xhp @@ -23171,7 +23171,7 @@ "par_id811580212900799\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = False)." #. DGgBx #: sf_string.xhp @@ -23180,7 +23180,7 @@ "par_id911580295999690\n" "help.text" msgid "Returns the input string without its leading and trailing whitespaces." -msgstr "" +msgstr "Gibt die Eingabezeichenfolge ohne die führenden und abschließenden Leerzeichen zurück." #. BESEu #: sf_string.xhp @@ -23189,7 +23189,7 @@ "par_id541580296044377\n" "help.text" msgid "inputstr: The string to trim." -msgstr "" +msgstr "inputstr: Die zu trimmende Zeichenfolge." #. 9t9vX #: sf_string.xhp @@ -23198,7 +23198,7 @@ "par_id61580483096936\n" "help.text" msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character." -msgstr "" +msgstr "Konvertiert jede maskierte Sequenz (\\\\, \\n, \\r, \\t) in der Eingabezeichenfolge in das entsprechende ASCII-Zeichen." #. mzTsG #: sf_string.xhp @@ -23207,7 +23207,7 @@ "par_id971580483124743\n" "help.text" msgid "inputstr: The string to be converted." -msgstr "" +msgstr "inputstr: Die zu konvertierende Zeichenfolge." #. BoYHV #: sf_string.xhp @@ -23216,7 +23216,7 @@ "par_id831580213634029\n" "help.text" msgid "Removes the single or double quotes enclosing the input string." -msgstr "" +msgstr "Entfernt die einfachen oder doppelten Anführungszeichen, welche die Eingabezeichenfolge einschließen." #. Ae8c5 #: sf_string.xhp @@ -23225,7 +23225,7 @@ "par_id811612393585600\n" "help.text" msgid "This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Dies ist nützlich, wenn CSV-ähnliche Datensätze analysiert werden, die Zeichenfolgen in Anführungszeichen enthalten." #. BhVvp #: sf_string.xhp @@ -23234,7 +23234,7 @@ "par_id761580213677493\n" "help.text" msgid "inputstr: The string to unquote." -msgstr "" +msgstr "inputstr: Die Zeichenfolge, deren Anführungszeichen entfernt werden sollen." #. gRUHA #: sf_string.xhp @@ -23243,7 +23243,7 @@ "par_id211599129509890\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar: Entweder das einfache (') oder das doppelte (\") Anführungszeichen (Standard)." #. nGq4Q #: sf_string.xhp @@ -23252,7 +23252,7 @@ "bas_id371580213702598\n" "help.text" msgid "' s = \"Some text\" (without enclosing quotes)" -msgstr "" +msgstr "' s = \"Some text\" (ohne einschließende Anführungszeichen)" #. Fp8ip #: sf_string.xhp @@ -23261,7 +23261,7 @@ "bas_id51580213693694\n" "help.text" msgid "' The string below does not have enclosing quotes, so it remains unchanged" -msgstr "" +msgstr "' Die folgende Zeichenfolge enthält keine einschließenden Anführungszeichen, sodass sie unverändert bleibt" #. A4Eki #: sf_string.xhp @@ -23270,7 +23270,7 @@ "bas_id961612393917830\n" "help.text" msgid "' s = \"Some text\" (unchanged)" -msgstr "" +msgstr "' s = \"Some text\" (unverändert)" #. ULtxx #: sf_string.xhp @@ -23279,7 +23279,7 @@ "bas_id461612394182689\n" "help.text" msgid "' Quotes inside the string are not removed" -msgstr "" +msgstr "' Anführungszeichen innerhalb der Zeichenfolge werden nicht entfernt" #. 8w4ia #: sf_string.xhp @@ -23288,7 +23288,7 @@ "bas_id961612394171208\n" "help.text" msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)" -msgstr "" +msgstr "' s = \"The \"\"true\"\" meaning\" (unverändert)" #. JGhWK #: sf_string.xhp @@ -23297,7 +23297,7 @@ "par_id871585834468102\n" "help.text" msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters." -msgstr "" +msgstr "Konvertiert die Eingabezeichenfolge in eine Matrix von Teilzeichenfolgen, sodass jedes Element in der Matrix höchstens eine bestimmte Anzahl von Zeichen enthält." #. 4G9FU #: sf_string.xhp @@ -23306,7 +23306,7 @@ "par_id21612394465120\n" "help.text" msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks." -msgstr "" +msgstr "In der Praxis gibt diese Methode eine nullbasierte Matrix von Ausgabezeilen ohne Zeilenumbrüche am Ende zurück, mit Ausnahme der bereits vorhandenen Zeilenumbrüche." #. qgd6X #: sf_string.xhp @@ -23315,7 +23315,7 @@ "par_id601612395193333\n" "help.text" msgid "Tabs are expanded using the same procedure performed by the ExpandTabs method." -msgstr "" +msgstr "Tabulatoren werden mit demselben Verfahren erweitert, das auch von der Methode ExpandTabs durchgeführt wird." #. kTwEG #: sf_string.xhp @@ -23324,7 +23324,7 @@ "par_id641612394826616\n" "help.text" msgid "Symbolic line breaks are replaced by their equivalent Ascii characters." -msgstr "" +msgstr "Symbolische Zeilenumbrüche werden durch die entsprechenden ASCII-Zeichen ersetzt." #. y7VvP #: sf_string.xhp @@ -23333,7 +23333,7 @@ "par_id361612394859733\n" "help.text" msgid "If the wrapped output has no content, the returned array is empty." -msgstr "" +msgstr "Wenn die verpackte Ausgabe keinen Inhalt hat, ist die zurückgegebene Matrix leer." #. SNRzH #: sf_string.xhp @@ -23342,7 +23342,7 @@ "par_id251585834468498\n" "help.text" msgid "inputstr: The string to wrap." -msgstr "" +msgstr "inputstr: Die umzubrechende Zeichenfolge." #. MiptC #: sf_string.xhp @@ -23351,7 +23351,7 @@ "par_id351585834773177\n" "help.text" msgid "width: The maximum number of characters in each line (Default = 70)." -msgstr "" +msgstr "width: Die maximale Anzahl von Zeichen in jeder Zeile (Standard = 70)." #. epG6z #: sf_string.xhp @@ -23360,7 +23360,7 @@ "par_id741585834874500\n" "help.text" msgid "tabsize: Before wrapping the text, the existing TAB Chr(9) characters are replaced with spaces. The argument tabsize defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)." -msgstr "" +msgstr "tabsize: Vor dem Umbruch des Textes werden die vorhandenen Tabulator-Zeichen Chr(9) durch Leerzeichen ersetzt. Das Argument tabsize definiert die Tabulatoren bei TabSize + 1, 2 * TabSize + 1 , … N * TabSize + 1 (Default = 8)." #. HjZDB #: sf_textstream.xhp @@ -23369,7 +23369,7 @@ "tit\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Dienst ScriptForge.TextStream" #. cEA5U #: sf_textstream.xhp @@ -23378,7 +23378,7 @@ "bm_id351585330787295\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Dienst ScriptForge.TextStream" #. nBJsE #: sf_textstream.xhp @@ -23387,7 +23387,7 @@ "par_id511585330787205\n" "help.text" msgid "The TextStream service is used to sequentially read from and write to files opened or created using the ScriptForge.FileSystem service." -msgstr "" +msgstr "Der Dienst TextStream wird verwendet, um sequentiell aus Dateien zu lesen und in Dateien zu schreiben, die mit dem Dienst ScriptForge.FileSystem geöffnet oder erstellt wurden." #. TeRTa #: sf_textstream.xhp @@ -23396,7 +23396,7 @@ "par_id41613596903894\n" "help.text" msgid "The methods OpenTextFile and CreateTextFile from the FileSystem service return an instance of the TextStream service." -msgstr "" +msgstr "Die Methoden OpenTextFile und CreateTextFile des Dienstes FileSystem geben eine Instanz des Dienstes TextStream zurück." #. MVFWC #: sf_textstream.xhp @@ -23405,7 +23405,7 @@ "par_id161585330787262\n" "help.text" msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system." -msgstr "" +msgstr "Zeilenbegrenzer können vom Benutzer angegeben werden. Bei Eingabeoperationen werden CR, LF oder CR+LF unterstützt. Bei Ausgabeoperationen ist das Standard-Zeilentrennzeichen dasjenige, das vom Betriebssystem verwendet wird." #. GDkir #: sf_textstream.xhp @@ -23414,7 +23414,7 @@ "par_id831613598137669\n" "help.text" msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the SF_String.sfNEWLINE property." -msgstr "" +msgstr "Auf das Zeilentrennzeichen für das Betriebssystem, in dem das Makro ausgeführt wird, kann über die Eigenschaft SF_String.sfNEWLINE zugegriffen werden." #. SvXzF #: sf_textstream.xhp @@ -23423,7 +23423,7 @@ "par_id851613597445432\n" "help.text" msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run." -msgstr "" +msgstr "Es wird davon ausgegangen, dass alle zum Lesen oder Schreiben in eine Datei erforderlichen Operationen (Öffnen, Lesen/Schreiben und Schließen) während derselben Makroausführung erfolgen." #. dc5KN #: sf_textstream.xhp @@ -23432,7 +23432,7 @@ "hd_id83158533078741\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Dienstaufruf" #. AuQX2 #: sf_textstream.xhp @@ -23441,7 +23441,7 @@ "par_id351613598192725\n" "help.text" msgid "The examples below in Basic and Python use the OpenTextFile method to create an instance of the TextStream Service." -msgstr "" +msgstr "Die folgenden Beispiele in Basic und Python verwenden die Methode OpenTextFile, um eine Instanz des Dienstes TextStream zu erstellen." #. UUudg #: sf_textstream.xhp @@ -23450,7 +23450,7 @@ "par_id371585330787197\n" "help.text" msgid "The file must be closed with the CloseFile method after all read or write operations have been executed:" -msgstr "" +msgstr "Nachdem alle Lese- oder Schreiboperationen ausgeführt wurden, muss die Datei mit der Methode CloseFile geschlossen werden:" #. zNveN #: sf_textstream.xhp @@ -23459,7 +23459,7 @@ "par_id891582733781994\n" "help.text" msgid "Optionally, the resources used by the TextStream instance can be released using the Dispose method:" -msgstr "" +msgstr "Optional können die von der Instanz TextStream verwendeten Ressourcen mit der Methode Dispose freigegeben werden:" #. nsGCZ #: sf_textstream.xhp @@ -23468,7 +23468,7 @@ "par_id121612917368946\n" "help.text" msgid "The methods in the TextStream service are mostly based on the XTextInputStream and XTextOutputStream UNO interfaces." -msgstr "" +msgstr "Die Methoden im Dienst TextStream basieren hauptsächlich auf den UNO-Schnittstellen XTextInputStream und XTextOutputStream." #. JAmgD #: sf_textstream.xhp @@ -23477,7 +23477,7 @@ "hd_id941585330787948\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschaften" #. aN9zM #: sf_textstream.xhp @@ -23486,7 +23486,7 @@ "par_id631585330787267\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. vwGC5 #: sf_textstream.xhp @@ -23504,7 +23504,7 @@ "par_id581585330787700\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. 6FDuM #: sf_textstream.xhp @@ -23522,7 +23522,7 @@ "par_id181585330787752\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YFkaY #: sf_textstream.xhp @@ -23531,7 +23531,7 @@ "par_id901585330787680\n" "help.text" msgid "Used in read mode. A True value indicates that the end of the file has been reached. A test using this property should precede calls to the ReadLine method." -msgstr "" +msgstr "Wird im Lesemodus verwendet. Ein Wert True gibt an, dass das Ende der Datei erreicht ist. Ein Test, der diese Eigenschaft verwendet, sollte Aufrufen der Methode ReadLine vorausgehen." #. EFEnA #: sf_textstream.xhp @@ -23540,7 +23540,7 @@ "par_id561585330787568\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. cVCoJ #: sf_textstream.xhp @@ -23549,7 +23549,7 @@ "par_id741585330787777\n" "help.text" msgid "The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "Der zu verwendende Zeichensatz. Die Standardcodierung ist „UTF-8“." #. p5s3X #: sf_textstream.xhp @@ -23558,7 +23558,7 @@ "par_id641585330787207\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JjEqX #: sf_textstream.xhp @@ -23567,7 +23567,7 @@ "par_id281585330787614\n" "help.text" msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the FileNaming property of the FileSystem service." -msgstr "" +msgstr "Gibt den Namen der aktuellen Datei entweder im URL-Format oder im Format des nativen Betriebssystems zurück, abhängig vom aktuellen Wert der Eigenschaft FileNaming des Dienstes FileSystem." #. goEnw #: sf_textstream.xhp @@ -23576,7 +23576,7 @@ "par_id111585330787410\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. MZS6Z #: sf_textstream.xhp @@ -23585,7 +23585,7 @@ "par_id861585330787417\n" "help.text" msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"." -msgstr "" +msgstr "Zeigt den Eingabe-/Ausgabemodus an. Mögliche Werte sind \"READ\", \"WRITE\" oder \"APPEND\"." #. 7nTb9 #: sf_textstream.xhp @@ -23594,7 +23594,7 @@ "par_id87158533078795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. j45gC #: sf_textstream.xhp @@ -23603,7 +23603,7 @@ "par_id561585330787741\n" "help.text" msgid "Returns the number of lines read or written so far." -msgstr "" +msgstr "Gibt die Anzahl der bisher gelesenen oder geschriebenen Zeilen zurück." #. CLAvQ #: sf_textstream.xhp @@ -23612,7 +23612,7 @@ "par_id531585330787157\n" "help.text" msgid "No" -msgstr "" +msgstr "Nein" #. rdA5M #: sf_textstream.xhp @@ -23621,7 +23621,7 @@ "par_id691585330787279\n" "help.text" msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system." -msgstr "" +msgstr "Legt das aktuelle Trennzeichen fest oder gibt es zurück, das zwischen zwei aufeinanderfolgend geschriebenen Zeilen eingefügt werden soll. Der Standardwert ist das native Zeilentrennzeichen im aktuellen Betriebssystem." #. dCeHZ #: sf_textstream.xhp @@ -23630,7 +23630,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "Um mehr über die Namen von Zeichensätzen zu erfahren, besuchen Sie die Seite IANA's Character Set. Beachten Sie, dass %PRODUCTNAME nicht alle vorhandenen Zeichensätze implementiert." #. hKJkD #: sf_textstream.xhp @@ -23639,7 +23639,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the TextStream Service" -msgstr "" +msgstr "Liste der Methoden im Dienst \"TextStream\"" #. DBBKM #: sf_textstream.xhp @@ -23648,7 +23648,7 @@ "par_id421585330787675\n" "help.text" msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns True if the file was successfully closed." -msgstr "" +msgstr "Schließt den aktuellen Eingabe- oder Ausgabestream und leert gegebenenfalls den Ausgabepuffer. Gibt True zurück, wenn die Datei erfolgreich geschlossen wurde." #. MCW3q #: sf_textstream.xhp @@ -23657,7 +23657,7 @@ "par_id65158533078799\n" "help.text" msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed." -msgstr "" +msgstr "Gibt alle verbleibenden Zeilen im Textstrom als einzelne Zeichenfolge zurück. Zeilenumbrüche werden nicht entfernt." #. Vr34D #: sf_textstream.xhp @@ -23666,7 +23666,7 @@ "par_id71613600347125\n" "help.text" msgid "The resulting string can be split in lines either by using the Split built-in Basic function if the line delimiter is known, or with the SF_String.SplitLines method." -msgstr "" +msgstr "Die resultierende Zeichenfolge kann entweder mit der eingebauten Basic-Funktion Split in Zeilen aufgeteilt werden, wenn das Zeilentrennzeichen bekannt ist, oder mit der Methode SF_String.SplitLines." #. VRLGn #: sf_textstream.xhp @@ -23675,7 +23675,7 @@ "par_id91585330787373\n" "help.text" msgid "For large files, using the ReadAll method wastes memory resources. In such cases it is recommended to read the file line by line using the ReadLine method." -msgstr "" +msgstr "Bei großen Dateien verschwendet die Verwendung der Methode ReadAll Speicherressourcen. In solchen Fällen empfiehlt es sich, die Datei Zeile für Zeile mit der Methode ReadLine zu lesen." #. BuBVA #: sf_textstream.xhp @@ -23684,7 +23684,7 @@ "par_id921613595637851\n" "help.text" msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):" -msgstr "" +msgstr "Betrachten Sie die Textdatei \"Students.txt\" mit folgendem Inhalt (ein Name in jeder Zeile):" #. hk7q4 #: sf_textstream.xhp @@ -23693,7 +23693,7 @@ "par_id391613596019750\n" "help.text" msgid "The examples below in Basic and Python use the ReadAll and SplitLines methods to read the contents of the file into an array of strings:" -msgstr "" +msgstr "Die folgenden Beispiele in Basic und Python verwenden die Methoden ReadAll und SplitLines, um den Inhalt der Datei in eine Matrix von Zeichenfolgen einzulesen:" #. BuRJE #: sf_textstream.xhp @@ -23702,7 +23702,7 @@ "bas_id251613595640550\n" "help.text" msgid "'Loads the FileSystem service" -msgstr "" +msgstr "' Lädt den Dienst \"FileSystem\"" #. L2a3D #: sf_textstream.xhp @@ -23711,7 +23711,7 @@ "bas_id181613595641087\n" "help.text" msgid "'Opens the text file with the names to be read" -msgstr "" +msgstr "' Öffnet die Textdatei mit den auszulesenden Namen" #. 7Fq9E #: sf_textstream.xhp @@ -23720,7 +23720,7 @@ "par_id871585330787885\n" "help.text" msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string." -msgstr "" +msgstr "Gibt die nächste Zeile im Textstrom als Zeichenfolge zurück. Zeilenumbrüche werden aus der zurückgegebenen Zeichenfolge entfernt." #. 6iDcF #: sf_textstream.xhp @@ -23729,7 +23729,7 @@ "par_id431613600221626\n" "help.text" msgid "The AtEndOfStream test should precede the ReadLine method like in the example below." -msgstr "" +msgstr "Der Test AtEndOfStream sollte der Methode ReadLine vorangehen, wie im Beispiel unten." #. GRRkq #: sf_textstream.xhp @@ -23738,7 +23738,7 @@ "par_id171585330787774\n" "help.text" msgid "An error will be raised if the AtEndOfStream was reached during the previous ReadLine or SkipLine method call." -msgstr "" +msgstr "Ein Fehler wird ausgelöst, wenn AtEndOfStream während des vorherigen Methodenaufrufs ReadLine oder SkipLine erreicht wurde." #. mAty4 #: sf_textstream.xhp @@ -23747,7 +23747,7 @@ "par_id11585330787847\n" "help.text" msgid "Skips the next line in the input stream when reading a TextStream file." -msgstr "" +msgstr "Überspringt die nächste Zeile im Eingabestrom beim Lesen einer Datei TextStream." #. FDMJB #: sf_textstream.xhp @@ -23756,7 +23756,7 @@ "par_id441613600704766\n" "help.text" msgid "This method can result in AtEndOfStream being set to True." -msgstr "" +msgstr "Diese Methode kann dazu führen, dass AtEndOfStream auf True gesetzt wird." #. D4JVb #: sf_textstream.xhp @@ -23765,7 +23765,7 @@ "par_id141585330787657\n" "help.text" msgid "Writes a specified number of empty lines to the output stream." -msgstr "" +msgstr "Schreibt eine angegebene Anzahl leerer Zeilen in den Ausgabestrom." #. YsBUm #: sf_textstream.xhp @@ -23774,7 +23774,7 @@ "par_id291585330787357\n" "help.text" msgid "lines: The number of empty lines to write to the file." -msgstr "" +msgstr "lines: Die Anzahl der leeren Zeilen, die in die Datei geschrieben werden sollen." #. GCPCC #: sf_textstream.xhp @@ -23783,7 +23783,7 @@ "par_id101585330787215\n" "help.text" msgid "Writes the given string to the output stream as a single line." -msgstr "" +msgstr "Schreibt die angegebene Zeichenfolge als einzelne Zeile in den Ausgabestrom." #. Eska7 #: sf_textstream.xhp @@ -23792,7 +23792,7 @@ "par_id421613601002074\n" "help.text" msgid "The character defined in the NewLine property is used as the line delimiter." -msgstr "" +msgstr "Als Zeilentrennzeichen wird das in der Eigenschaft NewLine definierte Zeichen verwendet." #. LXFPE #: sf_textstream.xhp @@ -23801,7 +23801,7 @@ "par_id491585330787650\n" "help.text" msgid "line: The line to write, may be empty." -msgstr "" +msgstr "line: Die zu schreibende Zeile, kann leer sein." #. PM5Bx #: sf_textstream.xhp @@ -23810,7 +23810,7 @@ "par_id821626894480105\n" "help.text" msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until lastValue is reached." -msgstr "" +msgstr "Die folgenden Beispiele in Basic und Python erstellen eine Textdatei im CSV-Format, in der jede Zeile einen Wert und sein Quadrat enthält, bis lastValue erreicht ist." #. 39u4o #: sf_textstream.xhp @@ -23819,7 +23819,7 @@ "bas_id21613321528612\n" "help.text" msgid "'Instantiates the FileSystem Service" -msgstr "" +msgstr "' Instanziiert den Dienst \"FileSystem\"" #. FnTiG #: sf_textstream.xhp @@ -23828,7 +23828,7 @@ "bas_id191613321529277\n" "help.text" msgid "'Creates a text file" -msgstr "" +msgstr "' Erzeugt eine Textdatei" #. f5RSB #: sf_textstream.xhp @@ -23837,7 +23837,7 @@ "bas_id641613321530181\n" "help.text" msgid "'Writes the Value and Value squared, separated by \";\"" -msgstr "" +msgstr "' Schreibt den Wert und den Wert zum Quadrat, getrennt durch \";\"" #. FCowk #: sf_textstream.xhp @@ -23846,7 +23846,7 @@ "bas_id141613321530960\n" "help.text" msgid "myFile.WriteLine(\"Value;Value Squared\")" -msgstr "" +msgstr "myFile.WriteLine(\"Value;Value Squared\")" #. m9Mo4 #: sf_textstream.xhp @@ -23855,7 +23855,7 @@ "bas_id881613321532598\n" "help.text" msgid "'Closes the file and free resources" -msgstr "" +msgstr "' Schließt die Datei und gibt Ressourcen frei" #. PCSPY #: sf_timer.xhp @@ -23864,7 +23864,7 @@ "tit\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Dienst ScriptForge.Timer" #. cxRDS #: sf_timer.xhp @@ -23873,7 +23873,7 @@ "hd_id731582733781114\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Dienst ScriptForge.Timer" #. WyVvH #: sf_timer.xhp @@ -23882,7 +23882,7 @@ "par_id961582733781662\n" "help.text" msgid "The Timer service measures the amount of time it takes to run user scripts." -msgstr "" +msgstr "Der Dienst Timer misst die Zeit, die zum Ausführen von Benutzerskripten benötigt wird." #. qDa8E #: sf_timer.xhp @@ -23891,7 +23891,7 @@ "par_id181582733781323\n" "help.text" msgid "A Timer measures durations. It can be:" -msgstr "" +msgstr "Timer misst die Dauer. Es kann sein:" #. ErpLm #: sf_timer.xhp @@ -23900,7 +23900,7 @@ "par_id711582733781252\n" "help.text" msgid "Started, to indicate when to start measuring time." -msgstr "" +msgstr "Gestartet, um anzugeben, wann die Zeitmessung beginnen soll." #. NAAFg #: sf_timer.xhp @@ -23909,7 +23909,7 @@ "par_id631582733781431\n" "help.text" msgid "Suspended, to pause measuring running time." -msgstr "" +msgstr "Angehalten, um die Messung der Laufzeit zu unterbrechen." #. nt9Qc #: sf_timer.xhp @@ -23918,7 +23918,7 @@ "par_id691582733781498\n" "help.text" msgid "Resumed, to continue tracking running time after the Timer has been suspended." -msgstr "" +msgstr "Fortgesetzt, um die Laufzeit fortzusetzen, nachdem der Timer ausgesetzt wurde." #. DVCBM #: sf_timer.xhp @@ -23927,7 +23927,7 @@ "par_id31582733781344\n" "help.text" msgid "Restarted, which will cancel previous measurements and start the Timer at zero." -msgstr "" +msgstr "Neu gestartet, wodurch frühere Messungen abgebrochen und der Timer bei Null gestartet wird." #. dm7yA #: sf_timer.xhp @@ -23936,7 +23936,7 @@ "par_id991582733781280\n" "help.text" msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds" -msgstr "" +msgstr "Die Dauer wird in Sekunden mit einer Genauigkeit von 3 Dezimalstellen (Millisekunden) ausgedrückt. Ein Wert von 12,345 bedeutet 12 Sekunden und 345 Millisekunden" #. CVhDR #: sf_timer.xhp @@ -23945,7 +23945,7 @@ "hd_id201582733781265\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Dienstaufruf" #. SCYEX #: sf_timer.xhp @@ -23954,7 +23954,7 @@ "par_id891610734806133\n" "help.text" msgid "The example below creates a Timer object named myTimer and starts it immediately." -msgstr "" +msgstr "Das folgende Beispiel erstellt ein Objekt Timer namens myTimer und startet es sofort." #. CnZqc #: sf_timer.xhp @@ -23963,7 +23963,7 @@ "par_id891582733781994\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Es wird empfohlen, Ressourcen nach der Verwendung freizugeben:" #. 8h3fp #: sf_timer.xhp @@ -23972,7 +23972,7 @@ "hd_id521582733781450\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschaften" #. dVncX #: sf_timer.xhp @@ -23981,7 +23981,7 @@ "par_id71582733781260\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. hFnkK #: sf_timer.xhp @@ -23999,7 +23999,7 @@ "par_id76158273378122\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. 7zFYh #: sf_timer.xhp @@ -24017,7 +24017,7 @@ "par_id621582733781588\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 9yDgM #: sf_timer.xhp @@ -24026,7 +24026,7 @@ "par_id731582733781476\n" "help.text" msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)" -msgstr "" +msgstr "Die tatsächliche Laufzeit, die seit dem Start oder zwischen Start und Stopp verstrichen ist (unterbrochene Zeit wird nicht berücksichtigt)" #. ThAaG #: sf_timer.xhp @@ -24035,7 +24035,7 @@ "par_id301582733781498\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. tqpDU #: sf_timer.xhp @@ -24044,7 +24044,7 @@ "par_id401582733781608\n" "help.text" msgid "True when timer is started or suspended" -msgstr "" +msgstr "True, wenn der Timer gestartet oder angehalten wird" #. pSPgk #: sf_timer.xhp @@ -24053,7 +24053,7 @@ "par_id181582733781551\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. SGyi4 #: sf_timer.xhp @@ -24062,7 +24062,7 @@ "par_id161582733781328\n" "help.text" msgid "True when timer is started and suspended" -msgstr "" +msgstr "True wenn der Timer gestartet und angehalten wird" #. qoNpD #: sf_timer.xhp @@ -24071,7 +24071,7 @@ "par_id651582733781874\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. E45MD #: sf_timer.xhp @@ -24080,7 +24080,7 @@ "par_id171582733781456\n" "help.text" msgid "The actual time elapsed while suspended since start or between start and stop" -msgstr "" +msgstr "Die tatsächlich verstrichene Zeit während der Unterbrechung, seit dem Start oder zwischen Start und Stopp" #. gxF8S #: sf_timer.xhp @@ -24089,7 +24089,7 @@ "par_id141582733781303\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. FeCob #: sf_timer.xhp @@ -24098,7 +24098,7 @@ "par_id411582733781932\n" "help.text" msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)" -msgstr "" +msgstr "Die tatsächlich verstrichene Zeit seit dem Start oder zwischen Start und Stopp (einschließlich Unterbrechungen und Laufzeit)" #. Mav4g #: sf_timer.xhp @@ -24107,7 +24107,7 @@ "hd_id141582734141895\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. P8RQj #: sf_timer.xhp @@ -24116,7 +24116,7 @@ "par_id291582734377752\n" "help.text" msgid "All methods do not require arguments and return a Boolean value." -msgstr "" +msgstr "Alle Methoden benötigen keine Argumente und geben einen booleschen Wert zurück." #. onEib #: sf_timer.xhp @@ -24125,7 +24125,7 @@ "par_id311582734894257\n" "help.text" msgid "If the returned value is False, then nothing happened." -msgstr "" +msgstr "Wenn der zurückgegebene Wert False ist, ist nichts passiert." #. U82Do #: sf_timer.xhp @@ -24134,7 +24134,7 @@ "par_id871582734180676\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. 6oGwx #: sf_timer.xhp @@ -24152,7 +24152,7 @@ "par_id911582734180676\n" "help.text" msgid "Returned value" -msgstr "" +msgstr "Zurückgegebener Wert" #. 6DJTP #: sf_timer.xhp @@ -24161,7 +24161,7 @@ "par_id301582734180676\n" "help.text" msgid "Resumes the Timer if it has been suspended" -msgstr "" +msgstr "Setzt den Timer fort, wenn er angehalten wurde" #. ixF7A #: sf_timer.xhp @@ -24170,7 +24170,7 @@ "par_id661582734180676\n" "help.text" msgid "False if the timer is not suspended" -msgstr "" +msgstr "False, wenn der Timer nicht angehalten wurde" #. AAozF #: sf_timer.xhp @@ -24179,7 +24179,7 @@ "par_id821582734649305\n" "help.text" msgid "Terminates the Timer and discards its current property values, restarting as a new clean Timer" -msgstr "" +msgstr "Beendet den Timer, verwirft seine aktuellen Eigenschaftswerte und startet als neuer Timer neu" #. UtCTT #: sf_timer.xhp @@ -24188,7 +24188,7 @@ "par_id761582734649305\n" "help.text" msgid "False if the timer is inactive" -msgstr "" +msgstr "False wenn der Timer inaktiv ist" #. AkgAy #: sf_timer.xhp @@ -24197,7 +24197,7 @@ "par_id641582734802443\n" "help.text" msgid "Starts a new clean timer" -msgstr "" +msgstr "Startet einen neuen Timer" #. B4gTh #: sf_timer.xhp @@ -24206,7 +24206,7 @@ "par_id921582734802443\n" "help.text" msgid "False if the timer is already started" -msgstr "" +msgstr "False wenn der Timer bereits gestartet ist" #. D7CoH #: sf_timer.xhp @@ -24215,7 +24215,7 @@ "par_id81582734905507\n" "help.text" msgid "Suspends a running timer" -msgstr "" +msgstr "Unterbricht einen laufenden Timer" #. YbeSJ #: sf_timer.xhp @@ -24224,7 +24224,7 @@ "par_id661582734905507\n" "help.text" msgid "False if the timer is not started or already suspended" -msgstr "" +msgstr "False, wenn der Timer nicht gestartet oder bereits angehalten wurde" #. sgXra #: sf_timer.xhp @@ -24233,7 +24233,7 @@ "par_id861582734996722\n" "help.text" msgid "Stops a running timer" -msgstr "" +msgstr "Stoppt einen laufenden Timer" #. WkCCC #: sf_timer.xhp @@ -24242,7 +24242,7 @@ "par_id381582734996722\n" "help.text" msgid "False if the timer is neither started nor suspended" -msgstr "" +msgstr "False wenn der Timer weder gestartet noch angehalten ist" #. DuD3h #: sf_timer.xhp @@ -24251,7 +24251,7 @@ "par_id731626871820490\n" "help.text" msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the Timer service." -msgstr "" +msgstr "Die folgenden Beispiele in Basic und Python veranschaulichen die Verwendung der Methoden und Eigenschaften im Dienst Timer." #. UgBnC #: sf_timer.xhp @@ -24260,7 +24260,7 @@ "bas_id141582735926821\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as suspended time" -msgstr "" +msgstr "' Die verstrichene Zeit, während der Dialog geöffnet war, wird als unterbrochene Zeit gezählt" #. 4jHcj #: sf_timer.xhp @@ -24269,7 +24269,7 @@ "bas_id901582735961725\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as running time" -msgstr "" +msgstr "' Die verstrichene Zeit, während der Dialog geöffnet war, wird als Laufzeit gezählt" #. 7QhZU #: sf_timer.xhp @@ -24278,7 +24278,7 @@ "bas_id941610739926687\n" "help.text" msgid "'Shows the final time measurements" -msgstr "" +msgstr "' Zeigt die letzten Zeitmessungen" #. J6XGB #: sf_timer.xhp @@ -24287,7 +24287,7 @@ "par_id281610740093006\n" "help.text" msgid "If you call the Terminate method, subsequent calls for the Continue method will not resume time measurement. Similarly, after a Timer has been terminated, calling the Start method will restart it as if it were a clean new Timer." -msgstr "" +msgstr "Wenn Sie die Methode Terminate aufrufen, setzen nachfolgende Aufrufe der Methode Continue die Zeitmessung nicht fort. In ähnlicher Weise wird ein Timer, nachdem er beendet wurde, durch Aufrufen der Methode Start neu gestartet, als wäre er ein neuer Timer." #. DSYKj #: sf_timer.xhp @@ -24296,7 +24296,7 @@ "par_id391626872019832\n" "help.text" msgid "Beware that the Wait function in Basic takes in a duration argument in milliseconds whereas the sleep function in Python uses seconds in its argument." -msgstr "" +msgstr "Beachten Sie, dass die Funktion Wait in Basic ein Argument für die Dauer in Millisekunden akzeptiert, während die Funktion sleep in Python Sekunden in ihrem Argument verwendet." #. bHEyr #: sf_timer.xhp @@ -24305,7 +24305,7 @@ "hd_id431610989623086\n" "help.text" msgid "Working with Multiple Timers" -msgstr "" +msgstr "Arbeiten mit mehreren Timern" #. dr779 #: sf_timer.xhp @@ -24314,7 +24314,7 @@ "par_id741610989639201\n" "help.text" msgid "It is possible to instantiate multiple Timer services in parallel, which gives flexibility in measuring time in different parts of the code." -msgstr "" +msgstr "Es ist möglich, mehrere Dienste Timer parallel zu instanziieren, wodurch die Zeit in verschiedenen Teilen des Codes flexibel gemessen werden kann." #. ueLgB #: sf_timer.xhp @@ -24323,7 +24323,7 @@ "par_id921610989722908\n" "help.text" msgid "The following example illustrates how to create two Timer objects and start them separately." -msgstr "" +msgstr "Das folgende Beispiel veranschaulicht, wie zwei Objekte Timer erstellt und separat gestartet werden." #. PtA4E #: sf_timer.xhp @@ -24332,7 +24332,7 @@ "bas_id481610989853679\n" "help.text" msgid "'Starts myTimerA" -msgstr "" +msgstr "' Startet myTimerA" #. VUdGW #: sf_timer.xhp @@ -24341,7 +24341,7 @@ "bas_id331610989849501\n" "help.text" msgid "'Starts myTimerB" -msgstr "" +msgstr "' Startet myTimerB" #. t98Fv #: sf_timer.xhp @@ -24350,7 +24350,7 @@ "bas_id931610989837747\n" "help.text" msgid "'Terminate both timers" -msgstr "" +msgstr "' Beenden Sie beide Timer" #. dphFv #: sf_ui.xhp @@ -24359,7 +24359,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Dienst ScriptForge.UI" #. QWA6E #: sf_ui.xhp @@ -24368,7 +24368,7 @@ "hd_id371587913266310\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Dienst ScriptForge.UI" #. cAtxQ #: sf_ui.xhp @@ -24377,7 +24377,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "Der Dienst UI (User Interface) vereinfacht die Identifizierung und Handhabung der verschiedenen Fenster, aus denen sich die gesamte %PRODUCTNAME-Anwendung zusammensetzt:" #. nTqj5 #: sf_ui.xhp @@ -24386,7 +24386,7 @@ "par_id591587913266547\n" "help.text" msgid "Windows selection" -msgstr "" +msgstr "Fensterauswahl" #. 45jFA #: sf_ui.xhp @@ -24395,7 +24395,7 @@ "par_id511587913266292\n" "help.text" msgid "Windows moving and resizing" -msgstr "" +msgstr "Fenster verschieben und skalieren" #. UKRyn #: sf_ui.xhp @@ -24404,7 +24404,7 @@ "par_id51587913266596\n" "help.text" msgid "Statusbar settings" -msgstr "" +msgstr "Statusleisten-Einstellungen" #. oj2kC #: sf_ui.xhp @@ -24413,7 +24413,7 @@ "par_id401599404339702\n" "help.text" msgid "Display of a floating progress bar" -msgstr "" +msgstr "Anzeige eines schwebenden Fortschrittsbalkens" #. iE5hR #: sf_ui.xhp @@ -24422,7 +24422,7 @@ "par_id761587913266388\n" "help.text" msgid "Creation of new windows" -msgstr "" +msgstr "Erstellung neuer Fenster" #. Dxuyy #: sf_ui.xhp @@ -24431,7 +24431,7 @@ "par_id591587913266489\n" "help.text" msgid "Access to the underlying \"documents\"" -msgstr "" +msgstr "Zugriff auf die zugrunde liegenden \"Dokumente\"" #. W5BL2 #: sf_ui.xhp @@ -24440,7 +24440,7 @@ "par_id181620312953395\n" "help.text" msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script." -msgstr "" +msgstr "Der Dienst UI ist der Ausgangspunkt zum Öffnen, Erstellen oder Zugreifen auf den Inhalt neuer oder bestehender Dokumente aus einem Benutzerskript." #. ERvRF #: sf_ui.xhp @@ -24449,7 +24449,7 @@ "hd_id881587913266307\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definitionen" #. L8Ate #: sf_ui.xhp @@ -24458,7 +24458,7 @@ "par_id741587913266919\n" "help.text" msgid "A window can be designated using various ways:" -msgstr "" +msgstr "Ein Fenster kann auf verschiedene Arten bezeichnet werden:" #. Bhs9h #: sf_ui.xhp @@ -24467,7 +24467,7 @@ "par_id291587913946648\n" "help.text" msgid "a full path and file name" -msgstr "" +msgstr "ein vollständiger Pfad und Dateiname" #. CK62z #: sf_ui.xhp @@ -24476,7 +24476,7 @@ "par_id991587914045862\n" "help.text" msgid "the last component of the full file name or even only the last component without its suffix" -msgstr "" +msgstr "der letzte Bestandteil des vollständigen Dateinamens oder auch nur der letzte Bestandteil ohne sein Suffix" #. 8qLrG #: sf_ui.xhp @@ -24485,7 +24485,7 @@ "par_id541587914079744\n" "help.text" msgid "the title of the window" -msgstr "" +msgstr "der Titel des Fensters" #. rdSGt #: sf_ui.xhp @@ -24494,7 +24494,7 @@ "par_id191587914134221\n" "help.text" msgid "for new documents, something like \"Untitled 1\"" -msgstr "" +msgstr "für neue Dokumente so etwas wie \"Unbenannt 1\"" #. GrAxe #: sf_ui.xhp @@ -24503,7 +24503,7 @@ "par_id911587914185746\n" "help.text" msgid "one of the special windows \"BASICIDE\" and \"WELCOMESCREEN\"" -msgstr "" +msgstr "eines der Spezialfenster \"BASICIDE\" und \"WELCOMESCREEN\"" #. n5ZLz #: sf_ui.xhp @@ -24512,7 +24512,7 @@ "par_id181587914255236\n" "help.text" msgid "The window name is case-sensitive." -msgstr "" +msgstr "Beim Fensternamen wird zwischen Groß- und Kleinschreibung unterschieden." #. CC5D5 #: sf_ui.xhp @@ -24521,7 +24521,7 @@ "hd_id541588520711430\n" "help.text" msgid "Document object" -msgstr "" +msgstr "Objekt \"Document\"" #. utsAW #: sf_ui.xhp @@ -24530,7 +24530,7 @@ "par_id841588521238711\n" "help.text" msgid "The methods CreateDocument, CreateBaseDocument, GetDocument and OpenDocument, described below, generate document objects. When a window contains a document, an instance of the Document class represents that document. A counterexample the Basic IDE is not a document but is a window in our terminology. Additionally a document has a type: Calc, Impress, Writer, ..." -msgstr "" +msgstr "Die unten beschriebenen Methoden CreateDocument, CreateBaseDocument, GetDocument und OpenDocument erzeugen Objekte \"Document\". Wenn ein Fenster ein Dokument enthält, repräsentiert eine Instanz der Klasse Document dieses Dokument. Ein Gegenbeispiel: Die Basic IDE ist kein Dokument, sondern ein Fenster in unserer Terminologie. Zusätzlich hat ein Dokument einen Typ: Calc, Impress, Writer, …" #. CbJ8H #: sf_ui.xhp @@ -24539,7 +24539,7 @@ "par_id331588521254916\n" "help.text" msgid "The specific properties and methods applicable on documents are implemented in a document class." -msgstr "" +msgstr "Die spezifischen Eigenschaften und Methoden, die auf Dokumente anwendbar sind, werden in einer Klasse \"Document\" implementiert." #. CEisb #: sf_ui.xhp @@ -24548,7 +24548,7 @@ "par_id971588521292976\n" "help.text" msgid "The implementation of the document objects class is done in the SFDocuments associated library. See its \"Document\" service." -msgstr "" +msgstr "Die Implementierung der Dokumentobjektklasse erfolgt in der zugehörigen Bibliothek SFDocuments. Siehe Dienst \"Document\"." #. 8NGPA #: sf_ui.xhp @@ -24557,7 +24557,7 @@ "hd_id91587913266988\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Dienstaufruf" #. 2tFG6 #: sf_ui.xhp @@ -24566,7 +24566,7 @@ "hd_id841587913266618\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschaften" #. m8i6L #: sf_ui.xhp @@ -24575,7 +24575,7 @@ "par_id521587913266568\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. 48SHW #: sf_ui.xhp @@ -24593,7 +24593,7 @@ "par_id631587914939732\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. nB9z5 #: sf_ui.xhp @@ -24611,7 +24611,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. vQ8TT #: sf_ui.xhp @@ -24620,7 +24620,7 @@ "par_id351587913266349\n" "help.text" msgid "a valid and unique WindowName for the currently active window. When the window cannot be identified, a zero-length string is returned." -msgstr "" +msgstr "ein gültiger und eindeutiger WindowName für das aktuell aktive Fenster. Wenn das Fenster nicht identifiziert werden kann, wird eine Zeichenfolge der Länge Null zurückgegeben." #. DiCRC #: sf_ui.xhp @@ -24629,7 +24629,7 @@ "par_id658517913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Bjyuv #: sf_ui.xhp @@ -24638,7 +24638,7 @@ "par_id153587913266349\n" "help.text" msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents." -msgstr "" +msgstr "Die Liste der aktuell geöffneten Dokumente. Sonderfenster werden ignoriert. Diese Liste besteht aus einer nullbasierten eindimensionalen Matrix entweder aus Dateinamen (in der Notation SF_FileSystem.FileNaming) oder aus Fenstertiteln für nicht gespeicherte Dokumente." #. BH9YJ #: sf_ui.xhp @@ -24647,7 +24647,7 @@ "hd_id511620762163390\n" "help.text" msgid "Constants" -msgstr "" +msgstr "Konstanten" #. ziD2D #: sf_ui.xhp @@ -24656,7 +24656,7 @@ "par_id761620761856238\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. eBD6E #: sf_ui.xhp @@ -24665,7 +24665,7 @@ "par_id591620761856238\n" "help.text" msgid "Value" -msgstr "" +msgstr "Wert" #. 2DU4R #: sf_ui.xhp @@ -24674,7 +24674,7 @@ "par_id711620761856238\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. adCUF #: sf_ui.xhp @@ -24683,7 +24683,7 @@ "par_id341620761856238\n" "help.text" msgid "Macros are always executed" -msgstr "" +msgstr "Makros werden immer ausgeführt" #. 7hEDg #: sf_ui.xhp @@ -24692,7 +24692,7 @@ "par_id101620761893011\n" "help.text" msgid "Macros are never executed" -msgstr "" +msgstr "Makros werden nie ausgeführt" #. 6Jgt7 #: sf_ui.xhp @@ -24701,7 +24701,7 @@ "par_id11620761899780\n" "help.text" msgid "Macro execution depends on user settings" -msgstr "" +msgstr "Die Makroausführung hängt von den Benutzereinstellungen ab" #. BTUQ4 #: sf_ui.xhp @@ -24710,7 +24710,7 @@ "par_id311620312548992\n" "help.text" msgid "The examples below show a MsgBox with the names of all currently open documents." -msgstr "" +msgstr "Die folgenden Beispiele zeigen eine MsgBox mit den Namen aller derzeit geöffneten Dokumente." #. DfpBz #: sf_ui.xhp @@ -24719,7 +24719,7 @@ "par_id881608131596153\n" "help.text" msgid "List of Methods in the UI Service" -msgstr "" +msgstr "Liste der Methoden im Dienst \"UI\"" #. 4fc2p #: sf_ui.xhp @@ -24728,7 +24728,7 @@ "par_id431620322170443\n" "help.text" msgid "Note, as an exception, that the methods marked (*) are not applicable to Base documents." -msgstr "" +msgstr "Beachten Sie als Ausnahme, dass die mit (*) gekennzeichneten Methoden nicht auf Base-Dokumente anwendbar sind." #. 778Fh #: sf_ui.xhp @@ -24737,7 +24737,7 @@ "par_id201587913266596\n" "help.text" msgid "Make the specified window active. The method returns True if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection." -msgstr "" +msgstr "Aktiviert das angegebene Fenster. Die Methode gibt True zurück, wenn das angegebene Fenster gefunden wird und aktiviert werden kann. Es gibt keine Änderung in der eigentlichen Benutzeroberfläche, wenn kein Fenster der Auswahl entspricht." #. w9DR4 #: sf_ui.xhp @@ -24746,7 +24746,7 @@ "par_id381587913266946\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname: siehe obige Definitionen." #. 5kwSb #: sf_ui.xhp @@ -24755,7 +24755,7 @@ "par_id13159655484952\n" "help.text" msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a Document service instance." -msgstr "" +msgstr "Erstellt und speichert ein neues %PRODUCTNAME-Base-Dokument, das eine leere Datenbank des angegebenen Typs einbettet. Die Methode gibt eine Dienstinstanz Document zurück." #. gqGpB #: sf_ui.xhp @@ -24764,7 +24764,7 @@ "par_id441596554849949\n" "help.text" msgid "filename : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning" -msgstr "" +msgstr "filename: Identifiziert die zu erstellende Datei. Es muss der Notation SF_FileSystem.FileNaming folgen. Existiert die Datei bereits, wird sie ohne Warnung überschrieben" #. Jub7D #: sf_ui.xhp @@ -24773,7 +24773,7 @@ "par_id381596554849698\n" "help.text" msgid "embeddeddatabase : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"." -msgstr "" +msgstr "embeddeddatabase: \"HSQLDB\" (Standard), \"FIREBIRD\" oder \"CALC\"." #. BWgpN #: sf_ui.xhp @@ -24782,7 +24782,7 @@ "par_id521596554849185\n" "help.text" msgid "registrationname : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning." -msgstr "" +msgstr "registrationname: Der Name, der verwendet wird, um die neue Datenbank im Datenbankregister zu speichern. Wenn = \"\" (Standard), findet keine Registrierung statt. Existiert der Name bereits, wird er ohne Warnung überschrieben." #. AFin6 #: sf_ui.xhp @@ -24791,7 +24791,7 @@ "par_id181629364905056\n" "help.text" msgid "calcfilename : Only when embeddeddatabase = \"CALC\", calcfilename represents the file containing the tables as Calc sheets. The file must exist or an error is raised." -msgstr "" +msgstr "calcfilename: Nur wenn embeddeddatabase = \"CALC\", stellt calcfilename die Datei dar, welche die Tabellen als Tabellendokument enthält. Die Datei muss vorhanden sein oder es wird ein Fehler ausgelöst." #. GtB5n #: sf_ui.xhp @@ -24800,7 +24800,7 @@ "par_id651588521753997\n" "help.text" msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object." -msgstr "" +msgstr "Erstellen Sie ein neues %PRODUCTNAME-Dokument eines bestimmten Typs oder basierend auf einer bestimmten Vorlage. Die Methode gibt ein Objekt \"Document\" zurück." #. JnBPt #: sf_ui.xhp @@ -24809,7 +24809,7 @@ "par_id51588521753302\n" "help.text" msgid "documenttype : \"Calc\", \"Writer\", etc. If absent, the templatefile argument must be present." -msgstr "" +msgstr "documenttype : \"Calc\", \"Writer\", … Wenn nicht vorhanden, muss das Argument templatefile vorhanden sein." #. BQ6UD #: sf_ui.xhp @@ -24818,7 +24818,7 @@ "par_id401588522663325\n" "help.text" msgid "templatefile : The full FileName of the template to build the new document on. If the file does not exist, the argument is ignored. The FileSystem service provides the TemplatesFolder and UserTemplatesFolder properties to help to build the argument." -msgstr "" +msgstr "templatefile: Der vollständige FileName der Vorlage, auf der das neue Dokument aufgebaut werden soll. Wenn die Datei nicht existiert, wird das Argument ignoriert. Der Dienst FileSystem stellt die Eigenschaften TemplatesFolder und UserTemplatesFolder bereit, um beim Erstellen des Arguments zu helfen." #. VeNQg #: sf_ui.xhp @@ -24827,7 +24827,7 @@ "par_id131588522824366\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden: wenn True, öffnet das neue Dokument im Hintergrund (Standard = False). Mit Vorsicht zu verwenden: Die Aktivierung oder Schließung kann danach nur programmgesteuert erfolgen." #. gWFt9 #: sf_ui.xhp @@ -24836,7 +24836,7 @@ "par_id701620762417802\n" "help.text" msgid "In both examples below, the first call to CreateDocument method creates a blank Calc document, whereas the second creates a document from a template file." -msgstr "" +msgstr "In den beiden folgenden Beispielen erstellt der erste Aufruf der Methode CreateDocument ein leeres Calc-Dokument, während der zweite ein Dokument aus einer Vorlagendatei erstellt." #. TxY93 #: sf_ui.xhp @@ -24845,7 +24845,7 @@ "par_id201588520551463\n" "help.text" msgid "Returns a document object referring to either the active window, a given window or the active document." -msgstr "" +msgstr "Gibt ein Objekt \"Document\" zurück, das entweder auf das aktive Fenster, ein bestimmtes Fenster oder das aktive Dokument verweist." #. xgMAv #: sf_ui.xhp @@ -24854,7 +24854,7 @@ "par_id851588520551368\n" "help.text" msgid "windowname: See the definitions above. If this argument is absent, the active window is used. UNO objects of types com.sun.star.lang.XComponent or com.sun.star.comp.dba.ODatabaseDocument are also accepted. Thus passing ThisComponent or ThisDatabaseDocument as argument creates a new SFDocuments.Document, Base or Calc service." -msgstr "" +msgstr "windowname: Siehe die Definitionen oben. Fehlt dieses Argument, wird das aktive Fenster verwendet. UNO-Objekte vom Typ com.sun.star.lang.XComponent oder com.sun.star.comp.dba.ODatabaseDocument werden ebenfalls akzeptiert. Wenn Sie also ThisComponent oder ThisDatabaseDocument als Argument übergeben, wird ein neuer Dienst SFDocuments.Document, Base oder Calc erstellt." #. AAjDB #: sf_ui.xhp @@ -24863,7 +24863,7 @@ "par_id521620330287071\n" "help.text" msgid "To access the name of the currently active window, refer to the ActiveWindow property." -msgstr "" +msgstr "Um auf den Namen des derzeit aktiven Fensters zuzugreifen, beziehen Sie sich auf die Eigenschaft ActiveWindow." #. CYsyC #: sf_ui.xhp @@ -24872,7 +24872,7 @@ "par_id24158798644169\n" "help.text" msgid "Maximizes the active window or the given window." -msgstr "" +msgstr "Maximiert das aktive Fenster oder das angegebene Fenster." #. hD4TC #: sf_ui.xhp @@ -24881,7 +24881,7 @@ "par_id951587986441954\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is maximized." -msgstr "" +msgstr "windowname: siehe Definitionen oben. Fehlt dieses Argument, wird das aktive Fenster maximiert." #. vzDdG #: sf_ui.xhp @@ -24890,7 +24890,7 @@ "par_id871587986592696\n" "help.text" msgid "Minimizes the active window or the given window." -msgstr "" +msgstr "Minimiert das aktive Fenster oder das angegebene Fenster." #. Enys5 #: sf_ui.xhp @@ -24899,7 +24899,7 @@ "par_id751587986592626\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is minimized." -msgstr "" +msgstr "windowname: siehe Definitionen oben. Fehlt dieses Argument, wird das aktive Fenster minimiert." #. WHDDQ #: sf_ui.xhp @@ -24908,7 +24908,7 @@ "par_id691596555746539\n" "help.text" msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object." -msgstr "" +msgstr "Öffnen Sie ein vorhandenes %PRODUCTNAME Base-Dokument. Die Methode gibt ein Objekt \"Document\" zurück." #. q2E3C #: sf_ui.xhp @@ -24917,7 +24917,7 @@ "par_id231596555746385\n" "help.text" msgid "filename: Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning" -msgstr "" +msgstr "filename: Identifiziert die zu öffnende Datei. Es muss der Notation SF_FileSystem.FileNaming folgen. Existiert die Datei bereits, wird sie ohne Warnung überschrieben" #. mtpoL #: sf_ui.xhp @@ -24926,7 +24926,7 @@ "par_id711596555746281\n" "help.text" msgid "registrationname: The name to use to find the database in the databases register. It is ignored if FileName <> \"\"." -msgstr "" +msgstr "registrationname: Der Name, der verwendet werden soll, um die Datenbank im Datenbankregister zu finden. Es wird ignoriert, wenn FileName <> \"\"." #. TqAd2 #: sf_ui.xhp @@ -24935,7 +24935,7 @@ "id721596556313545\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "makroexecution: 0 = Verhalten wird durch die Benutzerkonfiguration festgelegt, 1 = Makros sind nicht ausführbar, 2 = Makros sind ausführbar." #. Dok5e #: sf_ui.xhp @@ -24944,7 +24944,7 @@ "par_id941620762989833\n" "help.text" msgid "To improve code readability you can use predefined constants for the macroexecution argument, as in the examples above." -msgstr "" +msgstr "Um die Lesbarkeit des Codes zu verbessern, können Sie vordefinierte Konstanten für das Argument macroexecution verwenden, wie in den obigen Beispielen." #. LBgGQ #: sf_ui.xhp @@ -24953,7 +24953,7 @@ "par_id541588523635283\n" "help.text" msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns Nothing (in Basic) / None (in Python) if the opening failed, even when the failure is caused by a user decision." -msgstr "" +msgstr "Öffnet ein vorhandenes %PRODUCTNAME-Dokument mit den angegebenen Optionen. Gibt ein Dokumentobjekt oder eine seiner Unterklassen zurück. Die Methode gibt Nothing (in Basic) / None (in Python) zurück, wenn das Öffnen fehlgeschlagen ist, selbst wenn der Fehler durch eine Benutzerentscheidung verursacht wurde." #. 8tjbg #: sf_ui.xhp @@ -24962,7 +24962,7 @@ "par_id481588523635890\n" "help.text" msgid "filename: Identifies the file to open. It must follow the FileNaming notation of the FileSystem service." -msgstr "" +msgstr "filename: Identifiziert die zu öffnende Datei. Es muss der Notation FileNaming des Dienstes FileSystem folgen." #. PWvQz #: sf_ui.xhp @@ -24971,7 +24971,7 @@ "par_id451588523635507\n" "help.text" msgid "password: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password." -msgstr "" +msgstr "password: Zu verwenden, wenn das Dokument geschützt ist. Falls falsch oder nicht vorhanden, während das Dokument geschützt ist, wird der Benutzer aufgefordert, ein Kennwort einzugeben." #. 2jjFK #: sf_ui.xhp @@ -24980,7 +24980,7 @@ "par_id611588524329781\n" "help.text" msgid "readonly: Default = False." -msgstr "" +msgstr "readonly: Standard = False." #. BcyEp #: sf_ui.xhp @@ -24989,7 +24989,7 @@ "par_id641588523635497\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden: wenn True, öffnet das neue Dokument im Hintergrund (Standard = False). Mit Vorsicht zu verwenden: Die Aktivierung oder Schließung kann danach nur programmgesteuert erfolgen." #. sbgeH #: sf_ui.xhp @@ -24998,7 +24998,7 @@ "par_id981588524474719\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "macroexecution: 0 = Verhalten wird durch die Benutzerkonfiguration festgelegt, 1 = Makros sind nicht ausführbar, 2 = Makros sind ausführbar." #. AF7iF #: sf_ui.xhp @@ -25007,7 +25007,7 @@ "par_id611588524584693\n" "help.text" msgid "filtername: The name of a filter that should be used for loading the document. If present, the filter must exist." -msgstr "" +msgstr "filtername: Der Name eines Filters, der zum Laden des Dokuments verwendet werden soll. Falls vorhanden, muss der Filter vorhanden sein." #. MKueU #: sf_ui.xhp @@ -25016,7 +25016,7 @@ "par_id191588524634348\n" "help.text" msgid "filteroptions: An optional string of options associated with the filter." -msgstr "" +msgstr "filteroptions: Eine optionale Reihe von Optionen, die dem Filter zugeordnet sind." #. qMTrj #: sf_ui.xhp @@ -25025,7 +25025,7 @@ "par_id751587986945965\n" "help.text" msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling Resize without arguments restores it." -msgstr "" +msgstr "Ändert die Größe und/oder verschiebt das aktive Fenster. Fehlende und negative Argumente werden ignoriert. Wenn das Fenster minimiert oder maximiert ist, wird es durch Aufrufen von Resize ohne Argumente wiederhergestellt." #. 6NUcv #: sf_ui.xhp @@ -25034,7 +25034,7 @@ "par_id441587986945696\n" "help.text" msgid "left, top: Distances of the top-left corner from top and left edges of the screen, in pixels." -msgstr "" +msgstr "left, top: Abstände der oberen linken Ecke vom oberen und linken Rand des Bildschirms in Pixel." #. AdcjG #: sf_ui.xhp @@ -25043,7 +25043,7 @@ "par_id601587987453825\n" "help.text" msgid "width, height: New dimensions of the window, in pixels." -msgstr "" +msgstr "width, height: Neue Abmessungen des Fensters in Pixel." #. vDNVH #: sf_ui.xhp @@ -25052,7 +25052,7 @@ "par_id801587987507028\n" "help.text" msgid "In the following examples, the width and height of the window are changed while top and left are left unchanged." -msgstr "" +msgstr "In den folgenden Beispielen werden width und height des Fensters geändert, während top und left unverändert bleiben." #. HP2Jb #: sf_ui.xhp @@ -25061,7 +25061,7 @@ "par_id21620332301809\n" "help.text" msgid "To resize a window that is not active, first activate it using the Activate method." -msgstr "" +msgstr "Um die Größe eines nicht aktiven Fensters zu ändern, aktivieren Sie es zunächst mit der Methode Activate." #. NnBWM #: sf_ui.xhp @@ -25070,7 +25070,7 @@ "par_id281587996421580\n" "help.text" msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state." -msgstr "" +msgstr "Zeigt einen Text und einen Fortschrittsbalken in der Statusleiste des aktiven Fensters an. Alle nachfolgenden Aufrufe im gleichen Makrolauf beziehen sich auf die gleiche Statuszeile des gleichen Fensters, auch wenn das Fenster nicht mehr sichtbar ist. Ein Aufruf ohne Argumente setzt die Statusleiste in ihren Normalzustand zurück." #. rDr2L #: sf_ui.xhp @@ -25079,7 +25079,7 @@ "par_id71587996421829\n" "help.text" msgid "text: An optional text to be displayed in front of the progress bar." -msgstr "" +msgstr "text: Ein optionaler Text, der vor dem Fortschrittsbalken angezeigt werden soll." #. hbCpG #: sf_ui.xhp @@ -25088,7 +25088,7 @@ "par_id881587996421777\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage: ein optionaler Fortschrittsgrad zwischen 0 und 100." #. qbGdy #: sf_ui.xhp @@ -25097,7 +25097,7 @@ "bas_id651620332601083\n" "help.text" msgid "' Resets the statusbar" -msgstr "" +msgstr "' Setzt die Statusleiste zurück" #. oQfWc #: sf_ui.xhp @@ -25106,7 +25106,7 @@ "par_id571598864255776\n" "help.text" msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog." -msgstr "" +msgstr "Zeigt einen nicht modalen Dialog an. Geben Sie den Titel, einen erläuternden Text und einen Prozentsatz des Fortschritts an, der auf einem Fortschrittsbalken dargestellt werden soll. Der Dialog bleibt sichtbar, bis die Methode ohne Argumente aufgerufen wird oder der Benutzer den Dialog manuell schließt." #. drhV6 #: sf_ui.xhp @@ -25115,7 +25115,7 @@ "par_id441598864535695\n" "help.text" msgid "title : The title appearing on top of the dialog box. Default = \"ScriptForge\"." -msgstr "" +msgstr "title: Der Titel, der oben im Dialog erscheint. Standard = \"ScriptForge\"." #. jvrZV #: sf_ui.xhp @@ -25124,7 +25124,7 @@ "par_id311598864255297\n" "help.text" msgid "text: An optional text to be displayed above the progress bar." -msgstr "" +msgstr "text: Ein optionaler Text, der über dem Fortschrittsbalken angezeigt wird." #. Qj3N3 #: sf_ui.xhp @@ -25133,7 +25133,7 @@ "par_id881598864255424\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage: ein optionaler Fortschrittsgrad zwischen 0 und 100." #. rVBX3 #: sf_ui.xhp @@ -25142,7 +25142,7 @@ "bas_id651620333289753\n" "help.text" msgid "' Closes the Progress Bar window" -msgstr "" +msgstr "' Schließt das Fenster mit dem Fortschrittsbalken" #. u3gZ8 #: sf_ui.xhp @@ -25151,7 +25151,7 @@ "pyc_id761620333269236\n" "help.text" msgid "# Closes the Progress Bar window" -msgstr "" +msgstr "# Schließt das Fenster mit dem Fortschrittsbalken" #. ZEG6t #: sf_ui.xhp @@ -25160,7 +25160,7 @@ "par_id431588587119925\n" "help.text" msgid "Returns True if the given window could be identified." -msgstr "" +msgstr "Gibt True zurück, wenn das angegebene Fenster identifiziert werden konnte." #. rkJbT #: sf_ui.xhp @@ -25169,7 +25169,7 @@ "par_id45158858711917\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname: siehe obige Definitionen." #. NyP5B #: sf_writer.xhp @@ -25178,7 +25178,7 @@ "tit\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Dienst SFDocuments.Writer" #. 5i7vz #: sf_writer.xhp @@ -25187,7 +25187,7 @@ "hd_id731582733781114\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Dienst SFDocuments.Writer" #. dUwYw #: sf_writer.xhp @@ -25196,7 +25196,7 @@ "par_id381589189355849\n" "help.text" msgid "The SFDocuments shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents." -msgstr "" +msgstr "Die gemeinsam genutzte Bibliothek SFDocuments bietet eine Reihe von Methoden und Eigenschaften, um die Verwaltung und Handhabung von %PRODUCTNAME-Dokumenten zu erleichtern." #. FvF79 #: sf_writer.xhp @@ -25205,7 +25205,7 @@ "par_id351591014177269\n" "help.text" msgid "Some methods are generic for all types of documents and are inherited from the SF_Document module, whereas other methods that are specific for Writer documents are defined in the SF_Writer module." -msgstr "" +msgstr "Einige Methoden sind generisch für alle Arten von Dokumenten und werden vom Modul SF_Document geerbt, während andere Methoden, die spezifisch für Writer-Dokumente sind, im Modul SF_Writer definiert sind." #. ojZFF #: sf_writer.xhp @@ -25214,7 +25214,7 @@ "par_id591589189364267\n" "help.text" msgid "The SF_Writer module is focused on:" -msgstr "" +msgstr "Das Modul SF_Writer konzentriert sich auf:" #. LTpqJ #: sf_writer.xhp @@ -25223,7 +25223,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Dienstaufruf" #. 3LPrN #: sf_writer.xhp @@ -25232,7 +25232,7 @@ "par_id591589191059889\n" "help.text" msgid "The Writer service is closely related to the UI service of the ScriptForge library. Below are a few examples of how the Writer service can be invoked." -msgstr "" +msgstr "Der Dienst Writer ist eng mit dem Dienst UI der Bibliothek ScriptForge verwandt. Unten sind einige Beispiele dafür, wie der Dienst Writer aufgerufen werden kann." #. NvcUB #: sf_writer.xhp @@ -25241,7 +25241,7 @@ "par_id551621623999947\n" "help.text" msgid "The code snippet below creates a Writer service instance that corresponds to the currently active Writer document." -msgstr "" +msgstr "Der folgende Codeschnipsel erstellt eine Dienstinstanz Writer, die dem derzeit aktiven Writer-Dokument entspricht." #. 4P2m8 #: sf_writer.xhp @@ -25250,7 +25250,7 @@ "par_id341621467500466\n" "help.text" msgid "Another way to create an instance of the Writer service is using the UI service. In the following example, a new Writer document is created and oDoc is a Writer service instance:" -msgstr "" +msgstr "Eine andere Möglichkeit, eine Instanz des Dienstes Writer zu erstellen, ist die Verwendung des Dienstes UI. Im folgenden Beispiel wird ein neues Writer-Dokument erstellt und oDoc ist eine Dienstinstanz Writer:" #. dENpx #: sf_writer.xhp @@ -25259,7 +25259,7 @@ "par_id921621467621019\n" "help.text" msgid "Or using the OpenDocument method from the UI service:" -msgstr "" +msgstr "Oder verwenden Sie die Methode OpenDocument des Dienstes UI:" #. WopGb #: sf_writer.xhp @@ -25268,7 +25268,7 @@ "par_id741621467697967\n" "help.text" msgid "It is also possible to instantiate the Writer service using the CreateScriptService method:" -msgstr "" +msgstr "Es ist auch möglich, den Dienst Writer mit der Methode CreateScriptService zu instanziieren:" #. WTDbw #: sf_writer.xhp @@ -25277,7 +25277,7 @@ "par_id271621467810774\n" "help.text" msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered." -msgstr "" +msgstr "Im obigen Beispiel ist \"MyFile.odt\" der Name eines geöffneten Dokumentfensters. Wenn dieses Argument nicht angegeben wird, wird das aktive Fenster berücksichtigt." #. EEAZF #: sf_writer.xhp @@ -25286,7 +25286,7 @@ "par_id71158288562139\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Es wird empfohlen, Ressourcen nach der Verwendung freizugeben:" #. wPWMP #: sf_writer.xhp @@ -25295,7 +25295,7 @@ "par_id231611610666018\n" "help.text" msgid "However, if the document was closed using the CloseDocument method, it becomes unnecessary to free resources using the command described above." -msgstr "" +msgstr "Wenn das Dokument jedoch mit der Methode CloseDocument geschlossen wurde, ist es unnötig, Ressourcen mit dem oben beschriebenen Befehl freizugeben." #. 7JvGW #: sf_writer.xhp @@ -25304,7 +25304,7 @@ "par_id71611090922315\n" "help.text" msgid "The use of the prefix \"SFDocuments.\" while calling the service is optional." -msgstr "" +msgstr "Die Verwendung des Präfixes \"SFDocuments.\" beim Aufruf des Dienstes ist optional." #. EcQjk #: sf_writer.xhp @@ -25313,7 +25313,7 @@ "hd_id291631196803182\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definitionen" #. ausGU #: sf_writer.xhp @@ -25322,7 +25322,7 @@ "hd_id351582885195476\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschaften" #. VB9Jj #: sf_writer.xhp @@ -25331,7 +25331,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. ioXEB #: sf_writer.xhp @@ -25340,7 +25340,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the Writer Service" -msgstr "" +msgstr "Liste der Methoden im Dienst Writer" #. 3uC2J #: sf_writer.xhp @@ -25349,7 +25349,7 @@ "par_id501623063693649\n" "help.text" msgid "Depending on the parameters provided this method will return:" -msgstr "" +msgstr "Abhängig von den bereitgestellten Parametern gibt diese Methode Folgendes zurück:" #. YpgWy #: sf_writer.xhp @@ -25358,7 +25358,7 @@ "par_id611623063742045\n" "help.text" msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in the document (if the form argument is absent)" -msgstr "" +msgstr "Eine nullbasierte Matrix (oder ein Tupel in Python) mit den Namen aller im Dokument enthaltenen Formulare (wenn das Argument form fehlt)" #. CNfBX #: sf_writer.xhp @@ -25367,7 +25367,7 @@ "par_id641623063744536\n" "help.text" msgid "A SFDocuments.Form service instance representing the form specified as argument." -msgstr "" +msgstr "Eine Serviceinstanz SFDocuments.Form, die das als Argument angegebene Formular darstellt." #. ULjtu #: sf_writer.xhp @@ -25376,7 +25376,7 @@ "par_id821623076570573\n" "help.text" msgid "This method is applicable only for Writer documents. Calc and Base documents have their own Forms method in the Calc and Base services, respectively." -msgstr "" +msgstr "Diese Methode gilt nur für Writer-Dokumente. Calc- und Base-Dokumente haben ihre eigene Methode Forms in den Diensten Calc und Base." #. ty8pu #: sf_writer.xhp @@ -25385,7 +25385,7 @@ "par_id451623063459286\n" "help.text" msgid "form: The name or index corresponding to a form stored in the document. If this argument is absent, the method will return a list with the names of all forms available in the document." -msgstr "" +msgstr "form: Der Name oder Index, der einem im Dokument gespeicherten Formular entspricht. Fehlt dieses Argument, gibt die Methode eine Liste mit den Namen aller im Dokument verfügbaren Formulare zurück." #. 7Ywp9 #: sf_writer.xhp @@ -25394,7 +25394,7 @@ "par_id251623063305557\n" "help.text" msgid "In the following examples, the first line gets the names of all forms in the document and the second line retrieves the Form object of the form named \"Form_A\"." -msgstr "" +msgstr "In den folgenden Beispielen erhält die erste Zeile die Namen aller Formulare im Dokument und die zweite Zeile das Objekt Form des Formulars mit dem Namen \"Form_A\"." #. y684J #: sf_writer.xhp @@ -25403,7 +25403,7 @@ "par_id31592919577984\n" "help.text" msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the SetPrinter method of the Document service. Returns True when successful." -msgstr "" +msgstr "Sendet den Inhalt des Dokuments an den Drucker. Der Drucker kann zuvor standardmäßig, vom Benutzer oder über die Methode SetPrinter des Dienstes Document definiert werden. Gibt bei Erfolg True zurück." #. CKDb5 #: sf_writer.xhp @@ -25412,7 +25412,7 @@ "par_id441592919577809\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages" -msgstr "" +msgstr "pages: Die Seiten, die gedruckt werden sollen, als Zeichenfolge wie in der Benutzeroberfläche. Beispielsweise: \"1-4;10;15-18\". Standard = alle Seiten" #. mYCkV #: sf_writer.xhp @@ -25421,7 +25421,7 @@ "par_id221636020923278\n" "help.text" msgid "copies: The number of copies, default is 1." -msgstr "" +msgstr "copies: Die Anzahl der Kopien, Standard ist 1." #. aFEAa #: sf_writer.xhp @@ -25430,7 +25430,7 @@ "par_id121636020926764\n" "help.text" msgid "printbackground: Prints the background image when True (default)." -msgstr "" +msgstr "printbackground: Druckt das Hintergrundbild, wenn True (Standard)." #. D4krC #: sf_writer.xhp @@ -25439,7 +25439,7 @@ "par_id261636020927276\n" "help.text" msgid "printblankpages: When False (default), omits empty pages." -msgstr "" +msgstr "printblankpages: Wenn False (Standard), werden leere Seiten weggelassen." #. LFSzm #: sf_writer.xhp @@ -25448,7 +25448,7 @@ "par_id021636020927484\n" "help.text" msgid "printevenpages: Prints even pages when True (default)." -msgstr "" +msgstr "printevenpages: Druckt gerade Seiten, wenn True (Standard)." #. iewN5 #: sf_writer.xhp @@ -25457,7 +25457,7 @@ "par_id391636020927676\n" "help.text" msgid "printoddpages: Print odd pages when True (default)." -msgstr "" +msgstr "printoddpages: Ungerade Seiten drucken, wenn True (Standard)." #. 4mYCT #: sf_writer.xhp @@ -25466,4 +25466,4 @@ "par_id121636021103996\n" "help.text" msgid "printimages: Print graphic objects when True (default)." -msgstr "" +msgstr "printimages: Grafikobjekte drucken, wenn True (Standard)." diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3173,7 +3173,7 @@ "par_id591622730131786\n" "help.text" msgid "When you call a function or a subroutine, you may pass its arguments by position or by name. Passing by position means just listing the arguments in the order in which the parameters are defined in the function or subroutine. Passing by name requires you to prefix the argument with the name of the corresponding parameter followed by a colon and an equal sign (:=). Keyword arguments may appear in any order. Refer to Basic Replace() function for such examples." -msgstr "Wenn Sie eine Funktion oder eine Unterroutine aufrufen, können Sie ihre Argumente nach Position oder nach Namen übergeben. Die Übergabe nach Position bedeutet, dass nur die Argumente in der Reihenfolge aufgelistet werden, in der die Parameter in der Funktion oder Unterroutine festgelegt sind. Die Übergabe des Namens erfordert, dass Sie dem Argument den Namen des entsprechenden Parameters voranstellen, gefolgt von einem Doppelpunkt und einem Gleichheitszeichen (:=). Schlüsselwort-Argumente können in beliebiger Reihenfolge angezeigt werden. Beispiele finden Sie in der Basic-Funktion Replace()." +msgstr "Wenn Sie eine Funktion oder eine Unterroutine aufrufen, können Sie deren Argumente nach Position oder nach Namen übergeben. Die Übergabe nach Position bedeutet, dass nur die Argumente in der Reihenfolge aufgelistet werden, in der die Parameter in der Funktion oder Unterroutine festgelegt sind. Die Übergabe des Namens erfordert, dass Sie dem Argument den Namen des entsprechenden Parameters voranstellen, gefolgt von einem Doppelpunkt und einem Gleichheitszeichen (:=). Schlüsselwort-Argumente können in beliebiger Reihenfolge angezeigt werden. Beispiele finden Sie in der Basic-Funktion Replace()." #. 5B7Y5 #: 01020300.xhp @@ -16295,7 +16295,7 @@ "par_id051620171022382581\n" "help.text" msgid "Boolean constants" -msgstr "Boole'sche Konstanten" +msgstr "Boolesche Konstanten" #. YZCRB #: 03040000.xhp @@ -18851,7 +18851,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 "Hier finden Sie alle Funktionen, die numerische Berechnungen durchführen können. Nicht einzeln aufgeführt sind dabei die sogenannten mathematischen und Booleschen Operatoren, denen ein eigener Abschnitt gewidmet ist. Funktionen unterscheiden sich von Operatoren insofern, als dass Ihnen ein Funktionsargument übergeben wird und sie ein Ergebnis zurückliefern. Operatoren hingegen liefern ein Ergebnis zurück, indem Sie zwei numerische Ausdrücke miteinander verknüpfen." +msgstr "Hier finden Sie alle Funktionen, die numerische Berechnungen durchführen können. Nicht einzeln aufgeführt sind dabei die sogenannten mathematischen und booleschen Operatoren, denen ein eigener Abschnitt gewidmet ist. Funktionen unterscheiden sich von Operatoren insofern, dass ihnen ein Funktionsargument übergeben wird und sie ein Ergebnis zurückliefern. Operatoren hingegen liefern ein Ergebnis zurück, indem sie zwei numerische Ausdrücke miteinander verknüpfen." #. 7sD2R #: 03080100.xhp @@ -42242,7 +42242,7 @@ "par_id221622764991492\n" "help.text" msgid "Converts Text characters from Unicode to the default code page of the system." -msgstr "" +msgstr "Wandelt Zeichen in Text von Unicode in die Standard-Codepage des Systems um." #. B2oeo #: strconv.xhp @@ -42251,7 +42251,7 @@ "par_id761622765118156\n" "help.text" msgid "LCID Optional. The Locale ID in decimal number. If this parameter is omitted, it assumes the system Locale ID. Refer to the file msi-encodinglist.txt for the available LCID values." -msgstr "" +msgstr "LCID Optional. Die Gebietsschema-ID als Dezimalzahl. Wenn dieser Parameter weggelassen wird, wird von der Gebietsschema-ID ausgegangen. Siehe die Datei msi-encodinglist.txt für mögliche Werte für LCID." #. CdCwD #: strconv.xhp @@ -42260,7 +42260,7 @@ "par_id311622770486052\n" "help.text" msgid "REM Converts narrow (single-byte) characters in string to wide" -msgstr "" +msgstr "REM Wandelt schmale Zeichen (Einzelbyte) in der Zeichenfolge in breite Zeichen (Doppelbyte) um" #. ysFBA #: strconv.xhp @@ -42269,7 +42269,7 @@ "par_id231622770493491\n" "help.text" msgid "REM Converts wide (double-byte) characters in string to narrow (single-byte) characters" -msgstr "" +msgstr "REM Wandelt breite Zeichen (Doppelbyte) in der Zeichenfolge in schmale Zeichen (Einzelbyte) um" #. EitmH #: strconv.xhp @@ -42278,7 +42278,7 @@ "par_id871622770498992\n" "help.text" msgid "REM Converts Hiragana characters in string to Katakana characters" -msgstr "" +msgstr "REM Wandelt Hiragana-Zeichen in der Zeichenfolge in Katakana-Zeichen um" #. WxMQr #: strconv.xhp @@ -42287,7 +42287,7 @@ "par_id351622770504087\n" "help.text" msgid "REM Converts Katakana characters in string to Hiragana characters" -msgstr "" +msgstr "REM Wandelt Katakana-Zeichen in der Zeichenfolge in Hiragana-Zeichen um" #. 9sG37 #: strconv.xhp @@ -42314,7 +42314,7 @@ "tit\n" "help.text" msgid "ThisDatabaseDocument object" -msgstr "" +msgstr "Objekt ThisDatabaseDocument" #. rDs9b #: thisdbdoc.xhp @@ -42323,7 +42323,7 @@ "N0089\n" "help.text" msgid "ThisDatabaseDocument API; Database document" -msgstr "" +msgstr "ThisDatabaseDocumentAPI; Datenbankdokument" #. v4XLY #: thisdbdoc.xhp @@ -42332,7 +42332,7 @@ "hd_id401544551916353\n" "help.text" msgid "ThisDatabaseDocument object" -msgstr "" +msgstr "Objekt ThisDatabaseDocument" #. CT58E #: thisdbdoc.xhp @@ -42341,7 +42341,7 @@ "N0091\n" "help.text" msgid "ThisDatabaseDocument addresses the active Base document whose properties can be read and set, and whose methods can be called." -msgstr "" +msgstr "ThisDatabaseDocument adressiert das aktive Base-Dokument, dessen Eigenschaften gelesen und geschrieben und dessen Methoden aufgerufen werden können." #. umGF9 #: thisdbdoc.xhp @@ -42350,7 +42350,7 @@ "par_id241622646033201\n" "help.text" msgid "ThisDatabaseDocument returns an object of type com.sun.star.sdb.XOfficeDatabaseDocument." -msgstr "" +msgstr "ThisDatabaseDocument gibt ein Objekt vom Typ com.sun.star.sdb.XOfficeDatabaseDocument zurück." #. EFj3T #: thisdbdoc.xhp @@ -42359,7 +42359,7 @@ "par_id241622797081182\n" "help.text" msgid "When the active window does not relate to a Base document, ThisDatabaseDocument returns Nothing." -msgstr "" +msgstr "Wenn sich das aktive Fenster nicht auf ein Base-Dokument bezieht, gibt ThisDatabaseDocument Nichts zurück." #. WvPJY #: thisdbdoc.xhp @@ -42368,7 +42368,7 @@ "par_id871622796485123\n" "help.text" msgid "When the active window is the Basic IDE, ThisDatabaseDocument object returns the database owning the current script." -msgstr "" +msgstr "Wenn das aktive Fenster die Basis-IDE ist, gibt das Objekt ThisDatabaseDocument die Datenbank, welche das aktuelle Skript besitzt, zurück." #. DrF8G #: thisdbdoc.xhp @@ -42377,7 +42377,7 @@ "par_id631622806529469\n" "help.text" msgid "Opening current database \"formName\" and maximizing it can be achieved as shown:" -msgstr "" +msgstr "Das Öffnen der aktuellen Datenbank \"formName\" und deren Maximierung kann wie gezeigt erreicht werden:" #. wxbXC #: thisdbdoc.xhp @@ -42386,7 +42386,7 @@ "par_id251622800540402\n" "help.text" msgid "ThisComponent object" -msgstr "" +msgstr "Objekt ThisComponent" #. 7k6AR #: thisdbdoc.xhp @@ -42395,7 +42395,7 @@ "par_id101622646874083\n" "help.text" msgid "com.sun.star.sdb.OfficeDatabaseDocument API service" -msgstr "" +msgstr "API-Dienst com.sun.star.sdb.OfficeDatabaseDocument" #. 7Znag #: thisdbdoc.xhp @@ -42404,7 +42404,7 @@ "par_id581622646875379\n" "help.text" msgid "com.sun.star.document.OfficeDocument API service" -msgstr "" +msgstr "API-Dienst com.sun.star.document.OfficeDocument" #. WMVc9 #: uno_objects.xhp @@ -42449,7 +42449,7 @@ "hd_id121622648046670\n" "help.text" msgid "%PRODUCTNAME Global Objects" -msgstr "" +msgstr "Globale %PRODUCTNAME-Objekte" #. xd3nC #: uno_objects.xhp @@ -42458,7 +42458,7 @@ "hd_id121622648046680\n" "help.text" msgid "Active document Objects" -msgstr "" +msgstr "Aktive Dokument-Objekte" #. NxFfo #: uno_objects.xhp @@ -42467,7 +42467,7 @@ "par_id481622648684689\n" "help.text" msgid "The following objects can be used from the active document." -msgstr "" +msgstr "Die folgenden Objekte können aus dem aktiven Dokument verwendet werden." #. yFvUL #: uno_objects.xhp @@ -42494,7 +42494,7 @@ "hd_id151622648087678\n" "help.text" msgid "UNO Methods" -msgstr "" +msgstr "UNO-Methoden" #. WVSFD #: uno_objects.xhp @@ -42503,7 +42503,7 @@ "par_id481622648684690\n" "help.text" msgid "Use the following methods to manage or query Unified Network Objects (UNO)." -msgstr "" +msgstr "Verwenden Sie die folgenden Methoden, um Unified Network Objects (UNO) zu verwalten oder abzufragen." #. 8GF88 #: uno_objects.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-03-11 13:07+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565412342.000000\n" #. sZfWF @@ -122,7 +122,7 @@ "par_id3156422\n" "help.text" msgid "Activates and deactivates the Navigator. The Navigator is a dockable window." -msgstr "" +msgstr "Aktiviert und deaktiviert den Navigator. Der Navigator ist ein andockbares Fenster." #. tDkHa #: 02110000.xhp @@ -8285,7 +8285,7 @@ "par_id9841608\n" "help.text" msgid "The type of the operating system:
    \"AIX\" for Advanced Interactive Executive IBM computer operating systems
    \"ANDROID\" for Google mobile operating system
    \"DRAGONFLY\" for DragonFly operating system forked from FreeBSD
    \"EMSCRIPTEM\" for browser WebAssembly system
    \"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)
    \"HAIKU\" for BeOS compatible operating system
    \"iOS\" for Apple mobile operating system
    \"LINUX\" for GNU/Linux based operating systems
    \"MACOSX\" for Apple Mac OS X
    \"SOLARIS\" for Oracle Solaris operating system
    \"WNT\" for Microsoft Windows" -msgstr "" +msgstr "Die Art des Betriebssystems:
    \"AIX\" für das Computer-Betriebssystem Advanced Interactive Executive von IBM
    \"ANDROID\" für das Mobilgeräte-Betriebssystem von Google
    \"DRAGONFLY\" für das Betriebssystem DragonFly, ein Abzweig von FreeBSD
    \"EMSCRIPTEN\" für das Browser-System WebAssembly
    \"FREEBSD\", \"OPENBSD\" oder \"NETBSD\" für Betriebssysteme, welche auf die Berkeley Software Distribution (BSD) basieren
    \"HAIKU\" für BeOS-kompatibele Betriebssysteme
    \"iOS\" für das Mobilgeräte-Betriebssystem von Apple
    \"LINUX\" für auf GNU/Linux basierende Betriebssysteme
    \"MACOSX\" für das Betriebssystem Mac OS X von Apple
    \"SOLARIS\" für Betriebssystem Solaris von Oracle
    \"WNT\" für das Betriebssystem Windows von Microsoft" #. zcvAx #: 04060104.xhp @@ -12866,7 +12866,7 @@ "par_id3148511\n" "help.text" msgid "TRUNC(Number[; Count])" -msgstr "" +msgstr "KÜRZEN(Zahl[; Stellen])" #. TXm3Z #: 04060106.xhp @@ -12920,7 +12920,7 @@ "par_id441635243969504\n" "help.text" msgid "=TRUNC(-45.67) returns -45. The default value for Count is 0." -msgstr "" +msgstr "=KÜRZEN(-45,67) ergibt -45. Der Standardwert für Stellen ist 0." #. gMj5a #: 04060106.xhp @@ -12929,7 +12929,7 @@ "par_id151635245092041\n" "help.text" msgid "Refer to the TRUNC wiki page for more details about this function." -msgstr "" +msgstr "Lesen Sie für weitere Details zu dieser Funktion die Wikipedia-Seite TRUNC (in Englisch)." #. MQVNf #: 04060106.xhp @@ -13388,7 +13388,7 @@ "par_id431635251540138\n" "help.text" msgid "=SERIESSUM(A1; 0; 1; {1; 2; 3}) calculates the value of 1+2x+3x2, where x is the value in cell A1. If A1 contains 1, the formula returns 6; if A1 contains 2, the formula returns 17; if A1 contains 3, the formula returns 34; and so on." -msgstr "" +msgstr "=POTENZREIHE(A1; 0; 1; {1; 2; 3}) berechnet den Wert von 1+2x+3x2, wobei x der Wert in Zelle A1 ist. Wenn A1 eine 1 enthält, ergibt die Formel 6; wenn A1 eine 2 enthält, ergibt die Formel 17; wenn A1 eine 3 enthält, ergibt die Formel 34; …" #. i8GB7 #: 04060106.xhp @@ -13397,7 +13397,7 @@ "par_id881635251427220\n" "help.text" msgid "Refer to the SERIESSUM wiki page for more details about this function." -msgstr "" +msgstr "Lesen Sie für weitere Details über diese Funktion die Wikipedia-Seite SERIESSUM (in Englisch)." #. cEDZn #: 04060106.xhp @@ -14855,7 +14855,7 @@ "par_id0908200902131122\n" "help.text" msgid "Converts to euros a currency value expressed in one of the legacy currencies of 19 member states of the Eurozone, and vice versa. The conversion uses the fixed exchange rates at which the legacy currencies entered the euro." -msgstr "" +msgstr "Rechnet einen Währungswert in Euro um, der in einer der alten Währungen von 19 Mitgliedstaaten der Eurozone angegeben wird, und umgekehrt. Die Umrechnung verwendet die festen Wechselkurse, zu denen die alten Währungen durch den Euro ersetzt wurden." #. de7Xa #: 04060106.xhp @@ -14864,7 +14864,7 @@ "par_id581631900947319\n" "help.text" msgid "We recommend using the more flexible EUROCONVERT function for converting between these currencies. CONVERT_OOO is not a standardized function and is not portable." -msgstr "" +msgstr "Es ist empfohlen, die flexiblere Funktion EUROUMRECHNEN für die Umrechnung zwischen diesen Währungen zu verwenden. UMRECHNEN_OOO ist keine standardisierte Funktion und nicht in andere Office-Programme übertragbar." #. ETLYS #: 04060106.xhp @@ -14873,7 +14873,7 @@ "par_id0908200902131191\n" "help.text" msgid "CONVERT_OOO(Value; \"Text1\"; \"Text2\")" -msgstr "" +msgstr "UMRECHNEN_OOO(Wert; \"Text 1\"; \"Text 2\")" #. jE8Vq #: 04060106.xhp @@ -14882,7 +14882,7 @@ "par_id901631901062056\n" "help.text" msgid "Value is the amount of the currency to be converted." -msgstr "" +msgstr "Wert ist der Betrag der umzurechnenden Währung." #. AE6XU #: 04060106.xhp @@ -14891,7 +14891,7 @@ "par_id461631901137229\n" "help.text" msgid "Text1 is a three-character string that specifies the currency to be converted from." -msgstr "" +msgstr "Text 1 ist eine dreistellige Zeichenfolge, welche die Währung angibt, aus der umgerechnet werden soll." #. w8BoY #: 04060106.xhp @@ -14900,7 +14900,7 @@ "par_id351631901218862\n" "help.text" msgid "Text2 is a three-character string that specifies the currency to be converted to." -msgstr "" +msgstr "Text 2 ist eine dreistellige Zeichenfolge, welche die Währung angibt, in die umgerechnet werden soll." #. WMq4R #: 04060106.xhp @@ -14909,7 +14909,7 @@ "par_id1001631901312606\n" "help.text" msgid "Text1 and Text2 must each take one of the following values: \"ATS\", \"BEF\", \"CYP\", \"DEM\", \"EEK\", \"ESP\", \"EUR\", \"FIM\", \"FRF\", \"GRD\", \"IEP\", \"ITL\", \"LTL\", \"LUF\", \"LVL\", \"MTL\", \"NLG\", \"PTE\", \"SIT\", and \"SKK\"." -msgstr "" +msgstr "Text 1 und Text 2 müssen jeweils einen der folgenden Werte verwenden: \"ATS\", \"BEF\", \"CYP\", \"DEM\", \"EEK\", \"ESP\", \"EUR\", \"FIM\", \"FRF\", \"GRD\", \"IEP\", \"ITL\", \"LTL\", \"LUF\", \"LVL\", \"MTL\", \"NLG\", \"PTE\", \"SIT\" und \"SKK\"." #. RBRUW #: 04060106.xhp @@ -14918,7 +14918,7 @@ "par_id111631901383901\n" "help.text" msgid "One, and only one, of Text1 or Text2 must be equal to \"EUR\"." -msgstr "" +msgstr "Nur eine von beiden Zeichenfolgen Text 1 oder Text 2 darf \"EUR\" enthalten." #. Smhnw #: 04060106.xhp @@ -14927,7 +14927,7 @@ "par_id090820090213112\n" "help.text" msgid "=CONVERT_OOO(100;\"ATS\";\"EUR\") returns the euro value of 100 Austrian schillings." -msgstr "" +msgstr "=UMRECHNEN_OOO(100;\"ATS\";\"EUR\") ergibt den Euro-Wert von 100 Österreichischen Schilling." #. UjHaw #: 04060106.xhp @@ -14936,7 +14936,7 @@ "par_id0908200902475431\n" "help.text" msgid "=CONVERT_OOO(100;\"EUR\";\"DEM\") converts 100 euros into German marks." -msgstr "" +msgstr "=UMRECHNEN_OOO(100;\"EUR\";\"DEM\") rechnet 100 Euro in Deutsche Mark um." #. PRgAD #: 04060106.xhp @@ -14945,7 +14945,7 @@ "par_id251631901851101\n" "help.text" msgid "Refer to the CONVERT_OOO wiki page for more details about this function." -msgstr "" +msgstr "Lesen Sie für weitere Details über diese Funktion die Wikipedia-Seite CONVERT_OOO (in Englisch)." #. 5CcjA #: 04060106.xhp @@ -15593,7 +15593,7 @@ "bm_id3147273\n" "help.text" msgid "matrices; functionsFunction Wizard; arraysarray formulasinline array constantsformulas; arraysfunctions; array functionsediting; array formulascopying; array formulasdeleting; array formulasadjusting array rangescalculating; conditional calculationsmatrices; calculationsconditional calculations with arraysimplicit array handlingforced array handling" -msgstr "" +msgstr "Matrizen; FunktionenFunktionsassistent; MatrizenMatrixformelnEingebettete Matrix-KonstantenFormeln; MatrizenFunktionen; MatrixfunktionenBearbeiten; MatrixformelnKopieren; MatrixformelnLöschen; MatrixformelnMatrixbereiche anpassenBerechnen; Bedingte BerechnungenMatrizen; BerechnungenBedingte Berechnungen mit MatrizenImplizite MatrixbehandlungErzwungene Matrixbehandlung" #. ALUph #: 04060107.xhp @@ -15746,7 +15746,7 @@ "hd_id3151271\n" "help.text" msgid "Creating Array Formulas" -msgstr "Erstellen von Matrixformeln" +msgstr "Matrixformeln erstellen" #. keWKE #: 04060107.xhp @@ -15782,7 +15782,7 @@ "par_id3154342\n" "help.text" msgid "The cells in a results array are automatically protected against changes. However, you can edit, delete or copy the array formula by selecting the entire array cell range." -msgstr "" +msgstr "Die Zellen einer Ergebnismatrix werden automatisch vor Änderungen geschützt. Sie können die Matrixformel jedoch bearbeiten, löschen oder kopieren, indem Sie den gesamten Matrix-Zellenbereich auswählen." #. 2tDZj #: 04060107.xhp @@ -15926,7 +15926,7 @@ "hd_id3148660\n" "help.text" msgid "Editing Array Formulas" -msgstr "Bearbeiten von Matrixformeln" +msgstr "Matrixformeln bearbeiten" #. Qi4kV #: 04060107.xhp @@ -15935,7 +15935,7 @@ "par_id3149241\n" "help.text" msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press CommandCtrl + /, where / is the division key on the numeric keypad." -msgstr "" +msgstr "Wählen Sie den Zellbereich oder die Matrix aus, welche/r die Matrixformel enthält. Um die gesamte Matrix auszuwählen, positionieren Sie den Cursor innerhalb des Matrixbereichs und drücken dann BefehlStrg+/, wobei / die Taste Division auf dem Ziffernblock ist." #. BzLzG #: 04060107.xhp @@ -15971,7 +15971,7 @@ "hd_id541633516074226\n" "help.text" msgid "Deleting Array Formulae" -msgstr "" +msgstr "Matrixformeln löschen" #. adAax #: 04060107.xhp @@ -15980,7 +15980,7 @@ "par_id681633516103267\n" "help.text" msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press CommandCtrl + /, where / is the division key on the numeric keypad." -msgstr "" +msgstr "Wählen Sie den Zellbereich oder die Matrix aus, welche/r die Matrixformel enthält. Um die gesamte Matrix auszuwählen, positionieren Sie den Cursor innerhalb des Matrixbereiches und drücken dann BefehlStrg+/, wobei / die Taste Division auf dem Ziffernblock ist." #. 5xB8E #: 04060107.xhp @@ -15989,7 +15989,7 @@ "par_id61633516164519\n" "help.text" msgid "Press Delete to delete the array contents, including the array formula, or press Backspace and this brings up the Delete Contents dialog box. Select Formula or Delete All and click OK." -msgstr "" +msgstr "Drücken Sie Entf, um den Inhalt der Matrix zu löschen, einschließlich der Matrixformel. Oder Sie drücken Rückschritt, um den Dialog Inhalte löschen anzuzeigen. Dort wählen Sie Formeln oder Alles löschen und klicken auf OK." #. dEcVJ #: 04060107.xhp @@ -15998,7 +15998,7 @@ "hd_id3145608\n" "help.text" msgid "Copying Array Formulas" -msgstr "Kopieren von Matrixformeln" +msgstr "Matrixformeln kopieren" #. DAJJs #: 04060107.xhp @@ -16052,7 +16052,7 @@ "hd_id3154834\n" "help.text" msgid "Adjusting an Array Range" -msgstr "Anpassen von Matrixbereichen" +msgstr "Matrixbereiche anpassen" #. RNWq6 #: 04060107.xhp @@ -18554,7 +18554,7 @@ "par_id3149711\n" "help.text" msgid "Returns the column number of a cell reference. If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row array if the formula is entered as an array formula. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined." -msgstr "" +msgstr "Ergibt die Spaltennummer eines Zellbezugs. Handelt es sich bei dem Bezug um eine Zelle, dann wird die Spaltennummer der Zelle zurückgegeben; handelt es sich um einen Zellbereich, so werden die entsprechenden Spaltennummern in einer einzeiligen Matrix zurückgegeben, sofern die Formel als Matrixformel eingegeben wurde. Wenn die Funktion SPALTE einen Bereichsbezugsparameter aufweist und nicht als Matrixformel eingesetzt wird, dann wird nur die Spaltennummer der ersten Zelle innerhalb des Bereichs ermittelt." #. poCRX #: 04060109.xhp @@ -19013,7 +19013,7 @@ "par_id3147528\n" "help.text" msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. For Type = -1, the index of the last value that is larger or equal is returned." -msgstr "" +msgstr "Wenn Typ = 1 oder wenn der dritte Parameter nicht vorhanden ist, wird der Index des letzten Werts, der kleiner als das Suchkriterium oder gleich groß ist, zurückgegeben. Bei Typ = -1 wird der Index des letzten Werts, der größer oder gleich groß ist, zurückgegeben." #. eFMjk #: 04060109.xhp @@ -19607,7 +19607,7 @@ "par_id3154564\n" "help.text" msgid "Returns the row number of a cell reference. If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column Array if the formula is entered as an array formula. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned." -msgstr "" +msgstr "Ergibt die Zeilennummer eines Zellbezugs. Handelt es sich bei dem Bezug um eine Zelle, so ergibt sie die Zeilennummer der Zelle. Ist der Bezug ein Zellbereich, dann ergibt die Funktion die Nummern der entsprechenden Zeilen in einer einspaltigen Matrix sofern die Formel als Matrixformel eingegeben wurde. Wenn die Funktion ZEILE einen Bereichsbezugsparameter aufweist und nicht als Matrixformel verwendet wird, dann wird nur die Zeilennummer der ersten Zelle innerhalb des Bereichs ermittelt." #. 97EEE #: 04060109.xhp @@ -20147,7 +20147,7 @@ "bm_id331624453577057\n" "help.text" msgid "using double quotation marks in formulas formulas; using double quotation marks" -msgstr "" +msgstr "Doppelte Anführungszeichen in FormelnFormeln; Doppelte Anführungszeichen" #. XXyWj #: 04060110.xhp @@ -20156,7 +20156,7 @@ "hd_id291624454173529\n" "help.text" msgid "Using double quotation marks in formulas" -msgstr "" +msgstr "Doppelte Anführungszeichen in Formeln verwenden" #. aGDFQ #: 04060110.xhp @@ -20165,7 +20165,7 @@ "par_id891624454058773\n" "help.text" msgid "To include a text string in a formula, place the text string between two double quotation marks (\") and Calc takes the characters in the string without attempting to interpret them. For example, the formula =\"Hello world!\" displays the text string Hello world! in the cell, with no surrounding double quotation marks." -msgstr "" +msgstr "Um eine Textzeichenfolge in eine Formel einzuschließen, setzen Sie die Textzeichenfolge zwischen zwei doppelten Anführungszeichen (\") und Calc übernimmt die Zeichen in der Zeichenfolge, ohne zu versuchen, sie auszuwerten. Beispielsweise zeigt die Formel =\"Hallo Welt!\" die Textzeichenfolge Hallo Welt! in der Zelle ohne umgebenden doppelten Anführungszeichen an." #. HCwEU #: 04060110.xhp @@ -20174,7 +20174,7 @@ "par_id461624454425320\n" "help.text" msgid "The more complex formula =CONCATENATE(\"Life is really simple, \"; \"but we insist on making it complicated \"; \"(Confucius).\") concatenates three individual strings in double quotation marks, outputting Life is really simple, but we insist on making it complicated (Confucius)." -msgstr "" +msgstr "Die umfangreichere Formel =VERKETTUNG(\"Das Leben ist wirklich einfach, \"; \"aber wir bestehen darauf, es kompliziert zu machen \"; \"(Konfuzius).\") verkettet drei einzelne Zeichenfolgen in doppelten Anführungszeichen und ergibt Das Leben ist wirklich einfach, aber wir bestehen darauf, es kompliziert zu machen (Konfuzius)." #. XBDt9 #: 04060110.xhp @@ -20183,7 +20183,7 @@ "par_id711624454477483\n" "help.text" msgid "To place a literal double quotation mark within a string inside a formula, two methods can be used:" -msgstr "" +msgstr "Um tatsächlich ein doppeltes Anführungszeichen innerhalb einer Zeichenfolge in einer Formel anzuzeigen, können zwei Methoden verwendet werden:" #. 8qFEv #: 04060110.xhp @@ -23162,7 +23162,7 @@ "bm_id3151076\n" "help.text" msgid "programming; add-insshared libraries; programmingexternal DLL functionsfunctions; $[officename] Calc add-in DLLadd-ins; for programming" -msgstr "Programmieren; Add-insGemeinsame Bibliotheken; ProgrammierungExterne DLL-FunktionenFunktionen; $[officename] Calc Add-in-DLLAdd-ins; zum Programmieren" +msgstr "Programmieren; Add-insGemeinsame Bibliotheken; ProgrammierungExterne DLL-FunktionenFunktionen; $[officename] Calc-Add-in-DLLAdd-ins; zum Programmieren" #. x9hSr #: 04060112.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/05.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/05.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/05.po 2022-07-15 19:12:51.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: 2021-12-29 05:38+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565271401.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 "Compiler: ein Bezeichner in der Formel überschreitet die Größe von 64 kB. Interpreter: ein Ergebnis einer Zeichenkettenverarbeitung überschreitet die Größe von 64 kB." +msgstr "Compiler: ein Bezeichner in der Formel überschreitet die Größe von 64 kB. Interpreter: ein Ergebnis einer Zeichenkettenverarbeitung überschreitet die Größe von 64 kB." #. E7ohJ #: 02140000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -617,7 +617,7 @@ "hd_id3144760\n" "help.text" msgid "Applying a Background Color to a $[officename] Calc Spreadsheet" -msgstr "Eine Hintergrundfarbe auf ein $[officename] Calc Tabellendokument anwenden" +msgstr "Eine Hintergrundfarbe auf ein $[officename] Calc-Tabellendokument anwenden" #. CdEUc #: background.xhp @@ -6620,7 +6620,7 @@ "par_id4206976\n" "help.text" msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:" -msgstr "Um eine Formel einzugeben, können Sie auch + oder - auf der nummerischen Tastatur drücken. NumLock muss eingeschaltet sein. Zum Beispiel drücken Sie die folgenden Tasten:" +msgstr "Um eine Formel einzugeben, können Sie auch + oder - auf der numerischen Tastatur drücken. NumLock muss eingeschaltet sein. Zum Beispiel drücken Sie die folgenden Tasten:" #. 7dRd8 #: formula_enter.xhp @@ -11021,7 +11021,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 "In Zellbezügen muss ein Tabellenname in einfache Anführungszeichen ' eingeschlossen sein, wenn der Tabellenname andere Zeichen als alphanummerische Zeichen oder Unterstriche enthält. Wenn der Tabellenname ein einfaches Anführungszeichen enthält, müssen die einfachen Anführungszeichen verdoppelt werden (zwei einfache Anführungszeichen)." +msgstr "In Zellbezügen muss ein Tabellenname in einfache Anführungszeichen ' eingeschlossen sein, wenn der Tabellenname andere Zeichen als alphanumerische Zeichen oder Unterstriche enthält. Wenn der Tabellenname ein einfaches Anführungszeichen enthält, müssen die einfachen Anführungszeichen verdoppelt werden (zwei einfache Anführungszeichen)." #. ZjbDT #: rename_table.xhp @@ -12083,7 +12083,7 @@ "hd_id8005005\n" "help.text" msgid "Merge and Unmerge Cells" -msgstr "" +msgstr "Zellen verbinden und trennen" #. Hht67 #: table_cellmerge.xhp @@ -13424,7 +13424,7 @@ "par_id3153965\n" "help.text" msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)." -msgstr "Öffnen Sie zwei Dokumente: das $[officename] Calc Tabellendokument, in das Sie externe Daten einfügen möchten (Zieldokument), und das Dokument, aus dem die externen Daten kommen (Quelldokument)." +msgstr "Öffnen Sie zwei Dokumente: das $[officename] Calc-Tabellendokument, in das Sie externe Daten einfügen möchten (Zieldokument), und das Dokument, aus dem die externen Daten kommen (Quelldokument)." #. ekAUo #: webquery.xhp @@ -13523,7 +13523,7 @@ "tit\n" "help.text" msgid "Using Wildcards in Formulas" -msgstr "" +msgstr "Platzhalter in Formeln verwenden" #. kZVe7 #: wildcards.xhp @@ -13532,7 +13532,7 @@ "bm_id3152149\n" "help.text" msgid "wildcards in formulas wildcards;examples" -msgstr "" +msgstr "Platzhalter in FormelnPlatzhalter; Beispiele" #. 98C5v #: wildcards.xhp @@ -13541,7 +13541,7 @@ "hd_id941629155075179\n" "help.text" msgid "Using Wildcards in Formulas" -msgstr "" +msgstr "Platzhalter in Formeln verwenden" #. yqMKw #: wildcards.xhp @@ -13550,7 +13550,7 @@ "par_id571629155308959\n" "help.text" msgid "Wildcards are special characters that can be used in search strings that are passed as arguments to some Calc functions. They can also be used to define search criteria in the Find & Replace dialog. The use of wildcards enables the definition of more advanced search parameters with a single search string." -msgstr "" +msgstr "Platzhalter sind Sonderzeichen, die in Suchzeichenfolgen verwendet werden können, welche als Argumente an einige Calc-Funktionen übergeben werden. Sie können auch verwendet werden, um Suchkriterien im Dialog Suchen und Ersetzen zu definieren. Die Verwendung von Platzhaltern ermöglicht die Definition erweiterter Suchparameter mit einer einzelnen Suchzeichenfolge." #. vQrdp #: wildcards.xhp @@ -13559,7 +13559,7 @@ "par_id391629156224638\n" "help.text" msgid "%PRODUCTNAME Calc supports either wildcards or regular expressions as arguments depending on the current application settings. By default %PRODUCTNAME Calc is set to support wildcards instead of regular expressions." -msgstr "" +msgstr "%PRODUCTNAME-Calc unterstützt abhängig von den aktuellen Anwendungseinstellungen entweder Platzhalter oder reguläre Ausdrücke als Argumente. Standardmäßig unterstützt %PRODUCTNAME-Calc Platzhalter statt regulärer Ausdrücke." #. GVpD7 #: wildcards.xhp @@ -13568,7 +13568,7 @@ "par_id551629156504794\n" "help.text" msgid "To make sure wildcards are supported, go to %PRODUCTNAME - Preferences - %PRODUCTNAME Calc - CalculateTools - Options - %PRODUCTNAME Calc - Calculate and check if the option Enable wildcards in formulas is selected. Note that you can use this dialog to switch to regular expressions by choosing Enable regular expressions in formulas or choose to support neither wildcards nor regular expressions." -msgstr "" +msgstr "Damit Platzhalter unterstützt werden, wählen Sie %PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – BerechnenExtras – Optionen… – %PRODUCTNAME Calc – Berechnen und prüfen Sie, ob die Option Platzhalter in Formeln ermöglichen ausgewählt ist. Beachten Sie, dass Sie diesen Dialog auch zum Umschalten zu regulären Ausdrücken verwenden können. Wählen Sie hierzu die Option Reguläre Ausdrücke in Formeln ermöglichen aus. Sie können auch auswählen, dass weder Platzhalter noch reguläre Ausdrücke unterstützt werden sollen." #. BHJzs #: wildcards.xhp @@ -13577,7 +13577,7 @@ "par_id141629156913731\n" "help.text" msgid "The following wildcards are supported:" -msgstr "" +msgstr "Die folgenden Platzhalter werden unterstützt:" #. tbbPM #: wildcards.xhp @@ -13586,7 +13586,7 @@ "par_id801629209195110\n" "help.text" msgid "Wildcard" -msgstr "" +msgstr "Platzhalter" #. 7PmfG #: wildcards.xhp @@ -13595,7 +13595,7 @@ "par_id861629209212608\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. DfkJA #: wildcards.xhp @@ -13604,7 +13604,7 @@ "par_id591629209073388\n" "help.text" msgid "? (question mark)" -msgstr "" +msgstr "? (Fragezeichen)" #. F2wmk #: wildcards.xhp @@ -13613,7 +13613,7 @@ "par_id31629209073388\n" "help.text" msgid "Matches any single character. For example, the search string \"b?g\" matches “bag” and “beg” but will not match \"boog\" or \"mug\"." -msgstr "" +msgstr "Entspricht einem einzelnen Zeichen. Beispielsweise stimmt die Suchzeichenfolge \"T?r\" mit \"Tor\" und \"Tür\" überein, jedoch nicht mit \"Tier\" oder \"Ohr\"." #. pi9ik #: wildcards.xhp @@ -13622,7 +13622,7 @@ "par_id121629209114452\n" "help.text" msgid "Note that it will not match \"bg\" as well, since \"?\" must match exactly one character. The \"?\" wildcard does not correspond to a zero-character match." -msgstr "" +msgstr "Beachten Sie, dass sie auch nicht mit \"Tr\" übereinstimmt, da \"?\" mit genau einem Zeichen übereinstimmen muss. Der Platzhalter \"?\" entspricht nicht einer Übereinstimmung mit null Zeichen." #. PmsQL #: wildcards.xhp @@ -13631,7 +13631,7 @@ "par_id981629209073388\n" "help.text" msgid "* (asterisk)" -msgstr "" +msgstr "* (Sternchen)" #. 6V7SE #: wildcards.xhp @@ -13640,7 +13640,7 @@ "par_id51629209073388\n" "help.text" msgid "Matches any sequence of characters, including an empty string. For example, the search string \"*cast\" will match “cast”, “forecast”, and “outcast”, but will not match \"forecaster\" using default %PRODUCTNAME settings." -msgstr "" +msgstr "Entspricht einer beliebigen Zeichenfolge, einschließlich einer leeren Zeichenfolge. Beispielsweise stimmt die Suchzeichenfolge \"*bahn\" mit \"Bahn\", \"Eisenbahn\" und \"Landebahn\" überein, jedoch nicht mit \"Bahnsteig\", wenn die Standardeinstellungen von %PRODUCTNAME verwendet werden." #. fDuhF #: wildcards.xhp @@ -13649,7 +13649,7 @@ "par_id351629209153307\n" "help.text" msgid "If the option Search criteria = and <> must apply to whole cells is disabled in %PRODUCTNAME - Preferences - %PRODUCTNAME Calc - CalculateTools - Options - %PRODUCTNAME Calc - Calculate, then \"forecaster\" will be a match using the \"*cast\" search string." -msgstr "" +msgstr "Wenn die Option Suchkriterien = und <> müssen auf ganze Zellen zutreffen unter %PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – BerechnenExtras – Optionen… – %PRODUCTNAME Calc – Berechnen deaktiviert ist, wird \"Bahnsteig\" eine Übereinstimmung mit der Suchzeichenfolge \"*bahn\" sein." #. ek6t7 #: wildcards.xhp @@ -13658,7 +13658,7 @@ "par_id181629209277556\n" "help.text" msgid "~ (tilde)" -msgstr "" +msgstr "~ (Tilde)" #. F3Tuy #: wildcards.xhp @@ -13667,7 +13667,7 @@ "par_id881629209280877\n" "help.text" msgid "Escapes the special meaning of a question mark, asterisk, or tilde character that follows immediately after the tilde character." -msgstr "" +msgstr "Hebt die besondere Bedeutung eines Fragezeichens, Sternchens oder einer Tilde auf, das/die unmittelbar nach der Tilde folgt." #. P35Fo #: wildcards.xhp @@ -13676,7 +13676,7 @@ "par_id861629209431020\n" "help.text" msgid "For example, the search string \"why~?\" matches “why?” but will not match \"whys\" nor \"why~s\"." -msgstr "" +msgstr "Beispielsweise stimmt die Suchzeichenfolge \"Wie~?\" mit \"Wie?\" überein, jedoch nicht mit \"Wies\" oder \"Wie~s\"." #. aCtpj #: wildcards.xhp @@ -13685,7 +13685,7 @@ "par_id1001629157561261\n" "help.text" msgid "Wildcards are supported in %PRODUCTNAME Calc and in Microsoft Excel. Therefore, if interoperability between both applications is needed, choose to work with wildcards instead of regular expressions. Conversely, if interoperability is not necessary, consider using regular expressions for more powerful search capabilities." -msgstr "" +msgstr "Platzhalter werden in %PRODUCTNAME Calc und in Microsoft Excel unterstützt. Wenn Interoperabilität zwischen beiden Anwendungen erforderlich ist, sollten Sie daher mit Platzhaltern anstelle von regulären Ausdrücken arbeiten. Wenn Interoperabilität nicht erforderlich ist, sollten Sie die Verwendung regulärer Ausdrücke für leistungsfähigere Suchfunktionen in Betracht ziehen." #. Dwt2G #: wildcards.xhp @@ -13694,7 +13694,7 @@ "hd_id671629158766165\n" "help.text" msgid "Supported Spreadsheet Functions" -msgstr "" +msgstr "Unterstützte Tabellenfunktionen" #. YF9FB #: wildcards.xhp @@ -13703,7 +13703,7 @@ "par_id161629158785887\n" "help.text" msgid "Wildcards are supported by the following spreadsheet functions:" -msgstr "" +msgstr "Platzhalter werden von den folgenden Tabellenfunktionen unterstützt:" #. rRPbf #: wildcards.xhp @@ -13712,7 +13712,7 @@ "par_id441629158810517\n" "help.text" msgid "Database functions: DAVERAGE, DCOUNT, DCOUNTA, DGET, DMAX, DMIN, DPRODUCT, DSTDEV, DSTDEVP, DSUM, DVAR and DVARP." -msgstr "" +msgstr "Datenbankfunktionen: DBMITTELWERT, DBANZAHL, DBANZAHL2, DBAUSZUG, DBMAX, DBMIN, DBPRODUKT, DBSTDABW, DBSTDABWN, DBSUMME, DBVARIANZ und DBVARIANZEN." #. gfUGT #: wildcards.xhp @@ -13721,7 +13721,7 @@ "par_id321629158810916\n" "help.text" msgid "Conditional functions: AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, MAXIFS, MINIFS, SUMIF and SUMIFS." -msgstr "" +msgstr "Statistikfunktionen: MITTELWERTWENN, MITTELWERTWENNS, ZÄHLENWENN, ZÄHLENWENNS, MAXWENNS, MINWENNS, SUMMEWENN und SUMMEWENNS." #. oUwuB #: wildcards.xhp @@ -13730,7 +13730,7 @@ "par_id941629158811325\n" "help.text" msgid "Lookup functions: HLOOKUP, LOOKUP and VLOOKUP." -msgstr "" +msgstr "Tabellenfunktionen: WVERWEIS, VERWEIS und SVERWEIS." #. Ka6SK #: wildcards.xhp @@ -13739,7 +13739,7 @@ "par_id41629158919808\n" "help.text" msgid "Other functions: MATCH and SEARCH." -msgstr "" +msgstr "Andere Funktionen: VERGLEICH und SUCHEN." #. 2ZGuQ #: wildcards.xhp @@ -13748,7 +13748,7 @@ "hd_id701629159564269\n" "help.text" msgid "Examples of Wildcards in Formulas" -msgstr "" +msgstr "Beispiele für Platzhalter in Formeln" #. 3WVEm #: wildcards.xhp @@ -13757,7 +13757,7 @@ "par_id121629289062103\n" "help.text" msgid "The following examples consider that the options Enable wildcards in formulas and Search criteria = and <> must apply to whole cells are enabled in %PRODUCTNAME - Preferences - %PRODUCTNAME Calc - CalculateTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "" +msgstr "In den folgenden Beispielen wird unterstellt, dass die Optionen Platzhalter in Formeln ermöglichen und Suchkriterien = und <> müssen auf ganze Zellen zutreffen in %PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – BerechnenExtras – Optionen… – %PRODUCTNAME Calc – Berechnen aktiviert sind." #. znKay #: wildcards.xhp @@ -13766,7 +13766,7 @@ "par_id271629159111490\n" "help.text" msgid "=COUNTIF(A1:A10;\"Chi*\") counts the number of cells in the range A1:A10 containing strings that start with \"Chi\" followed by zero or more characters." -msgstr "" +msgstr "=ZÄHLENWENN(A1:A10;\"Chi*\") zählt die Anzahl der Zellen im Bereich A1:A10, die Zeichenfolgen beinhalten, welche mit \"Chi\" beginnen, gefolgt von keinem oder mehreren Zeichen." #. TPRuA #: wildcards.xhp @@ -13775,7 +13775,7 @@ "par_id741629159343415\n" "help.text" msgid "=SUMIF(A1:A5;\"A??\";B1:B5) sums the values in B1:B5 whose corresponding values in A1:A5 start with \"A\" followed by exactly two other characters." -msgstr "" +msgstr "=SUMMEWENN(A1:A5;\"A??\";B1:B5) summiert die Werte in B1:B5, deren entsprechende Werte in A1:A5 mit \"A\" beginnen, gefolgt von genau zwei Zeichen." #. 7GqMs #: wildcards.xhp @@ -13784,7 +13784,7 @@ "par_id141629159465592\n" "help.text" msgid "Wildcard comparisons are not case sensitive, hence \"A?\" will match both \"A1\" and \"a1\"." -msgstr "" +msgstr "Bei Vergleichen mit Platzhalter wird nicht zwischen Groß- und Kleinschreibung unterschieden, daher stimmt \"A?\" sowohl mit \"A1\" als auch mit \"a1\" überein." #. ysgCC #: year2000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/schart.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/schart.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/schart.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/schart.po 2022-07-15 19:12:51.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: 2022-01-06 07:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525802986.000000\n" #. wtFDe @@ -815,7 +815,7 @@ "tit\n" "help.text" msgid "$[officename] Chart Features" -msgstr "Leistungsmerkmale von $[officename] Diagrammen" +msgstr "Leistungsmerkmale von $[officename]-Diagrammen" #. dyCxy #: main0503.xhp @@ -824,7 +824,7 @@ "hd_id3150543\n" "help.text" msgid "$[officename] Chart Features" -msgstr "Leistungsmerkmale von $[officename] Diagrammen" +msgstr "Leistungsmerkmale von $[officename]-Diagrammen" #. DR7Ma #: main0503.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-02-03 15:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" #. ugSgG #: 02000000.xhp @@ -1912,7 +1912,7 @@ "par_id3150271\n" "help.text" msgid "The (*) or (%) placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character." -msgstr "Der Platzhalter (*) oder (%) steht für beliebig viele Zeichen. Für genau ein Zeichen dient in der $[officename] Oberfläche das Fragezeichen (?) oder in SQL-Abfragen der Unterstrich (_) als Platzhalter." +msgstr "Der Platzhalter (*) oder (%) steht für beliebig viele Zeichen. Für genau ein Zeichen dient in der $[officename]-Oberfläche das Fragezeichen (?) oder in SQL-Abfragen der Unterstrich (_) als Platzhalter." #. AAEXi #: 02010100.xhp @@ -3010,7 +3010,7 @@ "par_id3147102\n" "help.text" msgid "Table data edit mode allows you to see your data as rows of records, with optional filtering and sorting of that data. In this mode, you can also enter new records, make changes to, and delete existing records." -msgstr "" +msgstr "Im Bearbeitungsmodus für Tabellendaten können Sie Ihre Daten als Datensatzzeilen anzeigen, mit optionalem Filtern und Sortieren dieser Daten. In diesem Modus können Sie auch neue Datensätze eingeben, Änderungen an bestehenden Datensätzen vornehmen und diese löschen." #. ZdcXQ #: 05000000.xhp @@ -3028,7 +3028,7 @@ "hd_id3152425\n" "help.text" msgid "Create new or edit table design" -msgstr "" +msgstr "Neues Tabellendesign erstellen oder bearbeiten" #. Hk4Jz #: 05000000.xhp @@ -3046,7 +3046,7 @@ "hd_id3154288\n" "help.text" msgid "Relations, Primary and External Key" -msgstr "" +msgstr "Relationen, primärer und externer Schlüssel" #. fAyEi #: 05000001.xhp @@ -3064,7 +3064,7 @@ "hd_id3148983\n" "help.text" msgid "Table Context Menus" -msgstr "" +msgstr "Kontextmenüs von Tabellen" #. PFkAG #: 05000001.xhp @@ -3073,7 +3073,7 @@ "par_id3163829\n" "help.text" msgid "The context menu of the table container offers various functions that apply to all database tables. To edit a particular table within the database, select the corresponding table and open its context menu." -msgstr "" +msgstr "Das Kontextmenü des Tabellencontainers bietet verschiedene Funktionen, die für alle Datenbanktabellen gelten. Um eine bestimmte Tabelle innerhalb der Datenbank zu bearbeiten, wählen Sie die entsprechende Tabelle aus und öffnen Sie deren Kontextmenü." #. MLxCc #: 05000001.xhp @@ -3082,7 +3082,7 @@ "par_id3146958\n" "help.text" msgid "Depending on the context, it is possible that not all the functions for your current database will be listed in the context menus. For example, the Relationships command for defining relationships between various tables is only available with relational databases." -msgstr "" +msgstr "Kontextabhängig ist es möglich, dass in den Kontextmenüs nicht alle Funktionen Ihrer aktuellen Datenbank aufgeführt werden. Beispielsweise ist der Befehl Relationen zum Definieren von Relationen zwischen verschiedenen Tabellen nur bei relationalen Datenbanken verfügbar." #. B6Az2 #: 05000001.xhp @@ -3100,7 +3100,7 @@ "par_id3166461\n" "help.text" msgid "If a table is open, there are several functions available to edit the data." -msgstr "" +msgstr "Wenn eine Tabelle geöffnet ist, stehen mehrere Funktionen zum Bearbeiten der Daten zur Verfügung." #. Rqydv #: 05000003.xhp @@ -3208,7 +3208,7 @@ "tit\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Tabellenentwurf" #. DKzbA #: 05010000.xhp @@ -3217,7 +3217,7 @@ "hd_id3154228\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Tabellenentwurf" #. fQvmC #: 05010000.xhp @@ -3226,7 +3226,7 @@ "par_id3152363\n" "help.text" msgid "In the Table Design window you define new tables or edit the structure of an existing table." -msgstr "" +msgstr "Im Fenster Tabellenentwurf definieren Sie neue Tabellen oder bearbeiten die Struktur einer bestehenden Tabelle." #. 3skAk #: 05010000.xhp @@ -3235,7 +3235,7 @@ "par_id3146957\n" "help.text" msgid "The window has its own menu bar. It also contains the following new command: Index Design" -msgstr "" +msgstr "Das Fenster hat eine eigene Menüleiste. Es enthält auch den folgenden neuen Befehl: Indexentwurf" #. z6hA5 #: 05010000.xhp @@ -3244,7 +3244,7 @@ "hd_id3152551\n" "help.text" msgid "Table definition area" -msgstr "" +msgstr "Tabellendefinitionsbereich" #. xmBqj #: 05010000.xhp @@ -3253,7 +3253,7 @@ "par_id3153681\n" "help.text" msgid "This area is where you define the table structure." -msgstr "" +msgstr "In diesem Bereich definieren Sie die Tabellenstruktur." #. FfuwA #: 05010000.xhp @@ -3262,7 +3262,7 @@ "hd_id3153031\n" "help.text" msgid "Field Name" -msgstr "" +msgstr "Feldname" #. GiHyW #: 05010000.xhp @@ -3271,7 +3271,7 @@ "par_id3156113\n" "help.text" msgid "Specifies the name of the data field. The database engine may impose restrictions on the length of the table name, and the use of special characters and spaces within the table name." -msgstr "" +msgstr "Legt den Namen des Datenfeldes fest. Die Datenbank-Engine kann Einschränkungen hinsichtlich der Länge des Tabellennamens und der Verwendung von Sonderzeichen und Leerzeichen innerhalb des Tabellennamens auferlegen." #. QNg69 #: 05010000.xhp @@ -3280,7 +3280,7 @@ "hd_id3147618\n" "help.text" msgid "Field type" -msgstr "" +msgstr "Feldtyp" #. eK4to #: 05010000.xhp @@ -3289,7 +3289,7 @@ "par_id3154897\n" "help.text" msgid "Specifies the field type. The available field types are limited by the database engine being used." -msgstr "" +msgstr "Legt den Feldtyp fest. Die verfügbaren Feldtypen werden durch die verwendete Datenbank-Engine eingeschränkt." #. Ehy3n #: 05010000.xhp @@ -3298,7 +3298,7 @@ "hd_id3156119\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. 96xiG #: 05010000.xhp @@ -3307,7 +3307,7 @@ "par_id3145315\n" "help.text" msgid "Specifies an optional description for each field." -msgstr "" +msgstr "Legt eine optionale Beschreibung für jedes Feld fest." #. A99ei #: 05010000.xhp @@ -3316,7 +3316,7 @@ "par_id3155630\n" "help.text" msgid "The row headers contain the following context menu commands:" -msgstr "" +msgstr "Die Zeilenköpfe enthalten die folgenden Kontextmenübefehle:" #. rd8Zn #: 05010000.xhp @@ -3325,7 +3325,7 @@ "hd_id3156330\n" "help.text" msgid "Cut" -msgstr "" +msgstr "Ausschneiden" #. GVxeZ #: 05010000.xhp @@ -3334,7 +3334,7 @@ "par_id3159157\n" "help.text" msgid "Cuts the selected row to the clipboard." -msgstr "" +msgstr "Schneidet die ausgewählte Zeile aus und legt sie in der Zwischenablage ab." #. JxTSq #: 05010000.xhp @@ -3343,7 +3343,7 @@ "hd_id3159177\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Kopieren" #. ZAjhE #: 05010000.xhp @@ -3352,7 +3352,7 @@ "par_id3148685\n" "help.text" msgid "Copies the selected row to the clipboard." -msgstr "" +msgstr "Kopiert die ausgewählte Zeile in die Zwischenablage." #. Q8awG #: 05010000.xhp @@ -3361,7 +3361,7 @@ "hd_id3156327\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Einfügen" #. 5AQBL #: 05010000.xhp @@ -3370,7 +3370,7 @@ "par_id3152472\n" "help.text" msgid "Pastes the content of the clipboard." -msgstr "" +msgstr "Fügt den Inhalt der Zwischenablage ein." #. aQCGh #: 05010000.xhp @@ -3379,7 +3379,7 @@ "hd_id3144511\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Löschen" #. fbZPb #: 05010000.xhp @@ -3388,7 +3388,7 @@ "par_id3148550\n" "help.text" msgid "Deletes the selected row." -msgstr "" +msgstr "Löscht die ausgewählte Zeile." #. pD5B3 #: 05010000.xhp @@ -3397,7 +3397,7 @@ "hd_id3147303\n" "help.text" msgid "Insert Rows" -msgstr "" +msgstr "Zeile einfügen" #. kfUXp #: 05010000.xhp @@ -3406,7 +3406,7 @@ "par_id3149456\n" "help.text" msgid "Inserts an empty row above the current row, if the table has not been saved. Inserts an empty row at the end of the table if the table has already been saved." -msgstr "" +msgstr "Fügt eine leere Zeile über der aktuellen Zeile ein, wenn die Tabelle noch nicht gespeichert wurde. Fügt eine leere Zeile am Ende der Tabelle ein, wenn die Tabelle bereits gespeichert wurde." #. XMDuJ #: 05010000.xhp @@ -3415,7 +3415,7 @@ "hd_id3153524\n" "help.text" msgid "Primary Key" -msgstr "" +msgstr "Primärschlüssel" #. mmwbs #: 05010000.xhp @@ -3424,7 +3424,7 @@ "par_id3150398\n" "help.text" msgid "If this command has a check mark, the data field is defined as a primary key. By clicking the command you activate/deactivate the primary key definition of the field. The command is only visible if the data source supports primary keys." -msgstr "" +msgstr "Ist dieser Befehl mit einem Häkchen versehen, ist das Datenfeld als Primärschlüssel definiert. Durch Anklicken des Befehls aktivieren/deaktivieren Sie die Primärschlüsselfestlegung des Feldes. Der Befehl ist nur sichtbar, wenn die Datenquelle Primärschlüssel unterstützt." #. kDbYY #: 05010000.xhp @@ -3433,7 +3433,7 @@ "hd_id3153104\n" "help.text" msgid "Field properties" -msgstr "" +msgstr "Feldeigenschaften" #. BZPWE #: 05010000.xhp @@ -3442,7 +3442,7 @@ "par_id3148922\n" "help.text" msgid "Defines the field properties of the currently selected field." -msgstr "" +msgstr "Legt die Feldeigenschaften des aktuell ausgewählten Felds fest." #. bRsW9 #: 05010000.xhp @@ -3451,7 +3451,7 @@ "hd_id3150767\n" "help.text" msgid "Length" -msgstr "" +msgstr "Länge" #. D58RK #: 05010000.xhp @@ -3460,7 +3460,7 @@ "par_id3144761\n" "help.text" msgid "Specifies the maximum number of characters allowed for data entry of the corresponding data field including any spaces or special characters." -msgstr "" +msgstr "Legt die maximal zulässige Anzahl von Zeichen für die Dateneingabe des entsprechenden Datenfelds fest, einschließlich etwaiger Leerzeichen oder Sonderzeichen." #. fJknL #: 05010000.xhp @@ -3469,7 +3469,7 @@ "hd_id3154948\n" "help.text" msgid "Decimal places" -msgstr "" +msgstr "Dezimalstellen" #. FgVqm #: 05010000.xhp @@ -3478,7 +3478,7 @@ "par_id3149203\n" "help.text" msgid "Specifies the number of decimal places for a numerical field or decimal field." -msgstr "" +msgstr "Legt die Anzahl der Dezimalstellen für ein numerisches Feld oder Dezimalfeld fest." #. mW3AN #: 05010000.xhp @@ -3487,7 +3487,7 @@ "hd_id3156422\n" "help.text" msgid "Default value" -msgstr "" +msgstr "Standardwert" #. HYW5B #: 05010000.xhp @@ -3496,7 +3496,7 @@ "par_id3125863\n" "help.text" msgid "Specifies the value that is the default in new data records." -msgstr "" +msgstr "Legt den Wert fest, der in neuen Datensätzen voreingestellt ist." #. vQcGG #: 05010000.xhp @@ -3505,7 +3505,7 @@ "hd_id3147289\n" "help.text" msgid "Format example" -msgstr "" +msgstr "Formatbeispiel" #. CrqiQ #: 05010000.xhp @@ -3514,7 +3514,7 @@ "par_id3155131\n" "help.text" msgid "Displays a sample of the format code of the field by applying it to the default value. Select the format code with the Format Field button." -msgstr "" +msgstr "Zeigt ein Beispiel des Formatcodes des Felds an, indem es auf den Standardwert angewendet wird. Wählen Sie den Formatcode mit der Schaltfläche Feld formatieren aus." #. A2jGQ #: 05010000.xhp @@ -3523,7 +3523,7 @@ "hd_id3154129\n" "help.text" msgid "Format Field" -msgstr "" +msgstr "Feld Formatieren" #. 8GHDz #: 05010000.xhp @@ -3532,7 +3532,7 @@ "par_id3154146\n" "help.text" msgid "This button opens the Format Field dialog." -msgstr "" +msgstr "Diese Schaltfläche öffnet den Dialog Feld formatieren." #. CgbCE #: 05010000.xhp @@ -3541,7 +3541,7 @@ "hd_id3152576\n" "help.text" msgid "Help area" -msgstr "" +msgstr "Hilfebereich" #. Gg783 #: 05010000.xhp @@ -3550,7 +3550,7 @@ "par_id3150685\n" "help.text" msgid "Displays a help string or hint defined by the database designer for the given field." -msgstr "" +msgstr "Zeigt eine Hilfszeichenfolge oder einen Hinweis an, der vom Datenbankdesigner für das angegebene Feld festgelegt wurde." #. hzJ3Q #: 05010100.xhp @@ -3559,7 +3559,7 @@ "tit\n" "help.text" msgid "Index design" -msgstr "" +msgstr "Indexentwurf" #. q4EEe #: 05010100.xhp @@ -3568,7 +3568,7 @@ "hd_id3153311\n" "help.text" msgid "Index design" -msgstr "" +msgstr "Indexentwurf" #. 98zvT #: 05010100.xhp @@ -3577,7 +3577,7 @@ "par_id3166460\n" "help.text" msgid "The Index Design dialog allows you to define and edit the indexes for the current table." -msgstr "" +msgstr "Der Dialog Indexentwurf ermöglicht es, die Indizes für die aktuelle Tabelle zu definieren und zu bearbeiten." #. N85Yq #: 05010100.xhp @@ -3586,7 +3586,7 @@ "hd_id3149578\n" "help.text" msgid "Index list" -msgstr "" +msgstr "Indexliste" #. JQ5ws #: 05010100.xhp @@ -3595,7 +3595,7 @@ "par_id3155342\n" "help.text" msgid "Displays a list of available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialog." -msgstr "" +msgstr "Zeigt eine Liste verfügbarer Indizes an. Wählen Sie einen Index zum Bearbeiten aus der Liste aus. Die Details des ausgewählten Indexes werden im Dialog angezeigt." #. GNgfV #: 05010100.xhp @@ -3604,7 +3604,7 @@ "hd_id3149795\n" "help.text" msgid "New Index" -msgstr "" +msgstr "Neuer Index" #. hbmc3 #: 05010100.xhp @@ -3613,7 +3613,7 @@ "par_id3150085\n" "help.text" msgid "Creates a new index." -msgstr "" +msgstr "Erstellt einen neuen Index." #. CraTD #: 05010100.xhp @@ -3622,7 +3622,7 @@ "hd_id3145317\n" "help.text" msgid "Delete Current Index" -msgstr "" +msgstr "Aktuellen Index löschen" #. CLtrt #: 05010100.xhp @@ -3631,7 +3631,7 @@ "par_id3154860\n" "help.text" msgid "Deletes the current index." -msgstr "" +msgstr "Löscht den aktuellen Index." #. qxQaG #: 05010100.xhp @@ -3640,7 +3640,7 @@ "hd_id3150986\n" "help.text" msgid "Rename Current Index" -msgstr "" +msgstr "Aktuellen Index umbenennen" #. Me7m2 #: 05010100.xhp @@ -3649,7 +3649,7 @@ "par_id3148685\n" "help.text" msgid "Renames the current index." -msgstr "" +msgstr "Benennt den aktuellen Index um." #. h5vTM #: 05010100.xhp @@ -3658,7 +3658,7 @@ "hd_id3153628\n" "help.text" msgid "Save Current Index" -msgstr "" +msgstr "Aktuellen Index speichern" #. GEBFr #: 05010100.xhp @@ -3667,7 +3667,7 @@ "par_id3148563\n" "help.text" msgid "Saves the current index in the data source." -msgstr "" +msgstr "Speichert den aktuellen Index in der Datenquelle." #. JxS8c #: 05010100.xhp @@ -3676,7 +3676,7 @@ "hd_id3154924\n" "help.text" msgid "Reset Current Index" -msgstr "" +msgstr "Aktuellen Index zurücksetzen" #. AkcRe #: 05010100.xhp @@ -3685,7 +3685,7 @@ "par_id3154758\n" "help.text" msgid "Resets the current index to the setting that it had when the dialog was started." -msgstr "" +msgstr "Setzt den aktuellen Index auf die Einstellung zurück, die er beim Start des Dialogs hatte." #. kpk89 #: 05010100.xhp @@ -3694,7 +3694,7 @@ "hd_id3152812\n" "help.text" msgid "Index details" -msgstr "" +msgstr "Indexdetails" #. whVGR #: 05010100.xhp @@ -3703,7 +3703,7 @@ "par_id3154938\n" "help.text" msgid "As soon as you change a detail of the current index and then select another index, the change is immediately passed on to the data source. You can only leave the dialog, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the Reset Current Index icon." -msgstr "" +msgstr "Sobald Sie ein Detail des aktuellen Index ändern und anschließend einen anderen Index auswählen, wird die Änderung sofort an die Datenquelle weitergegeben. Erst wenn die Änderung erfolgreich von der Datenquelle bestätigt wurde, können Sie den Dialog verlassen oder einen anderen Index auswählen. Sie können die Änderung jedoch rückgängig machen, indem Sie auf das Symbol Aktuellen Index zurücksetzen klicken." #. rEFpa #: 05010100.xhp @@ -3712,7 +3712,7 @@ "hd_id3154138\n" "help.text" msgid "Unique" -msgstr "" +msgstr "Eindeutig" #. wqFaL #: 05010100.xhp @@ -3721,7 +3721,7 @@ "par_id3156282\n" "help.text" msgid "Specifies whether the current index allows only unique values. Checking the Unique option prevents duplicate data from being entered in the field and ensures data integrity." -msgstr "" +msgstr "Legt fest, ob der aktuelle Index nur eindeutige Werte zulässt. Durch Aktivieren der Option Eindeutig wird verhindert, dass doppelte Daten in das Feld eingegeben werden, und es wird die Datenintegrität sichergestellt." #. SFD2p #: 05010100.xhp @@ -3730,7 +3730,7 @@ "hd_id3150448\n" "help.text" msgid "Fields" -msgstr "" +msgstr "Felder" #. KGRnz #: 05010100.xhp @@ -3739,7 +3739,7 @@ "par_id3147085\n" "help.text" msgid "The Fields area displays a list of fields in the current table. You can also select multiple fields. In order to remove a field from the selection, select the empty entry at the start of the list." -msgstr "" +msgstr "Der Bereich Felder zeigt eine Liste der Felder in der aktuellen Tabelle an. Sie können auch mehrere Felder auswählen. Um ein Feld aus der Auswahl zu entfernen, markieren Sie den leeren Eintrag am Anfang der Liste." #. ALC5T #: 05010100.xhp @@ -3748,7 +3748,7 @@ "hd_id3149765\n" "help.text" msgid "Index field" -msgstr "" +msgstr "Indexfeld" #. 2oDE4 #: 05010100.xhp @@ -3757,7 +3757,7 @@ "par_id3158408\n" "help.text" msgid "Displays a list of the fields in the current table. You can select more than one field." -msgstr "" +msgstr "Zeigt eine Liste der Felder in der aktuellen Tabelle an. Sie können mehr als ein Feld auswählen." #. CmQtE #: 05010100.xhp @@ -3766,7 +3766,7 @@ "hd_id3153192\n" "help.text" msgid "Sort order" -msgstr "" +msgstr "Sortierreihenfolge" #. MXzBy #: 05010100.xhp @@ -3775,7 +3775,7 @@ "par_id3149561\n" "help.text" msgid "Determines the sort order of the indexes." -msgstr "" +msgstr "Legt die Sortierreihenfolge der Indizes fest." #. cEYAF #: 05010100.xhp @@ -3784,7 +3784,7 @@ "hd_id3155132\n" "help.text" msgid "Close" -msgstr "" +msgstr "Schließen" #. NuXdU #: 05010100.xhp @@ -3793,7 +3793,7 @@ "par_id3154190\n" "help.text" msgid "Closes the dialog." -msgstr "" +msgstr "Schließt den Dialog." #. n4gFz #: 05020000.xhp @@ -3802,7 +3802,7 @@ "tit\n" "help.text" msgid "Relations" -msgstr "" +msgstr "Relationen" #. sQwNc #: 05020000.xhp @@ -3811,7 +3811,7 @@ "hd_id3153323\n" "help.text" msgid "Relations" -msgstr "" +msgstr "Relationen" #. GxBiD #: 05020000.xhp @@ -3820,7 +3820,7 @@ "bm_id3146957\n" "help.text" msgid "relational databases (Base)" -msgstr "" +msgstr "Relationale Datenbanken (Base)" #. YYXkm #: 05020000.xhp @@ -3829,7 +3829,7 @@ "par_id3146957\n" "help.text" msgid "This command opens the Relation Design window, which allows you to define relationships between various database tables." -msgstr "" +msgstr "Dieser Befehl öffnet das Fenster Relationenentwurf, in dem Sie Relationen zwischen verschiedenen Datenbanktabellen festlegen können." #. vMuED #: 05020000.xhp @@ -3838,7 +3838,7 @@ "par_id3154823\n" "help.text" msgid "Here you can link together tables from the current database through common data fields. Click the New Relation icon to create the relationships, or simply drag-and-drop with the mouse." -msgstr "" +msgstr "Hier können Sie Tabellen aus der aktuellen Datenbank über gemeinsame Datenfelder miteinander verknüpfen. Klicken Sie auf das Symbol Neue Relation, um die Relationen zu erstellen, oder erzeugen Sie sie einfach per Ziehen-und-Ablegen mit der Maus." #. zHWMJ #: 05020000.xhp @@ -3847,7 +3847,7 @@ "par_id3145316\n" "help.text" msgid "This function is only available if you are working with a relational database." -msgstr "" +msgstr "Diese Funktion ist nur verfügbar, wenn Sie mit einer relationalen Datenbank arbeiten." #. 5MXvo #: 05020000.xhp @@ -3856,7 +3856,7 @@ "par_id3149235\n" "help.text" msgid "When you choose Tools - Relationships, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the Add Tables icon. The Add Tables dialog opens in which you can select the tables with which to create a relation." -msgstr "" +msgstr "Wählen Sie Extras – Relationen…, um ein Fenster zu öffnen, in dem alle bestehenden Relationen zwischen den Tabellen der aktuellen Datenbank angezeigt werden. Wenn keine Relationen definiert wurden oder Sie andere Tabellen der Datenbank miteinander in Relation setzen möchten, klicken Sie auf das Symbol Tabellen hinzufügen. Der Dialog Tabellen hinzufügen wird geöffnet, in dem Sie die Tabellen auswählen können, zu denen eine Relation erstellt werden soll." #. krxTw #: 05020000.xhp @@ -3865,7 +3865,7 @@ "par_id3152812\n" "help.text" msgid "If the Relation Design window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created." -msgstr "" +msgstr "Wenn das Fenster Relationenentwurf geöffnet ist, können die ausgewählten Tabellen nicht geändert werden, auch nicht im Modus Tabellenentwurf. Dadurch wird sichergestellt, dass Tabellen nicht geändert werden, während die Relationen erstellt werden." #. zZFEP #: 05020000.xhp @@ -3874,7 +3874,7 @@ "par_id3150541\n" "help.text" msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key." -msgstr "" +msgstr "Die ausgewählten Tabellen werden im oberen Bereich der Ansicht Relationenentwurf angezeigt. Sie können ein Tabellenfenster über das Kontextmenü oder mit der Taste Entf schließen." #. uJVYH #: 05020000.xhp @@ -3883,7 +3883,7 @@ "bm_id3148922\n" "help.text" msgid "primary keys;inserting (Base)keys;primary keys (Base)external keys (Base)" -msgstr "" +msgstr "Primärschlüssel; Einfügen (Base)Schlüssel; Primärschlüssel (Base)Externe Schlüssel (Base)" #. ek2aE #: 05020000.xhp @@ -3892,7 +3892,7 @@ "hd_id3148922\n" "help.text" msgid "Primary key and foreign keys" -msgstr "" +msgstr "Primärschlüssel und Fremdschlüssel" #. BDbWF #: 05020000.xhp @@ -3910,7 +3910,7 @@ "par_id3147085\n" "help.text" msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol." -msgstr "" +msgstr "Alle Datenfelder, die auf einen Primärschlüssel verweisen, werden im Tabellenfenster durch ein kleines Schlüsselsymbol gekennzeichnet." #. vro8F #: 05020000.xhp @@ -3919,7 +3919,7 @@ "hd_id3153193\n" "help.text" msgid "Define relations" -msgstr "" +msgstr "Relationen definieren" #. wmwWU #: 05020000.xhp @@ -3928,7 +3928,7 @@ "bm_id3155430\n" "help.text" msgid "relations; creating and deleting (Base)" -msgstr "" +msgstr "Relationen; Erstellen und Löschen (Base)" #. pGNLA #: 05020000.xhp @@ -3937,7 +3937,7 @@ "par_id3155430\n" "help.text" msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key." -msgstr "" +msgstr "Alle bestehenden Relationen werden im Fenster Relationen durch eine Linie angezeigt, welche die Primär- und Fremdschlüsselfelder verbindet. Sie können eine Relation hinzufügen, indem Sie das Feld einer Tabelle per Ziehen-und-Ablegen auf das Feld einer anderen Tabelle ziehen. Eine Relation wird wieder entfernt, indem Sie diese auswählen und die Taste Entf drücken." #. EF2rg #: 05020000.xhp @@ -3946,7 +3946,7 @@ "par_id3149984\n" "help.text" msgid "Alternatively, you can also click the New Relation icon in the top area of the relation field and define the relation between two tables in the Relations dialog." -msgstr "" +msgstr "Alternativ können Sie auch auf das Symbol Neue Relation im oberen Bereich des Felds Relation klicken und die Relation zwischen zwei Tabellen im Dialog Relationen festlegen." #. yTadX #: 05020000.xhp @@ -3955,7 +3955,7 @@ "par_id3153093\n" "help.text" msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database." -msgstr "" +msgstr "Wenn Sie $[officename] als Frontend für eine relationale Datenbank verwenden, wird das Anlegen und Löschen von Beziehungen nicht von $[officename] in einen Zwischenspeicher gelegt, sondern direkt an die Datenbank weitergeleitet." #. bnCjW #: 05020000.xhp @@ -3964,7 +3964,7 @@ "par_id3155856\n" "help.text" msgid "By double-clicking a connection line, you can assign certain properties to the relation. The Relations dialog opens." -msgstr "" +msgstr "Per Doppelklick auf eine Verbindungslinie können Sie der Relation bestimmte Eigenschaften zuweisen. Der Dialog Relationen öffnet sich." #. zaiku #: 05020100.xhp @@ -3973,7 +3973,7 @@ "tit\n" "help.text" msgid "Relations" -msgstr "" +msgstr "Relationen" #. BAAZE #: 05020100.xhp @@ -3982,7 +3982,7 @@ "bm_id3150499\n" "help.text" msgid "relations; properties (Base)key fields for relations (Base)cascading update (Base)" -msgstr "" +msgstr "Relationen; Eigenschaften (Base)Schlüsselfelder für Relationen (Base)Kaskadierende Aktualisierung (Base)" #. tDgC3 #: 05020100.xhp @@ -3991,7 +3991,7 @@ "hd_id3150445\n" "help.text" msgid "Relations" -msgstr "" +msgstr "Relationen" #. 5fAEp #: 05020100.xhp @@ -4000,7 +4000,7 @@ "par_id3150499\n" "help.text" msgid "Allows you to define and edit a relation between two tables." -msgstr "" +msgstr "Ermöglicht es Ihnen, eine Relation zwischen zwei Tabellen festzulegen und zu bearbeiten." #. yHc9N #: 05020100.xhp @@ -4009,7 +4009,7 @@ "par_id3155136\n" "help.text" msgid "The update and delete options are only available if they are supported by the database used." -msgstr "" +msgstr "Die Optionen \"Aktualisieren\" und \"Löschen\" sind nur verfügbar, wenn sie von der verwendeten Datenbank unterstützt werden." #. gdhcZ #: 05020100.xhp @@ -4018,7 +4018,7 @@ "hd_id3155341\n" "help.text" msgid "Tables involved" -msgstr "" +msgstr "Beteiligte Tabellen" #. P78bc #: 05020100.xhp @@ -4027,7 +4027,7 @@ "par_id3153880\n" "help.text" msgid "This is where the two related tables are listed. If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog." -msgstr "" +msgstr "Hier werden die beiden verknüpften Tabellen aufgelistet. Wenn Sie eine neue Relation erstellen, können Sie aus jedem der Kombinationsfelder im oberen Bereich des Dialogs eine Tabelle auswählen." #. 4UCC7 #: 05020100.xhp @@ -4036,7 +4036,7 @@ "par_id3154047\n" "help.text" msgid "If you opened the Relations dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified." -msgstr "" +msgstr "Wenn Sie den Dialog Relationen für eine bestehende Relation durch Doppelklick auf die Verbindungslinien im Fenster Relationen geöffnet haben, können die an der Relation beteiligten Tabellen nicht geändert werden." #. VBeNf #: 05020100.xhp @@ -4045,7 +4045,7 @@ "hd_id3153822\n" "help.text" msgid "Key fields" -msgstr "" +msgstr "Schlüsselfelder" #. CnkB6 #: 05020100.xhp @@ -4054,7 +4054,7 @@ "par_id3159157\n" "help.text" msgid "Defines the key fields for the relation." -msgstr "" +msgstr "Legt die Schlüsselfelder für die Relation fest." #. tG7Wy #: 05020100.xhp @@ -4063,7 +4063,7 @@ "par_id3149235\n" "help.text" msgid "The names of the tables selected for the link appear here as column names. If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row." -msgstr "" +msgstr "Die Namen der für den Link ausgewählten Tabellen erscheinen hier als Spaltennamen. Wenn Sie auf ein Feld klicken, können Sie mit den Pfeilschaltflächen ein Feld aus der Tabelle auswählen. Jede Relation wird in eine Zeile geschrieben." #. ECqps #: 05020100.xhp @@ -4072,7 +4072,7 @@ "hd_id3145609\n" "help.text" msgid "Update options" -msgstr "" +msgstr "Updateoptionen" #. TcZQE #: 05020100.xhp @@ -4081,7 +4081,7 @@ "par_id3153061\n" "help.text" msgid "Here you can select options that take effect when there are changes to a primary key field." -msgstr "" +msgstr "Hier können Sie Optionen auswählen, die wirksam werden, wenn Änderungen an einem Primärschlüsselfeld vorgenommen werden." #. SNgAC #: 05020100.xhp @@ -4090,7 +4090,7 @@ "hd_id3149046\n" "help.text" msgid "No action" -msgstr "" +msgstr "Keine Aktion" #. BQgh9 #: 05020100.xhp @@ -4099,7 +4099,7 @@ "par_id3152360\n" "help.text" msgid "Specifies that any change made to a primary key does not affect other external key fields." -msgstr "" +msgstr "Legt fest, dass sich Änderungen an einem Primärschlüssel nicht auf andere externe Schlüsselfelder auswirken." #. UzK5q #: 05020100.xhp @@ -4108,7 +4108,7 @@ "hd_id3148664\n" "help.text" msgid "Updating cascade" -msgstr "" +msgstr "Kaskadierende Aktualisierung" #. GFtru #: 05020100.xhp @@ -4117,7 +4117,7 @@ "par_id3154073\n" "help.text" msgid "Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update)." -msgstr "" +msgstr "Aktualisiert alle externen Schlüsselfelder, wenn der Wert des entsprechenden Primärschlüssels geändert wurde (Kaskadierende Aktualisierung)." #. xydLE #: 05020100.xhp @@ -4126,7 +4126,7 @@ "hd_id3145171\n" "help.text" msgid "Set null" -msgstr "" +msgstr "Null setzen" #. ksYnw #: 05020100.xhp @@ -4135,7 +4135,7 @@ "par_id3154123\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty." -msgstr "" +msgstr "Verwenden Sie diese Option, um, wenn der entsprechende Primärschlüssel geändert wird, den Wert \"IS NULL\" für alle externen Schlüsselfelder festzulegen. IS NULL bedeutet, dass das Feld leer ist." #. FGxMC #: 05020100.xhp @@ -4144,7 +4144,7 @@ "hd_id3150448\n" "help.text" msgid "Set default" -msgstr "" +msgstr "Standard setzen" #. T7dEQ #: 05020100.xhp @@ -4153,7 +4153,7 @@ "par_id3151041\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties." -msgstr "" +msgstr "Verwenden Sie diese Option, um, wenn der entsprechende Primärschlüssel geändert wurde, einen Standardwert für alle externen Schlüsselfelder festzulegen. Während der Erstellung der entsprechenden Tabelle wird der Standardwert eines externen Schlüsselfelds bei der Zuweisung der Feldeigenschaften festgelegt." #. AvWBL #: 05020100.xhp @@ -4162,7 +4162,7 @@ "hd_id3125863\n" "help.text" msgid "Delete options" -msgstr "" +msgstr "Löschoptionen" #. ayyns #: 05020100.xhp @@ -4171,7 +4171,7 @@ "par_id3153193\n" "help.text" msgid "Here you can select options that take effect when a primary key field is deleted." -msgstr "" +msgstr "Hier können Sie Optionen auswählen, die wirksam werden, wenn ein Primärschlüsselfeld gelöscht wird." #. jTCSL #: 05020100.xhp @@ -4180,7 +4180,7 @@ "hd_id3159252\n" "help.text" msgid "No action" -msgstr "" +msgstr "Keine Aktion" #. PgDqt #: 05020100.xhp @@ -4189,7 +4189,7 @@ "par_id3145785\n" "help.text" msgid "Specifies that the deletion of a primary key will not have any effect on other external key fields." -msgstr "" +msgstr "Legt fest, dass das Löschen eines Primärschlüssels keine Auswirkung auf andere externe Schlüsselfelder hat." #. hFmB4 #: 05020100.xhp @@ -4198,7 +4198,7 @@ "hd_id3154146\n" "help.text" msgid "Delete cascade" -msgstr "" +msgstr "Kaskadierendes Löschen" #. ESpAp #: 05020100.xhp @@ -4207,7 +4207,7 @@ "par_id3155309\n" "help.text" msgid "Specifies that all external key fields will be deleted if you delete the corresponding primary key field." -msgstr "" +msgstr "Legt fest, dass alle externen Schlüsselfelder gelöscht werden, wenn Sie das entsprechende Primärschlüsselfeld löschen." #. ZaNTh #: 05020100.xhp @@ -4216,7 +4216,7 @@ "par_id3153140\n" "help.text" msgid "When you delete a primary key field with the Delete cascade option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted." -msgstr "" +msgstr "Wenn Sie ein Primärschlüsselfeld mit der Option Kaskadierendes Löschen löschen, werden alle Datensätze aus anderen Tabellen, die diesen Schlüssel als Fremdschlüssel haben, ebenfalls gelöscht. Verwenden Sie diese Option mit großer Sorgfalt; Es ist möglich, dass ein Großteil der Datenbank gelöscht wird." #. mAu9C #: 05020100.xhp @@ -4225,7 +4225,7 @@ "hd_id3152596\n" "help.text" msgid "Set null" -msgstr "" +msgstr "Null setzen" #. dAtCx #: 05020100.xhp @@ -4234,7 +4234,7 @@ "par_id3153363\n" "help.text" msgid "If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields." -msgstr "" +msgstr "Wenn Sie den entsprechenden Primärschlüssel löschen, wird allen externen Schlüsselfeldern der Wert \"IS NULL\" zugewiesen." #. 474LG #: 05020100.xhp @@ -4243,7 +4243,7 @@ "hd_id3145272\n" "help.text" msgid "Set Default" -msgstr "" +msgstr "Standard setzen" #. ktJ6K #: 05020100.xhp @@ -4252,7 +4252,7 @@ "par_id3154320\n" "help.text" msgid "If you delete the corresponding primary key, a set value will be set to all external key fields." -msgstr "" +msgstr "Wenn Sie den entsprechenden Primärschlüssel löschen, wird ein Standardwert für alle externen Schlüsselfelder gesetzt." #. x8A6E #: 05030000.xhp @@ -4261,7 +4261,7 @@ "tit\n" "help.text" msgid "Copy a Table by Drag-and-Drop" -msgstr "" +msgstr "Kopieren einer Tabelle per Ziehen-und-Ablegen" #. VdcaB #: 05030000.xhp @@ -4270,7 +4270,7 @@ "hd_id3154894\n" "help.text" msgid "Copy Query or Table by Drag-and-Drop" -msgstr "" +msgstr "Eine Abfrage oder Tabelle per Ziehen-und-Ablegen kopieren" #. nDG9W #: 05030000.xhp @@ -4279,7 +4279,7 @@ "bm_id3155535\n" "help.text" msgid "queries; copying (Base)tables in databases; copying database tables (Base)" -msgstr "" +msgstr "Abfragen; Kopieren (Base)Tabellen in Datenbanken; Kopieren von Datenbanktabellen (Base)" #. n82rc #: 05030000.xhp @@ -4288,7 +4288,7 @@ "par_id3155535\n" "help.text" msgid "Dragging-and-dropping a query or table opens the Copy Table dialog, which allows you to define the options for copying a query or a table." -msgstr "" +msgstr "Durch Ziehen-und-Ablegen einer Abfrage oder Tabelle wird der Dialog Tabelle kopieren geöffnet, in dem Sie die Optionen zum Kopieren einer Abfrage oder Tabelle festlegen können." #. CzRJq #: 05030000.xhp @@ -4297,7 +4297,7 @@ "par_id3148539\n" "help.text" msgid "With the Copy Table dialog you can:" -msgstr "" +msgstr "Mit dem Dialog Tabelle kopieren können Sie:" #. G45TE #: 05030000.xhp @@ -4306,7 +4306,7 @@ "par_id3153147\n" "help.text" msgid "copy the data from the table into another table," -msgstr "" +msgstr "die Daten aus der Tabelle in eine andere Tabelle kopieren," #. 9Kvqa #: 05030000.xhp @@ -4315,7 +4315,7 @@ "par_id3150504\n" "help.text" msgid "use the structure of the table as the basis for creating a new table." -msgstr "" +msgstr "die Struktur der Tabelle als Grundlage für die Erstellung einer neuen Tabelle verwenden." #. dDRmD #: 05030000.xhp @@ -4324,7 +4324,7 @@ "par_id3155628\n" "help.text" msgid "You can copy within the same database or between different databases." -msgstr "" +msgstr "Sie können innerhalb derselben Datenbank oder zwischen verschiedenen Datenbanken kopieren." #. Ed5rp #: 05030100.xhp @@ -4333,7 +4333,7 @@ "tit\n" "help.text" msgid "Copy Table" -msgstr "" +msgstr "Tabelle kopieren" #. kkUkn #: 05030100.xhp @@ -4342,7 +4342,7 @@ "hd_id3085157\n" "help.text" msgid "Copy Table" -msgstr "" +msgstr "Tabelle kopieren" #. sBC76 #: 05030100.xhp @@ -4351,7 +4351,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 "Sie können eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen in den Tabellenbereich des Fensters einer Datenbankdatei ziehen. Der Dialog Tabelle kopieren wird geöffnet." #. ciK5F #: 05030100.xhp @@ -4360,7 +4360,7 @@ "hd_id3154926\n" "help.text" msgid "Table name" -msgstr "" +msgstr "Tabellenname" #. iFF9F #: 05030100.xhp @@ -4369,7 +4369,7 @@ "par_id3144740\n" "help.text" msgid "Specifies a name for the copy. Some databases only accept names containing eight or fewer characters." -msgstr "" +msgstr "Geben Sie einen Namen für die Kopie ein. Einige Datenbanken akzeptieren nur Namen mit acht oder weniger Zeichen." #. x78x3 #: 05030100.xhp @@ -4378,7 +4378,7 @@ "hd_id3154228\n" "help.text" msgid "Options" -msgstr "" +msgstr "Optionen" #. JvNbF #: 05030100.xhp @@ -4387,7 +4387,7 @@ "hd_id3157898\n" "help.text" msgid "Definition and data" -msgstr "" +msgstr "Definition und Daten" #. TqTmF #: 05030100.xhp @@ -4396,7 +4396,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 "Erzeugt eine 1:1 Kopie der Datenbanktabelle. Die Tabellendefinition und die kompletten Daten werden kopiert. Die Tabellendefinition umfasst die Tabellenstruktur und das Format aus verschiedenen Datenfeldern, einschließlich spezieller Feldeigenschaften. Die Feldinhalte liefern die Daten." #. hezaD #: 05030100.xhp @@ -4405,7 +4405,7 @@ "hd_id3149346\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Definition" #. b2GpC #: 05030100.xhp @@ -4414,7 +4414,7 @@ "par_id3156426\n" "help.text" msgid "Copies only the table definition and not the corresponding data." -msgstr "" +msgstr "Kopiert nur die Tabellendefinition und nicht die zugehörigen Daten." #. RCvEj #: 05030100.xhp @@ -4423,7 +4423,7 @@ "hd_id3143267\n" "help.text" msgid "As table view" -msgstr "" +msgstr "Als Tabellenansicht" #. BNNHr #: 05030100.xhp @@ -4432,7 +4432,7 @@ "par_id3153311\n" "help.text" msgid "If the database supports Views and you selected this option, a query will be created in the table container as a table. This option allows you to view the query results as a normal table view. The table will be filtered in the view with a \"Select\" SQL statement." -msgstr "" +msgstr "Wenn die Datenbank Ansichten unterstützt und Sie diese Option ausgewählt haben, wird eine Abfrage im Tabellencontainer als Tabelle erstellt. Mit dieser Option können Sie die Abfrageergebnisse als normale Tabellenansicht anzeigen. Die Tabelle wird in der Ansicht mit der SQL-Anweisung \"Select\" gefiltert." #. yJmgp #: 05030100.xhp @@ -4441,7 +4441,7 @@ "hd_id3155535\n" "help.text" msgid "Append data" -msgstr "" +msgstr "Daten anhängen" #. aB4JD #: 05030100.xhp @@ -4450,7 +4450,7 @@ "par_id3166410\n" "help.text" msgid "Appends the data of the table to be copied to an existing table." -msgstr "" +msgstr "Hängt die Daten der zu kopierenden Tabelle an eine bestehende Tabelle an." #. AnYQg #: 05030100.xhp @@ -4459,7 +4459,7 @@ "par_id3147275\n" "help.text" msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table." -msgstr "" +msgstr "Die Tabellendefinition muss genau gleich sein, damit Daten kopiert werden können. Daten können nicht kopiert werden, wenn ein Datenfeld in der Zieltabelle ein anderes Format hat als das Datenfeld in der Quelltabelle." #. ADGPK #: 05030100.xhp @@ -4468,7 +4468,7 @@ "par_id3156117\n" "help.text" msgid "Match the data field names in the Copy Table dialog on the Apply Columns page." -msgstr "" +msgstr "Gleichen Sie die Datenfeldnamen im Dialog Tabelle kopieren auf der Seite Spalten anwenden ab." #. toArF #: 05030100.xhp @@ -4477,7 +4477,7 @@ "par_id3153252\n" "help.text" msgid "If the data cannot be attached, you will see a list of fields in the Column Info dialog whose data cannot be copied. If you confirm this dialog with OK, only the data that does not appear in the list will be attached." -msgstr "" +msgstr "Wenn die Daten nicht angehängt werden können, sehen Sie im Dialog Spalteninfo eine Liste der Felder, deren Daten nicht kopiert werden können. Bestätigen Sie diesen Dialog mit OK, werden nur die Daten angehängt, die nicht in der Liste erscheinen." #. 8JYz8 #: 05030100.xhp @@ -4486,7 +4486,7 @@ "par_id3158430\n" "help.text" msgid "If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table." -msgstr "" +msgstr "Wenn die Felder der Zieltabelle beim Anhängen von Daten eine kleinere Feldlänge haben als in der Quelltabelle, werden die Quelldatenfelder automatisch auf die Feldlängen in der Zieltabelle gekürzt." #. 6oNSE #: 05030100.xhp @@ -4495,7 +4495,7 @@ "bm_id3149164\n" "help.text" msgid "primary keys; defining" -msgstr "" +msgstr "Primärschlüssel; definieren" #. odQAJ #: 05030100.xhp @@ -4504,7 +4504,7 @@ "hd_id3149164\n" "help.text" msgid "Create primary key" -msgstr "" +msgstr "Primärschlüssel erstellen" #. T7Dmr #: 05030100.xhp @@ -4513,7 +4513,7 @@ "par_id3155922\n" "help.text" msgid "Automatically generates a primary key data field and fills it with values. You should always use this field, since a primary key must always be available in order to edit the table." -msgstr "" +msgstr "Erzeugt automatisch ein Datenfeld \"Primärschlüssel\" und füllt es mit Werten. Dieses Feld sollten Sie immer verwenden, da zum Bearbeiten der Tabelle immer ein Primärschlüssel vorhanden sein muss." #. EhRtD #: 05030100.xhp @@ -4522,7 +4522,7 @@ "hd_id3146794\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. v9USa #: 05030100.xhp @@ -4531,7 +4531,7 @@ "par_id3156343\n" "help.text" msgid "Specifies a name for the primary key generated. This name is optional." -msgstr "" +msgstr "Legt einen Namen für den generierten Primärschlüssel fest. Dieser Name ist optional." #. seBiB #: 05030100.xhp @@ -4540,7 +4540,7 @@ "par_id3151056\n" "help.text" msgid "Next page" -msgstr "" +msgstr "Nächste Seite" #. DDJC9 #: 05030200.xhp @@ -4549,7 +4549,7 @@ "tit\n" "help.text" msgid "Apply columns" -msgstr "" +msgstr "Spalten anwenden" #. FnB9J #: 05030200.xhp @@ -4558,7 +4558,7 @@ "hd_id3150445\n" "help.text" msgid "Apply columns" -msgstr "" +msgstr "Spalten anwenden" #. 6b9Li #: 05030200.xhp @@ -4567,7 +4567,7 @@ "par_id3147143\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Apply columns dialog is the second window of the Copy table dialog." -msgstr "" +msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Der Dialog Spalten anwenden ist das zweite Fenster des Dialogs Tabelle kopieren." #. 8r9yc #: 05030200.xhp @@ -4576,7 +4576,7 @@ "hd_id3155552\n" "help.text" msgid "Existing columns" -msgstr "" +msgstr "Vorhandene Spalten" #. NDcVA #: 05030200.xhp @@ -4585,7 +4585,7 @@ "hd_id3154751\n" "help.text" msgid "Left list box" -msgstr "" +msgstr "Listenfeld links" #. AkHFX #: 05030200.xhp @@ -4594,7 +4594,7 @@ "par_id3147088\n" "help.text" msgid "Lists the available data fields that you can include in the copied table. To copy a data field, click its name, and then click the > button. To copy all of the fields, click the >> button." -msgstr "" +msgstr "Listet die verfügbaren Datenfelder auf, die Sie in die kopierte Tabelle aufnehmen können. Um ein Datenfeld zu kopieren, klicken Sie auf seinen Namen und dann auf die Schaltfläche \">\". Um alle Felder zu kopieren, klicken Sie auf die Schaltfläche >>." #. FYG4i #: 05030200.xhp @@ -4603,7 +4603,7 @@ "hd_id3154823\n" "help.text" msgid "Right list box" -msgstr "" +msgstr "Listenfeld rechts" #. KgGGQ #: 05030200.xhp @@ -4612,7 +4612,7 @@ "par_id3156426\n" "help.text" msgid "Lists the fields that you want to include in the copied table." -msgstr "" +msgstr "Listet die Felder auf, die Sie in die kopierte Tabelle aufnehmen möchten." #. VyQwS #: 05030200.xhp @@ -4621,7 +4621,7 @@ "hd_id3147242\n" "help.text" msgid "Buttons" -msgstr "" +msgstr "Schaltflächen" #. NT8C3 #: 05030200.xhp @@ -4630,7 +4630,7 @@ "par_id3146797\n" "help.text" msgid "Adds or removes the selected field (> or < button) or all of the fields (<< or >> button)." -msgstr "" +msgstr "Fügt das ausgewählte Feld (Schaltfläche \">\" oder \"<\") oder alle Felder (Schaltfläche \"<<\" oder \">>\") hinzu oder entfernt es/sie." #. CuqBd #: 05030200.xhp @@ -4639,7 +4639,7 @@ "par_id3153561\n" "help.text" msgid "Next page" -msgstr "" +msgstr "Nächste Seite" #. gTg68 #: 05030300.xhp @@ -4648,7 +4648,7 @@ "tit\n" "help.text" msgid "Type formatting" -msgstr "" +msgstr "Typformatierung" #. ybz5D #: 05030300.xhp @@ -4657,7 +4657,7 @@ "hd_id3163829\n" "help.text" msgid "Type formatting" -msgstr "" +msgstr "Typformatierung" #. EkSPG #: 05030300.xhp @@ -4666,7 +4666,7 @@ "par_id3150247\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Type formatting dialog is the third window of the Copy table dialog." -msgstr "" +msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Der Dialog Typformatierung ist das dritte Fenster des Dialogs Tabelle kopieren." #. mnHDq #: 05030300.xhp @@ -4675,7 +4675,7 @@ "hd_id3152801\n" "help.text" msgid "List box" -msgstr "" +msgstr "Listenfeld" #. EqDjY #: 05030300.xhp @@ -4684,7 +4684,7 @@ "par_id3145313\n" "help.text" msgid "Lists the data fields that will be included in to the copied table." -msgstr "" +msgstr "Listet die Datenfelder auf, die in die kopierte Tabelle aufgenommen werden." #. NCTje #: 05030300.xhp @@ -4693,7 +4693,7 @@ "hd_id3155535\n" "help.text" msgid "Column information" -msgstr "" +msgstr "Spalteninformationen" #. eiXTf #: 05030300.xhp @@ -4702,7 +4702,7 @@ "hd_id3156426\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Feldname" #. MNzaq #: 05030300.xhp @@ -4711,7 +4711,7 @@ "par_id3153681\n" "help.text" msgid "Displays the name of the selected data field. If you want, you can enter a new name." -msgstr "" +msgstr "Zeigt den Namen des ausgewählten Datenfeldes an. Wenn Sie möchten, können Sie einen neuen Namen eingeben." #. GhbYj #: 05030300.xhp @@ -4720,7 +4720,7 @@ "hd_id3156113\n" "help.text" msgid "Field type" -msgstr "" +msgstr "Feldtyp" #. MmakP #: 05030300.xhp @@ -4729,7 +4729,7 @@ "par_id3149811\n" "help.text" msgid "Select a field type." -msgstr "" +msgstr "Wählen Sie einen Feldtyp aus." #. E9Z9q #: 05030300.xhp @@ -4738,7 +4738,7 @@ "hd_id3149763\n" "help.text" msgid "Length" -msgstr "" +msgstr "Länge" #. BE8Ct #: 05030300.xhp @@ -4747,7 +4747,7 @@ "par_id3155449\n" "help.text" msgid "Enter the number of characters for the data field." -msgstr "" +msgstr "Geben Sie die Anzahl der Zeichen für das Datenfeld ein." #. FqaDj #: 05030300.xhp @@ -4756,7 +4756,7 @@ "hd_id3159176\n" "help.text" msgid "Decimal places" -msgstr "" +msgstr "Dezimalstellen" #. 4pH6B #: 05030300.xhp @@ -4765,7 +4765,7 @@ "par_id3153666\n" "help.text" msgid "Enter the number of decimal places for the data field. This option is only available for numerical or decimal data fields." -msgstr "" +msgstr "Geben Sie die Anzahl der Dezimalstellen für das Datenfeld ein. Diese Option ist nur für numerische oder dezimale Datenfelder verfügbar." #. 8H7Yy #: 05030300.xhp @@ -4774,7 +4774,7 @@ "hd_id3150276\n" "help.text" msgid "Default value" -msgstr "" +msgstr "Standardwert" #. uF2x5 #: 05030300.xhp @@ -4783,7 +4783,7 @@ "par_id3147620\n" "help.text" msgid "Select the default value for a Yes/No field." -msgstr "" +msgstr "Wählen Sie den Standardwert für ein Ja/Nein-Feld aus." #. H7JCy #: 05030300.xhp @@ -4792,7 +4792,7 @@ "hd_id3153087\n" "help.text" msgid "Automatic type recognition" -msgstr "" +msgstr "Automatische Typerkennung" #. KTPFP #: 05030300.xhp @@ -4801,7 +4801,7 @@ "par_id3153561\n" "help.text" msgid "$[officename] can automatically recognize field contents when you copy database tables by drag and drop." -msgstr "" +msgstr "$[officename] kann Feldinhalte automatisch erkennen, wenn Sie Datenbanktabellen per Ziehen-und-Ablegen kopieren." #. XbBEn #: 05030300.xhp @@ -4810,7 +4810,7 @@ "hd_id3156023\n" "help.text" msgid "(max.) lines" -msgstr "" +msgstr "(max.) Zeilen" #. 9uGo7 #: 05030300.xhp @@ -4819,7 +4819,7 @@ "par_id3155923\n" "help.text" msgid "Enter the number of lines to use for automatic type recognition." -msgstr "" +msgstr "Geben Sie die Anzahl der Zeilen ein, die für die automatische Typerkennung verwendet werden sollen." #. ZojMW #: 05030300.xhp @@ -4828,7 +4828,7 @@ "hd_id3154347\n" "help.text" msgid "Auto" -msgstr "" +msgstr "Automatisch" #. KXrRC #: 05030300.xhp @@ -4837,7 +4837,7 @@ "par_id3152361\n" "help.text" msgid "Enables automatic type recognition." -msgstr "" +msgstr "Aktiviert die automatische Typerkennung." #. U6GAf #: 05030400.xhp @@ -4846,7 +4846,7 @@ "tit\n" "help.text" msgid "Assign columns" -msgstr "" +msgstr "Spalten zuweisen" #. qFHro #: 05030400.xhp @@ -4855,7 +4855,7 @@ "hd_id3151100\n" "help.text" msgid "Assign columns" -msgstr "" +msgstr "Spalten zuweisen" #. EkAFg #: 05030400.xhp @@ -4864,7 +4864,7 @@ "par_id3156027\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. If you select the Attach data check box on the first page of the Copy table dialog, the Assign columns dialog opens as the second window. You can use this dialog to map the contents of a data field in the source table to a different data field in the destination table." -msgstr "" +msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Wenn Sie das Markierfeld Daten anhängen auf der ersten Seite des Dialogs Tabelle kopieren aktivieren, öffnet sich der Dialog Spalten zuweisen als zweites Fenster. Sie können diesen Dialog verwenden, um den Inhalt eines Datenfelds in der Quelltabelle einem anderen Datenfeld in der Zieltabelle zuzuordnen." #. fGrH7 #: 05030400.xhp @@ -4873,7 +4873,7 @@ "hd_id3157958\n" "help.text" msgid "Source table" -msgstr "" +msgstr "Quelltabelle" #. XA5ur #: 05030400.xhp @@ -4882,7 +4882,7 @@ "par_id3145071\n" "help.text" msgid "Lists the data fields in the source table. To include a data field from the source table in the destination table, select the check box in front of the data field name. To map the contents of a data field in the source table to a different data field in the destination table, click the data field in the source table list, and then click the up or down arrow. To include all of the source data fields in the destination table, click All." -msgstr "" +msgstr "Listet die Datenfelder in der Quelltabelle auf. Um ein Datenfeld aus der Quelltabelle in die Zieltabelle aufzunehmen, aktivieren Sie das Markierfeld vor dem Datenfeldnamen. Um den Inhalt eines Datenfelds in der Quelltabelle einem anderen Datenfeld in der Zieltabelle zuzuordnen, klicken Sie auf das Datenfeld in der Quelltabellenliste und dann auf den Aufwärts- oder Abwärtspfeil. Um alle Quelldatenfelder in der Zieltabelle einzuschließen, klicken Sie auf Alle." #. Kn5tW #: 05030400.xhp @@ -4891,7 +4891,7 @@ "hd_id3166410\n" "help.text" msgid "Destination table" -msgstr "" +msgstr "Zieltabelle" #. CHq7j #: 05030400.xhp @@ -4900,7 +4900,7 @@ "par_id3154749\n" "help.text" msgid "Lists the possible data fields in the destination table. Only the data fields that are selected in the source table list will be included the destination table." -msgstr "" +msgstr "Listet die möglichen Datenfelder in der Zieltabelle auf. Nur die in der Quelltabellenliste ausgewählten Datenfelder werden in die Zieltabelle aufgenommen." #. yGCzC #: 05030400.xhp @@ -4909,7 +4909,7 @@ "hd_id3150670\n" "help.text" msgid "up" -msgstr "" +msgstr "Nach oben" #. AoHnF #: 05030400.xhp @@ -4918,7 +4918,7 @@ "par_id3155628\n" "help.text" msgid "Moves the selected entry up one position in the list." -msgstr "" +msgstr "Bewegt den ausgewählten Eintrag in der Liste um eine Position nach oben." #. BsfZK #: 05030400.xhp @@ -4927,7 +4927,7 @@ "hd_id3149580\n" "help.text" msgid "down" -msgstr "" +msgstr "Nach unten" #. XUyNh #: 05030400.xhp @@ -4936,7 +4936,7 @@ "par_id3150984\n" "help.text" msgid "Moves the selected entry down one position in the list." -msgstr "" +msgstr "Bewegt den ausgewählten Eintrag in der Liste um eine Position nach unten." #. DqTjR #: 05030400.xhp @@ -4945,7 +4945,7 @@ "hd_id3156156\n" "help.text" msgid "all" -msgstr "" +msgstr "Alle" #. FBk6i #: 05030400.xhp @@ -4954,7 +4954,7 @@ "par_id3154514\n" "help.text" msgid "Selects all of the data fields in the list." -msgstr "" +msgstr "Wählt alle Datenfelder in der Liste aus." #. eFJ6S #: 05030400.xhp @@ -4963,7 +4963,7 @@ "hd_id3153541\n" "help.text" msgid "none" -msgstr "" +msgstr "Keine" #. LYsDF #: 05030400.xhp @@ -4972,7 +4972,7 @@ "par_id3148563\n" "help.text" msgid "Clears all of the check boxes in the list." -msgstr "" +msgstr "Deaktiviert alle Markierfelder in der Liste." #. rxCsN #: 05040000.xhp @@ -4981,7 +4981,7 @@ "tit\n" "help.text" msgid "General" -msgstr "" +msgstr "Allgemein" #. DmCQD #: 05040000.xhp @@ -4990,7 +4990,7 @@ "hd_id3149031\n" "help.text" msgid "General" -msgstr "" +msgstr "Allgemein" #. 7ithV #: 05040100.xhp @@ -4999,7 +4999,7 @@ "tit\n" "help.text" msgid "General" -msgstr "" +msgstr "Allgemein" #. 5uLP9 #: 05040100.xhp @@ -5008,7 +5008,7 @@ "hd_id3153255\n" "help.text" msgid "General" -msgstr "" +msgstr "Allgemein" #. LsG3R #: 05040100.xhp @@ -5017,7 +5017,7 @@ "par_id3157898\n" "help.text" msgid "When you create a database table as an administrator, you can use this tab to determine user access, and to edit the data or the table structure." -msgstr "" +msgstr "Wenn Sie als Administrator eine Datenbanktabelle erstellen, können Sie auf diesem Register den Benutzerzugriff festlegen und die Daten oder Tabellenstruktur bearbeiten." #. CydBA #: 05040100.xhp @@ -5026,7 +5026,7 @@ "bm_id3152594\n" "help.text" msgid "access rights for database tables (Base)tables in databases; access rights to (Base)" -msgstr "" +msgstr "Zugriffsrechte auf Datenbanktabellen (Base)Tabellen in Datenbanken; Zugriffsrechte (Base)" #. VFwEY #: 05040100.xhp @@ -5035,7 +5035,7 @@ "par_id3152594\n" "help.text" msgid "If you are not the administrator, you can use the General tab to view your access rights for the selected table." -msgstr "" +msgstr "Wenn Sie nicht der Administrator sind, können Sie das Register Allgemein verwenden, um Ihre Zugriffsrechte für die ausgewählte Tabelle anzuzeigen." #. ZGqED #: 05040100.xhp @@ -5044,7 +5044,7 @@ "hd_id3145669\n" "help.text" msgid "Table name" -msgstr "" +msgstr "Tabellenname" #. hfNJd #: 05040100.xhp @@ -5053,7 +5053,7 @@ "par_id3147834\n" "help.text" msgid "Displays the name of the selected database table." -msgstr "" +msgstr "Zeigt den Namen der ausgewählten Datenbanktabelle an." #. mxdWQ #: 05040100.xhp @@ -5062,7 +5062,7 @@ "hd_id3156426\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. cGosS #: 05040100.xhp @@ -5071,7 +5071,7 @@ "par_id3154823\n" "help.text" msgid "Displays the type of database." -msgstr "" +msgstr "Zeigt den Datenbanktyp an." #. jCSC3 #: 05040100.xhp @@ -5080,7 +5080,7 @@ "hd_id3149095\n" "help.text" msgid "Location" -msgstr "" +msgstr "Ort" #. GjS2M #: 05040100.xhp @@ -5089,7 +5089,7 @@ "par_id3153311\n" "help.text" msgid "Displays the complete path of the database table." -msgstr "" +msgstr "Zeigt den vollständigen Pfad der Datenbanktabelle an." #. gA9FG #: 05040100.xhp @@ -5098,7 +5098,7 @@ "hd_id3153528\n" "help.text" msgid "Read data" -msgstr "" +msgstr "Daten lesen" #. YB94i #: 05040100.xhp @@ -5107,7 +5107,7 @@ "par_id3163802\n" "help.text" msgid "Allows a user to read the data." -msgstr "" +msgstr "Erlaubt einem Benutzer, die Daten zu lesen." #. MFSk5 #: 05040100.xhp @@ -5116,7 +5116,7 @@ "hd_id3150355\n" "help.text" msgid "Insert data" -msgstr "" +msgstr "Daten einfügen" #. XFubg #: 05040100.xhp @@ -5125,7 +5125,7 @@ "par_id3149398\n" "help.text" msgid "Allows a user to insert new data." -msgstr "" +msgstr "Erlaubt einem Benutzer das Einfügen neuer Daten." #. EW2bD #: 05040100.xhp @@ -5134,7 +5134,7 @@ "hd_id3155420\n" "help.text" msgid "Change data" -msgstr "" +msgstr "Daten ändern" #. U9WwE #: 05040100.xhp @@ -5143,7 +5143,7 @@ "par_id3158430\n" "help.text" msgid "Allows a user to change data." -msgstr "" +msgstr "Erlaubt einem Benutzer, Daten zu ändern." #. DqoTz #: 05040100.xhp @@ -5152,7 +5152,7 @@ "hd_id3149516\n" "help.text" msgid "Delete data" -msgstr "" +msgstr "Daten löschen" #. VRspq #: 05040100.xhp @@ -5161,7 +5161,7 @@ "par_id3155449\n" "help.text" msgid "Allows a user to delete data." -msgstr "" +msgstr "Erlaubt einem Benutzer, Daten zu löschen." #. WAXNP #: 05040100.xhp @@ -5170,7 +5170,7 @@ "hd_id3145674\n" "help.text" msgid "Change table structure" -msgstr "" +msgstr "Tabellenstruktur ändern" #. NAwCj #: 05040100.xhp @@ -5179,7 +5179,7 @@ "par_id3153146\n" "help.text" msgid "Allows a user to change the table structure." -msgstr "" +msgstr "Erlaubt einem Benutzer, die Tabellenstruktur zu ändern." #. rTzQj #: 05040100.xhp @@ -5188,7 +5188,7 @@ "hd_id3143270\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Definition" #. zAByc #: 05040100.xhp @@ -5197,7 +5197,7 @@ "par_id3154897\n" "help.text" msgid "Allows the user to delete the table structure." -msgstr "" +msgstr "Erlaubt einem Benutzer, die Tabellenstruktur zu löschen." #. gFhhG #: 05040100.xhp @@ -5206,7 +5206,7 @@ "hd_id3153126\n" "help.text" msgid "Modify references" -msgstr "" +msgstr "Verweise ändern" #. qx3NS #: 05040100.xhp @@ -5215,7 +5215,7 @@ "par_id3159399\n" "help.text" msgid "Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations." -msgstr "" +msgstr "Erlaubt einem Benutzer, die definierten Verweise zu ändern, zum Beispiel neue Relationen für die Tabelle einzugeben oder bestehende Relationen zu löschen." #. 2sbVx #: 05040200.xhp @@ -5224,7 +5224,7 @@ "tit\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. EwUEa #: 05040200.xhp @@ -5233,7 +5233,7 @@ "hd_id3109850\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. h4VES #: 05040200.xhp @@ -5242,7 +5242,7 @@ "hd_id3157898\n" "help.text" msgid "Table description" -msgstr "" +msgstr "Tabellenbeschreibung" #. ABb4R #: 05040200.xhp @@ -5251,7 +5251,7 @@ "par_id3154422\n" "help.text" msgid "Displays the description for the selected table." -msgstr "" +msgstr "Zeigt die Beschreibung für die ausgewählte Tabelle an." #. jpgRA #: 11000002.xhp @@ -5260,7 +5260,7 @@ "tit\n" "help.text" msgid "Data sources in $[officename]" -msgstr "" +msgstr "Datenquellen in $[officename]" #. w4Ehh #: 11000002.xhp @@ -5269,7 +5269,7 @@ "bm_id3155449\n" "help.text" msgid "databases;drag and drop (Base)" -msgstr "" +msgstr "Datenbanken; Ziehen-und-Ablegen (Base)" #. HwcVW #: 11000002.xhp @@ -5278,7 +5278,7 @@ "hd_id3151299\n" "help.text" msgid "Data sources in $[officename]" -msgstr "" +msgstr "Datenquellen in $[officename]" #. PNBCF #: 11000002.xhp @@ -5287,7 +5287,7 @@ "hd_id3150616\n" "help.text" msgid "Selecting the Address Book" -msgstr "" +msgstr "Ein Adressbuch auswählen" #. GeoEc #: 11000002.xhp @@ -5296,7 +5296,7 @@ "par_id3153049\n" "help.text" msgid "To select the address book that you want to use, choose Tools - Address Book Source." -msgstr "" +msgstr "Um das Adressbuch auszuwählen, das Sie verwenden möchten, wählen Sie Extras – Adressbuchquelle…." #. hdhBt #: 11000002.xhp @@ -5305,7 +5305,7 @@ "hd_id3147275\n" "help.text" msgid "Opening a Data Source" -msgstr "" +msgstr "Eine Datenquelle öffnen" #. C7ppK #: 11000002.xhp @@ -5314,7 +5314,7 @@ "par_id3154143\n" "help.text" msgid "To open the data source view, press CommandCtrl+Shift+F4 in a text, spreadsheet or form document." -msgstr "" +msgstr "Um die Datenquellenansicht zu öffnen, drücken Sie BefehlStrg+Umschalt+F4 in einem Text-, Tabellen- oder Formulardokument." #. qiyEE #: 11000002.xhp @@ -5323,7 +5323,7 @@ "par_id3154046\n" "help.text" msgid "To view the contents of a database, click the plus sign (+) in front of the name in the data source view." -msgstr "" +msgstr "Um den Inhalt einer Datenbank anzuzeigen, klicken Sie in der Datenquellenansicht auf das Pluszeichen (+) vor dem Namen." #. 884eA #: 11020000.xhp @@ -5332,7 +5332,7 @@ "tit\n" "help.text" msgid "ODBC" -msgstr "" +msgstr "ODBC" #. GCT7W #: 11020000.xhp @@ -5341,7 +5341,7 @@ "hd_id3149031\n" "help.text" msgid "ODBC" -msgstr "" +msgstr "ODBC" #. kyqcm #: 11020000.xhp @@ -5350,7 +5350,7 @@ "par_id3150499\n" "help.text" msgid "Specifies the settings for ODBC databases. This includes your user access data, driver settings, and font definitions." -msgstr "" +msgstr "Legt die Einstellungen für ODBC-Datenbanken fest. Dazu gehören Ihre Benutzerzugangsdaten, Treibereinstellungen und Schriftdefinitionen." #. Dbr2C #: 11020000.xhp @@ -5359,7 +5359,7 @@ "hd_id3148642\n" "help.text" msgid "User Name" -msgstr "" +msgstr "Benutzername" #. WBXTJ #: 11020000.xhp @@ -5368,7 +5368,7 @@ "par_id3154514\n" "help.text" msgid "Type the user name for accessing the database." -msgstr "" +msgstr "Geben Sie den Benutzernamen für den Zugriff auf die Datenbank ein." #. DpZgn #: 11020000.xhp @@ -5377,7 +5377,7 @@ "hd_id3153665\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Kennwort erforderlich" #. HaYKD #: 11020000.xhp @@ -5386,7 +5386,7 @@ "par_id3145119\n" "help.text" msgid "Prevents an unauthorized user from accessing the database. You only need to enter the password once per session." -msgstr "" +msgstr "Verhindert, dass ein nicht autorisierter Benutzer auf die Datenbank zugreift. Sie müssen das Kennwort nur einmal pro Sitzung eingeben." #. QWAfC #: 11020000.xhp @@ -5395,7 +5395,7 @@ "hd_id3153087\n" "help.text" msgid "Driver Settings" -msgstr "" +msgstr "Treibereinstellungen" #. FFBSB #: 11020000.xhp @@ -5404,7 +5404,7 @@ "par_id3143271\n" "help.text" msgid "Use this text field to enter additional optional driver settings if this is necessary." -msgstr "" +msgstr "Verwenden Sie dieses Textfeld, um zusätzliche optionale Treibereinstellungen einzugeben, falls dies erforderlich ist." #. ETNaE #: 11020000.xhp @@ -5413,7 +5413,7 @@ "hd_id3152472\n" "help.text" msgid "Character Set" -msgstr "" +msgstr "Zeichensatz" #. SCzpp #: 11020000.xhp @@ -5422,7 +5422,7 @@ "par_id3151245\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database. Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "Wählen Sie die Codekonvertierung aus, die Sie verwenden möchten, um die Datenbank in $[officename] anzuzeigen. Dies wirkt sich nicht auf die Datenbank aus. Wählen Sie \"System\", um den Standardzeichensatz Ihres Betriebssystems zu verwenden. Text- und dBASE-Datenbanken sind auf Zeichensätze mit einer festen Zeichenlänge beschränkt, wobei alle Zeichen mit der gleichen Anzahl von Bytes codiert sind." #. xBEZv #: 11020000.xhp @@ -5431,7 +5431,7 @@ "hd_id3149669\n" "help.text" msgid "General" -msgstr "" +msgstr "Allgemein" #. REocx #: 11020000.xhp @@ -5440,7 +5440,7 @@ "hd_id3147265\n" "help.text" msgid "Retrieve generated values" -msgstr "" +msgstr "Generierte Werte abrufen" #. ToEkf #: 11020000.xhp @@ -5449,7 +5449,7 @@ "par_id3151054\n" "help.text" msgid "Enables $[officename] support of auto-incremented data fields for the current ODBC or JDBC data source. Select this check box if the database does not support the auto-increment feature in its SDBCX layer. In general, the auto-increment is selected for the primary key field." -msgstr "" +msgstr "Aktiviert $[officename]-Unterstützung von automatisch inkrementierten Datenfeldern für die aktuelle ODBC- oder JDBC-Datenquelle. Aktivieren Sie dieses Markierfeld, wenn die Datenbank die Funktion Autoinkrement in seiner SDBCX-Schicht nicht unterstützt. Im Allgemeinen wird das Autoinkrement für das Primärschlüsselfeld ausgewählt." #. aokLy #: 11020000.xhp @@ -5458,7 +5458,7 @@ "hd_id3150400\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "Autoinkrement-Anweisung" #. HFuC7 #: 11020000.xhp @@ -5467,7 +5467,7 @@ "par_id3154366\n" "help.text" msgid "Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field. For example, a typical SQL statement to create a data field is:" -msgstr "" +msgstr "Geben Sie den SQL-Befehlsbezeichner ein, der die Datenquelle anweist, ein angegebenes Integer-Datenfeld automatisch zu inkrementieren. Zum Beispiel eine typische SQL-Anweisung zum Erstellen eines Datenfelds ist:" #. C5Mvn #: 11020000.xhp @@ -5476,7 +5476,7 @@ "par_id3159149\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER)" -msgstr "" +msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER)" #. M4YsG #: 11020000.xhp @@ -5485,7 +5485,7 @@ "par_id3147084\n" "help.text" msgid "To auto-increment the \"id\" data field in a MySQL database, change the statement to:" -msgstr "" +msgstr "Um das Datenfeld \"ID\" in einer MySQL-Datenbank automatisch zu inkrementieren, ändern Sie die Anweisung in:" #. 2pPyd #: 11020000.xhp @@ -5494,7 +5494,7 @@ "par_id3154909\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" -msgstr "" +msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER AUTO_INCREMENT)" #. wyFqp #: 11020000.xhp @@ -5503,7 +5503,7 @@ "par_id3152933\n" "help.text" msgid "In other words, enter AUTO_INCREMENT into Auto-increment statement box." -msgstr "" +msgstr "Mit anderen Worten, geben Sie AUTO_INCREMENT in das Feld Autoinkrement-Anweisung ein." #. cFjbY #: 11020000.xhp @@ -5512,7 +5512,7 @@ "hd_id3149765\n" "help.text" msgid "Query of generated values" -msgstr "" +msgstr "Abfrage von generierten Werten" #. EnHXJ #: 11020000.xhp @@ -5521,7 +5521,7 @@ "par_id3145171\n" "help.text" msgid "Enter an SQL statement that returns the last auto-incremented value for the primary key data field. For example:" -msgstr "" +msgstr "Geben Sie eine SQL-Anweisung ein, die den letzten automatisch inkrementierten Wert für das Primärschlüssel-Datenfeld zurückgibt. Beispielsweise:" #. KdqAK #: 11020000.xhp @@ -5530,7 +5530,7 @@ "par_id3150769\n" "help.text" msgid "SELECT LAST_INSERT_D();" -msgstr "" +msgstr "SELECT LAST_INSERT_D();" #. UcUfT #: 11020000.xhp @@ -5539,7 +5539,7 @@ "hd_id3157892\n" "help.text" msgid "Use SQL92 naming constraints" -msgstr "" +msgstr "Verwenden Sie die Namenseinschränkungen von SQL92" #. nvCRa #: 11020000.xhp @@ -5548,7 +5548,7 @@ "par_id3153368\n" "help.text" msgid "Only allows names that use characters that conform to the SQL92 naming constraints in the data source. All other characters are rejected. Each name must begin with a lower or upper case letter, or an underline ( _ ). The remaining characters can be ASCII letters, underlines, and numbers." -msgstr "" +msgstr "Lässt nur Namen zu, die Zeichen verwenden, die den Namenseinschränkungen von SQL92 in der Datenquelle entsprechen. Alle anderen Zeichen werden abgelehnt. Jeder Name muss mit einem Klein- oder Großbuchstaben oder einem Unterstrich ( _ ) beginnen. Die restlichen Zeichen können ASCII-Buchstaben, Unterstriche und Zahlen sein." #. 9BNi4 #: 11020000.xhp @@ -5557,7 +5557,7 @@ "hd_id3154011\n" "help.text" msgid "Use Catalog for file-based databases" -msgstr "" +msgstr "Katalog für dateibasierte Datenbanken verwenden" #. BaWgu #: 11020000.xhp @@ -5566,7 +5566,7 @@ "par_id3148618\n" "help.text" msgid "Uses the current data source of the Catalog. This is useful when the ODBC data source is a database server. If the ODBC data source is a dBASE driver, leave this check box clear." -msgstr "" +msgstr "Verwendet die aktuelle Datenquelle des Katalogs. Dies ist nützlich, wenn die ODBC-Datenquelle ein Datenbankserver ist. Wenn die ODBC-Datenquelle ein dBASE-Treiber ist, lassen Sie dieses Markierfeld leer." #. RBCN4 #: 11030000.xhp @@ -5575,7 +5575,7 @@ "tit\n" "help.text" msgid "dBASE" -msgstr "" +msgstr "dBASE" #. jQexT #: 11030000.xhp @@ -5584,7 +5584,7 @@ "hd_id3153539\n" "help.text" msgid "dBASE" -msgstr "" +msgstr "dBASE" #. EFxxW #: 11030000.xhp @@ -5593,7 +5593,7 @@ "par_id3147088\n" "help.text" msgid "Specify the settings for a dBASE database." -msgstr "" +msgstr "Legt die Einstellungen für eine dBASE-Datenbank fest." #. bSnXm #: 11030000.xhp @@ -5602,7 +5602,7 @@ "par_id3151110\n" "help.text" msgid "To be able to define relations between tables, use JDBC or ODBC from within $[officename]." -msgstr "" +msgstr "Um Beziehungen zwischen Tabellen definieren zu können, verwenden Sie JDBC oder ODBC innerhalb von $[officename]." #. irtxH #: 11030000.xhp @@ -5611,7 +5611,7 @@ "hd_id3149233\n" "help.text" msgid "Display inactive records" -msgstr "" +msgstr "Inaktive Datensätze anzeigen" #. Y4AnV #: 11030000.xhp @@ -5620,7 +5620,7 @@ "par_id3153823\n" "help.text" msgid "Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records." -msgstr "" +msgstr "Zeigt alle Datensätze in einer Datei an, einschließlich der als gelöscht markierten. Wenn Sie dieses Markierfeld aktivieren, können Sie keine Datensätze löschen." #. 7vpRc #: 11030000.xhp @@ -5629,7 +5629,7 @@ "par_id3156023\n" "help.text" msgid "In dBASE format, deleted records remain in the file." -msgstr "" +msgstr "Im dBASE-Format verbleiben gelöschte Datensätze in der Datei." #. ZYefW #: 11030000.xhp @@ -5638,7 +5638,7 @@ "par_id3151384\n" "help.text" msgid "To view any changes that you make to the database, close the connection to the database, and then reconnect the database." -msgstr "" +msgstr "Um alle Änderungen anzuzeigen, die Sie an der Datenbank vornehmen, schließen Sie die Verbindung zur Datenbank, und verbinden Sie die Datenbank dann erneut." #. 5LBSi #: 11030000.xhp @@ -5647,7 +5647,7 @@ "par_id0904200811094971\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database." -msgstr "" +msgstr "Wählen Sie die Codekonvertierung aus, die Sie verwenden möchten, um die Datenbank in $[officename] anzuzeigen. Dies wirkt sich nicht auf die Datenbank aus." #. Gmun9 #: 11030000.xhp @@ -5656,7 +5656,7 @@ "hd_id3149047\n" "help.text" msgid "Indexes" -msgstr "" +msgstr "Indizes" #. BjWsR #: 11030000.xhp @@ -5665,7 +5665,7 @@ "par_id3161656\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "" +msgstr "Öffnet den Dialog Indizes, in dem Sie die Tabellenindizes in der aktuellen dBASE-Datenbank organisieren können." #. vMA8w #: 11030100.xhp @@ -5674,7 +5674,7 @@ "tit\n" "help.text" msgid "Indexes" -msgstr "" +msgstr "Indizes" #. x4TDi #: 11030100.xhp @@ -5683,7 +5683,7 @@ "hd_id3148983\n" "help.text" msgid "Indexes" -msgstr "" +msgstr "Indizes" #. DmGsN #: 11030100.xhp @@ -5692,7 +5692,7 @@ "par_id3150247\n" "help.text" msgid "Lets you organize dBASE database indexes. An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the Indexes tab page." -msgstr "" +msgstr "Lässt Sie dBASE-Datenbankindizes organisieren. Ein Index ermöglicht Ihnen den schnellen Zugriff auf eine Datenbank, vorausgesetzt, Sie fragen die Daten in der Auswahl ab, die durch den Index definiert wurde. Wenn Sie eine Tabelle entwerfen, können Sie die Indizes auf dem Register Indizes festlegen." #. Aj5Uz #: 11030100.xhp @@ -5701,7 +5701,7 @@ "hd_id3155339\n" "help.text" msgid "Table" -msgstr "" +msgstr "Tabelle" #. bzzGv #: 11030100.xhp @@ -5710,7 +5710,7 @@ "par_id3152551\n" "help.text" msgid "Select the database table that you want to index." -msgstr "" +msgstr "Wählen Sie die Datenbanktabelle aus, die Sie indizieren möchten." #. eyouE #: 11030100.xhp @@ -5719,7 +5719,7 @@ "hd_id3159233\n" "help.text" msgid "Table Indexes" -msgstr "" +msgstr "Tabellenindizes" #. hyCqp #: 11030100.xhp @@ -5728,7 +5728,7 @@ "par_id3143267\n" "help.text" msgid "Lists the current indexes for the selected database table. To remove an index from the list, click the index, and then click the right arrow." -msgstr "" +msgstr "Listet die aktuellen Indizes für die ausgewählte Datenbanktabelle auf. Um einen Index aus der Liste zu entfernen, klicken Sie auf den Index und dann auf den Pfeil nach rechts." #. scWXw #: 11030100.xhp @@ -5737,7 +5737,7 @@ "hd_id3148538\n" "help.text" msgid "Free Indexes" -msgstr "" +msgstr "Freie Indizes" #. mtGqS #: 11030100.xhp @@ -5746,7 +5746,7 @@ "par_id3151110\n" "help.text" msgid "Lists the available indexes that you can assign to a table. To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes." -msgstr "" +msgstr "Listet die verfügbaren Indizes auf, die Sie einer Tabelle zuweisen können. Um einer ausgewählten Tabelle einen Index zuzuweisen, klicken Sie auf das Symbol mit dem Pfeil nach links. Der Doppelpfeil nach links ordnet alle verfügbaren Indizes zu." #. U4FQh #: 11030100.xhp @@ -5755,7 +5755,7 @@ "hd_id3156152\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #. sxDJi #: 11030100.xhp @@ -5764,7 +5764,7 @@ "par_id3150984\n" "help.text" msgid "Moves the selected index to the Table Indexes list." -msgstr "" +msgstr "Verschiebt den ausgewählten Index in die Liste Tabellenindizes." #. FPRFh #: 11030100.xhp @@ -5773,7 +5773,7 @@ "hd_id3149416\n" "help.text" msgid "<<" -msgstr "" +msgstr "<<" #. 45Vrm #: 11030100.xhp @@ -5782,7 +5782,7 @@ "par_id3145315\n" "help.text" msgid "Moves all of the free indexes to the Table Indexes list." -msgstr "" +msgstr "Verschiebt alle freien Indizes in die Liste Tabellenindizes." #. Ba8Z9 #: 11030100.xhp @@ -5791,7 +5791,7 @@ "hd_id3149579\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #. EP9GN #: 11030100.xhp @@ -5800,7 +5800,7 @@ "par_id3149795\n" "help.text" msgid "Moves the selected table indexes to the Free Indexes list." -msgstr "" +msgstr "Verschiebt die ausgewählten Tabellenindizes in die Liste Freie Indizes." #. sAASQ #: 11030100.xhp @@ -5809,7 +5809,7 @@ "hd_id3155629\n" "help.text" msgid ">>" -msgstr "" +msgstr ">>" #. t2gbA #: 11030100.xhp @@ -5818,7 +5818,7 @@ "par_id3151245\n" "help.text" msgid "Moves all of the table indexes to the Free Indexes list." -msgstr "" +msgstr "Verschiebt alle Tabellenindizes in die Liste Freie Indizes." #. LQcMC #: 11080000.xhp @@ -5827,7 +5827,7 @@ "tit\n" "help.text" msgid "Execute SQL statement" -msgstr "" +msgstr "SQL-Anweisung ausführen" #. GDjji #: 11080000.xhp @@ -5836,7 +5836,7 @@ "bm_id3148983\n" "help.text" msgid "SQL; executing SQL statements (Base)databases; administration through SQL (Base)" -msgstr "" +msgstr "SQL; Ausführen von SQL-Anweisungen (Base)Datenbanken; Verwaltung über SQL (Base)" #. JsqKF #: 11080000.xhp @@ -5845,7 +5845,7 @@ "hd_id3153345\n" "help.text" msgid "Execute SQL statement" -msgstr "" +msgstr "SQL-Anweisung ausführen" #. BtQ2b #: 11080000.xhp @@ -5854,7 +5854,7 @@ "par_id3154288\n" "help.text" msgid "Opens a dialog where you can enter an SQL command for administering a database." -msgstr "" +msgstr "Öffnet einen Dialog, in dem Sie einen SQL-Befehl zur Verwaltung einer Datenbank eingeben können." #. jhBMm #: 11080000.xhp @@ -5863,7 +5863,7 @@ "par_id3147275\n" "help.text" msgid "You can only enter administration commands in this dialog, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here." -msgstr "" +msgstr "Sie können in diesem Dialog nur Verwaltungsbefehle eingeben, beispielsweise \"Grant\", \"Create Table\" oder \"Drop Table\", aber keine Filterbefehle. Die Befehle, die Sie eingeben können, hängen von der Datenquelle ab, beispielsweise kann dBASE nur einige der hier aufgelisteten SQL-Befehle ausführen." #. JZmCZ #: 11080000.xhp @@ -5872,7 +5872,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 "Um eine SQL-Abfrage zum Filtern von Daten in der Datenbank auszuführen, verwenden Sie die Ansicht Abfrageentwurf." #. Ck9G4 #: 11080000.xhp @@ -5881,7 +5881,7 @@ "hd_id3149514\n" "help.text" msgid "Command to execute" -msgstr "" +msgstr "Befehl zum Ausführen" #. BHLbE #: 11080000.xhp @@ -5890,7 +5890,7 @@ "par_id3147618\n" "help.text" msgid "Enter the SQL administration command that you want to run." -msgstr "" +msgstr "Geben Sie den auszuführenden SQL-Verwaltungsbefehl ein." #. 5DFEP #: 11080000.xhp @@ -5899,7 +5899,7 @@ "par_id3153087\n" "help.text" msgid "For example, for a \"Bibliography\" data source, you can enter the following SQL command:" -msgstr "" +msgstr "Beispielsweise können Sie für eine Datenquelle \"Bibliografie\" den folgenden SQL-Befehl eingeben:" #. XDWsR #: 11080000.xhp @@ -5908,7 +5908,7 @@ "par_id3145673\n" "help.text" msgid "SELECT \"Address\" FROM \"biblio\" \"biblio\"" -msgstr "" +msgstr "SELECT \"Adresse\" FROM \"biblio\" \"biblio\"" #. LjEvw #: 11080000.xhp @@ -5917,7 +5917,7 @@ "par_id3145611\n" "help.text" msgid "For more information on SQL commands, please consult the documentation that came with the database." -msgstr "" +msgstr "Weitere Informationen zu SQL-Befehlen finden Sie in der mit der Datenbank gelieferten Dokumentation." #. BQmT9 #: 11080000.xhp @@ -5926,7 +5926,7 @@ "hd_id3156024\n" "help.text" msgid "Previous commands" -msgstr "" +msgstr "Vorherige Befehle" #. hkxBT #: 11080000.xhp @@ -5935,7 +5935,7 @@ "par_id3149045\n" "help.text" msgid "Lists the previously executed SQL commands. To run a command again, click the command, and then click Run." -msgstr "" +msgstr "Listet die zuvor ausgeführten SQL-Befehle auf. Um einen Befehl erneut auszuführen, klicken Sie auf den Befehl und dann auf Ausführen." #. AvXck #: 11080000.xhp @@ -5944,7 +5944,7 @@ "hd_id3154348\n" "help.text" msgid "Status" -msgstr "" +msgstr "Status" #. yhCpt #: 11080000.xhp @@ -5953,7 +5953,7 @@ "par_id3151054\n" "help.text" msgid "Displays the results, including errors, of the SQL command that you ran." -msgstr "" +msgstr "Zeigt die Ergebnisse, einschließlich Fehler, des von Ihnen ausgeführten SQL-Befehls an." #. BUpxX #: 11080000.xhp @@ -5962,7 +5962,7 @@ "hd_id3154071\n" "help.text" msgid "Run" -msgstr "" +msgstr "Ausführen" #. qDYRx #: 11080000.xhp @@ -5971,7 +5971,7 @@ "par_id3151210\n" "help.text" msgid "Runs the command that you entered in the Command to execute box." -msgstr "" +msgstr "Führt den Befehl aus, den Sie in das Feld Auszuführender Befehl eingegeben haben." #. 93Xfs #: 11090000.xhp @@ -5980,7 +5980,7 @@ "tit\n" "help.text" msgid "Table Filter" -msgstr "" +msgstr "Tabellenfilter" #. bG74E #: 11090000.xhp @@ -5989,7 +5989,7 @@ "hd_id3150702\n" "help.text" msgid "Table Filter" -msgstr "" +msgstr "Tabellenfilter" #. NLCCV #: 11090000.xhp @@ -5998,7 +5998,7 @@ "par_id3149164\n" "help.text" msgid "Some databases track changes to each record by assigning version number to fields that are changed. This number is incremented by 1 each time the field is changed. Displays the internal version number of the record in the database table." -msgstr "" +msgstr "Einige Datenbanken verfolgen Änderungen an jedem Datensatz, indem sie den geänderten Feldern eine Versionsnummer zuweisen. Diese Zahl wird bei jeder Feldänderung um 1 erhöht. Zeigt die interne Versionsnummer des Datensatzes in der Datenbanktabelle an." #. axsoU #: 11090000.xhp @@ -6007,7 +6007,7 @@ "hd_id3154923\n" "help.text" msgid "Sort Ascending" -msgstr "" +msgstr "Aufsteigend sortieren" #. XFbZd #: 11090000.xhp @@ -6016,7 +6016,7 @@ "par_id3147559\n" "help.text" msgid "Sorts the list of table names in ascending order starting at the beginning of the alphabet." -msgstr "" +msgstr "Sortiert die Liste der Tabellennamen in aufsteigender Reihenfolge beginnend am Anfang des Alphabets." #. SaBHA #: dabaadvprop.xhp @@ -6025,7 +6025,7 @@ "tit\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Erweiterte Eigenschaften" #. xBcXZ #: dabaadvprop.xhp @@ -6034,7 +6034,7 @@ "par_idN10550\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Erweiterte Eigenschaften" #. 5dCC5 #: dabaadvprop.xhp @@ -6043,7 +6043,7 @@ "par_idN10560\n" "help.text" msgid "Specifies advanced properties for the database." -msgstr "" +msgstr "Legt erweiterte Eigenschaften für die Datenbank fest." #. FGvho #: dabaadvprop.xhp @@ -6052,7 +6052,7 @@ "par_id3998840\n" "help.text" msgid "In a database window, choose Edit - Database - Properties, click Advanced Properties tab" -msgstr "" +msgstr "Wählen Sie in einem Datenbankfenster Bearbeiten – Datenbank – Eigenschaften… und klicken Sie auf das Register Erweiterte Eigenschaften" #. ssTZY #: dabaadvpropdat.xhp @@ -6061,7 +6061,7 @@ "tit\n" "help.text" msgid "Special Settings" -msgstr "" +msgstr "Spezielle Einstellungen" #. pCkAh #: dabaadvpropdat.xhp @@ -6079,7 +6079,7 @@ "par_idN10556\n" "help.text" msgid "Special Settings" -msgstr "" +msgstr "Spezielle Einstellungen" #. nv4Nn #: dabaadvpropdat.xhp @@ -6088,7 +6088,7 @@ "par_idN10566\n" "help.text" msgid "Specifies the way you can work with data in a database." -msgstr "" +msgstr "Legt fest, wie Sie mit Daten in einer Datenbank arbeiten können." #. nVTwF #: dabaadvpropdat.xhp @@ -6097,7 +6097,7 @@ "par_id7679372\n" "help.text" msgid "In a database window, choose Edit - Database - Advanced Settings" -msgstr "" +msgstr "Wählen Sie in einem Datenbankfenster Bearbeiten – Datenbank – Erweiterte Einstellungen…" #. mEAfH #: dabaadvpropdat.xhp @@ -6106,7 +6106,7 @@ "par_id4572283\n" "help.text" msgid "The availability of the following controls depends on the type of database:" -msgstr "" +msgstr "Die Verfügbarkeit der folgenden Steuerelemente hängt vom Datenbanktyp ab:" #. 8pnWD #: dabaadvpropdat.xhp @@ -6115,7 +6115,7 @@ "par_idN10590\n" "help.text" msgid "Use SQL92 naming constraints" -msgstr "" +msgstr "Namenseinschränkungen von SQL92 verwenden" #. CZ3vk #: dabaadvpropdat.xhp @@ -6124,7 +6124,7 @@ "par_idN10594\n" "help.text" msgid "Only allows characters that conform to the SQL92 naming convention in a name in a data source. All other characters are rejected. Each name must begin with a lowercase letter, an uppercase letter, or an underscore ( _ ). The remaining characters can be ASCII letters, numbers, and underscores." -msgstr "" +msgstr "Erlaubt in einem Namen in einer Datenquelle nur Zeichen, die der SQL92-Namenskonvention entsprechen. Alle anderen Zeichen werden abgelehnt. Jeder Name muss mit einem Kleinbuchstaben, einem Großbuchstaben oder einem Unterstrich (_) beginnen. Die restlichen Zeichen können ASCII-Buchstaben, Zahlen und Unterstriche sein." #. UDWZ7 #: dabaadvpropdat.xhp @@ -6133,7 +6133,7 @@ "par_idN1059E\n" "help.text" msgid "Append the table alias name in SELECT statements" -msgstr "" +msgstr "Aliasnamen der Tabelle in SELECT-Anweisungen anhängen" #. v2ZEZ #: dabaadvpropdat.xhp @@ -6142,7 +6142,7 @@ "par_idN105A2\n" "help.text" msgid "Appends the alias to the table name in SELECT statements." -msgstr "" +msgstr "Hängt den Alias an den Tabellennamen in SELECT-Anweisungen an." #. wHaBn #: dabaadvpropdat.xhp @@ -6151,7 +6151,7 @@ "par_idN105907\n" "help.text" msgid "Use keyword AS before table alias names" -msgstr "" +msgstr "Schlüsselwort AS vor Tabellenaliasnamen verwenden" #. xEpbm #: dabaadvpropdat.xhp @@ -6160,7 +6160,7 @@ "par_idN105947\n" "help.text" msgid "Some databases use the keyword \"AS\" between a name and its alias, while other databases use a whitespace. Enable this option to insert AS before the alias." -msgstr "" +msgstr "Einige Datenbanken verwenden das Schlüsselwort \"AS\" zwischen einem Namen und seinem Alias, während andere Datenbanken Leerzeichen verwenden. Aktivieren Sie diese Option, um \"AS\" vor dem Alias einzufügen." #. 6kz2C #: dabaadvpropdat.xhp @@ -6169,7 +6169,7 @@ "par_idN105A5\n" "help.text" msgid "Use Outer Join syntax '{OJ }'" -msgstr "" +msgstr "Outer-Join-Syntax '{OJ }' verwenden" #. 9PDve #: dabaadvpropdat.xhp @@ -6178,7 +6178,7 @@ "par_idN105A9\n" "help.text" msgid "Use escape sequences for outer joins. The syntax for this escape sequence is {oj outer-join}" -msgstr "" +msgstr "Escape-Sequenzen für Outer-Joins verwenden. Die Syntax für diese Escape-Sequenz ist {oj outer-join}" #. xahKj #: dabaadvpropdat.xhp @@ -6187,7 +6187,7 @@ "par_idN105BE\n" "help.text" msgid "Example:" -msgstr "" +msgstr "Beispielsweise:" #. 8rHyA #: dabaadvpropdat.xhp @@ -6196,7 +6196,7 @@ "par_idN105C1\n" "help.text" msgid "select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" -msgstr "" +msgstr "select Artikel.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" #. yARgJ #: dabaadvpropdat.xhp @@ -6205,7 +6205,7 @@ "par_idN105C4\n" "help.text" msgid "Ignore the privileges from the database driver" -msgstr "" +msgstr "Berechtigungen des Datenbanktreibers ignorieren" #. GoiGX #: dabaadvpropdat.xhp @@ -6214,7 +6214,7 @@ "par_idN105C8\n" "help.text" msgid "Ignores access privileges that are provided by the database driver." -msgstr "" +msgstr "Ignoriert Zugriffsrechte, die vom Datenbanktreiber bereitgestellt werden." #. CcsGn #: dabaadvpropdat.xhp @@ -6223,7 +6223,7 @@ "par_idN105CB\n" "help.text" msgid "Replace named parameters with ?" -msgstr "" +msgstr "Benannte Parameter durch ? ersetzen" #. finzM #: dabaadvpropdat.xhp @@ -6232,7 +6232,7 @@ "par_idN105CF\n" "help.text" msgid "Replaces named parameters in a data source with a question mark (?)." -msgstr "" +msgstr "Ersetzt benannte Parameter in einer Datenquelle durch ein Fragezeichen (?)." #. LypD3 #: dabaadvpropdat.xhp @@ -6241,7 +6241,7 @@ "par_idN105D2\n" "help.text" msgid "Display version columns (when available)" -msgstr "" +msgstr "Versionsspalten anzeigen (falls verfügbar)" #. gJR4a #: dabaadvpropdat.xhp @@ -6250,7 +6250,7 @@ "par_idN105D6\n" "help.text" msgid "Some databases assign version numbers to fields to track changes to records. The version number of a field is incremented by one each time the contents of the field are changed. Displays the internal version number of the record in the database table." -msgstr "" +msgstr "Einige Datenbanken weisen Feldern Versionsnummern zu, um Änderungen an Datensätzen nachzuverfolgen. Die Versionsnummer eines Feldes wird jedes Mal um eins erhöht, wenn der Inhalt des Feldes geändert wird. Zeigt die interne Versionsnummer des Datensatzes in der Datenbanktabelle an." #. HLoGa #: dabaadvpropdat.xhp @@ -6259,7 +6259,7 @@ "par_idN105FA\n" "help.text" msgid "Use the catalog name in SELECT statements" -msgstr "" +msgstr "Katalognamen in SELECT-Anweisungen verwenden" #. uqBBN #: dabaadvpropdat.xhp @@ -6268,7 +6268,7 @@ "par_idN105FE\n" "help.text" msgid "Uses the current data source of the catalog. This option is useful when the ODBC data source is a database server. Do not select this option if the ODBC data source is a dBASE driver." -msgstr "" +msgstr "Verwendet die aktuelle Datenquelle des Katalogs. Diese Option ist nützlich, wenn die ODBC-Datenquelle ein Datenbankserver ist. Wählen Sie diese Option nicht aus, wenn die ODBC-Datenquelle ein dBASE-Treiber ist." #. uTnnA #: dabaadvpropdat.xhp @@ -6277,7 +6277,7 @@ "par_idN10613\n" "help.text" msgid "Use the schema name in SELECT statements" -msgstr "" +msgstr "Schemanamen in SELECT-Anweisungen verwenden" #. EVDZk #: dabaadvpropdat.xhp @@ -6286,7 +6286,7 @@ "par_idN10617\n" "help.text" msgid "Allows you to use the schema name in SELECT statements." -msgstr "" +msgstr "Ermöglicht es Ihnen, den Schemanamen in SELECT-Anweisungen zu verwenden." #. JgvBE #: dabaadvpropdat.xhp @@ -6295,7 +6295,7 @@ "par_idN1061A\n" "help.text" msgid "Create index with ASC or DESC statement" -msgstr "" +msgstr "Index mit ASC- oder DESC-Anweisung erstellen" #. BgkNz #: dabaadvpropdat.xhp @@ -6304,7 +6304,7 @@ "par_idN1061E\n" "help.text" msgid "Creates an index with ASC or DESC statements." -msgstr "" +msgstr "Erzeugt einen Index mit ASC- oder DESC-Anweisungen." #. NbAt4 #: dabaadvpropdat.xhp @@ -6313,7 +6313,7 @@ "hd_id3534958\n" "help.text" msgid "End text lines with CR + LF" -msgstr "" +msgstr "Textzeilen mit CR + LF beenden" #. NKKsC #: dabaadvpropdat.xhp @@ -6322,7 +6322,7 @@ "par_id6151921\n" "help.text" msgid "Select to use the CR + LF code pair to end every text line (preferred for DOS and Windows operating systems)." -msgstr "" +msgstr "Wählen Sie diese Option, um das Codepaar \"CR + LF\" zum Beenden jeder Textzeile zu verwenden (bevorzugt für DOS- und Windows-Betriebssysteme)." #. T9wrt #: dabaadvpropdat.xhp @@ -6331,7 +6331,7 @@ "hd_id0909200811170166\n" "help.text" msgid "Ignore currency field information" -msgstr "" +msgstr "Währungsfeldinformationen ignorieren" #. MWpZD #: dabaadvpropdat.xhp @@ -6340,7 +6340,7 @@ "par_id0909200811170221\n" "help.text" msgid "Only for Oracle JDBC connections. When enabled it specifies that no column is treated as a currency field. The field type returned from the database driver is discarded." -msgstr "" +msgstr "Nur für Oracle JDBC-Verbindungen. Wenn es aktiviert ist, legt es fest, dass keine Spalte als Währungsfeld behandelt wird. Der vom Datenbanktreiber zurückgegebene Feldtyp wird verworfen." #. X2cuQ #: dabaadvpropdat.xhp @@ -6349,7 +6349,7 @@ "hd_id1101718\n" "help.text" msgid "Form data input checks for required fields" -msgstr "" +msgstr "Formulardaten-Eingabeprüfungen für erforderliche Felder" #. 8FD9D #: dabaadvpropdat.xhp @@ -6358,7 +6358,7 @@ "par_id3783989\n" "help.text" msgid "When you enter a new record or update an existing record in a form, and you leave a field empty which is bound to a database column which requires input, then you will see a message complaining about the empty field." -msgstr "" +msgstr "Wenn Sie einen neuen Datensatz eingeben oder einen bestehenden Datensatz in einem Formular aktualisieren und ein Feld leer lassen, das an eine Datenbankspalte gebunden ist, die Eingaben erfordert, dann sehen Sie eine Meldung, die sich über das leere Feld beschwert." #. LPJKD #: dabaadvpropdat.xhp @@ -6367,7 +6367,7 @@ "par_id6684163\n" "help.text" msgid "If this control box is not enabled, then the forms in the current database will not be checked for required fields." -msgstr "" +msgstr "Wenn dieses Markierfeld nicht aktiviert ist, werden die Formulare in der aktuellen Datenbank nicht auf erforderliche Felder überprüft." #. fZAwm #: dabaadvpropdat.xhp @@ -6376,7 +6376,7 @@ "par_id3837397\n" "help.text" msgid "The control box is available for all data source types which support write access to their data. The control box does not exist for spreadsheets, text, csv, and the various read-only address books." -msgstr "" +msgstr "Das Markierfeld ist für alle Datenquellentypen verfügbar, die einen Schreibzugriff auf ihre Daten unterstützen. Das Markierfeld ist für Tabellenkalkulationen, Text, CSV und die verschiedenen schreibgeschützten Adressbücher nicht vorhanden." #. ykjaM #: dabaadvpropdat.xhp @@ -6385,7 +6385,7 @@ "hd_id040920092139524\n" "help.text" msgid "Use ODBC conformant date/time literals" -msgstr "" +msgstr "Verwenden Sie ODBC-konforme Datums-/Zeitliterale" #. AFvyx #: dabaadvpropdat.xhp @@ -6394,7 +6394,7 @@ "par_id040920092139526\n" "help.text" msgid "Use date/time literals that conform to ODBC standard." -msgstr "" +msgstr "Verwenden Sie Datums-/Zeitliterale, die dem ODBC-Standard entsprechen." #. 9PTAJ #: dabaadvpropdat.xhp @@ -6403,7 +6403,7 @@ "hd_id04092009442139524\n" "help.text" msgid "Supports primary keys" -msgstr "" +msgstr "Unterstützt Primärschlüssel" #. BVmAU #: dabaadvpropdat.xhp @@ -6412,7 +6412,7 @@ "par_id04096620092139526\n" "help.text" msgid "Enable to overrule Base's heuristics used to detect whether the database supports primary keys." -msgstr "" +msgstr "Aktiviert die Heuristik von Base, die verwendet wird, um festzustellen, ob die Datenbank Primärschlüssel unterstützt." #. WCkDd #: dabaadvpropdat.xhp @@ -6421,7 +6421,7 @@ "par_id66841631\n" "help.text" msgid "When connecting to a database using a generic API like ODBC, JDBC, or ADO, Base currently applies heuristics to determine whether this database supports primary keys. None of those APIs has dedicated support to retrieve this information." -msgstr "" +msgstr "Beim Herstellen einer Verbindung zu einer Datenbank über eine generische API wie ODBC, JDBC oder ADO wendet Base derzeit Heuristiken an, um festzustellen, ob diese Datenbank Primärschlüssel unterstützt. Keine dieser APIs bietet spezielle Unterstützung zum Abrufen dieser Informationen." #. U5ssy #: dabaadvpropdat.xhp @@ -6430,7 +6430,7 @@ "par_id66841632\n" "help.text" msgid "The heuristics sometimes fails. This tri-state check box by default is set to the undetermined state, which means \"apply the heuristics\". If the check box is enabled, primary key support is assumed. If the check box is disabled, no primary key support is assumed." -msgstr "" +msgstr "Die Heuristik versagt manchmal. Dieses Markierfeld mit drei Zuständen ist standardmäßig auf den unbestimmten Zustand eingestellt, was bedeutet, dass die Heuristik angewendet wird. Bei aktiviertem Markierfeld wird von der Primärschlüsselunterstützung ausgegangen. Wenn das Markierfeld deaktiviert ist, wird keine Primärschlüsselunterstützung angenommen." #. vdH4q #: dabaadvpropdat.xhp @@ -6439,7 +6439,7 @@ "par_id66841633\n" "help.text" msgid "Note that if this option is just for overruling the heuristics. If you enable the check box for a database which actually does not support primary keys, you will see some errors." -msgstr "" +msgstr "Beachten Sie, dass diese Option nur zum Überstimmen der Heuristik dient. Wenn Sie das Markierfeld für eine Datenbank aktivieren, die eigentlich keine Primärschlüssel unterstützt, werden einige Fehler angezeigt." #. SbhkD #: dabaadvpropdat.xhp @@ -6466,7 +6466,7 @@ "par_idN10621\n" "help.text" msgid "Comparison of Boolean values" -msgstr "" +msgstr "Vergleich von booleschen Werten" #. rgzfK #: dabaadvpropdat.xhp @@ -6475,7 +6475,7 @@ "par_idN10625\n" "help.text" msgid "Select the type of Boolean comparison that you want to use." -msgstr "" +msgstr "Wählen Sie den Typ des booleschen Vergleichs aus, den Sie verwenden möchten." #. CAkyk #: dabaadvpropdat.xhp @@ -6502,7 +6502,7 @@ "tit\n" "help.text" msgid "Generated Values" -msgstr "" +msgstr "Generierte Werte" #. kGZBa #: dabaadvpropgen.xhp @@ -6511,7 +6511,7 @@ "bm_id521623154765032\n" "help.text" msgid "database advanced properties;autoincrement values database advanced properties;automatic generated values database advanced properties;retrieve generated values database advanced properties;query generated values" -msgstr "" +msgstr "Erweiterte Datenbankeigenschaften; Werte automatisch erhöhenErweiterte Datenbankeigenschaften; automatisch generierte WerteErweiterte Datenbankeigenschaften; generierte Werte abrufenErweiterte Datenbankeigenschaften; Abfrage generiert Werte" #. kqFCk #: dabaadvpropgen.xhp @@ -6520,7 +6520,7 @@ "par_idN10553\n" "help.text" msgid "Generated Values" -msgstr "" +msgstr "Generierte Werte" #. x7uc3 #: dabaadvpropgen.xhp @@ -6529,7 +6529,7 @@ "par_idN10563\n" "help.text" msgid "Specifies the options for automatically generated values for new data records." -msgstr "" +msgstr "Legt die Optionen für automatisch generierte Werte für neue Datensätze fest." #. Dpncz #: dabaadvpropgen.xhp @@ -6538,7 +6538,7 @@ "par_id7684560\n" "help.text" msgid "The availability of the following controls depends on the type of database:" -msgstr "" +msgstr "Die Verfügbarkeit der folgenden Steuerelemente hängt vom Datenbanktyp ab:" #. moLhP #: dabaadvpropgen.xhp @@ -6547,7 +6547,7 @@ "par_idN1058C\n" "help.text" msgid "Retrieve generated values" -msgstr "" +msgstr "Generierte Werte abrufen" #. KGEf3 #: dabaadvpropgen.xhp @@ -6556,7 +6556,7 @@ "par_idN10590\n" "help.text" msgid "Enables $[officename] support for auto-incremented data fields in the current ODBC or JDBC data source. Select this option if the auto-increment feature in the SDBCX layer of the database is not supported. In general, the auto-increment is selected for the primary key field." -msgstr "" +msgstr "Aktiviert die $[officename]-Unterstützung für automatisch inkrementierte Datenfelder in der aktuellen ODBC- oder JDBC-Datenquelle. Wählen Sie diese Option aus, wenn die Autoinkrement-Funktion in der SDBCX-Schicht der Datenbank nicht unterstützt wird. Im Allgemeinen wird für das Primärschlüsselfeld das Autoinkrement ausgewählt." #. x4VQL #: dabaadvpropgen.xhp @@ -6565,7 +6565,7 @@ "par_idN10593\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "Autoinkrement-Anweisung" #. Hskow #: dabaadvpropgen.xhp @@ -6574,7 +6574,7 @@ "par_idN10597\n" "help.text" msgid "Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field. For example, the following MySQL statement used the AUTO_INCREMENT statement to increase the \"id\" field each time the statement creates a data field:" -msgstr "" +msgstr "Geben Sie den SQL-Befehlsbezeichner ein, der die Datenquelle anweist, ein angegebenes Integer-Datenfeld automatisch zu inkrementieren. Beispielsweise verwendete die folgende MySQL-Anweisung die Anweisung AUTO_INCREMENT, um das Feld \"ID\" jedes Mal zu erhöhen, wenn die Anweisung ein Datenfeld erstellt:" #. Vi6CV #: dabaadvpropgen.xhp @@ -6583,7 +6583,7 @@ "par_idN105A0\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" -msgstr "" +msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER AUTO_INCREMENT)" #. rDQtm #: dabaadvpropgen.xhp @@ -6592,7 +6592,7 @@ "par_idN10634\n" "help.text" msgid "For this example, you must enter AUTO_INCREMENT into the Auto-increment statement box." -msgstr "" +msgstr "Für dieses Beispiel müssen Sie AUTO_INCREMENT in das Feld Autoinkrement-Anweisung eingeben." #. GSfGJ #: dabaadvpropgen.xhp @@ -6601,7 +6601,7 @@ "par_idN105AA\n" "help.text" msgid "Query of generated values" -msgstr "" +msgstr "Abfrage von generierten Werten" #. gCRhF #: dabaadvpropgen.xhp @@ -6610,7 +6610,7 @@ "par_idN10645\n" "help.text" msgid "Enter an SQL statement that returns the last auto-incremented value for the primary key data field. For example:" -msgstr "" +msgstr "Geben Sie eine SQL-Anweisung ein, die den letzten automatisch inkrementierten Wert für das Primärschlüssel-Datenfeld zurückgibt. Beispielsweise:" #. BzyHv #: dabaadvpropgen.xhp @@ -6619,7 +6619,7 @@ "par_idN105B1\n" "help.text" msgid "SELECT LAST_INSERT_D();" -msgstr "" +msgstr "SELECT LAST_INSERT_D();" #. xUFRA #: dabadoc.xhp @@ -9454,7 +9454,7 @@ "bm_id8622089\n" "help.text" msgid "databases;main page (Base)$[officename] Base data sourcesdata sources;$[officename] Base" -msgstr "Datenbanken; Hauptfenster (Base)$[officename] BAse DatenquellenDatenquellen; $[officename] Base" +msgstr "Datenbanken; Hauptfenster (Base)$[officename] Base-DatenquellenDatenquellen; $[officename] Base" #. yR4MP #: main.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-03-11 13:07+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563509840.000000\n" #. 3B8ZN @@ -311,7 +311,7 @@ "par_id3153087\n" "help.text" 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 Expand icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "Klicken Sie auf das Symbol Verkleinern, um den Dialog auf die Größe des Eingabefelds zu verkleinern. So lässt sich der benötigte Bezug in der Tabelle leichter auswählen. Das Symbol wird automatisch zum Symbol Vergrößern. Klicken Sie darauf, um die Originalgröße des Dialogs wiederherzustellen." #. XBrSB #: 00000001.xhp @@ -2885,7 +2885,7 @@ "par_id61624628294382\n" "help.text" msgid "In a form document, a control must receive focus from the user in order to become active and perform its tasks. For example, users must give focus to a text box in order to enter text into it." -msgstr "" +msgstr "In einem Formulardokument muss ein Steuerelement den Fokus vom Benutzers erhalten, um aktiv zu werden und seine Aufgaben auszuführen. Beispielsweise müssen Benutzer einem Textfeld den Fokus geben, um Text einzugeben." #. DasRP #: 00000005.xhp @@ -2912,7 +2912,7 @@ "par_id191624628327510\n" "help.text" msgid "Navigate from one control to the next with the keyboard. The document's author may define a tabbing order that specifies the order in which controls will receive focus if the user navigates the document with the keyboard. Once selected, a control may be activated by some other key sequence." -msgstr "" +msgstr "Navigieren Sie mit der Tastatur von einem Steuerelement zum nächsten. Der Autor des Dokuments kann eine Aktivierungsreihenfolge festlegen, welche die Reihenfolge angibt, in der Steuerelemente den Fokus erhalten, wenn der Benutzer mit der Tastatur durch das Dokument navigiert. Nach der Auswahl kann ein Steuerelement durch eine andere Tastenfolge aktiviert werden." #. PEbNU #: 00000005.xhp @@ -2921,7 +2921,7 @@ "par_id351624628336039\n" "help.text" msgid "Select a control through an access key (sometimes called \"keyboard shortcut\" or \"keyboard accelerator\")." -msgstr "" +msgstr "Wählen Sie ein Steuerelement über eine Zugriffstaste aus (manchmal auch als \"Tastenkombination\" oder \"Schnellzugriff\" bezeichnet)." #. KRQQF #: 00000005.xhp @@ -6125,7 +6125,7 @@ "hd_id911633520416200\n" "help.text" msgid "Include byte-order mark" -msgstr "" +msgstr "Byte-Reihenfolge-Markierung einschließen" #. 5G2v5 #: 00000215.xhp @@ -6134,7 +6134,7 @@ "par_id211633520423767\n" "help.text" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file. The presence of the UTF-8 BOM is optional and may cause problems with some software, especially legacy software not designed to handle UTF-8." -msgstr "" +msgstr "Nur für den Unicode-Zeichensatz: Eine Byte-Reihenfolge-Markierung (Byte Order Mark, BOM) ist eine Folge von Bytes, die verwendet wird, um die Unicode-Codierung einer Textdatei anzuzeigen. Das Vorhandensein der UTF-8 BOM ist optional und kann Probleme mit einiger Software verursachen, insbesondere mit älterer Software, die nicht für die Verarbeitung von UTF-8 ausgelegt ist." #. PSvbB #: 00000215.xhp @@ -7754,7 +7754,7 @@ "par_idN1091B\n" "help.text" msgid "Choose View - Grid and Helplines." -msgstr "" +msgstr "Wählen Sie Ansicht – Raster und Hilfslinien." #. rWXdw #: 00000403.xhp @@ -7799,7 +7799,7 @@ "par_id3253808\n" "help.text" msgid "Press Command+OptionCtrl+Alt+C." -msgstr "" +msgstr "Drücken Sie Befehl+OptionStrg+Alt+C." #. 8FMuh #: 00000404.xhp @@ -8069,7 +8069,7 @@ "par_id3156005\n" "help.text" msgid "Icon Chart" -msgstr "" +msgstr "Symbol für Diagramm einfügen" #. ge7Bf #: 00000404.xhp @@ -8213,7 +8213,7 @@ "par_idN10EA9\n" "help.text" msgid "Icon Basic shapes" -msgstr "" +msgstr "Symbol für Standardformen" #. cRUvF #: 00000404.xhp @@ -8231,7 +8231,7 @@ "par_idN10EEE\n" "help.text" msgid "Icon Symbol Shapes" -msgstr "" +msgstr "Symbol für Symbolformen" #. raBMx #: 00000404.xhp @@ -8249,7 +8249,7 @@ "par_idN10F33\n" "help.text" msgid "Icon Block arrows" -msgstr "" +msgstr "Symbol für Blockpfeile" #. 8mq6j #: 00000404.xhp @@ -8267,7 +8267,7 @@ "par_idN10F78\n" "help.text" msgid "Icon Flowcharts" -msgstr "" +msgstr "Symbol für Flussdiagramme" #. kmLGo #: 00000404.xhp @@ -8285,7 +8285,7 @@ "par_idN10FBD\n" "help.text" msgid "Icon Callouts" -msgstr "" +msgstr "Symbol für Legenden" #. 437R9 #: 00000404.xhp @@ -8294,7 +8294,7 @@ "par_idN10FEC\n" "help.text" msgid "Callouts" -msgstr "Legende" +msgstr "Legenden" #. zGDAy #: 00000404.xhp @@ -8303,7 +8303,7 @@ "par_idN11002\n" "help.text" msgid "Icon Stars" -msgstr "" +msgstr "Symbol für Sterne" #. fBLRJ #: 00000404.xhp @@ -10652,7 +10652,7 @@ "par_id3133357\n" "help.text" msgid "Choose Format - Page Style - Page tab (Writer)." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Seite (Writer)." #. w3yEG #: 00040500.xhp @@ -12902,7 +12902,7 @@ "par_id3145800\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area - Image tab." -msgstr "" +msgstr "Wählen Sie Format – Textfeld und Form – Objekt – Register: Fläche – Schaltfläche: Bild." #. VRoLs #: 00040502.xhp @@ -13973,7 +13973,7 @@ "par_id3149948\n" "help.text" msgid "Every docked window has an icon to control the display properties of the window." -msgstr "" +msgstr "Jedes angedockte Fenster besitzt ein Symbol, mit dem Sie die Eigenschaften der Anzeige des Fensters steuern können." #. jJcsB #: 01000000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-04-05 10:40+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411332.000000\n" #. 3u8hR @@ -230,7 +230,7 @@ "par_idN108D0\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "" +msgstr "Öffnet den Datenbank-Assistenten zur Erstellung einer Datenbank-Datei." #. 9nYdo #: 01010000.xhp @@ -3425,7 +3425,7 @@ "par_id3150355\n" "help.text" msgid "Displays the date and time and author when the file was last saved in a $[officename] file format." -msgstr "Hier sehen Sie das Datum, die Uhrzeit und den Autor der letzten Änderung des $[officename] Dokuments." +msgstr "Hier sehen Sie das Datum, die Uhrzeit und den Autor der letzten Änderung des $[officename]-Dokuments." #. Hf7Rc #: 01100200.xhp @@ -9635,7 +9635,7 @@ "par_id3149203\n" "help.text" msgid "Finds characters that use a Case effect (Uppercase, Lowercase, Capitalize every word, or Small capitals)." -msgstr "Findet Zeichen mit dem Effekt Schreibweise (GROSSBUCHSTABEN, kleinbuchstaben, Jedes Wort Groß Schreiben oder Kapitälchen)." +msgstr "Findet Zeichen mit dem Effekt Schreibweise (GROẞBUCHSTABEN, kleinbuchstaben, Jedes Wort Groß Schreiben oder Kapitälchen)." #. Ld5EJ #: 02100200.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-01-20 08:38+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565413604.000000\n" #. Edm6o @@ -851,7 +851,7 @@ "par_id3148483\n" "help.text" msgid "Icon Check Box" -msgstr "" +msgstr "Symbol für Markierfeld" #. fbJjh #: 01170000.xhp @@ -878,7 +878,7 @@ "par_id3163665\n" "help.text" msgid "Icon Text Box" -msgstr "" +msgstr "Symbol für Textfeld" #. p3BAw #: 01170000.xhp @@ -905,7 +905,7 @@ "par_id3154836\n" "help.text" msgid "Icon Formatted Field" -msgstr "" +msgstr "Symbol für Formatiertes Feld" #. W4Jis #: 01170000.xhp @@ -941,7 +941,7 @@ "par_id3145801\n" "help.text" msgid "Icon Push Button" -msgstr "" +msgstr "Symbol für Schaltfläche" #. KTA7G #: 01170000.xhp @@ -977,7 +977,7 @@ "par_id3152971\n" "help.text" msgid "Icon Option Button" -msgstr "" +msgstr "Symbol für Optionsfeld" #. DJdqY #: 01170000.xhp @@ -1004,7 +1004,7 @@ "par_id3154326\n" "help.text" msgid "Icon List Box" -msgstr "" +msgstr "Symbol für Listenfeld" #. Dbwav #: 01170000.xhp @@ -1031,7 +1031,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Symbol für Kombinationsfeld" #. bUeTF #: 01170000.xhp @@ -1058,7 +1058,7 @@ "par_id3145295\n" "help.text" msgid "Icon Label Field" -msgstr "" +msgstr "Symbol für Beschriftungsfeld" #. xAedG #: 01170000.xhp @@ -1103,7 +1103,7 @@ "par_idN11B65\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Assistenten ein/aus" #. ySzEv #: 01170000.xhp @@ -1148,7 +1148,7 @@ "par_idN11A64\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Drehfeld" #. rY5Pe #: 01170000.xhp @@ -1184,7 +1184,7 @@ "par_idN11ACA\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Bildlaufleisten" #. RNigC #: 01170000.xhp @@ -1418,7 +1418,7 @@ "par_id3159622\n" "help.text" msgid "Icon image button" -msgstr "" +msgstr "Symbol für Grafische Schaltfläche" #. B9Era #: 01170000.xhp @@ -1445,7 +1445,7 @@ "par_id3155869\n" "help.text" msgid "Icon Image Control" -msgstr "" +msgstr "Symbol für Grafisches Steuerelement" #. ZJDNH #: 01170000.xhp @@ -1481,7 +1481,7 @@ "par_id3149423\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Datumsfeld" #. sSv2y #: 01170000.xhp @@ -1535,7 +1535,7 @@ "par_id3153687\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Zeitfeld" #. 7apBh #: 01170000.xhp @@ -1571,7 +1571,7 @@ "par_id3150531\n" "help.text" msgid "Icon File Selection" -msgstr "" +msgstr "Symbol für Dateiauswahl" #. 4CELT #: 01170000.xhp @@ -1598,7 +1598,7 @@ "par_id3149396\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Numerisches Feld" #. 3jPvp #: 01170000.xhp @@ -1625,7 +1625,7 @@ "par_id3145324\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Währungsfeld" #. dc7AD #: 01170000.xhp @@ -1652,7 +1652,7 @@ "par_id3149742\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Maskiertes Feld" #. 4SYQW #: 01170000.xhp @@ -1688,7 +1688,7 @@ "par_id3159334\n" "help.text" msgid "Icon Group Box" -msgstr "" +msgstr "Symbol für Gruppierungsrahmen" #. 3Suwy #: 01170000.xhp @@ -1742,7 +1742,7 @@ "par_id3156402\n" "help.text" msgid "Icon Table Control" -msgstr "" +msgstr "Symbol für Tabellen-Steuerelement" #. YNpAD #: 01170000.xhp @@ -1778,7 +1778,7 @@ "par_idN11B2C\n" "help.text" msgid "Icon Navigation bar" -msgstr "" +msgstr "Symbol für Navigationsleiste" #. dmjpG #: 01170000.xhp @@ -1814,7 +1814,7 @@ "par_id3150261\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Automatischer Steuerelement-Fokus" #. iDFFL #: 01170000.xhp @@ -7349,7 +7349,7 @@ "par_id3148755\n" "help.text" msgid "The Changed event takes place when the control loses the focus and the content of the control has changed since it lost the focus." -msgstr "" +msgstr "Das Ereignis Modifiziert tritt ein, wenn das Steuerelement den Fokus verliert und sich sein Inhalt seit Erhalt des Fokus geändert hat." #. pW2Ah #: 01170103.xhp @@ -7385,7 +7385,7 @@ "par_id3150870\n" "help.text" msgid "The Item status changed event takes place if the status of the control field has changed, for example, from checked to unchecked." -msgstr "" +msgstr "Das Ereignis Status geändert tritt bei einer Änderung des Steuerelement-Zustands ein, beispielsweise von ausgewählt zu nicht ausgewählt." #. CRguq #: 01170103.xhp @@ -7403,7 +7403,7 @@ "par_id3154218\n" "help.text" msgid "The When receiving focus event takes place if a control field receives the focus." -msgstr "" +msgstr "Das Ereignis Bei Fokuserhalt tritt ein, wenn das Steuerelement den Fokus erhält." #. NrRE4 #: 01170103.xhp @@ -7421,7 +7421,7 @@ "par_id3159252\n" "help.text" msgid "The When losing focus event takes place if a control field loses the focus." -msgstr "" +msgstr "Das Ereignis Bei Fokusverlust tritt ein, wenn ein Steuerelement den Fokus verliert." #. JkyEm #: 01170103.xhp @@ -9140,7 +9140,7 @@ "tit\n" "help.text" msgid "Activation Order" -msgstr "" +msgstr "Aktivierungsreihenfolge" #. LWAYe #: 01170300.xhp @@ -9149,7 +9149,7 @@ "hd_id3146959\n" "help.text" msgid "Activation Order" -msgstr "" +msgstr "Aktivierungsreihenfolge" #. ds3GH #: 01170300.xhp @@ -9158,7 +9158,7 @@ "par_id3150347\n" "help.text" msgid "Opens the Tab Order dialog so you can modify the order in which control fields get the focus when the user presses the tab key." -msgstr "" +msgstr "Öffnet den Dialog Tabulatorreihenfolge, in dem Sie die Reihenfolge ändern können, in der die Steuerelemente den Fokus erhalten, wenn der Benutzer die Taste Tabulator drückt." #. oEDQP #: 01170300.xhp @@ -15017,7 +15017,7 @@ "hd_id3151097\n" "help.text" msgid "Standard Filter" -msgstr "" +msgstr "Standardfilter" #. u4zmZ #: 12090100.xhp @@ -17897,7 +17897,7 @@ "bm_id3148668\n" "help.text" msgid "selection modes in text text; selection modes extending selection mode adding selection mode block selection mode" -msgstr "" +msgstr "Auswahlmodi in TextText; Auswahlmodi Modus Auswahl erweiternModus Auswahl hinzufügenModus Blockauswahl" #. ntcAk #: 20050000.xhp @@ -17915,7 +17915,7 @@ "par_id3146130\n" "help.text" msgid "Switches between different selection modes." -msgstr "" +msgstr "Wechselt zwischen verschiedenen Auswahlmodi." #. iyCEv #: 20050000.xhp @@ -17924,7 +17924,7 @@ "par_id3153894\n" "help.text" msgid "Click this field to open a popup menu with the following options:" -msgstr "" +msgstr "Klicken Sie auf dieses Feld, um ein Popup-Menü mit den folgenden Optionen zu öffnen:" #. FVGbB #: 20050000.xhp @@ -17969,7 +17969,7 @@ "par_id3149580\n" "help.text" msgid "Extending selection" -msgstr "" +msgstr "Auswahl erweitern" #. 8V8BG #: 20050000.xhp @@ -17978,7 +17978,7 @@ "par_id3153717\n" "help.text" msgid "Use the mouse, arrow keys or the Home and End keys to extend or crop the current selection. Clicking anywhere in the text selects the region between the current cursor position and the click position." -msgstr "" +msgstr "Verwenden Sie die Maus, die Pfeiltasten oder die Tasten Pos1 und Ende, um die aktuelle Auswahl zu erweitern oder zu beschneiden. Wenn Sie auf eine beliebige Stelle im Text klicken, wird der Bereich zwischen der aktuellen Cursorposition und der Klickposition ausgewählt." #. Jwb3c #: 20050000.xhp @@ -17987,7 +17987,7 @@ "par_id821630330412209\n" "help.text" msgid "Hold the Shift key to temporarily activate the Extending selection mode." -msgstr "" +msgstr "Drücken Sie die Taste Umschalt, um den Auswahlmodus \"Auswahl erweitern\" vorübergehend zu aktivieren." #. dL6uZ #: 20050000.xhp @@ -17996,7 +17996,7 @@ "par_id3147620\n" "help.text" msgid "Adding selection (Shift+F8)" -msgstr "" +msgstr "Auswahl hinzufügen (Umschalt+F8)" #. YjCCD #: 20050000.xhp @@ -18005,7 +18005,7 @@ "par_id3154307\n" "help.text" msgid "Use this mode to select multiple ranges of text. Each new selection using the mouse or keyboard is added as a new selection." -msgstr "" +msgstr "Verwenden Sie diesen Modus, um mehrere Textbereiche auszuwählen. Jede neue Auswahl mit der Maus oder Tastatur wird als neue Auswahl hinzugefügt." #. CFmAA #: 20050000.xhp @@ -18014,7 +18014,7 @@ "par_id941630331257314\n" "help.text" msgid "Hold the Ctrl key to temporarily activate the Adding selection mode." -msgstr "" +msgstr "Drücken Sie die Taste Strg, um den Auswahlmodus \"Auswahl hinzufügen\" vorübergehend zu aktivieren." #. vSETC #: 20050000.xhp @@ -18023,7 +18023,7 @@ "par_id6971037\n" "help.text" msgid "Block selection (CommandCtrl+Shift+F8)" -msgstr "" +msgstr "Blockauswahl (BefehlStrg+Umschalt+F8)" #. qAeGQ #: 20050000.xhp @@ -18032,7 +18032,7 @@ "par_id5258644\n" "help.text" msgid "Use this mode to select a non-contiguous block of text." -msgstr "" +msgstr "Verwenden Sie diesen Modus, um einen nicht zusammenhängenden Textblock auszuwählen." #. tcCu3 #: 20050000.xhp @@ -18041,7 +18041,7 @@ "par_id41630331461837\n" "help.text" msgid "Hold the Alt key to temporarily activate the Block selection mode." -msgstr "" +msgstr "Drücken Sie die Taste Alt, um den Auswahlmodus \"Blockauswahl\" vorübergehend zu aktivieren." #. ubD2w #: 20060000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/04.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/04.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/04.po 2022-07-15 19:12:51.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-19 17:31+0100\n" -"PO-Revision-Date: 2022-01-20 08:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411351.000000\n" #. GEuoc @@ -698,7 +698,7 @@ "par_id3145410\n" "help.text" msgid "Starts the $[officename] Help." -msgstr "Startet die $[officename] Hilfe." +msgstr "Startet die $[officename]-Hilfe." #. qZRd8 #: 01010000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561609392.000000\n" #. WPTtk @@ -275,7 +275,7 @@ "par_id3150618\n" "help.text" msgid "The $[officename] Help system provides easy access to information and support. There are several ways to find what you are looking for in the Help environment: You can search for a specific keyword in the Index, carry out a full-text search under Find, or look through a hierarchical list of the Topics." -msgstr "Mit dem $[officename] Hilfesystem erhalten Sie einen leichten Zugang zu Informationen und zur Hilfestellung bei Problemen. In der Hilfeumgebung können Sie in der Indexansicht nach einem bestimmten Schlüsselwort suchen, im Register Suchen eine Volltextsuche durchführen oder im Register Themen eine hierarchische Liste der Themen durchstöbern." +msgstr "Mit dem $[officename]-Hilfesystem erhalten Sie einen leichten Zugang zu Informationen und zur Hilfestellung bei Problemen. In der Hilfeumgebung können Sie in der Indexansicht nach einem bestimmten Schlüsselwort suchen, im Register Suchen eine Volltextsuche durchführen oder im Register Themen eine hierarchische Liste der Themen durchstöbern." #. EGUSS #: 00000110.xhp @@ -734,7 +734,7 @@ "bm_id3150672\n" "help.text" msgid "Help; Help tipstooltips; help" -msgstr "Hilfe; TippsTooltips; Hilfe" +msgstr "Hilfe; TippsTooltipps; Hilfe" #. gFk32 #: 00000120.xhp @@ -1715,7 +1715,7 @@ "par_id791534903145827\n" "help.text" msgid "Some contents in help pages can be copied to the system clipboard with only one mouse click. In these cases a tooltip appears when hovering the mouse on the copy-enabled contents. For example, the following line is copy-enabled:" -msgstr "Einige Inhalte von Hilfeseiten können mit nur einem Klick in die Zwischenablage Ihres Systems kopiert werden. In diesen Fällen erscheint ein Tooltip, wenn Sie die Maus über einen kopierfähigen Inhalt bewegen. Beispielsweise ist die folgende Zeile kopierfähig:" +msgstr "Einige Inhalte von Hilfeseiten können mit nur einem Klick in die Zwischenablage Ihres Systems kopiert werden. In diesen Fällen erscheint ein Tooltipp, wenn Sie die Maus über einen kopierfähigen Inhalt bewegen. Beispielsweise ist die folgende Zeile kopierfähig:" #. wwBQj #: new_help.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/autopi.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/autopi.po 2022-07-15 19:12:51.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 18:09+0100\n" -"PO-Revision-Date: 2022-01-08 14:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1541428663.000000\n" #. hCAzG @@ -4586,7 +4586,7 @@ "par_id3157898\n" "help.text" msgid "Determines the settings for publishing $[officename] Draw or $[officename] Impress documents in HTML format." -msgstr "Hiermit bestimmen Sie die Einstellungen zum Veröffentlichen eines $[officename] Draw- oder $[officename] Impress-Dokuments in HTML-Format." +msgstr "Hiermit bestimmen Sie die Einstellungen zum Veröffentlichen eines $[officename] Draw- oder $[officename] Impress-Dokuments im HTML-Format." #. RtuPF #: 01110000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-02-28 17:35+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: Mister Update \n" "Language-Team: German \n" "Language: de\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411466.000000\n" #. iharT @@ -284,7 +284,7 @@ "bm_id3156414\n" "help.text" msgid "Help; extended tips on/offextended tips in Helptips;extended tips in Helptooltips;extended tipsactivating;extended help tips" -msgstr "Hilfe; Erweiterte Tipps ein/ausErweiterte Tipps in der HilfeTipps; Erweiterte Tipps in der HilfeTooltips; Erweiterte Tipps in der HilfeAktivieren; Erweiterte Tipps in der Hilfe" +msgstr "Hilfe; Erweiterte Tipps ein/ausErweiterte Tipps in der HilfeTipps; Erweiterte Tipps in der HilfeTooltipps; Erweiterte Tipps in der HilfeAktivieren; Erweiterte Tipps in der Hilfe" #. XeZ7P #: active_help_on_off.xhp @@ -671,7 +671,7 @@ "bm_id821562797360035\n" "help.text" msgid "spreadsheet; auto-redact presentations; auto-redact text documents; auto-redact contents automatic redaction" -msgstr "" +msgstr "Tabellendokumente; Auto-RedigierungPräsentationen; Auto-RedigierungTextdokumente; Auto-Redigierung von InhaltenAuto-Redigierung" #. dujqZ #: auto_redact.xhp @@ -689,7 +689,7 @@ "par_id4715627952214572\n" "help.text" msgid "Use automatic redaction to define words and patterns that are automatically marked for redaction. This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues." -msgstr "" +msgstr "Verwenden Sie die Auto-Redigierung, um Wörter und Muster zu festzulegen, die automatisch zum Schwärzen markiert werden. Dies erleichtert das Redigieren von %PRODUCTNAME-Dokumenten mit mehreren Textteilen, die aufgrund von Vertraulichkeits- oder Datenschutzproblemen ausgeblendet werden müssen." #. erJBg #: auto_redact.xhp @@ -698,7 +698,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Auto-Redact" -msgstr "" +msgstr "Wählen Sie Extras – Auto-Redigierung…" #. XFRFz #: auto_redact.xhp @@ -707,7 +707,7 @@ "par_id551626027709362\n" "help.text" msgid "This feature comes in handy in documents that have multiple occurrences of names and other personal information (e.g. credit cards, phone numbers, etc). Redacting all these portions of the document manually would required significant effort, but with Automatic Redaction this task can be automated in a more efficient manner." -msgstr "Diese Funktion ist nützlich in Dokumenten, welche mehrere persönlich identifizierbare Informationen aufweisen (beispielsweise Kreditkarten, Telefonnummern, …). Das manuelle Redigieren aller dieser im Dokument vorkommenden Informationen würde zu einem erheblichen Aufwand führen, was jedoch durch automatische Redigierung in einer effizienteren Art automatisiert werden kann." +msgstr "Diese Funktion ist nützlich in Dokumenten, die mehrere persönlich identifizierbare Informationen aufweisen (beispielsweise Kreditkarten, Telefonnummern …). Das manuelle Redigieren aller dieser im Dokument vorkommenden Informationen würde zu einem erheblichen Aufwand führen, was jedoch durch automatische Redigierung in einer effizienteren Art automatisiert werden kann." #. HsEH7 #: auto_redact.xhp @@ -734,7 +734,7 @@ "par_id851626028193218\n" "help.text" msgid "To create a new target, click the Add Target button." -msgstr "" +msgstr "Um eine neue Zielvorgabe zu erstellen, klicken Sie auf die Schaltfläche Zielvorgabe hinzufügen." #. RGwFa #: auto_redact.xhp @@ -743,7 +743,7 @@ "par_id101626028852152\n" "help.text" msgid "The Add Target dialog appears, to let you define a Name for the new target, as well as to choose its Type and Content. There are three types of targets to choose from in the Type dropdown list:" -msgstr "" +msgstr "Der Dialog Zielvorgabe hinzufügen wird angezeigt, in dem Sie einen Namen für die neue Zielvorgabe festlegen und seinen Typ und Inhalt auswählen können. In der Dropdown-Liste Typ stehen drei Arten von Zielvorgaben zur Auswahl:" #. 5AKPv #: auto_redact.xhp @@ -752,7 +752,7 @@ "par_id241626028988544\n" "help.text" msgid "Text: Automatic Redaction will look for all occurrences of the specified text and mark them for redaction." -msgstr "" +msgstr "Text: Die automatische Redigierung sucht nach allen Vorkommen des angegebenen Textes und markiert sie für die Schwärzung." #. iCDRP #: auto_redact.xhp @@ -770,7 +770,7 @@ "par_id391626028994653\n" "help.text" msgid "Predefined: Choose predefined regular expressions to automatically redact contents, such as credit card numbers, email addresses and so on." -msgstr "" +msgstr "Vordefiniert: Wählen Sie vordefinierte reguläre Ausdrücke, um Inhalte wie Kreditkartennummern, E-Mail-Adressen … automatisch zu entfernen." #. bMHnY #: auto_redact.xhp @@ -779,7 +779,7 @@ "par_id181626029575406\n" "help.text" msgid "Add all targets that you want to apply to your document and click OK. This opens the document as a drawing in %PRODUCTNAME Draw with all targets automatically redacted with the Rectangle Redaction tool." -msgstr "" +msgstr "Fügen Sie alle Zielvorgaben hinzu, die Sie auf Ihr Dokument anwenden möchten, und klicken Sie auf OK. Dadurch wird das Dokument als Zeichnung in %PRODUCTNAME Draw geöffnet, wobei alle Zielvorgaben automatisch mit dem Werkzeug Rechteck-Redigierung geschwärzt werden." #. kiFS3 #: auto_redact.xhp @@ -788,7 +788,7 @@ "par_id611626029791762\n" "help.text" msgid "Continue redacting other portions of the generated document and then print or export it to PDF." -msgstr "" +msgstr "Fahren Sie mit dem Redigieren anderer Teile des generierten Dokuments fort und drucken oder exportieren Sie es dann als PDF." #. AGQiE #: auto_redact.xhp @@ -797,7 +797,7 @@ "par_id581626101004089\n" "help.text" msgid "Refer to the help page List of Regular Expressions to learn more about how to use regular expressions in %PRODUCTNAME." -msgstr "" +msgstr "Weitere Informationen zur Verwendung von regulären Ausdrücken in %PRODUCTNAME finden Sie auf der Hilfeseite Liste regulärer Ausdrücke." #. AE55E #: auto_redact.xhp @@ -806,7 +806,7 @@ "hd_id951626029985729\n" "help.text" msgid "Exporting and Importing Targets" -msgstr "" +msgstr "Exportieren und Importieren von Zielvorgaben" #. CsYeH #: auto_redact.xhp @@ -815,7 +815,7 @@ "par_id701626030005749\n" "help.text" msgid "Click the Save Targets button to save all defined targets in the document as a JSON (JavaScript Object Notation) file." -msgstr "" +msgstr "Klicken Sie auf die Schaltfläche Zielvorgaben speichern, um alle definierten Zielvorgaben im Dokument als JSON-Datei (JavaScript Object Notation) zu speichern." #. M2XoB #: auto_redact.xhp @@ -824,7 +824,7 @@ "par_id971626030103135\n" "help.text" msgid "Click the Load Targets button to import and apply the targets defined in a JSON file to another %PRODUCTNAME document." -msgstr "" +msgstr "Klicken Sie auf die Schaltfläche Zielvorgaben laden, um die in einer JSON-Datei gespeicherten Zielvorgaben zu importieren und auf ein anderes %PRODUCTNAME-Dokument anzuwenden." #. 2haDR #: auto_redact.xhp @@ -833,7 +833,7 @@ "par_id311626030327293\n" "help.text" msgid "The document automatic redaction targets are saved alongside the document. Hence, they are available in the document after you save and close it." -msgstr "" +msgstr "Die Zielvorgaben für die Auto-Redigierung des Dokuments werden zusammen mit dem Dokument gespeichert. Daher sind sie im Dokument verfügbar, nachdem Sie es gespeichert und geschlossen haben." #. K7YtD #: autocorr_url.xhp @@ -1562,7 +1562,7 @@ "par_idN106D9\n" "help.text" msgid "Inserting line breaks in $[officename] Calc spreadsheet cells" -msgstr "Zeilenumbrüche in Zellen von $[officename] Calc Tabellendokumenten einfügen" +msgstr "Zeilenumbrüche in Zellen von $[officename] Calc-Tabellendokumenten einfügen" #. E2hX5 #: breaking_lines.xhp @@ -1868,7 +1868,7 @@ "par_id3156136\n" "help.text" msgid "You can add texture to the bars in a graph or chart (instead of the default colors) via graphics:" -msgstr "" +msgstr "Sie können den Balken in einem Diagramm (anstelle der Standardfarben) mittels Grafiken Textur hinzufügen:" #. 4UEfD #: chart_barformat.xhp @@ -1913,7 +1913,7 @@ "par_id3146797\n" "help.text" msgid "Click on Image. In the list box select an image as a texture for the currently selected bars. Click OK to accept the setting." -msgstr "" +msgstr "Klicken Sie auf Bild. Wählen Sie im Listenfeld ein Bild als Textur für die aktuell ausgewählten Balken aus. Klicken Sie auf OK, um die Einstellung zu übernehmen." #. rgZEg #: chart_insert.xhp @@ -4046,7 +4046,7 @@ "hd_id771554399002497\n" "help.text" msgid "File Conversion Filter Names" -msgstr "" +msgstr "Dateikonvertierungsfilter-Namen" #. EoDwz #: convertfilters.xhp @@ -4055,7 +4055,7 @@ "par_id581554399002498\n" "help.text" msgid " Tables with filter names for command line document conversion. " -msgstr "" +msgstr "Tabellen mit Filternamen für die Dokumentkonvertierung mittels Befehlszeile." #. Whybs #: convertfilters.xhp @@ -4064,7 +4064,7 @@ "hd_id531633524464103\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Verwendung" #. vcWaC #: convertfilters.xhp @@ -4073,7 +4073,7 @@ "par_id801633524474460\n" "help.text" msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the command line." -msgstr "" +msgstr "Filternamen werden beim Importieren und Exportieren von Dateien in fremde Formate und beim Konvertieren von Dateiformaten über die Befehlszeile verwendet." #. QAzjK #: convertfilters.xhp @@ -4433,7 +4433,7 @@ "FilterName_writer_indexing_export\n" "help.text" msgid "Writer Indexing Export XML" -msgstr "" +msgstr "Writer Indexing Export XML" #. Va5zD #: convertfilters.xhp @@ -5450,7 +5450,7 @@ "FilterName_writer_png_Export\n" "help.text" msgid "PNG - Portable Network Graphics" -msgstr "" +msgstr "PNG – Portable Network Graphics" #. FeKia #: convertfilters.xhp @@ -5468,7 +5468,7 @@ "bm_000pdfimport\n" "help.text" msgid "command line document conversion; filters for PDFIMPORT" -msgstr "" +msgstr "Befehlszeilen-Dokumentkonvertierung; Filter für PDFIMPORT" #. K7dq5 #: convertfilters.xhp @@ -5477,7 +5477,7 @@ "hd_000pdfimport\n" "help.text" msgid "Filters for PDFIMPORT" -msgstr "" +msgstr "Filter für PDFIMPORT" #. xJhTH #: convertfilters.xhp @@ -5486,7 +5486,7 @@ "FilterName_draw_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Draw)" -msgstr "" +msgstr "PDF – Portable Document Format (Draw)" #. JDFdH #: convertfilters.xhp @@ -5495,7 +5495,7 @@ "FilterName_impress_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Impress)" -msgstr "" +msgstr "PDF – Portable Document Format (Impress)" #. WsMeW #: convertfilters.xhp @@ -5504,7 +5504,7 @@ "FilterName_writer_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Writer)" -msgstr "" +msgstr "PDF – Portable Document Format (Writer)" #. 9WyPm #: convertfilters.xhp @@ -5513,7 +5513,7 @@ "FilterName_writer_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – Portable Document Format" #. kF4WL #: convertfilters.xhp @@ -5522,7 +5522,7 @@ "FilterName_impress_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – Portable Document Format" #. aFqyu #: convertfilters.xhp @@ -5531,7 +5531,7 @@ "FilterName_draw_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – Portable Document Format" #. 5AFFP #: convertfilters.xhp @@ -5540,7 +5540,7 @@ "FilterName_calc_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF – Portable Document Format" #. ziEHZ #: convertfilters.xhp @@ -5549,7 +5549,7 @@ "bm_000xsltfilter\n" "help.text" msgid "command line document conversion; filters for XSLTFILTER" -msgstr "" +msgstr "Befehlszeilen-Dokumentkonvertierung; Filter für XSLTFILTER" #. AzDaX #: convertfilters.xhp @@ -5558,7 +5558,7 @@ "hd_000xsltfilter\n" "help.text" msgid "Filters for XSLTFILTER" -msgstr "" +msgstr "Filter für XSLTFILTER" #. ebRhP #: convertfilters.xhp @@ -5567,7 +5567,7 @@ "FilterName_ADO_Rowset_XML\n" "help.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "ADO Rowset XML" #. tTViV #: convertfilters.xhp @@ -5576,7 +5576,7 @@ "FilterName_DocBook_File\n" "help.text" msgid "DocBook" -msgstr "" +msgstr "DocBook" #. GHC43 #: convertfilters.xhp @@ -5585,7 +5585,7 @@ "FilterName_MS_Excel_2003_XML\n" "help.text" msgid "Microsoft Excel 2003 XML" -msgstr "" +msgstr "Microsoft Excel 2003 XML" #. 5wBfH #: convertfilters.xhp @@ -5594,7 +5594,7 @@ "FilterName_MS_Word_2003_XML\n" "help.text" msgid "Word 2003 XML" -msgstr "" +msgstr "Word 2003 XML" #. CTAEj #: convertfilters.xhp @@ -5603,7 +5603,7 @@ "FilterName_XHTML_Calc_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. VUZrD #: convertfilters.xhp @@ -5612,7 +5612,7 @@ "FilterName_XHTML_Draw_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. AhcRA #: convertfilters.xhp @@ -5621,7 +5621,7 @@ "FilterName_XHTML_Impress_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. iCCFv #: convertfilters.xhp @@ -5630,7 +5630,7 @@ "FilterName_XHTML_Writer_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. MCrWq #: convertfilters.xhp @@ -5639,7 +5639,7 @@ "FilterName_UOF_text\n" "help.text" msgid "Unified Office Format text" -msgstr "" +msgstr "Unified Office Format-Textdokument" #. TXKeC #: convertfilters.xhp @@ -5648,7 +5648,7 @@ "FilterName_UOF_spreadsheet\n" "help.text" msgid "Unified Office Format spreadsheet" -msgstr "" +msgstr "Unified Office Format-Tabellendokument" #. VW3Gt #: convertfilters.xhp @@ -5657,7 +5657,7 @@ "FilterName_UOF_presentation\n" "help.text" msgid "Unified Office Format presentation" -msgstr "" +msgstr "Unified Office Format-Präsentation" #. Bkz5M #: copy_drawfunctions.xhp @@ -5963,7 +5963,7 @@ "tit\n" "help.text" msgid "CSV Filter parameters" -msgstr "" +msgstr "CSV-Filterparameter" #. KyLbg #: csv_params.xhp @@ -5972,7 +5972,7 @@ "bm_id181634740978601\n" "help.text" msgid "CSV;filter options CSV;separator specification line CSV;import options CSV;export options CSV;command line filter options" -msgstr "" +msgstr "CSV; FilteroptionenCSV; Trennzeichen-SpezifikationszeileCSV; ImportoptionenCSV; ExportoptionenCSV; Befehlszeilen-Filteroptionen" #. szBoK #: csv_params.xhp @@ -5981,7 +5981,7 @@ "hd_id551634734576194\n" "help.text" msgid "CSV Filter Options" -msgstr "" +msgstr "CSV-Filteroptionen" #. qRkBK #: csv_params.xhp @@ -5990,7 +5990,7 @@ "par_id401634734576197\n" "help.text" msgid "The CSV filter accepts an option string containing five to thirteen tokens, separated by commas. Tokens 6 to 13 are optional." -msgstr "" +msgstr "Der CSV-Filter akzeptiert eine Optionszeichenfolge mit fünf bis dreizehn Token, getrennt durch Kommata. Token 6 bis 13 sind optional." #. BQKWB #: csv_params.xhp @@ -5999,7 +5999,7 @@ "par_id431634743318433\n" "help.text" msgid "Import from UTF-8, Language German, Comma separated, Text delimiter \", Quoted field as text. CSV file has columns formatted as date, number, number, number:" -msgstr "" +msgstr "Import aus UTF-8, Sprache Deutsch, Kommagetrennt, Texttrennzeichen \", Angeführtes Feld als Text. CSV-Datei hat Spalten, die als Datum, Zahl, Zahl, Zahl formatiert sind:" #. rdZgZ #: csv_params.xhp @@ -6008,7 +6008,7 @@ "par_id281634743298078\n" "help.text" msgid "Export to Windows-1252, Field delimiter : comma, Text delimiter : quote, Save cell contents as shown:" -msgstr "" +msgstr "Export nach Windows-1252, Feldtrennzeichen: Komma, Texttrennzeichen: Anführungszeichen, Zelleninhalt wie gezeigt speichern:" #. J8rtr #: csv_params.xhp @@ -6017,7 +6017,7 @@ "par_id511634735255956\n" "help.text" msgid "Token Position" -msgstr "" +msgstr "Token-Position" #. 5rrFy #: csv_params.xhp @@ -6026,7 +6026,7 @@ "par_id71634735255956\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Definition" #. tBx7H #: csv_params.xhp @@ -6035,7 +6035,7 @@ "par_id581634735255956\n" "help.text" msgid "Meaning and Example of Token" -msgstr "" +msgstr "Bedeutung und Beispiel von Token" #. FBZ5h #: csv_params.xhp @@ -6044,7 +6044,7 @@ "par_id691634735255956\n" "help.text" msgid "Field Separator" -msgstr "" +msgstr "Feldtrennzeichen" #. Zgou6 #: csv_params.xhp @@ -6053,7 +6053,7 @@ "par_id501634735255956\n" "help.text" msgid "Field separator(s) as ASCII values. Multiple values are separated by the slash sign (\"/\"), that is, if the values are separated by semicolons and horizontal tabulators, the token would be 59/9. To treat several consecutive separators as one, then append '/MRG' to the token. If the file contains fixed width fields, then use 'FIX'. Example: 44 (,)" -msgstr "" +msgstr "Feldtrennzeichen als ASCII-Werte. Mehrere Werte werden durch den Schrägstrich (\"/\") getrennt, das heißt, wenn die Werte durch Semikola und horizontale Tabulatoren getrennt sind, wäre der Token 59/9. Um mehrere aufeinanderfolgende Trennzeichen als eines zu behandeln, hängen Sie \"/MRG\" an den Token an. Wenn die Datei Felder mit fester Breite enthält, verwenden Sie „FIX“. Beispiel: 44 (,)" #. HqX6Y #: csv_params.xhp @@ -6062,7 +6062,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Texttrennzeichen" #. AtZEw #: csv_params.xhp @@ -6071,7 +6071,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, that is, 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "Das Texttrennzeichen als ASCII-Wert, also 34 für doppelte Anführungszeichen und 39 für einfache Anführungszeichen. Beispiel: 34 (\")." #. 5EFCS #: csv_params.xhp @@ -6080,7 +6080,7 @@ "par_id901634735627024\n" "help.text" msgid "Character Set" -msgstr "" +msgstr "Zeichensatz" #. v4Gzf #: csv_params.xhp @@ -6089,7 +6089,7 @@ "par_id871634735631362\n" "help.text" msgid "The character set code used in the file as described in the table below. Example: 0 (System)." -msgstr "" +msgstr "Der in der Datei verwendete Zeichensatzcode, wie in der folgenden Tabelle beschrieben. Beispiel: 0 (System)." #. rrrw3 #: csv_params.xhp @@ -6098,7 +6098,7 @@ "par_id371634735705688\n" "help.text" msgid "Number of First Row" -msgstr "" +msgstr "Nummer der ersten Zeile" #. DzcEC #: csv_params.xhp @@ -6107,7 +6107,7 @@ "par_id681634735710417\n" "help.text" msgid "Row number to start reading. Example: 3 (start from third row)." -msgstr "" +msgstr "Zeilennummer, in der mit dem Lesen begonnen wird. Beispiel: 3 (beginnt mit der dritten Zeile)." #. BeXqG #: csv_params.xhp @@ -6116,7 +6116,7 @@ "par_id741634735821982\n" "help.text" msgid "Cell Format Codes for Each Column" -msgstr "" +msgstr "Zellformatcodes für jede Spalte" #. fjBqE #: csv_params.xhp @@ -6125,7 +6125,7 @@ "par_id481634735825359\n" "help.text" msgid "A sequence of column/formatting code, where the formatting code is given in the table below. Example: \"1/5/2/1/3/1/4/1\"." -msgstr "" +msgstr "Eine Folge von Spalten-/Formatierungscodes, wobei der Formatierungscode in der folgenden Tabelle angegeben ist. Beispielsweise: \"1/5/2/1/3/1/4/1\"." #. mFfyA #: csv_params.xhp @@ -6134,7 +6134,7 @@ "par_id831634735631362\n" "help.text" msgid "If value separators are used, the form of this token is column/format[/column/format/…] where column is the number of the column, with 1 being the leftmost column. The format code is detailed below." -msgstr "" +msgstr "Wenn Werttrennzeichen verwendet werden, ist die Form dieses Tokens Spalte/Format[/Spalte/Format/…], wobei Spalte die Nummer der Spalte ist, mit 1 der Spalte ganz links. Der Formatcode ist unten aufgeführt." #. bMC9A #: csv_params.xhp @@ -6143,7 +6143,7 @@ "par_id831635735631362\n" "help.text" msgid "If the first token is FIX it has the form start/format[/start/format/…], where start is the number of the first character for this field, with 0 being the leftmost character in a line. The format is explained below." -msgstr "" +msgstr "Wenn der erste Token \"FIX\" ist, hat es die Form start/format[/start/format/…], wobei \"start\" die Nummer des ersten Zeichens für dieses Feld ist, mit 0 dem Zeichen ganz links in einer Zeile. Das Format wird unten erklärt." #. ZwqfD #: csv_params.xhp @@ -6152,7 +6152,7 @@ "par_id971634736857464\n" "help.text" msgid "Language identifier" -msgstr "" +msgstr "Sprachkennung" #. DrnsR #: csv_params.xhp @@ -6161,7 +6161,7 @@ "par_id951634736861475\n" "help.text" msgid "String expressed in decimal notation. This token is the equivalent of the \"Language\" listbox in the user interface for CSV import. If the value is 0 or omitted, the language identifier of the user interface is used. The language identifier is based on the Microsoft language identifiers." -msgstr "" +msgstr "Zeichenfolge in Dezimalschreibweise. Dieser Token entspricht dem Listenfeld \"Sprache\" in der Benutzeroberfläche für den CSV-Import. Wenn der Wert 0 ist oder weggelassen wird, wird die Sprachkennung der Benutzeroberfläche verwendet. Die Sprachkennung basiert auf den Microsoft-Sprachkennungen." #. B8dVu #: csv_params.xhp @@ -6170,7 +6170,7 @@ "par_id181634736918511\n" "help.text" msgid "CSV Import, CSV Export" -msgstr "" +msgstr "CSV-Import, CSV-Export" #. 4EDix #: csv_params.xhp @@ -6179,7 +6179,7 @@ "par_id481634736922278\n" "help.text" msgid "String, either false or true. Default value: false. This token is the equivalent of the check box \"Quoted field as text\"." -msgstr "" +msgstr "Zeichenfolge, entweder false oder true. Standardwert: false. Dieser Token ist das Äquivalent zum Markierfeld „Werte in Hochkommata als Text formatieren“." #. bDTPa #: csv_params.xhp @@ -6188,7 +6188,7 @@ "par_id761634737057161\n" "help.text" msgid "CSV Import, CSV Export" -msgstr "" +msgstr "CSV-Import, CSV-Export" #. SDFCG #: csv_params.xhp @@ -6197,7 +6197,7 @@ "par_id41634737061097\n" "help.text" msgid "Import: String, either false or true. Default value: false. This token is the equivalent of the check box \"Detect special numbers\"." -msgstr "" +msgstr "Import: Zeichenfolge, entweder false oder true. Standardwert: false. Dieser Token ist das Äquivalent zum Markierfeld „Erweiterte Zahlerkennung“." #. kvUjv #: csv_params.xhp @@ -6206,7 +6206,7 @@ "par_id161634737264744\n" "help.text" msgid "Export: String, either false or true. Default value: true. This token has no UI equivalent. If true, the number cells are stored as numbers. If false, the numbers are stored as text, with text delimiters." -msgstr "" +msgstr "Export: Zeichenfolge, entweder \"false\" oder \"true\". Standardwert: true. Dieser Token hat kein UI-Äquivalent. Wenn true, werden Zahlzellen als Zahlen gespeichert. Bei false werden Zahlen als Text mit Texttrennzeichen gespeichert." #. D9GzU #: csv_params.xhp @@ -6215,7 +6215,7 @@ "par_id961634737712752\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "CSV-Export" #. bE733 #: csv_params.xhp @@ -6224,7 +6224,7 @@ "par_id701634737971414\n" "help.text" msgid "String, either false or true. Default value:true. This token is the equivalent of the check box \"Save cell contents as shown\"." -msgstr "" +msgstr "Zeichenfolge, entweder false oder true. Standardwert:true. Dieser Token ist das Äquivalent zum Markierfeld \"Zelleninhalte wie angezeigt speichern\"." #. DbAB4 #: csv_params.xhp @@ -6233,7 +6233,7 @@ "par_id481634896761359\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "CSV-Export" #. 3V5FY #: csv_params.xhp @@ -6242,7 +6242,7 @@ "par_id411634896764659\n" "help.text" msgid "String, either false or true. Default value: false. Export cell formulas." -msgstr "" +msgstr "Zeichenfolge, entweder false oder true. Standardwert: false. Exportiert Zellformeln." #. FE6AD #: csv_params.xhp @@ -6251,7 +6251,7 @@ "par_id221634896896383\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "CSV-Import" #. o6NCQ #: csv_params.xhp @@ -6260,7 +6260,7 @@ "par_id641634896897119\n" "help.text" msgid "String, either false or true. Default value: false. Remove spaces. Trim leading and trailing spaces, when reading the file." -msgstr "" +msgstr "Zeichenfolge, entweder false oder true. Standardwert: false. Entfernt Leerzeichen. Führende und abschließende Leerzeichen werden beim Lesen der Datei abgeschnitten." #. e7nRn #: csv_params.xhp @@ -6269,7 +6269,7 @@ "par_id521634896971296\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "CSV-Export" #. NaJRN #: csv_params.xhp @@ -6278,7 +6278,7 @@ "par_id161634896971802\n" "help.text" msgid "Export the entire document to individual sheets .csv files or a specified sheet." -msgstr "" +msgstr "Exportiert das gesamte Dokument mit einer CSV-Datei je Tabelle oder eine bestimmte Tabelle." #. X7QDK #: csv_params.xhp @@ -6287,7 +6287,7 @@ "par_id341634897309489\n" "help.text" msgid "0 or absent means the default behaviour, first sheet from command line, or current sheet in macro filter options, exported to sample.csv" -msgstr "" +msgstr "0 oder nicht vorhanden bedeutet das Standardverhalten, erste Tabelle von der Befehlszeile oder aktuelle Tabelle in den Makrofilteroptionen, exportiert nach sample.csv" #. mnMGx #: csv_params.xhp @@ -6296,7 +6296,7 @@ "par_id381634897377753\n" "help.text" msgid "-1 for all sheets, each sheet is exported to an individual file of the base file name concatenated with the sheet name, for example sample-Sheet1.csv, sample-Sheet2.csv and sample-Sheet3.csv" -msgstr "" +msgstr "-1 für alle Tabellen, jede Tabelle wird in eine einzelne Datei mit dem Basisdateinamen exportiert, der mit dem Tabellennamen verkettet ist, beispielsweise sample-Tabelle1.csv, sample-Tabelle2.csv und sample-Tabelle3.csv" #. ANajZ #: csv_params.xhp @@ -6305,7 +6305,7 @@ "par_id531634897438255\n" "help.text" msgid "N export the N-th sheet within the range of number of sheets. Example: to export the second sheet, set 2 here to get sample-Sheet2.csv" -msgstr "" +msgstr "N exportiert die N-te Tabelle innerhalb des Bereichs der Tabellenzahl. Um beispielsweise die zweite Tabelle zu exportieren, geben Sie hier 2 ein, um sample-Tabelle2.csv zu erhalten" #. xfaM3 #: csv_params.xhp @@ -6314,7 +6314,7 @@ "par_id451635293273892\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "CSV-Import" #. 54sie #: csv_params.xhp @@ -6323,7 +6323,7 @@ "par_id701635293273893\n" "help.text" msgid "String, either false or true. Default value: false. Determines whether formula expressions starting with a = equal sign character are to be evaluated as formulas or imported as textual data. If true evaluate formulas on input. If false formulas are input as text. If omitted (not present at all), the default value is true to keep the behaviour of old versions' options string that didn't have this token at all. If present and empty (or any other value than true) the default value is false." -msgstr "" +msgstr "Zeichenfolge, entweder false oder true. Standardwert: false. Legt fest, ob Formelausdrücke, die mit einem Gleichheitszeichen \"=\" beginnen, als Formeln ausgewertet oder als Textdaten importiert werden sollen. Wenn true werden Formeln bei der Eingabe auswerten. Bei false werden Formeln als Text übernommen. Wenn weggelassen (überhaupt nicht vorhanden), ist der Standardwert true, um das Verhalten der Optionszeichenfolge alter Versionen beizubehalten, die diesen Token überhaupt nicht hatten. Wenn vorhanden und leer (oder ein anderer Wert als true), ist der Standardwert false." #. DAriB #: csv_params.xhp @@ -6332,7 +6332,7 @@ "hd_id591638374883162\n" "help.text" msgid "Special case of CSV files with separator defined in the first line" -msgstr "" +msgstr "Sonderfall von CSV-Dateien mit in der ersten Zeile definiertem Trennzeichen" #. gpBdg #: csv_params.xhp @@ -6341,7 +6341,7 @@ "par_id781638374952502\n" "help.text" msgid "CSV import and export support a sep= and \"sep=\" field separator setting. When reading a CSV document, the separator is taken from the initial sep= or \"sep=\" single field, if that is the only line content." -msgstr "" +msgstr "CSV-Import und -Export unterstützen eine sep=- und \"sep=\"-Feldtrennzeicheneinstellung. Beim Lesen eines CSV-Dokuments wird das Trennzeichen aus dem initialen sep= bzw. \"sep=\" Einzelfeld genommen, wenn dies der einzige Zeileninhalt ist." #. q8D8y #: csv_params.xhp @@ -6350,7 +6350,7 @@ "par_id561638377619263\n" "help.text" msgid "When reading a CSV file, the quoted form is preserved as (unquoted) cell content. You see sep=| when | is the separator in the first line. In the unquoted form, the separator is discarded because it is a real field separator in the context. You see sep= in the first line." -msgstr "" +msgstr "Beim Lesen einer CSV-Datei bleibt die in Anführungszeichen gesetzte Form als (nicht in Anführungszeichen gesetzter) Zellinhalt erhalten. Sie sehen sep=| wenn | das Trennzeichen in der ersten Zeile ist. In der Form ohne Anführungszeichen wird das Trennzeichen verworfen, da es sich im Kontext um ein echtes Feldtrennzeichen handelt. In der ersten Zeile sehen Sie sep=." #. j5dBK #: csv_params.xhp @@ -6359,7 +6359,7 @@ "par_id761638377626465\n" "help.text" msgid "When writing a CSV file, the existing single top left cell's content such as sep=| is adapted to the current separator with the quoted form of \"sep=|\" (if quotes / text delimiters aren't set empty and | is the separator) and always uses the ASCII \" double quote character." -msgstr "" +msgstr "Beim Schreiben einer CSV-Datei wird der Inhalt der vorhandenen einzelnen Zelle oben links wie sep=| an das aktuelle Trennzeichen mit der Anführungszeichenform von \"sep=|\" angepasst (falls Anführungszeichen / Texttrennzeichen nicht leer gesetzt werden und | das Trennzeichen ist) und immer das doppelte ASCII-Anführungszeichen \" verwendet." #. uBq4B #: csv_params.xhp @@ -6368,7 +6368,7 @@ "par_id61638377631743\n" "help.text" msgid "If the line containing the sep=| is not to be imported as data, remember to set the From row number in the dialog to 2. Note that this line will not be preserved when re-saving." -msgstr "" +msgstr "Wenn die Zeile mit sep=| nicht als Daten importiert werden soll, denken Sie daran, die Nummer Ab Zeile im Dialog auf 2 zu setzen. Beachten Sie, dass diese Zeile nicht importiert wird beim erneuten Speichern erhalten bleibt." #. oGd5z #: csv_params.xhp @@ -6377,7 +6377,7 @@ "par_id731638374814029\n" "help.text" msgid "\"LETTER\"|\"ANIMAL\"" -msgstr "" +msgstr "\"BUCHSTABE\"|\"TIER\"" #. CsfKB #: csv_params.xhp @@ -6386,7 +6386,7 @@ "par_id801638374818291\n" "help.text" msgid "\"a\"|\"aardvark\"" -msgstr "" +msgstr "\"A\"|\"Affe\"" #. t62e9 #: csv_params.xhp @@ -6395,7 +6395,7 @@ "par_id621638374822275\n" "help.text" msgid "\"b\"|\"bear\"" -msgstr "" +msgstr "\"B\"|\"Bär\"" #. G2aQG #: csv_params.xhp @@ -6404,7 +6404,7 @@ "par_id851638374831208\n" "help.text" msgid "\"c\"|\"cow\"" -msgstr "" +msgstr "\"C\"|\"Chamäleon\"" #. EFwn3 #: csv_params.xhp @@ -6413,7 +6413,7 @@ "hd_id181634739011588\n" "help.text" msgid "Formatting Codes for Token 5" -msgstr "" +msgstr "Formatierungscodes für Token 5" #. 3KE5V #: csv_params.xhp @@ -6422,7 +6422,7 @@ "par_id31634738948892\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Bedeutung" #. kDygY #: csv_params.xhp @@ -6431,7 +6431,7 @@ "par_id101634738948892\n" "help.text" msgid "Code" -msgstr "" +msgstr "Code" #. BpiaC #: csv_params.xhp @@ -6440,7 +6440,7 @@ "par_id1011670216\n" "help.text" msgid "Standard" -msgstr "" +msgstr "Standard" #. o2zeW #: csv_params.xhp @@ -6449,7 +6449,7 @@ "par_id1605952714\n" "help.text" msgid "Text" -msgstr "" +msgstr "Text" #. pPwcP #: csv_params.xhp @@ -6458,7 +6458,7 @@ "par_id5066036143\n" "help.text" msgid "MM/DD/YY" -msgstr "" +msgstr "MM/TT/JJ" #. 6yrFg #: csv_params.xhp @@ -6467,7 +6467,7 @@ "par_id6386378851\n" "help.text" msgid "DD/MM/YY" -msgstr "" +msgstr "TT/MM/JJ" #. BrCte #: csv_params.xhp @@ -6476,7 +6476,7 @@ "par_id6847541095\n" "help.text" msgid "YY/MM/DD" -msgstr "" +msgstr "JJ/MM/TT" #. nixiA #: csv_params.xhp @@ -6485,7 +6485,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Feld ignorieren (nicht importieren)" #. LEJDn #: csv_params.xhp @@ -6494,7 +6494,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "US-Englisch" #. wLth6 #: csv_params.xhp @@ -6503,7 +6503,7 @@ "hd_id591634740467955\n" "help.text" msgid "Character Set Codes for Token 3" -msgstr "" +msgstr "Zeichensatzcodes für Token 3" #. Ag4xM #: ctl.xhp @@ -6539,7 +6539,7 @@ "par_id3147618\n" "help.text" msgid "Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as CTL languages." -msgstr "$[officename] unterstützt derzeit Hindi, Thai, hebräisch und arabisch als CTL-Sprachen." +msgstr "$[officename] unterstützt derzeit Hindi, Thai, Hebräisch und Arabisch als CTL-Sprachen." #. YE2zw #: ctl.xhp @@ -6908,7 +6908,7 @@ "par_id3149762\n" "help.text" msgid "Save the current $[officename] Calc spreadsheet in dBASE format in the folder of a dBASE database. To do this, choose File - Save As, then select the File type \"dBASE\" and the folder of the dBASE database." -msgstr "Speichern Sie das aktuelle $[officename] Calc Tabellendokument im dBase-Format im Ordner einer dBase Datenbank. Dazu wählen Sie den Befehl Datei – Speichern unter…, dann wählen Sie den Dateityp \"dBase\" und den Ordner der dBase-Datenbank." +msgstr "Speichern Sie das aktuelle $[officename] Calc-Tabellendokument im dBase-Format im Ordner einer dBase-Datenbank. Dazu wählen Sie den Befehl Datei – Speichern unter…, dann wählen Sie den Dateityp \"dBase\" und den Ordner der dBase-Datenbank." #. hGN4c #: data_dbase2office.xhp @@ -6926,7 +6926,7 @@ "par_id3154140\n" "help.text" msgid "You can export the current $[officename] spreadsheet in a text format which can be read by many other applications." -msgstr "Das aktuelle $[officename] Tabellendokument können Sie in ein Textformat exportieren, das von vielen anderen Anwendungen gelesen werden kann." +msgstr "Das aktuelle $[officename]-Tabellendokument können Sie in ein Textformat exportieren, das von vielen anderen Anwendungen gelesen werden kann." #. Pq3tk #: data_dbase2office.xhp @@ -7367,7 +7367,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Erstellen Sie entweder eine neue Base-Datei mit dem Datenbankassistenten oder öffnen Sie eine vorhandene Base-Datei, die nicht schreibgeschützt ist." #. JHYC6 #: data_im_export.xhp @@ -7493,7 +7493,7 @@ "par_idN105CB\n" "help.text" msgid "This opens the Database Wizard, where you create a new database file." -msgstr "" +msgstr "Dadurch wird der Datenbankassistent geöffnet, in dem Sie eine neue Datenbankdatei erstellen." #. zTCBz #: data_new.xhp @@ -7511,7 +7511,7 @@ "par_idN105E0\n" "help.text" msgid "The Table Wizard helps you to add a table to the new database file." -msgstr "" +msgstr "Der Tabellenassistent hilft Ihnen beim Hinzufügen einer Tabelle zur neuen Datenbankdatei." #. pF4kL #: data_queries.xhp @@ -7673,7 +7673,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 jeder Datenbankdatei können in der installierten Instanz von %PRODUCTNAME registriert werden. Sie zu registrieren bedeutet, %PRODUCTNAME mitzuteilen, wo sich die Daten befinden, wie sie organisiert sind, wie man diese Daten erhält und vieles mehr. Sobald die Datenbank registriert ist, können Sie aus Text- und Tabellendokumenten über den Menübefehl Ansicht – Datenquellen auf die Datensätze zugreifen." #. ADK4M #: data_register.xhp @@ -8537,7 +8537,7 @@ "par_idN1061E\n" "help.text" msgid "In %PRODUCTNAME you can create a new table using the Table Wizard:" -msgstr "" +msgstr "In %PRODUCTNAME können Sie mit dem Tabellenassistenten eine neue Tabelle erstellen:" #. aBysk #: data_tables.xhp @@ -8717,7 +8717,7 @@ "par_idN105D1\n" "help.text" msgid "The database file gives you full access to tables, queries, reports, and forms. You can edit the structure of your tables and change the contents of the data records." -msgstr "" +msgstr "Die Datenbankdatei gibt Ihnen vollen Zugriff auf Tabellen, Abfragen, Berichte und Formulare. Sie können die Struktur Ihrer Tabellen bearbeiten und die Inhalte der Datensätze ändern." #. drvbN #: data_view.xhp @@ -8834,7 +8834,7 @@ "par_idN106A4\n" "help.text" msgid "Menu bar of a database file" -msgstr "" +msgstr "Menüleiste einer Datenbankdatei" #. QGxEh #: database_main.xhp @@ -8933,7 +8933,7 @@ "par_idN1078F\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Tabellenassistent" #. x7kax #: database_main.xhp @@ -8951,7 +8951,7 @@ "tit\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Entwicklungswerkzeuge" #. EQHbW #: dev_tools.xhp @@ -8960,7 +8960,7 @@ "bm_id821562797360035\n" "help.text" msgid "development tools object inspector" -msgstr "" +msgstr "EntwicklungswerkzeugeObjektinspektor" #. SfpDF #: dev_tools.xhp @@ -8969,7 +8969,7 @@ "hd_id951627860296699\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Entwicklungswerkzeuge" #. p3pqz #: dev_tools.xhp @@ -8978,7 +8978,7 @@ "par_id3155069\n" "help.text" msgid "Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces. This feature also allows to explore the document structure using the Document Object Model (DOM)." -msgstr "" +msgstr "Inspiziert Objekte in %PRODUCTNAME-Dokumenten und zeigt unterstützte UNO-Dienste sowie verfügbare Methoden, Eigenschaften und implementierte Schnittstellen an. Diese Funktion ermöglicht es auch, die Dokumentstruktur mit dem DOM (Document Object Model) zu erkunden." #. st97j #: dev_tools.xhp @@ -8987,7 +8987,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Development Tools" -msgstr "" +msgstr "Wählen Sie Extras – Entwicklungswerkzeuge" #. G6m74 #: dev_tools.xhp @@ -8996,7 +8996,7 @@ "par_id241637079282587\n" "help.text" msgid "Icon Development Tools" -msgstr "" +msgstr "Symbol für Entwicklungswerkzeuge" #. Adauw #: dev_tools.xhp @@ -9005,7 +9005,7 @@ "par_id991637079282590\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Entwicklungswerkzeuge" #. EcEEb #: dev_tools.xhp @@ -9014,7 +9014,7 @@ "par_id271627931218557\n" "help.text" msgid "The Development Tools are visible in all documents of %PRODUCTNAME Writer, Calc, Impress and Draw. The display is persistent and remain visible until deselected." -msgstr "" +msgstr "Die Entwicklungswerkzeuge sind in allen Dokumenten von %PRODUCTNAME Writer, Calc, Impress und Draw sichtbar. Die Anzeige ist dauerhaft und bleibt sichtbar, bis die Auswahl aufgehoben wird." #. YrKDj #: dev_tools.xhp @@ -9023,7 +9023,7 @@ "par_id3152821\n" "help.text" msgid "When Development Tools is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:" -msgstr "" +msgstr "Wenn die Entwicklungswerkzeuge aktiviert sind, wird unten auf dem Bildschirm ein andockbares Fenster angezeigt. Dieses Fenster besteht aus zwei Bereichen:" #. BbGGE #: dev_tools.xhp @@ -9032,7 +9032,7 @@ "par_id31627862228021\n" "help.text" msgid "Document Object Model tree view: Displays document portions according to the Document Object Model (DOM). Use this section to chose the object to inspect." -msgstr "" +msgstr "DOM-Baumansicht: Zeigt Dokumentteile gemäß dem DOM (Document Object Model) an. Verwenden Sie diesen Abschnitt, um das zu prüfende Objekt auszuwählen." #. fJXDt #: dev_tools.xhp @@ -9041,7 +9041,7 @@ "par_id581627862228381\n" "help.text" msgid "Object inspection panel: Displays the available services, methods, properties and interfaces of the selected object." -msgstr "" +msgstr "Objektinspektionsbereich: Zeigt die verfügbaren Dienste, Methoden, Eigenschaften und Schnittstellen des ausgewählten Objekts an." #. fiPDo #: dev_tools.xhp @@ -9050,7 +9050,7 @@ "par_id91627862617231\n" "help.text" msgid "This feature is available since %PRODUCTNAME 7.2 for Writer, Calc, Impress and Draw." -msgstr "" +msgstr "Diese Funktion ist seit %PRODUCTNAME 7.2 für Writer, Calc, Impress und Draw verfügbar." #. 5J2jc #: dev_tools.xhp @@ -9059,7 +9059,7 @@ "hd_id791627911297568\n" "help.text" msgid "Document Model Tree View" -msgstr "" +msgstr "DOM-Baumansicht" #. WCR6k #: dev_tools.xhp @@ -9068,7 +9068,7 @@ "par_id3153303\n" "help.text" msgid "The left side of the window contains a Current Selection toggle button, a Refresh button and a tree view that displays all objects in the document." -msgstr "" +msgstr "Die linke Seite des Fensters enthält die Schaltflächen Aktuelle Auswahl und Aktualisieren sowie eine Baumansicht, die alle Objekte im Dokument anzeigt." #. DEPEn #: dev_tools.xhp @@ -9077,7 +9077,7 @@ "par_id891627912224207\n" "help.text" msgid "The behavior of the tree view depends on the status of the Current Selection toggle button:" -msgstr "" +msgstr "Das Verhalten der Baumansicht hängt vom Status der Umschaltfläche Aktuelle Auswahl ab:" #. CJUxG #: dev_tools.xhp @@ -9086,7 +9086,7 @@ "par_id811627912238786\n" "help.text" msgid "Click on Current Selection to display the properties of the object currently selected in the document. Hence, clicking any item in the tree view have no effect." -msgstr "" +msgstr "Klicken Sie auf Aktuelle Auswahl, um die Eigenschaften des aktuell im Dokument ausgewählten Objekts anzuzeigen. Dann hat das Klicken auf ein beliebiges Element in der Baumansicht keine Auswirkung." #. C3mpn #: dev_tools.xhp @@ -9095,7 +9095,7 @@ "par_id721627912239053\n" "help.text" msgid "Click on Current Selection again to display any item in the tree view and update the contents of the Object Inspection Panel." -msgstr "" +msgstr "Klicken Sie erneut auf Aktuelle Auswahl, um ein beliebiges Element in der Baumansicht auswählen zu können und den Inhalt im Objektinspektionbereich zu aktualisieren." #. PmkTZ #: dev_tools.xhp @@ -9104,7 +9104,7 @@ "par_id931627912467594\n" "help.text" msgid "The types of objects displayed by the Document Model Tree View depend on the %PRODUCTNAME application being used:" -msgstr "" +msgstr "Die Objekttypen, die in der DOM-Baumansicht angezeigt werden, hängen von der verwendeten %PRODUCTNAME-Anwendung ab:" #. AMFhp #: dev_tools.xhp @@ -9113,7 +9113,7 @@ "par_id691627912559559\n" "help.text" msgid "%PRODUCTNAME application" -msgstr "" +msgstr "%PRODUCTNAME-Anwendung" #. 44vcy #: dev_tools.xhp @@ -9122,7 +9122,7 @@ "par_id771627912559559\n" "help.text" msgid "Supported objects" -msgstr "" +msgstr "Unterstützte Objekte" #. meXjs #: dev_tools.xhp @@ -9131,7 +9131,7 @@ "par_id941627912559559\n" "help.text" msgid "Paragraphs
    Text Portions in a Paragraph
    Shapes
    Tables
    Frames
    Graphic Objects
    Embedded Objects (OLE)
    Style Families and Styles" -msgstr "" +msgstr "Absätze
    Textteile in einem Absatz
    Formen
    Tabellen
    Rahmen
    Grafikobjekte
    Eingebettete Objekte (OLE)
    Vorlagenfamilien und Formatvorlagen" #. SHryG #: dev_tools.xhp @@ -9140,7 +9140,7 @@ "par_id601627912702265\n" "help.text" msgid "Sheets
    Shapes per sheet
    Charts per sheet
    Pivot tables per sheet
    Style Families and Styles" -msgstr "" +msgstr "Tabellen
    Formen pro Tabelle
    Diagramme pro Tabelle
    Pivot-Tabellen pro Tabelle
    Vorlagenfamilien und Formatvorlagen" #. G7tq6 #: dev_tools.xhp @@ -9149,7 +9149,7 @@ "par_id561627912902324\n" "help.text" msgid "Slides
    Shapes per slide
    Master slides
    Style Families and Styles" -msgstr "" +msgstr "Folien
    Formen pro Folie
    Masterfolien
    Vorlagenfamilien und Formatvorlagen" #. QBNop #: dev_tools.xhp @@ -9158,7 +9158,7 @@ "par_id561627912902123\n" "help.text" msgid "Pages
    Shapes per page
    Style Families and Styles" -msgstr "" +msgstr "Folien
    Formen pro Folie
    Vorlagenfamilien und Formatvorlagen" #. SsmFY #: dev_tools.xhp @@ -9167,7 +9167,7 @@ "hd_id731627913346236\n" "help.text" msgid "Object Inspection Panel" -msgstr "" +msgstr "Objektinspektionsbereich" #. ULvie #: dev_tools.xhp @@ -9176,7 +9176,7 @@ "par_id571627913372273\n" "help.text" msgid "The right side of the window is the Object Inspection Panel that displays information about the object being inspected." -msgstr "" +msgstr "Auf der rechten Seite des Fensters befindet sich der Objektinspektionsbereich, der Informationen über das zu inspizierende Objekt anzeigt." #. KJDUA #: dev_tools.xhp @@ -9185,7 +9185,7 @@ "par_id361627930602108\n" "help.text" msgid "Class Name: is the name of the object class." -msgstr "" +msgstr "Klassenname: ist der Name der Objektklasse." #. TbDBD #: dev_tools.xhp @@ -9194,7 +9194,7 @@ "par_id111627931046662\n" "help.text" msgid "Use the class name to search more information in the API documentation. For example, the top-level object in a Writer document is an instance of the class SwXTextDocument, which is documented at SwXTextDocument Class Reference." -msgstr "" +msgstr "Verwenden Sie den Klassennamen, um weitere Informationen in der API-Dokumentation zu suchen. Beispielsweise ist das oberste Objekt in einem Writer-Dokument eine Instanz der Klasse SwXTextDocument, die unter SwXTextDocument Class Reference (Englisch) dokumentiert ist." #. 7g3wB #: dev_tools.xhp @@ -9203,7 +9203,7 @@ "par_id371627930700568\n" "help.text" msgid "You can inspect the object further by using the four tabs available that display its Interfaces, Services, Properties and Methods." -msgstr "" +msgstr "Sie können das Objekt weiter untersuchen, indem Sie die vier verfügbaren Register verwenden, die seine Schnittstellen, Dienste, Eigenschaften und Methoden anzeigen." #. hd4cE #: dev_tools.xhp @@ -9212,7 +9212,7 @@ "par_id71627913884995\n" "help.text" msgid "The information about the object is organized in columns in each tab. The set of columns displayed depend on the selected tab." -msgstr "" +msgstr "Die Informationen über das Objekt sind in jedem Register in Spalten organisiert. Welche Spalten angezeigt werden, hängt vom ausgewählten Register ab." #. RECVL #: dev_tools.xhp @@ -9221,7 +9221,7 @@ "hd_id511627914011995\n" "help.text" msgid "Interfaces tab" -msgstr "" +msgstr "Register Schnittstellen" #. FJcvE #: dev_tools.xhp @@ -9230,7 +9230,7 @@ "par_id321627914033147\n" "help.text" msgid "Contains a single column presenting the list of interfaces implemented by the object." -msgstr "" +msgstr "Enthält eine einzelne Spalte, welche die Liste der vom Objekt implementierten Schnittstellen darstellt." #. BF7qu #: dev_tools.xhp @@ -9239,7 +9239,7 @@ "hd_id21627913972266\n" "help.text" msgid "Services tab" -msgstr "" +msgstr "Register Dienste" #. HZPma #: dev_tools.xhp @@ -9248,7 +9248,7 @@ "par_id371627913989665\n" "help.text" msgid "Contains a single column presenting the list of services supported by the object." -msgstr "" +msgstr "Enthält eine einzelne Spalte mit der Liste der vom Objekt unterstützten Dienste." #. NGnte #: dev_tools.xhp @@ -9257,7 +9257,7 @@ "hd_id901627914056156\n" "help.text" msgid "Properties tab" -msgstr "" +msgstr "Register Eigenschaften" #. 9kX9a #: dev_tools.xhp @@ -9266,7 +9266,7 @@ "par_id531627914066770\n" "help.text" msgid "Contains four columns that describe the properties of the object:" -msgstr "" +msgstr "Enthält vier Spalten, welche die Eigenschaften des Objekts beschreiben:" #. eNhy9 #: dev_tools.xhp @@ -9275,7 +9275,7 @@ "par_id461627914264898\n" "help.text" msgid "Property: Shows the names of the object properties." -msgstr "" +msgstr "Name: Zeigt die Namen der Objekteigenschaften." #. hDfcB #: dev_tools.xhp @@ -9284,7 +9284,7 @@ "par_id491627914265327\n" "help.text" msgid "Value: Displays a textual representation of the current property value." -msgstr "" +msgstr "Wert: Zeigt eine Textdarstellung des aktuellen Eigenschaftswerts an." #. 7P4rv #: dev_tools.xhp @@ -9293,7 +9293,7 @@ "par_id981627914265672\n" "help.text" msgid "Type: Shows the property type." -msgstr "" +msgstr "Typ: Zeigt den Eigenschaftstyp an." #. VxeGP #: dev_tools.xhp @@ -9302,7 +9302,7 @@ "par_id391627914265992\n" "help.text" msgid "Info: display relevant information about the property. For example, a read-only property displays \"read-only\" in this column." -msgstr "" +msgstr "Info: Zeigt relevante Informationen über die Eigenschaft an. Beispielsweise zeigt eine schreibgeschützte Eigenschaft in dieser Spalte „schreibgeschützt“ an." #. L6iHf #: dev_tools.xhp @@ -9311,7 +9311,7 @@ "par_id161627914138859\n" "help.text" msgid "The Properties tab also includes a text box on the bottom to display the full textual representation of the property value." -msgstr "" +msgstr "Das Register Eigenschaften enthält unten auch ein Textfeld, um die vollständige Textdarstellung des Eigenschaftswerts anzuzeigen." #. ptFVa #: dev_tools.xhp @@ -9320,7 +9320,7 @@ "hd_id941627914764723\n" "help.text" msgid "Methods tab" -msgstr "" +msgstr "Register Methoden" #. XBugD #: dev_tools.xhp @@ -9329,7 +9329,7 @@ "par_id671627914803456\n" "help.text" msgid "Contains four columns that describe the combined list of methods that can be called by the current object:" -msgstr "" +msgstr "Enthält vier Spalten, welche die kombinierte Liste von Methoden beschreiben, die vom aktuellen Objekt aufgerufen werden können:" #. iFvEX #: dev_tools.xhp @@ -9338,7 +9338,7 @@ "par_id281627914839271\n" "help.text" msgid "Method: Shows the names of all methods of the object." -msgstr "" +msgstr "Methode: Zeigt die Namen aller Methoden des Objekts an." #. hFE8H #: dev_tools.xhp @@ -9347,7 +9347,7 @@ "par_id421627914839748\n" "help.text" msgid "Return type: Displays the return type of the object methods. Methods that do not return any value are marked as \"void\" in this column." -msgstr "" +msgstr "Rückgabetyp: Zeigt den Rückgabetyp der Objektmethoden an. Methoden, die keinen Wert zurückgeben, sind in dieser Spalte als \"void\" gekennzeichnet." #. NwGtg #: dev_tools.xhp @@ -9356,7 +9356,7 @@ "par_id891627914840174\n" "help.text" msgid "Parameters: Shows the list of parameters that are required by the method as well as their respective types." -msgstr "" +msgstr "Parameter: Zeigt die Liste der Parameter, die von der Methode benötigt werden, sowie ihre jeweiligen Typen." #. KDTST #: dev_tools.xhp @@ -9365,7 +9365,7 @@ "par_id371627914840561\n" "help.text" msgid "Implementation class: Displays the name of the class where the method is implemented." -msgstr "" +msgstr "Implementierungsklasse: Zeigt den Namen der Klasse an, in der die Methode implementiert ist." #. WNbRY #: digital_signatures.xhp @@ -21290,7 +21290,7 @@ "tit\n" "help.text" msgid "Copying Attributes With the Clone Formatting Tool" -msgstr "Attribute mit der Funktion Formatierungen übertragen kopieren" +msgstr "Attribute mit der Funktion Formatierung übertragen kopieren" #. 7Frig #: paintbrush.xhp @@ -21299,7 +21299,7 @@ "bm_id380260\n" "help.text" msgid "Format Paintbrush clone formatting formatting;copying copying;formatting Paintbrush" -msgstr "" +msgstr "Pinsel; formatierenFormatierung übertragenFormatierung; kopierenKopieren; FormatierungPinsel" #. 7BBrB #: paintbrush.xhp @@ -21308,7 +21308,7 @@ "par_idN1053A\n" "help.text" msgid "Copying Formatting With the Clone Formatting Tool" -msgstr "Formatierungen mit der Funktion \"Formatierungen übertragen\" kopieren" +msgstr "Formatierungen mit der Funktion \"Formatierung übertragen\" kopieren" #. KdqKE #: paintbrush.xhp @@ -21317,7 +21317,7 @@ "par_idN10655\n" "help.text" msgid "Use the Clone Formatting tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object." -msgstr "" +msgstr "Mit dem Werkzeug Formatierung übertragen können Sie die Formatierung einer Textauswahl oder eines Objekts kopieren und auf eine andere Textauswahl oder ein anderes Objekt anwenden." #. F7Fcd #: paintbrush.xhp @@ -21335,7 +21335,7 @@ "par_idN10667\n" "help.text" msgid "On the Standard Bar, click the Clone Formatting icon. The mouse cursor will change to a paint bucket." -msgstr "" +msgstr "Klicken Sie in der Symbolleiste Standard auf das Symbol Formatierung übertragen. Der Mauszeiger verwandelt sich in einen Farbeimer." #. AZjCv #: paintbrush.xhp @@ -21353,7 +21353,7 @@ "par_id291629997756899\n" "help.text" msgid "If you want to apply the formatting to more than one selection, double-click the Clone Formatting icon Icon. After you apply all the formatting, click the icon again." -msgstr "" +msgstr "Wenn Sie die Formatierung auf mehr als eine Auswahl anwenden möchten, doppelklicken Sie auf das Symbol Formatierung übertragen Symbol für Formatierung übertragen. Nachdem Sie alle Formatierungen angewendet haben, klicken Sie erneut auf das Symbol." #. 9ivCF #: paintbrush.xhp @@ -21371,7 +21371,7 @@ "par_id1001629997571404\n" "help.text" msgid "In Calc, the Clone Formatting tool only copies formatting applied using the Format - Cells dialog or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the Format - Character dialog will not be copied using the Clone Formatting tool." -msgstr "" +msgstr "In Calc kopiert das Werkzeug \"Formatierung übertragen\" nur Formatierungen, die über den Dialog Format – Zellen… oder andere gleichwertige Methoden angewendet wurden. Daher werden Formatierungen, die direkt auf Zeichen angewendet werden, indem Sie Text in einer Zelle markieren und dann den Dialog Format – Zeichen… aufrufen, nicht mit dem Werkzeug \"Formatierung übertragen\" kopiert." #. pjGa2 #: paintbrush.xhp @@ -21569,7 +21569,7 @@ "par_idN1070C\n" "help.text" msgid "Copies cell formatting specified using the Format - Cells dialog." -msgstr "" +msgstr "Kopiert die im Dialog Format – Zellen… festgelegte Zellformatierung." #. LFKkc #: pasting.xhp @@ -24674,7 +24674,7 @@ "par_id3147618\n" "help.text" msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology." -msgstr "Für den normalen Gebrauch sind Befehlszeilenparameter nicht erforderlich. Einige dieser Parameter setzen ein gewisses Maß an Kenntnis über die technischen Hintergründe der $[officename] Software voraus." +msgstr "Für den normalen Gebrauch sind Befehlszeilenparameter nicht erforderlich. Einige dieser Parameter setzen ein gewisses Maß an Kenntnis über die technischen Hintergründe der $[officename]-Software voraus." #. rgL4d #: start_parameters.xhp @@ -24863,7 +24863,7 @@ "par_id20161204091221764\n" "help.text" msgid "Opens $[officename] built-in or online Help on Writer." -msgstr "Öffnet die $[officename] Hilfe für Writer." +msgstr "Öffnet die $[officename]-Hilfe für Writer." #. VcKDf #: start_parameters.xhp @@ -24872,7 +24872,7 @@ "par_id20161204091520522\n" "help.text" msgid "Opens $[officename] built-in or online Help on Calc." -msgstr "Öffnet die $[officename] Hilfe für Calc." +msgstr "Öffnet die $[officename]-Hilfe für Calc." #. CsWp2 #: start_parameters.xhp @@ -24881,7 +24881,7 @@ "par_id20161204091727059\n" "help.text" msgid "Opens $[officename] built-in or online Help on Draw." -msgstr "Öffnet die $[officename] Hilfe für Draw." +msgstr "Öffnet die $[officename]-Hilfe für Draw." #. yCDB2 #: start_parameters.xhp @@ -24890,7 +24890,7 @@ "par_id20161204091812159\n" "help.text" msgid "Opens $[officename] built-in or online Help on Impress." -msgstr "Öffnet die $[officename] Hilfe für Impress." +msgstr "Öffnet die $[officename]-Hilfe für Impress." #. Eaw8A #: start_parameters.xhp @@ -24899,7 +24899,7 @@ "par_id20161204091919599\n" "help.text" msgid "Opens $[officename] built-in or online Help on Base." -msgstr "Öffnet die $[officename] Hilfe für Base." +msgstr "Öffnet die $[officename]-Hilfe für Base." #. wNnP4 #: start_parameters.xhp @@ -24908,7 +24908,7 @@ "par_id20161204092029619\n" "help.text" msgid "Opens $[officename] built-in or online Help on Basic scripting language." -msgstr "Öffnet die $[officename] Hilfe für die Schriftsprache Basic." +msgstr "Öffnet die $[officename]-Hilfe für die Skriptsprache Basic." #. nsy2M #: start_parameters.xhp @@ -24917,7 +24917,7 @@ "par_id2016120409214276\n" "help.text" msgid "Opens $[officename] built-in or online Help on Math." -msgstr "Öffnet die $[officename] Hilfe für Math." +msgstr "Öffnet die $[officename]-Hilfe für Math." #. qdGmE #: start_parameters.xhp @@ -24926,7 +24926,7 @@ "par_id31473et\n" "help.text" msgid "Shows $[officename] version and quits." -msgstr "Zeigt die $[officename] Version an." +msgstr "Zeigt die $[officename]-Version an." #. Eu4VH #: start_parameters.xhp @@ -25115,7 +25115,7 @@ "par_id3147130\n" "help.text" msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used." -msgstr "Teilt der $[officename] Software mit, dass bei der Erstellung von \"UNO Acceptor Threads\" ein \"UNO Accept String\" verwendet wird." +msgstr "Teilt der $[officename]-Software mit, dass bei der Erstellung von \"UNO Acceptor Threads\" ein \"UNO Accept String\" verwendet wird." #. Ft66F #: start_parameters.xhp @@ -27257,7 +27257,7 @@ "par_idN1064A\n" "help.text" msgid "Removing all Direct Formatting in a $[officename] Calc Spreadsheet" -msgstr "Gesamte direkte Formatierung in $[officename] Calc Tabellendokumenten entfernen" +msgstr "Gesamte direkte Formatierung in $[officename] Calc-Tabellendokumenten entfernen" #. FjCB9 #: undo_formatting.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-01-20 08:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411576.000000\n" #. PzSYs @@ -572,7 +572,7 @@ "par_id3154942\n" "help.text" msgid "Type your email address. For example, my.name@my.provider.com" -msgstr "Tragen Sie ihre E-Mail-Adresse ein. Beispielsweise: mein.name@mein.provider.de" +msgstr "Tragen Sie Ihre E-Mail-Adresse ein. Beispielsweise: mein.name@mein.provider.de" #. DA4Z7 #: 01010100.xhp @@ -5999,7 +5999,7 @@ "bm_id411624631841785\n" "help.text" msgid "outline folding buttons;settings" -msgstr "" +msgstr "Schaltflächen für Gliederungsfaltung; Einstellungen" #. AyGcm #: 01040200.xhp @@ -6008,7 +6008,7 @@ "hd_id751624630367767\n" "help.text" msgid "Outline folding" -msgstr "" +msgstr "Gliederungsfaltung" #. ZLHPa #: 01040200.xhp @@ -6017,7 +6017,7 @@ "hd_id671624630372163\n" "help.text" msgid "Show outline-folding buttons" -msgstr "" +msgstr "Schaltflächen zur Gliederungsfaltung anzeigen" #. tbuLW #: 01040200.xhp @@ -6026,7 +6026,7 @@ "par_id261624630524895\n" "help.text" msgid "Displays outline folding buttons on the left of the outline headings." -msgstr "" +msgstr "Zeigt die Schaltflächen für die Gliederungsfaltung links neben den Gliederungsüberschriften an." #. G6sDV #: 01040200.xhp @@ -6035,7 +6035,7 @@ "hd_id211624630375989\n" "help.text" msgid "Include sub levels" -msgstr "" +msgstr "Unterebenen einschließen" #. GyAV9 #: 01040200.xhp @@ -6044,7 +6044,7 @@ "par_id231624630529145\n" "help.text" msgid "Also displays the folding buttons of the outline sub levels." -msgstr "" +msgstr "Zeigt auch die Schaltflächen für die Unterebenen der Gliederung an." #. jH6p8 #: 01040200.xhp @@ -7097,7 +7097,7 @@ "par_id3155450\n" "help.text" msgid "In $[officename] text and HTML documents, defines the display for certain characters and for the direct cursor." -msgstr "Hier bestimmen Sie die Anzeigeoptionen für spezielle Zeichen und die Eigenschaften des Direkt-Cursors in $[officename] Text- und HTML-Dokumenten." +msgstr "Hier bestimmen Sie die Anzeigeoptionen für spezielle Zeichen und die Eigenschaften des Direkt-Cursors in $[officename]-Text- und HTML-Dokumenten." #. RDE3b #: 01040600.xhp @@ -9833,7 +9833,7 @@ "bm_id3151110\n" "help.text" msgid "metrics;in sheets tab stops; setting in sheets cells; cursor positions after input (Calc) edit mode; through Enter key (Calc) formatting; expanding (Calc) expanding formatting (Calc) references; expanding (Calc) column headers; highlighting (Calc) row headers; highlighting (Calc)" -msgstr "" +msgstr "Metriken; in TabellenTabulatoren; Einstellungen in TabellenZellen; Cursor-Position nach Eingabe (Calc)Bearbeitungsmodus; durch Eingabetaste (Calc)Formatierung; erweitern (Calc)Erweitern der Formatierung (Calc)Referenzen; erweitern (Calc)Spaltenköpfe; Hervorhebung (Calc)Zeilenköpfe; Hervorhebung (Calc)" #. ViFyA #: 01060300.xhp @@ -9941,7 +9941,7 @@ "par_id3148943\n" "help.text" msgid "Determines the behavior of the Enter key in a spreadsheet. Checking this option causes Enter to open cell contents for editing." -msgstr "" +msgstr "Bestimmt das Verhalten der Eingabetaste in einer Tabelle. Wenn Sie diese Option aktivieren, öffnet die Eingabetaste den Zellinhalt zur Bearbeitung." #. NMaGC #: 01060300.xhp @@ -9950,7 +9950,7 @@ "par_id291629751925288\n" "help.text" msgid "Uncheck this option to make the Enter key select the cell below the current cell." -msgstr "" +msgstr "Deaktivieren Sie diese Option, damit durch die Eingabetaste die Zelle unter der aktuellen Zelle auswählt wird." #. msttp #: 01060300.xhp @@ -9959,7 +9959,7 @@ "par_id391629752077203\n" "help.text" msgid "If a range of cells is selected, each time Enter is pressed will select the next cell inside the range. Hence, enabling this option is useful when entering values into a range of cells sequentially." -msgstr "" +msgstr "Wenn ein Zellbereich ausgewählt ist, wird bei jedem Drücken der Eingabetaste die nächste Zelle innerhalb des Bereichs ausgewählt. Daher ist das Aktivieren dieser Option nützlich, wenn Sie Werte nacheinander in einen Zellbereich eingeben möchten." #. zqG2F #: 01060300.xhp @@ -11939,7 +11939,7 @@ "par_id3153877\n" "help.text" 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 "Wenn eine Bézierkurve ausgewählt ist, werden die Steuerpunkte aller Bézierpunkte angezeigt. Ist die Option Alle Steuerpunkte im Bézier-Editor nicht aktiviert, sind nur die Steuerpunkte der ausgewählten Bézierpunkte sichtbar." #. aDatu #: 01070100.xhp @@ -12263,7 +12263,7 @@ "bm_id3155450\n" "help.text" msgid "printing; drawings defaults drawings; printing defaults pages;printing page names in presentations printing; dates in presentations dates; printing in presentations times; inserting when printing presentations printing; hidden pages of presentations hidden pages; printing in presentations printing; without scaling in presentations scaling; when printing presentations printing; fitting to pages in presentations fitting to pages; print settings in presentations printing; tiling pages in presentations" -msgstr "" +msgstr "Drucken; Voreinstellungen für ZeichnungenZeichnungen; Voreinstellungen fürs DruckenSeiten; Seitennamen in Präsentationen druckenDrucken; Datum in PräsentationenDatum; Präsentationen druckenUhrzeit; Präsentationen druckenDrucken; Ausgeblendete Folien in PräsentationenAusgeblendete Folien; Präsentationen druckenDrucken; ohne Skalierung in PräsentationenSkalierung; Präsentationen druckenDrucken; an Seitengröße anpassen in PräsentationenAn Seitengröße anpassen; Druckeinstellungen in PräsentationenDrucken; Folien kacheln in Präsentationen" #. iFJBG #: 01070400.xhp @@ -12389,7 +12389,7 @@ "par_id3147229\n" "help.text" msgid "See also Printing in Black and White." -msgstr "" +msgstr "Siehe auch Drucken in schwarz-weiß." #. KK8qW #: 01070400.xhp @@ -12911,7 +12911,7 @@ "par_id3153965\n" "help.text" msgid "Determines the drawing scale on the status bar. Right-click on the scale factor in the status bar to open a list of possible values." -msgstr "" +msgstr "Bestimmt den Zeichnungsmaßstab in der Statusleiste. Klicken Sie mit der rechten Maustaste auf den Maßstab in der Statusleiste, um eine Liste mit möglichen Werten zu öffnen." #. CVDi7 #: 01070500.xhp @@ -15467,7 +15467,7 @@ "bm_id3146799\n" "help.text" msgid "string;conversion to number settings string conversion to number options string;conversion to date settings string conversion to date options string;conversion to reference settings string conversion to reference options string;setting in spreadsheet formulas cell reference syntax in strings;Excel R1C1 cell reference syntax in strings;Excel A1 cell reference syntax in strings;Calc A1 Excel R1C1;cell reference syntax in strings Excel A1;cell reference syntax in strings Calc A1;cell reference syntax in strings" -msgstr "" +msgstr "Zeichenfolgen; Konvertierung in ZahlenOptionen; Zeichenfolgen-Konvertierung in ZahlenZeichenfolgen; Konvertierung in DatumOptionen; Zeichenfolgen-Konvertierung in DatumZeichenfolgen; Konvertierung in BezügenOptionen; Zeichenfolgen-Konvertierung in BezügenZeichenfolgen; Einstellungen in Tabellen-FormelnZellbezugs-Syntax in Zeichenfolgen; Excel R1C1 Zellbezugs-Syntax in Zeichenfolgen; Excel A1Zellbezugs-Syntax in Zeichenfolgen; Calc A1Excel R1C1; Zellbezugs-Syntax in ZeichenfolgenExcel A1; Zellbezugs-Syntax in ZeichenfolgenCalc A1; Zellbezugs-Syntax in Zeichenfolgen" #. jZZNb #: detailedcalculation.xhp @@ -15548,7 +15548,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 Converting Text to Numbers for details." -msgstr "" +msgstr "Nur eindeutige umwandeln: Wenn der Text einen gültigen und eindeutigen numerischen Wert darstellt, wird dieser konvertiert. Beispielsweise generiert \"123.456\" einen Fehler #WERT!, weil der Text ein Trennzeichen enthält, während \"123456\" keinen Fehler generiert.
    Siehe für Details Umwandeln von Text zu Zahlen." #. Eo47W #: detailedcalculation.xhp @@ -15998,7 +15998,7 @@ "par_id181614855578590\n" "help.text" msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available in the wiki." -msgstr "Die aktuelle Liste der %PRODUCTNAME-Module und -Resourcen, die von Java abhängig sind, ist im Wiki abrufbar." +msgstr "Die aktuelle Liste der %PRODUCTNAME-Module und -Ressourcen, die von Java abhängig sind, ist im Wiki abrufbar." #. J8Yfv #: java.xhp @@ -16835,7 +16835,7 @@ "par_idN1057F\n" "help.text" msgid "Enter the user information to use when you send email." -msgstr "Geben Sie ihre Benutzerinformationen ein, die beim Senden von E-Mails verwendet werden sollen." +msgstr "Geben Sie Ihre Benutzerinformationen ein, die beim Senden von E-Mails verwendet werden sollen." #. CZo2m #: mailmerge.xhp @@ -16871,7 +16871,7 @@ "par_idN105A9\n" "help.text" msgid "Enter your email address for replies." -msgstr "Geben Sie ihre E-Mail-Adresse ein, die für E-Mail-Antworten verwendet werden soll." +msgstr "Geben Sie Ihre E-Mail-Adresse ein, die für E-Mail-Antworten verwendet werden soll." #. EpoB6 #: mailmerge.xhp @@ -17312,7 +17312,7 @@ "tit\n" "help.text" msgid "Search Commands" -msgstr "" +msgstr "Befehle suchen" #. LBGY4 #: search_commands.xhp @@ -17321,7 +17321,7 @@ "bm_id8215627973621527\n" "help.text" msgid "search commands head-up display (hud)" -msgstr "" +msgstr "Befehle suchenHead-up display (HUD)" #. n8hsF #: search_commands.xhp @@ -17330,7 +17330,7 @@ "hd_id951627860296699\n" "help.text" msgid "Search Commands" -msgstr "" +msgstr "Befehle suchen" #. fVXLC #: search_commands.xhp @@ -17339,7 +17339,7 @@ "par_id3155069\n" "help.text" msgid "Allows to search and execute all commands available in application menus by their names." -msgstr "" +msgstr "Ermöglicht das Suchen und Ausführen aller Befehle, anhand ihrer Namen, die in Anwendungsmenüs verfügbar sind." #. rgr85 #: search_commands.xhp @@ -17348,7 +17348,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Help - Search Commands" -msgstr "" +msgstr "Wählen Sie Hilfe – Befehle suchen" #. 2jAJE #: search_commands.xhp @@ -17357,7 +17357,7 @@ "par_id961562795754587\n" "help.text" msgid "Use the shortcut Shift + Esc" -msgstr "" +msgstr "Drücken Sie Umschalt+Esc" #. 9gqGJ #: search_commands.xhp @@ -17366,7 +17366,7 @@ "par_id631628621951493\n" "help.text" msgid "When the Search Commands feature is activated, a head-up display (HUD) is shown and can be used to quickly search commands by their names. As the search string is typed, all matching commands are shown in a list below the search field." -msgstr "" +msgstr "Wenn die Funktion Befehle suchen aktiv ist, wird ein Head-up display (HUD) angezeigt und es kann verwendet werden, um Befehle schnell nach ihren Namen zu suchen. Wenn die Such-Zeichenfolge eingegeben wird, werden alle übereinstimmenden Befehle in einer Liste unter dem Suchfeld angezeigt." #. LBa6c #: search_commands.xhp @@ -17375,7 +17375,7 @@ "par_id991628622249416\n" "help.text" msgid "To execute a command:" -msgstr "" +msgstr "Um einen Befehl auszuführen:" #. CJ4EC #: search_commands.xhp @@ -17384,7 +17384,7 @@ "par_id521628622272041\n" "help.text" msgid "Use the mouse to click on one of the items shown in the list. This will immediately run the selected command." -msgstr "" +msgstr "Klicken Sie mit der Maus auf eines der in der Liste angezeigten Elemente. Dadurch wird der ausgewählte Befehl sofort ausgeführt." #. uEWNu #: search_commands.xhp @@ -17393,7 +17393,7 @@ "par_id551628622272467\n" "help.text" msgid "Use the arrow keys in the keyboard to navigate through the items shown in the list and press Enter to run the desired command." -msgstr "" +msgstr "Verwenden Sie die Pfeiltasten der Tastatur, um durch die in der Liste angezeigten Elemente zu navigieren, und drücken Sie Eingabe, um den gewünschten Befehl auszuführen." #. XFXXZ #: search_commands.xhp @@ -17402,7 +17402,7 @@ "par_id41628622450782\n" "help.text" msgid "This feature is available in Writer, Calc, Impress and Draw." -msgstr "" +msgstr "Diese Funktion ist in Writer, Calc, Impress und Draw verfügbar." #. uqPJR #: securityoptionsdialog.xhp @@ -17420,7 +17420,7 @@ "bm_id2322154\n" "help.text" msgid "selecting;security warnings selecting;security options options;security warnings;security" -msgstr "" +msgstr "Auswählen; SicherheitswarnungenAuswählen; SicherheitsoptionenOptionen; SicherheitWarnungen; Sicherheit" #. EsBEH #: securityoptionsdialog.xhp @@ -17546,7 +17546,7 @@ "par_idN10667\n" "help.text" msgid "Select to always remove user data from file properties, comments and tracked changes. The names of authors in comments and changes will be replaced by generic values as \"Author1\", \"Author2\" and so forth. Time values will also be reset to a single standard value. 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 "Wählen Sie diese Option, um Benutzerdaten immer aus Dateieigenschaften, Kommentaren und aufgezeichneten Änderungen zu entfernen. Die Namen der Autoren in Kommentaren und Änderungen werden durch allgemeine Werte wie \"Autor1\", \"Autor2\" … ersetzt. Zeitwerte werden auch auf einen einzelnen Standardwert zurückgesetzt. Wenn diese Option nicht ausgewählt ist, können Sie die persönlichen Informationen für das aktuelle Dokument weiterhin über die Schaltfläche Eigenschaften zurücksetzen unter Datei – Eigenschaften… – Register: Allgemein entfernen." #. HJEQF #: securityoptionsdialog.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/shared.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-11 10:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547273355.000000\n" #. DBz3U @@ -239,7 +239,7 @@ "hd_id3147399\n" "help.text" msgid "$[officename] Help" -msgstr "$[officename] Hilfe" +msgstr "$[officename]-Hilfe" #. Bm7BG #: main0108.xhp @@ -248,7 +248,7 @@ "par_id3147576\n" "help.text" msgid "Opens the main page of the $[officename] Help for the current application. You can scroll through the Help pages and you can search for index terms or any text." -msgstr "Öffnet die Hauptseite der $[officename] Hilfe für die aktuelle Anwendung. Sie können die Hilfeseiten durchblättern oder nach Indexeinträgen beziehungsweise nach beliebigem Text suchen." +msgstr "Öffnet die Hauptseite der $[officename]-Hilfe für die aktuelle Anwendung. Sie können die Hilfeseiten durchblättern oder nach Indexeinträgen beziehungsweise nach beliebigem Text suchen." #. SPpw7 #: main0108.xhp @@ -2318,7 +2318,7 @@ "hd_id172462591626807\n" "help.text" msgid "UPPERCASE" -msgstr "GROSSBUCHSTABEN" +msgstr "GROẞBUCHSTABEN" #. sjNg6 #: submenu_text.xhp @@ -2363,7 +2363,7 @@ "par_id3152372\n" "help.text" msgid "Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase." -msgstr "Wechselt die Groß- und Kleinschreibung der ausgewählten Zeichen zwischen \"Jedes Wort Groß\", \"Satzanfang groß\", \"GROSSBUCHSTABEN\" und \"kleinbuchstaben\"." +msgstr "Wechselt die Groß- und Kleinschreibung der ausgewählten Zeichen zwischen \"Jedes Wort Groß\", \"Satzanfang groß\", \"GROẞBUCHSTABEN\" und \"kleinbuchstaben\"." #. v24QT #: submenu_text.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-03-11 13:07+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565593584.000000\n" #. mu9aV @@ -464,7 +464,7 @@ "par_id3154015\n" "help.text" msgid "You can dock the Navigator to the edge of your workspace." -msgstr "" +msgstr "Sie können den Navigator an den Rand Ihres Arbeitsbereichs andocken." #. C3o34 #: 02110000.xhp @@ -662,7 +662,7 @@ "hd_id3149979\n" "help.text" msgid "Drag Mode" -msgstr "Dragmodus" +msgstr "Ziehmodus" #. yNjjZ #: 02110000.xhp @@ -761,7 +761,7 @@ "par_id3153747\n" "help.text" msgid "Inserts slides as a link into the active slide." -msgstr "" +msgstr "Fügt eine Folie als Verknüpfung in die aktive Folie ein." #. 3RHDp #: 02110000.xhp @@ -797,7 +797,7 @@ "par_id9635914\n" "help.text" 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 "In dem Untermenü können Sie zwischen der Anzeige einer Liste aller Formen oder nur der benannten Formen entscheiden. Verwenden Sie die Funktion Ziehen-und-Loslassen in der Liste, um die Formen neu anzuordnen. Wenn Sie den Fokus auf eine Folie setzen und die Tabulatortaste drücken, wird die nächste Form in der definierten Reihenfolge ausgewählt." +msgstr "Im Untermenü können Sie zwischen der Anzeige einer Liste aller Formen oder nur der benannten Formen entscheiden. Verwenden Sie die Funktion Ziehen-und-Ablegen in der Liste, um die Formen neu anzuordnen. Wenn Sie den Fokus auf eine Folie setzen und die Tabulatortaste drücken, wird die nächste Form in der definierten Reihenfolge ausgewählt." #. zCb2c #: 02110000.xhp @@ -833,7 +833,7 @@ "par_id3150631\n" "help.text" msgid "Lists available $[officename] files. Select a file to display the contents you can insert." -msgstr "Zeigt die verfügbaren $[officename] Dokumente. Wählen Sie eine Datei, um die Inhalte anzuzeigen, die Sie dann einfügen können." +msgstr "Zeigt die verfügbaren $[officename]-Dokumente. Wählen Sie eine Datei, um die Inhalte anzuzeigen, die Sie dann einfügen können." #. YLmGD #: 02120000.xhp @@ -3497,7 +3497,7 @@ "par_id3153876\n" "help.text" msgid "Inserts the first and last names listed in the $[officename] user data into the active slide." -msgstr "Fügt Vornamen und Nachnamen aus den $[officename] Benutzerdaten als Feldbefehl in die aktuelle Folie ein." +msgstr "Fügt Vornamen und Nachnamen aus den $[officename]-Benutzerdaten als Feldbefehl in die aktuelle Folie ein." #. 4hcD7 #: 04990600.xhp @@ -3902,7 +3902,7 @@ "hd_id3164253\n" "help.text" msgid "Master Page" -msgstr "" +msgstr "Masterfolie" #. Pz8J7 #: 05120000.xhp @@ -3911,7 +3911,7 @@ "par_id3108485\n" "help.text" msgid "Displays the Available Master Slides dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page." -msgstr "" +msgstr "Zeigt den Dialog Verfügbare Masterfolien an, in dem Sie eine Folienvorlage für die aktuelle Folie auswählen können. Alle Objekte im Foliendesign werden hinter Objekten in der aktuellen Folie eingefügt." #. Jg7LJ #: 05120000.xhp @@ -4001,7 +4001,7 @@ "par_id3956020\n" "help.text" msgid "Displays the Load Master Page dialog, where you can select additional page designs." -msgstr "" +msgstr "Zeigt den Dialog Masterfolie laden an, in dem Sie weitere Folienvorlagen auswählen können." #. LZr7A #: 05120000.xhp @@ -4010,7 +4010,7 @@ "par_id3156020\n" "help.text" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "" +msgstr "Zeigt den Dialog Masterfolie laden an, in dem Sie weitere Folienvorlagen auswählen können." #. BLSEy #: 05120500m.xhp @@ -4568,7 +4568,7 @@ "hd_id291634825392062\n" "help.text" msgid "Line spacing" -msgstr "" +msgstr "Linienabstand" #. t5Pe9 #: 05170000.xhp @@ -4658,7 +4658,7 @@ "hd_id3147369\n" "help.text" msgid "Reset line skew" -msgstr "Linienverlauf zurücksetzen" +msgstr "Linienversatz zurücksetzen" #. Y3yHa #: 05170000.xhp @@ -4667,7 +4667,7 @@ "par_id3159205\n" "help.text" msgid "Resets the line skew values to the default. (This command is only accessible through the context menu)." -msgstr "" +msgstr "Setzt den Linienversatz auf die Standardwerte zurück. (Dieser Befehl ist nur über das Kontextmenü erreichbar)." #. JLBKm #: 05250000.xhp @@ -6359,7 +6359,7 @@ "par_id3156318\n" "help.text" msgid "If you did not install audio files with $[officename], you can run the $[officename] Setup program again and select Modify." -msgstr "Falls Sie mit $[officename] keine Audio-Dateien installiert haben, können Sie die $[officename] Installation erneut ausführen und Ändern wählen." +msgstr "Falls Sie mit $[officename] keine Audio-Dateien installiert haben, können Sie die $[officename]-Installation erneut ausführen und Ändern wählen." #. 8239E #: 06070000.xhp @@ -6971,7 +6971,7 @@ "hd_id3154659\n" "help.text" msgid "Custom Slide Shows" -msgstr "" +msgstr "Individuelle Präsentationen" #. EB558 #: 06100000.xhp @@ -6980,7 +6980,7 @@ "par_id3149207\n" "help.text" msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want. " -msgstr "" +msgstr "Legt eine individuelle Präsentation auf Grundlage von Folien der aktuellen Präsentation fest. Sie können dann Folien auswählen, die den Bedürfnissen Ihres Publikums entsprechen. Sie können beliebig viele individuelle Präsentationen erstellen." #. YgWfS #: 06100000.xhp @@ -6989,7 +6989,7 @@ "par_id641634164174393\n" "help.text" msgid "Read the help page Creating a Custom Slide Show to learn more about how to set up your own custom slide shows." -msgstr "" +msgstr "Lesen Sie die Hilfeseite Erstellen einer benutzerdefinierten Präsentation, um mehr darüber zu erfahren, wie Sie Ihre eigenen benutzerdefinierten Präsentationen einrichten." #. JyjJt #: 06100000.xhp @@ -6998,7 +6998,7 @@ "hd_id3155530\n" "help.text" msgid "List of custom slide shows" -msgstr "" +msgstr "Liste der individuellen Präsentationen" #. 9WeMN #: 06100000.xhp @@ -7007,7 +7007,7 @@ "par_id3156449\n" "help.text" msgid "Lists the custom slide shows that are available in the document." -msgstr "" +msgstr "Listet die individuellen Präsentationen auf, die im Dokument verfügbar sind." #. T3UBF #: 06100000.xhp @@ -7034,7 +7034,7 @@ "par_id3153250\n" "help.text" msgid "Select a custom slide show from the list." -msgstr "" +msgstr "Wählen Sie eine individuelle Präsentation aus der Liste aus." #. yFmBx #: 06100000.xhp @@ -7106,7 +7106,7 @@ "par_id3157907\n" "help.text" msgid "Runs the selected custom slide show." -msgstr "" +msgstr "Startet die ausgewählte individuelle Präsentation." #. u5kLV #: 06100100.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-01-06 07:38+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1557892821.000000\n" #. AiACn @@ -761,7 +761,7 @@ "par_id3149018\n" "help.text" msgid "Choose View - Toolbars - Transformations." -msgstr "" +msgstr "Wählen Sie Ansicht – Symbolleisten – Anpassen…" #. iDvMV #: 10030000.xhp @@ -770,7 +770,7 @@ "par_id401626114053741\n" "help.text" msgid "Click the arrow next to the Transformations icon on the Standard bar." -msgstr "" +msgstr "Klicken Sie auf den Pfeil neben dem Symbol Übergänge in der Symbolleiste Standard." #. QAxua #: 10030000.xhp @@ -833,7 +833,7 @@ "par_id3146962\n" "help.text" msgid "Icon Rotate" -msgstr "" +msgstr "Symbol für Drehen" #. WCPSb #: 10030000.xhp @@ -914,7 +914,7 @@ "par_id3150928\n" "help.text" msgid "Icon In 3D rotation object" -msgstr "" +msgstr "Symbol für In 3D-Rotationskörper" #. vCf5c #: 10030000.xhp @@ -950,7 +950,7 @@ "par_id3147167\n" "help.text" msgid "Icon Set in circle" -msgstr "" +msgstr "Symbol für Setzen auf Kreis (perspektivisch)" #. jQBPp #: 10030000.xhp @@ -986,7 +986,7 @@ "par_id3150875\n" "help.text" msgid "Icon Set to circle" -msgstr "" +msgstr "Symbol für Setzen auf Kreis (schräg stellen)" #. CHQyt #: 10030000.xhp @@ -1022,7 +1022,7 @@ "par_id3154693\n" "help.text" msgid "Icon Distort" -msgstr "" +msgstr "Symbol für Verzerren" #. 5Fh3F #: 10030000.xhp @@ -1076,7 +1076,7 @@ "par_id3154602\n" "help.text" msgid "Icon Transparency" -msgstr "" +msgstr "Symbol für Transparenz" #. xZb79 #: 10030000.xhp @@ -1121,7 +1121,7 @@ "par_id3150990\n" "help.text" msgid "Icon Gradient" -msgstr "" +msgstr "Symbol für Farbverlauf" #. nVb58 #: 10030000.xhp @@ -1148,7 +1148,7 @@ "bm_id3149948\n" "help.text" msgid "object bars; editing gluepoints" -msgstr "" +msgstr "Symbolleisten für Objekte; Klebepunkte bearbeiten" #. GWD99 #: 10030200.xhp @@ -1157,7 +1157,7 @@ "hd_id3149948\n" "help.text" msgid "Gluepoints Bar" -msgstr "" +msgstr "Symbolleiste Klebepunkte" #. CjR3U #: 10030200.xhp @@ -1175,7 +1175,7 @@ "hd_id3149876\n" "help.text" msgid "Insert Gluepoint" -msgstr "" +msgstr "Klebepunkt einfügen" #. ddyBH #: 10030200.xhp @@ -1355,7 +1355,7 @@ "hd_id3150875\n" "help.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Relativer Klebepunkt" #. eaDid #: 10030200.xhp @@ -1382,7 +1382,7 @@ "par_id3149286\n" "help.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Relativer Klebepunkt" #. SpABR #: 10030200.xhp @@ -1391,7 +1391,7 @@ "hd_id3149755\n" "help.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Klebepunkt horizontal links" #. 3QrV9 #: 10030200.xhp @@ -1418,7 +1418,7 @@ "par_id3158405\n" "help.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Klebepunkt horizontal links" #. Wwiiy #: 10030200.xhp @@ -1427,7 +1427,7 @@ "hd_id3154214\n" "help.text" msgid "Gluepoint Horizontal Center" -msgstr "" +msgstr "Klebepunkt horizontal zentriert" #. sFGAs #: 10030200.xhp @@ -1454,7 +1454,7 @@ "par_id3150706\n" "help.text" msgid "Gluepoint Horizontal Center" -msgstr "" +msgstr "Klebepunkt horizontal zentriert" #. pGdhP #: 10030200.xhp @@ -1463,7 +1463,7 @@ "hd_id3153748\n" "help.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Klebepunkt horizontal rechts" #. j57kW #: 10030200.xhp @@ -1490,7 +1490,7 @@ "par_id3154799\n" "help.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Klebepunkt horizontal rechts" #. CqkDB #: 10030200.xhp @@ -1499,7 +1499,7 @@ "hd_id3153540\n" "help.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Klebepunkt vertikal oben" #. HTixw #: 10030200.xhp @@ -1526,7 +1526,7 @@ "par_id3148681\n" "help.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Klebepunkt vertikal oben" #. V5AvY #: 10030200.xhp @@ -1535,7 +1535,7 @@ "hd_id3153678\n" "help.text" msgid "Gluepoint Vertical Center" -msgstr "" +msgstr "Klebepunkt vertikal mittig" #. M5aQi #: 10030200.xhp @@ -1562,7 +1562,7 @@ "par_id3146130\n" "help.text" msgid "Gluepoint Vertical Center" -msgstr "" +msgstr "Klebepunkt vertikal mittig" #. MbCWi #: 10030200.xhp @@ -1571,7 +1571,7 @@ "hd_id3147529\n" "help.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Klebepunkt vertikal unten" #. azpMi #: 10030200.xhp @@ -1598,7 +1598,7 @@ "par_id3156204\n" "help.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Klebepunkt vertikal unten" #. dkHqv #: 10050000.xhp @@ -3416,7 +3416,7 @@ "par_id3148604\n" "help.text" msgid "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, gluepoints appear. A gluepoint is a fixed point where you can attach a connector line. You can add custom gluepoints to an object." -msgstr "" +msgstr "Wenn Sie auf einen Verbinder klicken und den Mauszeiger über ein gefülltes Objekt oder den Rand eines ungefüllten Objekts bewegen, werden Klebepunkte angezeigt. Ein Klebepunkt ist ein fester Punkt, an dem Sie einen Verbinder verankert können. Sie können auch benutzerdefinierte Klebepunkte zu einem Objekt hinzufügen." #. qX29Y #: 10100000.xhp @@ -5297,7 +5297,7 @@ "tit\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Klebepunkte" #. 6MNBW #: 13010000.xhp @@ -5306,7 +5306,7 @@ "hd_id3153144\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Klebepunkte" #. 9qUBf #: 13010000.xhp @@ -5315,7 +5315,7 @@ "par_id3146120\n" "help.text" msgid "Insert or modify the properties of a gluepoint. A gluepoint is a custom connection point where you can attach a connector line." -msgstr "" +msgstr "Fügt einen Klebepunkt ein oder ändert dessen Eigenschaften. Ein Klebepunkt ist ein benutzerdefinierter Verbindungspunkt, an dem Sie einen Verbinder verankern können." #. cSpbQ #: 13010000.xhp @@ -5333,7 +5333,7 @@ "par_id3147339\n" "help.text" msgid "Show Gluepoints Functions" -msgstr "" +msgstr "Klebepunkt-Funktionen anzeigen" #. FipQc #: 13020000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561609713.000000\n" #. S83CC @@ -995,7 +995,7 @@ "par_id3155067\n" "help.text" msgid "You can change the background color or the background fill of the current slide or all of the slides in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Sie können die Hintergrundfarbe oder -füllung der aktuellen Folie oder aller Folien eines Dokuments ändern. Als Hintergrundfüllung ist eine Schraffur, ein Farbverlauf oder ein Bild möglich." #. SEPCz #: background.xhp @@ -1013,7 +1013,7 @@ "par_id624713\n" "help.text" msgid "Click Set Background Picture for Slide in the context menu of a slide in Normal view to select an image file. This file is used as a background picture." -msgstr "" +msgstr "Klicken Sie in der Normalansicht im Kontextmenü einer Folie auf »Hintergrundgrafik der Folie festlegen…«, um eine Bild-Datei auszuwählen. Diese Datei wird als Hintergrundbild verwendet." #. 6eFDv #: background.xhp @@ -1022,7 +1022,7 @@ "par_id4155067\n" "help.text" msgid "You can change the background color or the background fill of the current page or all of the pages in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Sie können die Hintergrundfarbe oder -füllung der aktuellen Folie oder aller Folien eines Dokuments ändern. Als Hintergrundfüllung ist eine Schraffur, ein Farbverlauf oder ein Bild möglich." #. BUHu6 #: background.xhp @@ -1040,7 +1040,7 @@ "par_id644713\n" "help.text" msgid "Click Set Background Picture for Page in the context menu of a page in Normal view to select an image file. This file is used as a background picture." -msgstr "" +msgstr "Klicken Sie in der Normalansicht im Kontextmenü einer Folie auf »Hintergrundgrafik der Folie festlegen…«, um eine Bild-Datei auszuwählen. Diese Datei wird als Hintergrundbild verwendet." #. KuE3E #: background.xhp @@ -1139,7 +1139,7 @@ "par_id3145356\n" "help.text" msgid "In the Fill area, select Image, and then click an image in the list." -msgstr "" +msgstr "Im Bereich Füllung wählen Sie Bild und klicken dann auf ein Bild in der Liste." #. 8yUQT #: background.xhp @@ -1625,7 +1625,7 @@ "bm_id0919200803534995\n" "help.text" msgid "gluepoints;using" -msgstr "" +msgstr "Klebepunkte; Verwenden" #. W457q #: gluepoints.xhp @@ -1661,7 +1661,7 @@ "par_id091920080304108\n" "help.text" msgid "Do one of the following to get existing gluepoints visible for all elements:" -msgstr "" +msgstr "Führen Sie einen der folgenden Schritte aus, um vorhandene Klebepunkte für alle Elemente sichtbar zu machen:" #. YAFf7 #: gluepoints.xhp @@ -1670,7 +1670,7 @@ "par_id0919200803041082\n" "help.text" msgid "Click the Gluepoints icon on the Drawing toolbar; or" -msgstr "" +msgstr "Klicken Sie auf das Symbol Klebpunkte in der Symbolleiste Zeichnung; oder" #. R7Yw9 #: gluepoints.xhp @@ -1679,7 +1679,7 @@ "par_id0919200803041186\n" "help.text" msgid "Choose Edit - Gluepoints." -msgstr "" +msgstr "Wählen Sie Bearbeiten – Klebepunkte." #. bdm6Q #: gluepoints.xhp @@ -1688,7 +1688,7 @@ "par_id0919200803041160\n" "help.text" msgid "Click the Insert Gluepoint icon on the Gluepoints toolbar." -msgstr "" +msgstr "Klicken Sie auf das Symbol Klebepunkt einfügen in der Symbolleiste Klebepunkte." #. CEpWX #: gluepoints.xhp @@ -1697,7 +1697,7 @@ "par_id09192008030411601\n" "help.text" msgid "Select element on slide where you want to add gluepoints." -msgstr "" +msgstr "Wählen Sie das Element auf der Folie aus, dem Sie Klebepunkte hinzufügen möchten." #. si9dG #: gluepoints.xhp @@ -1715,7 +1715,7 @@ "par_id0919200803041133\n" "help.text" msgid "If the shape is filled, you can click anywhere inside the shape. If the shape is unfilled, you can click the border to insert a gluepoint. Once inserted, you can drag the gluepoint to another position inside the shape." -msgstr "" +msgstr "Wenn die Form gefüllt ist, können Sie auf eine beliebige Stelle innerhalb der Form klicken. Wenn die Form nicht gefüllt ist, können Sie auf den Rahmen klicken, um einen Klebepunkt einzufügen. Nach dem Einfügen können Sie den Klebepunkt an eine andere Position innerhalb der Form ziehen." #. bPCgi #: gluepoints.xhp @@ -1724,7 +1724,7 @@ "par_id0919200803041250\n" "help.text" msgid "With the four icons next to the Insert Gluepoint icon, you choose the directions which will be permitted for a connector at this gluepoint. You can choose one or more directions for a particular gluepoint." -msgstr "" +msgstr "Mit den vier Symbolen neben dem Symbol Klebepunkt einfügen wählen Sie die Richtungen aus, die für einen Verbinder an diesem Klebepunkt zulässig sind. Sie können eine oder mehrere Richtungen für einen bestimmten Klebepunkt auswählen." #. 88UhH #: gluepoints.xhp @@ -1733,7 +1733,7 @@ "par_id0919200803041298\n" "help.text" msgid "If the Gluepoint Relative icon is active, the gluepoint moves when you resize the object to keep its position relative to the object borders." -msgstr "" +msgstr "Wenn das Symbol Relativer Klebepunkt aktiv ist, bewegt sich der Klebepunkt, wenn Sie die Größe des Objektes verändern, um seine relative Position zum Objektrahmen beizubehalten." #. qqnmk #: gluepoints.xhp @@ -1742,7 +1742,7 @@ "par_id0919200803041223\n" "help.text" msgid "If the Gluepoint Relative icon is not active, the icons next to it are no longer grayed out. With these icons you can decide where a gluepoint will be placed when the size of the object is changed." -msgstr "" +msgstr "Wenn das Symbol Relativer Klebepunkt nicht aktiv ist, sind die Symbole daneben nicht mehr ausgegraut. Mit diesen Symbolen können Sie entscheiden, wo ein Klebepunkt platziert wird, wenn Sie die Größe des Objektes verändern." #. bvoTQ #: html_export.xhp @@ -3776,7 +3776,7 @@ "par_id3154702\n" "help.text" msgid "Select Slide - Change Slide MasterPage - Master Page." -msgstr "" +msgstr "Wählen Sie Folie – Folienmaster ändern…Folie – Masterfolie…." #. AvkGN #: masterpage.xhp @@ -3866,7 +3866,7 @@ "par_id21631211553150\n" "help.text" msgid "Check Delete unused backgrounds to remove unreferenced background slides and presentation layouts from the document." -msgstr "" +msgstr "Markieren Sie Nicht verwendete Hintergründe löschen, um nicht verwendete Hintergründe und Präsentations-Layouts zu entfernen." #. rnFQF #: masterpage.xhp @@ -4190,7 +4190,7 @@ "par_id3156257\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Klebepunkte" #. 3LhEr #: page_copy.xhp @@ -4424,7 +4424,7 @@ "bm_id3149871\n" "help.text" msgid "colors; default colorscolors; LibreOffice colorsLibreOffice colorscolors; HLC colorsMaterial Design colorscolors; webcolors; freieFarbe" -msgstr "" +msgstr "Farben; StandardfarbenFarben; LibreOffice-FarbenLibreOffice-FarbenFarben; HLC-FarbenMaterial-Design; FarbenFarben; WebFarben; FreeColour" #. eBU5D #: palette_files.xhp @@ -4433,7 +4433,7 @@ "par_id3149871\n" "help.text" msgid "The freieFarbe HLC color list is based on the CIELAB model and is optimized for professional CMYK printing. The colors in the Compatibility and HTML lists are optimized for displays using a resolution of 256 colors. The palettes “LibreOffice” and “Material” contain the official LibreOffice and Material Design palettes respectively. The tonal.soc palette provides a set of colors organized by luminance contrast that work across different hardware." -msgstr "" +msgstr "Die Farbpalette \"FreeColour-HLC\" basiert auf dem CIELAB-Modell und ist für den professionellen CMYK-Druck optimiert. Die Farbpaletten \"Compatibility\" und \"HTML\" sind für Anzeigen mit einer Auflösung von 256 Farben optimiert. Die Farbpaletten \"LibreOffice\" und \"Material\" enthalten die offiziellen Farbpaletten von LibreOffice bzw. Material-Design. Die Farbpalette \"Tonal\" bietet eine Reihe von Farben, die nach Helligkeitskontrast organisiert sind und auf unterschiedlicher Hardware funktionieren." #. zAWpj #: palette_files.xhp @@ -5585,7 +5585,7 @@ "bm_id5592516\n" "help.text" msgid "running slide shows showing;slide shows slide shows; starting presentations; starting starting; slide shows automatic slide shows slide transitions;automatic automatic slide transition" -msgstr "" +msgstr "Präsentationen ausführenZeigen; PräsentationenDiashows; startenPräsentationen; startenStarten; PräsentationenAutomatische PräsentationFolienübergänge; automatischautomatischer Folienübergang" #. ZwZRH #: show.xhp @@ -5648,7 +5648,7 @@ "par_id391634159318692\n" "help.text" msgid "Press Esc to abort the slide show before its end." -msgstr "" +msgstr "Drücken Sie Esc, um die Bildschirmpräsentation vor ihrem Ende abzubrechen." #. yF4a5 #: show.xhp @@ -5693,7 +5693,7 @@ "par_id9168980\n" "help.text" msgid "In the Advance Slide area, click After and enter a time duration." -msgstr "" +msgstr "Im Bereich Folienwechsel klicken Sie auf Nach und geben eine Zeitdauer ein." #. HfVRx #: show.xhp @@ -5702,7 +5702,7 @@ "par_id9766533\n" "help.text" msgid "Click Apply Transition to All Slides." -msgstr "" +msgstr "Klicken Sie auf Übergang für alle Folien übernehmen." #. yfpGu #: show.xhp @@ -5738,7 +5738,7 @@ "par_id1336405\n" "help.text" msgid "In the Presentation Mode area, choose Loop and repeat after and set the duration of the pause between shows." -msgstr "" +msgstr "Im Bereich Präsentationsmodus wählen Sie Schleife und wiederholen nach und geben die Länge der Pause zwischen den Wiederholungen ein." #. A4BCr #: show.xhp @@ -6080,7 +6080,7 @@ "par_id3150715\n" "help.text" msgid "You can add a blank $[officename] Calc spreadsheet to a slide as an OLE object." -msgstr "Sie können eine leeres $[officename] Calc Tabellendokument als OLE Objekt in eine Folie einfügen." +msgstr "Sie können eine leeres $[officename] Calc-Tabellendokument als OLE-Objekt in eine Folie einfügen." #. cy6PU #: table_insert.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-01-26 12:49+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411718.000000\n" #. sZfWF @@ -698,7 +698,7 @@ "par_id3149802\n" "help.text" msgid "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." -msgstr "" +msgstr "Zeigt oder verbirgt den Navigator, in dem Sie schnell zu verschiedenen Teilen Ihres Dokuments springen können. Der Navigator ist auch als Bereich in der Seitenleiste verfügbar. Sie können den Navigator auch verwenden, um Elemente aus dem aktuellen Dokument oder anderen geöffneten Dokumenten einzufügen und Masterdokumente zu organisieren. Um ein Element im Navigator zu bearbeiten, klicken Sie mit der rechten Maustaste auf das Element und wählen Sie dann einen Befehl aus dem Kontextmenü. Wenn Sie möchten, können Sie den Navigator am Rand Ihres Arbeitsbereichs andocken." #. 3Bt3V #: 02110000.xhp @@ -4469,7 +4469,7 @@ "hd_id3145827\n" "help.text" msgid "Insert Manual Break" -msgstr "" +msgstr "Manuellen Umbruch einfügen" #. BMEC5 #: 04010000.xhp @@ -4604,7 +4604,7 @@ "par_id71633464502255\n" "help.text" msgid "To switch between landscape and portrait orientation, choose the Default Page Style to apply portrait orientation or the Landscape style to apply landscape orientation." -msgstr "" +msgstr "Um zwischen Quer- und Hochformat zu wechseln, wählen Sie die Seitenvorlage Standard, um die Ausrichtung Hochformat anzuwenden, oder die Seitenvorlage Querformat, um die Ausrichtung Querformat anzuwenden." #. iEpne #: 04010000.xhp @@ -7403,7 +7403,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 \"Refer using\" list, and then click Insert." -msgstr "" +msgstr "Listet die verfügbaren Felder für den Feldtyp auf, der in der Liste Typ ausgewählt wurde. Um ein Feld einzufügen, klicken Sie auf das Feld, wählen Sie ein Format in der Liste „Verweis verwenden“ und klicken Sie dann auf Einfügen." #. ABxYv #: 04090002.xhp @@ -7421,7 +7421,7 @@ "par_id2171086\n" "help.text" msgid "In the Refer using list, click the format that you want to use." -msgstr "" +msgstr "Klicken Sie in der Liste Verweis verwenden auf das Format, das Sie verwenden möchten." #. ESKFM #: 04090002.xhp @@ -7430,7 +7430,7 @@ "hd_id3154333\n" "help.text" msgid "Refer using" -msgstr "" +msgstr "Verweis verwenden" #. hvMHh #: 04090002.xhp @@ -7466,7 +7466,7 @@ "par_id3150039\n" "help.text" msgid "Page number (unstyled)" -msgstr "" +msgstr "Seitennummer (ohne Vorlage)" #. 3G7sS #: 04090002.xhp @@ -7484,7 +7484,7 @@ "par_id3150681\n" "help.text" msgid "Referenced text" -msgstr "" +msgstr "Verweisender Text" #. Fbhp8 #: 04090002.xhp @@ -7520,7 +7520,7 @@ "par_id3148705\n" "help.text" msgid "Page number (styled)" -msgstr "" +msgstr "Seitennummer (mit Vorlage)" #. NsCLY #: 04090002.xhp @@ -9437,7 +9437,7 @@ "par_id3156122\n" "help.text" msgid "Select the format of the field that you want to insert. This option is available for numerical, boolean, date and time fields." -msgstr "Wählen Sie das Format für das einzufügende Feld. Diese Option ist für numerische, Boolesche, Datums- und Zeitfelder verfügbar." +msgstr "Wählen Sie das Format für das einzufügende Feld. Diese Option ist für numerische, boolesche, Datums- und Zeitfelder verfügbar." #. HyEBd #: 04090006.xhp @@ -10418,7 +10418,7 @@ "par_id3150129\n" "help.text" msgid "State (not in all $[officename] versions)" -msgstr "Staat (nicht in allen $[officename] Versionen)" +msgstr "Staat (nicht in allen $[officename]-Versionen)" #. SLUe6 #: 04090200.xhp @@ -15575,7 +15575,7 @@ "hd_id3149804\n" "help.text" msgid "Maximum consecutive hyphenated lines" -msgstr "" +msgstr "Maximal aufeinanderfolgende Bindestriche" #. Yv4JU #: 05030200.xhp @@ -15809,7 +15809,7 @@ "par_id3155860\n" "help.text" msgid "Orphans." -msgstr "" +msgstr "Schusterjungen." #. ZG3Lb #: 05030400.xhp @@ -17546,7 +17546,7 @@ "bm_id9646290\n" "help.text" msgid "resizing;aspect ratio aspect ratio;resizing objects" -msgstr "" +msgstr "Größe ändern; SeitenverhältnisSeitenverhältnis; Größe von Objekten ändern" #. aWPDS #: 05060100.xhp @@ -17915,7 +17915,7 @@ "par_id3149213\n" "help.text" msgid "Select the reference point for the selected horizontal alignment option. The following options are available:" -msgstr "" +msgstr "Wählen Sie den Referenzpunkt für die ausgewählte horizontale Positionierung aus. Die folgenden Optionen sind verfügbar:" #. pSgnp #: 05060100.xhp @@ -17924,7 +17924,7 @@ "par_id521629211712372\n" "help.text" msgid "Paragraph area: the object is positioned considering the whole width available for the paragraph, including indent spaces." -msgstr "" +msgstr "Absatzbereich: Das Objekt wird unter Berücksichtigung der gesamten für den Absatz verfügbaren Breite positioniert, einschließlich der Einzüge." #. iWFAw #: 05060100.xhp @@ -17933,7 +17933,7 @@ "par_id761629211713907\n" "help.text" msgid "Paragraph text area: the object is positioned considering the whole width available for text in the paragraph, excluding indent spaces." -msgstr "" +msgstr "Absatztextbereich: Das Objekt wird unter Berücksichtigung der gesamten für Text im Absatz verfügbaren Breite positioniert, ohne Einzüge." #. ANQo2 #: 05060100.xhp @@ -17942,7 +17942,7 @@ "par_id821629211714199\n" "help.text" msgid "Left paragraph border: the object is positioned considering the width of the indent space available to the left of the paragraph." -msgstr "" +msgstr "Absatzrand links: Das Objekt wird unter Berücksichtigung der Breite des verfügbaren Einzugsraums links vom Absatz positioniert." #. sChkG #: 05060100.xhp @@ -17951,7 +17951,7 @@ "par_id741629211714572\n" "help.text" msgid "Right paragraph border: the object is positioned considering the width of the indent space available to the right of the paragraph." -msgstr "" +msgstr "Absatzrand rechts: Das Objekt wird unter Berücksichtigung der Breite des verfügbaren Einzugsraums rechts vom Absatz positioniert." #. UWViJ #: 05060100.xhp @@ -17960,7 +17960,7 @@ "par_id171629211714933\n" "help.text" msgid "Left page border: the object is positioned considering the space available between the left page border and the left paragraph border." -msgstr "" +msgstr "Seitenrand links: Das Objekt wird unter Berücksichtigung des verfügbaren Platzes zwischen dem linken Seitenrand und dem linken Absatzrand positioniert." #. F9qZf #: 05060100.xhp @@ -17969,7 +17969,7 @@ "par_id131629211715280\n" "help.text" msgid "Right page border: the object is positioned considering the space available between the right page border and the right paragraph border." -msgstr "" +msgstr "Seitenrand rechts: Das Objekt wird unter Berücksichtigung des verfügbaren Platzes zwischen dem rechten Seitenrand und dem rechten Absatzrand positioniert." #. norkq #: 05060100.xhp @@ -17978,7 +17978,7 @@ "par_id691629211796237\n" "help.text" msgid "Entire page: the object is positioned considering the whole width of the page, from the left to the right page borders." -msgstr "" +msgstr "Ganze Seite: Das Objekt wird über die gesamte Breite der Seite positioniert, vom linken bis zum rechten Seitenrand." #. CmKyb #: 05060100.xhp @@ -17987,7 +17987,7 @@ "par_id981629211796563\n" "help.text" msgid "Page text area: the object is positioned considering the whole width available for text in the page, from the left to the right page margins." -msgstr "" +msgstr "Seitentextbereich: Das Objekt wird unter Berücksichtigung der gesamten für Text auf der Seite verfügbaren Breite positioniert, vom linken bis zum rechten Seitenrand." #. JuoS4 #: 05060100.xhp @@ -17996,7 +17996,7 @@ "par_id811629211796776\n" "help.text" msgid "Character: the object is positioned considering the horizontal space used by the character." -msgstr "" +msgstr "Zeichen: Das Objekt wird unter Berücksichtigung des horizontalen Raums positioniert, der von dem Zeichen verwendet wird." #. cAAkt #: 05060100.xhp @@ -18005,7 +18005,7 @@ "par_id701629220055018\n" "help.text" msgid "Beware that the set of options available depend on the Anchor settings. Therefore, not all options listed above may be shown due to the current Anchor choice." -msgstr "" +msgstr "Beachten Sie, dass die verfügbaren Optionen von der Verankerung abhängen. Daher werden aufgrund der aktuellen Verankerung möglicherweise nicht alle oben aufgeführten Optionen angezeigt." #. eBQAz #: 05060100.xhp @@ -18014,7 +18014,7 @@ "par_id741629211922065\n" "help.text" msgid "You can see the result of the alignments options that you select in the Preview box." -msgstr "" +msgstr "Sie können das Ergebnis der ausgewählten Positionierung im Vorschaufeld sehen." #. EUGc6 #: 05060100.xhp @@ -18104,7 +18104,7 @@ "par_id3155075\n" "help.text" msgid "Select the reference point for the selected vertical alignment option. The following options are available:" -msgstr "" +msgstr "Wählen Sie den Referenzpunkt für die ausgewählte vertikale Positionierung aus. Die folgenden Optionen sind verfügbar:" #. 5GxHP #: 05060100.xhp @@ -18113,7 +18113,7 @@ "par_id551629212019498\n" "help.text" msgid "Margin: Depending on the anchoring type, the object is positioned considering the space between the top margin and the character (\"To character\" anchoring) or bottom edge of the paragraph (\"To paragraph\" anchoring) where the anchor is placed." -msgstr "" +msgstr "Rand: Je nach Verankerung wird das Objekt unter Berücksichtigung des Abstands zwischen dem oberen Rand und dem Zeichen (Verankerung \"Am Zeichen\") oder dem unteren Rand des Absatzes (Verankerung \"Am Absatz\") positioniert, in dem der Anker platziert ist." #. vKwer #: 05060100.xhp @@ -18122,7 +18122,7 @@ "par_id481629212019833\n" "help.text" msgid "Paragraph text area: the object is positioned considering the height of the paragraph where the anchor is placed." -msgstr "" +msgstr "Absatztextbereich: Das Objekt wird unter Berücksichtigung der Höhe des Absatzes positioniert, in dem der Anker platziert ist." #. 2i9ic #: 05060100.xhp @@ -18131,7 +18131,7 @@ "par_id521629212020113\n" "help.text" msgid "Entire page: the object is positioned considering the full page height, from top to bottom page borders." -msgstr "" +msgstr "Ganze Seite: Das Objekt wird unter Berücksichtigung der gesamten Seitenhöhe positioniert, vom oberen bis zum unteren Seitenrand." #. WvDZQ #: 05060100.xhp @@ -18140,7 +18140,7 @@ "par_id691629212020466\n" "help.text" msgid "Page text area: the object is positioned considering the full height available for text, from top to bottom margins." -msgstr "" +msgstr "Seitentextbereich: Das Objekt wird unter Berücksichtigung der gesamten für Text verfügbaren Höhe positioniert, vom oberen bis zum unteren Rand." #. R8syf #: 05060100.xhp @@ -18149,7 +18149,7 @@ "par_id951629212020860\n" "help.text" msgid "Character: the object is positioned considering the vertical space used by the character." -msgstr "" +msgstr "Zeichen: Das Objekt wird unter Berücksichtigung des vom Zeichen verwendeten vertikalen Raums positioniert." #. 76CzL #: 05060100.xhp @@ -18158,7 +18158,7 @@ "par_id631629212021233\n" "help.text" msgid "Line of text: the object is positioned considering the height of the line of text where the anchor is placed." -msgstr "" +msgstr "Textzeile: Das Objekt wird unter Berücksichtigung der Höhe der Textzeile positioniert, in der der Anker platziert ist." #. ywYwM #: 05060100.xhp @@ -18167,7 +18167,7 @@ "par_id631629220309961\n" "help.text" msgid "Baseline: available only for \"As character\" anchoring, this option will position the object considering the text baseline over which all characters are placed." -msgstr "" +msgstr "Grundlinie: Nur für die Verankerung \"Als Zeichen\" verfügbar. Diese Option positioniert das Objekt unter Berücksichtigung der Textgrundlinie, über der alle Zeichen platziert werden." #. xYbGQ #: 05060100.xhp @@ -18176,7 +18176,7 @@ "par_id811629220310472\n" "help.text" msgid "Row: available only for \"As character\" anchoring, this option will position the object considering the height of the row where the anchor is placed." -msgstr "" +msgstr "Zeile: Nur für Verankerung \"Als Zeichen\" verfügbar. Diese Option positioniert das Objekt unter Berücksichtigung der Höhe der Zeile, in der der Anker platziert ist." #. bQXrs #: 05060100.xhp @@ -19859,7 +19859,7 @@ "par_id3149284\n" "help.text" msgid "Lists the $[officename] program and any open $[officename] document. Within this list, select the location where you want to pick the macro from." -msgstr "Zeigt eine Liste des $[officename] Programms und gegebenenfalls offener $[officename] Dokumente an. Wählen Sie aus dieser Liste den Ort aus, von dem aus Sie das Makro nehmen möchten." +msgstr "Zeigt eine Liste des $[officename]-Programms und gegebenenfalls offener $[officename]-Dokumente an. Wählen Sie aus dieser Liste den Ort aus, von dem aus Sie das Makro nehmen möchten." #. 7scGe #: 05060700.xhp @@ -22955,7 +22955,7 @@ "par_idN106EF\n" "help.text" msgid "To dock the Styles window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar." -msgstr "" +msgstr "Um das Fenster Formatvorlagen anzudocken, ziehen Sie seine Titelleiste auf die linke oder rechte Seite des Arbeitsbereichs. Um das Fenster abzudocken, doppelklicken Sie auf eine freie Stelle in seiner Symbolleiste." #. rnJBS #: 05140000.xhp @@ -23000,7 +23000,7 @@ "par_id3149800\n" "help.text" msgid "Displays formatting styles for paragraphs. Use paragraph styles to apply the same formatting, such as font, numbering, and layout to the paragraphs in your document." -msgstr "" +msgstr "Zeigt Formatvorlagen für Absätze an. Verwenden Sie Absatzvorlagen, um dieselben Formatierungen (wie Schriftart, Nummerierung und Layout) wie zu den Absätzen in Ihrem Dokument anzuwenden." #. ataNf #: 05140000.xhp @@ -24071,7 +24071,7 @@ "hd_id3151242\n" "help.text" msgid " Load Master Slide Load Master Page Load Styles " -msgstr "" +msgstr "Masterfolie ladenMasterfolie ladenFormatvorlagen laden" #. 27Nd8 #: 05170000.xhp @@ -24080,7 +24080,7 @@ "par_id3150717\n" "help.text" msgid "Load additional slide designs for your presentation." -msgstr "" +msgstr "Lädt zusätzliche Foliendesigns für Ihre Präsentation." #. 7mftZ #: 05170000.xhp @@ -24089,7 +24089,7 @@ "par_id2150717\n" "help.text" msgid "Load additional page designs for your drawing." -msgstr "" +msgstr "Lädt zusätzliche Foliendesigns für Ihre Zeichnung." #. FBAJG #: 05170000.xhp @@ -24107,7 +24107,7 @@ "hd_id3150327\n" "help.text" msgid "Categories" -msgstr "" +msgstr "Kategorien" #. hfCSA #: 05170000.xhp @@ -24116,7 +24116,7 @@ "par_id3147338\n" "help.text" msgid "Displays the available slide design categories." -msgstr "" +msgstr "Zeigt die verfügbaren Foliendesign-Kategorien an." #. WGb32 #: 05170000.xhp @@ -24125,7 +24125,7 @@ "hd_id3155962\n" "help.text" msgid "Templates" -msgstr "" +msgstr "Dokumentvorlagen" #. MVgRk #: 05170000.xhp @@ -24134,7 +24134,7 @@ "par_id3155337\n" "help.text" msgid "Displays the templates for the selected design category." -msgstr "" +msgstr "Zeigt die Dokumentvorlagen für die ausgewählte Designkategorie an." #. zu7wC #: 05170000.xhp @@ -24143,7 +24143,7 @@ "hd_id241634052550343\n" "help.text" msgid "Preview" -msgstr "" +msgstr "Vorschau" #. VD5pq #: 05170000.xhp @@ -24152,7 +24152,7 @@ "par_id3150344\n" "help.text" msgid "Shows or hides a preview of a selected master slide." -msgstr "" +msgstr "Zeigt oder verbirgt eine Vorschau einer ausgewählten Masterfolie." #. M5edi #: 05170000.xhp @@ -24161,7 +24161,7 @@ "par_id9159206\n" "help.text" msgid "Some master slides may not contain visible text objects or drawing objects." -msgstr "" +msgstr "Einige Masterfolien enthalten möglicherweise keine sichtbaren Text- oder Zeichnungsobjekte." #. bFUri #: 05170000.xhp @@ -24170,7 +24170,7 @@ "hd_id3150427\n" "help.text" msgid "Categories" -msgstr "" +msgstr "Kategorien" #. BhDDL #: 05170000.xhp @@ -24179,7 +24179,7 @@ "par_id3157338\n" "help.text" msgid "Displays the available page design categories." -msgstr "" +msgstr "Zeigt die verfügbaren Foliendesign-Kategorien an." #. wYRwi #: 05170000.xhp @@ -24188,7 +24188,7 @@ "hd_id3155952\n" "help.text" msgid "Templates" -msgstr "" +msgstr "Dokumentvorlagen" #. hjKgq #: 05170000.xhp @@ -24197,7 +24197,7 @@ "par_id3155837\n" "help.text" msgid "Displays the pages designs for the selected design category." -msgstr "" +msgstr "Zeigt die Foliendesigns für die ausgewählte Designkategorie an." #. FLsVG #: 05170000.xhp @@ -24206,7 +24206,7 @@ "hd_id241634052520343\n" "help.text" msgid "Preview" -msgstr "" +msgstr "Vorschau" #. APNcz #: 05170000.xhp @@ -24215,7 +24215,7 @@ "par_id315054\n" "help.text" msgid "Shows or hides a preview of a selected page design." -msgstr "" +msgstr "Zeigt oder verbirgt die Vorschau eines ausgewählten Foliendesigns." #. fYaPW #: 05170000.xhp @@ -24224,7 +24224,7 @@ "par_id3159206\n" "help.text" msgid "Some page designs may not contain visible text objects or drawing objects." -msgstr "" +msgstr "Einige Foliendesigns enthalten möglicherweise keine sichtbaren Text- oder Zeichenobjekte." #. uooXD #: 05170000.xhp @@ -27185,7 +27185,7 @@ "tit\n" "help.text" msgid "Accessibility Check" -msgstr "" +msgstr "Zugänglichkeitsprüfung" #. bFVzE #: accessibility_check.xhp @@ -27194,7 +27194,7 @@ "bm_id551630942369429\n" "help.text" msgid "accessibility;check in text document PDF/UA;check" -msgstr "" +msgstr "Zugänglichkeit; in Textdokumenten prüfenPDF/UA; prüfen" #. M96s3 #: accessibility_check.xhp @@ -27203,7 +27203,7 @@ "hd_id771630940172827\n" "help.text" msgid "Accessibility Check" -msgstr "" +msgstr "Zugänglichkeitsprüfung" #. yT4uv #: accessibility_check.xhp @@ -27212,7 +27212,7 @@ "par_id951630940172830\n" "help.text" msgid "Review common accessibility problems in the document, and support for PDF/UA specifications in the PDF export dialog." -msgstr "" +msgstr "Überprüt häufige Zugänglichkeitsprobleme im Dokument und unterstützt PDF/UA-Spezifikationen im Dialog PDF-Export." #. EYLLt #: accessibility_check.xhp @@ -27221,7 +27221,7 @@ "par_id311630940367510\n" "help.text" msgid "Choose Tools - Accessibility Check." -msgstr "" +msgstr "Wählen Sie Extras – Zugänglichkeitsprüfung…" #. MChEF #: accessibility_check.xhp @@ -27230,7 +27230,7 @@ "par_id521630941308319\n" "help.text" msgid "Select File - Export as PDF - General - Universal Accessibility (PDF/UA) and click OK." -msgstr "" +msgstr "Wählen Sie Datei – Exportieren als – Als PDF exportieren… – Register: Allgemein – Markierfeld: Universelle Zugänglichkeit (PDF/UA) und klicken Sie auf OK." #. FvnEV #: accessibility_check.xhp @@ -27239,7 +27239,7 @@ "par_id901630941406987\n" "help.text" msgid "The Accessibility Check tool traverses the document structure and gather all possible accessibility issues. The check can be run manually through the menu or it will be triggered after PDF export dialog, when the PDF/UA support is enabled." -msgstr "" +msgstr "Die Zugänglichkeitsprüfung durchläuft die Dokumentstruktur und sammelt alle möglichen Zugänglichkeitsprobleme. Die Prüfung kann manuell über das Menü ausgeführt werden oder wird nach dem Dialog PDF-Export ausgelöst, wenn die PDF/UA-Unterstützung aktiviert ist." #. RpbFj #: accessibility_check.xhp @@ -27248,7 +27248,7 @@ "hd_id271630943848307\n" "help.text" msgid "The Accessibility Check dialog" -msgstr "" +msgstr "Der Dialog Zugänglichkeitsprüfung" #. FAFuD #: accessibility_check.xhp @@ -27257,7 +27257,7 @@ "par_id681630943858371\n" "help.text" msgid "The Accessibility Check dialog shows a list of all issues found in the text document." -msgstr "" +msgstr "Der Dialog Zugänglichkeitsprüfung zeigt eine Liste aller Probleme, die im Textdokument gefunden wurden." #. RPhYG #: accessibility_check.xhp @@ -27266,7 +27266,7 @@ "hd_id841630943833924\n" "help.text" msgid "Go to Issue" -msgstr "" +msgstr "Zum Problem gehen" #. fquGN #: accessibility_check.xhp @@ -27275,7 +27275,7 @@ "par_id41630943863594\n" "help.text" msgid "Click the button to jump to the page and select the object or issue that requires attention for accessibility." -msgstr "" +msgstr "Klicken Sie auf die Schaltfläche, um zur Seite zu springen, und wählen Sie das Objekt oder Problem aus, das für die Zugänglichkeit beachtet werden muss." #. WgpUi #: accessibility_check.xhp @@ -27284,7 +27284,7 @@ "hd_id121630943721145\n" "help.text" msgid "Common accessibility checks" -msgstr "" +msgstr "Gemeinsame Zugänglichkeitsprüfungen" #. 9u7no #: accessibility_check.xhp @@ -27293,7 +27293,7 @@ "par_id31630941412046\n" "help.text" msgid "The checks that are currently implemented are:" -msgstr "" +msgstr "Die derzeit implementierten Prüfungen sind:" #. sxkkp #: accessibility_check.xhp @@ -27302,7 +27302,7 @@ "par_id191630941836904\n" "help.text" msgid "Check that the document title is set." -msgstr "" +msgstr "Überprüfung, ob der Dokumenttitel festgelegt ist." #. B3GtS #: accessibility_check.xhp @@ -27311,7 +27311,7 @@ "par_id1001630941860410\n" "help.text" msgid "Check that the document language is set, or that all styles that are in use, have the language set." -msgstr "" +msgstr "Überprüfung, ob die Dokumentsprache eingestellt ist oder ob alle verwendeten Formatvorlagen die Sprache eingestellt haben." #. EhNJE #: accessibility_check.xhp @@ -27320,7 +27320,7 @@ "par_id1001630941880414\n" "help.text" msgid "Check all images, graphics, OLE objects for the alt (or title in some objects) text." -msgstr "" +msgstr "Überprüfung aller Bilder, Grafiken und OLE-Objekte auf den Alternativtext (oder Titel in einigen Objekten)." #. AKxvB #: accessibility_check.xhp @@ -27329,7 +27329,7 @@ "par_id491630941907745\n" "help.text" msgid "Check that tables do not include split or merged cells, which could be disorienting for users with visual impairments." -msgstr "" +msgstr "Überprüfung, dass Tabellen keine geteilten oder verbundenen Zellen enthalten, die für Benutzer mit Sehbehinderungen verwirrend sein könnten." #. wkEAD #: accessibility_check.xhp @@ -27338,7 +27338,7 @@ "par_id901630941949974\n" "help.text" msgid "Check for fake/manual numbering (not using integrated numbering). For example writing \"1.\" \"2.\" \"3.\" at the beginning of the paragraphs." -msgstr "" +msgstr "Überprüfung auf falsche/manuelle Nummerierung (ohne Verwendung der integrierte Nummerierung). Beispielsweise, ob Sie \"1\". \"2.\" \"3.\" am Anfang der Absätze geschrieben haben." #. 9e7Xi #: accessibility_check.xhp @@ -27347,7 +27347,7 @@ "par_id981630941970321\n" "help.text" msgid "Check that hyperlink text is not a hyperlink itself - hyperlink should be described." -msgstr "" +msgstr "Überprüfung, ob der Text eines Hyperlinks nicht selbst ein Hyperlink ist – der Hyperlink sollte beschrieben werden." #. DRKCs #: accessibility_check.xhp @@ -27356,7 +27356,7 @@ "par_id421630941989099\n" "help.text" msgid "Check for the contrast between text and the background. The algorithm is described in the WCAG specification." -msgstr "" +msgstr "Überprüfung des Kontrastes zwischen Text und Hintergrund. Der Algorithmus ist in der WCAG-Spezifikation beschrieben." #. dVG2r #: accessibility_check.xhp @@ -27365,7 +27365,7 @@ "par_id781630942005022\n" "help.text" msgid "Check for blinking text, which can be problematic for people with cognitive disabilities or photosensitive epilepsy." -msgstr "" +msgstr "Überprüfung auf blinkenden Text, der für Menschen mit kognitiven Behinderungen oder lichtempfindlicher Epilepsie problematisch sein kann." #. QgCco #: accessibility_check.xhp @@ -27374,7 +27374,7 @@ "par_id651630942022847\n" "help.text" msgid "Check for footnotes and endnotes, which should be avoided." -msgstr "" +msgstr "Überprüfung auf Fußnoten und Endnoten, die vermieden werden sollten." #. uoggD #: accessibility_check.xhp @@ -27383,7 +27383,7 @@ "par_id531630942039864\n" "help.text" msgid "Check for heading order. Order of the headings must increase incrementally with no skips (for example Heading 1 to Heading 3, skipping Heading 2)." -msgstr "" +msgstr "Überprüfung der Reihenfolge der Überschriften. Die Reihenfolge der Überschriften muss ohne Sprünge schrittweise erhöht werden (beispielsweise \"Überschrift 1\" bis \"Überschrift 3\", aber Fehlen von \"Überschrift 2\")." #. LdMWG #: accessibility_check.xhp @@ -27392,7 +27392,7 @@ "par_id221630942064725\n" "help.text" msgid "Check, if text conveys additional meaning with (direct) formatting." -msgstr "" +msgstr "Überprüfung, ob Text durch (direkte) Formatierung zusätzliche Bedeutung vermittelt." #. k5UDL #: edit_reference_submenu.xhp @@ -30848,7 +30848,7 @@ "tit\n" "help.text" msgid "Protect Document" -msgstr "" +msgstr "Dokument schützen" #. 2VVFB #: protectdocument.xhp @@ -30857,7 +30857,7 @@ "bm_id71630957701819\n" "help.text" msgid "protection;fields in text documentsprotection;bookmarks in text documents" -msgstr "" +msgstr "Schützen; Felder in TextdokumentenSchützen; Lesezeichen in Textdokumenten" #. iNpsr #: protectdocument.xhp @@ -30866,7 +30866,7 @@ "hd_id631630954633446\n" "help.text" msgid "Protect Document" -msgstr "" +msgstr "Dokument schützen" #. NTd9C #: protectdocument.xhp @@ -30875,7 +30875,7 @@ "par_id491630954633448\n" "help.text" msgid "Toggles write protection for fields and bookmarks in the document." -msgstr "" +msgstr "Schaltet den Schreibschutz für Felder und Lesezeichen im Dokument um." #. 9CfQn #: protectdocument.xhp @@ -30884,7 +30884,7 @@ "par_id18112016398104\n" "help.text" msgid "" -msgstr "" +msgstr "" #. ZeFv5 #: protectdocument.xhp @@ -30893,7 +30893,7 @@ "hd_id431630956035026\n" "help.text" msgid "Protect Fields" -msgstr "" +msgstr "Felder schützen" #. wRf6V #: protectdocument.xhp @@ -30902,7 +30902,7 @@ "par_id851630956050636\n" "help.text" msgid "Toggles fields write protection. When checked, the fields cannot be edited or deleted." -msgstr "" +msgstr "Schaltet den Schreibschutz für Felder um. Wenn diese Option aktiviert ist, können die Felder nicht bearbeitet oder gelöscht werden." #. DBkt8 #: protectdocument.xhp @@ -30911,7 +30911,7 @@ "hd_id871630956040154\n" "help.text" msgid "Protect Bookmarks" -msgstr "" +msgstr "Lesezeichen schützen" #. PxAHD #: protectdocument.xhp @@ -30920,7 +30920,7 @@ "par_id631630956055502\n" "help.text" msgid "Toggles bookmark write protection. When checked, the bookmarks cannot be deleted or renamed." -msgstr "" +msgstr "Schaltet den Schreibschutz für Lesezeichen um. Wenn diese Option aktiviert ist, können die Lesezeichen nicht gelöscht oder umbenannt werden." #. 96cqF #: protectdocument.xhp @@ -30929,7 +30929,7 @@ "par_id281630957530212\n" "help.text" msgid "" -msgstr "" +msgstr "" #. KadxR #: selection_mode.xhp @@ -30983,7 +30983,7 @@ "tit\n" "help.text" msgid "Show Whitespace" -msgstr "" +msgstr "Zwischenräume anzeigen" #. Bb74x #: show_whitespace.xhp @@ -30992,7 +30992,7 @@ "hd_id11629893531856\n" "help.text" msgid "Show Whitespace" -msgstr "" +msgstr "Zwischenräume anzeigen" #. 9GHq6 #: show_whitespace.xhp @@ -31001,7 +31001,7 @@ "par_id102720150854012820\n" "help.text" msgid "Displays the document with the top and bottom margins, header and footer and a gap between pages. Uncheck to collapse all the elements cited and display the document in a contiguous page stream. Hiding whitespace is only possible in Single-page view." -msgstr "" +msgstr "Zeigt das Dokument mit oberem und unterem Rand, Kopf- und Fußzeile und einem Abstand zwischen den Seiten an. Deaktivieren Sie diese Option, um alle genannten Elemente zu reduzieren und das Dokument in einem kontinuierlichen Seitenfluss anzuzeigen. Das Ausblenden von Zwischenräumen ist nur in der Einzelseitenansicht möglich." #. wDniB #: title_page.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/02.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/02.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-01-08 14:38+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1524890654.000000\n" #. sqxGb @@ -158,7 +158,7 @@ "bm_id3151188\n" "help.text" msgid "frames;unlinkingunlinking frames" -msgstr "Rahmen; Verankerung aufhebenVerankerung von Rahmen aufheben" +msgstr "Rahmen; Verkettung lösenVerkettung von Rahmen lösen" #. bzyeh #: 03220000.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-21 18:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565411835.000000\n" #. XAt2Y @@ -50,7 +50,7 @@ "par_id181634295881266\n" "help.text" msgid "An object, such as an image, is positioned within a document using anchors attached to other elements." -msgstr "" +msgstr "Ein Objekt, beispielsweise ein Bild, wird innerhalb eines Dokuments mithilfe von Ankern positioniert, die an anderen Elementen angebracht sind." #. rrmfz #: anchor_object.xhp @@ -59,7 +59,7 @@ "par_id41634291500513\n" "help.text" msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An image always has an anchor and therefore a reference point." -msgstr "" +msgstr "Ein Anker bestimmt den Bezugspunkt für ein Objekt. Der Referenzpunkt könnte die Seite oder der Rahmen sein, wo sich das Objekt befindet, ein Absatz oder sogar ein Zeichen. Ein Bild hat immer einen Anker und damit einen Bezugspunkt." #. czeNu #: anchor_object.xhp @@ -68,7 +68,7 @@ "par_id3147251\n" "help.text" msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." -msgstr "" +msgstr "Ein Anker bewegt sich mit dem Element, an das er angehängt ist, während das Dokument bearbeitet wird. Ein Objekt behält seine Position relativ zu dem durch seinen Anker bestimmten Referenzpunkt bei, sodass sich das Objekt immer dann relativ zu ihm bewegt, wenn sich der Referenzpunkt bewegt oder ändert." #. ELWph #: anchor_object.xhp @@ -77,7 +77,7 @@ "par_id441634291545244\n" "help.text" msgid "The following anchoring options are available:" -msgstr "" +msgstr "Folgende Verankerungen stehen zur Verfügung:" #. mWome #: anchor_object.xhp @@ -113,7 +113,7 @@ "par_id3151181\n" "help.text" msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased." -msgstr "" +msgstr "Verankert das ausgewählte Objekt als Zeichen im aktuellen Text. Wenn die Höhe des ausgewählten Objekts größer als die aktuelle Schriftgröße ist, wird die Höhe der Zeile, die das Objekt enthält, erhöht." #. SNGPX #: anchor_object.xhp @@ -140,7 +140,7 @@ "par_id3151235\n" "help.text" msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character." -msgstr "" +msgstr "Verankert das ausgewählte Objekt an dem Absatz, der das Zeichen enthält, an das der Anker angehängt ist. Der Bezugspunkt für das Objekt ist der Beginn des Absatzes, der das Zeichen enthält." #. Awa37 #: anchor_object.xhp @@ -149,7 +149,7 @@ "par_id261634292505179\n" "help.text" msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that." -msgstr "" +msgstr "Wenn Sie beispielsweise den Absatz an einer Stelle vor dem Anker teilen, wird der Referenzpunkt an den Anfang des neuen Absatzes verschoben und das Objekt relativ zu diesem Punkt verschoben. Wenn Sie den Absatz mit dem vorhergehenden verbinden, bewegt sich der Referenzpunkt zum Anfang des kombinierten Absatzes und das Objekt wird an eine Position relativ dazu verschoben." #. ekiBZ #: anchor_object.xhp @@ -167,7 +167,7 @@ "par_id3155094\n" "help.text" msgid "Anchors the selected object to the current paragraph." -msgstr "" +msgstr "Verankert das ausgewählte Objekt im aktuellen Absatz." #. MWaB5 #: anchor_object.xhp @@ -185,7 +185,7 @@ "par_id3155144\n" "help.text" msgid "Anchors the selected object to the current page." -msgstr "" +msgstr "Verankert das ausgewählte Objekt an der aktuellen Seite." #. ZEdjj #: anchor_object.xhp @@ -212,7 +212,7 @@ "par_id3145715\n" "help.text" msgid "When you insert an object, graphic, or frame, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object. To change the anchoring options of an item, right-click the item, and then choose an option from the Anchor submenu." -msgstr "" +msgstr "Wenn Sie ein Objekt, eine Grafik oder einen Rahmen einfügen, wird an der Stelle, an der das Objekt verankert ist, ein Ankersymbol angezeigt. Sie können einen Anker verschieben oder, unter Berücksichtigung anderer Objektbeschränkungen, ein Objekt relativ zum Referenzpunkt des Ankers positionieren, indem Sie das Objekt ziehen. Um die Verankerung eines Elements zu ändern, klicken Sie mit der rechten Maustaste auf das Element und wählen Sie dann eine Option aus dem Untermenü Anker aus." #. EkgCv #: arrange_chapters.xhp @@ -7790,7 +7790,7 @@ "par_id501639661322712\n" "help.text" msgid "The inserted formatting mark will be shown in gray. To remove it, simply place the cursor over the formatting mark and press the Del key." -msgstr "" +msgstr "Das eingefügte Formatierungszeichen wird grau dargestellt. Um es zu entfernen, platzieren Sie einfach den Cursor auf dem Formatierungszeichen und drücken Sie Entf." #. skDHA #: hyphen_prevent.xhp @@ -9761,7 +9761,7 @@ "tit\n" "help.text" msgid "Using Shortcut Keys ($[officename] Writer Accessibility)" -msgstr "Verwenden von Tastenkombinationen ($[officename] Writer Barrierefreiheit)" +msgstr "Verwenden von Tastenkombinationen ($[officename] Writer-Barrierefreiheit)" #. ETbd7 #: keyboard.xhp @@ -9932,7 +9932,7 @@ "bm_id3145086\n" "help.text" msgid "formatting styles; importing styles; importing from other files importing;styles from other files loading;styles from other files" -msgstr "" +msgstr "Formatvorlagen; ImportierenVorlagen; Importieren aus anderen DateienImportieren; Formatvorlagen aus anderen DateienLaden; Formatvorlagen aus anderen Dateien" #. poRMw #: load_styles.xhp @@ -9986,7 +9986,7 @@ "par_id441529889103330\n" "help.text" msgid "Choose Styles - Manage Styles or Command+TF11 to open the Styles sidebar deck." -msgstr "" +msgstr "Wählen Sie Formatvorlagen – Formatvorlagen verwalten oder Drücken Sie Befehl+TF11, um die Seitenleiste Formatvorlagen zu öffnen." #. mHDNg #: load_styles.xhp @@ -10544,7 +10544,7 @@ "bm_id3150101\n" "help.text" msgid "line numbers text; line numbers paragraphs;line numbers lines of text; numbering numbering; lines numbers; line numbering marginal numbers on text pages" -msgstr "" +msgstr "ZeilennummernText; ZeilennummernAbsätze; ZeilennummernTextzeilen; NummerierungNummerierung; ZeilenZahlen; ZeilennummerierungRandnummern auf Textseiten" #. qVEcP #: numbering_lines.xhp @@ -10643,7 +10643,7 @@ "par_id3154248\n" "help.text" msgid "Press Command+T F11 to open the Styles window, and then click the Paragraph Styles icon." -msgstr "" +msgstr "Drücken Sie Befehl+TF11, um die Seitenleiste Formatvorlagen zu öffnen, und klicken Sie dann auf das Symbol Absatzvorlagen." #. Fwn8P #: numbering_lines.xhp @@ -10814,7 +10814,7 @@ "par_id3153960\n" "help.text" msgid "Format - Paragraph - Outline & List" -msgstr "" +msgstr "Wählen Sie »Format – Absatz… – Register: Gliederung & Liste«" #. foq8S #: numbering_lines.xhp @@ -10976,7 +10976,7 @@ "bm_id3155183\n" "help.text" msgid "inserting; page breaks deleting;page breaks pages; inserting/deleting page breaks manual page breaks tables;deleting page breaks before" -msgstr "" +msgstr "Einfügen; SeitenumbrücheLöschen; SeitenumbrücheSeiten; Einfügen/Löschen von SeitenumbrüchenManuelle SeitenumbrücheTabellen; Löschen von Seitenumbrüchen vor" #. eCabG #: page_break.xhp @@ -11084,7 +11084,7 @@ "hd_id151633462071702\n" "help.text" msgid "To Quickly Switch Between Portrait and Landscape Page Layout" -msgstr "" +msgstr "Um schnell zwischen Hoch- und Querformat zu wechseln" #. xLfpN #: page_break.xhp @@ -11093,7 +11093,7 @@ "par_id121633463140208\n" "help.text" msgid "Read the help page Changing Page Orientation to learn more about advanced configurations that can be defined concerning page orientation." -msgstr "" +msgstr "Lesen Sie die Hilfeseite Ändern der Seitenausrichtung, um mehr über erweiterte Konfigurationen zu erfahren, die bezüglich der Seitenausrichtung definiert werden können." #. 5GEmu #: pagebackground.xhp @@ -11750,7 +11750,7 @@ "bm_id9683828\n" "help.text" msgid "page styles;orientation/scope page formats; changing individual pages formatting; changing individual pages portrait and landscape landscape and portrait printing;portrait/landscape format orientation of pages paper orientation pages;orientation sideways orientation of pages scope of page styles" -msgstr "" +msgstr "Seitenvorlagen; Ausrichtung/UmfangSeitenformate; Ändern einzelner SeitenFormatierung; Ändern einzelner SeitenHoch- und QuerformatQuer- und HochformatDrucken; Hoch-/QuerformatAusrichtung der SeitenPapierorientierungSeiten; OrientierungOrientierung der SeitenUmfang der Seitenvorlagen" #. ETQJ7 #: pageorientation.xhp @@ -11966,7 +11966,7 @@ "hd_id151633462071702\n" "help.text" msgid "To Quickly Switch Between Portrait and Landscape Page Layout" -msgstr "" +msgstr "Um schnell zwischen Hoch- und Querformat zu wechseln" #. EEW2C #: pageorientation.xhp @@ -11975,7 +11975,7 @@ "par_id51633462108943\n" "help.text" msgid "The default template provided by %PRODUCTNAME Writer offers several page layout styles, among which the Default Page Style has Portrait orientation and the Landscape style has landscape orientation." -msgstr "" +msgstr "Die von %PRODUCTNAME Writer bereitgestellte Dokumentvorlage bietet mehrere Seitenvorlagen, darunter die Seitenvorlage Standard im Hochformat und die Seitenvorlage Querformat im Querformat." #. aMkMn #: pageorientation.xhp @@ -11984,7 +11984,7 @@ "par_id321633462254730\n" "help.text" msgid "These styles can be used to quickly switch between portrait and landscape orientation by inserting manual breaks and choosing the appropriate page styles as described below:" -msgstr "" +msgstr "Diese Formatvorlagen können verwendet werden, um schnell zwischen Hoch- und Querformat zu wechseln, indem Sie manuelle Umbrüche einfügen und die entsprechenden Seitenvorlagen wie unten beschrieben auswählen:" #. dQpYD #: pageorientation.xhp @@ -11993,7 +11993,7 @@ "par_id21633462303911\n" "help.text" msgid "Place the cursor where the page break is to be inserted." -msgstr "" +msgstr "Platzieren Sie den Cursor dort, wo der Seitenumbruch eingefügt werden soll." #. sTgyV #: pageorientation.xhp @@ -12002,7 +12002,7 @@ "par_id841633462305362\n" "help.text" msgid "Go to Insert - More Breaks - Manual Break. The Insert Break dialog will open." -msgstr "" +msgstr "Wählen Sie Einfügen – Umbrüche – Manueller Umbruch…. Der Dialog Umbruch einfügen wird geöffnet." #. fpcnD #: pageorientation.xhp @@ -12011,7 +12011,7 @@ "par_id31633462305839\n" "help.text" msgid "Choose the option Page break and in the Page Style drop-down list choose the page style to be applied to the page after the break (Default Page Style, Landscape, etc)." -msgstr "" +msgstr "Wählen Sie den Typ Seitenumbruch und in der Dropdown-Liste Seitenvorlage die Seitenvorlage, der auf die Seite nach dem Umbruch angewendet werden soll (Seitenvorlage Standard, Querformat, …)." #. z3nCn #: pageorientation.xhp @@ -12020,7 +12020,7 @@ "par_id51633462306574\n" "help.text" msgid "If the applied has to be changed again at a certain point in the document (for instance, to switch back from landscape to portrait orientation), place the cursor at this point and repeat the steps previously described." -msgstr "" +msgstr "Wenn an einer bestimmten Stelle des Dokuments die Anwendung erneut geändert werden muss (beispielsweise um vom Quer- ins Hochformat zurückzukehren), platzieren Sie den Cursor an dieser Stelle und wiederholen Sie die zuvor beschriebenen Schritte." #. JyqRA #: pageorientation.xhp @@ -13163,7 +13163,7 @@ "hd_id6007263\n" "help.text" msgid "Protecting Contents in %PRODUCTNAME Writer" -msgstr "" +msgstr "Inhalte in %PRODUCTNAME Writer schützen" #. PooUV #: protection.xhp @@ -13370,7 +13370,7 @@ "par_id3155178\n" "help.text" msgid "If necessary, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and select Enable cursor under the Protected Areas." -msgstr "" +msgstr "Wählen Sie bei Bedarf %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Formatierungshilfen und wählen Sie Cursor aktivieren unter Geschützten Bereichen." #. bYNoc #: protection.xhp @@ -13451,7 +13451,7 @@ "hd_id641630957309611\n" "help.text" msgid "Protecting fields and bookmarks from changes" -msgstr "" +msgstr "Felder und Lesezeichen vor Änderungen schützen" #. KGn3f #: protection.xhp @@ -13460,7 +13460,7 @@ "par_id621630957319188\n" "help.text" msgid "Choose Tools - Protect Document - Protect Fields to protect all fields against changes. Use this protection to prevent accidental changes in fields." -msgstr "" +msgstr "Wählen Sie Extras – Dokument schützen – Felder schützen, um alle Felder vor Änderungen zu schützen. Verwenden Sie diesen Schutz, um versehentliche Änderungen in Feldern zu verhindern." #. DDDVG #: protection.xhp @@ -13469,7 +13469,7 @@ "par_id111630957324575\n" "help.text" msgid "Choose Tools - Protect Document - Protect Bookmarks to protect all bookmarks against changes. Use this protection to prevent accidental bookmark changes." -msgstr "" +msgstr "Wählen Sie Extras – Dokument schützen – Lesezeichen schützen, um alle Lesezeichen vor Änderungen zu schützen. Verwenden Sie diesen Schutz, um versehentliche Lesezeichenänderungen zu verhindern." #. 8pBwt #: protection.xhp @@ -13685,7 +13685,7 @@ "par_id3154856\n" "help.text" msgid "In the Refer using list, select the format for the cross-reference. The format specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the target text, and \"Page\" inserts the page number where the target is located. For footnotes the footnote number is inserted." -msgstr "" +msgstr "Wählen Sie in der Liste Verweis verwenden das Format für den Querverweis aus. Das Format gibt den Informationstyp an, der als Querverweis angezeigt wird. Beispielsweise fügt \"Verweis\" den Zieltext ein und \"Seite\" fügt die Seitennummer ein, auf der sich das Ziel befindet. Bei Fußnoten wird die Fußnotennummer eingefügt." #. kcmB3 #: references.xhp @@ -13766,7 +13766,7 @@ "par_id3150968\n" "help.text" msgid "In the Refer using list, select the format of the cross-reference. The format specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the caption category and caption text of the object." -msgstr "" +msgstr "Wählen Sie in der Liste Verweis verwenden das Format des Querverweises aus. Das Format gibt den Informationstyp an, der als Querverweis angezeigt wird. Beispielsweise fügt \"Verweis\" die Beschriftungskategorie und den Beschriftungstext des Objekts ein." #. umWdg #: references.xhp @@ -14360,7 +14360,7 @@ "bm_id3150099\n" "help.text" msgid "searching; with regular expressions regular expressions;searching examples for regular expressions characters;finding all invisible characters;finding paragraph marks;searching" -msgstr "" +msgstr "Suchen; mit regulären AusdrückenReguläre Ausdrücke; suchenBeispiele für reguläre AusdrückeZeichen; alleUnsichtbaren Zeichen; suchenAbsatzzeichen; suchen" #. Q5Xoa #: search_regexp.xhp @@ -15863,7 +15863,7 @@ "par_id3149205\n" "help.text" msgid "In the Properties deck of the sidebar, go to the Character area and click the Superscript or Subscript buttons." -msgstr "" +msgstr "In der Seitenleiste Eigenschaften im Bereich Zeichen klicken Sie auf die Schaltflächen Hochgestellt oder Tiefgestellt." #. VwZA6 #: subscript.xhp @@ -16178,7 +16178,7 @@ "par_id3149594\n" "help.text" msgid "Open the $[officename] Calc spreadsheet containing the cell range that you want to insert." -msgstr "Öffnen Sie das $[officename] Calc Tabellendokument mit dem einzufügenden Zellbereich." +msgstr "Öffnen Sie das $[officename] Calc-Tabellendokument mit dem einzufügenden Zellbereich." #. eagZa #: table_insert.xhp @@ -16250,7 +16250,7 @@ "par_id3155893\n" "help.text" msgid "$[officename] $[officeversion] Spreadsheet" -msgstr "$[officename] $[officeversion] Tabellendokument" +msgstr "$[officename] $[officeversion]-Tabellendokument" #. NDeDE #: table_insert.xhp @@ -16385,7 +16385,7 @@ "par_id3151116\n" "help.text" msgid "Open the $[officename] Calc spreadsheet containing the cell range that you want to insert." -msgstr "Öffnen Sie das $[officename] Calc Tabellendokument mit dem einzufügenden Zellbereich." +msgstr "Öffnen Sie das $[officename] Calc-Tabellendokument mit dem einzufügenden Zellbereich." #. BYzon #: table_insert.xhp @@ -17060,7 +17060,7 @@ "par_id1120200910485778\n" "help.text" msgid "Choose Format - Text - Uppercase." -msgstr "Wählen Sie Format – Text – GROSSBUCHSTABEN." +msgstr "Wählen Sie Format – Text – GROẞBUCHSTABEN." #. NJpH2 #: text_capital.xhp @@ -17267,7 +17267,7 @@ "par_idN106A3\n" "help.text" msgid "On the Tools bar, click the Direct Cursor icon Icon. Alternatively, enable Direct Cursor by going to Edit - Direct Cursor Mode." -msgstr "" +msgstr "Klicken Sie in der Symbolleiste Extras auf das Symbol Direktcursor-Modus Symbol für Direktcursor-Modus. Alternativ können Sie den Direktcursor aktivieren, indem Sie Bearbeiten – Direkt-Cursor-Modus wählen." #. AmitQ #: text_direct_cursor.xhp @@ -17285,7 +17285,7 @@ "par_id561637758600046\n" "help.text" msgid "Align left" -msgstr "" +msgstr "Symbol für Links ausrichten" #. mVyJu #: text_direct_cursor.xhp @@ -17294,7 +17294,7 @@ "par_id321637758600046\n" "help.text" msgid "Align left" -msgstr "" +msgstr "Links ausrichten" #. Q8zi2 #: text_direct_cursor.xhp @@ -17303,7 +17303,7 @@ "par_id561637758600047\n" "help.text" msgid "Centered" -msgstr "" +msgstr "Symbol für Zentriert ausrichten" #. cHvxC #: text_direct_cursor.xhp @@ -17312,7 +17312,7 @@ "par_id321637758600047\n" "help.text" msgid "Centered" -msgstr "" +msgstr "Zentriert ausrichten" #. AvKq7 #: text_direct_cursor.xhp @@ -17321,7 +17321,7 @@ "par_id561637758600048\n" "help.text" msgid "Align right" -msgstr "" +msgstr "Symbol für Rechts ausrichten" #. EzADx #: text_direct_cursor.xhp @@ -17330,7 +17330,7 @@ "par_id321637758600048\n" "help.text" msgid "Align right" -msgstr "" +msgstr "Rechts ausrichten" #. EuMGF #: text_direct_cursor.xhp @@ -18788,7 +18788,7 @@ "bm_id3155174\n" "help.text" msgid "numbering;manually/by styles list styles manual numbering in text paragraph styles;numbering" -msgstr "" +msgstr "Nummerierung; manuell/mit FormatvorlagenListenvorlagenmanuelle Nummerierung im TextAbsatzvorlagen; Nummerierung" #. FizBP #: using_numbering.xhp @@ -18815,7 +18815,7 @@ "par_id31616154131555\n" "help.text" msgid "If you want numbered headings, use Tools - Chapter Numbering, instead of numbering manually." -msgstr "" +msgstr "Wenn Sie nummerierte Überschriften wünschen, verwenden Sie Extras – Kapitelnummerierung, anstatt sie manuell zu nummerieren." #. Dh8sW #: using_numbering.xhp diff -Nru libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter.po libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter.po --- libreoffice-7.3.4/translations/source/de/helpcontent2/source/text/swriter.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/helpcontent2/source/text/swriter.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-02-14 05:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548481633.000000\n" #. x2qZ6 @@ -2876,7 +2876,7 @@ "par_id3155137\n" "help.text" msgid "The drag-and-drop feature enables you to work quickly and efficiently with text documents in $[officename]. For example, you can drag-and-drop objects, such as graphics from the Gallery, from one location to another in the same document, or between open $[officename] documents." -msgstr "Die Funktion Ziehen-und-Ablegen ermöglicht eine schnelle und effiziente Arbeit mit Textdokumenten in $[officename]. Sie können beispielsweise Objekte wie Grafiken aus der Gallery innerhalb eines Dokuments oder zwischen aktiven $[officename] Dokumenten ziehen und ablegen." +msgstr "Die Funktion Ziehen-und-Ablegen ermöglicht eine schnelle und effiziente Arbeit mit Textdokumenten in $[officename]. Sie können beispielsweise Objekte wie Grafiken aus der Gallery innerhalb eines Dokuments oder zwischen aktiven $[officename]-Dokumenten Ziehen-und-Ablegen." #. D3wvZ #: main0503.xhp diff -Nru libreoffice-7.3.4/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.5/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.4/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-07-15 19:12:51.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-03-31 10:35+0200\n" -"PO-Revision-Date: 2022-02-05 19:39+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: German \n" "Language: de\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562386506.000000\n" #. tBfTE @@ -2201,7 +2201,7 @@ "OOO_CONTROL_169\n" "LngText.text" msgid "If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard." -msgstr "Um Ihre Installationseinstellungen zu überprüfen oder zu ändern, klicken Sie auf »Zurück«. Klicken Sie auf »Abbrechen«, um den Assistenten zu beenden." +msgstr "Um Ihre Installationseinstellungen zu überprüfen oder zu ändern, klicken Sie auf »Zurück«. Klicken Sie auf »Abbruch«, um den Assistenten zu beenden." #. tGr9B #: Control.ulf diff -Nru libreoffice-7.3.4/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565256511.000000\n" #. W5ukN @@ -3174,7 +3174,7 @@ "Label\n" "value.text" msgid "Unmerge Cells" -msgstr "Zellen tei~len" +msgstr "Zellen ~trennen" #. qJGdH #: CalcCommands.xcu @@ -8224,7 +8224,7 @@ "TooltipLabel\n" "value.text" msgid "Show Gluepoint Functions" -msgstr "Klebepunktfunktionen anzeigen" +msgstr "Klebepunkte" #. KvopQ #: DrawImpressCommands.xcu @@ -19976,7 +19976,7 @@ "Label\n" "value.text" msgid "~UPPERCASE" -msgstr "~GROSSBUCHSTABEN" +msgstr "~GROẞBUCHSTABEN" #. m4BD7 #: GenericCommands.xcu @@ -20016,7 +20016,7 @@ "TooltipLabel\n" "value.text" msgid "Cycle Case (Title Case, Sentence case, UPPERCASE, lowercase)" -msgstr "Schreibweise rotieren (Erster Buchstabe Groß, Nur satzanfang groß, GROSSBUCHSTABEN, kleinbuchstaben)" +msgstr "Schreibweise rotieren (Erster Buchstabe Groß, Nur satzanfang groß, GROẞBUCHSTABEN, kleinbuchstaben)" #. JUhRq #: GenericCommands.xcu @@ -21966,7 +21966,7 @@ "Label\n" "value.text" msgid "Clone" -msgstr "Übertragen" +msgstr "Formatierung übertragen" #. YGsYs #: GenericCommands.xcu @@ -21986,7 +21986,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click for multi-selection)" -msgstr "Format übertragen (Doppelklick für Mehrfachauswahl)" +msgstr "Formatierung übertragen (Doppelklick für Mehrfachauswahl)" #. Kx4N5 #: GenericCommands.xcu @@ -23726,7 +23726,7 @@ "ContextLabel\n" "value.text" msgid "Auto-Redact" -msgstr "Auto~-Redigierung" +msgstr "Auto~-Redigierung…" #. kfBEt #: GenericCommands.xcu @@ -30296,7 +30296,7 @@ "TooltipLabel\n" "value.text" msgid "Show change authorship in tooltips" -msgstr "Autor der Änderung in Tooltips anzeigen" +msgstr "Autor der Änderung in Tooltipps anzeigen" #. rYNAa #: WriterCommands.xcu @@ -31136,7 +31136,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Field" -msgstr "Feld einfügen" +msgstr "Feldbefehl einfügen" #. vfTmp #: WriterCommands.xcu @@ -34486,7 +34486,7 @@ "Label\n" "value.text" msgid "Clone" -msgstr "Übertragen" +msgstr "Formatierung übertragen" #. oZiqw #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/de/sc/messages.po libreoffice-7.3.5/translations/source/de/sc/messages.po --- libreoffice-7.3.4/translations/source/de/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565592942.000000\n" #. kBovX @@ -68,7 +68,7 @@ #: sc/inc/compiler.hrc:36 msgctxt "RID_FUNCTION_CATEGORIES" msgid "Spreadsheet" -msgstr "Tabellendokument" +msgstr "Tabelle" #. ZUnEM #: sc/inc/compiler.hrc:37 @@ -23747,19 +23747,19 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:118 msgctxt "imoptdialog|fieldft" msgid "_Field delimiter:" -msgstr "_Feldtrenner:" +msgstr "_Feldtrennzeichen:" #. bhjBy #: sc/uiconfig/scalc/ui/imoptdialog.ui:132 msgctxt "imoptdialog|textft" msgid "Strin_g delimiter:" -msgstr "Zeichenketten-Trenner:" +msgstr "Texttrennzeichen:" #. Ed9o4 #: sc/uiconfig/scalc/ui/imoptdialog.ui:144 msgctxt "imoptdialog|asshown" msgid "Save cell content as _shown" -msgstr "Zellinhalt _wie angezeigt speichern" +msgstr "Zellinhalte _wie angezeigt speichern" #. kWBhB #: sc/uiconfig/scalc/ui/imoptdialog.ui:152 @@ -23777,13 +23777,13 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:179 msgctxt "imoptdialog|quoteall" msgid "_Quote all text cells" -msgstr "Text zwischen Hoch_kommas ausgeben" +msgstr "Text zwischen Hoch_kommata ausgeben" #. vboDu #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Exportiert alle Textzellen mit vorangestellten und abschließenden Hochkommas, so wie im Feld Texttrenner angegeben. Ist diese Option nicht gesetzt, werden nur Textfelder in Hochkommas gesetzt, die ein Feldtrennzeichen enthalten." +msgstr "Exportiert alle Textzellen mit vorangestellten und abschließenden Hochkommata, so wie im Feld Texttrennzeichen angegeben. Ist diese Option nicht gesetzt, werden nur Textfelder in Hochkommata gesetzt, die ein Feldtrennzeichen enthalten." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -23801,13 +23801,13 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:231 msgctxt "imoptdialog|extended_tip|field" msgid "Choose or enter the field delimiter, which separates data fields." -msgstr "Wählen Sie ein Zeichen als Feldtrenner, das die einzelnen Datenfelder voneinander trennt, oder geben Sie einen ein." +msgstr "Wählen Sie ein Feldtrennzeichen, das die einzelnen Datenfelder voneinander trennt, oder geben Sie eines ein." #. hRECE #: sc/uiconfig/scalc/ui/imoptdialog.ui:254 msgctxt "imoptdialog|extended_tip|text" msgid "Choose or enter the text delimiter, which encloses every data field." -msgstr "Wählen Sie einen Feldtrenner, der die einzelnen Datenfelder einschließt, oder geben Sie einen ein." +msgstr "Wählen Sie ein Feldtrennzeichen, das die einzelnen Datenfelder einschließt, oder geben Sie eines ein." #. D2hqs #: sc/uiconfig/scalc/ui/imoptdialog.ui:276 @@ -25253,97 +25253,97 @@ msgstr "~Ansicht" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Bild" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Bild" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zeichnen" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Zeichnen" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Medien" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Medien" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Drucken" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Drucken" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Formular" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Formular" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Extras" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "E~xtras" @@ -25702,139 +25702,139 @@ msgstr "_Bild" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Anordnen" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Farbe" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Gitter" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Sprache" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Ä_nderungen" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "K_ommentare" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Vergleichen" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Ansicht" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Zeichnen" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Bearbeiten" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Anordnen" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Ansicht" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Gruppieren" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Schriftart" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Ausrichtung" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Ansicht" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Einfügen" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medien" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Rahmen" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Anordnen" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Gitter" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Ansicht" @@ -31759,7 +31759,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:279 msgctxt "textimportcsv|extended_tip|toseparatedby" msgid "Select the separator used in your data." -msgstr "Wählen Sie den von Ihren Daten verwendeten Feldtrenner." +msgstr "Wählen Sie das von Ihren Daten verwendete Feldtrennzeichen." #. 2BKqB #: sc/uiconfig/scalc/ui/textimportcsv.ui:307 @@ -31879,13 +31879,13 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:590 msgctxt "textimportcsv|quotedfieldastext" msgid "F_ormat quoted field as text" -msgstr "Werte in H_ochkomma als Text formatieren" +msgstr "Werte in H_ochkommata als Text formatieren" #. VAC6B #: sc/uiconfig/scalc/ui/textimportcsv.ui:598 msgctxt "textimportcsv|extended_tip|quotedfieldastext" msgid "When this option is enabled, fields or cells whose values are quoted in their entirety (the first and last characters of the value equal the text delimiter) are imported as text." -msgstr "Ist diese Option aktiviert, werden Zellen, deren Inhalte vollständig in Hochkomma eingeschlossen sind (das erste und letzte Zeichen entspricht dem Zeichenketten-Trenner), als Text importiert." +msgstr "Ist diese Option aktiviert, werden Felder oder Zellen, deren Inhalte vollständig in Hochkommata eingeschlossen sind (das erste und letzte Zeichen entspricht dem Texttrennzeichen), als Text importiert." #. nBNfT #: sc/uiconfig/scalc/ui/textimportcsv.ui:609 @@ -31969,7 +31969,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:855 msgctxt "textimportcsv|extended_tip|TextImportCsvDialog" msgid "Sets the import options for delimited data." -msgstr "Wählen Sie hier die Optionen für den Import von Daten aus einer Textdatei mit Feldtrennern." +msgstr "Wählen Sie hier die Optionen für den Import von Daten aus einer Textdatei mit Feldtrennzeichen." #. RNFRE #: sc/uiconfig/scalc/ui/textimportoptions.ui:8 diff -Nru libreoffice-7.3.4/translations/source/de/sd/messages.po libreoffice-7.3.5/translations/source/de/sd/messages.po --- libreoffice-7.3.4/translations/source/de/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-03-11 14:07+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562386789.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabelle" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Bild" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Bild" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zeichnen" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Zeichnen" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medien" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Medien" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Formular" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Formular" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Master" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Extras" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Extras" @@ -7062,109 +7062,109 @@ msgstr "~Tabelle" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Bild" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "~Bild" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zeichnen" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Zeichnen" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Medien" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Medien" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Formular" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Formular" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Master" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "_3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "~3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "E_xtras" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "E~xtras" @@ -9710,7 +9710,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275 msgctxt "slidetransitionspanel|rb_auto_after" msgid "After:" -msgstr "Danach:" +msgstr "Nach:" #. rJJQy #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287 diff -Nru libreoffice-7.3.4/translations/source/de/sfx2/messages.po libreoffice-7.3.5/translations/source/de/sfx2/messages.po --- libreoffice-7.3.4/translations/source/de/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-04-05 10:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1560714585.000000\n" #. bHbFE @@ -1083,19 +1083,19 @@ #: include/sfx2/strings.hrc:198 msgctxt "STR_REDACTION_TARGET" msgid "Target" -msgstr "Ziel" +msgstr "Zielvorgabe" #. m2i7V #: include/sfx2/strings.hrc:199 msgctxt "STR_REDACTION_LOAD_TARGETS" msgid "Load Targets" -msgstr "Ziele laden" +msgstr "Zielvorgaben laden" #. HgrwX #: include/sfx2/strings.hrc:200 msgctxt "STR_REDACTION_SAVE_TARGETS" msgid "Save Targets" -msgstr "Ziele speichern" +msgstr "Zielvorgaben speichern" #. MYMTF #: include/sfx2/strings.hrc:201 @@ -1107,37 +1107,37 @@ #: include/sfx2/strings.hrc:202 msgctxt "STR_REDACTION_TARGET_NAME_CLASH" msgid "There is already a target with this name" -msgstr "Es existiert bereits ein Ziel mit diesem Namen" +msgstr "Es existiert bereits eine Zielvorgabe mit diesem Namen" #. s248s #: include/sfx2/strings.hrc:203 msgctxt "STR_REDACTION_MULTI_EDIT" msgid "You have selected multiple targets, but only one target can be edited at once." -msgstr "Sie haben mehrere Ziele ausgewählt, es kann aber nur ein Ziel zurzeit bearbeitet werden." +msgstr "Sie haben mehrere Zielvorgaben ausgewählt, es kann aber nur eine Zielvorgabe zurzeit bearbeitet werden." #. BTayC #: include/sfx2/strings.hrc:204 msgctxt "STR_REDACTION_MULTI_DELETE" msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?" -msgstr "Möchten Sie wirklich $(TARGETSCOUNT) Ziele auf einmal löschen?" +msgstr "Möchten Sie wirklich $(TARGETSCOUNT) Zielvorgaben auf einmal löschen?" #. qFqDC #: include/sfx2/strings.hrc:205 msgctxt "STR_REDACTION_JSON_FILE_FILTER" msgid "Target Set (*.json)" -msgstr "Zielset (*.json)" +msgstr "Zielvorgabe-Set (*.json)" #. EGCo6 #: include/sfx2/strings.hrc:206 msgctxt "STR_REDACTION_EDIT_TARGET" msgid "Edit Target" -msgstr "Ziel bearbeiten" +msgstr "Zielvorgabe bearbeiten" #. ACY9D #: include/sfx2/strings.hrc:207 msgctxt "STR_REDACTION_TARGET_ADD_ERROR" msgid "An error occurred while adding new target. Please report this incident." -msgstr "Beim Hinzufügen eines neuen Ziels ist ein Fehler aufgetreten. Bitte melden Sie diesen Vorfall." +msgstr "Beim Hinzufügen einer neuen Zielvorgabe ist ein Fehler aufgetreten. Bitte melden Sie diesen Vorfall." #. 6Jog7 #: include/sfx2/strings.hrc:208 @@ -2665,7 +2665,7 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:8 msgctxt "addtargetdialog|AddTargetDialog" msgid "Add Target" -msgstr "Ziel hinzufügen" +msgstr "Zielvorgabe hinzufügen" #. JC8Vd #: sfx2/uiconfig/ui/addtargetdialog.ui:89 @@ -2803,7 +2803,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:122 msgctxt "autoredactdialog|target" msgid "Target Name" -msgstr "Zielname" +msgstr "Name" #. szYkX #: sfx2/uiconfig/ui/autoredactdialog.ui:135 @@ -2821,7 +2821,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:161 msgctxt "autoredactdialog|target" msgid "Match case" -msgstr "Groß-/Kleinschreibung beachten" +msgstr "Groß-/Kleinschreibung" #. obHtC #: sfx2/uiconfig/ui/autoredactdialog.ui:174 @@ -2833,37 +2833,37 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:202 msgctxt "menuassignpage|contentslabel" msgid "_Redaction Targets" -msgstr "~Redigierungsziele" +msgstr "~Redigierungs-Zielvorgaben" #. E4GWo #: sfx2/uiconfig/ui/autoredactdialog.ui:222 msgctxt "autoredactdialog|btnLoadTargets" msgid "Load Targets" -msgstr "Ziele laden" +msgstr "Zielvorgaben laden" #. tpbYA #: sfx2/uiconfig/ui/autoredactdialog.ui:235 msgctxt "autoredactdialog|btnSaveTargets" msgid "Save Targets" -msgstr "Ziele speichern" +msgstr "Zielvorgaben speichern" #. TQg85 #: sfx2/uiconfig/ui/autoredactdialog.ui:261 msgctxt "autoredactdialog|add" msgid "Add Target" -msgstr "Ziel hinzufügen" +msgstr "Zielvorgabe hinzufügen" #. 4TvHR #: sfx2/uiconfig/ui/autoredactdialog.ui:274 msgctxt "autoredactdialog|edit" msgid "Edit Target" -msgstr "Ziel bearbeiten" +msgstr "Zielvorgabe bearbeiten" #. knEqb #: sfx2/uiconfig/ui/autoredactdialog.ui:287 msgctxt "autoredactdialog|delete" msgid "Delete Target" -msgstr "Ziel löschen" +msgstr "Zielvorgabe löschen" #. iLkdK #: sfx2/uiconfig/ui/bookmarkdialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/de/svtools/messages.po libreoffice-7.3.5/translations/source/de/svtools/messages.po --- libreoffice-7.3.4/translations/source/de/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2021-12-27 06:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559619492.000000\n" #. fLdeV @@ -2770,13 +2770,13 @@ #: svtools/inc/langtab.hrc:63 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Azerbaijani Latin" -msgstr "Aserbaidschanisch, Latein" +msgstr "Aserbaidschanisch, lateinisch" #. juADB #: svtools/inc/langtab.hrc:64 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Azerbaijani Cyrillic" -msgstr "Aserbaidschanisch, Kyrillisch" +msgstr "Aserbaidschanisch, kyrillisch" #. C3C7G #: svtools/inc/langtab.hrc:65 @@ -2800,7 +2800,7 @@ #: svtools/inc/langtab.hrc:68 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Belarusian" -msgstr "Weißrussisch" +msgstr "Belarusisch" #. 3SEoJ #: svtools/inc/langtab.hrc:69 @@ -3304,13 +3304,13 @@ #: svtools/inc/langtab.hrc:152 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Serbian Cyrillic (Serbia and Montenegro)" -msgstr "Serbisch, Kyrillisch (Serbien und Montenegro)" +msgstr "Serbisch, kyrillisch (Serbien und Montenegro)" #. sFnB8 #: svtools/inc/langtab.hrc:153 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Serbian Latin (Serbia and Montenegro)" -msgstr "Serbisch, Latein (Serbien und Montenegro)" +msgstr "Serbisch, lateinisch (Serbien und Montenegro)" #. WbsFA #: svtools/inc/langtab.hrc:154 @@ -3562,13 +3562,13 @@ #: svtools/inc/langtab.hrc:195 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Uzbek Latin" -msgstr "Usbekisch, Latein" +msgstr "Usbekisch, lateinisch" #. HrnFi #: svtools/inc/langtab.hrc:196 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Uzbek Cyrillic" -msgstr "Usbekisch (Kyrillisch)" +msgstr "Usbekisch, kyrillisch" #. seQBA #: svtools/inc/langtab.hrc:197 @@ -3616,7 +3616,7 @@ #: svtools/inc/langtab.hrc:204 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Northern Sotho" -msgstr "Nördliches Sotho" +msgstr "Nord-Sotho" #. iZE5p #: svtools/inc/langtab.hrc:205 @@ -3670,37 +3670,37 @@ #: svtools/inc/langtab.hrc:213 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Northern (Turkey)" -msgstr "Kurdisch, Nördliches (Türkei)" +msgstr "Nordkurdisch (Türkei)" #. JBSdg #: svtools/inc/langtab.hrc:214 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Northern (Syria)" -msgstr "Kurdisch, Nördliches (Syrien)" +msgstr "Nordkurdisch (Syrien)" #. 7LmT2 #: svtools/inc/langtab.hrc:215 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Central (Iraq)" -msgstr "Kurdisch, Zentral (Irak)" +msgstr "Zentralkurdisch (Irak)" #. rzDHD #: svtools/inc/langtab.hrc:216 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Central (Iran)" -msgstr "Kurdisch, Zentral (Iran)" +msgstr "Zentralkurdisch (Iran)" #. CeAFw #: svtools/inc/langtab.hrc:217 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Southern (Iran)" -msgstr "Kurdisch, Südliches (Iran)" +msgstr "Südkurdisch (Iran)" #. epbri #: svtools/inc/langtab.hrc:218 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kurdish, Southern (Iraq)" -msgstr "Kurdisch, Südliches (Irak)" +msgstr "Südkurdisch (Irak)" #. 2KhAB #: svtools/inc/langtab.hrc:219 @@ -3784,13 +3784,13 @@ #: svtools/inc/langtab.hrc:232 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Ndebele, South" -msgstr "Süd-Ndebele" +msgstr "Ndebele" #. GAkRJ #: svtools/inc/langtab.hrc:233 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Southern Sotho" -msgstr "Sesotho" +msgstr "Süd-Sotho" #. 2beka #: svtools/inc/langtab.hrc:234 @@ -3814,7 +3814,7 @@ #: svtools/inc/langtab.hrc:237 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tswana (Botswana)" -msgstr "Tswana (Botswana)" +msgstr "Setswana" #. aCLs3 #: svtools/inc/langtab.hrc:238 @@ -4036,55 +4036,55 @@ #: svtools/inc/langtab.hrc:274 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Inari (Finland)" -msgstr "Sami, Inari (Finnland)" +msgstr "Samisch, Inari (Finnland)" #. FJAQR #: svtools/inc/langtab.hrc:275 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Lule (Norway)" -msgstr "Sami, Lule (Norwegen)" +msgstr "Samisch, Lule (Norwegen)" #. yBxW5 #: svtools/inc/langtab.hrc:276 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Lule (Sweden)" -msgstr "Sami, Lule (Schweden)" +msgstr "Samisch, Lule (Schweden)" #. 8yPLy #: svtools/inc/langtab.hrc:277 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Northern (Finland)" -msgstr "Sami, nördliches (Finnland)" +msgstr "Nordsamisch (Finnland)" #. SQTD9 #: svtools/inc/langtab.hrc:278 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Northern (Norway)" -msgstr "Sami, nördliches (Norwegen)" +msgstr "Nordsamisch (Norwegen)" #. BHGpD #: svtools/inc/langtab.hrc:279 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Northern (Sweden)" -msgstr "Sami, nördliches (Schweden)" +msgstr "Nordsamisch (Schweden)" #. cdYkC #: svtools/inc/langtab.hrc:280 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Skolt (Finland)" -msgstr "Sami, Skolt (Finnland)" +msgstr "Samisch, Skolt (Finnland)" #. od3Hp #: svtools/inc/langtab.hrc:281 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Southern (Norway)" -msgstr "Sami, südliches (Norwegen)" +msgstr "Südsamisch (Norwegen)" #. 5Ueff #: svtools/inc/langtab.hrc:282 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Southern (Sweden)" -msgstr "Sami, südliches (Schweden)" +msgstr "Südsamisch (Schweden)" #. 7x4mU #: svtools/inc/langtab.hrc:283 @@ -4300,7 +4300,7 @@ #: svtools/inc/langtab.hrc:318 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kabyle Latin" -msgstr "Kabyle Latein" +msgstr "Kabylisch, lateinisch" #. MSnHB #: svtools/inc/langtab.hrc:319 @@ -4396,7 +4396,7 @@ #: svtools/inc/langtab.hrc:334 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Pali Latin" -msgstr "Pali Latin" +msgstr "Pali, lateinisch" #. eDDSm #: svtools/inc/langtab.hrc:335 @@ -4630,7 +4630,7 @@ #: svtools/inc/langtab.hrc:373 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Pite (Sweden)" -msgstr "Sami, Pite (Schweden)" +msgstr "Samisch, Pite (Schweden)" #. jp6C9 #: svtools/inc/langtab.hrc:374 @@ -4654,7 +4654,7 @@ #: svtools/inc/langtab.hrc:377 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Karakalpak Latin" -msgstr "Karakalpakisch (Latein)" +msgstr "Karakalpakisch, lateinisch" #. CkEC7 #: svtools/inc/langtab.hrc:378 @@ -4744,7 +4744,7 @@ #: svtools/inc/langtab.hrc:392 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kven Finnish" -msgstr "Kven-Finnisch" +msgstr "Kvenisch" #. zjNcC #: svtools/inc/langtab.hrc:393 @@ -4762,7 +4762,7 @@ #: svtools/inc/langtab.hrc:395 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Aranese" -msgstr "Aragonese" +msgstr "Aragonesisch" #. TaEzQ #: svtools/inc/langtab.hrc:396 @@ -4888,19 +4888,19 @@ #: svtools/inc/langtab.hrc:416 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Malay Arabic (Malaysia)" -msgstr "Malaiisch, arabische Schrift (Malaysia)" +msgstr "Malaiisch, arabisch (Malaysia)" #. AnrGG #: svtools/inc/langtab.hrc:417 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Malay Arabic (Brunei Darussalam)" -msgstr "Malaiisch, arabische Schrift (Brunei Darussalam)" +msgstr "Malaiisch, arabisch (Brunei Darussalam)" #. utBog #: svtools/inc/langtab.hrc:418 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Juǀ’hoan" -msgstr "Juǀ’hoan" +msgstr "Ju-Khoisan" #. jPaAH #: svtools/inc/langtab.hrc:419 @@ -4942,7 +4942,7 @@ #: svtools/inc/langtab.hrc:425 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Guadeloupean Creole French" -msgstr "Guadeloup-kreolisches Französisch" +msgstr "Französisch (Guadeloup-Kreolisch)" #. 2b2P4 #: svtools/inc/langtab.hrc:426 @@ -4978,7 +4978,7 @@ #: svtools/inc/langtab.hrc:431 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Pali Thai" -msgstr "Pali, thailändische Schrift" +msgstr "Pali, thailändisch" #. DGeeF #: svtools/inc/langtab.hrc:432 @@ -5020,13 +5020,13 @@ #: svtools/inc/langtab.hrc:438 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Latin" -msgstr "Interslawisch (Latein)" +msgstr "Interslawisch, lateinisch" #. DZBAE #: svtools/inc/langtab.hrc:439 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Cyrillic" -msgstr "Interslawisch (Kyrillisch)" +msgstr "Interslawisch, kyrillisch" #. fXSja #: svtools/uiconfig/ui/addresstemplatedialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/de/svx/messages.po libreoffice-7.3.5/translations/source/de/svx/messages.po --- libreoffice-7.3.4/translations/source/de/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559619898.000000\n" #. 3GkZj @@ -7012,7 +7012,7 @@ #: include/svx/strings.hrc:1259 msgctxt "RID_STR_METHOD_POST" msgid "Post" -msgstr "Senden" +msgstr "Post" #. XGRQA #: include/svx/strings.hrc:1260 @@ -12905,7 +12905,7 @@ #: svx/uiconfig/ui/accessibilitycheckentry.ui:30 msgctxt "accessibilitycheckentry|accessibilityCheckEntryGotoButton" msgid "Go to Issue" -msgstr "Zum Fehler gehen" +msgstr "Zum Problem gehen" #. k4D3g #: svx/uiconfig/ui/addconditiondialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/de/sw/messages.po libreoffice-7.3.5/translations/source/de/sw/messages.po --- libreoffice-7.3.4/translations/source/de/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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: Weblate 4.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562387341.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Verschiebt die ausgewählte Absatzvorlage in der Verzeichnishierarchie eine Ebene nach unten." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Vorlage" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Vorlagen" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Erstellt Verzeichniseinträge aus bestimmten Absatzvorlagen." @@ -11624,7 +11624,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:82 msgctxt "cardmediumpage|label2" msgid "Label text:" -msgstr "Beschriftungstext:" +msgstr "Etikettentext:" #. RczQE #: sw/uiconfig/swriter/ui/cardmediumpage.ui:113 @@ -11684,7 +11684,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:301 msgctxt "cardmediumpage|label6" msgid "Inscription" -msgstr "Beschriftung" +msgstr "Aufschrift" #. iFCWn #: sw/uiconfig/swriter/ui/cardmediumpage.ui:347 @@ -13955,37 +13955,37 @@ msgstr "Datenbank austauschen" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Festlegen" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Verwendete Datenbanken" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Verfügbare _Datenbanken" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Durchsuchen…" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Öffnet einen Dateiauswahldialog zum Öffnen von Datenbankdateien (*.odb). Die ausgewählte Datei wird der Liste der verfügbaren Datenbanken hinzugefügt." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Benutzen Sie Durchsuchen, um eine Datenbankdatei auszuwählen." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Führt die momentan verwendeten Datenbanken auf." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Listet die Datenbanken auf, die in %PRODUCTNAME registriert sind." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Datenbank austauschen" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Datenbank im Dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Ändert die Datenquellen für das aktuelle Dokument." @@ -20073,109 +20073,109 @@ msgstr "Aktuelles _Dokument verwenden" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Verwendet das aktuelle Writer-Dokument als Grundlage für das Serienbriefdokument." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "_Neues Dokument erstellen" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Erstellt ein neues Writer-Dokument zur Verwendung als Serienbrief." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "_Bestehendes Dokument verwenden" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Wählen Sie ein vorhandenes Writer-Dokument, das als Grundlage für das Serienbriefdokument verwendet werden soll." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Aus _Vorlage erstellen" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Wählen Sie die Vorlage, mit der das Serienbriefdokument erstellt werden soll." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Gespeichertes Ausgangsdokument verwenden" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Verwenden Sie ein vorhandenes Serienbriefdokument als Grundlage für ein neues Serienbriefdokument." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Wählen Sie das Dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Durchsuchen…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 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 Sie auf »Öffnen«." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "D_urchsuchen…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Öffnet einen Dialog zur Dokumentvorlagenauswahl." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Die Datenquelle des aktuellen Dokuments ist nicht registriert. Bitte tauschen Sie die Datenquelle aus." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Datenquelle austauschen…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Wählen Sie das Ausgangsdokument des Serienbriefes aus" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Geben Sie das Dokument an, das als Grundlage für das Serienbriefdokument verwendet werden soll." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Position und Größe" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Optionen" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Umlauf" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Umrandung" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Fläche" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparenz" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Aktualisieren" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Zeigt Statistiken der aktuellen Datei." @@ -29483,7 +29483,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:309 msgctxt "viewoptionspage|changestooltip" msgid "_Tooltips on tracked changes" -msgstr "_Tooltips für aufgezeichnete Änderungen" +msgstr "_Tooltipps für aufgezeichnete Änderungen" #. 8no6x #: sw/uiconfig/swriter/ui/viewoptionspage.ui:327 diff -Nru libreoffice-7.3.4/translations/source/de/vcl/messages.po libreoffice-7.3.5/translations/source/de/vcl/messages.po --- libreoffice-7.3.4/translations/source/de/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/de/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-02-28 03:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562387351.000000\n" #. k5jTM @@ -1451,7 +1451,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:38 msgctxt "STR_FONT_FEATURE_ID_DLIG" msgid "Discretionary Ligatures" -msgstr "Ersetzungs-Ligaturen" +msgstr "Ersetzungsligaturen" #. N7Q8C #: vcl/inc/font/OpenTypeFeatureStrings.hrc:39 @@ -2324,169 +2324,169 @@ msgstr "Druckt mehrere Seiten auf ein Blatt." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Benutzerdefiniert" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Wählen Sie, wie viele Seiten auf ein Blatt gedruckt werden sollen." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Seiten:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Wählen Sie die Anzahl der Zeilen." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "zu" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Wählen Sie die Anzahl der Spalten." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Abstand:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Geben Sie den Abstand zwischen den einzelnen Seiten auf einem Blatt an." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "zwischen Seiten" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Abstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Geben Sie den Abstand zwischen den gedruckten Seiten und dem Papierrand an." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "zum Blattrand" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Reihenfolge:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Von links nach rechts, dann nach unten" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Von oben nach unten, dann nach rechts" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Von oben nach unten, dann nach links" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Von rechts nach links, dann nach unten" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Wählen Sie die Reihenfolge, in der die Seiten gedruckt werden sollen." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Einen Rahmen um jede Seite zeichnen" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Druckt einen Rahmen um jede Seite." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broschüre" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Wählen Sie diese Option, um das Dokument im Format einer Broschüre zu drucken." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Sortierungsvorschau" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Ändern Sie die Anordnung der Seiten, die auf jedes Blatt Papier gedruckt werden sollen. Die Vorschau zeigt, wie jedes letzte Blatt aussehen wird." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Weitere" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Seitenlayout" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Standard" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Druckt das aktuelle Dokument, die Auswahl oder die angegebenen Seiten. Sie können auch die Druckoptionen für das aktuelle Dokument vorgeben." diff -Nru libreoffice-7.3.4/translations/source/dgo/chart2/messages.po libreoffice-7.3.5/translations/source/dgo/chart2/messages.po --- libreoffice-7.3.4/translations/source/dgo/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3709,7 +3709,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/cui/messages.po libreoffice-7.3.5/translations/source/dgo/cui/messages.po --- libreoffice-7.3.4/translations/source/dgo/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17656,177 +17656,153 @@ msgid "Automatic" msgstr " स्वचलत" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High-contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Screen font anti-aliasin_g" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 #, fuzzy msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "सूचियें गी छांटो" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/dbaccess/messages.po libreoffice-7.3.5/translations/source/dgo/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/dgo/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: dgo (generated) \n" @@ -3455,75 +3455,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "जड़त डैटाबेस" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "तौलै गै बरते दा " #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "खोह्‌ल्लो" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3531,7 +3531,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/extensions/messages.po libreoffice-7.3.5/translations/source/dgo/extensions/messages.po --- libreoffice-7.3.4/translations/source/dgo/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -307,600 +307,588 @@ msgid "Refresh form" msgstr "फ़ार्म सजराकरण करो" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "थ्होना" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "जवाब डाका पाओ/ डाक" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "बहुभागी" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "इबारत" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "मानक (छुट्टा) " #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "मानक (छुट्टा) " #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "मानक (छुट्टा) " #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "मानक (लम्मा) " #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "चुनेआ नेईं" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "चुनो " #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "परिभाशत नेईं" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सब रकाडें" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "क्रियाशील रकाड" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "चालू तरीक " #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "नेईं " #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "हां " #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "उद्‌गम रूप" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "कोरा" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr " रोको\t" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "कोई नेईं" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "केह्‌रा " #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "बहु" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "फलाऽ" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "आडा " #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "खड़ोतमां" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "बिलानिर्देश" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ठीक ऐ " #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द करो" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदद " #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "चुने दे टिप्पणी" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "चुनंदा प्रविश्टी दी स्थिति" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "केह्‌री -लकीर" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "बहु-लकीर " #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "रूप-रचना सनैं बहु-लकीर " #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "कोई नेईं" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "आडा " #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "खड़ोतमां" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दोऐ " #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "त्रै आयामी" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "पद्धरा" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "खब्बा धुर उप्पर " #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "खब्बा केंदरत " #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "खब्बा थल्ला" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "सज्जा धुर उप्पर" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "सज्जा केंदरत" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "सज्जा थल्ला" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "उप्पर खब्बै" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "उप्पर केंदरत " #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "उप्पर सज्जै" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ख’ल्ल खब्बै " #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ख’ल्ल केंदरत" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ख’ल्ल सज्जै " #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केंदरतCentred" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "सांभी-सम्हाली रक्खो " #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "प्रतिस्थापन करो" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "तैह् करो" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "नेईं " #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "अनुपात रक्खो" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "खब्बे-शा-सज्जै " #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "सज्जेआ खब्बै" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "सुपरआर्डिनेट चीज सैट्टिंगां बरतो" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "कदें नेईं" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "जिसलै फोकस" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "म्हेशा (~t)" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "पैह्‌रा " #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "संप्रतीक" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "सफे च" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "चगाठ " #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "संप्रतीक" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "सफे च" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/dgo/fpicker/messages.po libreoffice-7.3.5/translations/source/dgo/fpicker/messages.po --- libreoffice-7.3.4/translations/source/dgo/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फाइल नांऽ " #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फाइल ~किस्म:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~सिर्फ-पढ़नजोग" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "पासवर्ड सनैं बचाइयै रक्खो " #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वचलत फाइल नांऽ विस्तार " #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "पूनी सैट्टिंगें दा संपादन करो" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/sc/messages.po libreoffice-7.3.5/translations/source/dgo/sc/messages.po --- libreoffice-7.3.4/translations/source/dgo/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25932,97 +25932,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26411,158 +26411,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "बनकाओ\t" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ग्रिड " #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाशा" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "समीक्षा" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "नोट(बहु.)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr " द्रिश्श\t" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "संपादन करो\t" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "बनकाओ\t" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr " द्रिश्श\t" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "समूह्" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फांट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "समायोजन" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr " द्रिश्श\t" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "समावेश करो " #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "मीडिया" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr " चगाठ " #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "बनकाओ\t" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ग्रिड " #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/dgo/sd/messages.po libreoffice-7.3.5/translations/source/dgo/sd/messages.po --- libreoffice-7.3.4/translations/source/dgo/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4261,109 +4261,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7245,109 +7245,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/sw/messages.po libreoffice-7.3.5/translations/source/dgo/sw/messages.po --- libreoffice-7.3.4/translations/source/dgo/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:00+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10772,20 +10772,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैलियां " #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14364,38 +14364,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाशत करो\t" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "तपाश करो... " #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14405,31 +14405,31 @@ " Use the browse button to select a database file." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20748,112 +20748,112 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "तपाश करो... " #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "तपाश करो... " #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "मेल विलय लेई शुरुआती दस्तावेज चुनो" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23040,52 +23040,52 @@ msgstr "चीज" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "किस्म " #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "विकल्प(बहु.) " #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "लपेट (~k)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपरलिंक " #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "बाडर (बहु.)किनारा" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शिता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मैक्रो" @@ -28013,7 +28013,7 @@ msgstr "अपडेट करो" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dgo/vcl/messages.po libreoffice-7.3.5/translations/source/dgo/vcl/messages.po --- libreoffice-7.3.4/translations/source/dgo/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dgo/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2355,171 +2355,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "विशेश: " #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "आसेआ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "सफें बशक्हार" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "शीट बाडर गी" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "हर सफे दे दोआलै बाडर खिच्चो" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "जानकारी पोथी " #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dsb/chart2/messages.po libreoffice-7.3.5/translations/source/dsb/chart2/messages.po --- libreoffice-7.3.4/translations/source/dsb/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-04-12 11:43+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547385228.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Póstaja licbu linijow za słupowe a linijowe diagramy." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Wubjeŕśo zakładny diagramowy typ." diff -Nru libreoffice-7.3.4/translations/source/dsb/cui/messages.po libreoffice-7.3.5/translations/source/dsb/cui/messages.po --- libreoffice-7.3.4/translations/source/dsb/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564571080.000000\n" #. GyY9M @@ -9680,7 +9680,7 @@ #: cui/uiconfig/ui/gradientpage.ui:222 msgctxt "gradientpage|gradienttypelb" msgid "Ellipsoid" -msgstr "Ellipsoid" +msgstr "Elipsojty" #. 7FRe4 #: cui/uiconfig/ui/gradientpage.ui:223 @@ -16187,7 +16187,7 @@ #: cui/uiconfig/ui/optsavepage.ui:355 msgctxt "optsavepage|odfversion" msgid "1.2 Extended" -msgstr "1.2 Extended" +msgstr "1.2 rozšyrjony" #. vLmeZ #: cui/uiconfig/ui/optsavepage.ui:356 @@ -17137,176 +17137,152 @@ msgid "Automatic" msgstr "Awtomatiski" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Wusoki kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasiski" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Pódawa symbolowy stil za symbole w symbolowych rědkach a dialogach." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Sy_mbolowy stil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Pśidajśo dalšne symbolowe drastwy pśez rozšyrjenja" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Symbolowy stil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Pomina se nowy start" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Hard_warowe póspěšenje wužywaś" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Direktny pśistup k funkcijam hardwary grafiskego wózjawjeńskego adaptera, aby se zwobraznjenje na wobrazowce pólěpšyło." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Wugł_aźenje kantow wužywaś" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Gaž se pódpěra, móžośo antialiasing grafiki zmóžniś abo znjemóžniś. Ze zmóžnjonym antialiasingom, zwobraznjenje nejwěcej grafiskich objektow gładše wuglěda, a z mjenjej artefaktami." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia za kreslenje wužywaś" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia za kreslenje softwary wunuźiś" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Pomina se nowy start. To móžo wužywanjeju grafikowych gónjakow zajźowaś." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia jo tuchylu zmóžnjona." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia jo tuchylu znjemóžnjona." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Wudaśe grafiki" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Pśeg_lěd pismow pokazaś" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Pokazujo mjenja wuběrajobnych pismow we wótpowědnym pismje, na pśikład pisma w pólu „Pismo“ w rědce „Formatěrowanje“." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "W_ugłaźenje pismow wobrazowki" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Wubjeŕśo toś to nastajenje, aby tekst na wobrazowce gładšy wuglědał." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "wó_t:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Zapódajśo nejmjeńšu pismowu wjelikosć, na kótaruž se ma antialiasing nałožyś." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Lisćina pismow" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafikowe testy pśewjasć" @@ -21564,7 +21540,7 @@ #: cui/uiconfig/ui/transparencytabpage.ui:291 msgctxt "transparencytabpage|liststoreTYPE" msgid "Ellipsoid" -msgstr "Ellipsoid" +msgstr "Elipsojty" #. GDBS5 #: cui/uiconfig/ui/transparencytabpage.ui:292 diff -Nru libreoffice-7.3.4/translations/source/dsb/dbaccess/messages.po libreoffice-7.3.5/translations/source/dsb/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/dsb/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562264362.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "_Nowu datowu banku napóraś" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Wubjeŕśo toś to nastajenje, aby nowu datowu banku załožył." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Zasajźona datowa banka:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Eksistěrujucu _dataju datoweje banki wócyniś" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Wubjeŕśo, aby dataju datoweje banki z lisćiny njedawno wužytych datajow wócynił abo z dialoga datajowego wuběranja." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Ako slědna wužyta:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Wubjeŕśo dataju datoweje banki z lisćiny njedawno wužytych datajow. Klikniśo na Dokóńcyś, ay dataju ned wócynił a asistent spušćił." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Wócyniś" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Wócynja dialog wuběranja datajow, źož móžośo dataju datoweje banki wubraś. Klikniśo na „Öffnen“ abo na „OK“ w dialogu wuběranja datajow, aby dataju ned wócynił a asistent spušćił." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Z e_ksistěrujuceju datoweju banku zwězaś" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Wubjeŕśo, aby dokument datoweje banki za eksistěrujucy zwisk datoweje banki napórał." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Wubjeŕśo typ datoweje banki za eksistěrujucy zwisk datoweje banki." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "njejo daniž HSQLDB daniž Firebird k dispoziciji." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Asistent datoweje banki dataju datoweje banki napórajo, kótaraž informacije wó datowej bance wopśimujo." @@ -3786,7 +3786,7 @@ #: dbaccess/uiconfig/ui/ldappage.ui:44 msgctxt "ldappage|label1" msgid "_Base DN:" -msgstr "_Base DN:" +msgstr "_BaseDN:" #. iAAWx #: dbaccess/uiconfig/ui/ldappage.ui:69 diff -Nru libreoffice-7.3.4/translations/source/dsb/editeng/messages.po libreoffice-7.3.5/translations/source/dsb/editeng/messages.po --- libreoffice-7.3.4/translations/source/dsb/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540667124.000000\n" #. BHYB4 @@ -939,7 +939,7 @@ #: include/editeng/editrids.hrc:167 msgctxt "RID_SVXITEMS_METRIC_INCH" msgid "inch" -msgstr "inch" +msgstr "col" #. QMd2A #: include/editeng/editrids.hrc:168 diff -Nru libreoffice-7.3.4/translations/source/dsb/extensions/messages.po libreoffice-7.3.5/translations/source/dsb/extensions/messages.po --- libreoffice-7.3.4/translations/source/dsb/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554904016.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formular aktualizěrowaś" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Wótwołaś" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Pósłaś" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Wěcejźělny" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (krotki)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (krotki LL)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (krotki LLLL)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (dłujki)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ŹŹ/MM/LL" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/ŹŹ/LL" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "LL/MM/ŹŹ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ŹŹ/MM/LLLL" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/ŹŹ/LLLL" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "LLLL/MM/ŹŹ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "LL-MM-ŹŹ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "LLLL-MM-ŹŹ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Njewubrany" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Wubrany" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Njedefiněrowany" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Wšykne datowe sajźby" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktualna datowa sajźba" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktualny bok" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ně" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Jo" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Nadrědowany formular" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Žeden" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jadnory" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Wěcejrazowy" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Wobceŕk" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horicontalny" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Wertikalny" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "W pórěźe" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Pśetergnuś" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoc" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Wubrany zapisk" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozicija wubranego zapiska" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "jadnosmužkowy" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Wěcejsmužkowy" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Wěcejsmužkowy z formatěrowanim" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Žeden" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horicontalny" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Wertikalny" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Wobej" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Płony" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Nalěwo górjejce" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Nalěwo w srjejźi" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Nalěwo dołojce" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Napšawo górjejce" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Napšawo w srjejźi" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Napšawo dołojce" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Górjejce nalěwo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Górjejce w srjejźi" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Górjejce napšawo" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Dołojce nalěwo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Dołojce w srjejźi" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Dołojce napšawo" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrěrowane" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Wobchowaś" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Wuměniś" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Schowaś" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ně" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Poměr bokow wobchowaś" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Wjelikosći pśiměriś" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Wótlěwa napšawo" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Wótpšawa nalěwo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Nastajenja nadrědowanego objekta wužywaś" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nigda" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Gaž jo wubrany" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Pśecej" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "K wótstawkoju" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ako znamuško" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "K bokoju" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "K wobłukoju" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "K znamuškoju" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "K bokoju" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "K celi" diff -Nru libreoffice-7.3.4/translations/source/dsb/extras/source/autocorr/emoji.po libreoffice-7.3.5/translations/source/dsb/extras/source/autocorr/emoji.po --- libreoffice-7.3.4/translations/source/dsb/extras/source/autocorr/emoji.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/extras/source/autocorr/emoji.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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: 2018-11-17 16:56+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542473760.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -743,7 +744,7 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "inch" +msgstr "col" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji #. yALTE @@ -2773,7 +2774,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "recycling, běły" +msgstr "recycling" #. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji #. SWE9X @@ -2783,7 +2784,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "recycling" +msgstr "recycling2" #. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji #. 9FCXo @@ -13483,7 +13484,7 @@ "PERSON_CARTWHEELING\n" "LngText.text" msgid "gymnast" -msgstr "gymnast" +msgstr "turnaŕ" #. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji #. wDcBh diff -Nru libreoffice-7.3.4/translations/source/dsb/formula/messages.po libreoffice-7.3.5/translations/source/dsb/formula/messages.po --- libreoffice-7.3.4/translations/source/dsb/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" #. YfKFn #: formula/inc/core_resource.hrc:2277 @@ -72,7 +72,7 @@ #: formula/inc/core_resource.hrc:2290 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "#This Row" -msgstr "#This Row" +msgstr "#Toś ta smužka" #. kHXXq #: formula/inc/core_resource.hrc:2291 diff -Nru libreoffice-7.3.4/translations/source/dsb/fpicker/messages.po libreoffice-7.3.5/translations/source/dsb/fpicker/messages.po --- libreoffice-7.3.4/translations/source/dsb/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-28 07:36+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -216,55 +216,55 @@ msgstr "Slědna změna" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Wó_cyniś" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Wótg_raś" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Datajowe _mě:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Datajowy _typ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Jano za cytanje" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Z gronidłom składowaś" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Awtomatiska datajowa kóńcowka" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Filtrowe nastajenja wobźěłać" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Z GPG-klucom koděrowaś" diff -Nru libreoffice-7.3.4/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2021-02-07 23:36+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547386603.000000\n" #. HhMVS @@ -1004,7 +1004,7 @@ "STR_SUN_OPTIMIZATION_WIZARD2\n" "value.text" msgid "Presentation Minimizer" -msgstr "Presentation Minimizer" +msgstr "Miniměrowak prezentacijow" #. sH2AP #: PresentationMinimizer.xcu diff -Nru libreoffice-7.3.4/translations/source/dsb/officecfg/registry/data/org/openoffice.po libreoffice-7.3.5/translations/source/dsb/officecfg/registry/data/org/openoffice.po --- libreoffice-7.3.4/translations/source/dsb/officecfg/registry/data/org/openoffice.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/officecfg/registry/data/org/openoffice.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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: 2018-10-02 18:15+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1538504131.000000\n" #. foAxC @@ -103,4 +104,4 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Builder" -msgstr "Base: Report Builder" +msgstr "Base: Designer rozpšawow" diff -Nru libreoffice-7.3.4/translations/source/dsb/sc/messages.po libreoffice-7.3.5/translations/source/dsb/sc/messages.po --- libreoffice-7.3.4/translations/source/dsb/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565009164.000000\n" #. kBovX @@ -25261,97 +25261,97 @@ msgstr "~Naglěd" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Wobr_az" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "K_resliś" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresliś" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Śišćaś" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Ś~išćaś" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšyrjenje" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšyrjenje" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rědy" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Rědy" @@ -25710,139 +25710,139 @@ msgstr "Wobr_az" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Rědowaś" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Ba_rwa" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Kśidno" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Rěc" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Pśeglědanje" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentary" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Pśi_rownaś" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Naglěd" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "K_resliś" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Wo_bźěłaś" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Rědowaś" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Naglěd" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Ku kupce _zestajiś" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "P_ismo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "W_usměrjenje" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Naglěd" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Zasajźiś" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medije" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Wobłu_k" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Rědowaś" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Kśidno" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Naglěd" diff -Nru libreoffice-7.3.4/translations/source/dsb/sccomp/messages.po libreoffice-7.3.5/translations/source/dsb/sccomp/messages.po --- libreoffice-7.3.4/translations/source/dsb/sccomp/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/sccomp/messages.po 2022-07-15 19:12:51.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-29 16:03+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1522610561.000000\n" #. whDxm @@ -26,13 +26,13 @@ #: sccomp/inc/strings.hrc:25 msgctxt "RID_COINMP_SOLVER_COMPONENT" msgid "%PRODUCTNAME CoinMP Linear Solver" -msgstr "%PRODUCTNAME CoinMP Linear Solver" +msgstr "%PRODUCTNAME CoinMP Linearny solver" #. 22ZBP #: sccomp/inc/strings.hrc:26 msgctxt "RID_SWARM_SOLVER_COMPONENT" msgid "%PRODUCTNAME Swarm Non-Linear Solver (experimental)" -msgstr "Njelinearny solwer %PRODUCTNAME z rojom (eksperimentelny)" +msgstr "Njelinearny solver %PRODUCTNAME z rojom (eksperimentelny)" #. 8TGKo #: sccomp/inc/strings.hrc:27 diff -Nru libreoffice-7.3.4/translations/source/dsb/scp2/source/base.po libreoffice-7.3.5/translations/source/dsb/scp2/source/base.po --- libreoffice-7.3.4/translations/source/dsb/scp2/source/base.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/scp2/source/base.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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: 2018-08-22 20:54+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534971263.000000\n" #. cbtbu @@ -85,7 +86,7 @@ "STR_NAME_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n" "LngText.text" msgid "PostgreSQL Connector" -msgstr "PostgreSQL Connector" +msgstr "Zwězowak PostgreSQL" #. Kfv2H #: postgresqlsdbc.ulf @@ -94,7 +95,7 @@ "STR_DESC_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n" "LngText.text" msgid "PostgreSQL Connector" -msgstr "PostgreSQL Connector" +msgstr "Zwězowak PostgreSQL" #. DXpPd #: registryitem_base.ulf diff -Nru libreoffice-7.3.4/translations/source/dsb/sd/messages.po libreoffice-7.3.5/translations/source/dsb/sd/messages.po --- libreoffice-7.3.4/translations/source/dsb/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562269141.000000\n" #. WDjkB @@ -4175,109 +4175,109 @@ msgstr "~Tabela" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Wobraz" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "K_resliś" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresliś" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Globalny dokument" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Pśedłoga" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšyrjenje" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšyrjenje" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rědy" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Rědy" @@ -7064,109 +7064,109 @@ msgstr "~Tabela" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Wobraz" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "K_resliś" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresliś" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Globalny dokument" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Pśedłoga" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšyrjenje" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšyrjenje" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rědy" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Rědy" diff -Nru libreoffice-7.3.4/translations/source/dsb/starmath/messages.po libreoffice-7.3.5/translations/source/dsb/starmath/messages.po --- libreoffice-7.3.4/translations/source/dsb/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562269165.000000\n" #. GrDhX @@ -2330,7 +2330,7 @@ #: starmath/inc/strings.hrc:340 msgctxt "STR_AQUA" msgid "aqua" -msgstr "aqua" +msgstr "tirkis" #. GLy7q #: starmath/inc/strings.hrc:341 diff -Nru libreoffice-7.3.4/translations/source/dsb/svx/messages.po libreoffice-7.3.5/translations/source/dsb/svx/messages.po --- libreoffice-7.3.4/translations/source/dsb/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-04-12 11:43+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559381585.000000\n" #. 3GkZj @@ -7691,7 +7691,7 @@ #: include/svx/strings.hrc:1386 msgctxt "STR_IMAGE_CAPACITY" msgid "$(CAPACITY) kiB" -msgstr "$(CAPACITY) kB" +msgstr "$(CAPACITY) kiB" #. Xgeqc #: include/svx/strings.hrc:1387 diff -Nru libreoffice-7.3.4/translations/source/dsb/sw/messages.po libreoffice-7.3.5/translations/source/dsb/sw/messages.po --- libreoffice-7.3.4/translations/source/dsb/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562269173.000000\n" #. v3oJv @@ -3673,7 +3673,7 @@ #: sw/inc/strings.hrc:274 msgctxt "STR_STATSTR_LETTER" msgid "Letter" -msgstr "Letter" +msgstr "List" #. LuH5F #: sw/inc/strings.hrc:275 @@ -10513,19 +10513,19 @@ msgstr "Pśesunjo wubranu wótstawkowu pśedłogu wó jadnu rowninu w zapisowej hierarchiji dołoj." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Pśedłoga" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Pśedłogi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Napórajo zapisowe zapiski z wěstych wótstawkowych pśedłogow." @@ -13969,37 +13969,37 @@ msgstr "Datowe banki wuměniś" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definěrowaś" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Wužywane datowe banki" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "K _dispoziciji stojece datowe banki" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Pśepytaś..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Wócynja dialog „Öffnen/Wočinić“, aby dataju datoweje banki (*.odb) wubrał. Wubrana dataja se lisćinje k dispoziciji stojecych datowych bankow pśidawa." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14009,31 +14009,31 @@ "Wužywajśo tłocašk pśepytaś, aby dataju datoweje banki wubrał." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Naliscyjo datowe banki, kótarež se tuchylu wužywaju." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Nalicyjo datowe banki, kótarež su we %PRODUCTNAME zregistrěrowane." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Datowe banki wuměniś" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Datowa banka nałožona na dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Změńśo datowe žrědła za aktualny dokument." @@ -20087,109 +20087,109 @@ msgstr "Aktualny _dokument wužywaś" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Wužywa aktualny dokument Writer ako zakład za dokument serijowego lista." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "No_wy dokument napóraś" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Napórajo nowy dokument Writer, aby se za serijowy list wužywał." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Z _eksistěrujucym dokumentom zachopiś" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Wubjeŕśo eksistěrujucy dokument Writer, kótaryž se ma ako zakład za dokument serijowego lista wužywaś." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Z pśedł_ogu zachopiś" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Wubjeŕśo pśedłogu, z kótarejuž se ma dokument serijowego lista napóraś." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Njedawno skłaźony startowy dokument wužywaś" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Wužywajśo eksistěrujucy dokument serijowego lista ako zakład za nowy dokument serijowego lista." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Wubjeŕśo dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Pśepy_taś..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Pytajśo za dokumentom Writer, kótaryž cośo wužywaś a klikniśo pón na „Wócyniś“." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pśepy_taś..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Wócynja dialog za wuběranje pśedłogow." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datowe žrědło aktualnego dokumenta njejo zregistrěrowane. Pšosym wuměńśo datowu banku." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Datowu~banku wuměniś…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Wubjeŕśo startowy dokument za serijowy list" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Pódajśo dokument, kótaryž cośo ako zakład za dokument serijowego lista wužywaś." @@ -22332,49 +22332,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Nastajenja" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Woběg" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperwótkaz" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ramiki" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Płonina" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparenca" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27070,7 +27070,7 @@ msgstr "Aktualizěrowaś" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Pokazujo statistiku za aktualnu dataju." diff -Nru libreoffice-7.3.4/translations/source/dsb/vcl/messages.po libreoffice-7.3.5/translations/source/dsb/vcl/messages.po --- libreoffice-7.3.4/translations/source/dsb/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dsb/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562269177.000000\n" #. k5jTM @@ -70,7 +70,7 @@ #: vcl/inc/print.hrc:41 msgctxt "RID_STR_PAPERNAMES" msgid "Letter" -msgstr "Letter" +msgstr "List" #. GJoaX #: vcl/inc/print.hrc:42 @@ -166,7 +166,7 @@ #: vcl/inc/print.hrc:57 msgctxt "RID_STR_PAPERNAMES" msgid "German Legal Fanfold" -msgstr "German Legal Fanfold" +msgstr "Nimska legalna bźezkóńcna papjera" #. A48FP #: vcl/inc/print.hrc:58 @@ -244,7 +244,7 @@ #: vcl/inc/print.hrc:70 msgctxt "RID_STR_PAPERNAMES" msgid "Ledger" -msgstr "Ledger" +msgstr "Głowne knigły" #. nD5vU #: vcl/inc/print.hrc:71 @@ -286,13 +286,13 @@ #: vcl/inc/print.hrc:77 msgctxt "RID_STR_PAPERNAMES" msgid "U.S. Standard Fanfold" -msgstr "U.S. Standard Fanfold" +msgstr "U.S. standardna bźezkóńcna papjera" #. EnDDT #: vcl/inc/print.hrc:78 msgctxt "RID_STR_PAPERNAMES" msgid "German Standard Fanfold" -msgstr "German Standard Fanfold" +msgstr "Nimska standardna bźezkóńcna papjera" #. PbPaG #: vcl/inc/print.hrc:79 @@ -322,7 +322,7 @@ #: vcl/inc/print.hrc:83 msgctxt "RID_STR_PAPERNAMES" msgid "Invitation Envelope" -msgstr "Invitation Envelope" +msgstr "Pśepšoseńska wobalka" #. P9Ams #: vcl/inc/print.hrc:84 @@ -352,7 +352,7 @@ #: vcl/inc/print.hrc:88 msgctxt "RID_STR_PAPERNAMES" msgid "Double Postcard" -msgstr "Double Postcard" +msgstr "Dwójna póstowa kórtka" #. ZidKk #: vcl/inc/print.hrc:89 @@ -1280,7 +1280,7 @@ #: vcl/inc/units.hrc:40 msgctxt "SV_FUNIT_STRINGS" msgid "inch" -msgstr "inch" +msgstr "col" #. 4AEJE #. To translators: prime symbol for foot @@ -2324,169 +2324,169 @@ msgstr "Někotare boki na jadno łopjeno papjery śišćaś." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Swójski" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Wubjeŕśo, kak wjele bokow se ma na łopjeno papjery śišćaś." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Boki:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Wubjeŕśo licbu smužkow." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "wót" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Wubjeŕśo licbu słupow." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Kšoma:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Wubjeŕso kšomu mjazy jadnotliwymi bokami na kuždem łopjenje papjery." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mjazy bokami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Wótkłon:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Wubjeŕśo kšomu mjazy wuśišćanymi bokami a kšomu papjery." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "k łopjenowej kšomje" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Pórěd:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Wótlěwa napšawo, pón dołoj" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Zwusoka dołoj, pótom napšawo" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Zwusoka dołoj, pótom nalěwo" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Wótpšawa nalěwo, pótom dołoj" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Wubjeŕśo pórěd, w kótaremž se maju boki wuśišćaś." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ramik wokoło kuždego boka kresliś" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Ramik wokoło kuždego boka kresliś." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Wubjeŕśo toś to nastajenje, aby dokument w brošurowem formaśe śišćał." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Zestajeński pśeglěd" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Změńśo pórěd bokow, kótarež se maju na kuždem łopjenje papjery śišćaś. Pśeglěd pokazujo, kak kužde kóńcne łopjeno papjery wuglěda." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Wě_cej" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Wugótowanje boka" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Powšykne" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Śišći aktualny dokument, wuběrk abo boki, kótarež pódawaśo. Móžośo teke śišćaŕske nastajenja za aktualny dokument nastajiś." diff -Nru libreoffice-7.3.4/translations/source/dz/chart2/messages.po libreoffice-7.3.5/translations/source/dz/chart2/messages.po --- libreoffice-7.3.4/translations/source/dz/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3707,7 +3707,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/cui/messages.po libreoffice-7.3.5/translations/source/dz/cui/messages.po --- libreoffice-7.3.4/translations/source/dz/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17599,177 +17599,152 @@ msgid "Automatic" msgstr "རང་བཞིན་" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ཁྱད་པར་མཐོ་དྲག(~H)" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "གསལ་གཞི་བཀྲམ་སྟོན་ལེགས་བཟོ་འབད་ནི་ལུ་ཚད་རིས་ཀྱི་བཀྲམ་སྟོན་མཐུན་བྱེད་ཀྱི་སྲ་ཆས་ཁྱད་རྣམ་ཚུ་ཐད་ཀར་དུ་འཛུལ་སྤྱོད་འབདཝ་ཨིན།" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/dbaccess/messages.po libreoffice-7.3.5/translations/source/dz/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/dz/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Dzongkha \n" @@ -3468,75 +3468,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "གནས་འདྲེན་འབད་ཡོད་པའི་གནས་སྡུད་གཞི་རྟེན་" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "འཕྲལ་གྱི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ཁ་ཕྱེ།" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3544,7 +3544,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/extensions/messages.po libreoffice-7.3.5/translations/source/dz/extensions/messages.po --- libreoffice-7.3.4/translations/source/dz/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -312,597 +312,583 @@ msgid "Refresh form" msgstr "འབྲི་ཤོག་ཡང་སེལ་འབད་" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ལེན་" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "གནས་བསྐྱོད་" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "ཡུ་ཨར་ཨེལ།" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ཡན་ལག་སྣ་ཚོགས་" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ཚིག་ཡིག" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ཚད་ལྡན། (ཐུང་ཀུ།)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ཚད་ལྡན་ (ཐུང་ཀུ་ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ཚད་ལྡན་ (ཐུང་ཀུ་ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ཚད་ལྡན།(རིངམ།)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "སེལ་འཐུ་འབད་དེ་མེདཔ།" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "སེལ་འཐུ་འབད་དེ་ཡོདཔ།" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ངེས་འཛིན་མ་འབདཝ་" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "དྲན་ཐོ་ཚུ་ཆ་མཉམ་" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "དྲན་ཐོ་ཤུགས་ལྡན་" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ད་ལྟོའི་ཤོག་ལེབ་" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "མེན།" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "བཏུབ།" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "འབྲི་ཤོག་གཙོ་བོ་" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "བཀག།" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ཅི་མེད།" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "རྐྱང་པ་" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "སྣ་མང་" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ཁྱབ་ཚད།" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ཐད་སྙོམས།" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ཀེར་ཕྲང་།" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "སྔོན་སྒྲིག" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "བཏུབ།" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ཆ་མེད་གཏང་" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "འགྲོགས་རམ།" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ཐོ་བཀོད་སེལ་འཐུ་འབད་ཡོད་མི་འདི་" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཐོ་བཀོད་ཀྱི་གནས་ས་" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "གྲལ་ཐིག་-རྐྱང་པ།" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "སྣ་མང་-གྲལ་ཐིག" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "རྩ་སྒྲིག་འབད་ནི་དང་བཅས་ སྣ་མང་-གྲལ་ཐིག" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "ཨེལ་ཨེཕི་(ཡུ་ནིཀསི་)།" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "སི་ཨར་+ཨེལ་ཨེཕི་(ཝིན་ཌོསི་)།" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ཅི་མེད།" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ཐད་སྙོམས།" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ཀེར་ཕྲང་།" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "གཉིས་ཆ་རང་།" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "༣D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ལེབ་ཏེམ།" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "གཡོན་གྱི་མགོ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "གཡོན་གྱི་དབུས་ལུ་བཞག་ཡོདཔ།" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "གཡོན་གྱི་མཇུག" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "གཡས་ཀྱི་མགོ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "གཡས་ཀྱི་དབུས་ལུ་བཞག་ཡོདཔ།" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "གཡས་ཀྱི་མཇུག" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ལྟག་གི་གཡོན་ལུ།" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ལྟག་གི་དབུས་ལུ་བཞག་ཡོདཔ།" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ལྟག་གི་གཡས་ལུ།" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "འོག་གི་གཡོན་ལུ།" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "འོག་གི་དབུས་ལུ་བཞག་ཡོདཔ།" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "འོག་གི་གཡས་ལུ།" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "དབུས་སྒྲིག།" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ཉམས་སྲུང་།" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ཚབ་བཙུགས།" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "རམ་ནི།" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "མེན།" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "དཔྱ་ཚད་བཞག་" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ཚད་ནང་ལུ་ཚུད་སྒྲིག་འབད་" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "གཡོན-ལས-གཡས་ལུ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "གཡས-ལས-གཡོན་ལུ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "དངོས་པོའི་སྒྲིག་སྟངས་མཐོ་ཤོས་ཚུ་་ལག་ལེན་འཐབ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "དོན་མཚམས།" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ཡིག་འབྲུ།" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ཤོག་ལེབ་ལུ།" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "གཞི་ཁྲམ་ལུ།(~F)" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ཡིག་འབྲུ།" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ཤོག་ལེབ་ལུ།" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/dz/fpicker/messages.po libreoffice-7.3.5/translations/source/dz/fpicker/messages.po --- libreoffice-7.3.4/translations/source/dz/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ཡིག་སྣོད་ཀྱི་མིང་:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ཡིག་སྣོད་དབྱེ་བ།:(~t)" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ལྷག་ནི་རྐྱངམ་ཅིག་(~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ཆོག་ཡིག་དང་གཅིག་ཁར་སྲུང་ས་(~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ཡིག་སྣོད་མིང་རང་བཞིན་གྱི་རྒྱ་བསྐྱེད།(~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ཚགས་མའི་སྒྲིག་སྟངས་ཚུ་ཞུན་དག་འབད་(~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/sc/messages.po libreoffice-7.3.5/translations/source/dz/sc/messages.po --- libreoffice-7.3.4/translations/source/dz/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25999,97 +25999,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26475,158 +26475,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "བདེ་ཞིབ་འབད།" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ཚོས་གཞི།" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "གི་རིཊི།" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "སྐད་ཡིག" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "བསྐྱར་ཞིབ།" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "བསམ་བཀོད།" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "སྟོན།" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ཞུན་དག།" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "བདེ་ཞིབ་འབད།" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "སྟོན།" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "སྡེ་ཚན།" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ཡིག་གཟུགས།" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ཕྲང་སྒྲིག" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "སྟོན།" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "བཙུགས།" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "བརྡ་ལམ་" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "གཞི་ཁྲམ།" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "བདེ་ཞིབ་འབད།" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "གི་རིཊི།" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/dz/sd/messages.po libreoffice-7.3.5/translations/source/dz/sd/messages.po --- libreoffice-7.3.4/translations/source/dz/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4265,109 +4265,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7247,109 +7247,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/sw/messages.po libreoffice-7.3.5/translations/source/dz/sw/messages.po --- libreoffice-7.3.4/translations/source/dz/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10814,20 +10814,20 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་དེ་ ཟུར་ཐོའི་སྡེ་རིམ་ནང་ལུ་ གནས་རིམ་གཅིག་གིས་མར་ སྤོ་བཤུད་འབདཝ་ཨིན།" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "བཟོ་རྣམ་ཚུ།" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "གསར་བཀོད་ཅན་གྱི་དོན་མཚམས་བཟོ་རྣམ་ཚུ་གི་དོན་ལུ་ ཟུར་ཐོའི་ཐོ་འགོད་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན།" @@ -14426,38 +14426,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "ངེས་འཛིན་འབད།(~D)" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "བརད་འཚོལ།" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་དེ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ཡིག་ཁ་ཕྱེ་ནིའི་ཌའི་ལོག་དེ་ཁ་ཕྱེཝ་ཨིན།(*.odb).སེལ་འཐུ་འབད་ཡོད་མི་ཡིག་སྣོད་ཚུ་ འཐོབ་ཚུགས་པའི་གནད་སྡུད་གཞི་རྟེན་ཐོ་ཡིག་ཚུ་ནང་ལུ་ཁ་སྐོང་བརྐྱབ་ཨིན།" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14465,31 +14465,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "ད་ལྟོ་ལག་ལེན་འཐབ་པའི་སྒང་ཡོད་མི་གནད་སྡུད་གཞི་རྟེན་དེ་ཐོ་འགོད་འབདཝ་ཨིན།" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "ད་ལྟོའི་ཡིག་ཆདེ་གི་དོན་ལུ་ གནད་སྡུད་འབྱུང་ཁུངས་དེ་བསྒྱུར་བཅོས་འབད།" @@ -20823,111 +20823,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "ད་ལྟོའི་རའི་ཊར་ཡིག་དེ་ ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ་ཨིན།" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "གློག་འཕིན་མཉམ་བསྡོམ་དེ་གི་དོན་ལུ་ རའི་ཊར་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ ད་ལྟོ་ཡོད་པའི་རའི་ཊར་ཡིག་ཆ་ཅིག་སེལ་འཐུ་འབད།" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "ཁྱོད་ཀྱིས་ ཁོད་རའི་ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆ་དང་གཅིག་ཁར་གསར་བསྐྲུན་འབད་དགོ་མནོ་མི་ ཊེམ་པེ་ལེཊི་དེ་སེལ་འཐུ་འབད།" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ ད་ལྟོ་ཡོད་མི་ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆ་དེ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ།" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "ཡིག་ཆ་དེ་སེལ་འཐུ་འབད།" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "བརད་འཚོལ།" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "བརད་འཚོལ།" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23117,53 +23117,53 @@ msgstr "དངོས་པོ།" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "དབྱེ་བ།" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "གདམ་ཁ་ཚུ།" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ལོག་མཚམས་བཟོ།(~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ཧའི་པར་ལིངཀ" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "མཐའ་མཚམས་ཚུ།" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "ས་ཁོངས།" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "དྭངས་གསལ།" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28062,7 +28062,7 @@ msgstr "དུས་མཐུན་བཟོ།" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/dz/vcl/messages.po libreoffice-7.3.5/translations/source/dz/vcl/messages.po --- libreoffice-7.3.4/translations/source/dz/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/dz/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2351,170 +2351,170 @@ msgstr "ཡིག་ཆའི་ཨམ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "སྲོལ་སྒྲིག་" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "ཤོག་ལེབ་ཚུ་བརྒྱུད་དེ་བརྡ་འཚོལ་ནིའི་དོན་ལུ་ ངོས་དཔར་འདི་སེལ་འཐུ་འབད།" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "གིས།" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "དེབ་ཆུང་ཚུ།" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "གིས་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་ཡོད་པའི་ ད་ལྟོའི་ཡིག་ཆ་དང་ སེལ་འཐུ་ཡང་ན་ ཤོག་ལེབ་འདི་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། ད་ལྟོའི་ཡིག་ཆའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ དཔར་བསྐྲུན་གྱི་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད་བཏུབ། " diff -Nru libreoffice-7.3.4/translations/source/el/chart2/messages.po libreoffice-7.3.5/translations/source/el/chart2/messages.po --- libreoffice-7.3.4/translations/source/el/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-18 09:18+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547407975.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Ορίζει το πλήθος των γραμμών για τα διαγράμματα Στήλης και Γραμμής." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Επιλέξτε ένα βασικό τύπο διαγράμματος." diff -Nru libreoffice-7.3.4/translations/source/el/cui/messages.po libreoffice-7.3.5/translations/source/el/cui/messages.po --- libreoffice-7.3.4/translations/source/el/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-06-01 09:37+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562571180.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Αυτόματα" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Γαλαξίας" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Υψηλή αντίθεση" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Οξυγόνο" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Κλασικό" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Αύρα" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Καθορίζει την τεχνοτροπία εικονιδίου για τα εικονίδια στις γραμμές εργαλείων και στους διαλόγους." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Τε_χνοτροπία εικονιδίου:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Προσθήκη περισσότερων θεμάτων εικονιδίων μέσω επέκτασης" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Τεχνοτροπία εικονιδίου" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Απαιτείται επανεκκίνηση" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Χρήση επιτάχυνσης _υλικού" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Προσπελαύνει απευθείας στοιχεία του υλικού του προσαρμογέα οθόνης για να βελτιώσει την εμφάνιση στην οθόνη." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Χρήση ε_ξομάλυνσης" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Αν υποστηρίζεται από το σύστημα σας, μπορείτε να ενεργοποιήσετε και να απενεργοποιήσετε την εξομάλυνση των γραφικών. Με ενεργή την εξομάλυνση, η εμφάνιση των περισσοτέρων γραφικών αντικειμένων φαίνεται ομαλότερη και με λιγότερες παράσιτα." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Χρησιμοποιήστε Skia για κάθε απόδοση" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Εξαναγκασμός απόδοσης λογισμικού Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Απαιτείται επανεκκίνηση. Η ενεργοποίηση αυτού θα αποτρέψει τη χρήση οδηγών γραφικών." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Το Skia είναι προς το παρόν ενεργοποιημένο." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Το Skia είναι προς το παρόν απενεργοποιημένο." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Έξοδος γραφικών" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Προβολή προε_πισκόπησης γραμματοσειρών" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "Εμφανίζει τα ονόματα των επιλέξιμων γραμματοσειρών στην αντίστοιχη γραμματοσειρά, π.χ., γραμματοσειρές στο πλαίσιο γραμματοσειρών στη γραμμή Μορφοποίηση." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ε_ξομάλυνση γραμματοσειράς οθόνης" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Επιλέξτε για να εξομαλύνετε την εμφάνιση του κειμένου στην οθόνη." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "α_πό:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Εισαγάγετε το μικρότερο μέγεθος γραμματοσειράς για να εφαρμόσετε εξομάλυνση." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Λίστες γραμματοσειρών" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Εκτέλεση ελέγχων γραφικών" diff -Nru libreoffice-7.3.4/translations/source/el/dbaccess/messages.po libreoffice-7.3.5/translations/source/el/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/el/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-19 08:37+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562571214.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Δημιουργία μιας _νέας βάσης δεδομένων" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Επιλέξτε για να δημιουργήσετε μια νέα βάση δεδομένων." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Εν_σωματωμένη βάση δεδομένων:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Άνοιγμα ενός υπάρχοντος _αρχείου βάσης δεδομένων" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Επιλέξτε για να ανοίξετε ένα αρχείο βάσης δεδομένων από έναν κατάλογο αρχείων που χρησιμοποιήθηκαν πρόσφατα ή από ένα παράθυρο διαλόγου επιλογής αρχείου." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Πρόσφατα:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Επιλέξτε ένα αρχείο βάσης δεδομένων για να ανοίξετε από τον κατάλογο των αρχείων που χρησιμοποιήθηκαν πρόσφατα. Πατήστε στο πλήκτρο Τέλος για να ανοίξετε το αρχείο αμέσως και να βγείτε από τον οδηγό." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Άνοιγμα" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Ανοίγει ένα παράθυρο διαλόγου επιλογής αρχείου όπου μπορείτε να επιλέξετε ένα αρχείο βάσης δεδομένων. Πατήστε στο Άνοιγμα ή Εντάξει στο παράθυρο διαλόγου επιλογής αρχείου για να ανοίξετε το αρχείο αμέσως και να βγείτε από τον οδηγό." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Σύνδεση με μια _υπάρχουσα βάση δεδομένων" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Επιλέξτε για να δημιουργήσετε ένα έγγραφο βάσης δεδομένων για μια υπάρχουσα σύνδεση βάσης δεδομένων." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Επιλέξτε τον τύπο βάσης δεδομένων για την υπάρχουσα σύνδεση βάσης δεδομένων." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "διαθέσιμα σε αυτή τη ρύθμιση." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Ο Οδηγός βάσης δεδομένων δημιουργεί ένα αρχείο βάσης δεδομένων που περιέχει πληροφορίες σχετικά με μια βάση δεδομένων." diff -Nru libreoffice-7.3.4/translations/source/el/extensions/messages.po libreoffice-7.3.5/translations/source/el/extensions/messages.po --- libreoffice-7.3.4/translations/source/el/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Ενημέρωση φόρμας" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Λήψη" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Αποστολή" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Πολλαπλό" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Κείμενο" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Τυπικό (σύντομο)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Τυπικό (σύντομο ΕΕ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Τυπικό (σύντομο ΕΕΕΕ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Τυπικό (μακρύ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ΗΗ/ΜΜ/ΕΕ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ΜΜ/ΗΗ/ΕΕ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ΕΕ/ΜΜ/ΗΗ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ΗΗ/ΜΜ/ΕΕΕΕ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ΜΜ/ΗΗ/ΕΕΕΕ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ΕΕΕΕ/ΜΜ/ΗΗ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ΕΕ-ΜΜ-ΗΗ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ΕΕΕΕ-ΜΜ-ΗΗ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 ΜΜ" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 ΜΜ" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Δεν έχει επιλεχθεί" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Επιλεγμένο" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Δεν έχει ορισθεί" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Όλες οι εγγραφές" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Ενεργή εγγραφή" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Τρέχουσα σελίδα" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Όχι" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ναι" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Γονική φόρμα" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_κενό" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_γονικό" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "ί_διο" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_πάνω" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Κανένα" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Μονό" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Πολλαπλό" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Εύρος" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Οριζόντιος" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Κάθετος" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Προεπιλογή" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Εντάξει" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Ακύρωση" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Βοήθεια" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Η επιλεγμένη καταχώριση" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Θέση της επιλεγμένης καταχώρισης" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Μονή γραμμή" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Πολλαπλές γραμμές" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Πολλαπλές γραμμές με μορφοποίηση" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Καμία" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Οριζόντια" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Κάθετη" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Αμφότερες" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3Δ" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Επίπεδο" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Πάνω αριστερά" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Κεντραρισμένο αριστερά" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Κάτω αριστερά" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Πάνω δεξιά" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Κεντραρισμένο δεξιά" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Κάτω δεξιά" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Πάνω αριστερά" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Κεντραρισμένο πάνω" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Πάνω δεξιά" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Κάτω αριστερά" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Κεντραρισμένη κάτω" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Κάτω δεξιά" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Κεντραρισμένο" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Διατήρηση" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Αντικατάσταση" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Σύμπτυξη" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Όχι" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Διατήρηση αναλογιών" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Προσαρμογή στο μέγεθος" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Από αριστερά προς τα δεξιά" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Από δεξιά προς τα αριστερά" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Χρήση ρυθμίσεων ανωτέρου αντικειμένου" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ποτέ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Κατά την εστίαση" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Πάντα" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Σε παράγραφο" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ως χαρακτήρας" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Σε σελίδα" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Σε πλαίσιο" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Σε χαρακτήρα" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Σε σελίδα" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Σε κελί" diff -Nru libreoffice-7.3.4/translations/source/el/fpicker/messages.po libreoffice-7.3.5/translations/source/el/fpicker/messages.po --- libreoffice-7.3.4/translations/source/el/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-01 16:18+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -216,55 +216,55 @@ msgstr "Τροποποιημένα δεδομένα" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Ά_νοιγμα" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Αναπαραγ_ωγή" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Όνομα αρ_χείου:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Τύπος αρχείου:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Μόνο για _ανάγνωση" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Αποθήκευση με κωδικό πρόσβασης" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Αυτόματη επέκταση ονόματος αρχείου" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Επεξεργασία ρυθμίσεων _φίλτρου" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Κρυπτογράφηση με κλειδί GPG" diff -Nru libreoffice-7.3.4/translations/source/el/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/el/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/el/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" "Language: el\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1549442158.000000\n" #. ViEWM @@ -21857,7 +21857,7 @@ "par_id31579874656437\n" "help.text" msgid "replacedby: Zero, one or more characters that will replace all non-printable characters in inputstr (Default = \"\")" -msgstr "" +msgstr "replacedby: Μηδέν, ένας ή περισσότεροι χαρακτήρες που θα αντικαταστήσουν όλους τους μη εκτυπώσιμους χαρακτήρες στο inputstr (Προεπιλογή = \"\")" #. W44TL #: sf_string.xhp @@ -21866,7 +21866,7 @@ "par_id1001579876228707\n" "help.text" msgid "Finds in a string a substring matching a given regular expression." -msgstr "" +msgstr "Βρίσκει σε μια συμβολοσειρά μια υποσυμβολοσειρά που ταιριάζει με μια δεδομένη κανονική έκφραση." #. aq28M #: sf_string.xhp @@ -21875,7 +21875,7 @@ "par_id131579876314120\n" "help.text" msgid "inputstr: The string to be searched" -msgstr "" +msgstr "inputstr: Η συμβολοσειρά προς αναζήτηση" #. hRrBB #: sf_string.xhp @@ -21884,7 +21884,7 @@ "par_id751579876371545\n" "help.text" msgid "regex: The regular expression" -msgstr "" +msgstr "regex: Η κανονική έκφραση" #. y2Fqs #: sf_string.xhp @@ -21893,7 +21893,7 @@ "par_id881579876394584\n" "help.text" msgid "start: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of start will point to the first character of the found substring. If no matching substring is found, start will be set to 0." -msgstr "" +msgstr "start: Η θέση στη συμβολοσειρά όπου θα ξεκινήσει η αναζήτηση. Αυτή η παράμετρος μεταβιβάζεται με αναφορά, επομένως μετά την εκτέλεση η τιμή start θα δείχνει στον πρώτο χαρακτήρα της υποσυμβολοσειράς που βρέθηκε. Εάν δεν βρεθεί αντίστοιχη υποσυμβολοσειρά, το start θα οριστεί σε 0." #. yZMDg #: sf_string.xhp @@ -21902,7 +21902,7 @@ "par_id251579876403831\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. A4JC7 #: sf_string.xhp @@ -21911,7 +21911,7 @@ "par_id841579876412287\n" "help.text" msgid "forward: Determines the direction of the search. If True, search moves forward. If False search moves backwards (Default = True)" -msgstr "" +msgstr "forward (προς τα εμπρός): Καθορίζει την κατεύθυνση της αναζήτησης. Εάν είναι True, η αναζήτηση προχωρά. Εάν η αναζήτηση είναι False μετακινείται προς τα πίσω (Προεπιλογή = True)" #. SkaCi #: sf_string.xhp @@ -21920,7 +21920,7 @@ "par_id451612309155653\n" "help.text" msgid "At the first iteration, if forward = True, then start should be equal to 1, whereas if forward = False then start should be equal to Len(inputstr)" -msgstr "" +msgstr "Στην πρώτη επανάληψη, εάν forward = True, τότε το start θα πρέπει να είναι ίσο με 1, ενώ εάν forward = False τότε το start πρέπει να είναι ίσο με Len(inputstr)" #. gv3oo #: sf_string.xhp @@ -21929,7 +21929,7 @@ "par_id221612309579001\n" "help.text" msgid "In the example above, the new value of lStart can be used to keep searching the same input string by setting the Start parameter to lStart + Len(result) at the next iteration." -msgstr "" +msgstr "Στο παραπάνω παράδειγμα, η νέα τιμή του lStart μπορεί να χρησιμοποιηθεί για να συνεχιστεί η αναζήτηση της ίδιας συμβολοσειράς εισόδου ορίζοντας την παράμετρο Start σε lStart + Len(result) στην επόμενη επανάληψη." #. qAkN4 #: sf_string.xhp @@ -21938,7 +21938,7 @@ "par_id471601048983628\n" "help.text" msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more." -msgstr "" +msgstr "Οι συναρτήσεις κατακερματισμού χρησιμοποιούνται σε ορισμένους κρυπτογραφικούς αλγόριθμους, σε ψηφιακές υπογραφές, κωδικούς ταυτοποίησης μηνυμάτων, ανίχνευση χειρισμού, δακτυλικά αποτυπώματα, αθροίσματα ελέγχου (έλεγχος ακεραιότητας μηνυμάτων), πίνακες κατακερματισμού, αποθήκευση κωδικών πρόσβασης και πολλά άλλα." #. HupGD #: sf_string.xhp @@ -21947,7 +21947,7 @@ "par_id301601048983765\n" "help.text" msgid "The HashStr method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits." -msgstr "" +msgstr "Η μέθοδος HashStr επιστρέφει το αποτέλεσμα μιας συνάρτησης κατακερματισμού που εφαρμόζεται σε μια δεδομένη συμβολοσειρά και χρησιμοποιώντας έναν καθορισμένο αλγόριθμο, ως συμβολοσειρά πεζών δεκαεξαδικών ψηφίων." #. ZRZEF #: sf_string.xhp @@ -21956,7 +21956,7 @@ "par_id631601048983149\n" "help.text" msgid "The hash algorithms supported are: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512." -msgstr "" +msgstr "Οι αλγόριθμοι κατακερματισμού που υποστηρίζονται είναι: MD5, SHA1, SHA224, SHA256, SHA384 και SHA512." #. yUmmb #: sf_string.xhp @@ -21965,7 +21965,7 @@ "par_id621601048983210\n" "help.text" msgid "inputstr: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά προς κατακερματισμό. Υποτίθεται ότι είναι κωδικοποιημένη σε UTF-8. Ο αλγόριθμος κατακερματισμού θα θεωρήσει τη συμβολοσειρά ως μια ροή ψηφιολέξεων (bytes)." #. nuQRb #: sf_string.xhp @@ -21974,7 +21974,7 @@ "par_id941601048983822\n" "help.text" msgid "algorithm: One of the supported algorithms listed above, passed as a string." -msgstr "" +msgstr "algorithm (αλγόριθμος): Ένας από τους υποστηριζόμενους αλγορίθμους που αναφέρονται παραπάνω, μεταβιβάστηκε ως συμβολοσειρά." #. TXGmB #: sf_string.xhp @@ -21983,7 +21983,7 @@ "par_id221579879516929\n" "help.text" msgid "Encodes the input string into the HTML character codes, replacing special characters by their & counterparts." -msgstr "" +msgstr "Κωδικοποιεί τη συμβολοσειρά εισόδου στους κωδικούς χαρακτήρων HTML, αντικαθιστώντας τους ειδικούς χαρακτήρες από τους αντίστοιχους &." #. YNfid #: sf_string.xhp @@ -21992,7 +21992,7 @@ "par_id341612351999692\n" "help.text" msgid "For example, the character é would be replaced by é or an equivalent numerical HTML code." -msgstr "" +msgstr "Για παράδειγμα, ο χαρακτήρας é θα αντικατασταθεί από é ή έναν ισοδύναμο αριθμητικό κωδικό HTML." #. CGFQH #: sf_string.xhp @@ -22001,7 +22001,7 @@ "bas_id501579879570781\n" "help.text" msgid "inputstr: The string to encode." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά προς κωδικοποίηση." #. jpv97 #: sf_string.xhp @@ -22010,7 +22010,7 @@ "par_id171579880990533\n" "help.text" msgid "Returns True if the input string is a valid date according to a specified date format." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά εισόδου είναι έγκυρη ημερομηνία σύμφωνα με μια καθορισμένη μορφή ημερομηνίας." #. tBGBH #: sf_string.xhp @@ -22019,7 +22019,7 @@ "par_id151579881091821\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False" -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False" #. nmTv3 #: sf_string.xhp @@ -22028,7 +22028,7 @@ "par_id991579881107670\n" "help.text" msgid "dateformat: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\"" -msgstr "" +msgstr "dateformat: Η μορφή ημερομηνίας, ως συμβολοσειρά. Μπορεί να είναι είτε \"ΕΕΕΕ-ΜΜ-ΗΗ\" (προεπιλογή), \"ΗΗ-ΜΜ-ΕΕΕΕ\" ή \"ΜΜ-ΗΗ-ΕΕΕΕ\"" #. GvZLC #: sf_string.xhp @@ -22037,7 +22037,7 @@ "par_id291579881117126\n" "help.text" msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space." -msgstr "" +msgstr "Η παύλα (-) μπορεί να αντικατασταθεί από μια τελεία (.), μια κάθετο (/) ή ένα διάστημα." #. yCA3T #: sf_string.xhp @@ -22046,7 +22046,7 @@ "par_id51579881125801\n" "help.text" msgid "If the format is invalid, the method returns False." -msgstr "" +msgstr "Εάν η μορφή είναι άκυρη, η μέθοδος επιστρέφει False." #. qFmWW #: sf_string.xhp @@ -22055,7 +22055,7 @@ "par_id211612370427721\n" "help.text" msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the IsDate built-in function." -msgstr "" +msgstr "Αυτή η μέθοδος ελέγχει τη μορφή της συμβολοσειράς εισόδου χωρίς να πραγματοποιεί ελέγχους που αφορούν το ημερολόγιο. Ως εκ τούτου, δεν δοκιμάζει τη συμβολοσειρά εισόδου για δίσεκτα έτη, ή μήνες με 30 ή 31 ημέρες. Για αυτό, ανατρέξτε στην ενσωματωμένη συνάρτηση IsDate." #. DJQFQ #: sf_string.xhp @@ -22064,7 +22064,7 @@ "par_id181612371147364\n" "help.text" msgid "The example below shows the difference between the methods IsADate (ScriptForge) and the IsDate (built-in) function." -msgstr "" +msgstr "Το παρακάτω παράδειγμα δείχνει τη διαφορά μεταξύ των μεθόδων IsADate (ScriptForge) και της συνάρτησης IsDate (ενσωματωμένη)." #. hAADi #: sf_string.xhp @@ -22073,7 +22073,7 @@ "par_id161579881600317\n" "help.text" msgid "Returns True if all characters in the string are alphabetic." -msgstr "" +msgstr "Επιστρέφει το True εάν όλοι οι χαρακτήρες της συμβολοσειράς είναι αλφαβητικοί." #. Cpeo3 #: sf_string.xhp @@ -22082,7 +22082,7 @@ "par_id251579881615469\n" "help.text" msgid "Alphabetic characters are those characters defined in the Unicode Character Database as Letter." -msgstr "" +msgstr "Οι αλφαβητικοί χαρακτήρες είναι εκείνοι οι χαρακτήρες που ορίζονται στη Βάση δεδομένων χαρακτήρων Unicode ως Letter (Γράμμα)." #. a9rTa #: sf_string.xhp @@ -22091,7 +22091,7 @@ "par_id11579881691826\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. KaLGv #: sf_string.xhp @@ -22100,7 +22100,7 @@ "par_id421579883181382\n" "help.text" msgid "Returns True if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι αλφαβητικά, ψηφία ή \"_\" (υπογράμμιση). Ο πρώτος χαρακτήρας δεν πρέπει να είναι ψηφίο." #. BAEB4 #: sf_string.xhp @@ -22109,7 +22109,7 @@ "par_id31579884464101\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. qAZpA #: sf_string.xhp @@ -22118,7 +22118,7 @@ "par_id671580039484786\n" "help.text" msgid "Returns True if all characters in the string are Ascii characters." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι χαρακτήρες Ascii." #. 3DNou #: sf_string.xhp @@ -22127,7 +22127,7 @@ "par_id791580039528838\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. iuPF4 #: sf_string.xhp @@ -22136,7 +22136,7 @@ "par_id861580044805749\n" "help.text" msgid "Returns True if all characters in the string are digits." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι ψηφία." #. yU7cc #: sf_string.xhp @@ -22145,7 +22145,7 @@ "par_id41580044873043\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. J8Ykx #: sf_string.xhp @@ -22154,7 +22154,7 @@ "par_id521580045221758\n" "help.text" msgid "Returns True if the string is a valid email address." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά είναι έγκυρη διεύθυνση ηλ. αλληλογραφίας." #. 8Pxsn #: sf_string.xhp @@ -22163,7 +22163,7 @@ "par_id841580045280071\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. R6MsU #: sf_string.xhp @@ -22172,7 +22172,7 @@ "par_id41580047039666\n" "help.text" msgid "Returns True if the string is a valid filename in a given operating system." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά είναι έγκυρο όνομα αρχείου σε ένα δεδομένο λειτουργικό σύστημα." #. aQbRF #: sf_string.xhp @@ -22181,7 +22181,7 @@ "par_id801580047079938\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. jWMpJ #: sf_string.xhp @@ -22190,7 +22190,7 @@ "par_id781580047088954\n" "help.text" msgid "osname: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"." -msgstr "" +msgstr "osname: Το όνομα του λειτουργικού συστήματος, ως συμβολοσειρά. Μπορεί να είναι \"WINDOWS\", \"LINUX\", \"MACOSX\" ή \"SOLARIS\"." #. GnrxA #: sf_string.xhp @@ -22199,7 +22199,7 @@ "par_id991612372824234\n" "help.text" msgid "The default value is the current operating system on which the script is running." -msgstr "" +msgstr "Η προεπιλεγμένη τιμή είναι το τρέχον λειτουργικό σύστημα στο οποίο εκτελείται η δέσμη ενεργειών." #. FPuAV #: sf_string.xhp @@ -22208,7 +22208,7 @@ "par_id911580047551929\n" "help.text" msgid "Returns True if all characters in the string are hexadecimal digits." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι δεκαεξαδικά ψηφία." #. hWqAh #: sf_string.xhp @@ -22217,7 +22217,7 @@ "par_id331580047594144\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. kEz4y #: sf_string.xhp @@ -22226,7 +22226,7 @@ "par_id521612377109554\n" "help.text" msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"." -msgstr "" +msgstr "Τα δεκαεξαδικά ψηφία μπορούν να έχουν το πρόθεμα \"0x\" ή \"&H\"." #. 3WKNf #: sf_string.xhp @@ -22235,7 +22235,7 @@ "par_id791584008420941\n" "help.text" msgid "Returns True if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά είναι έγκυρος αριθμός διεθνούς τραπεζικού λογαριασμού (IBAN). Η σύγκριση δεν κάνει διάκριση πεζών-κεφαλαίων." #. DnC6i #: sf_string.xhp @@ -22244,7 +22244,7 @@ "par_id951880048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. VgT3x #: sf_string.xhp @@ -22253,7 +22253,7 @@ "par_id631619526542367\n" "help.text" msgid "True if the string contains a valid IBAN number." -msgstr "" +msgstr "True εάν η συμβολοσειρά περιέχει έγκυρο αριθμό IBAN." #. CcTNk #: sf_string.xhp @@ -22262,7 +22262,7 @@ "par_id791580048420941\n" "help.text" msgid "Returns True if the string is a valid IP(v4) address." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά είναι έγκυρη διεύθυνση IP(v4)." #. rMpXB #: sf_string.xhp @@ -22271,7 +22271,7 @@ "par_id981580048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. yWHew #: sf_string.xhp @@ -22280,7 +22280,7 @@ "par_id831580049093038\n" "help.text" msgid "Returns True if the whole input string matches a given pattern containing wildcards." -msgstr "" +msgstr "Επιστρέφει True εάν ολόκληρη η συμβολοσειρά εισόδου ταιριάζει με ένα δεδομένο μοτίβο που περιέχει χαρακτήρες υποκατάστασης." #. PzigS #: sf_string.xhp @@ -22289,7 +22289,7 @@ "par_id141580049142548\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. XEBzh #: sf_string.xhp @@ -22298,7 +22298,7 @@ "par_id31580049154551\n" "help.text" msgid "pattern: The pattern as a string. Wildcards are:" -msgstr "" +msgstr "pattern (μοτίβο): Το μοτίβο ως συμβολοσειρά. Οι χαρακτήρες υποκατάστασης είναι:" #. ZCzDP #: sf_string.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "\"?\" αντιπροσωπεύει οποιονδήποτε μεμονωμένο χαρακτήρα." #. CFPcW #: sf_string.xhp @@ -22316,7 +22316,7 @@ "par_id861612377611438\n" "help.text" msgid "\"*\" represents zero, one, or multiple characters." -msgstr "" +msgstr "Το \"*\" αντιπροσωπεύει μηδέν, έναν ή πολλούς χαρακτήρες." #. eLYBF #: sf_string.xhp @@ -22325,7 +22325,7 @@ "par_id991580049206617\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. kSMmn #: sf_string.xhp @@ -22334,7 +22334,7 @@ "par_id581580050048679\n" "help.text" msgid "Returns True if all characters in the string are in lowercase. Non-alphabetic characters are ignored." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι με πεζούς χαρακτήρες. Οι μη αλφαβητικοί χαρακτήρες αγνοούνται." #. nWGvX #: sf_string.xhp @@ -22343,7 +22343,7 @@ "par_id751580050122938\n" "help.text" msgid "InputStr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "InputStr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. BzD3y #: sf_string.xhp @@ -22352,7 +22352,7 @@ "par_id231580051650488\n" "help.text" msgid "Returns True if all characters in the string are printable." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες της συμβολοσειράς είναι εκτυπώσιμοι." #. gUhut #: sf_string.xhp @@ -22361,7 +22361,7 @@ "par_id721580051706431\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. HYBp5 #: sf_string.xhp @@ -22370,7 +22370,7 @@ "par_id281580052400960\n" "help.text" msgid "Returns True if the whole input string matches a given regular expression." -msgstr "" +msgstr "Επιστρέφει True εάν ολόκληρη η συμβολοσειρά εισόδου ταιριάζει με μια δεδομένη κανονική έκφραση." #. ZuBxC #: sf_string.xhp @@ -22379,7 +22379,7 @@ "par_id161580052454770\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. mi4mi #: sf_string.xhp @@ -22388,7 +22388,7 @@ "par_id581580052467973\n" "help.text" msgid "regex: The regular expression. If empty, the method returns False." -msgstr "" +msgstr "regex: Η κανονική έκφραση. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. vmqZM #: sf_string.xhp @@ -22397,7 +22397,7 @@ "par_id621580052654341\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. iZSEw #: sf_string.xhp @@ -22406,7 +22406,7 @@ "par_id1001589460240467\n" "help.text" msgid "Returns True if the input string is a valid Calc sheet name." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά εισόδου είναι ένα έγκυρο όνομα φύλλου Calc." #. xPFLm #: sf_string.xhp @@ -22415,7 +22415,7 @@ "par_id671589460240552\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. uE5gz #: sf_string.xhp @@ -22424,7 +22424,7 @@ "par_id551612442002823\n" "help.text" msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character." -msgstr "" +msgstr "Ένα όνομα φύλλου δεν πρέπει να περιέχει τους χαρακτήρες [ ] * ? : / \\ ή τον χαρακτήρα ' (απόστροφος) ως πρώτο ή τελευταίο χαρακτήρα." #. ALdgg #: sf_string.xhp @@ -22433,7 +22433,7 @@ "par_id371580293093655\n" "help.text" msgid "Returns True if the first character of every word is in uppercase and the other characters are in lowercase." -msgstr "" +msgstr "Επιστρέφει True εάν ο πρώτος χαρακτήρας κάθε λέξης είναι με κεφαλαία και οι άλλοι χαρακτήρες με πεζούς." #. uVF9U #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. 7Ryzp #: sf_string.xhp @@ -22451,7 +22451,7 @@ "par_id801580128672004\n" "help.text" msgid "Returns True if all characters in the string are in uppercase. Non alphabetic characters are ignored." -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι με κεφαλαία. Οι μη αλφαβητικοί χαρακτήρες αγνοούνται." #. HFDCW #: sf_string.xhp @@ -22460,7 +22460,7 @@ "par_id391580128736809\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. BTRpG #: sf_string.xhp @@ -22469,7 +22469,7 @@ "par_id531580132067813\n" "help.text" msgid "Returns True if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported." -msgstr "" +msgstr "Επιστρέφει True εάν η συμβολοσειρά είναι μια έγκυρη απόλυτη διεύθυνση URL (Uniform Resource Locator). Υποστηρίζονται μόνο τα πρωτόκολλα http, https και ftp." #. HrFqG #: sf_string.xhp @@ -22478,7 +22478,7 @@ "par_id321580132113593\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. wBAqG #: sf_string.xhp @@ -22487,7 +22487,7 @@ "par_id41580132491698\n" "help.text" msgid "Returns True if all characters in the string are whitespaces" -msgstr "" +msgstr "Επιστρέφει True εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι κενά διαστήματα" #. JDD85 #: sf_string.xhp @@ -22496,7 +22496,7 @@ "par_id801580132535511\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει False." #. 7EBbA #: sf_string.xhp @@ -22505,7 +22505,7 @@ "par_id891580133307100\n" "help.text" msgid "Returns the input string center-justified." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση στο κέντρο." #. TLmnE #: sf_string.xhp @@ -22514,7 +22514,7 @@ "par_id571612380829021\n" "help.text" msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total length with the character padding." -msgstr "" +msgstr "Τα κενά διαστήματα στηναρχή και στο τέλος αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται αριστερά και δεξιά μέχρι ένα καθορισμένο συνολικό length (μήκος) με τον χαρακτήρα padding." #. 4uuQT #: sf_string.xhp @@ -22523,7 +22523,7 @@ "par_id911580133391827\n" "help.text" msgid "inputstr: The string to be center-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως στο κέντρο. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά." #. jHJNT #: sf_string.xhp @@ -22532,7 +22532,7 @@ "par_id671580133694946\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)." #. A3qof #: sf_string.xhp @@ -22541,7 +22541,7 @@ "par_id511612381090109\n" "help.text" msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από τη συμβολοσειρά εισόδου με πλήρη στοίχιση στο κέντρο, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται." #. fys4j #: sf_string.xhp @@ -22550,7 +22550,7 @@ "par_id101580133705268\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")." #. 4zk3p #: sf_string.xhp @@ -22559,7 +22559,7 @@ "par_id911580135466348\n" "help.text" msgid "Returns the input string left-justified." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση αριστερά." #. 9KeCE #: sf_string.xhp @@ -22568,7 +22568,7 @@ "par_id431612381917641\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total length with the character padding." -msgstr "" +msgstr "Τα αρχικά κενά διαστήματα αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται προς τα δεξιά μέχρι ένα καθορισμένο συνολικό length (μήκος) με τον χαρακτήρα padding (συμπλήρωσης)." #. UQXSM #: sf_string.xhp @@ -22577,7 +22577,7 @@ "par_id281580135523448\n" "help.text" msgid "inputstr: The string to be left-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως αριστερά. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά." #. EAwAa #: sf_string.xhp @@ -22586,7 +22586,7 @@ "par_id431580135534910\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)." #. ntKXx #: sf_string.xhp @@ -22595,7 +22595,7 @@ "par_id161612381664182\n" "help.text" msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από την συμβολοσειρά εισόδου με πλήρη αριστερή στοίχιση, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται." #. wBnmv #: sf_string.xhp @@ -22604,7 +22604,7 @@ "par_id221580135568475\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")." #. TTokb #: sf_string.xhp @@ -22613,7 +22613,7 @@ "par_id821580136091225\n" "help.text" msgid "Returns the input string right-justified." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση δεξιά." #. 4fG7c #: sf_string.xhp @@ -22622,7 +22622,7 @@ "par_id771612382000293\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total length with the character padding." -msgstr "" +msgstr "Τα αρχικά κενά διαστήματα αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται προς τα αριστερά μέχρι ένα καθορισμένο συνολικό length (μήκος) με τον χαρακτήρα padding (συμπλήρωσης)." #. KxskT #: sf_string.xhp @@ -22631,7 +22631,7 @@ "par_id201580136154170\n" "help.text" msgid "inputstr: The string to be right-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως δεξιά. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά." #. FboQc #: sf_string.xhp @@ -22640,7 +22640,7 @@ "par_id71580136164632\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)." #. dshKE #: sf_string.xhp @@ -22649,7 +22649,7 @@ "par_id191612381732163\n" "help.text" msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από τη συμβολοσειρά εισόδου με πλήρη στοίχιση δεξιά, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται." #. LtcVG #: sf_string.xhp @@ -22658,7 +22658,7 @@ "par_id751580136200680\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")." #. Wn55u #: sf_string.xhp @@ -22667,7 +22667,7 @@ "par_id251580136888958\n" "help.text" msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου που περικλείεται σε μονά ή διπλά εισαγωγικά. Τα υπάρχοντα εισαγωγικά παραμένουν αμετάβλητα, συμπεριλαμβανομένων των αρχικών και/ή των τελικών εισαγωγικών." #. YBvt4 #: sf_string.xhp @@ -22676,7 +22676,7 @@ "par_id811580136944674\n" "help.text" msgid "inputstr: The string to quote." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα μπει σε εισαγωγικά." #. GynWV #: sf_string.xhp @@ -22685,7 +22685,7 @@ "par_id581599129397412\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar (χαρακτήρας εισαγωγικού): Είτε το μονό (') είτε το διπλό (\") εισαγωγικό (προεπιλογή)." #. fY3PC #: sf_string.xhp @@ -22694,7 +22694,7 @@ "par_id911612382537087\n" "help.text" msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes." -msgstr "" +msgstr "Αυτή η μέθοδος μπορεί να είναι χρήσιμη κατά την προετοιμασία ενός πεδίου συμβολοσειράς που θα αποθηκευτεί σε ένα αρχείο που μοιάζει με csv, το οποίο απαιτεί οι τιμές κειμένου να περικλείονται με μονά ή διπλά εισαγωγικά." #. 8Rr4M #: sf_string.xhp @@ -22703,7 +22703,7 @@ "par_id951580139124650\n" "help.text" msgid "Replaces all occurrences of the characters specified in the Before parameter by the corresponding characters specified in After." -msgstr "" +msgstr "Αντικαθιστά όλες τις εμφανίσεις των χαρακτήρων που καθορίζονται στην παράμετρο Before (Πριν) με τους αντίστοιχους χαρακτήρες που καθορίζονται στο After (Μετά)." #. 5hn2y #: sf_string.xhp @@ -22712,7 +22712,7 @@ "par_id1001612384040018\n" "help.text" msgid "If the length of Before is greater than the length of After, the residual characters in Before are replaced by the last character in After." -msgstr "" +msgstr "Εάν το μήκος του Before είναι μεγαλύτερο από το μήκος του After, οι υπόλοιποι χαρακτήρες στο Before αντικαθίστανται από τον τελευταίο χαρακτήρα στο After ." #. DD2CL #: sf_string.xhp @@ -22721,7 +22721,7 @@ "par_id11580139160633\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις." #. DvaRE #: sf_string.xhp @@ -22730,7 +22730,7 @@ "par_id111580139169795\n" "help.text" msgid "before: A string with the characters that will be searched in the input string for replacement." -msgstr "" +msgstr "πριν: Μια συμβολοσειρά με τους χαρακτήρες που θα αναζητηθούν στη συμβολοσειρά εισόδου για αντικατάσταση." #. N46b3 #: sf_string.xhp @@ -22739,7 +22739,7 @@ "par_id851580139182113\n" "help.text" msgid "after: A string with the new characters that will replace those defined in before." -msgstr "" +msgstr "after: Μια συμβολοσειρά με τους νέους χαρακτήρες που θα αντικαταστήσουν αυτούς που ορίζονται στο before." #. CDuCC #: sf_string.xhp @@ -22748,7 +22748,7 @@ "bas_id921580139218457\n" "help.text" msgid "' Replaces accented characters" -msgstr "" +msgstr "' Αντικαθιστά τους τονισμένους χαρακτήρες" #. 5ww5A #: sf_string.xhp @@ -22757,7 +22757,7 @@ "par_id151612442904499\n" "help.text" msgid "The SF_String service provides useful public constants for the Latin character sets, as shown in the example below:" -msgstr "" +msgstr "Η υπηρεσία SF_String παρέχει χρήσιμες δημόσιες σταθερές για τα σύνολα λατινικών χαρακτήρων, όπως φαίνεται στο παρακάτω παράδειγμα:" #. 9SPjv #: sf_string.xhp @@ -22766,7 +22766,7 @@ "par_id671580140272818\n" "help.text" msgid "Replaces all occurrences of a given regular expression by a new string." -msgstr "" +msgstr "Αντικαθιστά όλες τις εμφανίσεις μιας δεδομένης κανονικής έκφρασης με μια νέα συμβολοσειρά." #. ujCyu #: sf_string.xhp @@ -22775,7 +22775,7 @@ "par_id471580140311626\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις." #. o2DS2 #: sf_string.xhp @@ -22784,7 +22784,7 @@ "par_id651580140322666\n" "help.text" msgid "regex: The regular expression." -msgstr "" +msgstr "regex: Η κανονική έκφραση." #. itEEd #: sf_string.xhp @@ -22793,7 +22793,7 @@ "par_id891580140334754\n" "help.text" msgid "newstr: The replacing string." -msgstr "" +msgstr "newstr: Η συμβολοσειρά που αντικαθιστά την προηγούμενη." #. gJRAr #: sf_string.xhp @@ -22802,7 +22802,7 @@ "par_id581580140345221\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. ykPVR #: sf_string.xhp @@ -22811,7 +22811,7 @@ "bas_id961612384647003\n" "help.text" msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")" -msgstr "" +msgstr "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxxxxxxxxxxxx xxxx.\" (κάθε πεζό γράμμα αντικαθίσταται από \"x\")" #. rkMsv #: sf_string.xhp @@ -22820,7 +22820,7 @@ "bas_id751612384623936\n" "help.text" msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")" -msgstr "" +msgstr "' \"x x x x x, x x x.\" (κάθε λέξη αντικαθίσταται από \"x\")" #. 2Gd5C #: sf_string.xhp @@ -22829,7 +22829,7 @@ "par_id51580146471894\n" "help.text" msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings." -msgstr "" +msgstr "Αντικαθιστά σε μια συμβολοσειρά μερικές ή όλες τις εμφανίσεις μιας σειράς συμβολοσειρών με μια σειρά νέων συμβολοσειρών." #. SDpot #: sf_string.xhp @@ -22838,7 +22838,7 @@ "par_id831580146504326\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις." #. UfuEm #: sf_string.xhp @@ -22847,7 +22847,7 @@ "par_id411580146514927\n" "help.text" msgid "oldstr: A single string or an array of strings. Zero-length strings are ignored." -msgstr "" +msgstr "oldstr: Μια μεμονωμένη συμβολοσειρά ή ένας πίνακας από συμβολοσειρές. Οι συμβολοσειρές μηδενικού μήκους αγνοούνται." #. Ukr3F #: sf_string.xhp @@ -22856,7 +22856,7 @@ "par_id591580146532966\n" "help.text" msgid "newstr: The replacing string or the array of replacing strings." -msgstr "" +msgstr "newstr: Η συμβολοσειρά αντικατάστασης ή ο πίνακας συμβολοσειρών αντικατάστασης." #. 7BQ7F #: sf_string.xhp @@ -22865,7 +22865,7 @@ "par_id611612384873347\n" "help.text" msgid "If oldstr is an array, each occurrence of any of the items in oldstr is replaced by newstr." -msgstr "" +msgstr "Εάν το oldstr είναι ένας πίνακας, κάθε εμφάνιση οποιουδήποτε από τα στοιχεία στο oldstr αντικαθίσταται από newstr." #. AfRz6 #: sf_string.xhp @@ -22874,7 +22874,7 @@ "par_id611612384880820\n" "help.text" msgid "If oldstr and newstr are arrays, replacements occur one by one up to the UBound(newstr)." -msgstr "" +msgstr "Εάν οι oldstr και newstr είναι πίνακες, οι αντικαταστάσεις πραγματοποιούνται μία προς μία μέχρι το UBound(newstr)." #. E39aH #: sf_string.xhp @@ -22883,7 +22883,7 @@ "par_id241612385058264\n" "help.text" msgid "If oldstr has more entries than newstr, then the residual elements in oldstr are replaced by the last element in newstr." -msgstr "" +msgstr "Εάν το oldstr έχει περισσότερες καταχωρήσεις από το newstr, τότε τα υπολειπόμενα στοιχεία στο oldstr αντικαθίστανται από το τελευταίο στοιχείο στο newstr ." #. MkqW5 #: sf_string.xhp @@ -22892,7 +22892,7 @@ "par_id701580146547619\n" "help.text" msgid "occurrences: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced." -msgstr "" +msgstr "occurrences (εμφανίσεις): Ο μέγιστος αριθμός αντικαταστάσεων. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι όλες οι εμφανίσεις θα αντικατασταθούν." #. QX33p #: sf_string.xhp @@ -22901,7 +22901,7 @@ "par_id741612385380533\n" "help.text" msgid "When oldstr is an array, the occurrence parameter is computed separately for each item in the array." -msgstr "" +msgstr "Όταν το oldstr είναι ένας πίνακας, η παράμετρος occurrence (εμφάνιση) υπολογίζεται ξεχωριστά για κάθε στοιχείο του πίνακα." #. aWrvA #: sf_string.xhp @@ -22910,7 +22910,7 @@ "par_id301580146556599\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. eygyi #: sf_string.xhp @@ -22919,7 +22919,7 @@ "par_id901580147558931\n" "help.text" msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes." -msgstr "" +msgstr "Επιστρέφει μια συμβολοσειρά με μια αναγνώσιμη αναπαράσταση του ορίσματος, περικομμένη σε δεδομένο μήκος. Αυτό είναι χρήσιμο κυρίως για σκοπούς αποσφαλμάτωσης ή καταγραφής." #. cU3Ev #: sf_string.xhp @@ -22928,7 +22928,7 @@ "par_id11612386054691\n" "help.text" msgid "If the anyvalue parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"." -msgstr "" +msgstr "Εάν η παράμετρος anyvalue είναι αντικείμενο, θα περικλείεται με αγκύλες \"[\" και \"]\"." #. gVB32 #: sf_string.xhp @@ -22937,7 +22937,7 @@ "par_id491612386081802\n" "help.text" msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r." -msgstr "" +msgstr "Στις συμβολοσειρές, οι στηλοθέτες και οι αλλαγές γραμμής αντικαθίστανται από \\t, \\n ή \\r." #. SfUGD #: sf_string.xhp @@ -22946,7 +22946,7 @@ "par_id921612386089103\n" "help.text" msgid "If the final length exceeds the maxlength parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation." -msgstr "" +msgstr "Εάν το τελικό μήκος υπερβαίνει την παράμετρο maxlength, το τελευταίο μέρος της συμβολοσειράς αντικαθίσταται από το \"... (N)\" όπου N είναι το συνολικό μήκος της αρχικής συμβολοσειράς πριν από την περικοπή." #. zLfNR #: sf_string.xhp @@ -22955,7 +22955,7 @@ "par_id91580147593626\n" "help.text" msgid "anyvalue: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc." -msgstr "" +msgstr "anyvalue (οποιαδήποτε τιμή): Η τιμή εισόδου που θα αναπαρασταθεί. Μπορεί να είναι οποιαδήποτε τιμή, όπως συμβολοσειρά, πίνακας, αντικείμενο Basic, αντικείμενο UNO κ.λπ." #. hdDFi #: sf_string.xhp @@ -22964,7 +22964,7 @@ "par_id811580147609322\n" "help.text" msgid "maxlength: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation." -msgstr "" +msgstr "maxlength: Το μέγιστο μήκος της συμβολοσειράς που προκύπτει. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι δεν υπάρχει όριο στο μήκος της αναπαράστασης που προκύπτει." #. Ape7i #: sf_string.xhp @@ -22973,7 +22973,7 @@ "par_id641612386659292\n" "help.text" msgid "Note that the representation of data types such as Arrays and ScriptForge.Dictionary object instances include both the data type and their values:" -msgstr "" +msgstr "Σημειώστε ότι η αναπαράσταση τύπων δεδομένων όπως πίνακες και παρουσίες αντικειμένων ScriptForge.Dictionary περιλαμβάνει τόσο τον τύπο δεδομένων όσο και τις τιμές τους:" #. ZFFAD #: sf_string.xhp @@ -22982,7 +22982,7 @@ "bas_id971612386906463\n" "help.text" msgid "' An example with a Basic built-in Array" -msgstr "" +msgstr "' Ένα παράδειγμα με έναν ενσωματωμένο πίνακα Basic" #. GEZzM #: sf_string.xhp @@ -22991,7 +22991,7 @@ "bas_id401612386876329\n" "help.text" msgid "' An example with a ScriptForge Array" -msgstr "" +msgstr "' Ένα παράδειγμα με έναν πίνακα ScriptForge" #. mZ3ar #: sf_string.xhp @@ -23000,7 +23000,7 @@ "bas_id551612386931680\n" "help.text" msgid "' An example with a ScriptForge Dictionary" -msgstr "" +msgstr "' Ένα παράδειγμα με ένα λεξικό ScriptForge" #. vvADG #: sf_string.xhp @@ -23009,7 +23009,7 @@ "par_id411580312925741\n" "help.text" msgid "Returns the input string in reversed order." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με αντίστροφη σειρά." #. EEyG6 #: sf_string.xhp @@ -23018,7 +23018,7 @@ "par_id141612387177873\n" "help.text" msgid "This method is equivalent to the built-in StrReverse Basic function." -msgstr "" +msgstr "Αυτή η μέθοδος είναι ισοδύναμη με την ενσωματωμένη συνάρτηση Basic StrReverse." #. ZEarP #: sf_string.xhp @@ -23027,7 +23027,7 @@ "par_id961612387463144\n" "help.text" msgid "To use the StrReverse function, the statement Option VBASupport 1 must be present in the module." -msgstr "" +msgstr "Για να χρησιμοποιήσετε τη συνάρτηση StrReverse, η δήλωση Option VBASupport 1 πρέπει να υπάρχει στη λειτουργική μονάδα." #. pSyL6 #: sf_string.xhp @@ -23036,7 +23036,7 @@ "par_id241580312964497\n" "help.text" msgid "inputstr: The string to be reversed." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που πρέπει να αντιστραφεί." #. KBFDk #: sf_string.xhp @@ -23045,7 +23045,7 @@ "par_id721580210762286\n" "help.text" msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters." -msgstr "" +msgstr "Επιστρέφει έναν πίνακα συμβολοσειρών με βάση το μηδέν με τις γραμμές στη συμβολοσειρά εισόδου. Κάθε στοιχείο στον πίνακα λαμβάνεται με διαχωρισμό της συμβολοσειράς εισόδου σε χαρακτήρες νέας γραμμής." #. nuUF6 #: sf_string.xhp @@ -23054,7 +23054,7 @@ "par_id481580210806878\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα χωριστεί." #. FEFUw #: sf_string.xhp @@ -23063,7 +23063,7 @@ "par_id231580210820309\n" "help.text" msgid "keepbreaks: When True, line breaks are preserved in the output array (default = False)." -msgstr "" +msgstr "keepbreaks: Όταν είναι True, οι αλλαγές γραμμής διατηρούνται στον πίνακα εξόδου (προεπιλογή = False)." #. HAG8Q #: sf_string.xhp @@ -23072,7 +23072,7 @@ "par_id471580211762739\n" "help.text" msgid "Splits a string into an array of elements using a specified delimiter." -msgstr "" +msgstr "Διαχωρίζει μια συμβολοσειρά σε έναν πίνακα στοιχείων χρησιμοποιώντας έναν καθορισμένο οριοθέτη." #. zsADB #: sf_string.xhp @@ -23081,7 +23081,7 @@ "par_id281612388034501\n" "help.text" msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Εάν μια υποσυμβολοσειρά με εισαγωγικά περιέχει έναν οριοθέτη, αγνοείται. Αυτό είναι χρήσιμο κατά την ανάλυση εγγραφών τύπου CSV που περιέχουν συμβολοσειρές σε εισαγωγικά." #. JKAaG #: sf_string.xhp @@ -23090,7 +23090,7 @@ "par_id881580211809490\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα χωριστεί." #. zFjwe #: sf_string.xhp @@ -23099,7 +23099,7 @@ "par_id811580211821162\n" "help.text" msgid "delimiter: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character." -msgstr "" +msgstr "delimiter (οριοθέτης): Μια συμβολοσειρά ενός ή περισσότερων χαρακτήρων που θα χρησιμοποιηθεί ως οριοθέτης. Ο προεπιλεγμένος οριοθέτης είναι ο χαρακτήρας διαστήματος Ascii \" \"." #. 3rGRu #: sf_string.xhp @@ -23108,7 +23108,7 @@ "par_id181580211833778\n" "help.text" msgid "occurrences: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings." -msgstr "" +msgstr "occurrences (εμφανίσεις): Ο μέγιστος αριθμός υποσυμβολοσειρών προς επιστροφή. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι δεν υπάρχει όριο στον αριθμό των επιστρεφόμενων συμβολοσειρών." #. W2og7 #: sf_string.xhp @@ -23117,7 +23117,7 @@ "par_id421599123777334\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote." -msgstr "" +msgstr "quotechar: Είτε το μονό (') είτε το διπλό (\") εισαγωγικό." #. DiYMJ #: sf_string.xhp @@ -23126,7 +23126,7 @@ "par_id661627251379676\n" "help.text" msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them." -msgstr "" +msgstr "Προσοχή στις διαφορές μεταξύ Basic και Python κατά την αναπαράσταση συμβολοσειρών. Για παράδειγμα, στη Basic δύο χαρακτήρες \"\" μέσα σε μια συμβολοσειρά ερμηνεύονται ως ένας χαρακτήρας \". Στην Python, οι συμβολοσειρές που περικλείονται με μονά εισαγωγικά μπορούν να περιέχουν \" χαρακτήρες χωρίς να χρειάζεται να τους διπλασιάσουν." #. 6Q2tJ #: sf_string.xhp @@ -23135,7 +23135,7 @@ "par_id771580212837884\n" "help.text" msgid "Returns True if the first characters of a string are identical to a given substring." -msgstr "" +msgstr "Επιστρέφει True εάν οι πρώτοι χαρακτήρες μιας συμβολοσειράς είναι ταυτόσημοι με μια δεδομένη υποσυμβολοσειρά." #. BYx4G #: sf_string.xhp @@ -23144,7 +23144,7 @@ "par_id781612393174350\n" "help.text" msgid "This method returns False if either the input string or the substring have a length = 0 or when the substring is longer than the input string." -msgstr "" +msgstr "Αυτή η μέθοδος επιστρέφει False εάν είτε η συμβολοσειρά εισόδου, είτε η υποσυμβολοσειρά έχουν μήκος = 0, ή όταν η υποσυμβολοσειρά είναι μεγαλύτερη από τη συμβολοσειρά εισόδου." #. jrzxu #: sf_string.xhp @@ -23153,7 +23153,7 @@ "par_id271580212876135\n" "help.text" msgid "inputstr: The string to be tested." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα δοκιμαστεί." #. tE9WD #: sf_string.xhp @@ -23162,7 +23162,7 @@ "par_id571580212889462\n" "help.text" msgid "substring: The substring to be searched at the start of inputstr." -msgstr "" +msgstr "substring: Η υποσυμβολοσειρά προς αναζήτηση στην αρχή του inputstr." #. ZeQP4 #: sf_string.xhp @@ -23171,7 +23171,7 @@ "par_id811580212900799\n" "help.text" msgid "casesensitive: The search can be case sensitive or not (Default = False)." -msgstr "" +msgstr "casesensitive (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = False)." #. DGgBx #: sf_string.xhp @@ -23180,7 +23180,7 @@ "par_id911580295999690\n" "help.text" msgid "Returns the input string without its leading and trailing whitespaces." -msgstr "" +msgstr "Επιστρέφει τη συμβολοσειρά εισόδου χωρίς τα αρχικά και τα τελικά κενά διαστήματά της." #. BESEu #: sf_string.xhp @@ -23189,7 +23189,7 @@ "par_id541580296044377\n" "help.text" msgid "inputstr: The string to trim." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά για περικοπή." #. 9t9vX #: sf_string.xhp @@ -23198,7 +23198,7 @@ "par_id61580483096936\n" "help.text" msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character." -msgstr "" +msgstr "Μετατρέπει οποιαδήποτε ακολουθία διαφυγής (\\\\, \\n, \\r, \\t) στη συμβολοσειρά εισόδου στον αντίστοιχο χαρακτήρα Ascii." #. mzTsG #: sf_string.xhp @@ -23207,7 +23207,7 @@ "par_id971580483124743\n" "help.text" msgid "inputstr: The string to be converted." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά που θα μετατραπεί." #. BoYHV #: sf_string.xhp @@ -23216,7 +23216,7 @@ "par_id831580213634029\n" "help.text" msgid "Removes the single or double quotes enclosing the input string." -msgstr "" +msgstr "Καταργεί τα μονά ή διπλά εισαγωγικά που περικλείουν τη συμβολοσειρά εισόδου." #. Ae8c5 #: sf_string.xhp @@ -23225,7 +23225,7 @@ "par_id811612393585600\n" "help.text" msgid "This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Αυτό είναι χρήσιμο κατά την ανάλυση εγγραφών τύπου CSV που περιέχουν συμβολοσειρές σε εισαγωγικά." #. BhVvp #: sf_string.xhp @@ -23234,7 +23234,7 @@ "par_id761580213677493\n" "help.text" msgid "inputstr: The string to unquote." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά στην οποία θα αφαιρεθούν τα εισαγωγικά." #. gRUHA #: sf_string.xhp @@ -23243,7 +23243,7 @@ "par_id211599129509890\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar (χαρακτήρας εισαγωγικού): Είτε το μονό (') είτε το διπλό (\") εισαγωγικό (προεπιλογή)." #. nGq4Q #: sf_string.xhp @@ -23252,7 +23252,7 @@ "bas_id371580213702598\n" "help.text" msgid "' s = \"Some text\" (without enclosing quotes)" -msgstr "" +msgstr "' s = \"Κάποιο κείμενο\" (χωρίς εισαγωγικά)" #. Fp8ip #: sf_string.xhp @@ -23261,7 +23261,7 @@ "bas_id51580213693694\n" "help.text" msgid "' The string below does not have enclosing quotes, so it remains unchanged" -msgstr "" +msgstr "' Η παρακάτω συμβολοσειρά δεν περιέχει εισαγωγικά, επομένως παραμένει αμετάβλητη" #. A4Eki #: sf_string.xhp @@ -23270,7 +23270,7 @@ "bas_id961612393917830\n" "help.text" msgid "' s = \"Some text\" (unchanged)" -msgstr "" +msgstr "' s = \"Κάποιο κείμενο\" (αμετάβλητο)" #. ULtxx #: sf_string.xhp @@ -23279,7 +23279,7 @@ "bas_id461612394182689\n" "help.text" msgid "' Quotes inside the string are not removed" -msgstr "" +msgstr "' Τα εισαγωγικά μέσα στη συμβολοσειρά δεν αφαιρούνται" #. 8w4ia #: sf_string.xhp @@ -23288,7 +23288,7 @@ "bas_id961612394171208\n" "help.text" msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)" -msgstr "" +msgstr "' s = \"Η έννοια \"\"αληθινή\"\" (αμετάβλητη)" #. JGhWK #: sf_string.xhp @@ -23297,7 +23297,7 @@ "par_id871585834468102\n" "help.text" msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters." -msgstr "" +msgstr "Μετατρέπει τη συμβολοσειρά εισόδου σε έναν πίνακα υποσυμβολοσειρών, έτσι ώστε κάθε στοιχείο του πίνακα να έχει το πολύ έναν δεδομένο αριθμό χαρακτήρων." #. 4G9FU #: sf_string.xhp @@ -23306,7 +23306,7 @@ "par_id21612394465120\n" "help.text" msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks." -msgstr "" +msgstr "Στην πράξη, αυτή η μέθοδος επιστρέφει έναν πίνακα με βάση το μηδέν γραμμών εξόδου, χωρίς νέες γραμμές στο τέλος, εκτός από τις προϋπάρχουσες αλλαγές γραμμής." #. qgd6X #: sf_string.xhp @@ -23315,7 +23315,7 @@ "par_id601612395193333\n" "help.text" msgid "Tabs are expanded using the same procedure performed by the ExpandTabs method." -msgstr "" +msgstr "Οι στηλοθέτες επεκτείνονται χρησιμοποιώντας την ίδια διαδικασία που εκτελείται με τη μέθοδο ExpandTabs." #. kTwEG #: sf_string.xhp @@ -23324,7 +23324,7 @@ "par_id641612394826616\n" "help.text" msgid "Symbolic line breaks are replaced by their equivalent Ascii characters." -msgstr "" +msgstr "Οι συμβολικές αλλαγές γραμμής αντικαθίστανται από τους ισοδύναμους χαρακτήρες Ascii." #. y7VvP #: sf_string.xhp @@ -23333,7 +23333,7 @@ "par_id361612394859733\n" "help.text" msgid "If the wrapped output has no content, the returned array is empty." -msgstr "" +msgstr "Εάν η αναδιπλωμένη έξοδος δεν έχει περιεχόμενο, ο πίνακας που επιστρέφεται είναι κενός." #. SNRzH #: sf_string.xhp @@ -23342,7 +23342,7 @@ "par_id251585834468498\n" "help.text" msgid "inputstr: The string to wrap." -msgstr "" +msgstr "inputstr: Η συμβολοσειρά προς αναδίπλωση." #. MiptC #: sf_string.xhp @@ -23351,7 +23351,7 @@ "par_id351585834773177\n" "help.text" msgid "width: The maximum number of characters in each line (Default = 70)." -msgstr "" +msgstr "width (πλάτος): Ο μέγιστος αριθμός χαρακτήρων σε κάθε γραμμή (Προεπιλογή = 70)." #. epG6z #: sf_string.xhp @@ -23360,7 +23360,7 @@ "par_id741585834874500\n" "help.text" msgid "tabsize: Before wrapping the text, the existing TAB Chr(9) characters are replaced with spaces. The argument tabsize defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)." -msgstr "" +msgstr "tabsize: Πριν από την αναδίπλωση του κειμένου, οι υπάρχοντες χαρακτήρες TAB Chr(9) αντικαθίστανται με κενά διαστήματα. Το όρισμα tabsize ορίζει τις στάσεις TAB στο TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Προεπιλογή = 8)." #. HjZDB #: sf_textstream.xhp @@ -23369,7 +23369,7 @@ "tit\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.TextStream" #. cEA5U #: sf_textstream.xhp @@ -23378,7 +23378,7 @@ "bm_id351585330787295\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.TextStream" #. nBJsE #: sf_textstream.xhp @@ -23387,7 +23387,7 @@ "par_id511585330787205\n" "help.text" msgid "The TextStream service is used to sequentially read from and write to files opened or created using the ScriptForge.FileSystem service." -msgstr "" +msgstr "Η υπηρεσία TextStream χρησιμοποιείται για τη διαδοχική ανάγνωση και εγγραφή σε αρχεία που ανοίγονται ή δημιουργούνται χρησιμοποιώντας την υπηρεσία ScriptForge.FileSystem." #. TeRTa #: sf_textstream.xhp @@ -23396,7 +23396,7 @@ "par_id41613596903894\n" "help.text" msgid "The methods OpenTextFile and CreateTextFile from the FileSystem service return an instance of the TextStream service." -msgstr "" +msgstr "Οι μέθοδοι OpenTextFile και CreateTextFile από την υπηρεσία FileSystem επιστρέφουν μια παρουσία της υπηρεσίας TextStream." #. MVFWC #: sf_textstream.xhp @@ -23405,7 +23405,7 @@ "par_id161585330787262\n" "help.text" msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system." -msgstr "" +msgstr "Οι οριοθέτες γραμμής μπορούν να καθοριστούν από τον χρήστη. Στις λειτουργίες εισόδου υποστηρίζονται τα CR, LF ή CR+LF. Στις λειτουργίες εξόδου, το προεπιλεγμένο διαχωριστικό γραμμής είναι αυτό που χρησιμοποιείται από το λειτουργικό σύστημα." #. GDkir #: sf_textstream.xhp @@ -23414,7 +23414,7 @@ "par_id831613598137669\n" "help.text" msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the SF_String.sfNEWLINE property." -msgstr "" +msgstr "Ο οριοθέτης γραμμής για το λειτουργικό σύστημα όπου εκτελείται η μακροεντολή μπορεί να προσπελαστεί χρησιμοποιώντας την ιδιότητα SF_String.sfNEWLINE." #. SvXzF #: sf_textstream.xhp @@ -23423,7 +23423,7 @@ "par_id851613597445432\n" "help.text" msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run." -msgstr "" +msgstr "Όλες οι λειτουργίες που απαιτούνται για την ανάγνωση ή την εγγραφή σε ένα αρχείο (άνοιγμα, ανάγνωση/εγγραφή και κλείσιμο) θεωρείται ότι πραγματοποιούνται κατά την ίδια εκτέλεση μακροεντολής." #. dc5KN #: sf_textstream.xhp @@ -23432,7 +23432,7 @@ "hd_id83158533078741\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Κλήση υπηρεσίας" #. AuQX2 #: sf_textstream.xhp @@ -23441,7 +23441,7 @@ "par_id351613598192725\n" "help.text" msgid "The examples below in Basic and Python use the OpenTextFile method to create an instance of the TextStream Service." -msgstr "" +msgstr "Τα παρακάτω παραδείγματα σε Basic και Python χρησιμοποιούν τη μέθοδο OpenTextFile για να δημιουργήσουν μια παρουσία της υπηρεσίας TextStream." #. UUudg #: sf_textstream.xhp @@ -23450,7 +23450,7 @@ "par_id371585330787197\n" "help.text" msgid "The file must be closed with the CloseFile method after all read or write operations have been executed:" -msgstr "" +msgstr "Το αρχείο πρέπει να κλείσει με τη μέθοδο CloseFile αφού έχουν εκτελεστεί όλες οι λειτουργίες ανάγνωσης ή εγγραφής:" #. zNveN #: sf_textstream.xhp @@ -23459,7 +23459,7 @@ "par_id891582733781994\n" "help.text" msgid "Optionally, the resources used by the TextStream instance can be released using the Dispose method:" -msgstr "" +msgstr "Προαιρετικά, οι πόροι που χρησιμοποιούνται από την παρουσία TextStream μπορούν να απελευθερωθούν χρησιμοποιώντας τη μέθοδο Dispose:" #. nsGCZ #: sf_textstream.xhp @@ -23468,7 +23468,7 @@ "par_id121612917368946\n" "help.text" msgid "The methods in the TextStream service are mostly based on the XTextInputStream and XTextOutputStream UNO interfaces." -msgstr "" +msgstr "Οι μέθοδοι στην υπηρεσία TextStream βασίζονται κυρίως στις διεπαφές UNO XTextInputStream και XTextOutputOextlie ." #. JAmgD #: sf_textstream.xhp @@ -23477,7 +23477,7 @@ "hd_id941585330787948\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Ιδιότητες" #. aN9zM #: sf_textstream.xhp @@ -23486,7 +23486,7 @@ "par_id631585330787267\n" "help.text" msgid "Name" -msgstr "" +msgstr "Όνομα" #. vwGC5 #: sf_textstream.xhp @@ -23495,7 +23495,7 @@ "par_id401585330787370\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "Μόνο για ανάγνωση" #. GpL38 #: sf_textstream.xhp @@ -23504,7 +23504,7 @@ "par_id581585330787700\n" "help.text" msgid "Type" -msgstr "" +msgstr "Τύπος" #. 6FDuM #: sf_textstream.xhp @@ -23513,7 +23513,7 @@ "par_id551585330787608\n" "help.text" msgid "Description" -msgstr "" +msgstr "Περιγραφή" #. ECkTm #: sf_textstream.xhp @@ -23522,7 +23522,7 @@ "par_id181585330787752\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. YFkaY #: sf_textstream.xhp @@ -23531,7 +23531,7 @@ "par_id901585330787680\n" "help.text" msgid "Used in read mode. A True value indicates that the end of the file has been reached. A test using this property should precede calls to the ReadLine method." -msgstr "" +msgstr "Χρησιμοποιείται σε λειτουργία ανάγνωσης. Η τιμή True υποδηλώνει ότι έχει φτάσει το τέλος του αρχείου. Μια δοκιμή που χρησιμοποιεί αυτήν την ιδιότητα θα πρέπει να προηγείται των κλήσεων στη μέθοδο ReadLine." #. EFEnA #: sf_textstream.xhp @@ -23540,7 +23540,7 @@ "par_id561585330787568\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. cVCoJ #: sf_textstream.xhp @@ -23549,7 +23549,7 @@ "par_id741585330787777\n" "help.text" msgid "The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "Το σύνολο χαρακτήρων που θα χρησιμοποιηθεί. Η προεπιλεγμένη κωδικοποίηση είναι \"UTF-8\"." #. p5s3X #: sf_textstream.xhp @@ -23558,7 +23558,7 @@ "par_id641585330787207\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. JjEqX #: sf_textstream.xhp @@ -23567,7 +23567,7 @@ "par_id281585330787614\n" "help.text" msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the FileNaming property of the FileSystem service." -msgstr "" +msgstr "Επιστρέφει το όνομα του τρέχοντος αρχείου, είτε σε μορφή URL, είτε στη μορφή του εγγενούς λειτουργικού συστήματος, ανάλογα με την τρέχουσα τιμή της ιδιότητας FileNaming της υπηρεσίας FileSystem." #. goEnw #: sf_textstream.xhp @@ -23576,7 +23576,7 @@ "par_id111585330787410\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. MZS6Z #: sf_textstream.xhp @@ -23585,7 +23585,7 @@ "par_id861585330787417\n" "help.text" msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"." -msgstr "" +msgstr "Υποδεικνύει τη λειτουργία εισόδου/εξόδου. Πιθανές τιμές είναι \"READ\", \"WRITE\" ή \"APPEND\"." #. 7nTb9 #: sf_textstream.xhp @@ -23594,7 +23594,7 @@ "par_id87158533078795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. j45gC #: sf_textstream.xhp @@ -23603,7 +23603,7 @@ "par_id561585330787741\n" "help.text" msgid "Returns the number of lines read or written so far." -msgstr "" +msgstr "Επιστρέφει τον αριθμό των γραμμών που διαβάστηκαν ή γράφτηκαν μέχρι στιγμής." #. CLAvQ #: sf_textstream.xhp @@ -23612,7 +23612,7 @@ "par_id531585330787157\n" "help.text" msgid "No" -msgstr "" +msgstr "Όχι" #. rdA5M #: sf_textstream.xhp @@ -23621,7 +23621,7 @@ "par_id691585330787279\n" "help.text" msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system." -msgstr "" +msgstr "Ορίζει ή επιστρέφει τον τρέχοντα οριοθέτη που θα εισαχθεί μεταξύ δύο διαδοχικών γραπτών γραμμών. Η προεπιλεγμένη τιμή είναι ο εγγενής διαχωριστής γραμμής στο τρέχον λειτουργικό σύστημα." #. dCeHZ #: sf_textstream.xhp @@ -23630,7 +23630,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "Για να μάθετε περισσότερα σχετικά με τα ονόματα των συνόλων χαρακτήρων, επισκεφτείτε τη σελίδα Σύνολο χαρακτήρων IANA. Προσέξτε ότι το %PRODUCTNAME δεν υλοποιεί όλα τα υφιστάμενα σύνολα χαρακτήρων." #. hKJkD #: sf_textstream.xhp @@ -23639,7 +23639,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the TextStream Service" -msgstr "" +msgstr "Κατάλογος μεθόδων στην υπηρεσία TextStream" #. DBBKM #: sf_textstream.xhp @@ -23648,7 +23648,7 @@ "par_id421585330787675\n" "help.text" msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns True if the file was successfully closed." -msgstr "" +msgstr "Κλείνει την τρέχουσα ροή εισόδου ή εξόδου και αδειάζει την προσωρινή μνήμη εξόδου, εάν χρειάζεται. Επιστρέφει True εάν το αρχείο έκλεισε με επιτυχία." #. MCW3q #: sf_textstream.xhp @@ -23657,7 +23657,7 @@ "par_id65158533078799\n" "help.text" msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed." -msgstr "" +msgstr "Επιστρέφει όλες τις υπόλοιπες γραμμές στη ροή κειμένου ως μία συμβολοσειρά. Οι αλλαγές γραμμής δεν αφαιρούνται." #. Vr34D #: sf_textstream.xhp @@ -23666,7 +23666,7 @@ "par_id71613600347125\n" "help.text" msgid "The resulting string can be split in lines either by using the Split built-in Basic function if the line delimiter is known, or with the SF_String.SplitLines method." -msgstr "" +msgstr "Η συμβολοσειρά που προκύπτει μπορεί να χωριστεί σε γραμμές είτε χρησιμοποιώντας την ενσωματωμένη συνάρτηση Basic Split, εάν ο οριοθέτης γραμμής είναι γνωστός, είτε με τη μέθοδο SF_String.SplitLines." #. VRLGn #: sf_textstream.xhp @@ -23675,7 +23675,7 @@ "par_id91585330787373\n" "help.text" msgid "For large files, using the ReadAll method wastes memory resources. In such cases it is recommended to read the file line by line using the ReadLine method." -msgstr "" +msgstr "Για μεγάλα αρχεία, η χρήση της μεθόδου ReadAll σπαταλά πόρους μνήμης. Σε τέτοιες περιπτώσεις, συνιστάται η ανάγνωση του αρχείου γραμμή προς γραμμή χρησιμοποιώντας τη μέθοδο ReadLine." #. BuBVA #: sf_textstream.xhp @@ -23684,7 +23684,7 @@ "par_id921613595637851\n" "help.text" msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):" -msgstr "" +msgstr "Εξετάστε το αρχείο κειμένου \"Students.txt\" με τα ακόλουθα περιεχόμενα (ένα όνομα σε κάθε γραμμή):" #. hk7q4 #: sf_textstream.xhp @@ -23693,7 +23693,7 @@ "par_id391613596019750\n" "help.text" msgid "The examples below in Basic and Python use the ReadAll and SplitLines methods to read the contents of the file into an array of strings:" -msgstr "" +msgstr "Τα παρακάτω παραδείγματα σε Basic και Python χρησιμοποιούν τις μεθόδους ReadAll και SplitLines για να διαβάσουν τα περιεχόμενα του αρχείου σε μια σειρά από συμβολοσειρές:" #. BuRJE #: sf_textstream.xhp @@ -23702,7 +23702,7 @@ "bas_id251613595640550\n" "help.text" msgid "'Loads the FileSystem service" -msgstr "" +msgstr "'Φορτώνει την υπηρεσία FileSystem" #. L2a3D #: sf_textstream.xhp @@ -23711,7 +23711,7 @@ "bas_id181613595641087\n" "help.text" msgid "'Opens the text file with the names to be read" -msgstr "" +msgstr "'Ανοίγει το αρχείο κειμένου με τα ονόματα προς ανάγνωση" #. 7Fq9E #: sf_textstream.xhp @@ -23720,7 +23720,7 @@ "par_id871585330787885\n" "help.text" msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string." -msgstr "" +msgstr "Επιστρέφει την επόμενη γραμμή στη ροή κειμένου ως συμβολοσειρά. Οι αλλαγές γραμμής αφαιρούνται από την επιστρεφόμενη συμβολοσειρά." #. 6iDcF #: sf_textstream.xhp @@ -23729,7 +23729,7 @@ "par_id431613600221626\n" "help.text" msgid "The AtEndOfStream test should precede the ReadLine method like in the example below." -msgstr "" +msgstr "Η δοκιμή AtEndOfStream θα πρέπει να προηγείται της μεθόδου ReadLine όπως στο παρακάτω παράδειγμα." #. GRRkq #: sf_textstream.xhp @@ -23738,7 +23738,7 @@ "par_id171585330787774\n" "help.text" msgid "An error will be raised if the AtEndOfStream was reached during the previous ReadLine or SkipLine method call." -msgstr "" +msgstr "Θα προκύψει σφάλμα εάν επιτεύχθηκε το AtEndOfStream κατά την προηγούμενη κλήση της μεθόδου ReadLine ή SkipLine." #. mAty4 #: sf_textstream.xhp @@ -23747,7 +23747,7 @@ "par_id11585330787847\n" "help.text" msgid "Skips the next line in the input stream when reading a TextStream file." -msgstr "" +msgstr "Παραλείπει την επόμενη γραμμή στη ροή εισόδου κατά την ανάγνωση ενός αρχείου TextStream." #. FDMJB #: sf_textstream.xhp @@ -23756,7 +23756,7 @@ "par_id441613600704766\n" "help.text" msgid "This method can result in AtEndOfStream being set to True." -msgstr "" +msgstr "Αυτή η μέθοδος μπορεί να έχει ως αποτέλεσμα το AtEndOfStream να οριστεί σε True." #. D4JVb #: sf_textstream.xhp @@ -23765,7 +23765,7 @@ "par_id141585330787657\n" "help.text" msgid "Writes a specified number of empty lines to the output stream." -msgstr "" +msgstr "Γράφει έναν καθορισμένο αριθμό κενών γραμμών στη ροή εξόδου." #. YsBUm #: sf_textstream.xhp @@ -23774,7 +23774,7 @@ "par_id291585330787357\n" "help.text" msgid "lines: The number of empty lines to write to the file." -msgstr "" +msgstr "lines (γραμμές): Ο αριθμός των κενών γραμμών για εγγραφή στο αρχείο." #. GCPCC #: sf_textstream.xhp @@ -23783,7 +23783,7 @@ "par_id101585330787215\n" "help.text" msgid "Writes the given string to the output stream as a single line." -msgstr "" +msgstr "Γράφει τη δεδομένη συμβολοσειρά στη ροή εξόδου ως μία μοναδική γραμμή." #. Eska7 #: sf_textstream.xhp @@ -23792,7 +23792,7 @@ "par_id421613601002074\n" "help.text" msgid "The character defined in the NewLine property is used as the line delimiter." -msgstr "" +msgstr "Ο χαρακτήρας που ορίζεται στην ιδιότητα NewLine χρησιμοποιείται ως οριοθέτης γραμμής." #. LXFPE #: sf_textstream.xhp @@ -23801,7 +23801,7 @@ "par_id491585330787650\n" "help.text" msgid "line: The line to write, may be empty." -msgstr "" +msgstr "line (γραμμή): Η γραμμή που θέλετε να γράψετε μπορεί να είναι κενή." #. PM5Bx #: sf_textstream.xhp @@ -23810,7 +23810,7 @@ "par_id821626894480105\n" "help.text" msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until lastValue is reached." -msgstr "" +msgstr "Τα παρακάτω παραδείγματα σε Basic και Python δημιουργούν ένα αρχείο κειμένου σε μορφή CSV, στο οποίο κάθε γραμμή περιέχει μια τιμή και το τετράγωνό της μέχρι να επιτευχθεί η lastValue." #. 39u4o #: sf_textstream.xhp @@ -23819,7 +23819,7 @@ "bas_id21613321528612\n" "help.text" msgid "'Instantiates the FileSystem Service" -msgstr "" +msgstr "'Δημιουργεί την υπηρεσία FileSystem" #. FnTiG #: sf_textstream.xhp @@ -23828,7 +23828,7 @@ "bas_id191613321529277\n" "help.text" msgid "'Creates a text file" -msgstr "" +msgstr "'Δημιουργεί ένα αρχείο κειμένου" #. f5RSB #: sf_textstream.xhp @@ -23837,7 +23837,7 @@ "bas_id641613321530181\n" "help.text" msgid "'Writes the Value and Value squared, separated by \";\"" -msgstr "" +msgstr "'Γράφει την τιμή και την τιμή στο τετράγωνο, διαχωρισμένες με \";\"" #. FCowk #: sf_textstream.xhp @@ -23846,7 +23846,7 @@ "bas_id141613321530960\n" "help.text" msgid "myFile.WriteLine(\"Value;Value Squared\")" -msgstr "" +msgstr "myFile.WriteLine(\"Value;Value Squared\")" #. m9Mo4 #: sf_textstream.xhp @@ -23855,7 +23855,7 @@ "bas_id881613321532598\n" "help.text" msgid "'Closes the file and free resources" -msgstr "" +msgstr "'Κλείνει το αρχείο και ελευθερώνει πόρους" #. PCSPY #: sf_timer.xhp @@ -23864,7 +23864,7 @@ "tit\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.Timer" #. cxRDS #: sf_timer.xhp @@ -23873,7 +23873,7 @@ "hd_id731582733781114\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.Timer" #. WyVvH #: sf_timer.xhp @@ -23882,7 +23882,7 @@ "par_id961582733781662\n" "help.text" msgid "The Timer service measures the amount of time it takes to run user scripts." -msgstr "" +msgstr "Η υπηρεσία Timer μετρά τον χρόνο που απαιτείται για την εκτέλεση των σεναρίων χρήστη." #. qDa8E #: sf_timer.xhp @@ -23891,7 +23891,7 @@ "par_id181582733781323\n" "help.text" msgid "A Timer measures durations. It can be:" -msgstr "" +msgstr "Ένα Timer (Χρονόμετρο) μετρά τις durations (διάρκειες). Μπορεί να είναι:" #. ErpLm #: sf_timer.xhp @@ -23900,7 +23900,7 @@ "par_id711582733781252\n" "help.text" msgid "Started, to indicate when to start measuring time." -msgstr "" +msgstr "Started (εκκίνηση), για να υποδείξετε πότε θα ξεκινήσει η μέτρηση του χρόνου." #. NAAFg #: sf_timer.xhp @@ -23909,7 +23909,7 @@ "par_id631582733781431\n" "help.text" msgid "Suspended, to pause measuring running time." -msgstr "" +msgstr "Suspended (Σε αναστολή), για παύση της μέτρησης του χρόνου λειτουργίας." #. nt9Qc #: sf_timer.xhp @@ -23918,7 +23918,7 @@ "par_id691582733781498\n" "help.text" msgid "Resumed, to continue tracking running time after the Timer has been suspended." -msgstr "" +msgstr "Resumed (Συνέχεια), για να συνεχιστεί η παρακολούθηση του χρόνου εκτέλεσης μετά την αναστολή του χρονοδιακόπτη." #. DVCBM #: sf_timer.xhp @@ -23927,7 +23927,7 @@ "par_id31582733781344\n" "help.text" msgid "Restarted, which will cancel previous measurements and start the Timer at zero." -msgstr "" +msgstr "Restarted (Επανεκκίνηση), η οποία θα ακυρώσει τις προηγούμενες μετρήσεις και θα ξεκινήσει το Timer στο μηδέν." #. dm7yA #: sf_timer.xhp @@ -23936,7 +23936,7 @@ "par_id991582733781280\n" "help.text" msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds" -msgstr "" +msgstr "Οι διάρκειες εκφράζονται σε δευτερόλεπτα με ακρίβεια 3 δεκαδικών ψηφίων (χιλιοστά του δευτερολέπτου). Μια τιμή διάρκειας 12.345 σημαίνει 12 δευτερόλεπτα και 345 χιλιοστά του δευτερολέπτου" #. CVhDR #: sf_timer.xhp @@ -23945,7 +23945,7 @@ "hd_id201582733781265\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Κλήση υπηρεσίας" #. SCYEX #: sf_timer.xhp @@ -23954,7 +23954,7 @@ "par_id891610734806133\n" "help.text" msgid "The example below creates a Timer object named myTimer and starts it immediately." -msgstr "" +msgstr "Το παρακάτω παράδειγμα δημιουργεί ένα αντικείμενο Timer με το όνομα myTimer και το ξεκινά αμέσως." #. CnZqc #: sf_timer.xhp @@ -23963,7 +23963,7 @@ "par_id891582733781994\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Συνιστάται η απελευθέρωση πόρων μετά τη χρήση:" #. 8h3fp #: sf_timer.xhp @@ -23972,7 +23972,7 @@ "hd_id521582733781450\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Ιδιότητες" #. dVncX #: sf_timer.xhp @@ -23981,7 +23981,7 @@ "par_id71582733781260\n" "help.text" msgid "Name" -msgstr "" +msgstr "Όνομα" #. hFnkK #: sf_timer.xhp @@ -23990,7 +23990,7 @@ "par_id711582733781103\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "Μόνο για ανάγνωση" #. NvqK9 #: sf_timer.xhp @@ -23999,7 +23999,7 @@ "par_id76158273378122\n" "help.text" msgid "Type" -msgstr "" +msgstr "Τύπος" #. 7zFYh #: sf_timer.xhp @@ -24008,7 +24008,7 @@ "par_id751582733781926\n" "help.text" msgid "Description" -msgstr "" +msgstr "Περιγραφή" #. T92or #: sf_timer.xhp @@ -24017,7 +24017,7 @@ "par_id621582733781588\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. 9yDgM #: sf_timer.xhp @@ -24026,7 +24026,7 @@ "par_id731582733781476\n" "help.text" msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)" -msgstr "" +msgstr "Ο πραγματικός χρόνος λειτουργίας που έχει παρέλθει από την έναρξη ή μεταξύ έναρξης και διακοπής (δεν λαμβάνεται υπόψη ο χρόνος αναστολής)" #. ThAaG #: sf_timer.xhp @@ -24035,7 +24035,7 @@ "par_id301582733781498\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. tqpDU #: sf_timer.xhp @@ -24044,7 +24044,7 @@ "par_id401582733781608\n" "help.text" msgid "True when timer is started or suspended" -msgstr "" +msgstr "True όταν ο χρονοδιακόπτης ξεκινά ή αναστέλεται" #. pSPgk #: sf_timer.xhp @@ -24053,7 +24053,7 @@ "par_id181582733781551\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. SGyi4 #: sf_timer.xhp @@ -24062,7 +24062,7 @@ "par_id161582733781328\n" "help.text" msgid "True when timer is started and suspended" -msgstr "" +msgstr "True όταν ο χρονοδιακόπτης ξεκινά και αναστέλεται" #. qoNpD #: sf_timer.xhp @@ -24071,7 +24071,7 @@ "par_id651582733781874\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. E45MD #: sf_timer.xhp @@ -24080,7 +24080,7 @@ "par_id171582733781456\n" "help.text" msgid "The actual time elapsed while suspended since start or between start and stop" -msgstr "" +msgstr "Ο πραγματικός χρόνος που παρήλθε κατά την αναστολή από την έναρξη ή μεταξύ έναρξης και διακοπής" #. gxF8S #: sf_timer.xhp @@ -24089,7 +24089,7 @@ "par_id141582733781303\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. FeCob #: sf_timer.xhp @@ -24098,7 +24098,7 @@ "par_id411582733781932\n" "help.text" msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)" -msgstr "" +msgstr "Ο πραγματικός χρόνος που έχει παρέλθει από την έναρξη ή μεταξύ εκκίνησης και διακοπής (συμπεριλαμβανομένων των αναστολών και του χρόνου λειτουργίας)" #. Mav4g #: sf_timer.xhp @@ -24107,7 +24107,7 @@ "hd_id141582734141895\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Μέθοδοι" #. P8RQj #: sf_timer.xhp @@ -24116,7 +24116,7 @@ "par_id291582734377752\n" "help.text" msgid "All methods do not require arguments and return a Boolean value." -msgstr "" +msgstr "Όλες οι μέθοδοι δεν απαιτούν ορίσματα και επιστρέφουν μια τιμή Boolean." #. onEib #: sf_timer.xhp @@ -24125,7 +24125,7 @@ "par_id311582734894257\n" "help.text" msgid "If the returned value is False, then nothing happened." -msgstr "" +msgstr "Εάν η επιστρεφόμενη τιμή είναι False, τότε δεν συνέβη τίποτα." #. U82Do #: sf_timer.xhp @@ -24134,7 +24134,7 @@ "par_id871582734180676\n" "help.text" msgid "Name" -msgstr "" +msgstr "Όνομα" #. 6oGwx #: sf_timer.xhp @@ -24143,7 +24143,7 @@ "par_id971582734180676\n" "help.text" msgid "Description" -msgstr "" +msgstr "Περιγραφή" #. ZMfpe #: sf_timer.xhp @@ -24152,7 +24152,7 @@ "par_id911582734180676\n" "help.text" msgid "Returned value" -msgstr "" +msgstr "Επιστρεφόμενη τιμή" #. 6DJTP #: sf_timer.xhp @@ -24161,7 +24161,7 @@ "par_id301582734180676\n" "help.text" msgid "Resumes the Timer if it has been suspended" -msgstr "" +msgstr "Συνεχίζει το Timer (Χρονόμετρο) εάν έχει ανασταλεί" #. ixF7A #: sf_timer.xhp @@ -24170,7 +24170,7 @@ "par_id661582734180676\n" "help.text" msgid "False if the timer is not suspended" -msgstr "" +msgstr "False εάν το χρονόμετρο δεν είναι σε αναστολή" #. AAozF #: sf_timer.xhp @@ -24179,7 +24179,7 @@ "par_id821582734649305\n" "help.text" msgid "Terminates the Timer and discards its current property values, restarting as a new clean Timer" -msgstr "" +msgstr "Τερματίζει το Timer και απορρίπτει τις τρέχουσες τιμές ιδιοτήτων του, επανεκκινώντας ως νέο καθαρό Timer" #. UtCTT #: sf_timer.xhp @@ -24188,7 +24188,7 @@ "par_id761582734649305\n" "help.text" msgid "False if the timer is inactive" -msgstr "" +msgstr "False εάν το χρονόμετρο είναι ανενεργό" #. AkgAy #: sf_timer.xhp @@ -24197,7 +24197,7 @@ "par_id641582734802443\n" "help.text" msgid "Starts a new clean timer" -msgstr "" +msgstr "Ξεκινά ένα νέο καθαρό χρονόμετρο" #. B4gTh #: sf_timer.xhp @@ -24206,7 +24206,7 @@ "par_id921582734802443\n" "help.text" msgid "False if the timer is already started" -msgstr "" +msgstr "False εάν το χρονόμετρο έχει ήδη ξεκινήσει" #. D7CoH #: sf_timer.xhp @@ -24215,7 +24215,7 @@ "par_id81582734905507\n" "help.text" msgid "Suspends a running timer" -msgstr "" +msgstr "Αναστέλλει ένα εκτελούμενο χρονόμετρο" #. YbeSJ #: sf_timer.xhp @@ -24224,7 +24224,7 @@ "par_id661582734905507\n" "help.text" msgid "False if the timer is not started or already suspended" -msgstr "" +msgstr "False εάν το χρονόμετρο δεν έχει ξεκινήσει ή έχει ήδη ανασταλεί" #. sgXra #: sf_timer.xhp @@ -24233,7 +24233,7 @@ "par_id861582734996722\n" "help.text" msgid "Stops a running timer" -msgstr "" +msgstr "Διακόπτει ένα χρονόμετρο που λειτουργεί" #. WkCCC #: sf_timer.xhp @@ -24242,7 +24242,7 @@ "par_id381582734996722\n" "help.text" msgid "False if the timer is neither started nor suspended" -msgstr "" +msgstr "False εάν το χρονόμετρο δεν έχει ξεκινήσει ούτε έχει ανασταλεί" #. DuD3h #: sf_timer.xhp @@ -24251,7 +24251,7 @@ "par_id731626871820490\n" "help.text" msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the Timer service." -msgstr "" +msgstr "Τα παρακάτω παραδείγματα σε Basic και Python επεξηγούν τη χρήση των μεθόδων και των ιδιοτήτων στην υπηρεσία Timer." #. UgBnC #: sf_timer.xhp @@ -24260,7 +24260,7 @@ "bas_id141582735926821\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as suspended time" -msgstr "" +msgstr "'Ο χρόνος που έχει παρέλθει όσο είναι ανοιχτό το πλαίσιο διαλόγου θα υπολογίζεται ως χρόνος σε αναστολή" #. 4jHcj #: sf_timer.xhp @@ -24269,7 +24269,7 @@ "bas_id901582735961725\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as running time" -msgstr "" +msgstr "'Ο χρόνος που έχει παρέλθει όσο είναι ανοιχτό το πλαίσιο διαλόγου θα υπολογίζεται ως χρόνος εκτέλεσης" #. 7QhZU #: sf_timer.xhp @@ -24278,7 +24278,7 @@ "bas_id941610739926687\n" "help.text" msgid "'Shows the final time measurements" -msgstr "" +msgstr "'Εμφανίζει τις μετρήσεις του τελικού χρόνου" #. J6XGB #: sf_timer.xhp @@ -24287,7 +24287,7 @@ "par_id281610740093006\n" "help.text" msgid "If you call the Terminate method, subsequent calls for the Continue method will not resume time measurement. Similarly, after a Timer has been terminated, calling the Start method will restart it as if it were a clean new Timer." -msgstr "" +msgstr "Εάν καλέσετε τη μέθοδο Terminate (Τερματισμός), οι επόμενες κλήσεις για τη μέθοδο Continue (Συνέχεια) δεν θα συνεχίσουν τη μέτρηση του χρόνου. Ομοίως, μετά τον τερματισμό ενός χρονομέτρου, η κλήση της μεθόδου Start (Έναρξη) θα τον επανεκκινήσει σαν να ήταν ένα καθαρό νέο χρονόμετρο." #. DSYKj #: sf_timer.xhp @@ -24296,7 +24296,7 @@ "par_id391626872019832\n" "help.text" msgid "Beware that the Wait function in Basic takes in a duration argument in milliseconds whereas the sleep function in Python uses seconds in its argument." -msgstr "" +msgstr "Προσέξτε ότι η συνάρτηση Wait (Αναμονή) στη Basic λαμβάνει ένα όρισμα διάρκειας σε χιλιοστά του δευτερολέπτου, ενώ η συνάρτηση sleep στην Python χρησιμοποιεί δευτερόλεπτα στο όρισμά της." #. bHEyr #: sf_timer.xhp @@ -24305,7 +24305,7 @@ "hd_id431610989623086\n" "help.text" msgid "Working with Multiple Timers" -msgstr "" +msgstr "Εργασία με πολλαπλά χρονόμετρα" #. dr779 #: sf_timer.xhp @@ -24314,7 +24314,7 @@ "par_id741610989639201\n" "help.text" msgid "It is possible to instantiate multiple Timer services in parallel, which gives flexibility in measuring time in different parts of the code." -msgstr "" +msgstr "Είναι δυνατή η παράλληλη δημιουργία πολλαπλών υπηρεσιών Timer, γεγονός που παρέχει ευελιξία στη μέτρηση του χρόνου σε διαφορετικά μέρη του κώδικα." #. ueLgB #: sf_timer.xhp @@ -24323,7 +24323,7 @@ "par_id921610989722908\n" "help.text" msgid "The following example illustrates how to create two Timer objects and start them separately." -msgstr "" +msgstr "Το παρακάτω παράδειγμα δείχνει πώς να δημιουργήσετε δύο αντικείμενα Timer και να τα ξεκινήσετε ξεχωριστά." #. PtA4E #: sf_timer.xhp @@ -24332,7 +24332,7 @@ "bas_id481610989853679\n" "help.text" msgid "'Starts myTimerA" -msgstr "" +msgstr "'Εκκινεί το myTimerA" #. VUdGW #: sf_timer.xhp @@ -24341,7 +24341,7 @@ "bas_id331610989849501\n" "help.text" msgid "'Starts myTimerB" -msgstr "" +msgstr "'Εκκινεί το myTimerB" #. t98Fv #: sf_timer.xhp @@ -24350,7 +24350,7 @@ "bas_id931610989837747\n" "help.text" msgid "'Terminate both timers" -msgstr "" +msgstr "'Τερματισμός και των δύο χρονομέτρων" #. dphFv #: sf_ui.xhp @@ -24359,7 +24359,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.UI" #. QWA6E #: sf_ui.xhp @@ -24368,7 +24368,7 @@ "hd_id371587913266310\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Υπηρεσία ScriptForge.UI" #. cAtxQ #: sf_ui.xhp @@ -24377,7 +24377,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "Η υπηρεσία UI (διεπαφή χρήστη) απλοποιεί την αναγνώριση και τον χειρισμό των διαφορετικών παραθύρων που συνθέτουν ολόκληρη την εφαρμογή του %PRODUCTNAME:" #. nTqj5 #: sf_ui.xhp @@ -24386,7 +24386,7 @@ "par_id591587913266547\n" "help.text" msgid "Windows selection" -msgstr "" +msgstr "Επιλογή παραθύρων" #. 45jFA #: sf_ui.xhp @@ -24395,7 +24395,7 @@ "par_id511587913266292\n" "help.text" msgid "Windows moving and resizing" -msgstr "" +msgstr "Μετακίνηση και αυξομείωση των παραθύρων" #. UKRyn #: sf_ui.xhp @@ -24404,7 +24404,7 @@ "par_id51587913266596\n" "help.text" msgid "Statusbar settings" -msgstr "" +msgstr "Ρυθμίσεις γραμμής κατάστασης" #. oj2kC #: sf_ui.xhp @@ -24413,7 +24413,7 @@ "par_id401599404339702\n" "help.text" msgid "Display of a floating progress bar" -msgstr "" +msgstr "Εμφάνιση αιωρούμενης γραμμής προόδου" #. iE5hR #: sf_ui.xhp @@ -24422,7 +24422,7 @@ "par_id761587913266388\n" "help.text" msgid "Creation of new windows" -msgstr "" +msgstr "Δημιουργία νέων παραθύρων" #. Dxuyy #: sf_ui.xhp @@ -24431,7 +24431,7 @@ "par_id591587913266489\n" "help.text" msgid "Access to the underlying \"documents\"" -msgstr "" +msgstr "Πρόσβαση στα υποκείμενα \"έγγραφα\"" #. W5BL2 #: sf_ui.xhp @@ -24440,7 +24440,7 @@ "par_id181620312953395\n" "help.text" msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script." -msgstr "" +msgstr "Η υπηρεσία διεπαφής χρήστη είναι το σημείο εκκίνησης για το άνοιγμα, τη δημιουργία ή την πρόσβαση στο περιεχόμενο νέων ή υφιστάμενων εγγράφων από ένα σενάριο χρήστη." #. ERvRF #: sf_ui.xhp @@ -24449,7 +24449,7 @@ "hd_id881587913266307\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Ορισμοί" #. L8Ate #: sf_ui.xhp @@ -24458,7 +24458,7 @@ "par_id741587913266919\n" "help.text" msgid "A window can be designated using various ways:" -msgstr "" +msgstr "Ένα παράθυρο μπορεί να οριστεί με διάφορους τρόπους:" #. Bhs9h #: sf_ui.xhp @@ -24467,7 +24467,7 @@ "par_id291587913946648\n" "help.text" msgid "a full path and file name" -msgstr "" +msgstr "μια πλήρη διαδρομή και όνομα αρχείου" #. CK62z #: sf_ui.xhp @@ -24476,7 +24476,7 @@ "par_id991587914045862\n" "help.text" msgid "the last component of the full file name or even only the last component without its suffix" -msgstr "" +msgstr "το τελευταίο στοιχείο του πλήρους ονόματος αρχείου ή ακόμα και μόνο το τελευταίο στοιχείο χωρίς το επίθημά του" #. 8qLrG #: sf_ui.xhp @@ -24485,7 +24485,7 @@ "par_id541587914079744\n" "help.text" msgid "the title of the window" -msgstr "" +msgstr "τον τίτλο του παραθύρου" #. rdSGt #: sf_ui.xhp @@ -24494,7 +24494,7 @@ "par_id191587914134221\n" "help.text" msgid "for new documents, something like \"Untitled 1\"" -msgstr "" +msgstr "για νέα έγγραφα, κάτι σαν \"Άτιτλο 1\"" #. GrAxe #: sf_ui.xhp @@ -24503,7 +24503,7 @@ "par_id911587914185746\n" "help.text" msgid "one of the special windows \"BASICIDE\" and \"WELCOMESCREEN\"" -msgstr "" +msgstr "ένα από τα ειδικά παράθυρα \"BASICIDE\" και \"WELCOMESCREEN\"" #. n5ZLz #: sf_ui.xhp @@ -24512,7 +24512,7 @@ "par_id181587914255236\n" "help.text" msgid "The window name is case-sensitive." -msgstr "" +msgstr "Το όνομα του παραθύρου κάνει διάκριση πεζών-κεφαλαίων." #. CC5D5 #: sf_ui.xhp @@ -24521,7 +24521,7 @@ "hd_id541588520711430\n" "help.text" msgid "Document object" -msgstr "" +msgstr "Αντικείμενο εγγράφου" #. utsAW #: sf_ui.xhp @@ -24539,7 +24539,7 @@ "par_id331588521254916\n" "help.text" msgid "The specific properties and methods applicable on documents are implemented in a document class." -msgstr "" +msgstr "Οι συγκεκριμένες ιδιότητες και μέθοδοι που ισχύουν στα έγγραφα υλοποιούνται σε μια κλάση εγγράφων." #. CEisb #: sf_ui.xhp @@ -24548,7 +24548,7 @@ "par_id971588521292976\n" "help.text" msgid "The implementation of the document objects class is done in the SFDocuments associated library. See its \"Document\" service." -msgstr "" +msgstr "Η υλοποίηση της κλάσης αντικειμένων εγγράφου γίνεται στη συσχετισμένη βιβλιοθήκη SFDocuments. Δείτε την υπηρεσία \"Document\"." #. 8NGPA #: sf_ui.xhp @@ -24557,7 +24557,7 @@ "hd_id91587913266988\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Κλήση υπηρεσίας" #. 2tFG6 #: sf_ui.xhp @@ -24566,7 +24566,7 @@ "hd_id841587913266618\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Ιδιότητες" #. m8i6L #: sf_ui.xhp @@ -24575,7 +24575,7 @@ "par_id521587913266568\n" "help.text" msgid "Name" -msgstr "" +msgstr "Όνομα" #. 48SHW #: sf_ui.xhp @@ -24584,7 +24584,7 @@ "par_id421587913266368\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "Μόνο για ανάγνωση" #. GpADs #: sf_ui.xhp @@ -24593,7 +24593,7 @@ "par_id631587914939732\n" "help.text" msgid "Type" -msgstr "" +msgstr "Τύπος" #. nB9z5 #: sf_ui.xhp @@ -24602,7 +24602,7 @@ "par_id951587913266220\n" "help.text" msgid "Description" -msgstr "" +msgstr "Περιγραφή" #. c5EiC #: sf_ui.xhp @@ -24611,7 +24611,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. vQ8TT #: sf_ui.xhp @@ -24620,7 +24620,7 @@ "par_id351587913266349\n" "help.text" msgid "a valid and unique WindowName for the currently active window. When the window cannot be identified, a zero-length string is returned." -msgstr "" +msgstr "ένα έγκυρο και μοναδικό WindowName για το τρέχον ενεργό παράθυρο. Όταν το παράθυρο δεν μπορεί να αναγνωριστεί, επιστρέφεται μια συμβολοσειρά μηδενικού μήκους." #. DiCRC #: sf_ui.xhp @@ -24629,7 +24629,7 @@ "par_id658517913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ναι" #. Bjyuv #: sf_ui.xhp @@ -24638,7 +24638,7 @@ "par_id153587913266349\n" "help.text" msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents." -msgstr "" +msgstr "Ο κατάλογος με τα τρέχοντα ανοιχτά έγγραφα. Τα ειδικά παράθυρα αγνοούνται. Αυτός ο κατάλογος αποτελείται από έναν μηδενικό μονοδιάστατο πίνακα είτε ονομάτων αρχείων (σε σημειογραφία SF_FileSystem.FileNaming), είτε από τίτλους παραθύρων για μη αποθηκευμένα έγγραφα." #. BH9YJ #: sf_ui.xhp @@ -24647,7 +24647,7 @@ "hd_id511620762163390\n" "help.text" msgid "Constants" -msgstr "" +msgstr "Σταθερές" #. ziD2D #: sf_ui.xhp @@ -24656,7 +24656,7 @@ "par_id761620761856238\n" "help.text" msgid "Name" -msgstr "" +msgstr "Όνομα" #. eBD6E #: sf_ui.xhp @@ -24665,7 +24665,7 @@ "par_id591620761856238\n" "help.text" msgid "Value" -msgstr "" +msgstr "Τιμή" #. 2DU4R #: sf_ui.xhp @@ -24674,7 +24674,7 @@ "par_id711620761856238\n" "help.text" msgid "Description" -msgstr "" +msgstr "Περιγραφή" #. adCUF #: sf_ui.xhp @@ -24683,7 +24683,7 @@ "par_id341620761856238\n" "help.text" msgid "Macros are always executed" -msgstr "" +msgstr "Οι μακροεντολές εκτελούνται πάντα" #. 7hEDg #: sf_ui.xhp @@ -24692,7 +24692,7 @@ "par_id101620761893011\n" "help.text" msgid "Macros are never executed" -msgstr "" +msgstr "Οι μακροεντολές δεν εκτελούνται ποτέ" #. 6Jgt7 #: sf_ui.xhp @@ -24701,7 +24701,7 @@ "par_id11620761899780\n" "help.text" msgid "Macro execution depends on user settings" -msgstr "" +msgstr "Η εκτέλεση των μακροεντολών εξαρτάται από τις ρυθμίσεις του χρήστη" #. BTUQ4 #: sf_ui.xhp @@ -24710,7 +24710,7 @@ "par_id311620312548992\n" "help.text" msgid "The examples below show a MsgBox with the names of all currently open documents." -msgstr "" +msgstr "Τα παρακάτω παραδείγματα δείχνουν ένα MsgBox με τα ονόματα όλων των ανοιχτών εγγράφων." #. DfpBz #: sf_ui.xhp @@ -24719,7 +24719,7 @@ "par_id881608131596153\n" "help.text" msgid "List of Methods in the UI Service" -msgstr "" +msgstr "Κατάλογος μεθόδων στην υπηρεσία UI" #. 4fc2p #: sf_ui.xhp @@ -24728,7 +24728,7 @@ "par_id431620322170443\n" "help.text" msgid "Note, as an exception, that the methods marked (*) are not applicable to Base documents." -msgstr "" +msgstr "Σημειώστε, κατ' εξαίρεση, ότι οι μέθοδοι με την ένδειξη (*) δεν ισχύουν για έγγραφα Base." #. 778Fh #: sf_ui.xhp @@ -24737,7 +24737,7 @@ "par_id201587913266596\n" "help.text" msgid "Make the specified window active. The method returns True if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection." -msgstr "" +msgstr "Ενεργοποιεί το καθορισμένο παράθυρο. Η μέθοδος επιστρέφει True εάν το δεδομένο παράθυρο βρεθεί και μπορεί να ενεργοποιηθεί. Δεν υπάρχει αλλαγή στην πραγματική διεπαφή χρήστη εάν κανένα παράθυρο δεν ταιριάζει με την επιλογή." #. w9DR4 #: sf_ui.xhp @@ -24746,7 +24746,7 @@ "par_id381587913266946\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname (όνομα παραθύρου): δείτε τους ορισμούς παραπάνω." #. 5kwSb #: sf_ui.xhp @@ -24755,7 +24755,7 @@ "par_id13159655484952\n" "help.text" msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a Document service instance." -msgstr "" +msgstr "Δημιουργεί και αποθηκεύει ένα νέο έγγραφο του %PRODUCTNAME Base που ενσωματώνει μια κενή βάση δεδομένων του συγκεκριμένου τύπου. Η μέθοδος επιστρέφει μια παρουσία υπηρεσίας Document." #. gqGpB #: sf_ui.xhp @@ -24764,7 +24764,7 @@ "par_id441596554849949\n" "help.text" msgid "filename : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning" -msgstr "" +msgstr "filename (όνομα αρχείου): Προσδιορίζει το αρχείο προς δημιουργία. Πρέπει να ακολουθεί τη σημειογραφία SF_FileSystem.FileNaming. Εάν το αρχείο υπάρχει ήδη, αντικαθίσταται χωρίς προειδοποίηση" #. Jub7D #: sf_ui.xhp @@ -24773,7 +24773,7 @@ "par_id381596554849698\n" "help.text" msgid "embeddeddatabase : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"." -msgstr "" +msgstr "embeddeddatabase (ενσωματωμένη βάση δεδομένων): Είτε \"HSQLDB\" (προεπιλογή), \"FIREBIRD\" ή \"CALC\"." #. BWgpN #: sf_ui.xhp @@ -24782,7 +24782,7 @@ "par_id521596554849185\n" "help.text" msgid "registrationname : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning." -msgstr "" +msgstr "registrationname (όνομα καταχώρησης): Το όνομα που χρησιμοποιείται για την αποθήκευση της νέας βάσης δεδομένων στο μητρώο βάσεων δεδομένων. Όταν = \"\" (προεπιλογή), δεν πραγματοποιείται εγγραφή. Εάν το όνομα υπάρχει ήδη, αντικαθίσταται χωρίς προειδοποίηση." #. AFin6 #: sf_ui.xhp @@ -24791,7 +24791,7 @@ "par_id181629364905056\n" "help.text" msgid "calcfilename : Only when embeddeddatabase = \"CALC\", calcfilename represents the file containing the tables as Calc sheets. The file must exist or an error is raised." -msgstr "" +msgstr "filename (όνομα αρχείου calc): Μόνο όταν η embeddeddatabase = \"CALC\", το calcfilename αντιπροσωπεύει το αρχείο που περιέχει τους πίνακες ως φύλλα Calc. Το αρχείο πρέπει να υπάρχει διαφορετικά εμφανίζεται σφάλμα." #. GtB5n #: sf_ui.xhp @@ -24800,7 +24800,7 @@ "par_id651588521753997\n" "help.text" msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object." -msgstr "" +msgstr "Δημιουργία νέου εγγράφου του %PRODUCTNAME συγκεκριμένου τύπου ή με βάση ένα δεδομένο πρότυπο. Η μέθοδος επιστρέφει ένα αντικείμενο εγγράφου." #. JnBPt #: sf_ui.xhp @@ -24809,7 +24809,7 @@ "par_id51588521753302\n" "help.text" msgid "documenttype : \"Calc\", \"Writer\", etc. If absent, the templatefile argument must be present." -msgstr "" +msgstr "documenttype (τύπος εγγράφου): \"Calc\", \"Writer\" κ.λπ. Εάν δεν υπάρχει, πρέπει να υπάρχει το όρισμα templatefile." #. BQ6UD #: sf_ui.xhp @@ -24818,7 +24818,7 @@ "par_id401588522663325\n" "help.text" msgid "templatefile : The full FileName of the template to build the new document on. If the file does not exist, the argument is ignored. The FileSystem service provides the TemplatesFolder and UserTemplatesFolder properties to help to build the argument." -msgstr "" +msgstr "templatefile (αρχείο προτύπου): Το πλήρες FileName (Όνομα αρχείου) του προτύπου για τη δημιουργία του νέου εγγράφου. Εάν το αρχείο δεν υπάρχει, το όρισμα αγνοείται. Η υπηρεσία FileSystem παρέχει τις ιδιότητες TemplatesFolder και UserTemplatesFolder για να βοηθήσει στη δημιουργία του ορίσματος." #. VeNQg #: sf_ui.xhp @@ -24827,7 +24827,7 @@ "par_id131588522824366\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden (κρυφό): εάν είναι True, ανοίξτε το νέο έγγραφο στο παρασκήνιο (προεπιλογή = False). Να χρησιμοποιείται με προσοχή: η ενεργοποίηση ή το κλείσιμο κατόπιν, μπορεί να γίνει μόνο μέσω προγραμματισμού." #. gWFt9 #: sf_ui.xhp @@ -24836,7 +24836,7 @@ "par_id701620762417802\n" "help.text" msgid "In both examples below, the first call to CreateDocument method creates a blank Calc document, whereas the second creates a document from a template file." -msgstr "" +msgstr "Και στα δύο παρακάτω παραδείγματα, η πρώτη κλήση στη μέθοδο CreateDocument δημιουργεί ένα κενό έγγραφο Calc, ενώ η δεύτερη δημιουργεί ένα έγγραφο από ένα αρχείο προτύπου." #. TxY93 #: sf_ui.xhp @@ -24854,7 +24854,7 @@ "par_id851588520551368\n" "help.text" msgid "windowname: See the definitions above. If this argument is absent, the active window is used. UNO objects of types com.sun.star.lang.XComponent or com.sun.star.comp.dba.ODatabaseDocument are also accepted. Thus passing ThisComponent or ThisDatabaseDocument as argument creates a new SFDocuments.Document, Base or Calc service." -msgstr "" +msgstr "windowname (όνομα παραθύρου): Δείτε τους παραπάνω ορισμούς. Εάν αυτό το όρισμα απουσιάζει, χρησιμοποιείται το ενεργό παράθυρο. Γίνονται επίσης αποδεκτά αντικείμενα UNO των τύπων com.sun.star.lang.XComponent ή com.sun.star.comp.dba.ODatabaseDocument. Έτσι, μεταβιβάζοντας το ThisComponent ή το ThisDatabaseDocument ως όρισμα δημιουργείται μια νέα υπηρεσία SFDocuments.Document, Base ή Calc." #. AAjDB #: sf_ui.xhp @@ -24863,7 +24863,7 @@ "par_id521620330287071\n" "help.text" msgid "To access the name of the currently active window, refer to the ActiveWindow property." -msgstr "" +msgstr "Για πρόσβαση στο όνομα του ενεργού παραθύρου, ανατρέξτε στην ιδιότητα ActiveWindow." #. CYsyC #: sf_ui.xhp @@ -24872,7 +24872,7 @@ "par_id24158798644169\n" "help.text" msgid "Maximizes the active window or the given window." -msgstr "" +msgstr "Μεγιστοποιεί το ενεργό παράθυρο ή το δεδομένο παράθυρο." #. hD4TC #: sf_ui.xhp @@ -24881,7 +24881,7 @@ "par_id951587986441954\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is maximized." -msgstr "" +msgstr "windowname (όνομα παραθύρου): δείτε τους ορισμούς παραπάνω. Εάν αυτό το όρισμα απουσιάζει, το ενεργό παράθυρο μεγιστοποιείται." #. vzDdG #: sf_ui.xhp @@ -24890,7 +24890,7 @@ "par_id871587986592696\n" "help.text" msgid "Minimizes the active window or the given window." -msgstr "" +msgstr "Ελαχιστοποιεί το ενεργό παράθυρο, ή το δεδομένο παράθυρο." #. Enys5 #: sf_ui.xhp @@ -24899,7 +24899,7 @@ "par_id751587986592626\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is minimized." -msgstr "" +msgstr "windowname (όνομα παραθύρου): δείτε τους ορισμούς πιο πάνω. Εάν αυτό το όρισμα απουσιάζει, το ενεργό παράθυρο ελαχιστοποιείται." #. WHDDQ #: sf_ui.xhp @@ -24908,7 +24908,7 @@ "par_id691596555746539\n" "help.text" msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object." -msgstr "" +msgstr "Ανοίξτε ένα υπάρχον έγγραφο της %PRODUCTNAME Base. Η μέθοδος επιστρέφει ένα αντικείμενο εγγράφου." #. q2E3C #: sf_ui.xhp @@ -24926,7 +24926,7 @@ "par_id711596555746281\n" "help.text" msgid "registrationname: The name to use to find the database in the databases register. It is ignored if FileName <> \"\"." -msgstr "" +msgstr "registrationname (όνομα καταχώρησης): Το όνομα που θα χρησιμοποιηθεί για την εύρεση της βάσης δεδομένων στο μητρώο βάσεων δεδομένων. Αγνοείται εάν FileName <> \"\"." #. TqAd2 #: sf_ui.xhp @@ -24935,7 +24935,7 @@ "id721596556313545\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "macroexecution (εκτέλεση μακροεντολών): 0 = η συμπεριφορά ορίζεται από τη διαμόρφωση του χρήστη, 1 = οι μακροεντολές δεν είναι εκτελέσιμες, 2 = οι μακροεντολές είναι εκτελέσιμες." #. Dok5e #: sf_ui.xhp @@ -24944,7 +24944,7 @@ "par_id941620762989833\n" "help.text" msgid "To improve code readability you can use predefined constants for the macroexecution argument, as in the examples above." -msgstr "" +msgstr "Για να βελτιώσετε την αναγνωσιμότητα του κώδικα, μπορείτε να χρησιμοποιήσετε προκαθορισμένες σταθερές για το όρισμα macroexecution , όπως στα παραπάνω παραδείγματα." #. LBgGQ #: sf_ui.xhp @@ -24953,7 +24953,7 @@ "par_id541588523635283\n" "help.text" msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns Nothing (in Basic) / None (in Python) if the opening failed, even when the failure is caused by a user decision." -msgstr "" +msgstr "Άνοιγμα υφιστάμενου εγγράφου %PRODUCTNAME με τις δεδομένες επιλογές. Επιστρέφει ένα αντικείμενο εγγράφου, ή μία από τις υποκλάσεις του. Η μέθοδος επιστρέφει Nothing (στη Basic) / None (στην Python) εάν το άνοιγμα απέτυχε, ακόμη και όταν η αποτυχία προκαλείται από απόφαση του χρήστη." #. 8tjbg #: sf_ui.xhp @@ -24962,7 +24962,7 @@ "par_id481588523635890\n" "help.text" msgid "filename: Identifies the file to open. It must follow the FileNaming notation of the FileSystem service." -msgstr "" +msgstr "filename (όνομα αρχείου): Προσδιορίζει το αρχείο που θα ανοίξει. Πρέπει να ακολουθεί τη σημειογραφία FileNaming της υπηρεσίας FileSystem." #. PWvQz #: sf_ui.xhp @@ -24971,7 +24971,7 @@ "par_id451588523635507\n" "help.text" msgid "password: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password." -msgstr "" +msgstr "password (κωδικός πρόσβασης): Για χρήση όταν το έγγραφο είναι προστατευμένο. Εάν είναι λάθος ή απουσιάζει ενώ το έγγραφο είναι προστατευμένο, θα ζητηθεί από τον χρήστη να εισαγάγει έναν κωδικό πρόσβασης." #. 2jjFK #: sf_ui.xhp @@ -24980,7 +24980,7 @@ "par_id611588524329781\n" "help.text" msgid "readonly: Default = False." -msgstr "" +msgstr "readonly (μόνο για ανάγνωση): Προεπιλογή = False." #. BcyEp #: sf_ui.xhp @@ -24989,7 +24989,7 @@ "par_id641588523635497\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden (κρυφό): εάν είναι True, ανοίξτε το νέο έγγραφο στο παρασκήνιο (προεπιλογή = False). Να χρησιμοποιείται με προσοχή: η ενεργοποίηση ή το κλείσιμο κατόπιν, μπορεί να γίνει μόνο μέσω προγραμματισμού." #. sbgeH #: sf_ui.xhp @@ -24998,7 +24998,7 @@ "par_id981588524474719\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "macroexecution (εκτέλεση μακροεντολών): 0 = η συμπεριφορά ορίζεται από τη διαμόρφωση του χρήστη, 1 = οι μακροεντολές δεν είναι εκτελέσιμες, 2 = οι μακροεντολές είναι εκτελέσιμες." #. AF7iF #: sf_ui.xhp @@ -25007,7 +25007,7 @@ "par_id611588524584693\n" "help.text" msgid "filtername: The name of a filter that should be used for loading the document. If present, the filter must exist." -msgstr "" +msgstr "filtername (όνομα φίλτρου): Το όνομα ενός φίλτρου που πρέπει να χρησιμοποιηθεί για τη φόρτωση του εγγράφου. Εάν υπάρχει, το φίλτρο πρέπει να υπάρχει." #. MKueU #: sf_ui.xhp @@ -25016,7 +25016,7 @@ "par_id191588524634348\n" "help.text" msgid "filteroptions: An optional string of options associated with the filter." -msgstr "" +msgstr "filteroptions (επιλογές φίλτρου): Μια προαιρετική συμβολοσειρά επιλογών που σχετίζεται με το φίλτρο." #. qMTrj #: sf_ui.xhp @@ -25025,7 +25025,7 @@ "par_id751587986945965\n" "help.text" msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling Resize without arguments restores it." -msgstr "" +msgstr "Αλλάζει το μέγεθος και/ή μετακινεί το ενεργό παράθυρο. Τα απόντα και τα αρνητικά ορίσματα αγνοούνται. Εάν το παράθυρο ελαχιστοποιηθεί ή μεγιστοποιηθεί, η κλήση του Resize (Αλλαγή μεγέθους) χωρίς ορίσματα το επαναφέρει." #. 6NUcv #: sf_ui.xhp @@ -25034,7 +25034,7 @@ "par_id441587986945696\n" "help.text" msgid "left, top: Distances of the top-left corner from top and left edges of the screen, in pixels." -msgstr "" +msgstr "left, top (αριστερά, επάνω): Οι αποστάσεις της επάνω αριστερής γωνίας από το επάνω και το αριστερό άκρο της οθόνης, σε εικονοστοιχεία." #. AdcjG #: sf_ui.xhp @@ -25043,7 +25043,7 @@ "par_id601587987453825\n" "help.text" msgid "width, height: New dimensions of the window, in pixels." -msgstr "" +msgstr "width, height (πλάτος, ύψος): Νέες διαστάσεις του παραθύρου, σε εικονοστοιχεία." #. vDNVH #: sf_ui.xhp @@ -25052,7 +25052,7 @@ "par_id801587987507028\n" "help.text" msgid "In the following examples, the width and height of the window are changed while top and left are left unchanged." -msgstr "" +msgstr "Στα παρακάτω παραδείγματα, το width (πλάτος)και το height (ύψος) του παραθύρου αλλάζουν, ενώ τα top (επάνω) και left (αριστερά) παραμένουν αμετάβλητα." #. HP2Jb #: sf_ui.xhp @@ -25061,7 +25061,7 @@ "par_id21620332301809\n" "help.text" msgid "To resize a window that is not active, first activate it using the Activate method." -msgstr "" +msgstr "Για να αλλάξετε το μέγεθος ενός παραθύρου που δεν είναι ενεργό, πρώτα ενεργοποιήστε το χρησιμοποιώντας τη μέθοδο Activate." #. NnBWM #: sf_ui.xhp @@ -25070,7 +25070,7 @@ "par_id281587996421580\n" "help.text" msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state." -msgstr "" +msgstr "Εμφανίστε ένα κείμενο και μια γραμμή προόδου στη γραμμή κατάστασης του ενεργού παραθύρου. Οποιεσδήποτε επόμενες κλήσεις στην ίδια εκτέλεση μακροεντολής αναφέρονται στην ίδια γραμμή κατάστασης του ίδιου παραθύρου, ακόμα κι αν το παράθυρο δεν είναι πλέον ορατό. Μια κλήση χωρίς ορίσματα επαναφέρει τη γραμμή κατάστασης στην κανονική της κατάσταση." #. rDr2L #: sf_ui.xhp @@ -25079,7 +25079,7 @@ "par_id71587996421829\n" "help.text" msgid "text: An optional text to be displayed in front of the progress bar." -msgstr "" +msgstr "text (κείμενο): Ένα προαιρετικό κείμενο που θα εμφανίζεται μπροστά από τη γραμμή προόδου." #. hbCpG #: sf_ui.xhp @@ -25088,7 +25088,7 @@ "par_id881587996421777\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage (ποσοστό): ένας προαιρετικός βαθμός προόδου μεταξύ 0 και 100." #. qbGdy #: sf_ui.xhp @@ -25097,7 +25097,7 @@ "bas_id651620332601083\n" "help.text" msgid "' Resets the statusbar" -msgstr "" +msgstr "' Επαναφέρει τη γραμμή κατάστασης" #. oQfWc #: sf_ui.xhp @@ -25106,7 +25106,7 @@ "par_id571598864255776\n" "help.text" msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog." -msgstr "" +msgstr "Εμφανίζει ένα μη αναγκαστικό πλαίσιο διαλόγου. Καθορίστε τον τίτλο του, ένα επεξηγηματικό κείμενο και ένα ποσοστό προόδου που θα αναπαρασταθεί σε μια γραμμή προόδου. Το παράθυρο διαλόγου θα παραμείνει ορατό μέχρι να κληθεί η μέθοδος χωρίς ορίσματα, ή έως ότου ο χρήστης κλείσει χειροκίνητα το παράθυρο διαλόγου." #. drhV6 #: sf_ui.xhp @@ -25115,7 +25115,7 @@ "par_id441598864535695\n" "help.text" msgid "title : The title appearing on top of the dialog box. Default = \"ScriptForge\"." -msgstr "" +msgstr "title (τίτλος): Ο τίτλος που εμφανίζεται στην κορυφή του πλαισίου διαλόγου. Προεπιλογή = \"ScriptForge\"." #. jvrZV #: sf_ui.xhp @@ -25124,7 +25124,7 @@ "par_id311598864255297\n" "help.text" msgid "text: An optional text to be displayed above the progress bar." -msgstr "" +msgstr "text (κείμενο): Ένα προαιρετικό κείμενο που θα εμφανίζεται πάνω από τη γραμμή προόδου." #. Qj3N3 #: sf_ui.xhp @@ -25133,7 +25133,7 @@ "par_id881598864255424\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage (ποσοστό): ένας προαιρετικός βαθμός προόδου μεταξύ 0 και 100." #. rVBX3 #: sf_ui.xhp @@ -25142,7 +25142,7 @@ "bas_id651620333289753\n" "help.text" msgid "' Closes the Progress Bar window" -msgstr "" +msgstr "' Κλείνει το παράθυρο της γραμμής προόδου" #. u3gZ8 #: sf_ui.xhp @@ -25151,7 +25151,7 @@ "pyc_id761620333269236\n" "help.text" msgid "# Closes the Progress Bar window" -msgstr "" +msgstr "# Κλείνει το παράθυρο της γραμμής προόδου" #. ZEG6t #: sf_ui.xhp @@ -25160,7 +25160,7 @@ "par_id431588587119925\n" "help.text" msgid "Returns True if the given window could be identified." -msgstr "" +msgstr "Επιστρέφει True εάν το δεδομένο παράθυρο μπορεί να αναγνωριστεί." #. rkJbT #: sf_ui.xhp @@ -25169,7 +25169,7 @@ "par_id45158858711917\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname (όνομα παραθύρου): δείτε τους ορισμούς παραπάνω." #. NyP5B #: sf_writer.xhp @@ -25178,7 +25178,7 @@ "tit\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Υπηρεσία SFDocuments.Writer" #. 5i7vz #: sf_writer.xhp @@ -25187,7 +25187,7 @@ "hd_id731582733781114\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Υπηρεσία SFDocuments.Writer" #. dUwYw #: sf_writer.xhp @@ -25196,7 +25196,7 @@ "par_id381589189355849\n" "help.text" msgid "The SFDocuments shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents." -msgstr "" +msgstr "Η κοινόχρηστη βιβλιοθήκη SFDocuments παρέχει έναν αριθμό μεθόδων και ιδιοτήτων για τη διευκόλυνση της διαχείρισης και του χειρισμού των εγγράφων του %PRODUCTNAME." #. FvF79 #: sf_writer.xhp @@ -25205,7 +25205,7 @@ "par_id351591014177269\n" "help.text" msgid "Some methods are generic for all types of documents and are inherited from the SF_Document module, whereas other methods that are specific for Writer documents are defined in the SF_Writer module." -msgstr "" +msgstr "Ορισμένες μέθοδοι είναι γενικές για όλους τους τύπους εγγράφων και κληρονομούνται από την ενότητα SF_Document, ενώ άλλες μέθοδοι που είναι ειδικές για έγγραφα Writer ορίζονται στην ενότητα SF_Writer." #. ojZFF #: sf_writer.xhp @@ -25223,7 +25223,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Κλήση υπηρεσίας" #. 3LPrN #: sf_writer.xhp @@ -25232,7 +25232,7 @@ "par_id591589191059889\n" "help.text" msgid "The Writer service is closely related to the UI service of the ScriptForge library. Below are a few examples of how the Writer service can be invoked." -msgstr "" +msgstr "Η υπηρεσία Writer σχετίζεται στενά με την υπηρεσία UI της βιβλιοθήκης ScriptForge. Παρακάτω είναι μερικά παραδείγματα για το πώς μπορεί να κληθεί η υπηρεσία Writer." #. NvcUB #: sf_writer.xhp @@ -25241,7 +25241,7 @@ "par_id551621623999947\n" "help.text" msgid "The code snippet below creates a Writer service instance that corresponds to the currently active Writer document." -msgstr "" +msgstr "Το παρακάτω απόσπασμα κώδικα δημιουργεί μια παρουσία υπηρεσίας Writer που αντιστοιχεί στο τρέχον ενεργό έγγραφο Writer." #. 4P2m8 #: sf_writer.xhp @@ -25250,7 +25250,7 @@ "par_id341621467500466\n" "help.text" msgid "Another way to create an instance of the Writer service is using the UI service. In the following example, a new Writer document is created and oDoc is a Writer service instance:" -msgstr "" +msgstr "Ένας άλλος τρόπος για να δημιουργήσετε μια παρουσία της υπηρεσίας Writer είναι η χρήση της υπηρεσίας UI. Στο παρακάτω παράδειγμα, δημιουργείται ένα νέο έγγραφο Writer και το oDoc είναι μια παρουσία υπηρεσίας Writer:" #. dENpx #: sf_writer.xhp @@ -25259,7 +25259,7 @@ "par_id921621467621019\n" "help.text" msgid "Or using the OpenDocument method from the UI service:" -msgstr "" +msgstr "Ή χρησιμοποιώντας τη μέθοδο OpenDocument από την υπηρεσία UI:" #. WopGb #: sf_writer.xhp @@ -25268,7 +25268,7 @@ "par_id741621467697967\n" "help.text" msgid "It is also possible to instantiate the Writer service using the CreateScriptService method:" -msgstr "" +msgstr "Είναι επίσης δυνατό να δημιουργήσετε την υπηρεσία Writer χρησιμοποιώντας τη μέθοδο CreateScriptService:" #. WTDbw #: sf_writer.xhp @@ -25277,7 +25277,7 @@ "par_id271621467810774\n" "help.text" msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered." -msgstr "" +msgstr "Στο παραπάνω παράδειγμα, το \"MyFile.odt\" είναι το όνομα ενός ανοιχτού παραθύρου εγγράφου. Εάν αυτό το όρισμα δεν παρέχεται, λαμβάνεται υπόψη το ενεργό παράθυρο." #. EEAZF #: sf_writer.xhp @@ -25286,7 +25286,7 @@ "par_id71158288562139\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Συνιστάται η απελευθέρωση πόρων μετά τη χρήση:" #. wPWMP #: sf_writer.xhp @@ -25295,7 +25295,7 @@ "par_id231611610666018\n" "help.text" msgid "However, if the document was closed using the CloseDocument method, it becomes unnecessary to free resources using the command described above." -msgstr "" +msgstr "Ωστόσο, εάν το έγγραφο έκλεισε χρησιμοποιώντας τη μέθοδο CloseDocument, δεν είναι απαραίτητο να απελευθερωθούν πόροι χρησιμοποιώντας την εντολή που περιγράφεται παραπάνω." #. 7JvGW #: sf_writer.xhp @@ -25304,7 +25304,7 @@ "par_id71611090922315\n" "help.text" msgid "The use of the prefix \"SFDocuments.\" while calling the service is optional." -msgstr "" +msgstr "Η χρήση του προθέματος \"SFDocuments.\" κατά την κλήση της υπηρεσίας είναι προαιρετική." #. EcQjk #: sf_writer.xhp @@ -25313,7 +25313,7 @@ "hd_id291631196803182\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Ορισμοί" #. ausGU #: sf_writer.xhp @@ -25322,7 +25322,7 @@ "hd_id351582885195476\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Ιδιότητες" #. VB9Jj #: sf_writer.xhp @@ -25331,7 +25331,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Μέθοδοι" #. ioXEB #: sf_writer.xhp @@ -25340,7 +25340,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the Writer Service" -msgstr "" +msgstr "Κατάλογος μεθόδων στην υπηρεσία Writer" #. 3uC2J #: sf_writer.xhp @@ -25403,7 +25403,7 @@ "par_id31592919577984\n" "help.text" msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the SetPrinter method of the Document service. Returns True when successful." -msgstr "" +msgstr "Στείλτε τα περιεχόμενα του εγγράφου στον εκτυπωτή. Ο εκτυπωτής μπορεί να έχει καθοριστεί προηγουμένως από προεπιλογή, από τον χρήστη ή από τη μέθοδο SetPrinter της υπηρεσίας Document. Επιστρέφει True όταν είναι επιτυχής." #. CKDb5 #: sf_writer.xhp @@ -25412,7 +25412,7 @@ "par_id441592919577809\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages" -msgstr "" +msgstr "pages (σελίδες): Οι σελίδες που θα εκτυπωθούν ως συμβολοσειρά, όπως στη διεπαφή χρήστη. Παράδειγμα: \"1-4;10;15-18\". Προεπιλογή = όλες οι σελίδες" #. mYCkV #: sf_writer.xhp @@ -25421,7 +25421,7 @@ "par_id221636020923278\n" "help.text" msgid "copies: The number of copies, default is 1." -msgstr "" +msgstr "copies (αντίγραφα): Ο αριθμός των αντιγράφων, η προεπιλογή είναι 1." #. aFEAa #: sf_writer.xhp @@ -25430,7 +25430,7 @@ "par_id121636020926764\n" "help.text" msgid "printbackground: Prints the background image when True (default)." -msgstr "" +msgstr "printbackground (εκτύπωση παρασκηνίου): Εκτυπώνει την εικόνα παρασκηνίου όταν είναι True (προεπιλογή)." #. D4krC #: sf_writer.xhp @@ -25439,7 +25439,7 @@ "par_id261636020927276\n" "help.text" msgid "printblankpages: When False (default), omits empty pages." -msgstr "" +msgstr "printblankpages (εκτύπωση κενών σελίδων): Όταν είναι False (προεπιλογή), παραλείπει τις κενές σελίδες." #. LFSzm #: sf_writer.xhp @@ -25448,7 +25448,7 @@ "par_id021636020927484\n" "help.text" msgid "printevenpages: Prints even pages when True (default)." -msgstr "" +msgstr "printevenpages (εκτύπωση ζυγών σελίδων): Εκτυπώνει τις ζυγές σελίδες όταν είναι True (προεπιλογή)." #. iewN5 #: sf_writer.xhp @@ -25457,7 +25457,7 @@ "par_id391636020927676\n" "help.text" msgid "printoddpages: Print odd pages when True (default)." -msgstr "" +msgstr "printoddpages (εκτύπωση μονών σελίδων): Εκτύπωση των μονών σελίδων όταν είναι True (προεπιλογή)." #. 4mYCT #: sf_writer.xhp @@ -25466,4 +25466,4 @@ "par_id121636021103996\n" "help.text" msgid "printimages: Print graphic objects when True (default)." -msgstr "" +msgstr "printimages (εκτύπωση εικόνων): Εκτυπώνει αντικείμενα γραφικών όταν είναι True (προεπιλογή)." diff -Nru libreoffice-7.3.4/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" "Language: el\n" @@ -33867,7 +33867,7 @@ "Label\n" "value.text" msgid "Distribute Rows Evenly" -msgstr "Ίση κατανομή στηλών" +msgstr "Ισοκατανομή γραμμών" #. qLGV4 #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/el/sc/messages.po libreoffice-7.3.5/translations/source/el/sc/messages.po --- libreoffice-7.3.4/translations/source/el/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-23 08:10+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -25253,97 +25253,97 @@ msgstr "~Προβολή" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ει_κόνα" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ει~κόνα" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Σ_χέδιο" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Σχεδίαση" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Αντικείμενο" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Α~ντικείμενο" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Μέσα" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Μέσα" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Εκτύπωση" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Ε~κτύπωση" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Φόρμα" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Φόρμα" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ε_πέκταση" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ε~πέκταση" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Εργαλεία" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ε~ργαλεία" @@ -25702,139 +25702,139 @@ msgstr "Ει_κόνα" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Τ_αξινόμηση" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Χρώμα" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Πλέγμα" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Γλώσσα" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Επι_θεώρηση" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Σχόλια" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Σύ_γκριση" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Προ_βολή" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Σ_χέδιο" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Επεξεργασία" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Τ_αξινόμηση" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Προ_βολή" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Ο_μάδα" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_Δ" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Γραμματοσειρά" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Σ_τοίχιση" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Προ_βολή" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Ε_ισαγωγή" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Μέσα" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Πλαίσιο" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Τ_αξινόμηση" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Πλέγμα" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Προ_βολή" diff -Nru libreoffice-7.3.4/translations/source/el/sd/messages.po libreoffice-7.3.5/translations/source/el/sd/messages.po --- libreoffice-7.3.4/translations/source/el/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-05 10:46+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562572253.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Πίνακας" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Εικόνα" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ει~κόνα" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Σ_χέδιο" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Σ~χέδιο" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Αντικείμενο" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Α~ντικείμενο" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Μέσα" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Μέσα" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Φόρμα" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Φόρμα" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Κύριο" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Κύριο" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_Δ" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~Δ" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ε_πέκταση" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ε~πέκταση" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Εργαλεία" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Εργαλεία" @@ -7062,109 +7062,109 @@ msgstr "~Πίνακας" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Εικόνα" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ει~κόνα" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Σ_χέδιο" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Σχέδιο" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Αντικείμενο" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Α~ντικείμενο" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Μέσα" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Μέσα" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Φόρμα" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Φόρμα" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Κύριο" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Κύριο" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_δ" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~δ" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ε_πέκταση" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ε~πέκταση" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Εργαλεία" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Εργαλεία" diff -Nru libreoffice-7.3.4/translations/source/el/sw/messages.po libreoffice-7.3.5/translations/source/el/sw/messages.po --- libreoffice-7.3.4/translations/source/el/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" "Language: el\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562572361.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Μετακινεί την επιλεγμένη τεχνοτροπία παραγράφου προς τα πάνω κατά ένα επίπεδο στην ιεραρχία του ευρετηρίου." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Τεχνοτροπία" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Τεχνοτροπίες" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Δημιουργεί καταχωρίσεις ευρετηρίου από ειδικές τεχνοτροπίες παραγράφου." @@ -13955,37 +13955,37 @@ msgstr "Ανταλλαγή βάσεων δεδομένων" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Ορισμός" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Βάσεις δεδομένων σε χρήση" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Διαθέσιμες βάσεις δεδομένων" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Αναζήτηση..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Ανοίγει έναν διάλογο για το άνοιγμα αρχείων για να επιλέξετε ένα αρχείο βάσης δεδομένων (*.odb). Το επιλεγμένο αρχείο προστίθεται στον κατάλογο διαθέσιμες βάσεις δεδομένων." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Με το κουμπί της περιήγησης επιλέξτε ένα αρχείο βάσης δεδομένων." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Καταχωρίζει τις βάσεις δεδομένων που είναι σε χρήση τη στιγμή εκείνη." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Εμφανίζει τις βάσεις δεδομένων που είναι καταχωρισμένες στο %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Ανταλλαγή βάσεων δεδομένων" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Εφαρμοσμένη βάση δεδομένων στο έγγραφο:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Αλλάξτε τις προελεύσεις δεδομένων για το τρέχον έγγραφο." @@ -20073,109 +20073,109 @@ msgstr "Χρήση του τρέχοντος ε_γγράφου" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Χρησιμοποιεί το τρέχον έγγραφο του Writer ως βάση για το έγγραφο συγχώνευσης αλληλογραφίας." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Δημιουργία _νέου εγγράφου" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Δημιουργεί ένα νέο έγγραφο του Writer για τη συγχώνευση αλληλογραφίας." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Εκκίνηση από _υπάρχον αρχείο" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Επιλέξτε ένα υπάρχον έγγραφο του Writer για να το χρησιμοποιήσετε ως βάση για το έγγραφο συγχώνευσης αλληλογραφίας." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Εκκίνηση από π_ρότυπο" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Επιλέξτε το πρότυπο με το οποίο θέλετε να δημιουργήσετε το έγγραφο συγχώνευσης αλληλογραφίας." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Εκκίνηση α_πό ένα πρόσφατα αποθηκευμένο αρχικό έγγραφο" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Χρησιμοποιήστε ένα υπάρχον έγγραφο συγχώνευσης αλληλογραφίας ως βάση για ένα νέο έγγραφο συγχώνευσης αλληλογραφίας." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Επιλέξτε το έγγραφο." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Ε_ξερεύνηση..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Εντοπισμός του εγγράφου Writer που θέλετε να χρησιμοποιήσετε και έπειτα πατήστε άνοιγμα." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Ε_ξερεύνηση..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Ανοίγει έναν διάλογο επιλογής προτύπου." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Η προέλευση δεδομένων του τρέχοντος εγγράφου δεν είναι καταχωρισμένη. Παρακαλούμε, αλλάξτε τη βάση δεδομένων." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Αλλαγή βάσης δεδομένων…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Επιλέξτε το αρχικό έγγραφο για τη συγχώνευση αλληλογραφίας" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Καθορίστε το έγγραφο που επιθυμείτε να χρησιμοποιήσετε ως βάση για το έγγραφο συγχώνευσης αλληλογραφίας." @@ -21901,7 +21901,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:546 msgctxt "notebookbar_groups|rowmenudistribute" msgid "Distribute Rows Evenly" -msgstr "Ίση κατανομή γραμμών" +msgstr "Ισοκατανομή γραμμών" #. CsPMA #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:751 @@ -22318,49 +22318,49 @@ msgstr "Αντικείμενο" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Τύπος" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Επιλογές" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Αναδίπλωση" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Υπερσύνδεσμος" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Περιγράμματα" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Περιοχή" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Διαφάνεια" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Μακροεντολή" @@ -27056,7 +27056,7 @@ msgstr "Ενημέρωση" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Εμφανίζει στατιστικά για το τρέχον έγγραφο." diff -Nru libreoffice-7.3.4/translations/source/el/vcl/messages.po libreoffice-7.3.5/translations/source/el/vcl/messages.po --- libreoffice-7.3.4/translations/source/el/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/el/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-21 10:46+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -2324,169 +2324,169 @@ msgstr "Εκτυπώστε πολλαπλές σελίδες ανά φύλλο χαρτιού." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Προσαρμοσμένο" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Επιλέξτε πόσες σελίδες θα τυπώνονται ανά φύλλο χαρτιού." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Σελίδες:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Επιλέξτε αριθμό γραμμών." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ανά" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Επιλέξτε αριθμό στηλών." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Περιθώριο:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Επιλέξτε το περιθώριο μεταξύ των μεμονωμένων σελίδων σε κάθε φύλλο χαρτιού." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ανάμεσα στις σελίδες" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Απόσταση:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Επιλέξτε το περιθώριο μεταξύ των εκτυπωμένων σελίδων και της άκρης του χαρτιού." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "στο περίγραμμα φύλλου" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Σειρά:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Από αριστερά προς δεξιά, μετά κάτω" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Από πάνω προς τα κάτω, μετά δεξιά" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Από πάνω προς τα κάτω, μετά αριστερά" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Από δεξιά προς τα αριστερά, μετά κάτω" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Επιλέξτε τη σειρά εκτύπωσης των σελίδων." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Σχεδίαση ενός περιγράμματος γύρω από κάθε σελίδα" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Σημειώστε για σχεδίαση ενός περιγράμματος γύρω από κάθε σελίδα." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Διαφημιστικό φυλλάδιο" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Επιλέξτε να εκτυπώσετε το έγγραφο σε μορφή φυλλαδίου." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Προεπισκόπηση συρραφής" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Αλλάξτε την ταξινόμηση των προς εκτύπωση σελίδων σε κάθε φύλλο χαρτιού. Η προεπισκόπηση εμφανίζει πώς θα φαίνεται κάθε τελικό φύλλο χαρτιού." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Περισσότερα" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Διάταξη σελίδας" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Γενικά" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Εκτυπώνει το τρέχον έγγραφο, την επιλογή, ή τις σελίδες που καθορίσατε. Μπορείτε ακόμα να ρυθμίσετε τις επιλογές εκτύπωσης για το τρέχον έγγραφο." diff -Nru libreoffice-7.3.4/translations/source/en-GB/chart2/messages.po libreoffice-7.3.5/translations/source/en-GB/chart2/messages.po --- libreoffice-7.3.4/translations/source/en-GB/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-31 07:28+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547573159.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Set the number of lines for the Column and Line chart type." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Select a basic chart type." diff -Nru libreoffice-7.3.4/translations/source/en-GB/cui/messages.po libreoffice-7.3.5/translations/source/en-GB/cui/messages.po --- libreoffice-7.3.4/translations/source/en-GB/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562933207.000000\n" #. GyY9M @@ -2127,7 +2127,7 @@ #: cui/inc/strings.hrc:397 msgctxt "RID_SVXSTR_OLE_INSERT" msgid "Inserting OLE object..." -msgstr "" +msgstr "Inserting OLE object..." #. mpS3V #: cui/inc/tipoftheday.hrc:50 @@ -2380,7 +2380,7 @@ #: cui/inc/tipoftheday.hrc:90 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Insert images and photos into shapes in Draw and Impress. Right-click on a shape, choose Area ▸ Image ▸ Add/Import, and use Options to adjust appearance." -msgstr "" +msgstr "Insert images and photos into shapes in Draw and Impress. Right-click on a shape, choose Area ▸ Image ▸ Add/Import, and use Options to adjust appearance." #. W6E2A #: cui/inc/tipoftheday.hrc:91 @@ -3379,7 +3379,7 @@ #: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do anything!" -msgstr "" +msgstr "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do anything!" #. ARJgA #. local help missing @@ -5177,7 +5177,7 @@ #: cui/uiconfig/ui/areatabpage.ui:106 msgctxt "areatabpage|btnbitmap" msgid "Image" -msgstr "" +msgstr "Image" #. ELAno #: cui/uiconfig/ui/areatabpage.ui:112 @@ -5555,43 +5555,43 @@ #: cui/uiconfig/ui/borderpage.ui:283 msgctxt "borderpage|linewidthlb" msgid "Hairline (0.05pt)" -msgstr "" +msgstr "Hairline (0.05pt)" #. u3nzv #: cui/uiconfig/ui/borderpage.ui:284 msgctxt "borderpage|linewidthlb" msgid "Very thin (0.5pt)" -msgstr "" +msgstr "Very thin (0.5pt)" #. aWBEL #: cui/uiconfig/ui/borderpage.ui:285 msgctxt "borderpage|linewidthlb" msgid "Thin (0.75pt)" -msgstr "" +msgstr "Thin (0.75pt)" #. NGkAL #: cui/uiconfig/ui/borderpage.ui:286 msgctxt "borderpage|linewidthlb" msgid "Medium (1.5pt)" -msgstr "" +msgstr "Medium (1.5pt)" #. H2AVr #: cui/uiconfig/ui/borderpage.ui:287 msgctxt "borderpage|linewidthlb" msgid "Thick (2.25pt)" -msgstr "" +msgstr "Thick (2.25pt)" #. b5UoB #: cui/uiconfig/ui/borderpage.ui:288 msgctxt "borderpage|linewidthlb" msgid "Extra thick (4.5pt)" -msgstr "" +msgstr "Extra thick (4.5pt)" #. ACvsP #: cui/uiconfig/ui/borderpage.ui:289 msgctxt "borderpage|linewidthlb" msgid "Custom" -msgstr "" +msgstr "Custom" #. uwByw #: cui/uiconfig/ui/borderpage.ui:333 @@ -7769,7 +7769,7 @@ #: cui/uiconfig/ui/connpooloptions.ui:158 msgctxt "connpooloptions|timeoutlabel" msgid "_Timeout (seconds):" -msgstr "" +msgstr "_Timeout (seconds):" #. CUE56 #: cui/uiconfig/ui/connpooloptions.ui:180 @@ -9840,43 +9840,43 @@ #: cui/uiconfig/ui/graphictestdlg.ui:7 msgctxt "graphictestdlg|GraphicTestsDialog" msgid "Run Graphics Tests" -msgstr "" +msgstr "Run Graphics Tests" #. YaE3d #: cui/uiconfig/ui/graphictestdlg.ui:26 msgctxt "graphictestdlg|gptest_downld" msgid "Download Results" -msgstr "" +msgstr "Download Results" #. RpYik #: cui/uiconfig/ui/graphictestdlg.ui:53 msgctxt "graphictestdlg|gptest_label" msgid "Helps to determine the efficiency of %PRODUCTNAME’s graphics rendering by running some tests under the hood and providing their results in the log." -msgstr "" +msgstr "Helps to determine the efficiency of %PRODUCTNAME’s graphics rendering by running some tests under the hood and providing their results in the log." #. D68dV #: cui/uiconfig/ui/graphictestdlg.ui:56 msgctxt "graphictestdlg|gptest_label" msgid "What's this?" -msgstr "" +msgstr "What's this?" #. 7LB9A #: cui/uiconfig/ui/graphictestdlg.ui:105 msgctxt "graphictestdlg|gptest_log" msgid "Result Log:" -msgstr "" +msgstr "Result Log:" #. jh4EZ #: cui/uiconfig/ui/graphictestdlg.ui:122 msgctxt "graphictestdlg|gptest_detail" msgid "Test Details" -msgstr "" +msgstr "Test Details" #. fhaSG #: cui/uiconfig/ui/graphictestentry.ui:31 msgctxt "graphictestentry|gptestbutton" msgid "button" -msgstr "" +msgstr "button" #. 26WXC #: cui/uiconfig/ui/hangulhanjaadddialog.ui:8 @@ -11236,79 +11236,79 @@ #: cui/uiconfig/ui/imagetabpage.ui:62 msgctxt "imagetabpage|BTN_IMPORT" msgid "Add / Import" -msgstr "" +msgstr "Add / Import" #. HDX5z #: cui/uiconfig/ui/imagetabpage.ui:68 msgctxt "imagetabpage|extended_tip|BTN_IMPORT" msgid "Locate the image that you want to import, and then click Open. The image is added to the end of the list of available images." -msgstr "" +msgstr "Locate the image that you want to import, and then click Open. The image is added to the end of the list of available images." #. pPEeK #: cui/uiconfig/ui/imagetabpage.ui:84 msgctxt "imagetabpage|label1" msgid "Image" -msgstr "" +msgstr "Image" #. 4HvEn #: cui/uiconfig/ui/imagetabpage.ui:127 msgctxt "imagetabpage|label3" msgid "Style:" -msgstr "" +msgstr "Style:" #. cAwPK #: cui/uiconfig/ui/imagetabpage.ui:143 msgctxt "imagetabpage|imagestyle" msgid "Custom position/size" -msgstr "" +msgstr "Custom position/size" #. x8DE9 #: cui/uiconfig/ui/imagetabpage.ui:144 msgctxt "imagetabpage|imagestyle" msgid "Tiled" -msgstr "" +msgstr "Tiled" #. Nbj26 #: cui/uiconfig/ui/imagetabpage.ui:145 msgctxt "imagetabpage|imagestyle" msgid "Stretched" -msgstr "" +msgstr "Stretched" #. Dd2Bq #: cui/uiconfig/ui/imagetabpage.ui:171 msgctxt "imagetabpage|label4" msgid "Size:" -msgstr "" +msgstr "Size:" #. YtPnn #: cui/uiconfig/ui/imagetabpage.ui:189 msgctxt "imagetabpage|label5" msgid "Width:" -msgstr "" +msgstr "Width:" #. GAfGG #: cui/uiconfig/ui/imagetabpage.ui:228 msgctxt "imagetabpage|label6" msgid "Height:" -msgstr "" +msgstr "Height:" #. HBRGU #: cui/uiconfig/ui/imagetabpage.ui:260 msgctxt "imagetabpage|scaletsb" msgid "Scale" -msgstr "" +msgstr "Scale" #. pSSBr #: cui/uiconfig/ui/imagetabpage.ui:290 msgctxt "imagetabpage|label7" msgid "Position:" -msgstr "" +msgstr "Position:" #. G5a9F #: cui/uiconfig/ui/imagetabpage.ui:306 msgctxt "imagetabpage|positionlb" msgid "Top Left" -msgstr "" +msgstr "Top Left" #. PubBY #: cui/uiconfig/ui/imagetabpage.ui:307 @@ -11320,7 +11320,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:308 msgctxt "imagetabpage|positionlb" msgid "Top Right" -msgstr "" +msgstr "Top Right" #. ZhRbM #: cui/uiconfig/ui/imagetabpage.ui:309 @@ -11344,7 +11344,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:312 msgctxt "imagetabpage|positionlb" msgid "Bottom Left" -msgstr "" +msgstr "Bottom Left" #. G34X6 #: cui/uiconfig/ui/imagetabpage.ui:313 @@ -11356,67 +11356,67 @@ #: cui/uiconfig/ui/imagetabpage.ui:314 msgctxt "imagetabpage|positionlb" msgid "Bottom Right" -msgstr "" +msgstr "Bottom Right" #. EAUAo #: cui/uiconfig/ui/imagetabpage.ui:340 msgctxt "imagetabpage|label9" msgid "Tiling Position:" -msgstr "" +msgstr "Tiling Position:" #. Xrp73 #: cui/uiconfig/ui/imagetabpage.ui:359 msgctxt "imagetabpage|label10" msgid "X-Offset:" -msgstr "" +msgstr "X-Offset:" #. YGBMn #: cui/uiconfig/ui/imagetabpage.ui:398 msgctxt "imagetabpage|label11" msgid "Y-Offset:" -msgstr "" +msgstr "Y-Offset:" #. vprmD #: cui/uiconfig/ui/imagetabpage.ui:444 msgctxt "imagetabpage|label15" msgid "Tiling Offset:" -msgstr "" +msgstr "Tiling Offset:" #. QEPUJ #: cui/uiconfig/ui/imagetabpage.ui:467 msgctxt "imagetabpage|tileofflb" msgid "Row" -msgstr "" +msgstr "Row" #. CwmC3 #: cui/uiconfig/ui/imagetabpage.ui:468 msgctxt "imagetabpage|tileofflb" msgid "Column" -msgstr "" +msgstr "Column" #. GQBjR #: cui/uiconfig/ui/imagetabpage.ui:511 msgctxt "imagetabpage|label2" msgid "Options" -msgstr "" +msgstr "Options" #. g3YAa #: cui/uiconfig/ui/imagetabpage.ui:556 msgctxt "imagetabpage|CTL_IMAGE_PREVIEW-atkobject" msgid "Example" -msgstr "" +msgstr "Example" #. y3nG4 #: cui/uiconfig/ui/imagetabpage.ui:576 msgctxt "imagetabpage|label8" msgid "Preview" -msgstr "" +msgstr "Preview" #. TokEG #: cui/uiconfig/ui/imagetabpage.ui:592 msgctxt "imagetabpage|extended_tip|ImageTabPage" msgid "Select a image that you want to use as a fill image, or add your own image/pattern." -msgstr "" +msgstr "Select a image that you want to use as a fill image, or add your own image/pattern." #. zCiFk #: cui/uiconfig/ui/insertfloatingframe.ui:18 @@ -12306,7 +12306,7 @@ #: cui/uiconfig/ui/macroselectordialog.ui:281 msgctxt "macroselectordialog|label1" msgid "_Description" -msgstr "" +msgstr "_Description" #. YTX8B #: cui/uiconfig/ui/menuassignpage.ui:46 @@ -15122,7 +15122,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:126 msgctxt "optjsearchpage|matchrepeatcharmarks" msgid "It_eration marks" -msgstr "" +msgstr "It_eration marks" #. fHHv6 #: cui/uiconfig/ui/optjsearchpage.ui:134 @@ -17135,179 +17135,155 @@ msgid "Automatic" msgstr "Automatic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High-contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Specifies the icon style for icons in toolbars and dialogue boxes." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Icon s_tyle:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Add more icon themes via extension" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Icon Style" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Requires restart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Use hard_ware acceleration" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Directly accesses hardware features of the graphical display adapter to improve the screen display." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Use anti-a_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with fewer artifacts." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Use Skia for all rendering" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Force Skia software rendering" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Requires restart. Enabling this will prevent the use of graphics drivers." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia is currently enabled." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia is currently disabled." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Graphics Output" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Show p_review of fonts" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Screen font anti-aliasin_g" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Select to smooth the screen appearance of text." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "fro_m:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." -msgstr "" +msgstr "Enter the smallest font size to apply anti-aliasing to." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Font Lists" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" -msgstr "" +msgstr "Run Graphics Tests" #. 872fQ #: cui/uiconfig/ui/pageformatpage.ui:41 @@ -18600,7 +18576,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:14 msgctxt "qrcodegen|QrCodeGenDialog" msgid "QR and Barcode" -msgstr "" +msgstr "QR and Barcode" #. CCQhf #: cui/uiconfig/ui/qrcodegen.ui:115 @@ -18612,7 +18588,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:118 msgctxt "qr text" msgid "The text from which to generate the code." -msgstr "" +msgstr "The text from which to generate the code." #. 4FXDa #. Text to be stored in the QR @@ -18633,38 +18609,38 @@ #: cui/uiconfig/ui/qrcodegen.ui:162 msgctxt "qrcodegen|label_type" msgid "Type:" -msgstr "" +msgstr "Type:" #. QaD48 #: cui/uiconfig/ui/qrcodegen.ui:179 msgctxt "qrcodegen|QrCode" msgid "QR Code" -msgstr "" +msgstr "QR Code" #. HGShQ #: cui/uiconfig/ui/qrcodegen.ui:180 msgctxt "qrcodegen|BarCode" msgid "Barcode" -msgstr "" +msgstr "Barcode" #. C3VYY #: cui/uiconfig/ui/qrcodegen.ui:184 msgctxt "type" msgid "The type of code to generate." -msgstr "" +msgstr "The type of code to generate." #. 8QtFq #. Error Correction Level of QR code #: cui/uiconfig/ui/qrcodegen.ui:205 msgctxt "qrcodegen|label_ecc" msgid "Error correction:" -msgstr "" +msgstr "Error correction:" #. SPWn3 #: cui/uiconfig/ui/qrcodegen.ui:237 msgctxt "edit margin" msgid "The margin surrounding the code." -msgstr "" +msgstr "The margin surrounding the code." #. vUJPT #: cui/uiconfig/ui/qrcodegen.ui:254 @@ -18724,7 +18700,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:384 msgctxt "qr code dialog title" msgid "Generate linear and matrix codes for any text or URL." -msgstr "" +msgstr "Generate linear and matrix codes for any text or URL." #. 3HNDZ #: cui/uiconfig/ui/querychangelineenddialog.ui:7 @@ -21070,7 +21046,7 @@ #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum consecutive hyphenated lines" -msgstr "" +msgstr "_Maximum consecutive hyphenated lines" #. GgHhP #: cui/uiconfig/ui/textflowpage.ui:192 @@ -21628,7 +21604,7 @@ #: cui/uiconfig/ui/transparencytabpage.ui:456 msgctxt "transparencytabpage|CTL_IMAGE_PREVIEW-atkobject" msgid "Example" -msgstr "" +msgstr "Example" #. AiQzg #: cui/uiconfig/ui/transparencytabpage.ui:491 @@ -21706,7 +21682,7 @@ #: cui/uiconfig/ui/twolinespage.ui:189 msgctxt "twolinespage|label28" msgid "Enclosing Characters" -msgstr "" +msgstr "Enclosing Characters" #. fwdBe #: cui/uiconfig/ui/twolinespage.ui:223 diff -Nru libreoffice-7.3.4/translations/source/en-GB/dbaccess/messages.po libreoffice-7.3.5/translations/source/en-GB/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/en-GB/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-06-01 09:37+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562933215.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Create a n_ew database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Select to create a new database." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Embedded database:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Open an existing database _file" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Select to open a database file from a list of recently used files or from a file selection dialogue box." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Recently used:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Open" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Opens a file selection dialogue box where you can select a database file. Click Open or OK in the file selection dialogue box to open the file immediately and to exit the wizard." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connect to an e_xisting database" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Select to create a database document for an existing database connection." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Select the database type for the existing database connection." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "available in this setup." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "The Database Wizard creates a database file that contains information about a database." diff -Nru libreoffice-7.3.4/translations/source/en-GB/extensions/messages.po libreoffice-7.3.5/translations/source/en-GB/extensions/messages.po --- libreoffice-7.3.4/translations/source/en-GB/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-02-11 10:35+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554743586.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Refresh form" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (short)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (short YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (short YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (long)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Not Selected" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selected" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Not Defined" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "All records" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Active record" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Current page" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yes" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Parent Form" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "None" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Single" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Range" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Default" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancel" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Help" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "The selected entry" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Position of the selected entry" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Single-line" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multi-line" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multi-line with formatting" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "None" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Both" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3-D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Left top" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Left centred" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Left bottom" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Right top" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Right centred" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Right bottom" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Above left" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Above centred" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Above right" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Below left" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Below centred" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Below right" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centred" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preserve" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Replace" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Collapse" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Keep Ratio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Fit to Size" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Left-to-right" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Right-to-left" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Use superordinate object settings" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Never" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "When focused" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Always" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "To Paragraph" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "As Character" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "To Frame" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "To Character" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "To Cell" diff -Nru libreoffice-7.3.4/translations/source/en-GB/fpicker/messages.po libreoffice-7.3.5/translations/source/en-GB/fpicker/messages.po --- libreoffice-7.3.4/translations/source/en-GB/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-02 17:36+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" @@ -216,55 +216,55 @@ msgstr "Date modified" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Open" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Play" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "File _name:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "File _type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Read-only" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Save with password" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatic file name extension" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Edit _filter settings" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Encrypt with GPG key" diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" -"Last-Translator: Stuart Swales \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" "MIME-Version: 1.0\n" @@ -1013,7 +1013,7 @@ "par_id11630542436346\n" "help.text" msgid "Range objects have a property named TableBorder2 that can be used to format range borders as it is done in the Format - Cells - Borders dialog in the Line Arrangement section." -msgstr "" +msgstr "Range objects have a property named TableBorder2 that can be used to format range borders as it is done in the Format - Cells - Borders dialogue box in the Line Arrangement section." #. A25aA #: calc_borders.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2021-12-14 17:38+0000\n" -"Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1565599713.000000\n" #. naSFZ @@ -563,7 +563,7 @@ "N0530\n" "help.text" msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning OnLoad script, to the Open Document event, suffices to initiate and terminate document event monitoring. Tools - Customize menu Events tab is used to assign either scripts." -msgstr "" +msgstr "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning OnLoad script, to the Open Document event, suffices to initiate and terminate document event monitoring. Tools - Customise menu Events tab is used to assign either scripts." #. KgWvt #: python_document_events.xhp @@ -896,7 +896,7 @@ "N0650\n" "help.text" msgid "Using Tools - Customize menu Events tab, the Open document event fires a ConsoleLogger initialisation. _documentEventOccured routine - set by ConsoleLogger - serves as a unique entry point to trap all document events." -msgstr "" +msgstr "Using Tools - Customise menu Events tab, the Open document event fires a ConsoleLogger initialisation. _documentEventOccured routine - set by ConsoleLogger - serves as a unique entry point to trap all document events." #. gGpkW #: python_document_events.xhp @@ -1067,7 +1067,7 @@ "N0719\n" "help.text" msgid "Access2Base.Trace.TraceConsole() ' Captured events dialog" -msgstr "" +msgstr "Access2Base.Trace.TraceConsole() ' Captured events dialog" #. X8Kdh #: python_document_events.xhp @@ -1949,7 +1949,7 @@ "N0388\n" "help.text" msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls." -msgstr "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls." +msgstr "Graphical artefacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls." #. UVzsE #: python_listener.xhp @@ -2210,7 +2210,7 @@ "par_id801636114790638\n" "help.text" msgid "The containers are accessible in all %PRODUCTNAME programs through the user interface. Go to Tools > Macros > Organize Macros > Python, to open the Python Macros dialog." -msgstr "" +msgstr "The containers are accessible in all %PRODUCTNAME programs through the user interface. Go to Tools > Macros > Organise Macros > Python, to open the Python Macros dialogue box." #. FU5EC #: python_locations.xhp @@ -2390,7 +2390,7 @@ "par_id181544209916707\n" "help.text" msgid "Python macros can be organized in libraries, modules and macros. Use the Macro Library hierarchy as a guide when creating or installing new macros in module files, new module files in library folders or new library folders in containers." -msgstr "" +msgstr "Python macros can be organised in libraries, modules and macros. Use the Macro Library hierarchy as a guide when creating or installing new macros in module files, new module files in library folders or new library folders in containers." #. Zcfxg #: python_platform.xhp @@ -3596,7 +3596,7 @@ "par_id81632760673283\n" "help.text" msgid "Use APSO extension console as an alternative:" -msgstr "" +msgstr "Use APSO extension console as an alternative:" #. 6h9CS #: python_shell.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -41,7 +41,7 @@ "not_BasProp\n" "help.text" msgid "This property is not available in Basic." -msgstr "" +msgstr "This property is not available in Basic." #. 4GDXo #: avail_release.xhp @@ -50,7 +50,7 @@ "not_PycMeth\n" "help.text" msgid "This method is not available in Python." -msgstr "" +msgstr "This method is not available in Python." #. 3ZUdq #: avail_release.xhp @@ -59,7 +59,7 @@ "not_PycProp\n" "help.text" msgid "This property is not available in Python." -msgstr "" +msgstr "This property is not available in Python." #. 9bTEm #: avail_release.xhp @@ -68,7 +68,7 @@ "par_id811631775671311\n" "help.text" msgid "This service is available from %PRODUCTNAME 7.3 onwards." -msgstr "" +msgstr "This service is available from %PRODUCTNAME 7.3 onwards." #. J3r7B #: avail_release.xhp @@ -77,7 +77,7 @@ "par_id291613654389793\n" "help.text" msgid "This method is available from %PRODUCTNAME 7.3 onwards." -msgstr "" +msgstr "This method is available from %PRODUCTNAME 7.3 onwards." #. ajeAa #: avail_release.xhp @@ -86,7 +86,7 @@ "par_id201613654593537\n" "help.text" msgid "This property is available from %PRODUCTNAME 7.3 onwards." -msgstr "" +msgstr "This property is available from %PRODUCTNAME 7.3 onwards." #. 7KtXf #: avail_release.xhp @@ -95,7 +95,7 @@ "par_id651551701041690\n" "help.text" msgid "This service is available from %PRODUCTNAME 7.2 onwards." -msgstr "" +msgstr "This service is available from %PRODUCTNAME 7.2 onwards." #. GXE45 #: avail_release.xhp @@ -104,7 +104,7 @@ "par_id281613660174140\n" "help.text" msgid "These methods are available from %PRODUCTNAME 7.2 onwards." -msgstr "" +msgstr "These methods are available from %PRODUCTNAME 7.2 onwards." #. An73n #: avail_release.xhp @@ -113,7 +113,7 @@ "par_id291613654389792\n" "help.text" msgid "This method is available from %PRODUCTNAME 7.2 onwards." -msgstr "" +msgstr "This method is available from %PRODUCTNAME 7.2 onwards." #. qjuHF #: avail_release.xhp @@ -1400,7 +1400,7 @@ "par_id671582558126025\n" "help.text" msgid "Count the number of dimensions of an array. The result can be greater than two.
    If the argument is not an array, returns -1
    If the array is not initialized, returns 0." -msgstr "" +msgstr "Count the number of dimensions of an array. The result can be greater than two.
    If the argument is not an array, returns -1
    If the array is not initialised, returns 0." #. xbtFE #: sf_array.xhp @@ -1670,7 +1670,7 @@ "par_id101585562548245\n" "help.text" msgid "If a line contains less or more fields than the first line in the file, an exception will be raised. Empty lines however are simply ignored. If the size of the file exceeds the number of items limit (see inside the code), a warning is raised and the array is truncated." -msgstr "" +msgstr "If a line contains less or more fields than the first line in the file, an exception will be raised. Empty lines however are simply ignored. If the size of the file exceeds the number of items limit (see inside the code), a warning is raised and the array is truncated." #. zGf5A #: sf_array.xhp @@ -2012,7 +2012,7 @@ "par_id441582648204012\n" "help.text" msgid "Initialize a new zero-based array with numeric values." -msgstr "" +msgstr "Initialise a new zero-based array with numeric values." #. EVXVL #: sf_array.xhp @@ -2516,7 +2516,7 @@ "par_id351619100723505\n" "help.text" msgid "If form documents are organized in folders, it is necessary to include the folder name to specify the form document to be opened, as illustrated in the following examples:" -msgstr "" +msgstr "If form documents are organised in folders, it is necessary to include the folder name to specify the form document to be opened, as illustrated in the following examples:" #. ZQnqj #: sf_base.xhp @@ -2723,7 +2723,7 @@ "par_id351619100327505\n" "help.text" msgid "If form documents are organized in folders, it becomes necessary to include the folder name to specify the form document to be opened, as illustrated in the following example:" -msgstr "" +msgstr "If form documents are organised in folders, it becomes necessary to include the folder name to specify the form document to be opened, as illustrated in the following example:" #. zzgBi #: sf_base.xhp @@ -3164,7 +3164,7 @@ "par_id361589200121646\n" "help.text" msgid "servicename: A fully qualified service name such as com.sun.star.ui.dialogs.FilePicker or com.sun.star.sheet.FunctionAccess." -msgstr "" +msgstr "servicename: A fully qualified service name such as com.sun.star.ui.dialogs.FilePicker or com.sun.star.sheet.FunctionAccess." #. rZoCx #: sf_basic.xhp @@ -3407,7 +3407,7 @@ "par_id451618678389887\n" "help.text" msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes. Use this method to estimate time in milliseconds:" -msgstr "" +msgstr "Returns the number of system ticks provided by the operating system. You can use this function to optimise certain processes. Use this method to estimate time in milliseconds:" #. t3ADN #: sf_basic.xhp @@ -3452,7 +3452,7 @@ "bm_id61618905163671\n" "help.text" msgid "Basic service;GlobalScope.DialogLibraries" -msgstr "" +msgstr "Basic service;GlobalScope.DialogLibraries" #. jusQK #: sf_basic.xhp @@ -3461,7 +3461,7 @@ "par_id381622397863419\n" "help.text" msgid "Returns the UNO object containing all shared dialog libraries." -msgstr "" +msgstr "Returns the UNO object containing all shared dialog libraries." #. QEFwP #: sf_basic.xhp @@ -3470,7 +3470,7 @@ "par_id491622397863810\n" "help.text" msgid "This method is the Python equivalent to GlobalScope.DialogLibraries in Basic scripts." -msgstr "" +msgstr "This method is the Python equivalent to GlobalScope.DialogLibraries in Basic scripts." #. 8ozVo #: sf_basic.xhp @@ -3479,7 +3479,7 @@ "par_id811622398234384\n" "help.text" msgid "The following example shows a message box with the names of all available dialog libraries." -msgstr "" +msgstr "The following example shows a message box with the names of all available dialog libraries." #. Vb2CW #: sf_basic.xhp @@ -3533,7 +3533,7 @@ "par_id231618922407948\n" "help.text" msgid "Displays a dialog box containing a message and returns an optional value.
    MB_xx constants help specify the dialog type, the number and type of buttons to display, plus the icon type. By adding their respective values they form bit patterns, that define the MsgBox dialog appearance." -msgstr "" +msgstr "Displays a dialogue box containing a message and returns an optional value.
    MB_xx constants help specify the dialogue box type, the number and type of buttons to display, plus the icon type. By adding their respective values they form bit patterns, that define the MsgBox dialogue box appearance." #. 5adLA #: sf_basic.xhp @@ -4928,7 +4928,7 @@ "par_id211591632192379\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behaviour is to add the copied sheet at the last position." #. yuvEn #: sf_calc.xhp @@ -5018,7 +5018,7 @@ "par_id601591714614407\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behaviour is to add the copied sheet at the last position." #. iEHJy #: sf_calc.xhp @@ -5045,7 +5045,7 @@ "par_id831611707431984\n" "help.text" msgid "It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." #. KCiyF #: sf_calc.xhp @@ -5477,7 +5477,7 @@ "par_id751611756909199\n" "help.text" msgid "The destination area is cleared of all contents and formats before inserting the contents of the CSV file. The size of the modified area is fully determined by the contents of the input file." -msgstr "" +msgstr "The destination area is cleared of all contents and formats before inserting the contents of the CSV file. The size of the modified area is fully determined by the contents of the input file." #. D2w2A #: sf_calc.xhp @@ -5576,7 +5576,7 @@ "par_id791593686300499\n" "help.text" msgid "All columns are presumed to be texts, except if recognized as valid numbers." -msgstr "" +msgstr "All columns are presumed to be texts, except if recognised as valid numbers." #. Byno7 #: sf_calc.xhp @@ -5612,7 +5612,7 @@ "par_id81611763957509\n" "help.text" msgid "The destination area is cleared of all contents and formats before inserting the imported contents. The size of the modified area is fully determined by the contents in the table or query." -msgstr "" +msgstr "The destination area is cleared of all contents and formats before inserting the imported contents. The size of the modified area is fully determined by the contents in the table or query." #. tfp3o #: sf_calc.xhp @@ -5693,7 +5693,7 @@ "par_id84159169847269\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position." -msgstr "" +msgstr "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behaviour is to insert the sheet at the last position." #. UCmit #: sf_calc.xhp @@ -5711,7 +5711,7 @@ "par_id6415925694762\n" "help.text" msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area." #. UqxZv #: sf_calc.xhp @@ -5756,7 +5756,7 @@ "par_id9159169890334\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position." -msgstr "" +msgstr "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behaviour is to move the sheet to the last position." #. pd5t4 #: sf_calc.xhp @@ -5783,7 +5783,7 @@ "par_id61611768400376\n" "help.text" msgid "This method has the same behavior as the homonymous Calc's Offset function." -msgstr "" +msgstr "This method has the same behaviour as the homonymous Calc's Offset function." #. G2oD2 #: sf_calc.xhp @@ -5873,7 +5873,7 @@ "par_id51592233506021\n" "help.text" msgid "Opens a non-modal dialog that can be used to select a range in the document and returns a string containing the selected range." -msgstr "" +msgstr "Opens a non-modal dialogue box that can be used to select a range in the document and returns a string containing the selected range." #. CWn2A #: sf_calc.xhp @@ -5882,7 +5882,7 @@ "par_id301637936295380\n" "help.text" msgid "This method opens the same dialog that is used by %PRODUCTNAME when the Shrink button is pressed. For example, the Tools - Goal Seek dialog has a Shrink button to the right of the Formula cell field." -msgstr "" +msgstr "This method opens the same dialogue box that is used by %PRODUCTNAME when the Shrink button is pressed. For example, the Tools - Goal Seek dialogue box has a Shrink button to the right of the Formula cell field." #. XUoah #: sf_calc.xhp @@ -5900,7 +5900,7 @@ "par_id901592233506001\n" "help.text" msgid "title: The title of the dialog, as a string." -msgstr "" +msgstr "title: The title of the dialog, as a string." #. Yyn74 #: sf_calc.xhp @@ -5909,7 +5909,7 @@ "par_id781592234124502\n" "help.text" msgid "selection: An optional range that is initially selected when the dialog is displayed." -msgstr "" +msgstr "selection: An optional range that is initially selected when the dialog is displayed." #. zo7VK #: sf_calc.xhp @@ -5922,12 +5922,13 @@ #. SqEWv #: sf_calc.xhp +#, fuzzy msgctxt "" "sf_calc.xhp\n" "par_id321592234150345\n" "help.text" msgid "closeafterselect: When True (default) the dialog is closed immediately after the selection is made. When False the user can change the selection as many times as needed and then manually close the dialog." -msgstr "" +msgstr "closeafterselect: When True (default) the dialog is closed immediately after the selection is made. When False the user can change the selection as many times as needed and then manually close the dialog." #. yDiCm #: sf_calc.xhp @@ -6161,7 +6162,7 @@ "par_id191592745582983\n" "help.text" msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input value argument. Vectors are always expanded vertically." -msgstr "" +msgstr "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input value argument. Vectors are always expanded vertically." #. tm6AR #: sf_calc.xhp @@ -6233,7 +6234,7 @@ "par_id601592231799489\n" "help.text" msgid "Stores the given value in the specified range. The size of the modified area is equal to the size of the target range." -msgstr "" +msgstr "Stores the given value in the specified range. The size of the modified area is equal to the size of the target range." #. PeoKo #: sf_calc.xhp @@ -6269,7 +6270,7 @@ "par_id841592745785192\n" "help.text" msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of value is smaller than the size of targetrange, then the remaining cells will be emptied." -msgstr "" +msgstr "The full range is updated and the remainder of the sheet is left unchanged. If the size of value is smaller than the size of targetrange, then the remaining cells will be emptied." #. QFkLr #: sf_calc.xhp @@ -6278,7 +6279,7 @@ "par_id191611776838396\n" "help.text" msgid "If the size of value is larger than the size of targetrange, then value is only partially copied until it fills the size of targetrange." -msgstr "" +msgstr "If the size of value is larger than the size of targetrange, then value is only partially copied until it fills the size of targetrange." #. ykBk6 #: sf_calc.xhp @@ -6305,7 +6306,7 @@ "bas_id541592232948825\n" "help.text" msgid "'Below the Value and TargetRange have the same size" -msgstr "" +msgstr "'Below the Value and TargetRange have the same size" #. 4LFnH #: sf_calc.xhp @@ -6359,7 +6360,7 @@ "par_id481593880376480\n" "help.text" msgid "Inserts the given (array of) formula(s) in the specified range. The size of the modified area is equal to the size of the range." -msgstr "" +msgstr "Inserts the given (array of) formula(s) in the specified range. The size of the modified area is equal to the size of the range." #. d8CAU #: sf_calc.xhp @@ -6413,7 +6414,7 @@ "par_id491593880857823\n" "help.text" msgid "If the size of formula is smaller than the size of targetrange, then the remaining cells are emptied." -msgstr "" +msgstr "If the size of formula is smaller than the size of targetrange, then the remaining cells are emptied." #. LwoGL #: sf_calc.xhp @@ -6422,7 +6423,7 @@ "par_id701611778103306\n" "help.text" msgid "If the size of formula is larger than the size of targetrange, then the formulas are only partially copied until it fills the size of targetrange." -msgstr "" +msgstr "If the size of formula is larger than the size of targetrange, then the formulas are only partially copied until it fills the size of targetrange." #. GQC3N #: sf_calc.xhp @@ -6809,7 +6810,7 @@ "par_id141595692394382\n" "help.text" msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." #. MVGBC #: sf_calc.xhp @@ -8258,7 +8259,7 @@ "tit\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "SFDialogs.Dialog service" #. LzQoS #: sf_dialog.xhp @@ -8267,7 +8268,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "SFDialogs.Dialog service" #. ny8EV #: sf_dialog.xhp @@ -8276,7 +8277,7 @@ "par_id931583589764919\n" "help.text" msgid "The Dialog service contributes to the management of dialogs created with the Basic Dialog Editor. Each instance of the current class represents a single dialog box displayed to the user." -msgstr "" +msgstr "The Dialog service contributes to the management of dialogs created with the Basic Dialog Editor. Each instance of the current class represents a single dialogue box displayed to the user." #. vxEvV #: sf_dialog.xhp @@ -8285,7 +8286,7 @@ "par_id831598110550771\n" "help.text" msgid "A dialog box can be displayed in modal or in non-modal modes." -msgstr "" +msgstr "A dialogue box can be displayed in modal or in non-modal modes." #. LVjBj #: sf_dialog.xhp @@ -8303,7 +8304,7 @@ "par_id981598110463521\n" "help.text" msgid "In non-modal mode, the dialog box is \"floating\" on the user desktop and the execution of the macro process continues normally. A non-modal dialog closes when it is terminated with the Terminate() method or when the %PRODUCTNAME session ends. The window close button is inactive in non-modal dialogs." -msgstr "" +msgstr "In non-modal mode, the dialogue box is \"floating\" on the user desktop and the execution of the macro process continues normally. A non-modal dialogue box closes when it is terminated with the Terminate() method or when the %PRODUCTNAME session ends. The window close button is inactive in non-modal dialogue boxes." #. GrpyR #: sf_dialog.xhp @@ -8312,7 +8313,7 @@ "par_id721598110472337\n" "help.text" msgid "A dialog box disappears from memory after its explicit termination." -msgstr "" +msgstr "A dialogue box disappears from memory after its explicit termination." #. asacX #: sf_dialog.xhp @@ -8321,7 +8322,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDialogs.Dialog service is closely related to the SFDialogs.DialogControl service." -msgstr "" +msgstr "The SFDialogs.Dialog service is closely related to the SFDialogs.DialogControl service." #. CByHp #: sf_dialog.xhp @@ -8339,7 +8340,7 @@ "par_id361598174756160\n" "help.text" msgid "The Dialog service is invoked through the CreateScriptService method. It requires three positional arguments to specify the dialog box to activate:" -msgstr "" +msgstr "The Dialog service is invoked through the CreateScriptService method. It requires three positional arguments to specify the dialogue box to activate:" #. Ntzqh #: sf_dialog.xhp @@ -8366,7 +8367,7 @@ "par_id821612271946316\n" "help.text" msgid "DialogName: A case-sensitive string designating the dialog." -msgstr "" +msgstr "DialogName: A case-sensitive string designating the dialog." #. r5vY5 #: sf_dialog.xhp @@ -8375,7 +8376,7 @@ "par_id761620142701399\n" "help.text" msgid "Below %PRODUCTNAME Basic and Python examples are displaying the dlgConsole dialog that belongs to ScriptForge shared library:" -msgstr "" +msgstr "Below %PRODUCTNAME Basic and Python examples are displaying the dlgConsole dialog that belongs to ScriptForge shared library:" #. mqjFF #: sf_dialog.xhp @@ -8447,7 +8448,7 @@ "par_id951598174966322\n" "help.text" msgid "Alternatively a Dialog instance can be retrieved via the SFDialogs.DialogEvent service, providing that the dialog was initiated with the Dialog service. DialogEvent returns the SFDialogs.Dialog service instance that triggered the event." -msgstr "" +msgstr "Alternatively a Dialog instance can be retrieved via the SFDialogs.DialogEvent service, providing that the dialog was initiated with the Dialog service. DialogEvent returns the SFDialogs.Dialog service instance that triggered the event." #. QBG5g #: sf_dialog.xhp @@ -8465,7 +8466,7 @@ "par_id251598176312571\n" "help.text" msgid "Note that in previous examples, the prefix \"SFDialogs.\" may be omitted when deemed appropriate." -msgstr "" +msgstr "Note that in previous examples, the prefix \"SFDialogs.\" may be omitted when deemed appropriate." #. nXGkZ #: sf_dialog.xhp @@ -8564,7 +8565,7 @@ "par_id971584027709752\n" "help.text" msgid "Specify the title of the dialog." -msgstr "" +msgstr "Specify the title of the dialog." #. 2pjyZ #: sf_dialog.xhp @@ -8582,7 +8583,7 @@ "par_id111583839767195\n" "help.text" msgid "Specify the height of the dialog box." -msgstr "" +msgstr "Specify the height of the dialogue box." #. KD2zy #: sf_dialog.xhp @@ -8600,7 +8601,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies if the dialog box is currently in execution in modal mode." -msgstr "" +msgstr "Specifies if the dialogue box is currently in execution in modal mode." #. sA5Nj #: sf_dialog.xhp @@ -8618,7 +8619,7 @@ "par_id721588333908708\n" "help.text" msgid "The name of the dialog" -msgstr "" +msgstr "The name of the dialog" #. jcbwB #: sf_dialog.xhp @@ -8636,7 +8637,7 @@ "par_id151598177605296\n" "help.text" msgid "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active." -msgstr "" +msgstr "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active." #. FZG3n #: sf_dialog.xhp @@ -8654,7 +8655,7 @@ "par_id251588334016874\n" "help.text" msgid "Specify if the dialog box is visible on the desktop. By default it is not visible until the Execute() method is run and visible afterwards." -msgstr "" +msgstr "Specify if the dialogue box is visible on the desktop. By default it is not visible until the Execute() method is run and visible afterwards." #. w6DwG #: sf_dialog.xhp @@ -8672,7 +8673,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing the dialog model. Refer to XControlModel and UnoControlDialogModel in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "The UNO object representing the dialog model. Refer to XControlModel and UnoControlDialogModel in Application Programming Interface (API) documentation for detailed information." #. YFYi4 #: sf_dialog.xhp @@ -8690,7 +8691,7 @@ "par_id731598178083442\n" "help.text" msgid "The UNO object representing the dialog view. Refer to XControl and UnoControlDialog in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "The UNO object representing the dialog view. Refer to XControl and UnoControlDialog in Application Programming Interface (API) documentation for detailed information." #. S4DWL #: sf_dialog.xhp @@ -8708,7 +8709,7 @@ "par_id111583839717695\n" "help.text" msgid "Specify the width of the dialog box." -msgstr "" +msgstr "Specify the width of the dialogue box." #. q8eyc #: sf_dialog.xhp @@ -8951,7 +8952,7 @@ "par_id871583933076448\n" "help.text" msgid "Set the focus on the current Dialog instance. Return True if focusing was successful." -msgstr "" +msgstr "Set the focus on the current Dialog instance. Return True if focusing was successful." #. 7QdPA #: sf_dialog.xhp @@ -8960,7 +8961,7 @@ "par_id151598178880227\n" "help.text" msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode." -msgstr "" +msgstr "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode." #. uoBhE #: sf_dialog.xhp @@ -8969,7 +8970,7 @@ "par_id811620109056270\n" "help.text" msgid "Python and %PRODUCTNAME Basic examples both assume that the dialog is stored in current document's Standard library." -msgstr "" +msgstr "Python and %PRODUCTNAME Basic examples both assume that the dialog is stored in current document's Standard library." #. 4qLn9 #: sf_dialog.xhp @@ -8987,7 +8988,7 @@ "par_id421598179770993\n" "help.text" msgid "the list of the controls contained in the dialog" -msgstr "" +msgstr "the list of the controls contained in the dialog" #. hdSWz #: sf_dialog.xhp @@ -8996,7 +8997,7 @@ "par_id81598185229301\n" "help.text" msgid "a DialogControl class instance based on its name" -msgstr "" +msgstr "a DialogControl class instance based on its name" #. AEAHd #: sf_dialog.xhp @@ -9009,21 +9010,23 @@ #. j8x9C #: sf_dialog.xhp +#, fuzzy msgctxt "" "sf_dialog.xhp\n" "par_id381598185776500\n" "help.text" msgid "Ends the display of a modal dialog and gives back the argument as return value for the current Execute() running action." -msgstr "" +msgstr "Ends the display of a modal dialog and gives back the argument as return value for the current Execute() running action." #. gjvwy #: sf_dialog.xhp +#, fuzzy msgctxt "" "sf_dialog.xhp\n" "par_id551598185953362\n" "help.text" msgid "EndExecute() is usually contained in the processing of a macro triggered by a dialog or control event." -msgstr "" +msgstr "EndExecute() is usually contained in the processing of a macro triggered by a dialog or control event." #. yukGC #: sf_dialog.xhp @@ -9063,12 +9066,13 @@ #. FD9fr #: sf_dialog.xhp +#, fuzzy msgctxt "" "sf_dialog.xhp\n" "par_id29159818646178\n" "help.text" msgid "Display the dialog box and, when modal, wait for its termination by the user. The returned value is either:" -msgstr "" +msgstr "Display the dialog box and, when modal, wait for its termination by the user. The returned value is either:" #. PRCaG #: sf_dialog.xhp @@ -9090,21 +9094,23 @@ #. MovhC #: sf_dialog.xhp +#, fuzzy msgctxt "" "sf_dialog.xhp\n" "par_id951598186738346\n" "help.text" msgid "Otherwise the dialog stopped with an EndExecute() statement issued by a dialog or control event" -msgstr "" +msgstr "Otherwise the dialog stopped with an EndExecute() statement issued by a dialog or control event" #. eBFXT #: sf_dialog.xhp +#, fuzzy msgctxt "" "sf_dialog.xhp\n" "par_id741598187335869\n" "help.text" msgid "For non-modal dialog boxes the method always returns 0 and the execution of the macro continues." -msgstr "" +msgstr "For non-modal dialog boxes the method always returns 0 and the execution of the macro continues." #. Ej2iF #: sf_dialog.xhp @@ -9194,7 +9200,7 @@ "par_id21598187953679\n" "help.text" msgid "Terminate the Dialog service for the current instance. Return True if the termination was successful." -msgstr "" +msgstr "Terminate the Dialog service for the current instance. Return True if the termination was successful." #. CgAYf #: sf_dialog.xhp @@ -9203,7 +9209,7 @@ "par_id951620300687150\n" "help.text" msgid "Below Basic and Python examples open DlgConsole and dlgTrace non-modal dialogs. They are respectively stored in ScriptForge and Access2Base shared libraries. Dialog close buttons are disabled and explicit termination is performed at the end of a running process." -msgstr "" +msgstr "Below Basic and Python examples open DlgConsole and dlgTrace non-modal dialogue boxes. They are respectively stored in ScriptForge and Access2Base shared libraries. Dialogue box close buttons are disabled and explicit termination is performed at the end of a running process." #. W3W3Y #: sf_dialog.xhp @@ -9230,7 +9236,7 @@ "tit\n" "help.text" msgid "SFDialogs.DialogControl service" -msgstr "" +msgstr "SFDialogs.DialogControl service" #. UBz5i #: sf_dialogcontrol.xhp @@ -9239,7 +9245,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDialogs.DialogControl service" -msgstr "" +msgstr "SFDialogs.DialogControl service" #. tZzKc #: sf_dialogcontrol.xhp @@ -9248,7 +9254,7 @@ "par_id931583589764919\n" "help.text" msgid "The DialogControl service manages the controls belonging to a dialog defined with the Basic Dialog Editor. Each instance of the current service represents a single control within a dialog box." -msgstr "" +msgstr "The DialogControl service manages the controls belonging to a dialog defined with the Basic Dialog Editor. Each instance of the current service represents a single control within a dialog box." #. 7dDgL #: sf_dialogcontrol.xhp @@ -9257,7 +9263,7 @@ "par_id701598191157426\n" "help.text" msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the XControlModel and XControlView properties." -msgstr "" +msgstr "The focus is set on getting and setting the values displayed by the controls of the dialogue box. Formatting is accessible via the XControlModel and XControlView properties." #. fFfwe #: sf_dialogcontrol.xhp @@ -9266,7 +9272,7 @@ "par_id981598191184526\n" "help.text" msgid "Note that the unique DialogControl.Value property content varies according to the control type." -msgstr "" +msgstr "Note that the unique DialogControl.Value property content varies according to the control type." #. MBrzA #: sf_dialogcontrol.xhp @@ -9284,7 +9290,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDialogs.DialogControl service is closely related to the SFDialogs.Dialog service." -msgstr "" +msgstr "The SFDialogs.DialogControl service is closely related to the SFDialogs.Dialog service." #. uGTGK #: sf_dialogcontrol.xhp @@ -10283,7 +10289,7 @@ "par_id281612628879819\n" "help.text" msgid "Description as labeled in the Basic IDE" -msgstr "" +msgstr "Description as labelled in the Basic IDE" #. rSRBQ #: sf_dialogcontrol.xhp @@ -11021,7 +11027,7 @@ "pyc_id61626869417128\n" "help.text" msgid "# Initialize myDict as an empty dict object" -msgstr "" +msgstr "# Initialise myDict as an empty dict object" #. Zijqj #: sf_dictionary.xhp @@ -11048,7 +11054,7 @@ "pyc_id201626869185236\n" "help.text" msgid "# Initialize myDict with the content of dico" -msgstr "" +msgstr "# Initialise myDict with the content of dico" #. UHQFC #: sf_dictionary.xhp @@ -12029,7 +12035,7 @@ "par_id421611148353046\n" "help.text" msgid "This method is useful when one needs to give focus for a document that is minimized or hidden." -msgstr "" +msgstr "This method is useful when one needs to give focus for a document that is minimised or hidden." #. vFzrg #: sf_document.xhp @@ -12272,7 +12278,7 @@ "par_id191611153511038\n" "help.text" msgid "Each LibreOffice component has its own set of commands available. One easy way to learn commands is going to Tools > Customize > Keyboard. When you position your mouse over a function in the Function list, a tooltip will appear with the corresponding UNO command." -msgstr "" +msgstr "Each LibreOffice component has its own set of commands available. One easy way to learn commands is going to Tools > Customise > Keyboard. When you position your mouse over a function in the Function list, a tooltip will appear with the corresponding UNO command." #. enSv9 #: sf_document.xhp @@ -12578,7 +12584,7 @@ "par_id251621034725811\n" "help.text" msgid "Use the DebugPrint method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window." -msgstr "" +msgstr "Use the DebugPrint method to add any relevant information to the console. Console entries can be dumped to a text file or visualised in a dialogue box." #. 9AW2i #: sf_exception.xhp @@ -13172,7 +13178,7 @@ "par_id1001587224839900\n" "help.text" msgid "This method has exactly the same syntax, arguments and behavior as the Raise() method." -msgstr "" +msgstr "This method has exactly the same syntax, arguments and behaviour as the Raise() method." #. AXEnW #: sf_exception.xhp @@ -14270,7 +14276,7 @@ "par_id571613061005426\n" "help.text" msgid "The GetFileLen method can handle files with much larger sizes by returning a Currency value." -msgstr "" +msgstr "The GetFileLen method can handle files with much larger sizes by returning a Currency value." #. PK2Fo #: sf_filesystem.xhp @@ -14351,7 +14357,7 @@ "par_id471584113432231\n" "help.text" msgid "filename: A string with the file or folder name to be analyzed." -msgstr "" +msgstr "filename: A string with the file or folder name to be analysed." #. Uc93M #: sf_filesystem.xhp @@ -14729,7 +14735,7 @@ "par_id521583671701777\n" "help.text" msgid "Opens a dialog box to select a folder." -msgstr "" +msgstr "Opens a dialogue box to select a folder." #. mG6QD #: sf_filesystem.xhp @@ -15836,7 +15842,7 @@ "par_id81616858956290\n" "help.text" msgid "The behavior of the Activate method depends on the type of document where the form is located:" -msgstr "" +msgstr "The behaviour of the Activate method depends on the type of document where the form is located:" #. YVgyr #: sf_form.xhp @@ -16466,7 +16472,7 @@ "par_id271616942739359\n" "help.text" msgid "Specifies the default value used to initialize a control in a new record." -msgstr "" +msgstr "Specifies the default value used to initialise a control in a new record." #. nFBUQ #: sf_formcontrol.xhp @@ -17150,7 +17156,7 @@ "par_id281612628879819\n" "help.text" msgid "Description as labeled in the Basic IDE" -msgstr "" +msgstr "Description as labelled in the Basic IDE" #. yhjPA #: sf_formcontrol.xhp @@ -17861,7 +17867,7 @@ "par_id631623365667011\n" "help.text" msgid "If you plan to run scripts from inside the %PRODUCTNAME process, it is recommended to install the APSO (Alternative Script Organizer for Python) extension. However, to develop Python scripts from outside %PRODUCTNAME, you can choose your preferred Python IDE." -msgstr "" +msgstr "If you plan to run scripts from inside the %PRODUCTNAME process, it is recommended to install the APSO (Alternative Script Organiser for Python) extension. However, to develop Python scripts from outside %PRODUCTNAME, you can choose your preferred Python IDE." #. R4Rfk #: sf_intro.xhp @@ -17888,7 +17894,7 @@ "par_id681623365892513\n" "help.text" msgid "The easiest way to get started with Python scripting in %PRODUCTNAME is by installing the APSO extension. After installing it, open any %PRODUCTNAME component and go to Tools - Macros - Organize Python Scripts." -msgstr "" +msgstr "The easiest way to get started with Python scripting in %PRODUCTNAME is by installing the APSO extension. After installing it, open any %PRODUCTNAME component and go to Tools - Macros - Organise Python Scripts." #. iXiDt #: sf_intro.xhp @@ -18068,7 +18074,7 @@ "par_id501623369002537\n" "help.text" msgid "First open APSO by going to Tools - Macros - Organize Python Scripts." -msgstr "" +msgstr "First open APSO by going to Tools - Macros - Organise Python Scripts." #. ayPs5 #: sf_intro.xhp @@ -18311,7 +18317,7 @@ "par_id291585843652438\n" "help.text" msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string." -msgstr "" +msgstr "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localised string." #. j6xsd #: sf_l10n.xhp @@ -18356,7 +18362,7 @@ "par_id81637866601151\n" "help.text" msgid "AddTextsFromDialog: Extracts all strings from a Dialog service instance." -msgstr "" +msgstr "AddTextsFromDialog: Extracts all strings from a Dialog service instance." #. cm7fq #: sf_l10n.xhp @@ -18671,7 +18677,7 @@ "par_id1001585843659821\n" "help.text" msgid "Automatically extracts strings from a dialog and adds them to the list of localizable text strings. The following strings are extracted:" -msgstr "" +msgstr "Automatically extracts strings from a dialog and adds them to the list of localisable text strings. The following strings are extracted:" #. bS7ZL #: sf_l10n.xhp @@ -18680,7 +18686,7 @@ "par_id621637863440015\n" "help.text" msgid "The title of the dialog." -msgstr "" +msgstr "The title of the dialogue box." #. EBFAC #: sf_l10n.xhp @@ -18725,7 +18731,7 @@ "par_id731637863894577\n" "help.text" msgid "The dialog from which strings will be extracted must not be open when the method is called." -msgstr "" +msgstr "The dialog from which strings will be extracted must not be open when the method is called." #. 75EGY #: sf_l10n.xhp @@ -18734,7 +18740,7 @@ "par_id911637864050221\n" "help.text" msgid "When a L10N service instance is created from an existing PO file, use the GetTextsFromL10N method from the Dialog service to automatically load all translated strings into the dialog." -msgstr "" +msgstr "When a L10N service instance is created from an existing PO file, use the GetTextsFromL10N method from the Dialog service to automatically load all translated strings into the dialog." #. ejhbN #: sf_l10n.xhp @@ -18743,7 +18749,7 @@ "par_id391585843652113\n" "help.text" msgid "dialog: a Dialog service instance corresponding to the dialog from which strings will be extracted." -msgstr "" +msgstr "dialog: a Dialog service instance corresponding to the dialog from which strings will be extracted." #. QzWzG #: sf_l10n.xhp @@ -18752,7 +18758,7 @@ "par_id461614364298983\n" "help.text" msgid "The following example extracts all strings from the dialog \"MyDialog\" stored in the \"Standard\" library and exports them to a POT file:" -msgstr "" +msgstr "The following example extracts all strings from the dialog \"MyDialog\" stored in the \"Standard\" library and exports them to a POT file:" #. DqFBf #: sf_l10n.xhp @@ -19715,7 +19721,7 @@ "par_id531636493797707\n" "help.text" msgid "It is also possible to associate a popup menu with events triggered by %PRODUCTNAME applications, form and dialog controls. Events such as \"Mouse button pressed\" and \"Mouse button released\" are commonly associated with popup menus." -msgstr "" +msgstr "It is also possible to associate a pop-up menu with events triggered by %PRODUCTNAME applications, form and dialog controls. Events such as \"Mouse button pressed\" and \"Mouse button released\" are commonly associated with pop-up menus." #. L5Dhq #: sf_popupmenu.xhp @@ -19904,7 +19910,7 @@ "par_id201636724575911\n" "help.text" msgid "This folder contains a series of ZIP files containing the image files of each available icon set. The images inside these ZIP files are organized into folders. To use an icon, specify the icon file with the path to its location inside the ZIP file." -msgstr "" +msgstr "This folder contains a series of ZIP files containing the image files of each available icon set. The images inside these ZIP files are organised into folders. To use an icon, specify the icon file with the path to its location inside the ZIP file." #. 5yvv9 #: sf_popupmenu.xhp @@ -20795,7 +20801,7 @@ "par_id111582816585087\n" "help.text" msgid "Returns the current PDF export settings defined in the PDF Options dialog, which can be accessed by choosing File - Export as - Export as PDF." -msgstr "" +msgstr "Returns the current PDF export settings defined in the PDF Options dialogue box, which can be accessed by choosing File - Export as - Export as PDF." #. K7j2q #: sf_session.xhp @@ -20804,7 +20810,7 @@ "par_id931638383270026\n" "help.text" msgid "Export options set with the PDF Options dialog are kept for future use. Hence GetPDFExportOptions returns the settings currently defined. In addition, use SetPDFExportOptions to change current PDF export options." -msgstr "" +msgstr "Export options set with the PDF Options dialogue box are kept for future use. Hence GetPDFExportOptions returns the settings currently defined. In addition, use SetPDFExportOptions to change current PDF export options." #. uFCEq #: sf_session.xhp @@ -21002,7 +21008,7 @@ "par_id111582816583005\n" "help.text" msgid "Modifies the PDF export settings defined in the PDF Options dialog, which can be accessed by choosing File - Export as - Export as PDF." -msgstr "" +msgstr "Modifies the PDF export settings defined in the PDF Options dialogue box, which can be accessed by choosing File - Export as - Export as PDF." #. T2DkW #: sf_session.xhp @@ -21011,7 +21017,7 @@ "par_id181638385131806\n" "help.text" msgid "Calling this method changes the actual values set in the PDF Options dialog, which are used by the ExportAsPDF method from the Document service." -msgstr "" +msgstr "Calling this method changes the actual values set in the PDF Options dialogue box, which are used by the ExportAsPDF method from the Document service." #. FBrKg #: sf_session.xhp @@ -21038,7 +21044,7 @@ "par_id771582816585233\n" "help.text" msgid "pdfoptions: Dictionary object that defines the PDF export settings to be changed. Each key-value pair represents an export option and the value that will be set in the dialog." -msgstr "" +msgstr "pdfoptions: Dictionary object that defines the PDF export settings to be changed. Each key-value pair represents an export option and the value that will be set in the dialogue box." #. 8DKZK #: sf_session.xhp @@ -21209,7 +21215,7 @@ "par_id791611946942340\n" "help.text" msgid "The String service recognizes the following line breaks:" -msgstr "" +msgstr "The String service recognises the following line breaks:" #. o2TiZ #: sf_string.xhp @@ -21254,7 +21260,7 @@ "par_id401611948279056\n" "help.text" msgid "The String service recognizes the following whitespaces:" -msgstr "" +msgstr "The String service recognises the following whitespaces:" #. U3GSy #: sf_string.xhp @@ -21443,7 +21449,7 @@ "par_id63158659509728\n" "help.text" msgid "The following code snippets show the three ways to call methods from the String service (the Capitalize method is used as an example):" -msgstr "" +msgstr "The following code snippets show the three ways to call methods from the String service (the Capitalise method is used as an example):" #. UE3DL #: sf_string.xhp @@ -21605,7 +21611,7 @@ "par_id151611951803163\n" "help.text" msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution." -msgstr "" +msgstr "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalise, Escape, etc return a new string after their execution." #. PYcny #: sf_string.xhp @@ -21623,7 +21629,7 @@ "par_id271579683706571\n" "help.text" msgid "Capitalizes the first character from each word in the input string." -msgstr "" +msgstr "Capitalises the first character from each word in the input string." #. ibgky #: sf_string.xhp @@ -21632,7 +21638,7 @@ "par_id941582304592013\n" "help.text" msgid "inputstr: The string to be capitalized." -msgstr "" +msgstr "inputstr: The string to be capitalised." #. DB982 #: sf_string.xhp @@ -21803,7 +21809,7 @@ "par_id271579868053137\n" "help.text" msgid "Replaces Tab characters Chr(9) by space characters to replicate the behavior of tab stops." -msgstr "" +msgstr "Replaces Tab characters Chr(9) by space characters to replicate the behaviour of tab stops." #. Eb23Z #: sf_string.xhp @@ -21830,7 +21836,7 @@ "par_id281579868299807\n" "help.text" msgid "tabsize: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)" -msgstr "" +msgstr "tabsize: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)" #. GUoE8 #: sf_string.xhp @@ -23360,7 +23366,7 @@ "par_id741585834874500\n" "help.text" msgid "tabsize: Before wrapping the text, the existing TAB Chr(9) characters are replaced with spaces. The argument tabsize defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)." -msgstr "" +msgstr "tabsize: Before wrapping the text, the existing TAB Chr(9) characters are replaced with spaces. The argument tabsize defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)." #. HjZDB #: sf_textstream.xhp @@ -24260,7 +24266,7 @@ "bas_id141582735926821\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as suspended time" -msgstr "" +msgstr "'The time elapsed while the Dialog box is open will be counted as suspended time" #. 4jHcj #: sf_timer.xhp @@ -24269,7 +24275,7 @@ "bas_id901582735961725\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as running time" -msgstr "" +msgstr "'The time elapsed while the Dialog box is open will be counted as running time" #. 7QhZU #: sf_timer.xhp @@ -24872,7 +24878,7 @@ "par_id24158798644169\n" "help.text" msgid "Maximizes the active window or the given window." -msgstr "" +msgstr "Maximises the active window or the given window." #. hD4TC #: sf_ui.xhp @@ -24881,7 +24887,7 @@ "par_id951587986441954\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is maximized." -msgstr "" +msgstr "windowname: see the definitions above. If this argument is absent, the active window is maximised." #. vzDdG #: sf_ui.xhp @@ -24890,7 +24896,7 @@ "par_id871587986592696\n" "help.text" msgid "Minimizes the active window or the given window." -msgstr "" +msgstr "Minimises the active window or the given window." #. Enys5 #: sf_ui.xhp @@ -24899,7 +24905,7 @@ "par_id751587986592626\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is minimized." -msgstr "" +msgstr "windowname: see the definitions above. If this argument is absent, the active window is minimised." #. WHDDQ #: sf_ui.xhp @@ -25025,7 +25031,7 @@ "par_id751587986945965\n" "help.text" msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling Resize without arguments restores it." -msgstr "" +msgstr "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximised, calling Resize without arguments restores it." #. 6NUcv #: sf_ui.xhp @@ -25061,7 +25067,7 @@ "par_id21620332301809\n" "help.text" msgid "To resize a window that is not active, first activate it using the Activate method." -msgstr "" +msgstr "To resize a window that is not active, first activate it using the Activate method." #. NnBWM #: sf_ui.xhp @@ -25106,7 +25112,7 @@ "par_id571598864255776\n" "help.text" msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog." -msgstr "" +msgstr "Displays a non-modal dialogue box. Specify its title, an explanatory text and a percentage of progress to be represented on a progress bar. The dialogue box will remain visible until a call to the method without arguments or until the user manually closes the dialogue box." #. drhV6 #: sf_ui.xhp @@ -25115,7 +25121,7 @@ "par_id441598864535695\n" "help.text" msgid "title : The title appearing on top of the dialog box. Default = \"ScriptForge\"." -msgstr "" +msgstr "title : The title appearing on top of the dialogue box. Default = \"ScriptForge\"." #. jvrZV #: sf_ui.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -536,7 +536,7 @@ "par_id631529990528928\n" "help.text" msgid "Open Tools - Macros - Organize Dialogs and select %PRODUCTNAME Dialogs container." -msgstr "" +msgstr "Open Tools - Macros - Organise Dialogs and select %PRODUCTNAME Dialogs container." #. C3yvQ #: 00000003.xhp @@ -653,7 +653,7 @@ "par_id81621427048241\n" "help.text" msgid "This method requires the installation of the APSO (Alternative Script Organizer for Python) extension. In turn APSO requires the presence of %PRODUCTNAME Python scripting framework. If APSO or Python are missing, an error occurs." -msgstr "" +msgstr "This method requires the installation of the APSO (Alternative Script Organiser for Python) extension. In turn APSO requires the presence of %PRODUCTNAME Python scripting framework. If APSO or Python are missing, an error occurs." #. yJwvF #: 00000003.xhp @@ -2678,7 +2678,7 @@ "par_id141619553442668\n" "help.text" msgid "A Variant variable is initialized with the Empty special data type. You can use the IsEmpty function to test if a variable is an Empty Variant." -msgstr "" +msgstr "A Variant variable is initialised with the Empty special data type. You can use the IsEmpty function to test if a variable is an Empty Variant." #. aervF #: 01020100.xhp @@ -5072,7 +5072,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 "...after the Print dialogue box is closed, but before the actual print process begins. This event occurs for each copy printed." #. KNASw #: 01040000.xhp @@ -8078,7 +8078,7 @@ "par_id3148798\n" "help.text" msgid "prompt: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)." -msgstr "" +msgstr "prompt: String expression displayed as a message in the dialogue box. Line breaks can be inserted with Chr$(13)." #. oK5f6 #: 03010101.xhp @@ -8087,7 +8087,7 @@ "par_id3150769\n" "help.text" msgid "title: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application." -msgstr "" +msgstr "title: String expression displayed in the title bar of the dialogue box. If omitted, the title bar displays the name of the respective application." #. WNfC6 #: 03010101.xhp @@ -8096,7 +8096,7 @@ "par_id3147228\n" "help.text" msgid "buttons: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. buttons represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:" -msgstr "" +msgstr "buttons: Any integer expression that specifies the dialogue box type, as well as the number and type of buttons to display, and the icon type. buttons represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:" #. xuEUm #: 03010101.xhp @@ -8447,7 +8447,7 @@ "par_id051220170242005479\n" "help.text" msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYIGNORE, \"Dialog title\")" -msgstr "" +msgstr "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYIGNORE, \"Dialogue box title\")" #. BaStC #: 03010103.xhp @@ -8663,7 +8663,7 @@ "par_id3153311\n" "help.text" msgid "prompt: String expression displayed as the message in the dialog box." -msgstr "" +msgstr "prompt: String expression displayed as the message in the dialogue box." #. kqAw6 #: 03010201.xhp @@ -8672,7 +8672,7 @@ "par_id3145315\n" "help.text" msgid "title: String expression displayed in the title bar of the dialog box." -msgstr "" +msgstr "title: String expression displayed in the title bar of the dialogue box." #. 4qoJn #: 03010201.xhp @@ -8690,7 +8690,7 @@ "par_id3147573\n" "help.text" msgid "xpostwips: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME." -msgstr "" +msgstr "xpostwips: Integer expression that specifies the horizontal position of the dialogue box. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME." #. RY7kB #: 03010201.xhp @@ -8699,7 +8699,7 @@ "par_id3156024\n" "help.text" msgid "ypostwips: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME." -msgstr "" +msgstr "ypostwips: Integer expression that specifies the vertical position of the dialogue box. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME." #. ABQBS #: 03010201.xhp @@ -25097,7 +25097,7 @@ "par_id3159416\n" "help.text" msgid "If the argument is string, the function trims the leading white space; then it tries to recognize a number in following characters. The syntax below are recognized:" -msgstr "" +msgstr "If the argument is string, the function trims the leading white space; then it tries to recognise a number in following characters. The syntax below are recognised:" #. kj6xg #: 03100500.xhp @@ -25133,7 +25133,7 @@ "par_id61638383582794\n" "help.text" msgid "The rest of the string is ignored. If the string is not recognized, e.g. when after trimming leading whitespace it doesn't start with plus, minus, a decimal digit, or \"&\", or when the sequence after \"&O\" is longer than 11 characters or contains an alphabetic character, the numeric value of expression is 0." -msgstr "" +msgstr "The rest of the string is ignored. If the string is not recognised, e.g. when after trimming leading whitespace it doesn't start with plus, minus, a decimal digit, or \"&\", or when the sequence after \"&O\" is longer than 11 characters or contains an alphabetic character, the numeric value of expression is 0." #. ioj8X #: 03100500.xhp @@ -27536,7 +27536,7 @@ "par_id441575886284392\n" "help.text" msgid "Data structures return True even when empty. Object defined variables return True even if uninitialized." -msgstr "" +msgstr "Data structures return True even when empty. Object defined variables return True even if uninitialised." #. 4SsCT #: 03102800.xhp @@ -33944,7 +33944,7 @@ "par_idN10625\n" "help.text" msgid "The following code uses the service com.sun.star.ui.dialogs.FilePicker to show a file open dialog:" -msgstr "" +msgstr "The following code uses the service com.sun.star.ui.dialogs.FilePicker to show a file open dialogue box:" #. WENTD #: 03131600.xhp @@ -38552,7 +38552,7 @@ "par_id191632673837838\n" "help.text" msgid "REM Cell A1 displays the localized function name" -msgstr "" +msgstr "REM Cell A1 displays the localised function name" #. V3quU #: calc_functions.xhp @@ -38633,7 +38633,7 @@ "par_id191632673867838\n" "help.text" msgid "REM Cell A1 displays the localized function name" -msgstr "" +msgstr "REM Cell A1 displays the localised function name" #. mYEEy #: calc_functions.xhp @@ -40136,7 +40136,7 @@ "N0125\n" "help.text" msgid "Changing behavior of Basic Dir command. The directory flag (16) for the Dir command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned." -msgstr "" +msgstr "Changing behaviour of Basic Dir command. The directory flag (16) for the Dir command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned." #. piCTC #: compatibilitymode.xhp @@ -40829,7 +40829,7 @@ "par_id391587571321063\n" "help.text" msgid "When using Option VBASupport 1, Optional arguments with no default value (= expression) are initialized according to their data type, except if Variant." -msgstr "" +msgstr "When using Option VBASupport 1, Optional arguments with no default value (= expression) are initialised according to their data type, except if Variant." #. fDUEu #: fragments.xhp @@ -41540,7 +41540,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 "A property, also called field or attribute, characterises 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." #. hD9fA #: property.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -599,7 +599,7 @@ "par_id3153415\n" "help.text" msgid "The Headers/Footers dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the Same content left/right option was not marked in the Page Style dialog." -msgstr "" +msgstr "The Headers/Footers dialogue box contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the Same content left/right option was not marked in the Page Style dialogue box." #. CTq6U #: 02120100.xhp @@ -725,7 +725,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 "Opens a dialogue box to assign formats to new or selected text. The Text Attributes dialog contains the tab pages Font, Font Effects and Font Position." #. 5DMJG #: 02120100.xhp @@ -1292,7 +1292,7 @@ "par_id3147436\n" "help.text" msgid "Select the command Sheet - Fill Cells - Sheets. In the dialog which appears, the check box Numbers must be selected (or Paste All) if you want to combine operations with the values. You can also choose the desired operation here." -msgstr "" +msgstr "Select the command Sheet - Fill Cells - Sheets. In the dialogue box which appears, the check box Numbers must be selected (or Paste All) if you want to combine operations with the values. You can also choose the desired operation here." #. yNrLG #: 02140500.xhp @@ -1310,7 +1310,7 @@ "par_id3156283\n" "help.text" msgid "This dialog is similar to the Paste Special dialog, where you can find additional tips." -msgstr "" +msgstr "This dialogue box is similar to the Paste Special dialogue box, where you can find additional tips." #. B6GAM #: 02140600.xhp @@ -1337,7 +1337,7 @@ "par_id3148797\n" "help.text" msgid "Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type." -msgstr "" +msgstr "Automatically generate series with the options in this dialogue box. Determine direction, increment, time unit and series type." #. WnPsX #: 02140600.xhp @@ -1535,7 +1535,7 @@ "par_id3156288\n" "help.text" msgid "Forms a series directly in the sheet. The AutoFill function takes account of customized lists. For example, by entering January in the first cell, the series is completed using the list defined under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Forms a series directly in the sheet. The AutoFill function takes account of customised lists. For example, by entering January in the first cell, the series is completed using the list defined under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." #. 2JEap #: 02140600.xhp @@ -4433,7 +4433,7 @@ "par_id3145173\n" "help.text" msgid "The twelve functions in the Database category help you to analyze a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record. The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column." -msgstr "" +msgstr "The twelve functions in the Database category help you to analyse a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record. The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column." #. 8NQZ9 #: 04060101.xhp @@ -4721,7 +4721,7 @@ "par_id401615893095178\n" "help.text" msgid "Criteria can be created using wildcards, providing that wildcards have been enabled via the Enable wildcards in formulas option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." -msgstr "" +msgstr "Criteria can be created using wildcards, providing that wildcards have been enabled via the Enable wildcards in formulas option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialogue box. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." #. darZG #: 04060101.xhp @@ -4730,7 +4730,7 @@ "par_id921615893158111\n" "help.text" msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the Enable regular expressions in formulas option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog." -msgstr "" +msgstr "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the Enable regular expressions in formulae option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialogue box." #. YkSzL #: 04060101.xhp @@ -4739,7 +4739,7 @@ "par_id881615893236930\n" "help.text" msgid "Another setting that affects how the search criteria are handled is the Search criteria = and <> must apply to whole cells option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." -msgstr "" +msgstr "Another setting that affects how the search criteria are handled is the Search criteria = and <> must apply to whole cells option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialogue box. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." #. 4sbmh #: 04060101.xhp @@ -4757,7 +4757,7 @@ "par_id3153713\n" "help.text" msgid "The following table provides an example database table that is utilized to demonstrate how to use the functions in the Database category. The cell range A1:E10 contains fictitious information about the guests invited to Joe's birthday party. The following information is given for each guest - name, school grade, age in years, distance to school in meters, and weight in kilograms." -msgstr "" +msgstr "The following table provides an example database table that is utilised to demonstrate how to use the functions in the Database category. The cell range A1:E10 contains fictitious information about the guests invited to Joe's birthday party. The following information is given for each guest - name, school grade, age in years, distance to school in metres, and weight in kilograms." #. Y2HFt #: 04060101.xhp @@ -14864,7 +14864,7 @@ "par_id581631900947319\n" "help.text" msgid "We recommend using the more flexible EUROCONVERT function for converting between these currencies. CONVERT_OOO is not a standardized function and is not portable." -msgstr "" +msgstr "We recommend using the more flexible EUROCONVERT function for converting between these currencies. CONVERT_OOO is not a standardised function and is not portable." #. ETLYS #: 04060106.xhp @@ -15989,7 +15989,7 @@ "par_id61633516164519\n" "help.text" msgid "Press Delete to delete the array contents, including the array formula, or press Backspace and this brings up the Delete Contents dialog box. Select Formula or Delete All and click OK." -msgstr "" +msgstr "Press Delete to delete the array contents, including the array formula, or press Backspace and this brings up the Delete Contents dialogue box. Select Formula or Delete All and click OK." #. dEcVJ #: 04060107.xhp @@ -17312,7 +17312,7 @@ "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 "" +msgstr "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." #. DgsMB #: 04060107.xhp @@ -20039,7 +20039,7 @@ "par_id7928708\n" "help.text" msgid "If no constraint for a filter is given, the field's selected value is implicitly used. If a constraint for a filter is given, it must match the field's selected value, or an error is returned. Filters are the fields at the top left of a pivot table, populated using the \"Filters\" area of the pivot table layout dialog. From each filter, an item (value) can be selected, which means only that item is included in the calculation." -msgstr "" +msgstr "If no constraint for a filter is given, the field's selected value is implicitly used. If a constraint for a filter is given, it must match the field's selected value, or an error is returned. Filters are the fields at the top left of a pivot table, populated using the \"Filters\" area of the pivot table layout dialogue box. From each filter, an item (value) can be selected, which means only that item is included in the calculation." #. nARMD #: 04060109.xhp @@ -20210,7 +20210,7 @@ "par_id401624454547945\n" "help.text" msgid "Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the Double Quotes area of the Tools - AutoCorrect Options - Localized Options dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the Replace toggle button to disable the feature." -msgstr "" +msgstr "Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the Double Quotes area of the Tools - AutoCorrect Options - Localised Options dialogue box to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the Replace toggle button to disable the feature." #. rdzbS #: 04060110.xhp @@ -43322,7 +43322,7 @@ "par_id3154758\n" "help.text" msgid "Determines the optimal row height for the selected rows. The optimal row height depends on the font size of the largest character in the row. You can use various units of measure." -msgstr "" +msgstr "Determines the optimal row height for the selected rows. The optimal row height depends on the font size of the largest character in the row. You can use various units of measure." #. hCkvc #: 05030200.xhp @@ -43952,7 +43952,7 @@ "par_id581632979766784\n" "help.text" msgid "Merging a cell selection that partially includes merged cells is generally possible with Unmerge Cells followed by Merge Cells, without altering the initial selection. The result will be largely depend on previous choices when merging cells made with the Merge Cells Dialog options described below." -msgstr "" +msgstr "Merging a cell selection that partially includes merged cells is generally possible with Unmerge Cells followed by Merge Cells, without altering the initial selection. The result will be largely depend on previous choices when merging cells made with the Merge Cells dialogue box options described below." #. wNBDD #: 05060000.xhp @@ -43979,7 +43979,7 @@ "par_id271632985709781\n" "help.text" msgid "If more than one cell to be merged has content the Merge Cells dialog opens." -msgstr "" +msgstr "If more than one cell to be merged has content the Merge Cells dialogue box opens." #. QWjJw #: 05060000.xhp @@ -43988,7 +43988,7 @@ "par_id391632360383197\n" "help.text" msgid "Merge Cells Dialog Options" -msgstr "" +msgstr "Merge Cells Dialogue Box Options" #. LBMEE #: 05060000.xhp @@ -44654,7 +44654,7 @@ "par_id3159488\n" "help.text" msgid "Opens a dialog where you can specify the print range. You can also set the rows or columns which are to be repeated in every page." -msgstr "" +msgstr "Opens a dialogue box where you can specify the print range. You can also set the rows or columns which are to be repeated in every page." #. eja4j #: 05080300.xhp @@ -45626,7 +45626,7 @@ "par_id281609781729359\n" "help.text" msgid "More Options... opens a dialog to:" -msgstr "" +msgstr "More Options... opens a dialogue box to:" #. saDJA #: 05120000.xhp @@ -46841,7 +46841,7 @@ "par_id701619429750616\n" "help.text" msgid "Choose Tools - Protect Sheet to open the Protect Sheet dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect." -msgstr "" +msgstr "Choose Tools - Protect Sheet to open the Protect Sheet dialogue box in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect." #. vFHpY #: 06060100.xhp @@ -46886,7 +46886,7 @@ "par_id851619431300487\n" "help.text" msgid "Allows you to enter a password to protect the sheet from unauthorized changes. Confirm the password entered in the first box." -msgstr "" +msgstr "Allows you to enter a password to protect the sheet from unauthorised changes. Confirm the password entered in the first box." #. WX7Gh #: 06060100.xhp @@ -47057,7 +47057,7 @@ "par_id3154656\n" "help.text" msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialog. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialog opens, where you must enter the password." -msgstr "" +msgstr "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialogue box. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialogue box opens, where you must enter the password." #. scXrG #: 06060100.xhp @@ -48389,7 +48389,7 @@ "par_id911633127394220\n" "help.text" msgid "%PRODUCTNAME automatically recognizes predefined database ranges." -msgstr "" +msgstr "%PRODUCTNAME automatically recognizes predefined database ranges." #. 7khnq #: 12040000.xhp @@ -48587,7 +48587,7 @@ "par_id171621544405886\n" "help.text" msgid "Opens the Standard Filter dialog." -msgstr "" +msgstr "Opens the Standard Filter dialogue box." #. bbVTh #: 12040100.xhp @@ -50549,7 +50549,7 @@ "par_id3150768\n" "help.text" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas. You can also use drag and drop to rearrange the data fields on a pivot table." -msgstr "" +msgstr "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas. You can also use drag and drop to rearrange the data fields on a pivot table." #. b5Zrk #: 12090102.xhp @@ -51413,7 +51413,7 @@ "par_idN106F7\n" "help.text" msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only." -msgstr "" +msgstr "Opens the Data Field Options dialogue box. The Options button is visible for filters and column or row fields only." #. pTDtv #: 12090105.xhp @@ -56975,7 +56975,7 @@ "par_id761620414839890\n" "help.text" msgid "The measurement units recognized by CONVERT fall into 13 groups, which are listed below. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups." -msgstr "" +msgstr "The measurement units recognised by CONVERT fall into 13 groups, which are listed below. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups." #. x6USE #: func_convert.xhp @@ -58730,7 +58730,7 @@ "par_id14734320631377\n" "help.text" msgid "Range, Range2, ... and Criterion, Criterion2, ... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Range, Range2, ... and Criterion, Criterion2, ... must have the same size, otherwise the function returns err:502 - Invalid argument." #. ZuFZj #: func_countifs.xhp @@ -67406,7 +67406,7 @@ "par_id9210486\n" "help.text" 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 "Opens the Solver dialogue box. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods." #. wszcE #: solver.xhp @@ -67424,7 +67424,7 @@ "par_id501589912905479\n" "help.text" msgid "The dialog settings are retained until you close the current document." -msgstr "" +msgstr "The dialogue box settings are retained until you close the current document." #. GgVk7 #: solver.xhp @@ -67442,7 +67442,7 @@ "par_id8538773\n" "help.text" 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 "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimised." #. 9j2m7 #: solver.xhp @@ -67451,7 +67451,7 @@ "hd_id441589913036601\n" "help.text" msgid "Optimize results to" -msgstr "" +msgstr "Optimise results to" #. U8Ttv #: solver.xhp @@ -67541,7 +67541,7 @@ "par_id1939451\n" "help.text" msgid "Click the Shrink button to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box." -msgstr "" +msgstr "Click the Shrink button to shrink or restore the dialogue box. You can click or select cells in the sheet. You can enter a cell reference manually in the input box." #. CWWbZ #: solver.xhp @@ -67595,7 +67595,7 @@ "par_id2423780\n" "help.text" msgid "Opens the Solver Options dialog." -msgstr "" +msgstr "Opens the Solver Options dialogue box." #. jDGPG #: solver.xhp @@ -67604,7 +67604,7 @@ "par_id221589917833431\n" "help.text" msgid "The Solver Options dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." -msgstr "" +msgstr "The Solver Options dialogue box lets you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." #. 8YGDA #: solver.xhp @@ -67622,7 +67622,7 @@ "par_id2569658\n" "help.text" msgid "Click to solve the problem with the current settings. The dialog settings are retained until you close the current document." -msgstr "" +msgstr "Click to solve the problem with the current settings. The dialogue box settings are retained until you close the current document." #. VFnjv #: solver.xhp @@ -67676,7 +67676,7 @@ "par_id0603200910430845\n" "help.text" 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 "" +msgstr "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimised, the direction to go (minimisation, maximisation) 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." #. gJGz2 #: solver.xhp @@ -67685,7 +67685,7 @@ "par_id0603200910430821\n" "help.text" 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 "" +msgstr "There is also a list of constraints you can use to restrict the possible range of solutions or to penalise 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)." #. GFZqJ #: solver.xhp @@ -67739,7 +67739,7 @@ "par_id3163853\n" "help.text" msgid "Use the Options dialog to configure the solver engine." -msgstr "" +msgstr "Use the Options dialogue box to configure the solver engine." #. mFtPo #: solver_options.xhp @@ -67793,7 +67793,7 @@ "par_id130619\n" "help.text" msgid "Configure the current solver. In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value." -msgstr "" +msgstr "Configure the current solver. In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialogue box where you can change the value." #. DPYew #: solver_options.xhp @@ -67811,7 +67811,7 @@ "par_id6531266\n" "help.text" 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 "If the current entry in the Settings list box allows you to edit a value, you can click the Edit button. A dialogue box opens where you can change the value." #. JzS8w #: solver_options.xhp @@ -68045,7 +68045,7 @@ "par_id0523200917103832\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 "" +msgstr "If enabled, an additional dialogue box 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." #. 3LaZ7 #: solver_options_algo.xhp @@ -68054,7 +68054,7 @@ "par_id0503200417103780\n" "help.text" msgid "Size of Swarm" -msgstr "" +msgstr "Size of Swarm" #. UhBid #: solver_options_algo.xhp @@ -68207,7 +68207,7 @@ "par_id681590165847694\n" "help.text" msgid "Social Cognitive Optimization takes into account the human behavior of learning and sharing information. Each individual has access to a common library with knowledge shared between all individuals." -msgstr "" +msgstr "Social Cognitive Optimisation takes into account the human behaviour of learning and sharing information. Each individual has access to a common library with knowledge shared between all individuals." #. wovoy #: solver_options_algo.xhp @@ -68234,7 +68234,7 @@ "par_id0603200910401382\n" "help.text" msgid "Size of Library" -msgstr "" +msgstr "Size of Library" #. 4PmLg #: solver_options_algo.xhp @@ -68738,7 +68738,7 @@ "par_id1001240\n" "help.text" msgid "Produces the analysis of variance (ANOVA) of a given data set" -msgstr "" +msgstr "Produces the analysis of variance (ANOVA) of a given data set" #. w5pw6 #: statistics_anova.xhp @@ -69035,7 +69035,7 @@ "par_id1001740\n" "help.text" msgid "Calculates the correlation of two sets of numeric data." -msgstr "" +msgstr "Calculates the correlation of two sets of numeric data." #. WK8ke #: statistics_correlation.xhp @@ -69188,7 +69188,7 @@ "par_id1001940\n" "help.text" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "Calculates the covariance of two sets of numeric data." #. WgiEU #: statistics_covariance.xhp @@ -69323,7 +69323,7 @@ "par_id1000640\n" "help.text" msgid "Fill a table in the spreadsheet with the main statistical properties of the data set." -msgstr "" +msgstr "Fill a table in the spreadsheet with the main statistical properties of the data set." #. EAywA #: statistics_descriptive.xhp @@ -69539,7 +69539,7 @@ "par_id1002120\n" "help.text" msgid "Results in a smoothed data series" -msgstr "" +msgstr "Results in a smoothed data series" #. CA94C #: statistics_exposmooth.xhp @@ -69845,7 +69845,7 @@ "par_id1002500\n" "help.text" msgid "Calculates the moving average of a time series" -msgstr "" +msgstr "Calculates the moving average of a time series" #. yW3BR #: statistics_movingavg.xhp @@ -69980,7 +69980,7 @@ "par_id1001240\n" "help.text" msgid "Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables." -msgstr "" +msgstr "Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables." #. PDDGb #: statistics_regression.xhp @@ -70232,7 +70232,7 @@ "par_id1000030\n" "help.text" msgid "Create a table with data sampled from another table." -msgstr "" +msgstr "Create a table with data sampled from another table." #. vM6cz #: statistics_sampling.xhp @@ -70286,7 +70286,7 @@ "par_id711623249563655\n" "help.text" msgid "Picks exactly Sample Size lines of the source table in a random way." -msgstr "" +msgstr "Picks exactly Sample Size lines of the source table in a random way." #. ePB4n #: statistics_sampling.xhp @@ -70295,7 +70295,7 @@ "hd_id431623249579089\n" "help.text" msgid "Sample size" -msgstr "" +msgstr "Sample size" #. LtFAr #: statistics_sampling.xhp @@ -70304,7 +70304,7 @@ "par_id461623249594879\n" "help.text" msgid "Number of lines sampled from the source table. The Sample size is limited to the population size for all sampling methods without replacement." -msgstr "" +msgstr "Number of lines sampled from the source table. The Sample size is limited to the population size for all sampling methods without replacement." #. S4cc4 #: statistics_sampling.xhp @@ -70322,7 +70322,7 @@ "par_id191623249619384\n" "help.text" msgid "When checked, put back samples in population (source table) after draw. A sample can be drawn more than once and therefore a larger sample size than population is possible. This option is mutually exclusive with Keep order. When unchecked, a sample drawn is not put back to the population and sample size is limited to population size." -msgstr "" +msgstr "When checked, put back samples in population (source table) after draw. A sample can be drawn more than once and therefore a larger sample size than population is possible. This option is mutually exclusive with Keep order. When unchecked, a sample drawn is not put back to the population and sample size is limited to population size." #. QG5Yo #: statistics_sampling.xhp @@ -70376,7 +70376,7 @@ "par_id621623249692296\n" "help.text" msgid "The number of lines to skip periodically when sampling. The Period is limited to the population size." -msgstr "" +msgstr "The number of lines to skip periodically when sampling. The Period is limited to the population size." #. NjytZ #: statistics_sampling.xhp @@ -70430,7 +70430,7 @@ "par_id1003641\n" "help.text" msgid "Calculates the Chi-square test of a data sample." -msgstr "" +msgstr "Calculates the Chi-square test of a data sample." #. pdD2p #: statistics_test_chisqr.xhp @@ -70547,7 +70547,7 @@ "par_id1003240\n" "help.text" msgid "Calculates the F-Test of two data samples." -msgstr "" +msgstr "Calculates the F-Test of two data samples." #. ARt6p #: statistics_test_f.xhp @@ -70592,7 +70592,7 @@ "par_id1003280\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variable 1 range: The reference of the range of the first data series to analyse." #. qzYBv #: statistics_test_f.xhp @@ -70601,7 +70601,7 @@ "par_id1003290\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variable 2 range: The reference of the range of the second data series to analyse." #. MvvMT #: statistics_test_f.xhp @@ -70799,7 +70799,7 @@ "par_id1002820\n" "help.text" msgid "Calculates the paired t-Test of two data samples." -msgstr "" +msgstr "Calculates the paired t-Test of two data samples." #. EVZDy #: statistics_test_t.xhp @@ -70844,7 +70844,7 @@ "par_id1002860\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variable 1 range: The reference of the range of the first data series to analyse." #. 27zQ4 #: statistics_test_t.xhp @@ -70853,7 +70853,7 @@ "par_id1002870\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variable 2 range: The reference of the range of the second data series to analyse." #. 8D2Gp #: statistics_test_t.xhp @@ -70907,7 +70907,7 @@ "par_id1002930\n" "help.text" msgid "Hypothesized Mean Difference" -msgstr "" +msgstr "Hypothesised Mean Difference" #. tJarn #: statistics_test_t.xhp @@ -71069,7 +71069,7 @@ "par_id1003640\n" "help.text" msgid "Calculates the z-Test of two data samples." -msgstr "" +msgstr "Calculates the z-Test of two data samples." #. FeUKV #: statistics_test_z.xhp @@ -71105,7 +71105,7 @@ "par_id1003670\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variable 1 range: The reference of the range of the first data series to analyse." #. 6sDZb #: statistics_test_z.xhp @@ -71114,7 +71114,7 @@ "par_id1003680\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variable 2 range: The reference of the range of the second data series to analyse." #. SRfn5 #: statistics_test_z.xhp @@ -71168,7 +71168,7 @@ "par_id1003740\n" "help.text" msgid "Hypothesized Mean Difference" -msgstr "" +msgstr "Hypothesised Mean Difference" #. EyFTK #: statistics_test_z.xhp @@ -71330,7 +71330,7 @@ "par_id655232\n" "help.text" msgid "Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells." -msgstr "" +msgstr "Opens the Text to Columns dialogue box, where you enter settings to expand the contents of selected cells to multiple cells." #. YwdL2 #: text2columns.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/04.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/04.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/04.po 2022-07-15 19:12:51.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-11-24 12:02+0100\n" -"PO-Revision-Date: 2021-02-03 19:36+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1554887325.000000\n" #. NQkD7 @@ -32,7 +32,7 @@ "bm_id3145801\n" "help.text" msgid "spreadsheets; shortcut keys in shortcut keys; spreadsheets sheet ranges; filling" -msgstr "" +msgstr "spreadsheets; shortcut keys in shortcut keys; spreadsheets sheet ranges; filling" #. CkSXA #: 01020000.xhp @@ -194,7 +194,7 @@ "par_id3155095\n" "help.text" msgid "Moves the cursor to the last cell that contains values in the current row." -msgstr "" +msgstr "Moves the cursor to the last cell that contains values in the current row." #. FhvWD #: 01020000.xhp @@ -230,7 +230,7 @@ "par_id4155095\n" "help.text" msgid "Selects all cells from the current cell to the last cell that contains values in the current row." -msgstr "" +msgstr "Selects all cells from the current cell to the last cell that contains values in the current row." #. 8bBCM #: 01020000.xhp @@ -338,7 +338,7 @@ "par_id3154766\n" "help.text" msgid "Moves the cursor leftward to the start and end of cell blocks with data. If the cell to the left of the cursor is empty or the cell with the cursor is empty, the cursor moves leftward in the current row until it reaches the next cell with contents. If all cells in the same row to the left of the cursor are empty, the cursor moves to the first cell in the row." -msgstr "" +msgstr "Moves the cursor leftward to the start and end of cell blocks with data. If the cell to the left of the cursor is empty or the cell with the cursor is empty, the cursor moves leftward in the current row until it reaches the next cell with contents. If all cells in the same row to the left of the cursor are empty, the cursor moves to the first cell in the row." #. PgM3v #: 01020000.xhp @@ -356,7 +356,7 @@ "par_id3155593\n" "help.text" msgid "Moves the cursor rightward to the start and end of cell blocks with data. If the cell to the right of the cursor is empty or the cell with the cursor is empty, the cursor moves rightward in the current row until it reaches the next cell with contents. If all cells in the same row to the right of the cursor are empty, the cursor moves to the last cell in the row." -msgstr "" +msgstr "Moves the cursor rightward to the start and end of cell blocks with data. If the cell to the right of the cursor is empty or the cell with the cursor is empty, the cursor moves rightward in the current row until it reaches the next cell with contents. If all cells in the same row to the right of the cursor are empty, the cursor moves to the last cell in the row." #. R9tmv #: 01020000.xhp @@ -374,7 +374,7 @@ "par_id3153076\n" "help.text" msgid "Moves the cursor upward to the start and end of cell blocks with data. If the cell above the cursor is empty or the cell with the cursor is empty, the cursor moves upward in the current column until it reaches the next cell with contents. If all cells in the same column above the cursor are empty, the cursor moves to the first cell in the column." -msgstr "" +msgstr "Moves the cursor upward to the start and end of cell blocks with data. If the cell above the cursor is empty or the cell with the cursor is empty, the cursor moves upward in the current column until it reaches the next cell with contents. If all cells in the same column above the cursor are empty, the cursor moves to the first cell in the column." #. EamtM #: 01020000.xhp @@ -392,7 +392,7 @@ "par_id3149054\n" "help.text" msgid "Moves the cursor downward to the start and end of cell blocks with data. If the cell below the cursor is empty or the cell with the cursor is empty, the cursor moves downward in the current column until it reaches the next cell with contents. If all cells in the same column below the cursor are empty, the cursor moves to the last cell in the column." -msgstr "" +msgstr "Moves the cursor downward to the start and end of cell blocks with data. If the cell below the cursor is empty or the cell with the cursor is empty, the cursor moves downward in the current column until it reaches the next cell with contents. If all cells in the same column below the cursor are empty, the cursor moves to the last cell in the column." #. UQi4B #: 01020000.xhp @@ -410,7 +410,7 @@ "par_id3159258\n" "help.text" msgid "Selects all cells of the range created by the cursor movements using the CommandCtrl+Arrows key combinations. If used to select rows and columns together, a rectangular cell range is selected. If the cursor is in an empty cell, the selection will stretch from the current cell up to the first cell with value in the direction of the arrow pressed." -msgstr "" +msgstr "Selects all cells of the range created by the cursor movements using the CommandCtrl+Arrows key combinations. If used to select rows and columns together, a rectangular cell range is selected. If the cursor is in an empty cell, the selection will stretch from the current cell up to the first cell with value in the direction of the arrow pressed." #. F95ji #: 01020000.xhp @@ -644,7 +644,7 @@ "par_id3153935\n" "help.text" msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General and change the option in Press Enter to move selection." -msgstr "" +msgstr "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General and change the option in Press Enter to move selection." #. DbRBy #: 01020000.xhp @@ -653,7 +653,7 @@ "par_id351630625364216\n" "help.text" msgid "Enter (after copying cell contents)" -msgstr "" +msgstr "Enter (after copying cell contents)" #. 5PZQn #: 01020000.xhp @@ -662,7 +662,7 @@ "par_id681630625395135\n" "help.text" msgid "If cell contents have just been copied to the clipboard and no additional editing has been done in the current file, then pressing Enter will paste clipboard contents to the current cursor position." -msgstr "" +msgstr "If cell contents have just been copied to the clipboard and no additional editing has been done in the current file, then pressing Enter will paste clipboard contents to the current cursor position." #. 2MKS8 #: 01020000.xhp @@ -671,7 +671,7 @@ "par_id521630625780621\n" "help.text" msgid "Shift+Enter" -msgstr "" +msgstr "Shift+Enter" #. dAv3b #: 01020000.xhp @@ -680,7 +680,7 @@ "par_id541630625783264\n" "help.text" msgid "If the clipboard contains cell contents and no editing has been done in the file, then Shift+Enter has the same behavior as Enter and pastes clipboard contents to the current cursor position." -msgstr "" +msgstr "If the clipboard contains cell contents and no editing has been done in the file, then Shift+Enter has the same behaviour as Enter and pastes clipboard contents to the current cursor position." #. so8sW #: 01020000.xhp @@ -689,7 +689,7 @@ "par_id921630625968749\n" "help.text" msgid "If no cells are selected, Shift+Enter moves the cursor to the opposite direction defined in the option Press Enter to move selection found in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." -msgstr "" +msgstr "If no cells are selected, Shift+Enter moves the cursor to the opposite direction defined in the option Press Enter to move selection found in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." #. f4gCc #: 01020000.xhp @@ -698,7 +698,7 @@ "par_id951630626229215\n" "help.text" msgid "If a range of cells is selected, Shift+Enter moves the cursor inside the current selection to the opposite direction defined in the option Press Enter to move selection." -msgstr "" +msgstr "If a range of cells is selected, Shift+Enter moves the cursor inside the current selection to the opposite direction defined in the option Press Enter to move selection." #. ESQwM #: 01020000.xhp @@ -734,7 +734,7 @@ "bm_id3143661\n" "help.text" msgid "spreadsheets; duplicate spreadsheets; quick rename" -msgstr "" +msgstr "spreadsheets; duplicate spreadsheets; quick rename" #. AxVu3 #: 01020000.xhp @@ -743,7 +743,7 @@ "hd_id271637246984980\n" "help.text" msgid "Copying and Renaming Sheets" -msgstr "" +msgstr "Copying and Renaming Sheets" #. dNyPQ #: 01020000.xhp @@ -752,7 +752,7 @@ "par_id781637247029711\n" "help.text" msgid "The sheet tabs used to navigate between sheets can be clicked in combination with keyboard keys to perform the following operations:" -msgstr "" +msgstr "The sheet tabs used to navigate between sheets can be clicked in combination with keyboard keys to perform the following operations:" #. DDZy3 #: 01020000.xhp @@ -761,7 +761,7 @@ "par_id741637247123788\n" "help.text" msgid "Shortcut Keys" -msgstr "" +msgstr "Shortcut Keys" #. ZB9vf #: 01020000.xhp @@ -770,7 +770,7 @@ "par_id731637247123788\n" "help.text" msgid "Effect" -msgstr "" +msgstr "Effect" #. 9SNqY #: 01020000.xhp @@ -779,7 +779,7 @@ "par_id211637247123788\n" "help.text" msgid "CommandCtrl + Drag sheet tab" -msgstr "" +msgstr "CommandCtrl + Drag sheet tab" #. F7Wju #: 01020000.xhp @@ -788,7 +788,7 @@ "par_id981637247123788\n" "help.text" msgid "Creates a copy of the sheet whose tab was clicked. The copied sheet is placed at the position where the mouse button was released." -msgstr "" +msgstr "Creates a copy of the sheet whose tab was clicked. The copied sheet is placed at the position where the mouse button was released." #. 4BauE #: 01020000.xhp @@ -797,7 +797,7 @@ "par_id211637247123024\n" "help.text" msgid "OptionAlt + Click sheet tab" -msgstr "" +msgstr "OptionAlt + Click sheet tab" #. DqgFn #: 01020000.xhp @@ -806,7 +806,7 @@ "par_id981637247123114\n" "help.text" msgid "Makes the sheet name editable. Edit the sheet name and press Enter when finished." -msgstr "" +msgstr "Makes the sheet name editable. Edit the sheet name and press Enter when finished." #. TDGrd #: 01020000.xhp @@ -869,7 +869,7 @@ "par_id3148568\n" "help.text" msgid "With a cell selected, press F2 to open cell contents for editing. If the cell contains a formula, use arrow keys to navigate the sheet to easily enter range addresses into the formula." -msgstr "" +msgstr "With a cell selected, press F2 to open cell contents for editing. If the cell contains a formula, use arrow keys to navigate the sheet to easily enter range addresses into the formula." #. KPNsf #: 01020000.xhp @@ -878,7 +878,7 @@ "par_id381629750112725\n" "help.text" msgid "Press F2 again to enable the use of arrow keys to move the cursor in the formula text." -msgstr "" +msgstr "Press F2 again to enable the use of arrow keys to move the cursor in the formula text." #. YE2ga #: 01020000.xhp @@ -887,7 +887,7 @@ "par_id481629750230372\n" "help.text" msgid "Each additional use of the F2 shortcut switches between the two states previously described." -msgstr "" +msgstr "Each additional use of the F2 shortcut switches between the two states previously described." #. Dzhco #: 01020000.xhp @@ -896,7 +896,7 @@ "par_id461629750358215\n" "help.text" msgid "Some dialog boxes have input fields with a Shrink button. Pressing F2 with the cursor inside such field causes the Shrink command to be executed." -msgstr "" +msgstr "Some dialogue boxes have input fields with a Shrink button. Pressing F2 with the cursor inside such field causes the Shrink command to be executed." #. seNCx #: 01020000.xhp @@ -1193,7 +1193,7 @@ "hd_id3149279\n" "help.text" msgid " Command+T F11 " -msgstr "" +msgstr " Command+T F11 " #. edNSJ #: 01020000.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -446,7 +446,7 @@ "par_idN106CE\n" "help.text" msgid "Select the range of cells to which the AutoFormat style is to be applied. The range must be at least 3 columns and 3 rows in size." -msgstr "" +msgstr "Select the range of cells to which the AutoFormat style is to be applied. The range must be at least 3 columns and 3 rows in size." #. 6GCsB #: autoformat.xhp @@ -455,7 +455,7 @@ "par_idN106D5\n" "help.text" msgid "Go to Format - AutoFormat Styles to open the AutoFormat dialog." -msgstr "" +msgstr "Go to Format - AutoFormat Styles to open the AutoFormat dialogue box." #. CXiex #: autoformat.xhp @@ -482,7 +482,7 @@ "par_idN10715\n" "help.text" msgid "Click OK to apply the AutoFormat style and close the dialog." -msgstr "" +msgstr "Click OK to apply the AutoFormat style and close the dialogue box." #. EAyCv #: autoformat.xhp @@ -545,7 +545,7 @@ "par_idN10760\n" "help.text" msgid "In the Name box of the Add AutoFormat dialog, enter a name for the new AutoFormat style." -msgstr "" +msgstr "In the Name box of the Add AutoFormat dialogue box, enter a name for the new AutoFormat style." #. pMxn9 #: autoformat.xhp @@ -554,7 +554,7 @@ "par_idN107C3\n" "help.text" msgid "Click OK and close the dialog." -msgstr "" +msgstr "Click OK and close the dialogue box." #. HJiDi #: autoformat.xhp @@ -2066,7 +2066,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed, viewed or printed according to your settings in the Format - Cells dialog, choose Tools - Protect Sheet." -msgstr "" +msgstr "To protect the cells from being changed, viewed or printed according to your settings in the Format - Cells dialogue box, choose Tools - Protect Sheet." #. doYSo #: cell_protect.xhp @@ -2858,7 +2858,7 @@ "par_id3159156\n" "help.text" msgid "Using the menu command Format - Conditional - Condition, the dialog allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format." -msgstr "" +msgstr "Using the menu command Format - Conditional - Condition, the dialogue box allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format." #. SbhJy #: cellstyle_conditional.xhp @@ -3065,7 +3065,7 @@ "par_id3156016\n" "help.text" msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the Shrink icon." -msgstr "" +msgstr "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialogue box using the Shrink icon." #. YEqsh #: cellstyle_conditional.xhp @@ -3110,7 +3110,7 @@ "par_id3153801\n" "help.text" msgid "Choose the Format - Conditional - Condition command to open the corresponding dialog." -msgstr "" +msgstr "Choose the Format - Conditional - Condition command to open the corresponding dialogue box." #. oaUQo #: cellstyle_conditional.xhp @@ -3173,7 +3173,7 @@ "par_id3147298\n" "help.text" msgid "Choose Edit - Paste Special - Paste Special. The Paste Special dialog appears." -msgstr "" +msgstr "Choose Edit - Paste Special - Paste Special. The Paste Special dialogue box appears." #. KEnNM #: cellstyle_conditional.xhp @@ -3290,7 +3290,7 @@ "par_id881607972030094\n" "help.text" msgid "Images are inserted in a Calc spreadsheet anchored to cells by default and do not resize when the cell is moved." -msgstr "" +msgstr "Images are inserted in a Calc spreadsheet anchored to cells by default and do not resize when the cell is moved." #. gFthU #: change_image_anchor.xhp @@ -3317,7 +3317,7 @@ "par_id871607809971823\n" "help.text" msgid "To Cell (resize with cell): the image will move along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor." -msgstr "" +msgstr "To Cell (resize with cell): the image will move along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor." #. DGAiK #: change_image_anchor.xhp @@ -3353,7 +3353,7 @@ "par_id761607809520625\n" "help.text" msgid "The original size of the image and cell is preserved while pasting the entire row or entire column for both To Cell and To Cell (resize with cell) options." -msgstr "" +msgstr "The original size of the image and cell is preserved while pasting the entire row or entire column for both To Cell and To Cell (resize with cell) options." #. G5Dfz #: consolidate.xhp @@ -4640,7 +4640,7 @@ "par_id3147264\n" "help.text" msgid "Choose Insert - Pivot Table. The Select Source dialog appears. Choose Current selection and confirm with OK. The table headings are shown as buttons in the Pivot Table dialog. Drag these buttons as required and drop them into the layout areas \"Filters\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." -msgstr "" +msgstr "Choose Insert - Pivot Table. The Select Source dialogue box appears. Choose Current selection and confirm with OK. The table headings are shown as buttons in the Pivot Table dialogue box. Drag these buttons as required and drop them into the layout areas \"Filters\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." #. XR8Sd #: datapilot_createtable.xhp @@ -4721,7 +4721,7 @@ "par_id3154020\n" "help.text" msgid "Exit the Pivot Table dialog by pressing OK. A Filter button will now be inserted, or a page button for every data field that you dropped in the Filters area. The pivot table is inserted further down." -msgstr "" +msgstr "Exit the Pivot Table dialogue box by clicking OK. A Filter button will now be inserted, or a page button for every data field that you dropped in the Filters area. The pivot table is inserted further down." #. dJsd8 #: datapilot_deletetable.xhp @@ -4820,7 +4820,7 @@ "par_id1648915\n" "help.text" msgid "In the Pivot Table dialog, you can drag a button to the Filters area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." -msgstr "" +msgstr "In the Pivot Table dialogue box, you can drag a button to the Filters area to create a button and a list box on top of the pivot table. The list box can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." #. AeGto #: datapilot_edittable.xhp @@ -9320,7 +9320,7 @@ "par_id111567772433803\n" "help.text" msgid "The text to number conversion can be customized in the Detailed Calculation Settings option." -msgstr "" +msgstr "The text to number conversion can be customised in the Detailed Calculation Settings option." #. WE8wt #: numbers_text.xhp @@ -10733,7 +10733,7 @@ "par_id31630021517873\n" "help.text" msgid "Go to Data - More Filters - Standard Filter. This opens the Standard Filter dialog." -msgstr "" +msgstr "Go to Data - More Filters - Standard Filter. This opens the Standard Filter dialogue box." #. EVEzq #: remove_duplicates.xhp @@ -10859,7 +10859,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 "Double-click the sheet tab or open its context menu and choose Rename Sheet. A dialogue box appears where you can enter a new name." #. GtGtQ #: rename_table.xhp @@ -11624,7 +11624,7 @@ "par_id3153142\n" "help.text" msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the Advanced Filter dialog by choosing Data - More Filters - Advanced Filter, and define the filter conditions." -msgstr "" +msgstr "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the Advanced Filter dialogue box by choosing Data - More Filters - Advanced Filter, and define the filter conditions." #. 2F7wd #: specialfilter.xhp @@ -12776,7 +12776,7 @@ "par_id3150304\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - Basic." -msgstr "" +msgstr "Choose Tools - Macros - Organise Macros - Basic." #. HZciB #: userdefined_function.xhp @@ -12812,7 +12812,7 @@ "par_id3150517\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - Basic ." -msgstr "" +msgstr "Choose Tools - Macros - Organise Macros - Basic ." #. oTBX8 #: userdefined_function.xhp @@ -13550,7 +13550,7 @@ "par_id571629155308959\n" "help.text" msgid "Wildcards are special characters that can be used in search strings that are passed as arguments to some Calc functions. They can also be used to define search criteria in the Find & Replace dialog. The use of wildcards enables the definition of more advanced search parameters with a single search string." -msgstr "" +msgstr "Wildcards are special characters that can be used in search strings that are passed as arguments to some Calc functions. They can also be used to define search criteria in the Find & Replace dialogue box. The use of wildcards enables the definition of more advanced search parameters with a single search string." #. vQrdp #: wildcards.xhp @@ -13568,7 +13568,7 @@ "par_id551629156504794\n" "help.text" msgid "To make sure wildcards are supported, go to %PRODUCTNAME - Preferences - %PRODUCTNAME Calc - CalculateTools - Options - %PRODUCTNAME Calc - Calculate and check if the option Enable wildcards in formulas is selected. Note that you can use this dialog to switch to regular expressions by choosing Enable regular expressions in formulas or choose to support neither wildcards nor regular expressions." -msgstr "" +msgstr "To make sure wildcards are supported, go to %PRODUCTNAME - Preferences - %PRODUCTNAME Calc - CalculateTools - Options - %PRODUCTNAME Calc - Calculate and check if the option Enable wildcards in formulas is selected. Note that you can use this dialogue box to switch to regular expressions by choosing Enable regular expressions in formulae or choose to support neither wildcards nor regular expressions." #. BHJzs #: wildcards.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2020-11-19 19:35+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" #. ugSgG #: 02000000.xhp @@ -166,7 +166,7 @@ "hd_id3153379\n" "help.text" msgid "Query Design" -msgstr "" +msgstr "Query Design" #. 3JCfK #: 02000000.xhp @@ -184,7 +184,7 @@ "hd_id3153968\n" "help.text" msgid "Query Through Several Tables" -msgstr "" +msgstr "Query Through Several Tables" #. ASeVi #: 02000000.xhp @@ -3127,7 +3127,7 @@ "par_id3148520\n" "help.text" msgid "Allows you to enter and confirm a new or changed password. If you have defined a new user, enter the user name in this dialog." -msgstr "" +msgstr "Allows you to enter and confirm a new or changed password. If you have defined a new user, enter the user name in this dialogue box." #. Pyimk #: 05000003.xhp @@ -3163,7 +3163,7 @@ "par_id3147576\n" "help.text" msgid "Enter the old password here. This field is visible when you have opened the dialog via Change password." -msgstr "" +msgstr "Enter the old password here. This field is visible when you have opened the dialogue box via Change password." #. 99GH9 #: 05000003.xhp @@ -3532,7 +3532,7 @@ "par_id3154146\n" "help.text" msgid "This button opens the Format Field dialog." -msgstr "" +msgstr "This button opens the Format Field dialogue box." #. CgbCE #: 05010000.xhp @@ -3577,7 +3577,7 @@ "par_id3166460\n" "help.text" msgid "The Index Design dialog allows you to define and edit the indexes for the current table." -msgstr "" +msgstr "The Index Design dialogue box allows you to define and edit the indexes for the current table." #. N85Yq #: 05010100.xhp @@ -3595,7 +3595,7 @@ "par_id3155342\n" "help.text" msgid "Displays a list of available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialog." -msgstr "" +msgstr "Displays a list of available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialogue box." #. GNgfV #: 05010100.xhp @@ -3613,7 +3613,7 @@ "par_id3150085\n" "help.text" msgid "Creates a new index." -msgstr "" +msgstr "Creates a new index." #. CraTD #: 05010100.xhp @@ -3631,7 +3631,7 @@ "par_id3154860\n" "help.text" msgid "Deletes the current index." -msgstr "" +msgstr "Deletes the current index." #. qxQaG #: 05010100.xhp @@ -3649,7 +3649,7 @@ "par_id3148685\n" "help.text" msgid "Renames the current index." -msgstr "" +msgstr "Renames the current index." #. h5vTM #: 05010100.xhp @@ -3667,7 +3667,7 @@ "par_id3148563\n" "help.text" msgid "Saves the current index in the data source." -msgstr "" +msgstr "Saves the current index in the data source." #. JxS8c #: 05010100.xhp @@ -3685,7 +3685,7 @@ "par_id3154758\n" "help.text" msgid "Resets the current index to the setting that it had when the dialog was started." -msgstr "" +msgstr "Resets the current index to the setting that it had when the dialogue box was started." #. kpk89 #: 05010100.xhp @@ -3703,7 +3703,7 @@ "par_id3154938\n" "help.text" msgid "As soon as you change a detail of the current index and then select another index, the change is immediately passed on to the data source. You can only leave the dialog, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the Reset Current Index icon." -msgstr "" +msgstr "As soon as you change a detail of the current index and then select another index, the change is immediately passed on to the data source. You can only leave the dialogue box, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the Reset Current Index icon." #. rEFpa #: 05010100.xhp @@ -3721,7 +3721,7 @@ "par_id3156282\n" "help.text" msgid "Specifies whether the current index allows only unique values. Checking the Unique option prevents duplicate data from being entered in the field and ensures data integrity." -msgstr "" +msgstr "Specifies whether the current index allows only unique values. Checking the Unique option prevents duplicate data from being entered in the field and ensures data integrity." #. SFD2p #: 05010100.xhp @@ -3793,7 +3793,7 @@ "par_id3154190\n" "help.text" msgid "Closes the dialog." -msgstr "" +msgstr "Closes the dialogue box." #. n4gFz #: 05020000.xhp @@ -3856,7 +3856,7 @@ "par_id3149235\n" "help.text" msgid "When you choose Tools - Relationships, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the Add Tables icon. The Add Tables dialog opens in which you can select the tables with which to create a relation." -msgstr "" +msgstr "When you choose Tools - Relationships, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the Add Tables icon. The Add Tables dialogue box opens in which you can select the tables with which to create a relation." #. krxTw #: 05020000.xhp @@ -3946,7 +3946,7 @@ "par_id3149984\n" "help.text" msgid "Alternatively, you can also click the New Relation icon in the top area of the relation field and define the relation between two tables in the Relations dialog." -msgstr "" +msgstr "Alternatively, you can also click the New Relation icon in the top area of the relation field and define the relation between two tables in the Relations dialogue box." #. yTadX #: 05020000.xhp @@ -3964,7 +3964,7 @@ "par_id3155856\n" "help.text" msgid "By double-clicking a connection line, you can assign certain properties to the relation. The Relations dialog opens." -msgstr "" +msgstr "By double-clicking a connection line, you can assign certain properties to the relation. The Relations dialogue box opens." #. zaiku #: 05020100.xhp @@ -4027,7 +4027,7 @@ "par_id3153880\n" "help.text" msgid "This is where the two related tables are listed. If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog." -msgstr "" +msgstr "This is where the two related tables are listed. If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialogue box." #. 4UCC7 #: 05020100.xhp @@ -4036,7 +4036,7 @@ "par_id3154047\n" "help.text" msgid "If you opened the Relations dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified." -msgstr "" +msgstr "If you opened the Relations dialogue box for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified." #. VBeNf #: 05020100.xhp @@ -4054,7 +4054,7 @@ "par_id3159157\n" "help.text" msgid "Defines the key fields for the relation." -msgstr "" +msgstr "Defines the key fields for the relation." #. tG7Wy #: 05020100.xhp @@ -4063,7 +4063,7 @@ "par_id3149235\n" "help.text" msgid "The names of the tables selected for the link appear here as column names. If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row." -msgstr "" +msgstr "The names of the tables selected for the link appear here as column names. If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row." #. ECqps #: 05020100.xhp @@ -4099,7 +4099,7 @@ "par_id3152360\n" "help.text" msgid "Specifies that any change made to a primary key does not affect other external key fields." -msgstr "" +msgstr "Specifies that any change made to a primary key does not affect other external key fields." #. UzK5q #: 05020100.xhp @@ -4117,7 +4117,7 @@ "par_id3154073\n" "help.text" msgid "Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update)." -msgstr "" +msgstr "Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update)." #. xydLE #: 05020100.xhp @@ -4135,7 +4135,7 @@ "par_id3154123\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty." -msgstr "" +msgstr " If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty." #. FGxMC #: 05020100.xhp @@ -4153,7 +4153,7 @@ "par_id3151041\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties." -msgstr "" +msgstr " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties." #. AvWBL #: 05020100.xhp @@ -4189,7 +4189,7 @@ "par_id3145785\n" "help.text" msgid "Specifies that the deletion of a primary key will not have any effect on other external key fields." -msgstr "" +msgstr "Specifies that the deletion of a primary key will not have any effect on other external key fields." #. hFmB4 #: 05020100.xhp @@ -4207,7 +4207,7 @@ "par_id3155309\n" "help.text" msgid "Specifies that all external key fields will be deleted if you delete the corresponding primary key field." -msgstr "" +msgstr "Specifies that all external key fields will be deleted if you delete the corresponding primary key field." #. ZaNTh #: 05020100.xhp @@ -4234,7 +4234,7 @@ "par_id3153363\n" "help.text" msgid "If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields." -msgstr "" +msgstr "If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields." #. 474LG #: 05020100.xhp @@ -4252,7 +4252,7 @@ "par_id3154320\n" "help.text" msgid "If you delete the corresponding primary key, a set value will be set to all external key fields." -msgstr "" +msgstr "If you delete the corresponding primary key, a set value will be set to all external key fields." #. x8A6E #: 05030000.xhp @@ -4288,7 +4288,7 @@ "par_id3155535\n" "help.text" msgid "Dragging-and-dropping a query or table opens the Copy Table dialog, which allows you to define the options for copying a query or a table." -msgstr "" +msgstr "Dragging-and-dropping a query or table opens the Copy Table dialogue box, which allows you to define the options for copying a query or a table." #. CzRJq #: 05030000.xhp @@ -4297,7 +4297,7 @@ "par_id3148539\n" "help.text" msgid "With the Copy Table dialog you can:" -msgstr "" +msgstr "With the Copy Table dialogue box you can:" #. G45TE #: 05030000.xhp @@ -4351,7 +4351,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 "You can copy a table by dragging and dropping the table onto the table area of a database file window. The Copy table dialogue box appears." #. ciK5F #: 05030100.xhp @@ -4468,7 +4468,7 @@ "par_id3156117\n" "help.text" msgid "Match the data field names in the Copy Table dialog on the Apply Columns page." -msgstr "" +msgstr "Match the data field names in the Copy Table dialogue box on the Apply Columns page." #. toArF #: 05030100.xhp @@ -4477,7 +4477,7 @@ "par_id3153252\n" "help.text" msgid "If the data cannot be attached, you will see a list of fields in the Column Info dialog whose data cannot be copied. If you confirm this dialog with OK, only the data that does not appear in the list will be attached." -msgstr "" +msgstr "If the data cannot be attached, you will see a list of fields in the Column Info dialogue box whose data cannot be copied. If you confirm this dialogue box with OK, only the data that does not appear in the list will be attached." #. 8JYz8 #: 05030100.xhp @@ -4567,7 +4567,7 @@ "par_id3147143\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Apply columns dialog is the second window of the Copy table dialog." -msgstr "" +msgstr "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Apply columns dialogue box is the second window of the Copy table dialogue box." #. 8r9yc #: 05030200.xhp @@ -4666,7 +4666,7 @@ "par_id3150247\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Type formatting dialog is the third window of the Copy table dialog." -msgstr "" +msgstr "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The Type formatting dialogue box is the third window of the Copy table dialogue box." #. mnHDq #: 05030300.xhp @@ -4801,7 +4801,7 @@ "par_id3153561\n" "help.text" msgid "$[officename] can automatically recognize field contents when you copy database tables by drag and drop." -msgstr "" +msgstr "$[officename] can automatically recognise field contents when you copy database tables by drag and drop." #. XbBEn #: 05030300.xhp @@ -4864,7 +4864,7 @@ "par_id3156027\n" "help.text" msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. If you select the Attach data check box on the first page of the Copy table dialog, the Assign columns dialog opens as the second window. You can use this dialog to map the contents of a data field in the source table to a different data field in the destination table." -msgstr "" +msgstr "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. If you select the Attach data check box on the first page of the Copy table dialogue box, the Assign columns dialogue box opens as the second window. You can use this dialogue box to map the contents of a data field in the source table to a different data field in the destination table." #. fGrH7 #: 05030400.xhp @@ -5386,7 +5386,7 @@ "par_id3145119\n" "help.text" msgid "Prevents an unauthorized user from accessing the database. You only need to enter the password once per session." -msgstr "" +msgstr "Prevents an unauthorised user from accessing the database. You only need to enter the password once per session." #. QWAfC #: 11020000.xhp @@ -5422,7 +5422,7 @@ "par_id3151245\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database. Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database. Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." #. xBEZv #: 11020000.xhp @@ -5665,7 +5665,7 @@ "par_id3161656\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "" +msgstr "Opens the Indexes dialogue box, where you can organise the table indexes in the current dBASE database." #. vMA8w #: 11030100.xhp @@ -5692,7 +5692,7 @@ "par_id3150247\n" "help.text" msgid "Lets you organize dBASE database indexes. An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the Indexes tab page." -msgstr "" +msgstr "Lets you organise dBASE database indexes. An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the Indexes tab page." #. Aj5Uz #: 11030100.xhp @@ -5710,7 +5710,7 @@ "par_id3152551\n" "help.text" msgid "Select the database table that you want to index." -msgstr "" +msgstr "Select the database table that you want to index." #. eyouE #: 11030100.xhp @@ -5728,7 +5728,7 @@ "par_id3143267\n" "help.text" msgid "Lists the current indexes for the selected database table. To remove an index from the list, click the index, and then click the right arrow." -msgstr "" +msgstr "Lists the current indexes for the selected database table. To remove an index from the list, click the index, and then click the right arrow." #. scWXw #: 11030100.xhp @@ -5746,7 +5746,7 @@ "par_id3151110\n" "help.text" msgid "Lists the available indexes that you can assign to a table. To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes." -msgstr "" +msgstr "Lists the available indexes that you can assign to a table. To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes." #. U4FQh #: 11030100.xhp @@ -5764,7 +5764,7 @@ "par_id3150984\n" "help.text" msgid "Moves the selected index to the Table Indexes list." -msgstr "" +msgstr "Moves the selected index to the Table Indexes list." #. FPRFh #: 11030100.xhp @@ -5782,7 +5782,7 @@ "par_id3145315\n" "help.text" msgid "Moves all of the free indexes to the Table Indexes list." -msgstr "" +msgstr "Moves all of the free indexes to the Table Indexes list." #. Ba8Z9 #: 11030100.xhp @@ -5800,7 +5800,7 @@ "par_id3149795\n" "help.text" msgid "Moves the selected table indexes to the Free Indexes list." -msgstr "" +msgstr "Moves the selected table indexes to the Free Indexes list." #. sAASQ #: 11030100.xhp @@ -5818,7 +5818,7 @@ "par_id3151245\n" "help.text" msgid "Moves all of the table indexes to the Free Indexes list." -msgstr "" +msgstr "Moves all of the table indexes to the Free Indexes list." #. LQcMC #: 11080000.xhp @@ -5854,7 +5854,7 @@ "par_id3154288\n" "help.text" msgid "Opens a dialog where you can enter an SQL command for administering a database." -msgstr "" +msgstr "Opens a dialogue box where you can enter an SQL command for administering a database." #. jhBMm #: 11080000.xhp @@ -5863,7 +5863,7 @@ "par_id3147275\n" "help.text" msgid "You can only enter administration commands in this dialog, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here." -msgstr "" +msgstr "You can only enter administration commands in this dialogue box, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here." #. JZmCZ #: 11080000.xhp @@ -5890,7 +5890,7 @@ "par_id3147618\n" "help.text" msgid "Enter the SQL administration command that you want to run." -msgstr "" +msgstr "Enter the SQL administration command that you want to run." #. 5DFEP #: 11080000.xhp @@ -5935,7 +5935,7 @@ "par_id3149045\n" "help.text" msgid "Lists the previously executed SQL commands. To run a command again, click the command, and then click Run." -msgstr "" +msgstr "Lists the previously executed SQL commands. To run a command again, click the command, and then click Run." #. AvXck #: 11080000.xhp @@ -5953,7 +5953,7 @@ "par_id3151054\n" "help.text" msgid "Displays the results, including errors, of the SQL command that you ran." -msgstr "" +msgstr "Displays the results, including errors, of the SQL command that you ran." #. BUpxX #: 11080000.xhp @@ -5971,7 +5971,7 @@ "par_id3151210\n" "help.text" msgid "Runs the command that you entered in the Command to execute box." -msgstr "" +msgstr "Runs the command that you entered in the Command to execute box." #. 93Xfs #: 11090000.xhp @@ -6646,7 +6646,7 @@ "par_idN10554\n" "help.text" msgid "The database file window organizes the tables, views, queries, and reports of a database in %PRODUCTNAME." -msgstr "" +msgstr "The database file window organises the tables, views, queries, and reports of a database in %PRODUCTNAME." #. 3KEBA #: dabadoc.xhp @@ -6817,7 +6817,7 @@ "par_idN10651\n" "help.text" msgid "Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." #. VoZcz #: dabapropadd.xhp @@ -6961,7 +6961,7 @@ "par_idN10725\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "" +msgstr "Opens the Indexes dialogue box, where you can organise the table indexes in the current dBASE database." #. zGqEv #: dabapropadd.xhp @@ -7069,7 +7069,7 @@ "par_idN10803\n" "help.text" msgid "Select the format for the text file. The extension that you select affects some of the default settings in this dialog." -msgstr "" +msgstr "Select the format for the text file. The extension that you select affects some of the default settings in this dialogue box." #. KEi9S #: dabapropcon.xhp @@ -7123,7 +7123,7 @@ "par_idN1056C\n" "help.text" msgid "For example, you can use the wizard to open a database file that is in a format that is usually not recognized by an installed database." -msgstr "" +msgstr "For example, you can use the wizard to open a database file that is in a format that is usually not recognised by an installed database." #. GLS4A #: dabapropcon.xhp @@ -7231,7 +7231,7 @@ "par_idN10595\n" "help.text" msgid "Opens a dialog where you can select a file or a directory." -msgstr "" +msgstr "Opens a dialogue box where you can select a file or a directory." #. ASumy #: dabapropgen.xhp @@ -7717,7 +7717,7 @@ "par_idN105FD\n" "help.text" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." -msgstr "" +msgstr "Select to open a database file from a list of recently used files or from a file selection dialogue box." #. HNAd8 #: dabawiz01.xhp @@ -7753,7 +7753,7 @@ "par_idN10633\n" "help.text" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Opens a file selection dialogue box where you can select a database file. Click Open or OK in the file selection dialogue box to open the file immediately and to exit the wizard." #. rLwWT #: dabawiz01.xhp @@ -8059,7 +8059,7 @@ "par_idN1054F\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Click to open a file selection dialogue box." #. gjtnv #: dabawiz02ado.xhp @@ -8212,7 +8212,7 @@ "par_idN1058C\n" "help.text" msgid "Click to open a database selection dialog." -msgstr "" +msgstr "Click to open a database selection dialogue box." #. Bi3az #: dabawiz02ado.xhp @@ -8284,7 +8284,7 @@ "par_idN10575\n" "help.text" msgid "Open a path selection dialog." -msgstr "" +msgstr "Open a path selection dialogue box." #. n9AxK #: dabawiz02jdbc.xhp @@ -8878,7 +8878,7 @@ "par_idN1055D\n" "help.text" msgid "Click to open an ODBC data source selection dialog:" -msgstr "" +msgstr "Click to open an ODBC data source selection dialogue box:" #. 48ubg #: dabawiz02odbc.xhp @@ -9121,7 +9121,7 @@ "par_idN10549\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Click to open a file selection dialogue box." #. JAmAi #: dabawiz02spreadsheet.xhp @@ -9202,7 +9202,7 @@ "par_idN1056F\n" "help.text" msgid "Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database." -msgstr "" +msgstr "Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognised as files of the text database." #. DwHAY #: dabawiz02text.xhp @@ -9220,7 +9220,7 @@ "par_idN10576\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Click to open a file selection dialogue box." #. MmGr4 #: dabawiz02text.xhp @@ -9859,7 +9859,7 @@ "par_idN105E9\n" "help.text" msgid "Opens the Database Properties dialog." -msgstr "" +msgstr "Opens the Database Properties dialogue box." #. CFEiW #: menuedit.xhp @@ -9895,7 +9895,7 @@ "par_idN105F7\n" "help.text" msgid "Opens the Advanced Properties dialog." -msgstr "" +msgstr "Opens the Advanced Properties dialogue box." #. 7BAav #: menufile.xhp @@ -9940,7 +9940,7 @@ "par_idN105C4\n" "help.text" msgid "Saves the current database file, query, form or report. For the database file, you see the file save dialog. For the other objects, you see the Save dialog." -msgstr "" +msgstr "Saves the current database file, query, form or report. For the database file, you see the file save dialogue box. For the other objects, you see the Save dialogue box." #. FAvuD #: menufile.xhp @@ -9958,7 +9958,7 @@ "par_idN105D9\n" "help.text" msgid "Saves the current database file with another name. In the file save dialog, select a path and file name to save." -msgstr "" +msgstr "Saves the current database file with another name. In the file save dialogue box, select a path and file name to save." #. s3muV #: menufile.xhp @@ -10075,7 +10075,7 @@ "par_idN1054B\n" "help.text" msgid "In this dialog, you can specify the position and name of a form that you save within a database file. The dialog opens automatically when you save a form the first time." -msgstr "" +msgstr "In this dialogue box, you can specify the position and name of a form that you save within a database file. The dialogue box opens automatically when you save a form the first time." #. CDw7n #: menufilesave.xhp @@ -10318,7 +10318,7 @@ "par_idN1060F\n" "help.text" msgid "Opens a dialog where you can save a new folder in the database file." -msgstr "" +msgstr "Opens a dialogue box where you can save a new folder in the database file." #. eMZgB #: menutools.xhp @@ -10381,7 +10381,7 @@ "par_idN1058E\n" "help.text" msgid "Opens the User Administration dialog if the database supports this feature." -msgstr "" +msgstr "Opens the User Administration dialogue box if the database supports this feature." #. VThyT #: menutools.xhp @@ -10399,7 +10399,7 @@ "par_id3153252\n" "help.text" msgid "Opens the Table Filter dialog where you can specify which tables of the database to show or to hide." -msgstr "" +msgstr "Opens the Table Filter dialogue box where you can specify which tables of the database to show or to hide." #. YTER3 #: menutools.xhp @@ -10444,7 +10444,7 @@ "par_idN105C0\n" "help.text" msgid "Opens the SQL dialog where you can enter SQL statements." -msgstr "" +msgstr "Opens the SQL dialogue box where you can enter SQL statements." #. CqteP #: menuview.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw/01.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2020-12-28 07:53+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1563447592.000000\n" #. ybhKD @@ -473,7 +473,7 @@ "tit\n" "help.text" msgid "Consolidate Text Boxes" -msgstr "" +msgstr "Consolidate Text Boxes" #. e3z7C #: consolidatetext.xhp @@ -482,7 +482,7 @@ "bm_id371623524099696\n" "help.text" msgid "text box consolidationjoin PDF lines;text box consolidationcombine text box;text box consolidationcombine text frames;text box consolidation" -msgstr "" +msgstr "text box consolidationjoin PDF lines;text box consolidationcombine text box;text box consolidationcombine text frames;text box consolidation" #. BqmVv #: consolidatetext.xhp @@ -491,7 +491,7 @@ "hd_id861623510996086\n" "help.text" msgid "Text Box Consolidation" -msgstr "" +msgstr "Text Box Consolidation" #. zsb7F #: consolidatetext.xhp @@ -500,7 +500,7 @@ "par_id441623510996088\n" "help.text" msgid "Combine two or more selected text boxes into one." -msgstr "" +msgstr "Combine two or more selected text boxes into one." #. uDEkt #: consolidatetext.xhp @@ -509,7 +509,7 @@ "par_id111623511334889\n" "help.text" msgid "Select two or more text boxes and either" -msgstr "" +msgstr "Select two or more text boxes and either" #. eopFe #: consolidatetext.xhp @@ -518,7 +518,7 @@ "par_id711623512060597\n" "help.text" msgid "Choose menu Shape - Consolidate Text." -msgstr "" +msgstr "Choose menu Shape - Consolidate Text." #. m5F3B #: consolidatetext.xhp @@ -527,7 +527,7 @@ "par_id501623512080240\n" "help.text" msgid "Open context menu and choose Consolidate Text." -msgstr "" +msgstr "Open context menu and choose Consolidate Text." #. rWDAq #: consolidatetext.xhp @@ -536,7 +536,7 @@ "par_id61623512950690\n" "help.text" msgid "Text box consolidation joins several text boxes into a bigger text box, enabling text reflow inside the resulting box." -msgstr "" +msgstr "Text box consolidation joins several text boxes into a bigger text box, enabling text reflow inside the resulting box." #. pnfVs #: consolidatetext.xhp @@ -545,7 +545,7 @@ "par_id141623511540551\n" "help.text" msgid "Consolidate text command is specially useful for editing PDF documents with %PRODUCTNAME Draw." -msgstr "" +msgstr "Consolidate text command is specially useful for editing PDF documents with %PRODUCTNAME Draw." #. UBCV5 #: consolidatetext.xhp @@ -554,7 +554,7 @@ "par_id471623513979583\n" "help.text" msgid "The function inspects the text fragments to see if they end in sentence-ending punctuation. If not, then the next text box's content is appended to it instead of starting a new paragraph. You must afterwards fix up paragraphing, and set paragraph properties." -msgstr "" +msgstr "The function inspects the text fragments to see if they end in sentence-ending punctuation. If not, then the next text box's content is appended to it instead of starting a new paragraph. You must afterwards fix up paragraphing, and set paragraph properties." #. vdwPx #: consolidatetext.xhp @@ -563,7 +563,7 @@ "hd_id381623516529280\n" "help.text" msgid "Remarks" -msgstr "" +msgstr "Remarks" #. 5rXDq #: consolidatetext.xhp @@ -572,7 +572,7 @@ "par_id211623513189855\n" "help.text" msgid "The resulting text box is inserted into the current layer." -msgstr "" +msgstr "The resulting text box is inserted into the current layer." #. xPr6s #: consolidatetext.xhp @@ -581,7 +581,7 @@ "par_id61623516556624\n" "help.text" msgid "If the single text box objects are named, the resulting text box is unnamed." -msgstr "" +msgstr "If the single text box objects are named, the resulting text box is unnamed." #. WddHJ #: consolidatetext.xhp @@ -590,7 +590,7 @@ "par_id611623516624688\n" "help.text" msgid "Title and description of the single text boxes are lost." -msgstr "" +msgstr "Title and description of the single text boxes are lost." #. TKkEa #: consolidatetext.xhp @@ -599,7 +599,7 @@ "par_id281623513291901\n" "help.text" msgid "The previous text box objects are deleted after consolidation." -msgstr "" +msgstr "The previous text box objects are deleted after consolidation." #. bGEES #: consolidatetext.xhp @@ -608,7 +608,7 @@ "par_id531623515498932\n" "help.text" msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where the resulting list items are split after the dot." -msgstr "" +msgstr "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where the resulting list items are split after the dot." #. VwP6B #: consolidatetext.xhp @@ -617,7 +617,7 @@ "par_id931623525360411\n" "help.text" msgid "For better results, combine adjacent text boxes with similar paragraph formatting. Character formatting inside the text boxes is preserved. Combining text boxes with different paragraph styles (headings, list and more) will require manual intervention to restore the original text layout." -msgstr "" +msgstr "For better results, combine adjacent text boxes with similar paragraph formatting. Character formatting inside the text boxes is preserved. Combining text boxes with different paragraph styles (headings, list and more) will require manual intervention to restore the original text layout." #. 4JVcT #: delete_page.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-02-03 19:36+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1547846119.000000\n" #. cZbDh @@ -770,7 +770,7 @@ "par_id3166428\n" "help.text" msgid "Choose Shape - Cross-fading." -msgstr "" +msgstr "Choose Shape - Cross-fading." #. dmA2i #: cross_fading.xhp @@ -2651,7 +2651,7 @@ "par_id3150716\n" "help.text" msgid "Select the object you want to rotate. On the Transformations toolbar in $[officename] Draw or on the Drawing bar in $[officename] Impress, click the Rotate icon." -msgstr "" +msgstr "Select the object you want to rotate. On the Transformations toolbar in $[officename] Draw or on the Drawing bar in $[officename] Impress, click the Rotate icon." #. MLBay #: rotate_object.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/sdraw.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/sdraw.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2021-02-03 19:36+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1563449177.000000\n" #. dHbww @@ -455,7 +455,7 @@ "par_idN106C8\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue points" #. kz8Fw #: main0210.xhp @@ -464,7 +464,7 @@ "par_idN106D7\n" "help.text" msgid "Enables you to edit gluepoints on your drawing." -msgstr "" +msgstr "Enables you to edit glue points on your drawing." #. 3Cwi3 #: main0210.xhp @@ -707,7 +707,7 @@ "par_id3149124\n" "help.text" msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to gluepoints on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams." -msgstr "" +msgstr "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams." #. pLaMp #: main0503.xhp @@ -824,7 +824,7 @@ "hd_id3149258\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue points" #. JaiGm #: main_edit.xhp @@ -833,7 +833,7 @@ "par_id3146315\n" "help.text" msgid "Enables you to edit gluepoints on your drawing." -msgstr "" +msgstr "Enables you to edit glue points on your drawing." #. UBmhX #: main_edit.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -311,7 +311,7 @@ "par_id3153087\n" "help.text" 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 Expand icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "Click the Shrink icon to reduce the dialogue box 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 Expand icon. Click it to restore the dialogue box to its original size." #. XBrSB #: 00000001.xhp @@ -545,7 +545,7 @@ "par_id651616711045219\n" "help.text" msgid "Closes dialog and discards changes on all tabs. If Apply was used, then changes after the last use of Apply are discarded." -msgstr "" +msgstr "Closes dialogue box and discards changes on all tabs. If Apply was used, then changes after the last use of Apply are discarded." #. wFkFQ #: 00000001.xhp @@ -563,7 +563,7 @@ "par_id691616710270371\n" "help.text" msgid "Resets modified values on the current tab back to the values when the dialog was opened. If Apply is used before closing the dialog, then values are reset to those after the last use of Apply." -msgstr "" +msgstr "Resets modified values on the current tab back to the values when the dialogue box was opened. If Apply is used before closing the dialogue box, then values are reset to those after the last use of Apply." #. emuSf #: 00000001.xhp @@ -581,7 +581,7 @@ "par_id691616711586248\n" "help.text" msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset." -msgstr "" +msgstr "Applies modifications on all tabs without closing dialogue box. Cannot be reverted with Reset." #. A8G37 #: 00000001.xhp @@ -599,7 +599,7 @@ "par_id581616061494132\n" "help.text" msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed." -msgstr "" +msgstr "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organiser. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed." #. 3brfZ #: 00000001.xhp @@ -770,7 +770,7 @@ "par_id51597440622057\n" "help.text" msgid "Applies the modified or selected values without closing the Options dialog." -msgstr "" +msgstr "Applies the modified or selected values without closing the Options dialogue box." #. BRStA #: 00000001.xhp @@ -2849,7 +2849,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 "In various dialogue boxes (for example, Tools - AutoText) you can select whether you want to save files relatively or absolutely." #. vUiBY #: 00000005.xhp @@ -3587,7 +3587,7 @@ "par_id3155135\n" "help.text" msgid "If $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used." -msgstr "" +msgstr "If $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used." #. ujGz3 #: 00000020.xhp @@ -3596,7 +3596,7 @@ "par_id3148473\n" "help.text" msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"." -msgstr "" +msgstr "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"." #. JxdSw #: 00000020.xhp @@ -7475,7 +7475,7 @@ "par_id3148608\n" "help.text" msgid "Choose File - Export, if EPS is selected as file type, this dialog opens automatically." -msgstr "" +msgstr "Choose File - Export, if EPS is selected as file type, this dialogue box opens automatically." #. ADXoF #: 00000401.xhp @@ -7484,7 +7484,7 @@ "par_id3150107\n" "help.text" msgid "Choose File - Export, if PBM, PPM or PGM is selected as file type, the dialog opens automatically." -msgstr "" +msgstr "Choose File - Export, if PBM, PPM or PGM is selected as file type, the dialogue box opens automatically." #. eu9SA #: 00000401.xhp @@ -8663,7 +8663,7 @@ "par_id3145171\n" "help.text" msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." -msgstr "" +msgstr "Choose Tools - Customise - Keyboard tab. A document must be opened." #. qxnqP #: 00000406.xhp @@ -8672,7 +8672,7 @@ "par_id3153968\n" "help.text" msgid "Choose Tools - Customize - Toolbars tab." -msgstr "" +msgstr "Choose Tools - Customise - Toolbars tab." #. 9wtYU #: 00000406.xhp @@ -8681,7 +8681,7 @@ "par_id3144432\n" "help.text" msgid "Choose Tools - Customize - Events tab." -msgstr "" +msgstr "Choose Tools - Customise - Events tab." #. Bsh3F #: 00000406.xhp @@ -8735,7 +8735,7 @@ "par_id3153094\n" "help.text" msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." -msgstr "" +msgstr "Choose Tools - AutoCorrect - AutoCorrect Options - Localised Options tab." #. x8Cg3 #: 00000406.xhp @@ -10238,7 +10238,7 @@ "par_id3155995\n" "help.text" msgid "Icon Paragraph" -msgstr "" +msgstr "Icon Paragraph" #. E7XoA #: 00040500.xhp @@ -10517,7 +10517,7 @@ "par_id3146791\n" "help.text" msgid "Choose Format - Page Style - Organizer tab." -msgstr "" +msgstr "Choose Format - Page Style - Organiser tab." #. 5BJtP #: 00040500.xhp @@ -10526,7 +10526,7 @@ "par_id7146791\n" "help.text" msgid "Choose Styles - Edit Style - Organizer tab." -msgstr "" +msgstr "Choose Styles - Edit Style - Organiser tab." #. 8xdE8 #: 00040500.xhp @@ -10535,7 +10535,7 @@ "par_id631579002848692\n" "help.text" msgid "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organiser tab." #. Z2AF5 #: 00040500.xhp @@ -10544,7 +10544,7 @@ "par_id3146788\n" "help.text" msgid "Choose Format - Page - Organizer tab." -msgstr "" +msgstr "Choose Format - Page - Organiser tab." #. Y2ck5 #: 00040500.xhp @@ -10553,7 +10553,7 @@ "par_id961579003607432\n" "help.text" msgid "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organiser tab." #. 5tDj9 #: 00040500.xhp @@ -10562,7 +10562,7 @@ "par_id3123788\n" "help.text" msgid "Choose Format - Styles - Edit Style - Organizer tab." -msgstr "" +msgstr "Choose Format - Styles - Edit Style - Organiser tab." #. HE8gX #: 00040500.xhp @@ -10571,7 +10571,7 @@ "par_id111579003773016\n" "help.text" msgid "Choose Format - Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Choose Format - Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organiser tab." #. rSUuK #: 00040500.xhp @@ -10589,7 +10589,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 "Choose View - Styles (Command+T)(F11) - open context menu of an entry and choose Modify/New - Organiser tab." #. eEUQg #: 00040500.xhp @@ -10760,7 +10760,7 @@ "par_id3148533\n" "help.text" msgid "Icon Styles" -msgstr "" +msgstr "Icon Styles" #. GGmAC #: 00040500.xhp @@ -10877,7 +10877,7 @@ "par_id3149445\n" "help.text" msgid "Bullets and Numbering dialog Icon" -msgstr "" +msgstr "Bullets and Numbering dialogue Icon" #. BPPZD #: 00040500.xhp @@ -10895,7 +10895,7 @@ "par_id3149735\n" "help.text" msgid "Choose Format - Bullets and Numbering. Open Customize tab page." -msgstr "" +msgstr "Choose Format - Bullets and Numbering. Open Customise tab page." #. y4rGF #: 00040500.xhp @@ -11417,7 +11417,7 @@ "par_id3157874\n" "help.text" msgid "Icon Activation Order" -msgstr "" +msgstr "Icon Activation Order" #. BmMW5 #: 00040501.xhp @@ -12938,7 +12938,7 @@ "par_id3149911\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size." -msgstr "" +msgstr "Choose Format - Text Box and Shape - Object - Position and Size." #. tEB7C #: 00040502.xhp @@ -12956,7 +12956,7 @@ "par_id3153052\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Icon Position and Size" #. yL3FJ #: 00040502.xhp @@ -13001,7 +13001,7 @@ "par_id3153099\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Object and Shape - Position and Size - Position and Size tab." -msgstr "" +msgstr "Choose Format - Text Box and Shape - Object - Object and Shape - Position and Size - Position and Size tab." #. etEap #: 00040502.xhp @@ -13010,7 +13010,7 @@ "par_id361602065556003\n" "help.text" msgid "Open context menu for selected object - choose Position and Size - Position and Size tab." -msgstr "" +msgstr "Open context menu for selected object - choose Position and Size - Position and Size tab." #. FTEHw #: 00040502.xhp @@ -13019,7 +13019,7 @@ "par_id371602337542349\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Icon Position and Size" #. 38DDB #: 00040502.xhp @@ -13028,7 +13028,7 @@ "par_id841602337832667\n" "help.text" msgid "Position and Size menu icon" -msgstr "" +msgstr "Position and Size menu icon" #. rjLHN #: 00040502.xhp @@ -13046,7 +13046,7 @@ "par_id3152973\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." -msgstr "" +msgstr "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." #. BESGV #: 00040502.xhp @@ -13073,7 +13073,7 @@ "par_id3145666\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." -msgstr "" +msgstr "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." #. he3t3 #: 00040502.xhp @@ -13082,7 +13082,7 @@ "par_id3146081\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." -msgstr "" +msgstr "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." #. CgG8j #: 00040502.xhp @@ -13154,7 +13154,7 @@ "par_id3151342\n" "help.text" msgid "Open context menu - choose Size." -msgstr "" +msgstr "Open context menu - choose Size." #. FNawj #: 00040502.xhp @@ -13181,7 +13181,7 @@ "par_id3145766\n" "help.text" msgid "Icon Bold" -msgstr "" +msgstr "Icon Bold" #. pQRTJ #: 00040502.xhp @@ -13208,7 +13208,7 @@ "par_id3159091\n" "help.text" msgid "Icon Italic" -msgstr "" +msgstr "Icon Italic" #. cggpG #: 00040502.xhp @@ -13235,7 +13235,7 @@ "par_id3145223\n" "help.text" msgid "Icon Underline" -msgstr "" +msgstr "Icon Underline" #. Bfqx8 #: 00040502.xhp @@ -14693,7 +14693,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 "Choose Tools - AutoCorrect - Apply and Edit Changes. The AutoCorrect dialogue box appears.
    Click the Edit Changes button and navigate to the List tab." #. DRyHd #: edit_menu.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" -"Last-Translator: Stuart Swales \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" "MIME-Version: 1.0\n" @@ -2165,7 +2165,7 @@ "par_id3150105\n" "help.text" msgid "When you open a document created from a template, %PRODUCTNAME checks to see if the template has been modified since the document was last opened. If the template was changed, a dialog is shown where you can select which styles to apply to the document." -msgstr "" +msgstr "When you open a document created from a template, %PRODUCTNAME checks to see if the template has been modified since the document was last opened. If the template was changed, a dialogue box is shown where you can select which styles to apply to the document." #. JCkDE #: 01020000.xhp @@ -2192,7 +2192,7 @@ "par_id3145367\n" "help.text" msgid "%PRODUCTNAME recognizes templates located in any directory defined for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths." -msgstr "" +msgstr "%PRODUCTNAME recognises templates located in any directory defined for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths." #. Nksvx #: 01020000.xhp @@ -2201,7 +2201,7 @@ "par_id3154988\n" "help.text" msgid "If a document was created using a template that cannot be found, a dialog is shown that asks you how to proceed next time the document is opened." -msgstr "" +msgstr "If a document was created using a template that cannot be found, a dialogue box is shown that asks you how to proceed next time the document is opened." #. HzeB3 #: 01020000.xhp @@ -4649,7 +4649,7 @@ "par_id3156113\n" "help.text" msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select." -msgstr "" +msgstr "Opens the Printer Properties dialogue box. The printer properties vary according to the printer that you select." #. TXTqq #: 01130000.xhp @@ -4946,7 +4946,7 @@ "hd_id671619223836561\n" "help.text" msgid "Paper size" -msgstr "" +msgstr "Paper size" #. BhLDa #: 01130000.xhp @@ -4955,7 +4955,7 @@ "par_id67\n" "help.text" msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." -msgstr "" +msgstr "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." #. t4E2n #: 01130000.xhp @@ -5549,7 +5549,7 @@ "hd_id841619249950074\n" "help.text" msgid "Size" -msgstr "" +msgstr "Size" #. sBQ47 #: 01130000.xhp @@ -5567,7 +5567,7 @@ "hd_id961619249977935\n" "help.text" msgid "Original size" -msgstr "" +msgstr "Original size" #. VqWUF #: 01130000.xhp @@ -5765,7 +5765,7 @@ "hd_id611619228924916\n" "help.text" msgid "Size" -msgstr "" +msgstr "Size" #. CwNL2 #: 01130000.xhp @@ -5774,7 +5774,7 @@ "hd_id121619228944470\n" "help.text" msgid "Original size" -msgstr "" +msgstr "Original size" #. i9ApX #: 01130000.xhp @@ -5783,7 +5783,7 @@ "par_id26\n" "help.text" msgid "Prints the formula without adjusting the current font size." -msgstr "" +msgstr "Prints the formula without adjusting the current font size." #. QCwXG #: 01130000.xhp @@ -5819,7 +5819,7 @@ "par_id30\n" "help.text" msgid "Reduces or enlarges the size of the printed formula by a specified factor." -msgstr "" +msgstr "Reduces or enlarges the size of the printed formula by a specified factor." #. 4EBb8 #: 01130000.xhp @@ -7295,7 +7295,7 @@ "par_id331630441454811\n" "help.text" msgid "Check this option to load the preset and immediately apply it. When unchecked, choosing a preset will only load the corresponding options in the dialog without pasting anything." -msgstr "" +msgstr "Check this option to load the preset and immediately apply it. When unchecked, choosing a preset will only load the corresponding options in the dialogue box without pasting anything." #. 3etKJ #: 02070000.xhp @@ -7304,7 +7304,7 @@ "par_id811630441564039\n" "help.text" msgid "Uncheck Run immediately to load the options from the preset and change its settings in the Paste Special dialog before applying them by clicking OK." -msgstr "" +msgstr "Uncheck Run immediately to load the options from the preset and change its settings in the Paste Special dialogue box before applying them by clicking OK." #. LTyRC #: 02070000.xhp @@ -7799,7 +7799,7 @@ "bm_id501629842533945\n" "help.text" msgid "Find & Replace dialog" -msgstr "" +msgstr "Find & Replace dialogue box" #. FGyuJ #: 02100000.xhp @@ -7817,7 +7817,7 @@ "par_id3149893\n" "help.text" msgid " Finds or replaces text or formats in the current document. " -msgstr "" +msgstr " Finds or replaces text or formats in the current document. " #. 2c3d6 #: 02100000.xhp @@ -7898,7 +7898,7 @@ "par_id3154760\n" "help.text" msgid " Matches the exact character provided in the Find box without considering any alternative case matches. " -msgstr "" +msgstr " Matches the exact character provided in the Find box without considering any alternative case matches. " #. jsLqT #: 02100000.xhp @@ -7961,7 +7961,7 @@ "par_id3149579\n" "help.text" msgid " Searches for whole words or cells that are identical to the search text. " -msgstr "" +msgstr " Searches for whole words or cells that are identical to the search text. " #. GjHVg #: 02100000.xhp @@ -8276,7 +8276,7 @@ "par_id3145744\n" "help.text" msgid " Distinguishes between half-width and full-width character forms. " -msgstr "" +msgstr " Distinguishes between half-width and full-width character forms. " #. D4hMq #: 02100000.xhp @@ -8294,7 +8294,7 @@ "par_id3145421\n" "help.text" 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 " Lets you specify the search options for similar notation used in Japanese text. Select this check box, and then click the Sounds button to specify the search options. " #. pCFVE #: 02100000.xhp @@ -8303,7 +8303,7 @@ "par_id3149765\n" "help.text" msgid " Sets the search options for similar notation used in Japanese text. " -msgstr "" +msgstr " Sets the search options for similar notation used in Japanese text. " #. buRmS #: 02100000.xhp @@ -8591,7 +8591,7 @@ "par_id3151101\n" "help.text" msgid "After you close the Find & Replace dialog, you can still search using the last search criteria that you entered, by pressing Shift+CommandCtrl+F." -msgstr "" +msgstr "After you close the Find & Replace dialogue box, you can still search using the last search criteria that you entered, by pressing Shift+CommandCtrl+F." #. GspKW #: 02100001.xhp @@ -9383,7 +9383,7 @@ "par_id3145629\n" "help.text" msgid "Set the options for the similarity search." -msgstr "" +msgstr "Set the options for the similarity search." #. FLKW6 #: 02100100.xhp @@ -9527,7 +9527,7 @@ "par_id3153331\n" "help.text" msgid "Choose the text attributes that you want to search for. For example, if you select the Outline attribute, then all characters formatted manually with an Outline effect are found. If you also want to find characters with an Outline effect as part of a style, then select Including styles in the Other Options section, before searching." -msgstr "" +msgstr "Choose the text attributes that you want to search for. For example, if you select the Outline attribute, then all characters formatted manually with an Outline effect are found. If you also want to find characters with an Outline effect as part of a style, then select Including styles in the Other Options section, before searching." #. txC5Y #: 02100200.xhp @@ -9635,7 +9635,7 @@ "par_id3149203\n" "help.text" msgid "Finds characters that use a Case effect (Uppercase, Lowercase, Capitalize every word, or Small capitals)." -msgstr "" +msgstr "Finds characters that use a Case effect (Upper-case, Lower-case, Capitalise every word, or Small capitals)." #. Ld5EJ #: 02100200.xhp @@ -11030,7 +11030,7 @@ "par_id3153527\n" "help.text" msgid "Path to the source file. Relative paths must be expressed by full URI, for example, with file://." -msgstr "" +msgstr "Path to the source file. Relative paths must be expressed by full URI, for example, with file://." #. eEnmT #: 02180100.xhp @@ -12605,7 +12605,7 @@ "par_id3152425\n" "help.text" msgid "You can change the display properties of the markup elements by choosing %PRODUCTNAME Writer - Changes %PRODUCTNAME Calc - Changes in the Options dialog box." -msgstr "" +msgstr "You can change the display properties of the markup elements by choosing %PRODUCTNAME Writer - Changes %PRODUCTNAME Calc - Changes in the Options dialogue box." #. ZBLxs #: 02230200.xhp @@ -12632,7 +12632,7 @@ "par_id3149150\n" "help.text" msgid "Shows or hides recorded changes." -msgstr "" +msgstr "Shows or hides recorded changes." #. ECraQ #: 02230200.xhp @@ -12650,7 +12650,7 @@ "par_id3153541\n" "help.text" msgid "Shows or hides the changes that were accepted." -msgstr "" +msgstr "Shows or hides the changes that were accepted." #. 9T5jC #: 02230200.xhp @@ -12668,7 +12668,7 @@ "par_id3159166\n" "help.text" msgid "Shows or hides the changes that were rejected." -msgstr "" +msgstr "Shows or hides the changes that were rejected." #. nXYPN #: 02230300.xhp @@ -14936,7 +14936,7 @@ "par_id661633376449596\n" "help.text" msgid "The dialog displays settings for the selected scanner and the scan job." -msgstr "" +msgstr "The dialogue box displays settings for the selected scanner and the scan job." #. t6BMj #: 04060100.xhp @@ -14954,7 +14954,7 @@ "par_id361633369288384\n" "help.text" msgid "Displays a list of available scanners detected in your system. Click on a scanner in the list and press Select to open the scanner configuration dialog. The configuration dialog depends on the scanner driver installed." -msgstr "" +msgstr "Displays a list of available scanners detected in your system. Click on a scanner in the list and press Select to open the scanner configuration dialogue box. The configuration dialogue box depends on the scanner driver installed." #. Caooc #: 04060100.xhp @@ -15125,7 +15125,7 @@ "par_id851633375846639\n" "help.text" msgid "Scans an image, and then inserts the result into the document and closes the dialog." -msgstr "" +msgstr "Scans an image, and then inserts the result into the document and closes the dialogue box." #. qDEzX #: 04060200.xhp @@ -21713,7 +21713,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 "To change the measurement units used in this dialogue box, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General , and then select a new measurement unit in the Settings area." #. 4fwpx #: 05030100.xhp @@ -23531,7 +23531,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 "pages;formatting and numberingformatting;pagespaper formatspaper traysprinters;paper trayslayout;pagesbinding spacemargins;pagesgutterchanging;page sizechanging;page marginspage marginsmargins;definingpage size;defining" #. 2VdNc #: 05040200.xhp @@ -24116,7 +24116,7 @@ "par_id3144746\n" "help.text" msgid "Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved." -msgstr "" +msgstr "Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved." #. AhYsC #: 05040200.xhp @@ -24899,7 +24899,7 @@ "par_id3156280\n" "help.text" msgid "Select the horizontal alignment for the ruby text." -msgstr "" +msgstr "Select the horizontal alignment for the ruby text." #. jYcBH #: 05060000.xhp @@ -25655,7 +25655,7 @@ "par_id3083451\n" "help.text" msgid "Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into." -msgstr "" +msgstr "Displays the Split Cells dialogue box where the split can be defined as either horizontally or vertically and the number the each cell will be split into." #. aAHnr #: 05100200.xhp @@ -25691,7 +25691,7 @@ "hd_id3154558\n" "help.text" msgid "Split Cells Dialog" -msgstr "" +msgstr "Split Cells Dialogue Box" #. cDdv6 #: 05100200.xhp @@ -28508,7 +28508,7 @@ "par_id651592868426975\n" "help.text" msgid "Custom position/size: Set a custom size and position of the image in the object area." -msgstr "" +msgstr "Custom position/size: Set a custom size and position of the image in the object area." #. sAiUV #: 05210500.xhp @@ -28517,7 +28517,7 @@ "hd_id151592868900345\n" "help.text" msgid "Size" -msgstr "" +msgstr "Size" #. TeFTN #: 05210500.xhp @@ -28526,7 +28526,7 @@ "par_id321592869205683\n" "help.text" msgid "Size of the tiles and the custom size." -msgstr "" +msgstr "Size of the tiles and the custom size." #. rTjAd #: 05210500.xhp @@ -28535,7 +28535,7 @@ "par_id951592869294738\n" "help.text" msgid "Width: Set the width of the tile or custom size." -msgstr "" +msgstr "Width: Set the width of the tile or custom size." #. RQFrq #: 05210500.xhp @@ -28544,7 +28544,7 @@ "par_id171592869301228\n" "help.text" msgid "Height: Set the height of the tile or custom size." -msgstr "" +msgstr "Height: Set the height of the tile or custom size." #. twwdD #: 05210500.xhp @@ -28553,7 +28553,7 @@ "par_id351592869651411\n" "help.text" msgid "Scale: Mark to turn the height and width settings relative to original size." -msgstr "" +msgstr "Scale: Mark to turn the height and width settings relative to original size." #. QEYV9 #: 05210500.xhp @@ -29588,7 +29588,7 @@ "tit\n" "help.text" msgid "Position and Size (Text Box and Shape)" -msgstr "" +msgstr "Position and Size (Text Box and Shape)" #. tnQ2D #: 05230100.xhp @@ -29597,7 +29597,7 @@ "bm_id3154350\n" "help.text" msgid "positioning;draw objects and controls draw objects;positioning and resizing controls; positions and sizes sizes;draw objects anchors;types/positions for draw objects draw objects; anchoring" -msgstr "" +msgstr "positioning;draw objects and controls draw objects;positioning and resizing controls; positions and sizes sizes;draw objects anchors;types/positions for draw objects draw objects; anchoring" #. p36co #: 05230100.xhp @@ -29678,7 +29678,7 @@ "par_id3155616\n" "help.text" msgid "Enter the horizontal coordinate where the selected base point should be placed." -msgstr "" +msgstr "Enter the horizontal coordinate where the selected base point should be placed." #. qHcAA #: 05230100.xhp @@ -29696,7 +29696,7 @@ "par_id3147373\n" "help.text" msgid "Enter the vertical coordinate where the selected base point should be placed." -msgstr "" +msgstr "Enter the vertical coordinate where the selected base point should be placed." #. AWT9v #: 05230100.xhp @@ -29714,7 +29714,7 @@ "par_id3147008\n" "help.text" msgid "The selected base point will be moved to the specified Position Y and Position X." -msgstr "" +msgstr "The selected base point will be moved to the specified Position Y and Position X." #. cE49F #: 05230100.xhp @@ -29723,7 +29723,7 @@ "par_id61602773901231\n" "help.text" msgid "The base point always returns to the left/top corner on reopening the dialog." -msgstr "" +msgstr "The base point always returns to the left/top corner on reopening the dialogue box." #. 2qMEV #: 05230100.xhp @@ -29741,7 +29741,7 @@ "par_id31507749753\n" "help.text" msgid "Specify the size of the selected object." -msgstr "" +msgstr "Specify the size of the selected object." #. oaVxX #: 05230100.xhp @@ -29750,7 +29750,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 "Resize the selected object to the chosen width and height relative to the selected base point." #. gfmHb #: 05230100.xhp @@ -29804,7 +29804,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 "Maintains the width and height ratio when changing the width or height setting in the dialogue box." #. RS3Rj #: 05230100.xhp @@ -29858,7 +29858,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 "The selected base point remains fixed in the grid. The object is resized relative to that point." #. J2shX #: 05230100.xhp @@ -29885,7 +29885,7 @@ "par_id3149784\n" "help.text" msgid "Prevents changes to the position and size of the selected object." -msgstr "" +msgstr "Prevents changes to the position and size of the selected object." #. jqJ6D #: 05230100.xhp @@ -33782,7 +33782,7 @@ "par_id741592536331459\n" "help.text" msgid "Click here to apply the properties shown in the dialog to the selected object." -msgstr "" +msgstr "Click here to apply the properties shown in the dialogue box to the selected object." #. cYsYv #: 05350000.xhp @@ -33818,7 +33818,7 @@ "par_id631592536255091\n" "help.text" msgid "Click here to view in the dialog all the properties of the selected object." -msgstr "" +msgstr "Click here to view in the dialogue box all the properties of the selected object." #. h9CJA #: 05350000.xhp @@ -36113,7 +36113,7 @@ "par_id3153798\n" "help.text" msgid "Adds the current combination of the incorrect word and the selected replacement suggestion to the AutoCorrect replacement table, but does not make any change in the document." -msgstr "" +msgstr "Adds the current combination of the incorrect word and the selected replacement suggestion to the AutoCorrect replacement table, but does not make any change in the document." #. NkSGx #: 06010000.xhp @@ -37148,7 +37148,7 @@ "par_id911632159367467\n" "help.text" msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to Tools - AutoCorrect Options and uncheck all items in the Options and Localized Options tabs. Refer to the help page Turning Off AutoCorrect to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc." -msgstr "" +msgstr "To turn off AutoCorrect in %PRODUCTNAME Calc, go to Tools - AutoCorrect Options and uncheck all items in the Options and Localised Options tabs. Refer to the help page Turning Off AutoCorrect to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc." #. EmB5a #: 06040000.xhp @@ -37292,7 +37292,7 @@ "par_id3155339\n" "help.text" msgid "Capitalizes the first letter of every sentence" -msgstr "" +msgstr "Capitalises the first letter of every sentence" #. xDBFC #: 06040100.xhp @@ -37607,7 +37607,7 @@ "par_id971612310224117\n" "help.text" msgid "Inverts a capitalized word entered with the Caps Lock key enabled, after a space is entered, and disables the Caps Lock key. For example, entering Libre with Caps Lock enabled appears as lIBRE, which is converted automatically to Libre." -msgstr "" +msgstr "Inverts a capitalised word entered with the Caps Lock key enabled, after a space is entered, and disables the Caps Lock key. For example, entering Libre with Caps Lock enabled appears as lIBRE, which is converted automatically to Libre." #. EDVL6 #: 06040100.xhp @@ -38183,7 +38183,7 @@ "par_id91613147197169\n" "help.text" msgid "i18nized" -msgstr "" +msgstr "i18nised" #. 5LuBF #: 06040200.xhp @@ -38192,7 +38192,7 @@ "par_id301613146528171\n" "help.text" msgid "internationalized" -msgstr "" +msgstr "internationalised" #. XW3x3 #: 06040200.xhp @@ -38417,7 +38417,7 @@ "par_id901613130624924\n" "help.text" msgid "This feature is relevant when the Capitalize first letter of every sentence option or the Correct TWo INitial CApitals option are selected in the [T] column on the Options tab of this dialog, and Tools - AutoCorrect - While Typing is enabled." -msgstr "" +msgstr "This feature is relevant when the Capitalise first letter of every sentence option or the Correct TWo INitial CApitals option are selected in the [T] column on the Options tab of this dialogue box, and Tools - AutoCorrect - While Typing is enabled." #. iDNuq #: 06040400.xhp @@ -39245,7 +39245,7 @@ "par_id3154317\n" "help.text" msgid "Customize tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "Customise tab (Bullets and Numbering dialogue box)" #. BFX2M #: 06050200.xhp @@ -39461,7 +39461,7 @@ "tit\n" "help.text" msgid "Customize (Bullets and Numbering)" -msgstr "" +msgstr "Customise (Bullets and Numbering)" #. QChMa #: 06050500.xhp @@ -39740,7 +39740,7 @@ "par_id3145085\n" "help.text" msgid "Adds a character bullet to the beginning of a line. Select this option, use the Character style drop-down menu to choose the bullet character style, and then press the Select button to open the Special Characters dialog to choose the bullet character." -msgstr "" +msgstr "Adds a character bullet to the beginning of a line. Select this option, use the Character style drop-down menu to choose the bullet character style, and then press the Select button to open the Special Characters dialogue box to choose the bullet character." #. JBJEa #: 06050500.xhp @@ -40595,7 +40595,7 @@ "par_idN105D3\n" "help.text" msgid "Organize Dialogs" -msgstr "Organise Dialogues" +msgstr "Organise Dialogs" #. iewaq #: 06130001.xhp @@ -40775,7 +40775,7 @@ "par_idN109C2\n" "help.text" 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 "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." #. wxJE3 #: 06130030.xhp @@ -41558,7 +41558,7 @@ "par_id621514299131013\n" "help.text" msgid "Choose Tools - Customize - Menus tab." -msgstr "" +msgstr "Choose Tools - Customise - Menus tab." #. nzad5 #: 06140100.xhp @@ -41819,7 +41819,7 @@ "hd_id631604851974598\n" "help.text" msgid "Customize" -msgstr "" +msgstr "Customise" #. G2yK8 #: 06140100.xhp @@ -42341,7 +42341,7 @@ "par_id621514299131013\n" "help.text" msgid "Choose Tools - Customize - Context Menus tab." -msgstr "" +msgstr "Choose Tools - Customise - Context Menus tab." #. dTLGx #: 06140300.xhp @@ -42485,7 +42485,7 @@ "hd_id381604852428742\n" "help.text" msgid "Customize" -msgstr "" +msgstr "Customise" #. ASEww #: 06140300.xhp @@ -42944,7 +42944,7 @@ "par_idN10575\n" "help.text" msgid "You can only import icons that are in the PNG file format and that are 16 × 16 or 24 × 24 pixels in size." -msgstr "" +msgstr "You can only import icons that are in the PNG file format and that are 16 × 16 or 24 × 24 pixels in size." #. RLa8G #: 06140402.xhp @@ -45266,7 +45266,7 @@ "par_id841594763815175\n" "help.text" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Select or add the correct Network Security Services Certificate directory to use for digital signatures." #. vCwDA #: certificatepath.xhp @@ -45284,7 +45284,7 @@ "par_id981594766097073\n" "help.text" msgid "Shows the list of Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Shows the list of Network Security Services Certificate directory to use for digital signatures." #. DABZF #: certificatepath.xhp @@ -45302,7 +45302,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 "Opens a file picker dialogue box to add a new Network Security Services Certificate directory to the list." #. zivCM #: classificationbar.xhp @@ -45383,7 +45383,7 @@ "par_id501623161122070\n" "help.text" msgid "Opens the Classification dialog for document classification." -msgstr "" +msgstr "Opens the Classification dialogue box for document classification." #. m5zCN #: classificationbar.xhp @@ -45401,7 +45401,7 @@ "par_id871623161127282\n" "help.text" msgid "Opens the Classification dialog for paragraph classification." -msgstr "" +msgstr "Opens the Classification dialogue box for paragraph classification." #. kfv3h #: classificationbar.xhp @@ -45419,7 +45419,7 @@ "tit\n" "help.text" msgid "Classification Dialog" -msgstr "" +msgstr "Classification Dialogue Box" #. Cregg #: classificationdialog.xhp @@ -45437,7 +45437,7 @@ "hd_id21623159004194\n" "help.text" msgid "Document and Paragraph Classification Dialog" -msgstr "" +msgstr "Document and Paragraph Classification Dialogue Box" #. RuUAE #: classificationdialog.xhp @@ -45446,7 +45446,7 @@ "par_id461623164674397\n" "help.text" msgid "Applies classification policy to the current document or paragraph. The dialog helps to assemble the classification policy terms of the document or paragraph by using predefined classification terms or by entering custom classification terms. The dialog display several lists of predefined items, which are loaded from the BAILS-xml TSCP policy file." -msgstr "" +msgstr "Applies classification policy to the current document or paragraph. The dialogue box helps to assemble the classification policy terms of the document or paragraph by using predefined classification terms or by entering custom classification terms. The dialogue box displays several lists of predefined items, which are loaded from the BAILS-xml TSCP policy file." #. Q2FkA #: classificationdialog.xhp @@ -45473,7 +45473,7 @@ "par_id301623172724879\n" "help.text" msgid "The Content text box displays the classification text created by the dialog and displays the existing document or paragraph classification terms. You can add your own terms in addition to the existing text in the box and the classification terms from the classification policy configuration file." -msgstr "" +msgstr "The Content text box displays the classification text created by the dialogue box and displays the existing document or paragraph classification terms. You can add your own terms in addition to the existing text in the box and the classification terms from the classification policy configuration file." #. 8WD3B #: classificationdialog.xhp @@ -45509,7 +45509,7 @@ "par_id431623171280325\n" "help.text" msgid "Opens the Select Certification dialog box to choose the certificate to use to sign the paragraph." -msgstr "" +msgstr "Opens the Select Certification dialogue box to choose the certificate to use to sign the paragraph." #. 8nrUC #: classificationdialog.xhp @@ -45563,7 +45563,7 @@ "par_id21623168943133\n" "help.text" msgid "The International list are the elements of the BAILS, not localized. The default is:" -msgstr "" +msgstr "The International list are the elements of the BAILS, not localised. The default is:" #. GGGgk #: classificationdialog.xhp @@ -45671,7 +45671,7 @@ "par_id571623174784742\n" "help.text" msgid "Settings of the Classification dialog are part of the document custom properties." -msgstr "" +msgstr "Settings of the Classification dialogue box are part of the document custom properties." #. iVA7f #: classificationdialog.xhp @@ -46868,7 +46868,7 @@ "par_id511534716948194\n" "help.text" msgid "Image compression can be lossless or lossy. Lossless compression allows the original image to be perfectly reconstructed from the compressed data. In contrast, lossy compression permits reconstruction only of an approximation of the original image, therefore with some loss of quality, though usually with improved compression rates (and therefore reduced file sizes)." -msgstr "" +msgstr "Image compression can be lossless or lossy. Lossless compression allows the original image to be perfectly reconstructed from the compressed data. In contrast, lossy compression permits reconstruction only of an approximation of the original image, therefore with some loss of quality, though usually with improved compression rates (and therefore reduced file sizes)." #. YAF9S #: image_compression.xhp @@ -47642,7 +47642,7 @@ "par_id791612306305954\n" "help.text" msgid "Opens the Select Your Preferred User Interface dialog to let you choose the user interface layout for %PRODUCTNAME." -msgstr "" +msgstr "Opens the Select Your Preferred User Interface dialogue box to let you choose the user interface layout for %PRODUCTNAME." #. aGRwD #: notebook_bar.xhp @@ -47651,7 +47651,7 @@ "par_id190920161732262244\n" "help.text" msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents for a quicker usage and better user experience." -msgstr "" +msgstr "The notebook bar shows a different way to organise controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents for a quicker usage and better user experience." #. eBXFy #: notebook_bar.xhp @@ -47714,7 +47714,7 @@ "par_id651612308171162\n" "help.text" msgid "In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image. The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete." -msgstr "" +msgstr "In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image. The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organises functions in tabs and makes the main menu obsolete." #. Z3syw #: notebook_bar.xhp @@ -47831,7 +47831,7 @@ "par_id190920161744076273\n" "help.text" msgid "The notebook bar icon size is adjustable in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - View - Notebookbar icon size listbox." -msgstr "" +msgstr "The notebook bar icon size is adjustable in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - View - Notebookbar icon size list box." #. ooEpD #: notebook_bar.xhp @@ -50180,7 +50180,7 @@ "par_idN10734\n" "help.text" 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 "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 artefacts are introduced, but file sizes are reduced." #. MZoXB #: ref_pdf_export_general.xhp @@ -50621,7 +50621,7 @@ "par_id81574108602417\n" "help.text" msgid "Ignores each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page, which is exactly as small or large as needed to fit the whole contents of the sheet." -msgstr "" +msgstr "Ignores each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page, which is exactly as small or large as needed to fit the whole contents of the sheet." #. KCagR #: ref_pdf_export_general.xhp @@ -51872,7 +51872,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 "Shows the Export as PDF dialogue box, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment." #. wTQMX #: securitywarning.xhp @@ -52367,7 +52367,7 @@ "par_idN1068B1\n" "help.text" msgid "Opens the Name dialog to enter a new Time Stamping Authority URL." -msgstr "" +msgstr "Opens the Name dialogue box to enter a new Time Stamping Authority URL." #. stnAc #: timestampauth.xhp @@ -52385,7 +52385,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 "Deletes the selected entry in the list. Deletion is immediate and does not display a confirmation dialogue box." #. m3D8J #: webhtml.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -788,7 +788,7 @@ "par_id3148645\n" "help.text" msgid "Right-click the control and choose Control Properties. A dialog opens where you can define the properties of the control." -msgstr "" +msgstr "Right-click the control and choose Control Properties. A dialogue box opens where you can define the properties of the control." #. WTQie #: 01170000.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 "The events that are shown in the Events dialogue box cannot be edited directly. You can remove an event from the list by pressing the Del key." #. zFnar #: 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 "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 dialogue box." #. wEtEF #: 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 "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 dialogue box." #. qsaCS #: 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 "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 parametrised statement should continue, False otherwise." #. 78nYk #: 01170202.xhp @@ -9158,7 +9158,7 @@ "par_id3150347\n" "help.text" msgid "Opens the Tab Order dialog so you can modify the order in which control fields get the focus when the user presses the tab key." -msgstr "" +msgstr "Opens the Tab Order dialogue box so you can modify the order in which control fields get the focus when the user presses the tab key." #. oEDQP #: 01170300.xhp @@ -10679,7 +10679,7 @@ "par_id3143267\n" "help.text" msgid "Icon Styles" -msgstr "" +msgstr "Icon Styles" #. Cwybn #: 01230000.xhp @@ -12866,7 +12866,7 @@ "par_id3154927\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icon" #. Dty7B #: 09070000.xhp @@ -13298,7 +13298,7 @@ "par_id3153049\n" "help.text" msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses." -msgstr "" +msgstr "On the Mail page in the Hyperlink dialogue box you can edit hyperlinks for email addresses." #. mDsga #: 09070200.xhp @@ -17321,7 +17321,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 "Click the icon again to return to normal mode, in which the changes in the New Query Design are synchronised with the permitted changes through SQL." #. tTG7m #: 14040000.xhp @@ -17780,7 +17780,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 "Click this field to open the Zoom dialogue box, where you can change the current zoom factor." #. fyWyi #: 20030000.xhp @@ -19562,7 +19562,7 @@ "hd_id581597430248366\n" "help.text" msgid "Enter Name Dialog" -msgstr "" +msgstr "Enter Name Dialogue Box" #. edfxG #: namedialog.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/04.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/04.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/04.po 2022-07-15 19:12:51.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-19 17:31+0100\n" -"PO-Revision-Date: 2020-09-10 05:35+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1547063012.000000\n" #. GEuoc @@ -77,7 +77,7 @@ "hd_id3154186\n" "help.text" msgid "Calling Menus with Mnemonics" -msgstr "" +msgstr "Calling Menus with Mnemonics" #. Lv2Sv #: 01010000.xhp @@ -761,7 +761,7 @@ "par_id3144506\n" "help.text" msgid "Sets focus in next visible subwindow, including menu bar, toolbars, windows such as Sidebar and Navigator, and document canvas/data source." -msgstr "" +msgstr "Sets focus in next visible sub-window, including menu bar, toolbars, windows such as Sidebar and Navigator, and document canvas/data source." #. Enxuj #: 01010000.xhp @@ -788,7 +788,7 @@ "par_id341612296864115\n" "help.text" msgid "CommandCtrl+F6" -msgstr "" +msgstr "CommandCtrl+F6" #. SvF5v #: 01010000.xhp @@ -797,7 +797,7 @@ "par_id521612296878916\n" "help.text" msgid "Sets focus in the document canvas/data source." -msgstr "" +msgstr "Sets focus in the document canvas/data source." #. Y7pzu #: 01010000.xhp @@ -842,7 +842,7 @@ "par_id631612398592490\n" "help.text" msgid "CommandCtrl+Shift+F10" -msgstr "" +msgstr "CommandCtrl+Shift+F10" #. QFqB4 #: 01010000.xhp @@ -851,7 +851,7 @@ "par_id111612398626979\n" "help.text" msgid "Docks and undocks floating subwindows such as unlocked toolbars, Sidebar and Navigator." -msgstr "" +msgstr "Docks and undocks floating sub-windows such as unlocked toolbars, Sidebar and Navigator." #. CFAWe #: 01010000.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2020-12-28 07:53+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1540249490.000000\n" #. WPTtk @@ -1472,7 +1472,7 @@ "par_id171632107583486\n" "help.text" msgid "The search results are displayed as a filtered list of matches grouped by module name. The search results also include near matches. The matching parts of the search term are highlighted in each result." -msgstr "" +msgstr "The search results are displayed as a filtered list of matches grouped by module name. The search results also include near matches. The matching parts of the search term are highlighted in each result." #. 4EdAj #: new_help.xhp @@ -1481,7 +1481,7 @@ "par_id201534891524377\n" "help.text" msgid "The GLOBAL heading indicates a match for keywords relevant to more than one %PRODUCTNAME module. For example, cell borders applies to spreadsheets cells as well as text and presentation table cells or frames." -msgstr "" +msgstr "The GLOBAL heading indicates a match for keywords relevant to more than one %PRODUCTNAME module. For example, cell borders applies to spreadsheets cells as well as text and presentation table cells or frames." #. cFJDC #: new_help.xhp @@ -1796,7 +1796,7 @@ "par_idN10A59\n" "help.text" msgid "To find the previous occurrence of the search term on the page, click on the Up arrow. To find the next occurrence, click on the Down arrow." -msgstr "" +msgstr "To find the previous occurrence of the search term on the page, click on the Up arrow. To find the next occurrence, click on the Down arrow." #. mtikB #: new_help.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563450099.000000\n" #. iharT @@ -104,7 +104,7 @@ "par_id401607339239056\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Working with Templates" #. AJDDG #: aaa_start.xhp @@ -662,7 +662,7 @@ "tit\n" "help.text" msgid "Automatic Redaction" -msgstr "" +msgstr "Automatic Redaction" #. K7arh #: auto_redact.xhp @@ -671,7 +671,7 @@ "bm_id821562797360035\n" "help.text" msgid "spreadsheet; auto-redact presentations; auto-redact text documents; auto-redact contents automatic redaction" -msgstr "" +msgstr "spreadsheet; auto-redact presentations; auto-redact text documents; auto-redact contents automatic redaction" #. dujqZ #: auto_redact.xhp @@ -680,7 +680,7 @@ "hd_id171562795247122\n" "help.text" msgid "Automatic Redaction" -msgstr "" +msgstr "Automatic Redaction" #. 5TXro #: auto_redact.xhp @@ -689,7 +689,7 @@ "par_id4715627952214572\n" "help.text" msgid "Use automatic redaction to define words and patterns that are automatically marked for redaction. This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues." -msgstr "" +msgstr "Use automatic redaction to define words and patterns that are automatically marked for redaction. This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues." #. erJBg #: auto_redact.xhp @@ -743,7 +743,7 @@ "par_id101626028852152\n" "help.text" msgid "The Add Target dialog appears, to let you define a Name for the new target, as well as to choose its Type and Content. There are three types of targets to choose from in the Type dropdown list:" -msgstr "" +msgstr "The Add Target dialogue box appears, to let you define a Name for the new target, as well as to choose its Type and Content. There are three types of targets to choose from in the Type drop-down list:" #. 5AKPv #: auto_redact.xhp @@ -1589,7 +1589,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 "You can search for a newline character in the Find & Replace dialogue box 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." #. BsAfw #: breaking_lines.xhp @@ -2399,7 +2399,7 @@ "par_id030820161744118823\n" "help.text" msgid "%PRODUCTNAME provides standardized means for such sensitivity information to be expressed and may be used between parties if interoperable systems are to be implemented. It provides a set of standard “fields” that can be used to hold sensitivity information. It does not attempt to define what the contents of these “fields” should be. This approach is an improvement upon the only alternative that exists at the moment, which is for the provider to use an arbitrary means to express sensitivity that may not be useful to a recipient." -msgstr "" +msgstr "%PRODUCTNAME provides standardised means for such sensitivity information to be expressed and may be used between parties if interoperable systems are to be implemented. It provides a set of standard “fields” that can be used to hold sensitivity information. It does not attempt to define what the contents of these “fields” should be. This approach is an improvement upon the only alternative that exists at the moment, which is for the provider to use an arbitrary means to express sensitivity that may not be useful to a recipient." #. YkACm #: classification.xhp @@ -2624,7 +2624,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 "" +msgstr "%PRODUCTNAME allows customisation 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." #. Tcss6 #: classification.xhp @@ -3371,7 +3371,7 @@ "par_id170820161605428591\n" "help.text" msgid "The Remote files dialog appears. Select the remote file server." -msgstr "" +msgstr "The Remote files dialogue box appears. Select the remote file server." #. wQjzG #: cmis-remote-files.xhp @@ -6368,7 +6368,7 @@ "par_id61638377631743\n" "help.text" msgid "If the line containing the sep=| is not to be imported as data, remember to set the From row number in the dialog to 2. Note that this line will not be preserved when re-saving." -msgstr "" +msgstr "If the line containing the sep=| is not to be imported as data, remember to set the From row number in the dialogue box to 2. Note that this line will not be preserved when re-saving." #. oGd5z #: csv_params.xhp @@ -7673,7 +7673,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 "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 organised, 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." #. ADK4M #: data_register.xhp @@ -9077,7 +9077,7 @@ "par_id891627912224207\n" "help.text" msgid "The behavior of the tree view depends on the status of the Current Selection toggle button:" -msgstr "" +msgstr "The behaviour of the tree view depends on the status of the Current Selection toggle button:" #. CJUxG #: dev_tools.xhp @@ -9212,7 +9212,7 @@ "par_id71627913884995\n" "help.text" msgid "The information about the object is organized in columns in each tab. The set of columns displayed depend on the selected tab." -msgstr "" +msgstr "The information about the object is organised in columns in each tab. The set of columns displayed depend on the selected tab." #. RECVL #: dev_tools.xhp @@ -11561,7 +11561,7 @@ "par_id3147264\n" "help.text" msgid "Choose Tools - Customize, and click on the Toolbars tab." -msgstr "" +msgstr "Choose Tools - Customise, and click on the Toolbars tab." #. p5667 #: edit_symbolbar.xhp @@ -11777,7 +11777,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 "If a crash report is sent successfully, then a dialogue box will provide a URL for the report. To see the report, copy the URL and paste into a web browser." #. 3PFBB #: error_report.xhp @@ -11813,7 +11813,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 type and features; total RAM memory size; graphics device and driver)." -msgstr "" +msgstr "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU type and features; total RAM size; graphics device and driver)." #. oCk4J #: error_report.xhp @@ -12515,7 +12515,7 @@ "par_id7296975\n" "help.text" msgid "Choose View – Toolbars – Reset to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context." -msgstr "" +msgstr "Choose View – Toolbars – Reset to reset the toolbars to their default context sensitive behaviour. Now some toolbars will be shown automatically, dependent on the context." #. TpoEB #: floating_toolbar.xhp @@ -15782,7 +15782,7 @@ "par_id3159096\n" "help.text" msgid "Press Tab to select an icon. If you selected one of the icons from Rectangle to Freeform Polygon and you press Command Ctrl+Enter, an object of the selected type is created in default size." -msgstr "" +msgstr "Press Tab to select an icon. If you selected one of the icons from Rectangle to Freeform Polygon and you press Command Ctrl+Enter, an object of the selected type is created in default size." #. go9cM #: keyboard.xhp @@ -18896,7 +18896,7 @@ "par_id451607988966808\n" "help.text" msgid "The Template Manager recognizes template files by their file extension. The following extensions are recognized:" -msgstr "" +msgstr "The Template Manager recognises template files by their file extension. The following extensions are recognised:" #. m82BQ #: manage_templates.xhp @@ -18986,7 +18986,7 @@ "par_id181608073292539\n" "help.text" msgid "If you use the File - Save as Template dialog, then the name entered in that dialog is used as the filename and entered into the Title field. If you change the filename later, the template will still appear in the Template Manager according to the entry in the Title field." -msgstr "" +msgstr "If you use the File - Save as Template dialogue box, then the name entered in that dialogue box is used as the filename and entered into the Title field. If you change the filename later, the template will still appear in the Template Manager according to the entry in the Title field." #. 2dvtG #: manage_templates.xhp @@ -19013,7 +19013,7 @@ "par_id401607895018345\n" "help.text" msgid "The Template Manager displays templates located in the directories defined in the Paths dialog for Templates. The dialog is found by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths, selecting Templates, and clicking Edit." -msgstr "" +msgstr "The Template Manager displays templates located in the directories defined in the Paths dialogue box for Templates. The dialogue box is found by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths, selecting Templates, and clicking Edit." #. tV3qE #: manage_templates.xhp @@ -19058,7 +19058,7 @@ "par_id851607959591934\n" "help.text" msgid "Templates in the directories specified in User Path and its subdirectories are shown in the Template Manager. Subdirectories within subdirectories are not recognized." -msgstr "" +msgstr "Templates in the directories specified in User Path and its subdirectories are shown in the Template Manager. Subdirectories within subdirectories are not recognised." #. waqwG #: manage_templates.xhp @@ -19157,7 +19157,7 @@ "par_id241607963343716\n" "help.text" msgid "Categories within a Category are not possible, because subdirectories within subdirectories are not recognized." -msgstr "" +msgstr "Categories within a Category are not possible, because subdirectories within subdirectories are not recognised." #. 5UhGC #: manage_templates.xhp @@ -19166,7 +19166,7 @@ "par_id831608207492365\n" "help.text" msgid "You can only rename and delete categories in the Default Path selected in the Edit Paths dialog." -msgstr "" +msgstr "You can only rename and delete categories in the Default Path selected in the Edit Paths dialogue box." #. fihyU #: manage_templates.xhp @@ -21371,7 +21371,7 @@ "par_id1001629997571404\n" "help.text" msgid "In Calc, the Clone Formatting tool only copies formatting applied using the Format - Cells dialog or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the Format - Character dialog will not be copied using the Clone Formatting tool." -msgstr "" +msgstr "In Calc, the Clone Formatting tool only copies formatting applied using the Format - Cells dialogue box or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the Format - Character dialogue box will not be copied using the Clone Formatting tool." #. pjGa2 #: paintbrush.xhp @@ -21569,7 +21569,7 @@ "par_idN1070C\n" "help.text" msgid "Copies cell formatting specified using the Format - Cells dialog." -msgstr "" +msgstr "Copies cell formatting specified using the Format - Cells dialogue box." #. LFKkc #: pasting.xhp @@ -22577,7 +22577,7 @@ "par_id471562795247717\n" "help.text" msgid "Redacting documents blocks out words or portions of a document for authorized use or viewing. Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy." -msgstr "" +msgstr "Redacting documents blocks out words or portions of a document for authorised use or viewing. Redaction protects sensitive information and helps enterprises and organisations to comply with regulations on confidentiality or privacy." #. QdoMp #: redaction.xhp @@ -22712,7 +22712,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 "Redacted Export (Black): finalise your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file." #. HSvWX #: redaction.xhp @@ -22721,7 +22721,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 "Redacted Export (White): finalise your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file." #. 2w5mE #: redaction.xhp @@ -24611,7 +24611,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 "You can save any document as a template by selecting \"Template\" file type in the Save dialogue box. 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." #. 9uLRP #: standard_template.xhp @@ -25673,7 +25673,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 "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 dialogue box." #. PcEEX #: startcenter.xhp @@ -26123,7 +26123,7 @@ "par_id04162017064929216\n" "help.text" msgid "The Template Manager dialog makes it easy to manage templates and allows you to start new documents using templates." -msgstr "" +msgstr "The Template Manager dialogue box makes it easy to manage templates and allows you to start new documents using templates." #. MBtkj #: template_manager.xhp @@ -26258,7 +26258,7 @@ "par_id3155306\n" "help.text" msgid "To show templates from another folder in the My Templates category, choose %PRODUCTNAME - Preferences - Tools - Options - $[officename] - Paths, select Templates, press Edit, then press Add to open the file dialog for selecting the folder to add." -msgstr "" +msgstr "To show templates from another folder in the My Templates category, choose %PRODUCTNAME - Preferences - Tools - Options - $[officename] - Paths, select Templates, press Edit, then press Add to open the file dialogue box for selecting the folder to add." #. mB2AC #: template_manager.xhp @@ -26375,7 +26375,7 @@ "par_id041620170723518776\n" "help.text" msgid "If you want to move templates to a different category, then choose a template, or use CommandCtrl+click to select additional templates, then press the Move button at the bottom right to open a dialog box, where you can choose to move your selection to a different category or to a new category. Default templates cannot be moved, but copies can be created in other categories." -msgstr "" +msgstr "If you want to move templates to a different category, then choose a template, or use CommandCtrl+click to select additional templates, then press the Move button at the bottom right to open a dialogue box, where you can choose to move your selection to a different category or to a new category. Default templates cannot be moved, but copies can be created in other categories." #. bunpC #: template_manager.xhp @@ -26483,7 +26483,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Extensions Icon" #. pmxCc #: template_manager.xhp @@ -26600,7 +26600,7 @@ "par_id041620170723504317\n" "help.text" msgid "Select one or more templates to delete in the main window and press the Delete key, or right-click then choose Delete to delete the selected template(s). A dialog box will appear requesting confirmation. Choose Yes to delete or No to cancel." -msgstr "" +msgstr "Select one or more templates to delete in the main window and press the Delete key, or right-click then choose Delete to delete the selected template(s). A dialogue box will appear requesting confirmation. Choose Yes to delete or No to cancel." #. QQQyx #: template_manager.xhp @@ -27104,7 +27104,7 @@ "par_id731630843025888\n" "help.text" msgid "The Tip of the Day dialog displays useful tips for the user." -msgstr "" +msgstr "The Tip of the Day dialogue box displays useful tips for the user." #. eGRcH #: tipoftheday.xhp @@ -27149,7 +27149,7 @@ "par_id711630844302059\n" "help.text" msgid "Displays a dialog with a random tip on %PRODUCTNAME startup." -msgstr "" +msgstr "Displays a dialogue box with a random tip on %PRODUCTNAME start-up." #. PAxHM #: tipoftheday.xhp @@ -27167,7 +27167,7 @@ "par_id401630844318220\n" "help.text" msgid "Displays another tip of the day in the same dialog." -msgstr "" +msgstr "Displays another tip of the day in the same dialogue box." #. rSTiz #: tipoftheday.xhp @@ -27185,7 +27185,7 @@ "par_id511630844327861\n" "help.text" msgid "Close the Tip of the Day dialog." -msgstr "" +msgstr "Close the Tip of the Day dialogue box." #. C6Bb4 #: undo_formatting.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -1319,7 +1319,7 @@ "par_id601607813017831\n" "help.text" msgid "The following list shows the default predefined paths for storing user data, and explains what type of user data is stored in each path. Use the Edit dialog to change, add, or delete paths for the different types." -msgstr "" +msgstr "The following list shows the default predefined paths for storing user data, and explains what type of user data is stored in each path. Use the Edit dialogue box to change, add, or delete paths for the different types." #. WkpG4 #: 01010300.xhp @@ -1625,7 +1625,7 @@ "par_id3150439\n" "help.text" msgid "Internal Paths shows the paths where predefined content for %PRODUCTNAME is installed. These paths cannot be edited in this dialog box." -msgstr "" +msgstr "Internal Paths shows the paths where predefined content for %PRODUCTNAME is installed. These paths cannot be edited in this dialogue box." #. 2vzzF #: 01010300.xhp @@ -1760,7 +1760,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 "A language module can contain one, two or three sub-modules: 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 dialogue box." #. oeBAY #: 01010400.xhp @@ -3488,7 +3488,7 @@ "bm_id3155341\n" "help.text" msgid "views; defaults defaults; views settings; views icons; sizes icons; styles WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning mouse; middle button clipboard; selection clipboard selection clipboard Skia;settings Skia;graphics output notebook bar;icon size" -msgstr "" +msgstr "views; defaults defaults; views settings; views icons; sizes icons; styles WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning mouse; middle button clipboard; selection clipboard selection clipboard Skia;settings Skia;graphics output notebook bar;icon size" #. cGjPM #: 01010800.xhp @@ -3533,7 +3533,7 @@ "hd_id310720161612581529\n" "help.text" msgid "Icon Size" -msgstr "" +msgstr "Icon Size" #. 4uDBN #: 01010800.xhp @@ -3551,7 +3551,7 @@ "par_id3153947\n" "help.text" msgid "Specifies the display size of toolbar icons." -msgstr "" +msgstr "Specifies the display size of toolbar icons." #. vXois #: 01010800.xhp @@ -3974,7 +3974,7 @@ "par_id4743797\n" "help.text" msgid "Enter the smallest font size to apply antialiasing to." -msgstr "" +msgstr "Enter the smallest font size to apply anti-aliasing to." #. 2Z5jk #: 01010900.xhp @@ -5036,7 +5036,7 @@ "par_idN10595\n" "help.text" msgid "Opens a file dialog to select the email program." -msgstr "" +msgstr "Opens a file dialogue box to select the email program." #. KhbuR #: 01030000.xhp @@ -5396,7 +5396,7 @@ "par_id3145673\n" "help.text" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." #. gBDtB #: 01030500.xhp @@ -6125,7 +6125,7 @@ "par_id3145609\n" "help.text" msgid "These settings define the basic fonts for the predefined templates. You can also modify or customize the default text templates." -msgstr "" +msgstr "These settings define the basic fonts for the predefined templates. You can also modify or customise the default text templates." #. Cd5Am #: 01040300.xhp @@ -6206,7 +6206,7 @@ "par_id3144433\n" "help.text" msgid "Specifies the font and font size for the List paragraph style, which is inherited by all derived paragraph styles." -msgstr "" +msgstr "Specifies the font and font size for the List paragraph style, which is inherited by all derived paragraph styles." #. aQFY4 #: 01040300.xhp @@ -6296,7 +6296,7 @@ "par_id3153542\n" "help.text" msgid "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the File - Print dialog." -msgstr "" +msgstr "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the File - Print dialogue box." #. kHkS3 #: 01040400.xhp @@ -6773,7 +6773,7 @@ "par_id3149481\n" "help.text" msgid "Specifies that numbers entered into a text table cell are recognized and formatted as numbers. Table cells in %PRODUCTNAME Writer can recognize a number when it is represented in one of the number formats available in categories of Numbers, Percent, Currency, Date, Time, Scientific, Fraction and Boolean." -msgstr "" +msgstr "Specifies that numbers entered into a text table cell are recognised and formatted as numbers. Table cells in %PRODUCTNAME Writer can recognise a number when it is represented in one of the number formats available in categories of Numbers, Percent, Currency, Date, Time, Scientific, Fraction and Boolean." #. 4UzAW #: 01040500.xhp @@ -8231,7 +8231,7 @@ "hd_id691599000315902\n" "help.text" msgid "Show standardized page count" -msgstr "" +msgstr "Show standardised page count" #. DCAGD #: 01040900.xhp @@ -8249,7 +8249,7 @@ "hd_id511599000321915\n" "help.text" msgid "Characters per standardized page" -msgstr "" +msgstr "Characters per standardised page" #. AFkck #: 01040900.xhp @@ -8258,7 +8258,7 @@ "par_id271599002636069\n" "help.text" msgid "Set the number of characters for the standardized page." -msgstr "" +msgstr "Set the number of characters for the standardised page." #. RPuAH #: 01041000.xhp @@ -9941,7 +9941,7 @@ "par_id3148943\n" "help.text" msgid "Determines the behavior of the Enter key in a spreadsheet. Checking this option causes Enter to open cell contents for editing." -msgstr "" +msgstr "Determines the behaviour of the Enter key in a spreadsheet. Checking this option causes Enter to open cell contents for editing." #. NMaGC #: 01060300.xhp @@ -13955,7 +13955,7 @@ "par_id3145121\n" "help.text" 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 "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 recognised as a valid date." #. 6ECpC #: 01140000.xhp @@ -13964,7 +13964,7 @@ "par_id381606257267459\n" "help.text" msgid "If you type numbers and characters that correspond to the defined date acceptance patterns in a table cell, and then move the cursor outside of the cell, %PRODUCTNAME will automatically recognize and convert the input to a date, and format it according to the locale setting." -msgstr "" +msgstr "If you type numbers and characters that correspond to the defined date acceptance patterns in a table cell, and then move the cursor outside of the cell, %PRODUCTNAME will automatically recognise and convert the input to a date, and format it according to the locale setting." #. wU2Gq #: 01140000.xhp @@ -14063,7 +14063,7 @@ "par_id821606257357323\n" "help.text" msgid "In addition to the explicit patterns defined in the edit box, input matching the Y-M-D pattern is implicitly recognized and converted automatically to a date. Input that starts from 1 to 31 is not interpreted with this implicit Y-M-D pattern. Since %PRODUCTNAME 3.5, this input is formatted as YYYY-MM-DD (ISO 8601)." -msgstr "" +msgstr "In addition to the explicit patterns defined in the edit box, input matching the Y-M-D pattern is implicitly recognised and converted automatically to a date. Input that starts from 1 to 31 is not interpreted with this implicit Y-M-D pattern. Since %PRODUCTNAME 3.5, this input is formatted as YYYY-MM-DD (ISO 8601)." #. 8FexU #: 01140000.xhp @@ -16997,7 +16997,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 "Opens the Server Authentication dialogue box where you can specify the server authentication settings for secure email." #. AnELG #: mailmerge.xhp @@ -17249,7 +17249,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 "Enable the check to send information about your %PRODUCTNAME version, operating system and basic hardware. This information is used to optimise the download." #. AN7zk #: opencl.xhp @@ -17546,7 +17546,7 @@ "par_idN10667\n" "help.text" msgid "Select to always remove user data from file properties, comments and tracked changes. The names of authors in comments and changes will be replaced by generic values as \"Author1\", \"Author2\" and so forth. Time values will also be reset to a single standard value. 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 "Select to always remove user data from file properties, comments and tracked changes. The names of authors in comments and changes will be replaced by generic values as \"Author1\", \"Author2\" and so forth. Time values will also be reset to a single standard value. 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." #. HJEQF #: securityoptionsdialog.xhp @@ -17582,7 +17582,7 @@ "par_id79042\n" "help.text" msgid "If enabled, you must hold down the CommandCtrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink." -msgstr "" +msgstr "If enabled, you must hold down the CommandCtrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink." #. Vw6Bz #: securityoptionsdialog.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/shared.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2020-12-09 13:36+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1547062857.000000\n" #. DBz3U @@ -257,7 +257,7 @@ "par_idN1064A\n" "help.text" msgid "Icon Help" -msgstr "" +msgstr "Icon Help" #. iPjUH #: main0108.xhp @@ -347,7 +347,7 @@ "hd_id561629934889067\n" "help.text" msgid "Get Involved" -msgstr "" +msgstr "Get Involved" #. ZiLDo #: main0108.xhp @@ -356,7 +356,7 @@ "par_id501629934998665\n" "help.text" msgid "Opens the community Get Involved page in the web browser. The page describe areas of interest where you can collaborate with the %PRODUCTNAME community." -msgstr "" +msgstr "Opens the community Get Involved page in the web browser. The page describe areas of interest where you can collaborate with the %PRODUCTNAME community." #. YrMYp #: main0108.xhp @@ -365,7 +365,7 @@ "hd_id431629934866702\n" "help.text" msgid "Donate to %PRODUCTNAME" -msgstr "" +msgstr "Donate to %PRODUCTNAME" #. xoFgE #: main0108.xhp @@ -374,7 +374,7 @@ "par_id691629934873388\n" "help.text" msgid "%PRODUCTNAME is Free Software and is made available free of charge." -msgstr "" +msgstr "%PRODUCTNAME is Free Software and is made available free of charge." #. GAMwn #: main0108.xhp @@ -383,7 +383,7 @@ "par_id651629934878405\n" "help.text" msgid "Your donation, which is purely optional, supports our worldwide community." -msgstr "" +msgstr "Your donation, which is purely optional, supports our worldwide community." #. gGbbH #: main0108.xhp @@ -392,7 +392,7 @@ "par_id611629934882669\n" "help.text" msgid "If you like the software, please consider a donation." -msgstr "" +msgstr "If you like the software, please consider a donation." #. sWFkG #: main0108.xhp @@ -428,7 +428,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 %PRODUCTNAME) or %PRODUCTNAME since 2010-09-28." -msgstr "" +msgstr "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 %PRODUCTNAME) or %PRODUCTNAME since 2010-09-28." #. F8BFu #: main0108.xhp @@ -608,7 +608,7 @@ "par_idN107D8\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icon" #. wcCfo #: main0201.xhp @@ -644,7 +644,7 @@ "par_idN10855\n" "help.text" msgid "icon What's this?'" -msgstr "" +msgstr "icon What's this?'" #. C6Uid #: main0201.xhp @@ -959,7 +959,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 "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." #. tqTbR #: main0213.xhp @@ -2057,7 +2057,7 @@ "tit\n" "help.text" msgid "Spacing" -msgstr "" +msgstr "Spacing" #. yQezt #: submenu_spacing.xhp @@ -2066,7 +2066,7 @@ "hd_id411816022675979\n" "help.text" msgid "Spacing" -msgstr "" +msgstr "Spacing" #. 22dPh #: submenu_spacing.xhp @@ -2075,7 +2075,7 @@ "par_id398855439580084\n" "help.text" msgid "Opens a submenu where you can choose text spacing commands." -msgstr "" +msgstr "Opens a sub-menu where you can choose text spacing commands." #. 7Sh42 #: submenu_spacing.xhp @@ -2084,7 +2084,7 @@ "hd_id3154944\n" "help.text" msgid "Line Spacing: 1" -msgstr "" +msgstr "Line Spacing: 1" #. xxnjH #: submenu_spacing.xhp @@ -2093,7 +2093,7 @@ "hd_id3146969\n" "help.text" msgid "Line Spacing: 1.5" -msgstr "" +msgstr "Line Spacing: 1.5" #. acjb4 #: submenu_spacing.xhp @@ -2102,7 +2102,7 @@ "hd_id3153711\n" "help.text" msgid "Line Spacing: 2" -msgstr "" +msgstr "Line Spacing: 2" #. 44Px9 #: submenu_spacing.xhp @@ -2111,7 +2111,7 @@ "hd_id3147573\n" "help.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Increase Paragraph Spacing" #. zhqwZ #: submenu_spacing.xhp @@ -2120,7 +2120,7 @@ "par_id3150695\n" "help.text" msgid "Increases the paragraph spacing above the selected paragraph." -msgstr "" +msgstr "Increases the paragraph spacing above the selected paragraph." #. XCZUT #: submenu_spacing.xhp @@ -2129,7 +2129,7 @@ "hd_id3147574\n" "help.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Decrease Paragraph Spacing" #. EVYri #: submenu_spacing.xhp @@ -2138,7 +2138,7 @@ "par_id3150696\n" "help.text" msgid "Decreases the paragraph spacing above the selected paragraph." -msgstr "" +msgstr "Decreases the paragraph spacing above the selected paragraph." #. EsHFP #: submenu_spacing.xhp @@ -2147,7 +2147,7 @@ "hd_id3147575\n" "help.text" msgid "Increase Indent" -msgstr "" +msgstr "Increase Indent" #. BU6i9 #: submenu_spacing.xhp @@ -2156,7 +2156,7 @@ "par_id3150697\n" "help.text" msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased." -msgstr "" +msgstr "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased." #. YA8bT #: submenu_spacing.xhp @@ -2165,7 +2165,7 @@ "hd_id3147576\n" "help.text" msgid "Decrease Indent" -msgstr "" +msgstr "Decrease Indent" #. zVFFG #: submenu_spacing.xhp @@ -2174,7 +2174,7 @@ "par_id3150698\n" "help.text" msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs." -msgstr "" +msgstr "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs." #. MVHBc #: submenu_text.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/00.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/00.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2021-12-14 17:38+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563448745.000000\n" #. sqmGT @@ -248,7 +248,7 @@ "par_id8695944\n" "help.text" msgid "Click the Show Gluepoint Functions icon on the Drawing Bar" -msgstr "Click the Show Gluepoint Functions icon on the Drawing Bar" +msgstr "Click the Show Glue Point Functions icon on the Drawing Bar" #. cjzea #: 00000403.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -3911,7 +3911,7 @@ "par_id3108485\n" "help.text" msgid "Displays the Available Master Slides dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page." -msgstr "" +msgstr "Displays the Available Master Slides dialogue box, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page." #. Jg7LJ #: 05120000.xhp @@ -4001,7 +4001,7 @@ "par_id3956020\n" "help.text" msgid "Displays the Load Master Page dialog, where you can select additional page designs." -msgstr "" +msgstr "Displays the Load Master Page dialogue box, where you can select additional page designs." #. LZr7A #: 05120000.xhp @@ -4010,7 +4010,7 @@ "par_id3156020\n" "help.text" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "" +msgstr "Displays the Load Master Slide dialogue box, where you can select additional slide designs." #. BLSEy #: 05120500m.xhp @@ -6980,7 +6980,7 @@ "par_id3149207\n" "help.text" msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want. " -msgstr "" +msgstr "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want. " #. YgWfS #: 06100000.xhp @@ -8204,7 +8204,7 @@ "hd_id551623260579519\n" "help.text" msgid "Size" -msgstr "" +msgstr "Size" #. MxDGA #: bulletandposition.xhp @@ -8213,7 +8213,7 @@ "par_id521623261977095\n" "help.text" msgid "Set the size of the character and graphic bullets with respect to the paragraph font size." -msgstr "" +msgstr "Set the size of the character and graphic bullets with respect to the paragraph font size." #. 2pjgX #: bulletandposition.xhp @@ -8276,7 +8276,7 @@ "hd_id181623260599850\n" "help.text" msgid "Rel. Size" -msgstr "" +msgstr "Rel. Size" #. eP9FG #: bulletandposition.xhp @@ -8285,7 +8285,7 @@ "par_id281623260605208\n" "help.text" msgid "For character unordered and ordered lists, set the relative size of the list character. The relative size applies to the Before and After text as well." -msgstr "" +msgstr "For character unordered and ordered lists, set the relative size of the list character. The relative size applies to the Before and After text as well." #. CGphX #: bulletandposition.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -743,7 +743,7 @@ "hd_id3147264\n" "help.text" msgid "Transformations" -msgstr "" +msgstr "Transformations" #. EpoHs #: 10030000.xhp @@ -761,7 +761,7 @@ "par_id3149018\n" "help.text" msgid "Choose View - Toolbars - Transformations." -msgstr "" +msgstr "Choose View - Toolbars - Transformations." #. iDvMV #: 10030000.xhp @@ -770,7 +770,7 @@ "par_id401626114053741\n" "help.text" msgid "Click the arrow next to the Transformations icon on the Standard bar." -msgstr "" +msgstr "Click the arrow next to the Transformations icon on the Standard bar." #. QAxua #: 10030000.xhp @@ -779,7 +779,7 @@ "par_id3149665\n" "help.text" msgid "Icon Transformations" -msgstr "" +msgstr "Icon Transformations" #. ZKyMH #: 10030000.xhp @@ -788,7 +788,7 @@ "par_id3154018\n" "help.text" msgid "Transformations" -msgstr "" +msgstr "Transformations" #. pfG6c #: 10030000.xhp @@ -833,7 +833,7 @@ "par_id3146962\n" "help.text" msgid "Icon Rotate" -msgstr "" +msgstr "Icon Rotate" #. WCPSb #: 10030000.xhp @@ -869,7 +869,7 @@ "par_id3153035\n" "help.text" msgid "Icon Flip" -msgstr "" +msgstr "Icon Flip" #. Kz9PF #: 10030000.xhp @@ -914,7 +914,7 @@ "par_id3150928\n" "help.text" msgid "Icon In 3D rotation object" -msgstr "" +msgstr "Icon In 3-D rotation object" #. vCf5c #: 10030000.xhp @@ -950,7 +950,7 @@ "par_id3147167\n" "help.text" msgid "Icon Set in circle" -msgstr "" +msgstr "Icon Set in circle" #. jQBPp #: 10030000.xhp @@ -986,7 +986,7 @@ "par_id3150875\n" "help.text" msgid "Icon Set to circle" -msgstr "" +msgstr "Icon Set to circle" #. CHQyt #: 10030000.xhp @@ -1022,7 +1022,7 @@ "par_id3154693\n" "help.text" msgid "Icon Distort" -msgstr "" +msgstr "Icon Distort" #. 5Fh3F #: 10030000.xhp @@ -1076,7 +1076,7 @@ "par_id3154602\n" "help.text" msgid "Icon Transparency" -msgstr "" +msgstr "Icon Transparency" #. xZb79 #: 10030000.xhp @@ -1121,7 +1121,7 @@ "par_id3150990\n" "help.text" msgid "Icon Gradient" -msgstr "" +msgstr "Icon Gradient" #. nVb58 #: 10030000.xhp @@ -1148,7 +1148,7 @@ "bm_id3149948\n" "help.text" msgid "object bars; editing gluepoints" -msgstr "" +msgstr "object bars; editing glue points" #. GWD99 #: 10030200.xhp @@ -1157,7 +1157,7 @@ "hd_id3149948\n" "help.text" msgid "Gluepoints Bar" -msgstr "" +msgstr "Glue Points Bar" #. CjR3U #: 10030200.xhp @@ -1175,7 +1175,7 @@ "hd_id3149876\n" "help.text" msgid "Insert Gluepoint" -msgstr "" +msgstr "Insert Glue Point" #. ddyBH #: 10030200.xhp @@ -1355,7 +1355,7 @@ "hd_id3150875\n" "help.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Glue Point Relative" #. eaDid #: 10030200.xhp @@ -1382,7 +1382,7 @@ "par_id3149286\n" "help.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Glue Point Relative" #. SpABR #: 10030200.xhp @@ -1391,7 +1391,7 @@ "hd_id3149755\n" "help.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Glue Point Horizontal Left" #. 3QrV9 #: 10030200.xhp @@ -1418,7 +1418,7 @@ "par_id3158405\n" "help.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Glue Point Horizontal Left" #. Wwiiy #: 10030200.xhp @@ -1427,7 +1427,7 @@ "hd_id3154214\n" "help.text" msgid "Gluepoint Horizontal Center" -msgstr "Gluepoint Horizontal Centre" +msgstr "Glue Point Horizontal Centre" #. sFGAs #: 10030200.xhp @@ -1454,7 +1454,7 @@ "par_id3150706\n" "help.text" msgid "Gluepoint Horizontal Center" -msgstr "Gluepoint Horizontal Centre" +msgstr "Glue Point Horizontal Centre" #. pGdhP #: 10030200.xhp @@ -1463,7 +1463,7 @@ "hd_id3153748\n" "help.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Glue Point Horizontal Right" #. j57kW #: 10030200.xhp @@ -1490,7 +1490,7 @@ "par_id3154799\n" "help.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Glue Point Horizontal Right" #. CqkDB #: 10030200.xhp @@ -1499,7 +1499,7 @@ "hd_id3153540\n" "help.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Glue Point Vertical Top" #. HTixw #: 10030200.xhp @@ -1526,7 +1526,7 @@ "par_id3148681\n" "help.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Glue Point Vertical Top" #. V5AvY #: 10030200.xhp @@ -1535,7 +1535,7 @@ "hd_id3153678\n" "help.text" msgid "Gluepoint Vertical Center" -msgstr "Gluepoint Vertical Centre" +msgstr "Glue Point Vertical Centre" #. M5aQi #: 10030200.xhp @@ -1562,7 +1562,7 @@ "par_id3146130\n" "help.text" msgid "Gluepoint Vertical Center" -msgstr "Gluepoint Vertical Centre" +msgstr "Glue Point Vertical Centre" #. MbCWi #: 10030200.xhp @@ -1571,7 +1571,7 @@ "hd_id3147529\n" "help.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Glue Point Vertical Bottom" #. azpMi #: 10030200.xhp @@ -1598,7 +1598,7 @@ "par_id3156204\n" "help.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Glue Point Vertical Bottom" #. dkHqv #: 10050000.xhp @@ -3416,7 +3416,7 @@ "par_id3148604\n" "help.text" msgid "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, gluepoints appear. A gluepoint is a fixed point where you can attach a connector line. You can add custom gluepoints to an object." -msgstr "" +msgstr "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, glue points appear. A glue point is a fixed point where you can attach a connector line. You can add custom glue points to an object." #. qX29Y #: 10100000.xhp @@ -5297,7 +5297,7 @@ "tit\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue Points" #. 6MNBW #: 13010000.xhp @@ -5306,7 +5306,7 @@ "hd_id3153144\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue Points" #. 9qUBf #: 13010000.xhp @@ -5315,7 +5315,7 @@ "par_id3146120\n" "help.text" msgid "Insert or modify the properties of a gluepoint. A gluepoint is a custom connection point where you can attach a connector line." -msgstr "" +msgstr "Insert or modify the properties of a glue point. A glue point is a custom connection point where you can attach a connector line." #. cSpbQ #: 13010000.xhp @@ -5333,7 +5333,7 @@ "par_id3147339\n" "help.text" msgid "Show Gluepoints Functions" -msgstr "" +msgstr "Show Glue Points Functions" #. FipQc #: 13020000.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -590,7 +590,7 @@ "par_id3149875\n" "help.text" msgid "Choose View - Animation, to open the Custom Animation pane in the Sidebar. Click on Add (+) button, and then select an animation effect." -msgstr "" +msgstr "Choose View - Animation, to open the Custom Animation pane in the Sidebar. Click on Add (+) button, and then select an animation effect." #. iHWsE #: animated_objects.xhp @@ -932,7 +932,7 @@ "par_id3143233\n" "help.text" msgid "Choose View - Slide Sorter, select one or more slides, and then drag the slides to another location. To select multiple slides, hold down shift and click on the slides. To create a copy of a selected slide, hold down CommandCtrl while you drag. The mouse pointer changes to a plus sign. You can also drag a copy of a slide into another open $[officename] Impress document." -msgstr "" +msgstr "Choose View - Slide Sorter, select one or more slides, and then drag the slides to another location. To select multiple slides, hold down shift and click on the slides. To create a copy of a selected slide, hold down CommandCtrl while you drag. The mouse pointer changes to a plus sign. You can also drag a copy of a slide into another open $[officename] Impress document." #. zszFb #: arrange_slides.xhp @@ -1013,7 +1013,7 @@ "par_id624713\n" "help.text" msgid "Click Set Background Picture for Slide in the context menu of a slide in Normal view to select an image file. This file is used as a background picture." -msgstr "" +msgstr "Click Set Background Picture for Slide in the context menu of a slide in Normal view to select an image file. This file is used as a background picture." #. 6eFDv #: background.xhp @@ -1040,7 +1040,7 @@ "par_id644713\n" "help.text" msgid "Click Set Background Picture for Page in the context menu of a page in Normal view to select an image file. This file is used as a background picture." -msgstr "" +msgstr "Click Set Background Picture for Page in the context menu of a page in Normal view to select an image file. This file is used as a background picture." #. KuE3E #: background.xhp @@ -1139,7 +1139,7 @@ "par_id3145356\n" "help.text" msgid "In the Fill area, select Image, and then click an image in the list." -msgstr "" +msgstr "In the Fill area, select Image, and then click an image in the list." #. 8yUQT #: background.xhp @@ -1148,7 +1148,7 @@ "par_id3150757\n" "help.text" msgid "To use a custom image for the slidepage background, click the Import button. Locate the image and click Open. On returning to the Background tab, the imported image is in the Image list." -msgstr "" +msgstr "To use a custom image for the slidepage background, click the Import button. Locate the image and click Open. On returning to the Background tab, the imported image is in the Image list." #. 24cCs #: background.xhp @@ -1319,7 +1319,7 @@ "par_id7954954\n" "help.text" msgid "If you are using a mouse with a scroll wheel, you can hold down CommandCtrl and turn the wheel to change the zoom factor in all main modules of %PRODUCTNAME." -msgstr "" +msgstr "If you are using a mouse with a scroll wheel, you can hold down CommandCtrl and turn the wheel to change the zoom factor in all main modules of %PRODUCTNAME." #. 3DGwA #: change_scale.xhp @@ -1625,7 +1625,7 @@ "bm_id0919200803534995\n" "help.text" msgid "gluepoints;using" -msgstr "" +msgstr "glue points;using" #. W457q #: gluepoints.xhp @@ -1661,7 +1661,7 @@ "par_id091920080304108\n" "help.text" msgid "Do one of the following to get existing gluepoints visible for all elements:" -msgstr "" +msgstr "Do one of the following to get existing glue points visible for all elements:" #. YAFf7 #: gluepoints.xhp @@ -1670,7 +1670,7 @@ "par_id0919200803041082\n" "help.text" msgid "Click the Gluepoints icon on the Drawing toolbar; or" -msgstr "" +msgstr "Click the Glue Points icon on the Drawing toolbar; or" #. R7Yw9 #: gluepoints.xhp @@ -1679,7 +1679,7 @@ "par_id0919200803041186\n" "help.text" msgid "Choose Edit - Gluepoints." -msgstr "" +msgstr "Choose Edit - Glue Points." #. bdm6Q #: gluepoints.xhp @@ -1688,7 +1688,7 @@ "par_id0919200803041160\n" "help.text" msgid "Click the Insert Gluepoint icon on the Gluepoints toolbar." -msgstr "" +msgstr "Click the Insert Glue Point icon on the Glue Points toolbar." #. CEpWX #: gluepoints.xhp @@ -1697,7 +1697,7 @@ "par_id09192008030411601\n" "help.text" msgid "Select element on slide where you want to add gluepoints." -msgstr "" +msgstr "Select element on slide where you want to add glue points." #. si9dG #: gluepoints.xhp @@ -1715,7 +1715,7 @@ "par_id0919200803041133\n" "help.text" msgid "If the shape is filled, you can click anywhere inside the shape. If the shape is unfilled, you can click the border to insert a gluepoint. Once inserted, you can drag the gluepoint to another position inside the shape." -msgstr "" +msgstr "If the shape is filled, you can click anywhere inside the shape. If the shape is unfilled, you can click the border to insert a glue point. Once inserted, you can drag the glue point to another position inside the shape." #. bPCgi #: gluepoints.xhp @@ -1724,7 +1724,7 @@ "par_id0919200803041250\n" "help.text" msgid "With the four icons next to the Insert Gluepoint icon, you choose the directions which will be permitted for a connector at this gluepoint. You can choose one or more directions for a particular gluepoint." -msgstr "" +msgstr "With the four icons next to the Insert Glue Point icon, you choose the directions which will be permitted for a connector at this glue point. You can choose one or more directions for a particular glue point." #. 88UhH #: gluepoints.xhp @@ -1733,7 +1733,7 @@ "par_id0919200803041298\n" "help.text" msgid "If the Gluepoint Relative icon is active, the gluepoint moves when you resize the object to keep its position relative to the object borders." -msgstr "" +msgstr "If the Glue Point Relative icon is active, the glue point moves when you resize the object to keep its position relative to the object borders." #. qqnmk #: gluepoints.xhp @@ -1742,7 +1742,7 @@ "par_id0919200803041223\n" "help.text" msgid "If the Gluepoint Relative icon is not active, the icons next to it are no longer grayed out. With these icons you can decide where a gluepoint will be placed when the size of the object is changed." -msgstr "" +msgstr "If the Glue Point Relative icon is not active, the icons next to it are no longer greyed out. With these icons you can decide where a glue point will be placed when the size of the object is changed." #. bvoTQ #: html_export.xhp @@ -1886,7 +1886,7 @@ "par_id3146313\n" "help.text" msgid "In the place where you want to insert the text, choose Slide - Insert Slide from File Page - Insert Page from File." -msgstr "" +msgstr "In the place where you want to insert the text, choose Slide - Insert Slide from File Page - Insert Page from File." #. NCRij #: html_import.xhp @@ -2516,7 +2516,7 @@ "par_id3150249\n" "help.text" msgid "Under Existing Slides, select the slides to add to your slide show, and click the >> button. Hold down Shift to select a range of consecutive slides, or CommandCtrl to select multiple individual slides." -msgstr "" +msgstr "Under Existing Slides, select the slides to add to your slide show, and click the >> button. Hold down Shift to select a range of consecutive slides, or CommandCtrl to select multiple individual slides." #. KyDj4 #: individual.xhp @@ -2741,7 +2741,7 @@ "par_id3150212\n" "help.text" msgid "$[officename] Impress AutoLayouts use placeholders for slide titles, text, and objects. To select a placeholder, press CommandCtrl+Enter. To move to the next placeholder, press CommandCtrl+Enter again." -msgstr "" +msgstr "$[officename] Impress AutoLayouts use placeholders for slide titles, text, and objects. To select a placeholder, press CommandCtrl+Enter. To move to the next placeholder, press CommandCtrl+Enter again." #. 7bBsE #: keyboard.xhp @@ -2750,7 +2750,7 @@ "par_id3166467\n" "help.text" msgid "If you press CommandCtrl+Enter after you reach the last placeholder in a slide, a new slide is inserted after the current slide. The new slide uses the same layout as the current slide." -msgstr "" +msgstr "If you press CommandCtrl+Enter after you reach the last placeholder in a slide, a new slide is inserted after the current slide. The new slide uses the same layout as the current slide." #. FinYA #: keyboard.xhp @@ -2768,7 +2768,7 @@ "hd_id941616435513490\n" "help.text" msgid "To start a Slide Show" -msgstr "" +msgstr "To start a Slide Show" #. o6aBw #: keyboard.xhp @@ -2777,7 +2777,7 @@ "par_id3150650\n" "help.text" msgid "To start a slide show from the beginning, press F5." -msgstr "" +msgstr "To start a slide show from the beginning, press F5." #. WaqYV #: keyboard.xhp @@ -2786,7 +2786,7 @@ "par_id911616435506012\n" "help.text" msgid "To start a slide show from the current slide, press Shift+F5." -msgstr "" +msgstr "To start a slide show from the current slide, press Shift+F5." #. K3r3c #: keyboard.xhp @@ -2930,7 +2930,7 @@ "par_id3156060\n" "help.text" msgid "Use the arrow keys to navigate to the slide that you want to copy, and then press CommandCtrl+C." -msgstr "" +msgstr "Use the arrow keys to navigate to the slide that you want to copy, and then press CommandCtrl+C." #. FwWfn #: keyboard.xhp @@ -2939,7 +2939,7 @@ "par_id3148769\n" "help.text" msgid "Move to the slide where you want to paste the copied slide, and then press CommandCtrl+V." -msgstr "" +msgstr "Move to the slide where you want to paste the copied slide, and then press CommandCtrl+V." #. pCBar #: keyboard.xhp @@ -2957,7 +2957,7 @@ "par_id3155987\n" "help.text" msgid "Use the arrow keys to navigate to the slide that you want to move, and then press CommandCtrl+X." -msgstr "" +msgstr "Use the arrow keys to navigate to the slide that you want to move, and then press CommandCtrl+X." #. CRsNL #: keyboard.xhp @@ -2966,7 +2966,7 @@ "par_id3147171\n" "help.text" msgid "Position the cursor where you want to move the slide, and then press CommandCtrl+V." -msgstr "" +msgstr "Position the cursor where you want to move the slide, and then press CommandCtrl+V." #. LUhAj #: keyboard.xhp @@ -3776,7 +3776,7 @@ "par_id3154702\n" "help.text" msgid "Select Slide - Change Slide MasterPage - Master Page." -msgstr "" +msgstr "Select Slide - Change Slide MasterPage - Master Page." #. AvkGN #: masterpage.xhp @@ -3866,7 +3866,7 @@ "par_id21631211553150\n" "help.text" msgid "Check Delete unused backgrounds to remove unreferenced background slides and presentation layouts from the document." -msgstr "" +msgstr "Check Delete unused backgrounds to remove unreferenced background slides and presentation layouts from the document." #. rnFQF #: masterpage.xhp @@ -4190,7 +4190,7 @@ "par_id3156257\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue Points" #. 3LhEr #: page_copy.xhp @@ -4199,7 +4199,7 @@ "tit\n" "help.text" msgid "Insert Slide from File" -msgstr "" +msgstr "Insert Slide from File" #. 34kPB #: page_copy.xhp @@ -4208,7 +4208,7 @@ "bm_id3146971\n" "help.text" msgid "copying; slides slides; copying between documents pages; copying inserting; slides from files pasting;slides from other presentations" -msgstr "" +msgstr "copying; slides slides; copying between documents pages; copying inserting; slides from files pasting;slides from other presentations" #. BCJDc #: page_copy.xhp @@ -4217,7 +4217,7 @@ "hd_id3146971\n" "help.text" msgid "Insert Slide from File" -msgstr "" +msgstr "Insert Slide from File" #. BNyAE #: page_copy.xhp @@ -4649,7 +4649,7 @@ "par_id221120161524594919\n" "help.text" msgid "If several images are in the same folder, you can select a group of photos using the Shift or CommandCtrl keys while clicking on their filenames." -msgstr "" +msgstr "If several images are in the same folder, you can select a group of photos using the Shift or CommandCtrl keys while clicking on their filenames." #. z7nPC #: photo_album.xhp @@ -5585,7 +5585,7 @@ "bm_id5592516\n" "help.text" msgid "running slide shows showing;slide shows slide shows; starting presentations; starting starting; slide shows automatic slide shows slide transitions;automatic automatic slide transition" -msgstr "" +msgstr "running slide shows showing;slide shows slide shows; starting presentations; starting starting; slide shows automatic slide shows slide transitions;automatic automatic slide transition" #. ZwZRH #: show.xhp @@ -5648,7 +5648,7 @@ "par_id391634159318692\n" "help.text" msgid "Press Esc to abort the slide show before its end." -msgstr "" +msgstr "Press Esc to abort the slide show before its end." #. yF4a5 #: show.xhp @@ -5693,7 +5693,7 @@ "par_id9168980\n" "help.text" msgid "In the Advance Slide area, click After and enter a time duration." -msgstr "" +msgstr "In the Advance Slide area, click After and enter a time duration." #. HfVRx #: show.xhp @@ -5702,7 +5702,7 @@ "par_id9766533\n" "help.text" msgid "Click Apply Transition to All Slides." -msgstr "" +msgstr "Click Apply Transition to All Slides." #. yfpGu #: show.xhp @@ -5738,7 +5738,7 @@ "par_id1336405\n" "help.text" msgid "In the Presentation Mode area, choose Loop and repeat after and set the duration of the pause between shows." -msgstr "" +msgstr "In the Presentation Mode area, choose Loop and repeat after and set the duration of the pause between shows." #. A4BCr #: show.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/simpress.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/simpress.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2020-12-28 07:54+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1563447015.000000\n" #. 2Va4w @@ -1031,7 +1031,7 @@ "par_idN10783\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue Points" #. BY9EA #: main0210.xhp @@ -1040,7 +1040,7 @@ "par_idN10793\n" "help.text" msgid "Enables you to edit gluepoints on your drawing." -msgstr "" +msgstr "Enables you to edit glue points on your drawing." #. H6Dh5 #: main0210.xhp @@ -1490,7 +1490,7 @@ "hd_id3145116\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Glue Points" #. BQq7C #: main_edit.xhp @@ -1499,7 +1499,7 @@ "par_id3147403\n" "help.text" msgid "Switches the Edit Gluepoints mode on and off." -msgstr "" +msgstr "Switches the Edit Glue Points mode on and off." #. exzAB #: main_edit.xhp @@ -1832,7 +1832,7 @@ "par_id111615494747246\n" "help.text" msgid "Displays a dialog box where the following elements from the master slide can be enabled or disabled:" -msgstr "" +msgstr "Displays a dialogue box where the following elements from the master slide can be enabled or disabled:" #. fvE2V #: main_slide.xhp @@ -1922,7 +1922,7 @@ "par_id901615495187958\n" "help.text" msgid "Opens a dialog box where a name can be set for the current slide." -msgstr "" +msgstr "Opens a dialogue box where a name can be set for the current slide." #. D6GtH #: main_slide.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/smath/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/smath/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/smath/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/smath/01.po 2022-07-15 19:12:51.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-05-14 14:16+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -284,7 +284,7 @@ "par_id3148571\n" "help.text" msgid "Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects." -msgstr "" +msgstr "Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects." #. WGriM #: 03070000.xhp @@ -12272,7 +12272,7 @@ "par_id3145115\n" "help.text" msgid "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points." -msgstr "" +msgstr "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points." #. qX3wh #: 05020000.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 diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2020-09-14 13:35+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1547982115.000000\n" #. E9tti @@ -1877,7 +1877,7 @@ "par_id3150557\n" "help.text" msgid "Icon Graphics Properties" -msgstr "" +msgstr "Icon Graphics Properties" #. nQDmh #: 00000405.xhp @@ -2597,7 +2597,7 @@ "par_id3151276\n" "help.text" msgid "Icon Object Properties" -msgstr "" +msgstr "Icon Object Properties" #. vpeBB #: 00000405.xhp @@ -2615,7 +2615,7 @@ "par_id3152973\n" "help.text" msgid "Icon Frame Properties" -msgstr "" +msgstr "Icon Frame Properties" #. CZwgM #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -698,7 +698,7 @@ "par_id3149802\n" "help.text" msgid "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." -msgstr "" +msgstr "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organise master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." #. 3Bt3V #: 02110000.xhp @@ -3776,7 +3776,7 @@ "par_id3151251\n" "help.text" msgid "Displays the type of index that the selected entry belongs to. You cannot change the index type of an index entry in this dialog. Instead, you must delete the index entry from the document, and then insert it again in a different index type." -msgstr "" +msgstr "Displays the type of index that the selected entry belongs to. You cannot change the index type of an index entry in this dialogue box. Instead, you must delete the index entry from the document, and then insert it again in a different index type." #. HjkxD #: 02160000.xhp @@ -5441,7 +5441,7 @@ "par_id971581935166865\n" "help.text" msgid "To rename a bookmark, select the bookmark, press Rename, then type the new name in the dialog box." -msgstr "" +msgstr "To rename a bookmark, select the bookmark, press Rename, then type the new name in the dialogue box." #. aLuDE #: 04040000.xhp @@ -5459,7 +5459,7 @@ "par_id3151251\n" "help.text" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "" +msgstr "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialogue box will follow." #. zfGWi #: 04040000.xhp @@ -6656,7 +6656,7 @@ "par_id3149805\n" "help.text" msgid "Inserts a field at the current cursor position. The dialog lists all available fields." -msgstr "" +msgstr "Inserts a field at the current cursor position. The dialogue box lists all available fields." #. cFGme #: 04090000.xhp @@ -6989,7 +6989,7 @@ "par_id3145613\n" "help.text" msgid "If a field is displaying a date, time or number, then Format is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "If a field is displaying a date, time or number, then Format is used to customise the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." #. ErwZ7 #: 04090001.xhp @@ -6998,7 +6998,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 "When you click \"Additional formats\", the Number Format dialogue box opens, where you can define a custom format. " #. ECQSr #: 04090001.xhp @@ -7286,7 +7286,7 @@ "par_id971618826026891\n" "help.text" msgid "paragraphs with a paragraph style assigned a numbering scheme in the Tools > Chapter Numbering dialog" -msgstr "" +msgstr "paragraphs with a paragraph style assigned a numbering scheme in the Tools > Chapter Numbering dialogue box" #. aJ9QE #: 04090002.xhp @@ -7295,7 +7295,7 @@ "par_id1001618826039875\n" "help.text" msgid "ordered list paragraphs, formatted with the Formatting toolbar or Bullets and Numbering dialog" -msgstr "" +msgstr "ordered list paragraphs, formatted with the Formatting toolbar or Bullets and Numbering dialogue box" #. EsEhC #: 04090002.xhp @@ -7844,7 +7844,7 @@ "par_id3147564\n" "help.text" msgid "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an Input list field in your document or press CommandCtrl+Shift+F9 to display the Choose Item dialog." -msgstr "" +msgstr "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an Input list field in your document or press CommandCtrl+Shift+F9 to display the Choose Item dialogue box." #. Bsz3R #: 04090003.xhp @@ -8384,7 +8384,7 @@ "par_id3148434\n" "help.text" msgid "Closes the current Input list and displays the next, if available. You see this button when you open the Choose Item dialog by CommandCtrl+Shift+F9." -msgstr "" +msgstr "Closes the current Input list and displays the next, if available. You see this button when you open the Choose Item dialogue box by CommandCtrl+Shift+F9." #. Yjhgp #: 04090004.xhp @@ -8465,7 +8465,7 @@ "par_id3147490\n" "help.text" msgid "Inserts the comments as entered in the Description tab page of the File - Properties dialog." -msgstr "" +msgstr "Inserts the comments as entered in the Description tab page of the File - Properties dialogue box." #. fZJ33 #: 04090004.xhp @@ -8501,7 +8501,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 "Inserts the contents of the properties found on the Custom Properties tab of the File - Properties dialogue box. (Only shown if Custom properties are added.)" #. GZvq9 #: 04090004.xhp @@ -8519,7 +8519,7 @@ "par_id3150912\n" "help.text" msgid "Inserts the keywords as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Inserts the keywords as entered in the Description tab of the File - Properties dialogue box." #. 2CUCo #: 04090004.xhp @@ -8591,7 +8591,7 @@ "par_id3146942\n" "help.text" msgid "Inserts the subject as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Inserts the subject as entered in the Description tab of the File - Properties dialogue box." #. BeCQj #: 04090004.xhp @@ -8609,7 +8609,7 @@ "par_id3150033\n" "help.text" msgid "Inserts the title as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Inserts the title as entered in the Description tab of the File - Properties dialogue box." #. nK4Xe #: 04090004.xhp @@ -8852,7 +8852,7 @@ "par_id3151255\n" "help.text" msgid "The variables are displayed in the Select field. When you click the Insert button, the dialog Review Fields appears, where you can enter the new value or additional text as a remark." -msgstr "" +msgstr "The variables are displayed in the Select field. When you click the Insert button, the Review Fields dialogue box appears, where you can enter the new value or additional text as a remark." #. tbz9T #: 04090005.xhp @@ -9878,7 +9878,7 @@ "par_id3154571\n" "help.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 "This box displays the name that you entered in the Reference box on the Functions or Variables tab of the Fields dialogue box. The box underneath displays the contents of the field." #. 4YeCA #: 04090100.xhp @@ -11975,7 +11975,7 @@ "par_id1209200804373840\n" "help.text" msgid "You can also assign outline levels to paragraphs in the Outline & List tab page of the Format - Paragraph dialog." -msgstr "" +msgstr "You can also assign outline levels to paragraphs in the Outline & List tab page of the Format - Paragraph dialogue box." #. y5UNJ #: 04120211.xhp @@ -14603,7 +14603,7 @@ "par_id3150762\n" "help.text" msgid "To resize a selected frame or object, first press CommandCtrl+Tab. Now one of the handles blinks to show that it is selected. To select another handle, press CommandCtrl+Tab again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down OptionAlt, and then press an arrow key." -msgstr "" +msgstr "To resize a selected frame or object, first press CommandCtrl+Tab. Now one of the handles blinks to show that it is selected. To select another handle, press CommandCtrl+Tab again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down OptionAlt, and then press an arrow key." #. 7mm46 #: 04130100.xhp @@ -16295,7 +16295,7 @@ "par_id3148774\n" "help.text" msgid "Specify the formatting styles and the layout for the current page style, including page margins, headers and footers, and the page background." -msgstr "" +msgstr "Specify the formatting styles and the layout for the current page style, including page margins, headers and footers, and the page background." #. zsFam #: 05040500.xhp @@ -20435,7 +20435,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 "Opens a dialogue box where you can modify the properties of the selected object, for example, its size and name." #. F8EcE #: 05080000.xhp @@ -20849,7 +20849,7 @@ "par_id3153530\n" "help.text" msgid "Change all the other column widths by the same percentage as the one being changed. For example, if you reduce by half the size of a column, the sizes of all the other columns will be halved. This option requires that Adapt table width can be enabled." -msgstr "" +msgstr "Change all the other column widths by the same percentage as the one being changed. For example, if you reduce by half the size of a column, the sizes of all the other columns will be halved. This option requires that Adapt table width can be enabled." #. uFgLp #: 05090200.xhp @@ -21074,7 +21074,7 @@ "par_id3150983\n" "help.text" msgid "To change the behavior of tables in a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table." -msgstr "To change the behavior of tables in a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table." +msgstr "To change the behaviour of tables in a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table." #. n2qnF #: 05090201.xhp @@ -22577,7 +22577,7 @@ "par_id3154650\n" "help.text" msgid "Character styles provide a way to customize the formatting for individual characters. Use character styles to change the properties of a character, word or selected part of a paragraph. When you apply a character style to a text selection, the character style properties override the corresponding paragraph character properties." -msgstr "" +msgstr "Character styles provide a way to customise the formatting for individual characters. Use character styles to change the properties of a character, word or selected part of a paragraph. When you apply a character style to a text selection, the character style properties override the corresponding paragraph character properties." #. 2RR59 #: 05130002.xhp @@ -22586,7 +22586,7 @@ "par_id541610673006306\n" "help.text" msgid "For example, if you apply a character style with 15pt font size to a selection in a paragraph with character property of 12pt font size, the selection is set to 15pt, while the rest of the paragraph remains with 12pt font size." -msgstr "" +msgstr "For example, if you apply a character style with 15pt font size to a selection in a paragraph with character property of 12pt font size, the selection is set to 15pt, while the rest of the paragraph remains with 12pt font size." #. STs3B #: 05130002.xhp @@ -22595,7 +22595,7 @@ "par_id751610803325140\n" "help.text" msgid "The Default Character Style is actually the set of character properties of the current paragraph style. Use the Default Character Style to reset the character properties of the selection to those of the paragraph style. You cannot customize the Default Character Style." -msgstr "" +msgstr "The Default Character Style is actually the set of character properties of the current paragraph style. Use the Default Character Style to reset the character properties of the selection to those of the paragraph style. You cannot customise the Default Character Style." #. KT4mr #: 05130002.xhp @@ -22613,7 +22613,7 @@ "par_id701610668103877\n" "help.text" msgid "Use the Contains section in the Organizer to see the properties of the character style." -msgstr "" +msgstr "Use the Contains section in the Organiser to see the properties of the character style." #. VkwfE #: 05130004.xhp @@ -22640,7 +22640,7 @@ "par_id3149501\n" "help.text" msgid "Here you can create a List Style. The List Styles are organized in the Styles window." -msgstr "" +msgstr "Here you can create a List Style. The List Styles are organised in the Styles window." #. hVmyj #: 05130004.xhp @@ -22658,7 +22658,7 @@ "par_id3151390\n" "help.text" msgid "Ordered lists and unordered lists created in the Bullets and Numbering dialog or with the Toggle Ordered List and Toggle Unordered List icons of the Formatting bar use direct formatting. They are not list styles." -msgstr "" +msgstr "Ordered lists and unordered lists created in the Bullets and Numbering dialogue box or with the Toggle Ordered List and Toggle Unordered List icons of the Formatting bar use direct formatting. They are not list styles." #. UgisA #: 05130100.xhp @@ -23243,7 +23243,7 @@ "par_idN10A36\n" "help.text" msgid "Opens the Load Styles from Template dialog to import styles from another document." -msgstr "" +msgstr "Opens the Load Styles from Template dialogue box to import styles from another document." #. FEpjX #: 05140000.xhp @@ -23306,7 +23306,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 "You can assign shortcut keys to Styles from the Tools - Customise - 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." #. jynAF #: 05140000.xhp @@ -24116,7 +24116,7 @@ "par_id3147338\n" "help.text" msgid "Displays the available slide design categories." -msgstr "" +msgstr "Displays the available slide design categories." #. WGb32 #: 05170000.xhp @@ -24134,7 +24134,7 @@ "par_id3155337\n" "help.text" msgid "Displays the templates for the selected design category." -msgstr "" +msgstr "Displays the templates for the selected design category." #. zu7wC #: 05170000.xhp @@ -24152,7 +24152,7 @@ "par_id3150344\n" "help.text" msgid "Shows or hides a preview of a selected master slide." -msgstr "" +msgstr "Shows or hides a preview of a selected master slide." #. M5edi #: 05170000.xhp @@ -24179,7 +24179,7 @@ "par_id3157338\n" "help.text" msgid "Displays the available page design categories." -msgstr "" +msgstr "Displays the available page design categories." #. wYRwi #: 05170000.xhp @@ -24197,7 +24197,7 @@ "par_id3155837\n" "help.text" msgid "Displays the pages designs for the selected design category." -msgstr "" +msgstr "Displays the pages designs for the selected design category." #. FLsVG #: 05170000.xhp @@ -24215,7 +24215,7 @@ "par_id315054\n" "help.text" msgid "Shows or hides a preview of a selected page design." -msgstr "" +msgstr "Shows or hides a preview of a selected page design." #. fYaPW #: 05170000.xhp @@ -24350,7 +24350,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 "Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given." #. EqEyd #: 05170000.xhp @@ -24854,7 +24854,7 @@ "par_id3145246\n" "help.text" msgid "Specifies the numbering scheme and outline format for chapter numbering in the current document." -msgstr "" +msgstr "Specifies the numbering scheme and outline format for chapter numbering in the current document." #. PKJax #: 06060000.xhp @@ -24863,7 +24863,7 @@ "par_id3150934\n" "help.text" msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level." -msgstr "" +msgstr "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialogue box to assign a different paragraph style to an outline level." #. DpAKZ #: 06060000.xhp @@ -24872,7 +24872,7 @@ "par_id8237250\n" "help.text" msgid "If you want numbered headings, choose Tools - Chapter Numbering. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the Toggle Ordered List icon on the Formatting Bar or the Format - Bullets and Numbering dialog." -msgstr "" +msgstr "If you want numbered headings, choose Tools - Chapter Numbering. This command opens a dialogue box where numbering schemes can be assigned to paragraph styles used for headings. Do not use the Toggle Ordered List icon on the Formatting Bar or the Format - Bullets and Numbering dialogue box." #. DFbiG #: 06060000.xhp @@ -24935,7 +24935,7 @@ "par_id3155892\n" "help.text" msgid "Opens a dialog where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents." -msgstr "" +msgstr "Opens a dialogue box where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents." #. G9Fz2 #: 06060100.xhp @@ -25592,7 +25592,7 @@ "par_id334242345\n" "help.text" msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style Footnote. Press Command+TF11 to open Styles dialog and select Footnote from the list of paragraph styles. Open the local menu with right click and choose Modify. Go to the Indents & Spacing tab page and set indent to 0 before and after the paragraph, including the first line. On Tabs tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in Footnotes/Endnotes Settings dialog enter \\t into the Before and After edit boxes." -msgstr "" +msgstr "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style Footnote. Press Command+TF11 to open Styles dialogue box and select Footnote from the list of paragraph styles. Open the local menu with right click and choose Modify. Go to the Indents & Spacing tab page and set indent to 0 before and after the paragraph, including the first line. On Tabs tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in Footnotes/Endnotes Settings dialogue box enter \\t into the Before and After edit boxes." #. s8xS8 #: 06080100.xhp @@ -27212,7 +27212,7 @@ "par_id951630940172830\n" "help.text" msgid "Review common accessibility problems in the document, and support for PDF/UA specifications in the PDF export dialog." -msgstr "" +msgstr "Review common accessibility problems in the document, and support for PDF/UA specifications in the PDF export dialogue box." #. EYLLt #: accessibility_check.xhp @@ -27239,7 +27239,7 @@ "par_id901630941406987\n" "help.text" msgid "The Accessibility Check tool traverses the document structure and gather all possible accessibility issues. The check can be run manually through the menu or it will be triggered after PDF export dialog, when the PDF/UA support is enabled." -msgstr "" +msgstr "The Accessibility Check tool traverses the document structure and gather all possible accessibility issues. The check can be run manually through the menu or it will be triggered after PDF export dialogue box, when the PDF/UA support is enabled." #. RpbFj #: accessibility_check.xhp @@ -27248,7 +27248,7 @@ "hd_id271630943848307\n" "help.text" msgid "The Accessibility Check dialog" -msgstr "" +msgstr "The Accessibility Check dialogue box" #. FAFuD #: accessibility_check.xhp @@ -27257,7 +27257,7 @@ "par_id681630943858371\n" "help.text" msgid "The Accessibility Check dialog shows a list of all issues found in the text document." -msgstr "" +msgstr "The Accessibility Check dialogue box shows a list of all issues found in the text document." #. RPhYG #: accessibility_check.xhp @@ -28832,7 +28832,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 "Specify the salutation layout for mail merge or email merge documents. The name of this dialogue box is different for female recipients and male recipients." #. 2wy4R #: mm_cusgrelin.xhp @@ -29300,7 +29300,7 @@ "par_idN10615\n" "help.text" msgid "Opens the Email Message dialog where you can enter the email message for the mail merge files that are sent as attachments." -msgstr "" +msgstr "Opens the Email Message dialogue box where you can enter the email message for the mail merge files that are sent as attachments." #. bARe2 #: mm_emailmergeddoc.xhp @@ -31541,7 +31541,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 "" +msgstr "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 dialogue box." #. L3tEf #: watermark.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/02.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/02.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-02-11 10:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1511399493.000000\n" #. sqxGb @@ -3551,7 +3551,7 @@ "par_id3152896\n" "help.text" msgid "Activates or deactivates the direct cursor. You can specify the behavior of the direct cursor by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." -msgstr "Activates or deactivates the direct cursor. You can specify the behavior of the direct cursor by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." +msgstr "Activates or deactivates the direct cursor. You can specify the behaviour of the direct cursor by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." #. 4k7XD #: 18130000.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -68,7 +68,7 @@ "par_id3147251\n" "help.text" msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." -msgstr "" +msgstr "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." #. ELWph #: anchor_object.xhp @@ -77,7 +77,7 @@ "par_id441634291545244\n" "help.text" msgid "The following anchoring options are available:" -msgstr "" +msgstr "The following anchoring options are available:" #. mWome #: anchor_object.xhp @@ -113,7 +113,7 @@ "par_id3151181\n" "help.text" msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased." -msgstr "" +msgstr "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased." #. SNGPX #: anchor_object.xhp @@ -140,7 +140,7 @@ "par_id3151235\n" "help.text" msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character." -msgstr "" +msgstr "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character." #. Awa37 #: anchor_object.xhp @@ -2898,7 +2898,6 @@ #. KJCFz #: captions.xhp -#, fuzzy msgctxt "" "captions.xhp\n" "bm_id3147691\n" @@ -3084,7 +3083,7 @@ "par_id3150527\n" "help.text" msgid "Select a caption title from the Category box, and select a numbering scheme in the Numbering box.
    You also can enter a caption text in this dialog. If you want, enter text in the Caption box." -msgstr "" +msgstr "Select a caption title from the Category box, and select a numbering scheme in the Numbering box.
    You also can enter a caption text in this dialogue box. If you want, enter text in the Caption box." #. H329F #: captions_numbers.xhp @@ -5829,7 +5828,7 @@ "par_id781607164467521\n" "help.text" msgid "Shortcut keys can be made to insert, edit, and navigate to footnotes and endnotes. Choose Tools - Customize - Keyboard tab and enter note in the Functions box to see possibilities." -msgstr "" +msgstr "Shortcut keys can be made to insert, edit, and navigate to footnotes and endnotes. Choose Tools - Customise - Keyboard tab and enter note in the Functions box to see possibilities." #. nDvQ9 #: footnote_usage.xhp @@ -7395,7 +7394,7 @@ "par_id3793450\n" "help.text" msgid "You must enable this feature by removing the check mark Hidden Paragraphs in the dialog %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View. When the check mark is set, you cannot hide any paragraph." -msgstr "" +msgstr "You must enable this feature by removing the check mark Hidden Paragraphs in the dialogue box %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View. When the check mark is set, you cannot hide any paragraph." #. v2rEL #: hidden_text.xhp @@ -7530,7 +7529,7 @@ "par_id3152777\n" "help.text" msgid "Check the Hidden Paragraphs box in the dialog %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View." -msgstr "" +msgstr "Check the Hidden Paragraphs box in the dialogue box %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View." #. K3xeu #: hidden_text_display.xhp @@ -8934,7 +8933,7 @@ "par_id3146896\n" "help.text" msgid "If you want to use a different paragraph style as a table of contents entry, select the Additional Styles check box in the Create from area, and then click the Assign styles button next to the check box. In the Assign Styles dialog, click the style in the list, and then click the >> or the << button to define the outline level for the paragraph style." -msgstr "" +msgstr "If you want to use a different paragraph style as a table of contents entry, select the Additional Styles check box in the Create from area, and then click the Assign styles button next to the check box. In the Assign Styles dialogue box, click the style in the list, and then click the >> or the << button to define the outline level for the paragraph style." #. mXE4E #: indices_toc.xhp @@ -8943,7 +8942,7 @@ "par_id1001574720273772\n" "help.text" msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the After text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents." -msgstr "" +msgstr "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non-breaking space to the paragraph. Spaces added in the After text box of the Numbering tab in the Chapter Numbering dialogue box will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents." #. Fdoe5 #: indices_toc.xhp @@ -9960,7 +9959,7 @@ "par_id731529889382463\n" "help.text" msgid "Open the Load Styles dialog box by either" -msgstr "" +msgstr "Open the Load Styles dialogue box by either" #. DFanE #: load_styles.xhp @@ -10365,7 +10364,7 @@ "par_id3155179\n" "help.text" msgid "$[officename] can automatically recognize numbers or dates that you enter into a table cell, converting them from text to an appropriate number format. Use Table - Number Format to change the display of the entered value." -msgstr "" +msgstr "$[officename] can automatically recognise numbers or dates that you enter into a table cell, converting them from text to an appropriate number format. Use Table - Number Format to change the display of the entered value." #. 8WZDL #: number_date_conv.xhp @@ -10932,7 +10931,7 @@ "par_id3155895\n" "help.text" msgid "Choose Format - Bullets and Numbering, and then click the Customize tab." -msgstr "" +msgstr "Choose Format - Bullets and Numbering, and then click the Customise tab." #. UiczS #: numbering_paras.xhp @@ -11589,7 +11588,7 @@ "par_id4569231\n" "help.text" msgid "For example, the \"First Page\" page style has \"Default Page Style\" as the next style. To see this, you may press Command+TF11 to open the Styles window, click the Page Styles icon, right-click the \"First Page\" entry. Choose Modify from the context menu. On the Organizer tab, you can see the \"Next style\"." -msgstr "" +msgstr "For example, the \"First Page\" page style has \"Default Page Style\" as the next style. To see this, you may press Command+TF11 to open the Styles window, click the Page Styles icon, right-click the \"First Page\" entry. Choose Modify from the context menu. On the Organiser tab, you can see the \"Next style\"." #. yGPGH #: pagenumbers.xhp @@ -11715,7 +11714,7 @@ "par_id95828\n" "help.text" msgid "Choose Insert - More Breaks - Manual Break. You see the Insert Break dialog." -msgstr "" +msgstr "Choose Insert - More Breaks - Manual Break. You see the Insert Break dialogue box." #. FR7CF #: pagenumbers.xhp @@ -12003,7 +12002,7 @@ "par_id841633462305362\n" "help.text" msgid "Go to Insert - More Breaks - Manual Break. The Insert Break dialog will open." -msgstr "" +msgstr "Go to Insert - More Breaks - Manual Break. The Insert Break dialogue box will open." #. fpcnD #: pageorientation.xhp @@ -12057,7 +12056,7 @@ "par_id5169225\n" "help.text" msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the Format - Page Style - Organizer tab page." -msgstr "" +msgstr "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the Format - Page Style - Organiser tab page." #. BorA4 #: pageorientation.xhp @@ -12093,7 +12092,7 @@ "par_id6386913\n" "help.text" msgid "The “Default” page style does not set a different \"next style\" on the Format - Page Style - Organizer tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style." -msgstr "" +msgstr "The “Default” page style does not set a different \"next style\" on the Format - Page Style - Organiser tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style." #. pyFgt #: pageorientation.xhp @@ -12552,7 +12551,7 @@ "par_idN10628\n" "help.text" msgid "Return to Print dialog." -msgstr "" +msgstr "Return to Print dialogue box." #. fkF4i #: print_brochure.xhp @@ -12714,7 +12713,7 @@ "par_id571605684186001\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Choose File - Print to open the Print dialogue box." #. 2GBM8 #: print_selection.xhp @@ -12759,7 +12758,7 @@ "par_id731605685039891\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Choose File - Print to open the Print dialogue box." #. hWBFk #: print_selection.xhp @@ -12849,7 +12848,7 @@ "par_id481605687683495\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Choose File - Print to open the Print dialogue box." #. iaYKz #: print_selection.xhp @@ -12903,7 +12902,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 "In the Page Layout section of the File - Print dialogue box, you have the option to print multiple pages on one sheet." #. 7nqCv #: print_small.xhp @@ -13956,7 +13955,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 "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." #. SoczS #: registertrue.xhp @@ -14019,7 +14018,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 "Open the Styles window (Command+TF11), click the Paragraph Style you want to exempt, right-click that style, choose Modify. In the dialogue box, click the Indents & Spacing tab." #. rzTBT #: registertrue.xhp @@ -15405,7 +15404,7 @@ "par_id3156104\n" "help.text" msgid "When a possible spelling error is encountered, the Spelling dialog opens and $[officename] offers some suggested corrections." -msgstr "" +msgstr "When a possible spelling error is encountered, the Spelling dialogue box opens and $[officename] offers some suggested corrections." #. xjFxB #: spellcheck_dialog.xhp @@ -15450,7 +15449,7 @@ "par_id3147107\n" "help.text" msgid "Spelling dialog" -msgstr "" +msgstr "Spelling dialogue box" #. cgrCU #: stylist_fillformat.xhp @@ -15621,7 +15620,7 @@ "par_id3156260\n" "help.text" msgid "Enter a name for the new style in the New Style from Selection dialog box." -msgstr "" +msgstr "Enter a name for the new style in the New Style from Selection dialogue box." #. Zd7VB #: stylist_fromselect.xhp @@ -16593,7 +16592,7 @@ "par_id3149615\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icon" #. BErzm #: table_sizing.xhp @@ -16683,7 +16682,7 @@ "par_id3155891\n" "help.text" msgid "You can specify the behavior for the arrow keys by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, and selecting the options that you want in the Keyboard handling area." -msgstr "You can specify the behavior for the arrow keys by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, and selecting the options that you want in the Keyboard handling area." +msgstr "You can specify the behaviour for the arrow keys by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, and selecting the options that you want in the Keyboard handling area." #. HSxBP #: table_sizing.xhp @@ -16827,7 +16826,7 @@ "par_id3156110\n" "help.text" msgid "To set the Behavior of rows/columns options for tables in text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table. There are three display modes for tables:" -msgstr "To set the Behavior of rows/columns options for tables in text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table. There are three display modes for tables:" +msgstr "To set the Behaviour of rows/columns options for tables in text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table. There are three display modes for tables:" #. iNx3D #: tablemode.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter.po libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter.po --- libreoffice-7.3.4/translations/source/en-GB/helpcontent2/source/text/swriter.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/helpcontent2/source/text/swriter.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-02-11 10:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547063194.000000\n" #. x2qZ6 @@ -1049,7 +1049,7 @@ "par_idN105E8\n" "help.text" msgid "Opens dialog box for inserting rows." -msgstr "" +msgstr "Opens dialogue box for inserting rows." #. FedsM #: main0110.xhp @@ -1103,7 +1103,7 @@ "par_idN105D0\n" "help.text" msgid "Opens dialog box for inserting columns." -msgstr "" +msgstr "Opens dialogue box for inserting columns." #. ttkBa #: main0110.xhp @@ -1256,7 +1256,7 @@ "par_idN105FB\n" "help.text" msgid "Size" -msgstr "" +msgstr "Size" #. C4FY8 #: main0110.xhp @@ -1283,7 +1283,7 @@ "hd_id451605990864684\n" "help.text" msgid "Minimize Row Height" -msgstr "" +msgstr "Minimise Row Height" #. RWpv2 #: main0110.xhp @@ -1337,7 +1337,7 @@ "hd_id671605991381461\n" "help.text" msgid "Minimize Column Width" -msgstr "" +msgstr "Minimise Column Width" #. gwGLW #: main0110.xhp @@ -2273,7 +2273,7 @@ "par_id291603808357876\n" "help.text" msgid "Choose More to open the character formatting dialog with more options." -msgstr "" +msgstr "Choose More to open the character formatting dialogue box with more options." #. zeCHC #: main0208.xhp @@ -2390,7 +2390,7 @@ "par_id3154239\n" "help.text" msgid "By double-clicking on the ruler, you can open the Paragraph dialog and assign direct paragraph formatting for the current paragraph or all selected paragraphs." -msgstr "" +msgstr "By double-clicking on the ruler, you can open the Paragraph dialogue box and assign direct paragraph formatting for the current paragraph or all selected paragraphs." #. LqCV4 #: main0214.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.3.5/translations/source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.3.4/translations/source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-07-15 19:12:51.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: 2018-01-01 13:02+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: LANGUAGE \n" -"Language: en_GB\n" +"Language-Team: English (United Kingdom) \n" +"Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1514811732.000000\n" #. XpeLj @@ -419,7 +419,7 @@ "par_id0603200910430845\n" "help.text" 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 "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 (minimisation, maximisation) 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 "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimised, the direction to go (minimisation, maximisation) 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." #. iuEnw #: Usage.xhp diff -Nru libreoffice-7.3.4/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: Stuart Swales \n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" "MIME-Version: 1.0\n" @@ -8214,7 +8214,7 @@ "Label\n" "value.text" msgid "~Gluepoints" -msgstr "~Gluepoints" +msgstr "~Glue Points" #. pDA5L #: DrawImpressCommands.xcu @@ -8224,7 +8224,7 @@ "TooltipLabel\n" "value.text" msgid "Show Gluepoint Functions" -msgstr "Show Gluepoint Functions" +msgstr "Show Glue Point Functions" #. KvopQ #: DrawImpressCommands.xcu @@ -8234,7 +8234,7 @@ "Label\n" "value.text" msgid "Insert Gluepoint" -msgstr "Insert Gluepoint" +msgstr "Insert Glue Point" #. nBGfU #: DrawImpressCommands.xcu @@ -8244,7 +8244,7 @@ "Label\n" "value.text" msgid "Gluepoint Relative" -msgstr "Gluepoint Relative" +msgstr "Glue Point Relative" #. XbDqq #: DrawImpressCommands.xcu @@ -8264,7 +8264,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Center" -msgstr "Gluepoint Horizontal Centre" +msgstr "Glue Point Horizontal Centre" #. JxbE3 #: DrawImpressCommands.xcu @@ -8274,7 +8274,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Left" -msgstr "Gluepoint Horizontal Left" +msgstr "Glue Point Horizontal Left" #. QrYe6 #: DrawImpressCommands.xcu @@ -8284,7 +8284,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Right" -msgstr "Gluepoint Horizontal Right" +msgstr "Glue Point Horizontal Right" #. vAMar #: DrawImpressCommands.xcu @@ -8294,7 +8294,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Center" -msgstr "Gluepoint Vertical Centre" +msgstr "Glue Point Vertical Centre" #. Fu3Kk #: DrawImpressCommands.xcu @@ -8304,7 +8304,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Top" -msgstr "Gluepoint Vertical Top" +msgstr "Glue Point Vertical Top" #. rBrUL #: DrawImpressCommands.xcu @@ -8314,7 +8314,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Bottom" -msgstr "Gluepoint Vertical Bottom" +msgstr "Glue Point Vertical Bottom" #. NNo3V #: DrawImpressCommands.xcu @@ -11634,7 +11634,7 @@ "UIName\n" "value.text" msgid "Gluepoint" -msgstr "Gluepoint" +msgstr "Glue Point" #. VYgEG #: DrawWindowState.xcu @@ -12014,7 +12014,7 @@ "UIName\n" "value.text" msgid "Gluepoints" -msgstr "Gluepoints" +msgstr "Glue Points" #. 5SA3p #: DrawWindowState.xcu @@ -27066,7 +27066,7 @@ "UIName\n" "value.text" msgid "Gluepoint" -msgstr "Gluepoint" +msgstr "Glue Point" #. Tbiup #: ImpressWindowState.xcu @@ -34506,7 +34506,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" +msgstr "Clone Formatting (double click and Ctrl or Cmd to alter behaviour)" #. 7PCFf #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/en-GB/sc/messages.po libreoffice-7.3.5/translations/source/en-GB/sc/messages.po --- libreoffice-7.3.4/translations/source/en-GB/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562933512.000000\n" #. kBovX @@ -16651,7 +16651,6 @@ #. 8DPvA #: sc/inc/strings.hrc:44 -#, fuzzy msgctxt "SCSTR_FILTER_AUTOMATIC_COLOR" msgid "Automatic" msgstr "Automatic" @@ -18462,49 +18461,49 @@ #: sc/inc/strings.hrc:372 msgctxt "STR_BORDER_THIN" msgid "Thin (%s pt)" -msgstr "" +msgstr "Thin (%s pt)" #. V6PRY #: sc/inc/strings.hrc:373 msgctxt "STR_BORDER_MEDIUM" msgid "Medium (%s pt)" -msgstr "" +msgstr "Medium (%s pt)" #. GyeKi #: sc/inc/strings.hrc:374 msgctxt "STR_BORDER_THICK" msgid "Thick (%s pt)" -msgstr "" +msgstr "Thick (%s pt)" #. QvEAB #: sc/inc/strings.hrc:375 msgctxt "STR_BORDER_EXTRA_THICK" msgid "Extra thick (%s pt)" -msgstr "" +msgstr "Extra thick (%s pt)" #. v9kkb #: sc/inc/strings.hrc:376 msgctxt "STR_BORDER_DOUBLE_1" msgid "Double Hairline (%s pt)" -msgstr "" +msgstr "Double Hairline (%s pt)" #. KzKEy #: sc/inc/strings.hrc:377 msgctxt "STR_BORDER_DOUBLE_2" msgid "Thin/Medium (%s pt)" -msgstr "" +msgstr "Thin/Medium (%s pt)" #. HD8tG #: sc/inc/strings.hrc:378 msgctxt "STR_BORDER_DOUBLE_3" msgid "Medium/Hairline (%s pt)" -msgstr "" +msgstr "Medium/Hairline (%s pt)" #. ygGcU #: sc/inc/strings.hrc:379 msgctxt "STR_BORDER_DOUBLE_4" msgid "Medium/Medium (%s pt)" -msgstr "" +msgstr "Medium/Medium (%s pt)" #. Et4zM #: sc/inc/subtotals.hrc:26 @@ -18834,13 +18833,13 @@ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:66 msgctxt "aggregatefunctionentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. BDhZj #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:75 msgctxt "aggregatefunctionentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. NCX7N #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:8 @@ -21366,85 +21365,85 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:25 msgctxt "dataproviderdlg/okaybtn" msgid "Okay" -msgstr "" +msgstr "Okay" #. Ah2h8 #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:38 msgctxt "dataproviderdlg/cancelbtn" msgid "Cancel" -msgstr "" +msgstr "Cancel" #. a7EFA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:88 msgctxt "dataproviderdlg|db_name" msgid "Database Range:" -msgstr "" +msgstr "Database Range:" #. pSQ4F #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:113 msgctxt "dataproviderdlg/provider" msgid "Data Provider:" -msgstr "" +msgstr "Data Provider:" #. RGiXi #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:138 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:161 msgctxt "dataproviderdlg/browse_btn" msgid "Browse" -msgstr "" +msgstr "Browse" #. GABzG #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:175 msgctxt "dataproviderdlg/id" msgid "Id / Xpath:" -msgstr "" +msgstr "Id / Xpath:" #. pwS4k #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:203 msgctxt "dataproviderdlg/lbSource" msgid "Source" -msgstr "" +msgstr "Source" #. fHfGq #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:237 msgctxt "dataproviderdlg/transformation_add" msgid "Add" -msgstr "" +msgstr "Add" #. Smoiv #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:241 msgctxt "dataproviderdlg/AddTransformation_tooltip" msgid "Add Transformations" -msgstr "" +msgstr "Add Transformations" #. cSgeU #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:297 msgctxt "dataproviderdlg/transformation" msgid "Transformations" -msgstr "" +msgstr "Transformations" #. gpeXB #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:353 msgctxt "dataproviderdlg/apply" msgid "Apply" -msgstr "" +msgstr "Apply" #. bDVwi #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:357 msgctxt "dataproviderdlg/apply_tooltiptext" msgid "Apply Changes" -msgstr "" +msgstr "Apply Changes" #. 6pCFs #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:376 msgctxt "dataproviderdlg/preview" msgid "Preview" -msgstr "" +msgstr "Preview" #. 4jLF7 #: sc/uiconfig/scalc/ui/datastreams.ui:8 @@ -21666,13 +21665,13 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 msgctxt "datetimetransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. sM9XW #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:89 msgctxt "datetimetransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. nHoB2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18 @@ -21750,7 +21749,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:358 msgctxt "definedatabaserangedialog|extended_tip|ContainsColumnLabels" msgid "Selected cell ranges contain labels." -msgstr "" +msgstr "Selected cell ranges contain labels." #. QBs5X #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:370 @@ -22020,19 +22019,19 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:29 msgctxt "deletecolumnentry|name" msgid "Delete Columns" -msgstr "" +msgstr "Delete Columns" #. QFtCG #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:46 msgctxt "deletecolumnentry/cols" msgid "Cols(; Separated)" -msgstr "" +msgstr "Cols(; Separated)" #. tGfwG #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:55 msgctxt "deletecolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. VWjSF #: sc/uiconfig/scalc/ui/deletecontents.ui:8 @@ -22152,25 +22151,25 @@ #: sc/uiconfig/scalc/ui/deleterowentry.ui:28 msgctxt "deleterow|delete_label" msgid "Delete Row Action" -msgstr "" +msgstr "Delete Row Action" #. RBbUN #: sc/uiconfig/scalc/ui/deleterowentry.ui:45 msgctxt "deleterow|value" msgid "Enter Value" -msgstr "" +msgstr "Enter Value" #. whbyR #: sc/uiconfig/scalc/ui/deleterowentry.ui:59 msgctxt "deleterow|column" msgid "Column" -msgstr "" +msgstr "Column" #. yhzDR #: sc/uiconfig/scalc/ui/deleterowentry.ui:68 msgctxt "deleterow|delete_btn" msgid "Delete" -msgstr "" +msgstr "Delete" #. gB36A #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:8 @@ -22794,31 +22793,31 @@ #: sc/uiconfig/scalc/ui/findreplaceentry.ui:28 msgctxt "findreplace|label_action" msgid "Find Replace Action" -msgstr "" +msgstr "Find Replace Action" #. T9kUg #: sc/uiconfig/scalc/ui/findreplaceentry.ui:45 msgctxt "findreplace|find" msgid "Find" -msgstr "" +msgstr "Find" #. mBfPJ #: sc/uiconfig/scalc/ui/findreplaceentry.ui:59 msgctxt "findreplace|replace" msgid "Replace With" -msgstr "" +msgstr "Replace With" #. RF57t #: sc/uiconfig/scalc/ui/findreplaceentry.ui:73 msgctxt "findreplace|columns" msgid "Column" -msgstr "" +msgstr "Column" #. WWQzs #: sc/uiconfig/scalc/ui/findreplaceentry.ui:82 msgctxt "findreplace|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. AfnFz #: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34 @@ -22932,7 +22931,7 @@ #: sc/uiconfig/scalc/ui/footerdialog.ui:139 msgctxt "footerdialog|footerfirst" msgid "Footer (first)" -msgstr "" +msgstr "Footer (first)" #. 9nDTt #: sc/uiconfig/scalc/ui/footerdialog.ui:183 @@ -23472,7 +23471,7 @@ #: sc/uiconfig/scalc/ui/headerdialog.ui:139 msgctxt "headerdialog|headerfirst" msgid "Header (first)" -msgstr "" +msgstr "Header (first)" #. DCKK3 #: sc/uiconfig/scalc/ui/headerdialog.ui:183 @@ -24360,19 +24359,19 @@ #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:46 msgctxt "mergecolumnentry/separator" msgid "Separator" -msgstr "" +msgstr "Separator" #. BKHND #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:60 msgctxt "mergecolumnentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. cMGtd #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:69 msgctxt "mergecolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. 4kTrD #: sc/uiconfig/scalc/ui/movecopysheet.ui:16 @@ -25254,97 +25253,97 @@ msgstr "~View" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_age" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "D_raw" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Object" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Print" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Print" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tools" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Tools" @@ -25703,139 +25702,139 @@ msgstr "Im_age" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Arrange" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grid" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Language" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comments" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_pare" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_View" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "D_raw" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edit" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Arrange" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_View" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grou_p" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3-_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "F_ont" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alignment" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_View" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insert" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "F_rame" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Arrange" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grid" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_View" @@ -26264,13 +26263,13 @@ #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:75 msgctxt "numbertransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. FFa8s #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:84 msgctxt "numbertransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. T2p5k #: sc/uiconfig/scalc/ui/optcalculatepage.ui:42 @@ -26330,7 +26329,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:134 msgctxt "optcalculatepage|match|tooltip_text" msgid "Keep this enabled for interoperability with Microsoft Excel or for better performance" -msgstr "" +msgstr "Keep this enabled for interoperability with Microsoft Excel or for better performance" #. APEQn #: sc/uiconfig/scalc/ui/optcalculatepage.ui:139 @@ -27164,7 +27163,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:141 msgctxt "pastespecial|extended_tip|paste_values_only" msgid "Pastes numbers, text, dates and the results of formulas." -msgstr "" +msgstr "Pastes numbers, text, dates, and the results of formulae." #. CTEKF #: sc/uiconfig/scalc/ui/pastespecial.ui:153 @@ -27182,7 +27181,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:164 msgctxt "pastespecial|extended_tip|paste_values_formats" msgid "Pastes cell values, formula results and formats applied to cells." -msgstr "" +msgstr "Pastes cell values, formula results, and formats applied to cells." #. Rb8KR #: sc/uiconfig/scalc/ui/pastespecial.ui:176 @@ -27200,7 +27199,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:187 msgctxt "pastespecial|extended_tip|paste_formats" msgid "Pastes only the formats from the source range without changing the values in the destination range." -msgstr "" +msgstr "Pastes only the formats from the source range without changing the values in the destination range." #. YGdhH #: sc/uiconfig/scalc/ui/pastespecial.ui:199 @@ -27218,7 +27217,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:210 msgctxt "pastespecial|extended_tip|paste_transpose" msgid "Pastes cell contents transposed, hence columns are converted to rows." -msgstr "" +msgstr "Pastes cell contents transposed, hence columns are converted to rows." #. 4ETCT #: sc/uiconfig/scalc/ui/pastespecial.ui:229 @@ -27230,7 +27229,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:238 msgctxt "pastespecial|extended_tip|cbImmediately" msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK." -msgstr "" +msgstr "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK." #. YD43i #: sc/uiconfig/scalc/ui/pastespecial.ui:254 @@ -28436,7 +28435,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:123 msgctxt "regressiondialog|extended_tip|variable1-range-edit" msgid "Enter a single range that contains multiple independent variable observations (along columns or rows)" -msgstr "" +msgstr "Enter a single range that contains multiple independent variable observations (along columns or rows)" #. NGXXg #: sc/uiconfig/scalc/ui/regressiondialog.ui:147 @@ -28448,7 +28447,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:168 msgctxt "regressiondialog|extended_tip|variable2-range-edit" msgid "The range that contains the dependent variable." -msgstr "" +msgstr "The range that contains the dependent variable." #. SougG #: sc/uiconfig/scalc/ui/regressiondialog.ui:190 @@ -28466,7 +28465,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:228 msgctxt "regressiondialog|extended_tip|output-range-edit" msgid "The reference of the top left cell of the range where the results will be displayed." -msgstr "" +msgstr "The reference of the top left cell of the range where the results will be displayed." #. ngLrg #: sc/uiconfig/scalc/ui/regressiondialog.ui:254 @@ -28502,7 +28501,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:363 msgctxt "regressiondialog|extended_tip|linear-radio" msgid "Find a straight line in the form of y = a.x + b, where a is the slope and b is the intercept that best fits the data." -msgstr "" +msgstr "Find a straight line in the form of y = a.x + b, where a is the slope and b is the intercept that best fits the data." #. bC6dH #: sc/uiconfig/scalc/ui/regressiondialog.ui:374 @@ -28514,7 +28513,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:385 msgctxt "regressiondialog|extended_tip|logarithmic-radio" msgid "Find a logarithmic curve in the form of y = a.ln(x) + b, where a is the slope, b is the intercept and ln(x) is the natural logarithm of x, that best fits the data." -msgstr "" +msgstr "Find a logarithmic curve in the form of y = a.ln(x) + b, where a is the slope, b is the intercept and ln(x) is the natural logarithm of x, that best fits the data." #. fSEJF #: sc/uiconfig/scalc/ui/regressiondialog.ui:396 @@ -28526,7 +28525,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:407 msgctxt "regressiondialog|extended_tip|power-radio" msgid "Find a power curve in the form of y = a.x^b, where a is the coefficient, b is the power that best fits the data." -msgstr "" +msgstr "Find a power curve in the form of y = a.x^b, where a is the coefficient, b is the power that best fits the data." #. nhcJV #: sc/uiconfig/scalc/ui/regressiondialog.ui:422 @@ -28550,13 +28549,13 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:473 msgctxt "regressiondialog|extended_tip|calcresiduals-check" msgid "The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model." -msgstr "" +msgstr "The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model." #. GnoB2 #: sc/uiconfig/scalc/ui/regressiondialog.ui:497 msgctxt "regressiondialog|extended_tip|confidencelevel-spin" msgid "A value indicating a confidence level for the calculated prediction interval." -msgstr "" +msgstr "A value indicating a confidence level for the calculated prediction interval." #. EuJeA #: sc/uiconfig/scalc/ui/regressiondialog.ui:508 @@ -28568,7 +28567,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:515 msgctxt "regressiondialog|extended_tip|nointercept-check" msgid "Forces the regression curve to cross the origin." -msgstr "" +msgstr "Forces the regression curve to cross the origin." #. ieBEk #: sc/uiconfig/scalc/ui/regressiondialog.ui:530 @@ -28592,19 +28591,19 @@ #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:46 msgctxt "replacenulltransformationentry/replace" msgid "Replace with" -msgstr "" +msgstr "Replace with" #. AN53W #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:60 msgctxt "replacenulltransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. KHAnu #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:69 msgctxt "replacenulltransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. vAFwf #: sc/uiconfig/scalc/ui/retypepassdialog.ui:10 @@ -29336,37 +29335,37 @@ #: sc/uiconfig/scalc/ui/sharedfirstfooterdialog.ui:8 msgctxt "sharedfirstfooterdialog|SharedFirstFooterDialog" msgid "Footers" -msgstr "" +msgstr "Footers" #. hHAJt #: sc/uiconfig/scalc/ui/sharedfirstfooterdialog.ui:139 msgctxt "sharedfirstfooterdialog|footerright" msgid "Footer (right)" -msgstr "" +msgstr "Footer (right)" #. p3eiA #: sc/uiconfig/scalc/ui/sharedfirstfooterdialog.ui:186 msgctxt "sharedfirstfooterdialog|footerleft" msgid "Footer (left)" -msgstr "" +msgstr "Footer (left)" #. zzfLu #: sc/uiconfig/scalc/ui/sharedfirstheaderdialog.ui:8 msgctxt "sharedfirstheaderdialog|SharedFirstHeaderDialog" msgid "Headers" -msgstr "" +msgstr "Headers" #. na6S3 #: sc/uiconfig/scalc/ui/sharedfirstheaderdialog.ui:139 msgctxt "sharedfirstheaderdialog|headerright" msgid "Header (right)" -msgstr "" +msgstr "Header (right)" #. B8Tvi #: sc/uiconfig/scalc/ui/sharedfirstheaderdialog.ui:186 msgctxt "sharedfirstheaderdialog|headerleft" msgid "Header (left)" -msgstr "" +msgstr "Header (left)" #. DEDQP #: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:8 @@ -29420,37 +29419,37 @@ #: sc/uiconfig/scalc/ui/sharedleftfooterdialog.ui:8 msgctxt "sharedleftfooterdialog|SharedLeftFooterDialog" msgid "Footers" -msgstr "" +msgstr "Footers" #. CHQPX #: sc/uiconfig/scalc/ui/sharedleftfooterdialog.ui:139 msgctxt "sharedleftfooterdialog|footerfirst" msgid "Footer (first)" -msgstr "" +msgstr "Footer (first)" #. FCzBo #: sc/uiconfig/scalc/ui/sharedleftfooterdialog.ui:183 msgctxt "sharedleftfooterdialog|footerright" msgid "Footer (rest)" -msgstr "" +msgstr "Footer (rest)" #. yw8Bd #: sc/uiconfig/scalc/ui/sharedleftheaderdialog.ui:8 msgctxt "sharedleftheaderdialog|SharedLeftHeaderDialog" msgid "Headers" -msgstr "" +msgstr "Headers" #. AaCXP #: sc/uiconfig/scalc/ui/sharedleftheaderdialog.ui:139 msgctxt "sharedleftheaderdialog|headerfirst" msgid "Header (first)" -msgstr "" +msgstr "Header (first)" #. DhEeW #: sc/uiconfig/scalc/ui/sharedleftheaderdialog.ui:183 msgctxt "sharedleftheaderdialog|headerright" msgid "Header (rest)" -msgstr "" +msgstr "Header (rest)" #. D5VTo #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:18 @@ -30866,25 +30865,25 @@ #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:45 msgctxt "sorttransformationentry/cols" msgid "Column" -msgstr "" +msgstr "Column" #. 2nUfs #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:54 msgctxt "sorttransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. JyYHP #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:74 msgctxt "sorttransformationentry|order_descending" msgid "Descending Order" -msgstr "" +msgstr "Descending Order" #. CHFMb #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:75 msgctxt "sorttransformationentry|order_ascending" msgid "Ascending Order" -msgstr "" +msgstr "Ascending Order" #. EhGCw #: sc/uiconfig/scalc/ui/sortwarning.ui:8 @@ -30920,25 +30919,25 @@ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29 msgctxt "splitcolumnentry|name" msgid "Split Column" -msgstr "" +msgstr "Split Column" #. CVAGZ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:46 msgctxt "splitcolumnentry/separator" msgid "Separator" -msgstr "" +msgstr "Separator" #. CGTQa #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:60 msgctxt "splitcolumnentry/cols" msgid "Column" -msgstr "" +msgstr "Column" #. P8ZCJ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:69 msgctxt "splitcolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. GJ7zg #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:76 @@ -31121,7 +31120,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:540 msgctxt "standardfilterdialog|cond" msgid "Largest" -msgstr "" +msgstr "Largest" #. QSesc #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:424 @@ -31130,7 +31129,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:541 msgctxt "standardfilterdialog|cond" msgid "Smallest" -msgstr "" +msgstr "Smallest" #. TpdQF #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:425 @@ -31139,7 +31138,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:542 msgctxt "standardfilterdialog|cond" msgid "Largest %" -msgstr "" +msgstr "Largest %" #. aQA5f #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:426 @@ -31148,7 +31147,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:543 msgctxt "standardfilterdialog|cond" msgid "Smallest %" -msgstr "" +msgstr "Smallest %" #. eL6RL #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:427 @@ -31157,7 +31156,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:544 msgctxt "standardfilterdialog|cond" msgid "Contains" -msgstr "" +msgstr "Contains" #. K4RKQ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:428 @@ -31166,7 +31165,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:545 msgctxt "standardfilterdialog|cond" msgid "Does not contain" -msgstr "" +msgstr "Does not contain" #. VJwkd #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:429 @@ -31175,7 +31174,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:546 msgctxt "standardfilterdialog|cond" msgid "Begins with" -msgstr "" +msgstr "Begins with" #. A3zBA #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:430 @@ -31184,7 +31183,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:547 msgctxt "standardfilterdialog|cond" msgid "Does not begin with" -msgstr "" +msgstr "Does not begin with" #. yEk22 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:431 @@ -31193,7 +31192,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:548 msgctxt "standardfilterdialog|cond" msgid "Ends with" -msgstr "" +msgstr "Ends with" #. KMx5B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:432 @@ -31202,7 +31201,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:549 msgctxt "standardfilterdialog|cond" msgid "Does not end with" -msgstr "" +msgstr "Does not end with" #. XCG8Q #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:433 @@ -31664,25 +31663,25 @@ #: sc/uiconfig/scalc/ui/swaprowsentry.ui:28 msgctxt "swaprows|action" msgid "Swap Rows Action" -msgstr "" +msgstr "Swap Rows Action" #. sig3h #: sc/uiconfig/scalc/ui/swaprowsentry.ui:45 msgctxt "swaprows|row1" msgid "First Row" -msgstr "" +msgstr "First Row" #. rDLdF #: sc/uiconfig/scalc/ui/swaprowsentry.ui:59 msgctxt "swaprows|row2" msgid "Second Row" -msgstr "" +msgstr "Second Row" #. E7ATE #: sc/uiconfig/scalc/ui/swaprowsentry.ui:68 msgctxt "swaprows|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. 8AoGN #: sc/uiconfig/scalc/ui/tabcolordialog.ui:72 @@ -31904,19 +31903,19 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:628 msgctxt "textimportcsv|evaluateformulas" msgid "E_valuate formulas" -msgstr "" +msgstr "E_valuate formulas" #. vqmGs #: sc/uiconfig/scalc/ui/textimportcsv.ui:632 msgctxt "textimportcsv|evaluateformulas" msgid "If enabled, cells starting with '=' will be evaluated as formulas." -msgstr "" +msgstr "If enabled, cells starting with '=' will be evaluated as formulae." #. WcDiG #: sc/uiconfig/scalc/ui/textimportcsv.ui:637 msgctxt "textimportcsv|extended_tip|evaluateformulas" msgid "When this option is enabled, cell content starting with an '=' equal sign is evaluated as formula expression. Otherwise, content is imported as text." -msgstr "" +msgstr "When this option is enabled, cell content starting with an '=' equal sign is evaluated as formula expression. Otherwise, content is imported as text." #. fBAv9 #: sc/uiconfig/scalc/ui/textimportcsv.ui:648 @@ -32048,13 +32047,13 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:65 msgctxt "texttransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Columns" #. aoBA3 #: sc/uiconfig/scalc/ui/texttransformationentry.ui:74 msgctxt "texttransformation_type|delete" msgid "Delete" -msgstr "" +msgstr "Delete" #. D7zk3 #: sc/uiconfig/scalc/ui/tpviewpage.ui:31 @@ -32306,7 +32305,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:488 msgctxt "tpviewpage|labelCursor" msgid "Pointe_r:" -msgstr "" +msgstr "Pointe_r:" #. AmbjZ #: sc/uiconfig/scalc/ui/tpviewpage.ui:500 diff -Nru libreoffice-7.3.4/translations/source/en-GB/sd/messages.po libreoffice-7.3.5/translations/source/en-GB/sd/messages.po --- libreoffice-7.3.4/translations/source/en-GB/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-14 18:38+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" @@ -4173,109 +4173,109 @@ msgstr "~Table" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Image" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_raw" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Object" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Master" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tools" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Tools" @@ -7062,109 +7062,109 @@ msgstr "~Table" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Image" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "D_raw" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Object" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Master" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3-_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3-~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tools" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Tools" diff -Nru libreoffice-7.3.4/translations/source/en-GB/sfx2/messages.po libreoffice-7.3.5/translations/source/en-GB/sfx2/messages.po --- libreoffice-7.3.4/translations/source/en-GB/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Stuart Swales \n" -"Language-Team: English (United Kingdom) \n" +"Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" "X-POOTLE-MTIME: 1560274482.000000\n" #. bHbFE @@ -50,55 +50,55 @@ #: include/sfx2/strings.hrc:30 msgctxt "STR_OPEN" msgid "~Open" -msgstr "" +msgstr "~Open" #. ACduP #: include/sfx2/strings.hrc:31 msgctxt "STR_EDIT_TEMPLATE" msgid "~Edit" -msgstr "" +msgstr "~Edit" #. aKW5U #: include/sfx2/strings.hrc:32 msgctxt "STR_DEFAULT_TEMPLATE" msgid "Set as De~fault" -msgstr "" +msgstr "Set as De~fault" #. Bwnha #: include/sfx2/strings.hrc:33 msgctxt "STR_RESET_DEFAULT" msgid "Reset De~fault" -msgstr "" +msgstr "Reset De~fault" #. oRvm4 #: include/sfx2/strings.hrc:34 msgctxt "STR_DELETE_TEMPLATE" msgid "~Delete" -msgstr "" +msgstr "~Delete" #. UyfFH #: include/sfx2/strings.hrc:35 msgctxt "STR_SFX_RENAME" msgid "~Rename" -msgstr "" +msgstr "~Rename" #. Gnhk4 #: include/sfx2/strings.hrc:36 msgctxt "STR_ACTION_MOVE" msgid "~Move" -msgstr "" +msgstr "~Move" #. tWE8a #: include/sfx2/strings.hrc:37 msgctxt "STR_ACTION_EXPORT" msgid "E~xport" -msgstr "" +msgstr "E~xport" #. aEN5D #: include/sfx2/strings.hrc:38 msgctxt "STR_CATEGORY_RENAME" msgid "Ren~ame Category" -msgstr "" +msgstr "Ren~ame Category" #. Ys9z4 #: include/sfx2/strings.hrc:39 @@ -536,6 +536,8 @@ "It might be dangerous to open \"$(ARG1)\".\n" "Do you really want to open it?" msgstr "" +"It might be dangerous to open \"$(ARG1)\".\n" +"Do you really want to open it?" #. ADqLM #: include/sfx2/strings.hrc:107 @@ -1036,7 +1038,7 @@ #: include/sfx2/strings.hrc:185 msgctxt "STR_WELCOME_LINE2" msgid "Drop a document here or open an app to create one." -msgstr "" +msgstr "Drop a document here or open an app to create one." #. oTVdA #. Translators: Target types in Auto-redaction dialog @@ -1141,7 +1143,7 @@ #: include/sfx2/strings.hrc:208 msgctxt "STR_REDACTION_NO_DRAW_WARNING" msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly." -msgstr "" +msgstr "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly." #. FQ9kN #: include/sfx2/strings.hrc:210 @@ -1654,19 +1656,19 @@ #: include/sfx2/strings.hrc:293 msgctxt "STR_HYPHENATION_BUTTON" msgid "Learn more" -msgstr "" +msgstr "Learn more" #. BSyb4 #: include/sfx2/strings.hrc:294 msgctxt "STR_REFRESH_MASTER_PASSWORD" msgid "The master password is stored in an outdated format, you should refresh it" -msgstr "" +msgstr "The master password is stored in an outdated format, you should refresh it" #. ysChU #: include/sfx2/strings.hrc:295 msgctxt "STR_REFRESH_PASSWORD" msgid "Refresh Password" -msgstr "" +msgstr "Refresh Password" #. Wkvpi #: include/sfx2/strings.hrc:297 @@ -1950,61 +1952,61 @@ #: include/sfx2/strings.hrc:352 msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES" msgid "Reset All De~fault Templates" -msgstr "" +msgstr "Reset All De~fault Templates" #. GWuDE #: include/sfx2/strings.hrc:353 msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE" msgid "Reset De~fault Text Document" -msgstr "" +msgstr "Reset De~fault Text Document" #. j5eV8 #: include/sfx2/strings.hrc:354 msgctxt "STR_ACTION_RESET_CALC_TEMPLATE" msgid "Reset De~fault Spreadsheet" -msgstr "" +msgstr "Reset De~fault Spreadsheet" #. mWp3t #: include/sfx2/strings.hrc:355 msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE" msgid "Reset De~fault Presentation" -msgstr "" +msgstr "Reset De~fault Presentation" #. wfExB #: include/sfx2/strings.hrc:356 msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE" msgid "Reset De~fault Drawing" -msgstr "" +msgstr "Reset De~fault Drawing" #. BFaGA #: include/sfx2/strings.hrc:357 msgctxt "STR_ACTION_IMPORT" msgid "~Import" -msgstr "" +msgstr "~Import" #. 8Cwfk #: include/sfx2/strings.hrc:358 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "E~xtensions" #. idGvM #: include/sfx2/strings.hrc:359 msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE" msgid "Rename" -msgstr "" +msgstr "Rename" #. EyjE3 #: include/sfx2/strings.hrc:360 msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY" msgid "Rename Category" -msgstr "" +msgstr "Rename Category" #. T79Eb #: include/sfx2/strings.hrc:361 msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY" msgid "New Category" -msgstr "" +msgstr "New Category" #. wH3TZ msgctxt "stock" @@ -2369,295 +2371,295 @@ #: sfx2/source/devtools/DevToolsStrings.hrc:16 msgctxt "STR_PARAGRAPH" msgid "Paragraph %1" -msgstr "" +msgstr "Paragraph %1" #. DJi4i #: sfx2/source/devtools/DevToolsStrings.hrc:17 msgctxt "STR_SHAPE" msgid "Shape %1" -msgstr "" +msgstr "Shape %1" #. Ucjjh #: sfx2/source/devtools/DevToolsStrings.hrc:18 msgctxt "STR_PAGE" msgid "Page %1" -msgstr "" +msgstr "Page %1" #. j9DL6 #: sfx2/source/devtools/DevToolsStrings.hrc:19 msgctxt "STR_SLIDE" msgid "Slide %1" -msgstr "" +msgstr "Slide %1" #. YQqL8 #: sfx2/source/devtools/DevToolsStrings.hrc:20 msgctxt "STR_MASTER_SLIDE" msgid "Master Slide %1" -msgstr "" +msgstr "Master Slide %1" #. CEfNy #: sfx2/source/devtools/DevToolsStrings.hrc:21 msgctxt "STR_SHEET" msgid "Sheet %1" -msgstr "" +msgstr "Sheet %1" #. BaABx #: sfx2/source/devtools/DevToolsStrings.hrc:23 msgctxt "STR_SHAPES_NODE" msgid "Shapes" -msgstr "" +msgstr "Shapes" #. n4VWE #: sfx2/source/devtools/DevToolsStrings.hrc:24 msgctxt "STR_CHARTS_ENTRY" msgid "Charts" -msgstr "" +msgstr "Charts" #. 5GWcX #: sfx2/source/devtools/DevToolsStrings.hrc:25 msgctxt "STR_PIVOT_TABLES_ENTRY" msgid "Pivot Tables" -msgstr "" +msgstr "Pivot Tables" #. BBLBQ #: sfx2/source/devtools/DevToolsStrings.hrc:26 msgctxt "STR_DOCUMENT_ENTRY" msgid "Document" -msgstr "" +msgstr "Document" #. 4dNGV #: sfx2/source/devtools/DevToolsStrings.hrc:27 msgctxt "STR_SHEETS_ENTRY" msgid "Sheets" -msgstr "" +msgstr "Sheets" #. RLwRi #: sfx2/source/devtools/DevToolsStrings.hrc:28 msgctxt "STR_STYLES_ENTRY" msgid "Styles" -msgstr "" +msgstr "Styles" #. P4RF4 #: sfx2/source/devtools/DevToolsStrings.hrc:29 msgctxt "STR_SLIDES_ENTRY" msgid "Slides" -msgstr "" +msgstr "Slides" #. 4bJSH #: sfx2/source/devtools/DevToolsStrings.hrc:30 msgctxt "STR_MASTER_SLIDES_ENTRY" msgid "Master Slides" -msgstr "" +msgstr "Master Slides" #. LRq2A #: sfx2/source/devtools/DevToolsStrings.hrc:31 msgctxt "STR_PAGES_ENTRY" msgid "Pages" -msgstr "" +msgstr "Pages" #. 946kV #: sfx2/source/devtools/DevToolsStrings.hrc:32 msgctxt "STR_PARAGRAPHS_ENTRY" msgid "Paragraphs" -msgstr "" +msgstr "Paragraphs" #. JG2qz #: sfx2/source/devtools/DevToolsStrings.hrc:33 msgctxt "STR_TABLES_ENTRY" msgid "Tables" -msgstr "" +msgstr "Tables" #. HzFoW #: sfx2/source/devtools/DevToolsStrings.hrc:34 msgctxt "STR_FRAMES_ENTRY" msgid "Frames" -msgstr "" +msgstr "Frames" #. ekGEm #: sfx2/source/devtools/DevToolsStrings.hrc:35 msgctxt "STR_GRAPHIC_OBJECTS_ENTRY" msgid "Graphic Objects" -msgstr "" +msgstr "Graphic Objects" #. cVWmY #: sfx2/source/devtools/DevToolsStrings.hrc:36 msgctxt "STR_EMBEDDED_OBJECTS_ENTRY" msgid "Embedded Objects" -msgstr "" +msgstr "Embedded Objects" #. xfnkV #: sfx2/source/devtools/DevToolsStrings.hrc:38 msgctxt "STR_ANY_VALUE_TRUE" msgid "True" -msgstr "" +msgstr "True" #. 2WxdA #: sfx2/source/devtools/DevToolsStrings.hrc:39 msgctxt "STR_ANY_VALUE_FALSE" msgid "False" -msgstr "" +msgstr "False" #. RBC8w #: sfx2/source/devtools/DevToolsStrings.hrc:40 msgctxt "STR_ANY_VALUE_NULL" msgid "Null" -msgstr "" +msgstr "Null" #. As494 #: sfx2/source/devtools/DevToolsStrings.hrc:41 msgctxt "STR_CLASS_UNKNOWN" msgid "Unknown" -msgstr "" +msgstr "Unknown" #. gAY69 #: sfx2/source/devtools/DevToolsStrings.hrc:43 msgctxt "STR_METHOD_TYPE_OBJECT" msgid "object" -msgstr "" +msgstr "object" #. HFgBW #: sfx2/source/devtools/DevToolsStrings.hrc:44 msgctxt "STR_METHOD_TYPE_STRUCT" msgid "struct" -msgstr "" +msgstr "struct" #. 7DCri #: sfx2/source/devtools/DevToolsStrings.hrc:45 msgctxt "STR_METHOD_TYPE_ENUM" msgid "enum" -msgstr "" +msgstr "enum" #. aEuJR #: sfx2/source/devtools/DevToolsStrings.hrc:46 msgctxt "STR_METHOD_TYPE_SEQUENCE" msgid "sequence" -msgstr "" +msgstr "sequence" #. xXMdD #: sfx2/source/devtools/DevToolsStrings.hrc:48 msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER" msgid "name container" -msgstr "" +msgstr "name container" #. QLZbz #: sfx2/source/devtools/DevToolsStrings.hrc:49 msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER" msgid "index container" -msgstr "" +msgstr "index container" #. LLsJf #: sfx2/source/devtools/DevToolsStrings.hrc:50 msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION" msgid "enumeration" -msgstr "" +msgstr "enumeration" #. aNuA9 #: sfx2/source/devtools/DevToolsStrings.hrc:52 msgctxt "STR_PARMETER_MODE_IN" msgid "[in]" -msgstr "" +msgstr "[in]" #. W3AEx #: sfx2/source/devtools/DevToolsStrings.hrc:53 msgctxt "STR_PARMETER_MODE_OUT" msgid "[out]" -msgstr "" +msgstr "[out]" #. ENF6w #: sfx2/source/devtools/DevToolsStrings.hrc:54 msgctxt "STR_PARMETER_MODE_IN_AND_OUT" msgid "[in&out]" -msgstr "" +msgstr "[in&out]" #. rw6AB #: sfx2/source/devtools/DevToolsStrings.hrc:56 msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE" msgid "attribute" -msgstr "" +msgstr "attribute" #. BwCGg #: sfx2/source/devtools/DevToolsStrings.hrc:57 msgctxt "STR_PROPERTY_ATTRIBUTE_GET" msgid "get" -msgstr "" +msgstr "get" #. MissY #: sfx2/source/devtools/DevToolsStrings.hrc:58 msgctxt "STR_PROPERTY_ATTRIBUTE_SET" msgid "set" -msgstr "" +msgstr "set" #. Nhmiv #: sfx2/source/devtools/DevToolsStrings.hrc:59 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID" msgid "may be void" -msgstr "" +msgstr "may be void" #. zECkD #: sfx2/source/devtools/DevToolsStrings.hrc:60 msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY" msgid "read-only" -msgstr "" +msgstr "read-only" #. BtQDx #: sfx2/source/devtools/DevToolsStrings.hrc:61 msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY" msgid "write-only" -msgstr "" +msgstr "write-only" #. dBQEu #: sfx2/source/devtools/DevToolsStrings.hrc:62 msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE" msgid "removeable" -msgstr "" +msgstr "removable" #. jRo8t #: sfx2/source/devtools/DevToolsStrings.hrc:63 msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND" msgid "bound" -msgstr "" +msgstr "bound" #. rBqTG #: sfx2/source/devtools/DevToolsStrings.hrc:64 msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED" msgid "constrained" -msgstr "" +msgstr "constrained" #. XLnBt #: sfx2/source/devtools/DevToolsStrings.hrc:65 msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT" msgid "transient" -msgstr "" +msgstr "transient" #. BK7Zk #: sfx2/source/devtools/DevToolsStrings.hrc:66 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS" msgid "may be ambiguous" -msgstr "" +msgstr "may be ambiguous" #. BDEqD #: sfx2/source/devtools/DevToolsStrings.hrc:67 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT" msgid "may be default" -msgstr "" +msgstr "may be default" #. TGQhd #: sfx2/source/devtools/DevToolsStrings.hrc:69 msgctxt "STR_PROPERTY_VALUE_SEQUENCE" msgid "" -msgstr "" +msgstr "" #. KZ5M4 #: sfx2/source/devtools/DevToolsStrings.hrc:70 msgctxt "STR_PROPERTY_VALUE_OBJECT" msgid "" -msgstr "" +msgstr "" #. xKaJy #: sfx2/source/devtools/DevToolsStrings.hrc:71 msgctxt "STR_PROPERTY_VALUE_STRUCT" msgid "" -msgstr "" +msgstr "" #. AxfFu #: sfx2/uiconfig/ui/addtargetdialog.ui:8 @@ -2969,7 +2971,7 @@ #: sfx2/uiconfig/ui/commandpopup.ui:36 msgctxt "commandpopup|entry" msgid "Search command" -msgstr "" +msgstr "Search command" #. w2G7M #: sfx2/uiconfig/ui/custominfopage.ui:15 @@ -3017,7 +3019,7 @@ #: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106 msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK" msgid "Close Sidebar Deck" -msgstr "" +msgstr "Close Sidebar Deck" #. pxEPn #: sfx2/uiconfig/ui/descriptioninfopage.ui:18 @@ -3077,73 +3079,73 @@ #: sfx2/uiconfig/ui/developmenttool.ui:116 msgctxt "developmenttool|dom_current_selection_toggle-tooltip" msgid "Current Selection In Document" -msgstr "" +msgstr "Current Selection In Document" #. Po2S3 #: sfx2/uiconfig/ui/developmenttool.ui:117 msgctxt "developmenttool|dom_current_selection_toggle" msgid "Current Selection" -msgstr "" +msgstr "Current Selection" #. eB6NR #: sfx2/uiconfig/ui/developmenttool.ui:128 msgctxt "developmenttool|dom_refresh_button-tooltip" msgid "Refresh Document Model Tree View" -msgstr "" +msgstr "Refresh Document Model Tree View" #. FD2yt #: sfx2/uiconfig/ui/developmenttool.ui:129 msgctxt "developmenttool|dom_refresh_button" msgid "Refresh" -msgstr "" +msgstr "Refresh" #. qVgcX #: sfx2/uiconfig/ui/developmenttool.ui:175 msgctxt "developmenttool|object" msgid "Object" -msgstr "" +msgstr "Object" #. x6GLB #: sfx2/uiconfig/ui/developmenttool.ui:223 msgctxt "developmenttool|tooltip-back" msgid "Back" -msgstr "" +msgstr "Back" #. SinPk #: sfx2/uiconfig/ui/developmenttool.ui:224 msgctxt "developmenttool|back" msgid "Back" -msgstr "" +msgstr "Back" #. 4CBb3 #: sfx2/uiconfig/ui/developmenttool.ui:236 msgctxt "developmenttool|tooltip-inspect" msgid "Inspect" -msgstr "" +msgstr "Inspect" #. vCciB #: sfx2/uiconfig/ui/developmenttool.ui:237 msgctxt "developmenttool|inspect" msgid "Inspect" -msgstr "" +msgstr "Inspect" #. nFMXe #: sfx2/uiconfig/ui/developmenttool.ui:249 msgctxt "developmenttool|tooltip-refresh" msgid "Refresh" -msgstr "" +msgstr "Refresh" #. CFuvW #: sfx2/uiconfig/ui/developmenttool.ui:250 msgctxt "developmenttool|refresh" msgid "Refresh" -msgstr "" +msgstr "Refresh" #. 6gFmn #: sfx2/uiconfig/ui/developmenttool.ui:273 msgctxt "developmenttool|classname" msgid "Class name:" -msgstr "" +msgstr "Class name:" #. a9j7f #: sfx2/uiconfig/ui/developmenttool.ui:338 @@ -3151,79 +3153,79 @@ #: sfx2/uiconfig/ui/developmenttool.ui:445 msgctxt "developmenttool|name" msgid "Name" -msgstr "" +msgstr "Name" #. VFqAa #: sfx2/uiconfig/ui/developmenttool.ui:358 msgctxt "developmenttool|interfaces" msgid "Interfaces" -msgstr "" +msgstr "Interfaces" #. iCdWe #: sfx2/uiconfig/ui/developmenttool.ui:410 msgctxt "developmenttool|services" msgid "Services" -msgstr "" +msgstr "Services" #. H7pYE #: sfx2/uiconfig/ui/developmenttool.ui:460 msgctxt "developmenttool|value" msgid "Value" -msgstr "" +msgstr "Value" #. Jjkqh #: sfx2/uiconfig/ui/developmenttool.ui:474 msgctxt "developmenttool|type" msgid "Type" -msgstr "" +msgstr "Type" #. zpXuY #: sfx2/uiconfig/ui/developmenttool.ui:488 msgctxt "developmenttool|info" msgid "Info" -msgstr "" +msgstr "Info" #. AUktw #: sfx2/uiconfig/ui/developmenttool.ui:539 msgctxt "developmenttool|properties" msgid "Properties" -msgstr "" +msgstr "Properties" #. wGJtn #: sfx2/uiconfig/ui/developmenttool.ui:569 msgctxt "developmenttool|method" msgid "Method" -msgstr "" +msgstr "Method" #. EnGfg #: sfx2/uiconfig/ui/developmenttool.ui:584 msgctxt "developmenttool|returntype" msgid "Return Type" -msgstr "" +msgstr "Return Type" #. AKnSa #: sfx2/uiconfig/ui/developmenttool.ui:598 msgctxt "developmenttool|parameters" msgid "Parameters" -msgstr "" +msgstr "Parameters" #. tmttq #: sfx2/uiconfig/ui/developmenttool.ui:612 msgctxt "developmenttool|implementation_class" msgid "Implementation Class" -msgstr "" +msgstr "Implementation Class" #. Q2CBK #: sfx2/uiconfig/ui/developmenttool.ui:634 msgctxt "developmenttool|methods" msgid "Methods" -msgstr "" +msgstr "Methods" #. 68CBk #: sfx2/uiconfig/ui/devtoolsmenu.ui:12 msgctxt "devtoolsmenu|inspect" msgid "Inspect" -msgstr "" +msgstr "Inspect" #. zjFgn #: sfx2/uiconfig/ui/documentfontspage.ui:28 @@ -3649,7 +3651,7 @@ #: sfx2/uiconfig/ui/helpsearchpage.ui:122 msgctxt "helpsearchpage|find" msgid "_Find" -msgstr "" +msgstr "_Find" #. ZiE8A #: sfx2/uiconfig/ui/helpsearchpage.ui:141 @@ -3835,7 +3837,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:45 msgctxt "loadtemplatedialog|fromfile|tooltip_text" msgid "Copy styles from selected external document to current document." -msgstr "" +msgstr "Copy styles from selected external document to current document." #. GE236 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:48 @@ -3871,19 +3873,19 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:245 msgctxt "loadtemplatedialog|label2|tooltip_text" msgid "Templates in the selected category" -msgstr "" +msgstr "Templates in the selected category" #. rFENe #: sfx2/uiconfig/ui/loadtemplatedialog.ui:264 msgctxt "loadtemplatedialog|text" msgid "_Paragraph and Character" -msgstr "" +msgstr "_Paragraph and Character" #. jCAuA #: sfx2/uiconfig/ui/loadtemplatedialog.ui:269 msgctxt "loadtemplatedialog|text|tooltip_text" msgid "Copy paragraph and character styles to current document." -msgstr "" +msgstr "Copy paragraph and character styles to current document." #. VLWfZ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:273 @@ -3901,7 +3903,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:289 msgctxt "loadtemplatedialog|frame|tooltip_text" msgid "Copy frame styles to current document." -msgstr "" +msgstr "Copy frame styles to current document." #. 4ZF6u #: sfx2/uiconfig/ui/loadtemplatedialog.ui:293 @@ -3913,13 +3915,13 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:304 msgctxt "loadtemplatedialog|pages" msgid "Pa_ge" -msgstr "" +msgstr "Pa_ge" #. hdRo6 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:309 msgctxt "loadtemplatedialog|pages|tooltip_text" msgid "Copy page styles to current document." -msgstr "" +msgstr "Copy page styles to current document." #. o2C8c #: sfx2/uiconfig/ui/loadtemplatedialog.ui:313 @@ -3931,19 +3933,19 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:324 msgctxt "loadtemplatedialog|numbering" msgid "_List" -msgstr "" +msgstr "_List" #. VZxbf #: sfx2/uiconfig/ui/loadtemplatedialog.ui:329 msgctxt "loadtemplatedialog|numbering|tooltip_text" msgid "Copy list styles to current document." -msgstr "" +msgstr "Copy list styles to current document." #. PAsEB #: sfx2/uiconfig/ui/loadtemplatedialog.ui:333 msgctxt "loadtemplatedialog|extended_tip|numbering" msgid "Loads the list styles from the selected document into the current document." -msgstr "" +msgstr "Loads the list styles from the selected document into the current document." #. VWzsG #: sfx2/uiconfig/ui/loadtemplatedialog.ui:344 @@ -3955,7 +3957,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:350 msgctxt "loadtemplatedialog|overwrite|tooltip_text" msgid "Overwrite styles with same name" -msgstr "" +msgstr "Overwrite styles with same name" #. A9ogA #: sfx2/uiconfig/ui/loadtemplatedialog.ui:353 @@ -3967,7 +3969,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:376 msgctxt "loadtemplatedialog|alttitle" msgid "Load Styles from Template" -msgstr "" +msgstr "Load Styles from Template" #. X5Pi5 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:413 @@ -4045,31 +4047,31 @@ #: sfx2/uiconfig/ui/newstyle.ui:16 msgctxt "newstyle|CreateStyleDialog" msgid "New Style from Selection" -msgstr "" +msgstr "New Style from Selection" #. 2XkTt #: sfx2/uiconfig/ui/newstyle.ui:140 msgctxt "newstyle|styles-atkobject" msgid "Custom styles for selected category" -msgstr "" +msgstr "Custom styles for selected category" #. UEGSg #: sfx2/uiconfig/ui/newstyle.ui:160 msgctxt "newstyle|stylename-atkobject" msgid "Style name" -msgstr "" +msgstr "Style name" #. bjN3T #: sfx2/uiconfig/ui/newstyle.ui:175 msgctxt "newstyle|categorylabel" msgid "Custom styles for current document" -msgstr "" +msgstr "Custom styles for current document" #. 6mnDS #: sfx2/uiconfig/ui/newstyle.ui:191 msgctxt "newstyle|label1" msgid "Enter new style name:" -msgstr "" +msgstr "Enter new style name:" #. R6zJz #: sfx2/uiconfig/ui/notebookbar.ui:74 @@ -4387,7 +4389,7 @@ #: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78 msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS" msgid "More Options" -msgstr "" +msgstr "More Options" #. QrtGb #: sfx2/uiconfig/ui/password.ui:8 @@ -4501,7 +4503,7 @@ #: sfx2/uiconfig/ui/querysavedialog.ui:56 msgctxt "querysavedialog|save" msgid "_Save" -msgstr "" +msgstr "_Save" #. 6WbvE #: sfx2/uiconfig/ui/safemodequerydialog.ui:7 @@ -4531,13 +4533,13 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:102 msgctxt "saveastemplatedlg|create_label" msgid "Enter Template _Name:" -msgstr "" +msgstr "Enter Template _Name:" #. NyFdH #: sfx2/uiconfig/ui/saveastemplatedlg.ui:103 msgctxt "saveastemplatedlg|create_label" msgid "Enter a name for the template." -msgstr "" +msgstr "Enter a name for the template." #. Xo6BH #: sfx2/uiconfig/ui/saveastemplatedlg.ui:126 @@ -4549,13 +4551,13 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:154 msgctxt "saveastemplatedlg|select_label" msgid "Select Template _Category:" -msgstr "" +msgstr "Select Template _Category:" #. 4ANkg #: sfx2/uiconfig/ui/saveastemplatedlg.ui:155 msgctxt "saveastemplatedlg|select_label" msgid "Save template in selected category." -msgstr "" +msgstr "Save template in selected category." #. JBPKb #: sfx2/uiconfig/ui/saveastemplatedlg.ui:203 @@ -4927,13 +4929,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:167 msgctxt "templatedlg|action_menu|label" msgid "_Manage" -msgstr "" +msgstr "_Manage" #. LUs2m #: sfx2/uiconfig/ui/templatedlg.ui:181 msgctxt "templatedlg|extended_tip|action_menu" msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager." -msgstr "" +msgstr "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager." #. fXVNY #: sfx2/uiconfig/ui/templatedlg.ui:208 @@ -4951,7 +4953,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:211 msgctxt "templatedlg|applist" msgid "Text Documents" -msgstr "" +msgstr "Text Documents" #. eECt7 #: sfx2/uiconfig/ui/templatedlg.ui:212 @@ -4993,31 +4995,31 @@ #: sfx2/uiconfig/ui/templatedlg.ui:357 msgctxt "templatedlg|treeviewcolumn1" msgid "Name" -msgstr "" +msgstr "Name" #. 7EJRA #: sfx2/uiconfig/ui/templatedlg.ui:374 msgctxt "templatedlg|treeviewcolumn2" msgid "Category" -msgstr "" +msgstr "Category" #. AC27i #: sfx2/uiconfig/ui/templatedlg.ui:389 msgctxt "templatedlg|treeviewcolumn3" msgid "Application" -msgstr "" +msgstr "Application" #. eSaBw #: sfx2/uiconfig/ui/templatedlg.ui:404 msgctxt "templatedlg|treeviewcolumn4" msgid "Modified" -msgstr "" +msgstr "Modified" #. pNzYA #: sfx2/uiconfig/ui/templatedlg.ui:419 msgctxt "templatedlg|treeviewcolumn5" msgid "Size" -msgstr "" +msgstr "Size" #. j39jM #: sfx2/uiconfig/ui/templatedlg.ui:445 @@ -5029,13 +5031,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:464 msgctxt "templatedlg|thumbnail_view_btn|tooltip_text" msgid "Thumbnail View" -msgstr "" +msgstr "Thumbnail View" #. j76ke #: sfx2/uiconfig/ui/templatedlg.ui:481 msgctxt "templatedlg|list_view_btn|tooltip_text" msgid "List View" -msgstr "" +msgstr "List View" #. pm89q #: sfx2/uiconfig/ui/templatepanel.ui:127 @@ -5113,7 +5115,7 @@ #: sfx2/uiconfig/ui/versionscmis.ui:92 msgctxt "versionscmis|open" msgid "_Open" -msgstr "" +msgstr "_Open" #. gRBJa #: sfx2/uiconfig/ui/versionscmis.ui:177 @@ -5179,7 +5181,7 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:119 msgctxt "versionsofdialog|open" msgid "_Open" -msgstr "" +msgstr "_Open" #. ASJac #: sfx2/uiconfig/ui/versionsofdialog.ui:126 diff -Nru libreoffice-7.3.4/translations/source/en-GB/svx/messages.po libreoffice-7.3.5/translations/source/en-GB/svx/messages.po --- libreoffice-7.3.4/translations/source/en-GB/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\n" @@ -1124,7 +1124,7 @@ #: include/svx/strings.hrc:209 msgctxt "STR_DragInsertGluePoint" msgid "Insert gluepoint to %1" -msgstr "Insert gluepoint to %1" +msgstr "Insert glue point to %1" #. 6JqED #: include/svx/strings.hrc:210 @@ -1292,13 +1292,13 @@ #: include/svx/strings.hrc:237 msgctxt "STR_ViewMarkedGluePoint" msgid "Gluepoint from %1" -msgstr "Gluepoint from %1" +msgstr "Glue point from %1" #. qCFmV #: include/svx/strings.hrc:238 msgctxt "STR_ViewMarkedGluePoints" msgid "%2 gluepoints from %1" -msgstr "%2 gluepoints from %1" +msgstr "%2 glue points from %1" #. CDqRQ #: include/svx/strings.hrc:239 @@ -1328,13 +1328,13 @@ #: include/svx/strings.hrc:243 msgctxt "STR_ViewMarkGluePoints" msgid "Mark gluepoints" -msgstr "Mark gluepoints" +msgstr "Mark glue points" #. eH9Vs #: include/svx/strings.hrc:244 msgctxt "STR_ViewMarkMoreGluePoints" msgid "Mark additional gluepoints" -msgstr "" +msgstr "Mark additional glue points" #. D5ZZA #: include/svx/strings.hrc:245 @@ -2261,13 +2261,13 @@ #: include/svx/strings.hrc:401 msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER" msgid "Columns number" -msgstr "" +msgstr "Columns number" #. DxZkZ #: include/svx/strings.hrc:402 msgctxt "SIP_SA_TEXTCOLUMNS_SPACING" msgid "Columns spacing" -msgstr "" +msgstr "Columns spacing" #. HDtDf #: include/svx/strings.hrc:403 @@ -5194,7 +5194,7 @@ #: include/svx/strings.hrc:909 msgctxt "RID_SVXSTR_DASH2" msgid "Dot (Rounded)" -msgstr "" +msgstr "Dot (Rounded)" #. 2X7pw #: include/svx/strings.hrc:910 @@ -5302,67 +5302,67 @@ #: include/svx/strings.hrc:927 msgctxt "RID_SVXSTR_DASH20" msgid "Dash Dot" -msgstr "" +msgstr "Dash Dot" #. 5ZGZy #: include/svx/strings.hrc:928 msgctxt "RID_SVXSTR_DASH21" msgid "Long Dot (Rounded)" -msgstr "" +msgstr "Long Dot (Rounded)" #. Ac2F2 #: include/svx/strings.hrc:929 msgctxt "RID_SVXSTR_DASH22" msgid "Dash Dot Dot" -msgstr "" +msgstr "Dash Dot Dot" #. mWMXG #: include/svx/strings.hrc:930 msgctxt "RID_SVXSTR_DASH23" msgid "Dash (Rounded)" -msgstr "" +msgstr "Dot (Rounded)" #. B6fd2 #: include/svx/strings.hrc:931 msgctxt "RID_SVXSTR_DASH24" msgid "Long Dash (Rounded)" -msgstr "" +msgstr "Long Dash (Rounded)" #. ds2VE #: include/svx/strings.hrc:932 msgctxt "RID_SVXSTR_DASH25" msgid "Double Dash (Rounded)" -msgstr "" +msgstr "Double Dash (Rounded)" #. qtCkm #: include/svx/strings.hrc:933 msgctxt "RID_SVXSTR_DASH26" msgid "Dash Dot (Rounded)" -msgstr "" +msgstr "Dash Dot (Rounded)" #. psNix #: include/svx/strings.hrc:934 msgctxt "RID_SVXSTR_DASH27" msgid "Long Dash Dot (Rounded)" -msgstr "" +msgstr "Long Dash Dot (Rounded)" #. FWkBJ #: include/svx/strings.hrc:935 msgctxt "RID_SVXSTR_DASH28" msgid "Double Dash Dot (Rounded)" -msgstr "" +msgstr "Double Dash Dot (Rounded)" #. eiCNz #: include/svx/strings.hrc:936 msgctxt "RID_SVXSTR_DASH29" msgid "Dash Dot Dot (Rounded)" -msgstr "" +msgstr "Dash Dot Dot (Rounded)" #. BbE5B #: include/svx/strings.hrc:937 msgctxt "RID_SVXSTR_DASH30" msgid "Double Dash Dot Dot (Rounded)" -msgstr "" +msgstr "Double Dash Dot Dot (Rounded)" #. iKAwD #: include/svx/strings.hrc:939 @@ -5571,7 +5571,7 @@ #: include/svx/strings.hrc:997 msgctxt "RID_SVXSTR_LEND28" msgid "CF Many" -msgstr "" +msgstr "CF Many" #. 6wQxC #. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation @@ -6778,7 +6778,7 @@ #: include/svx/strings.hrc:1222 msgctxt "RID_STR_DATE_AND_TIME" msgid "Date and Time Field" -msgstr "" +msgstr "Date and Time Field" #. PzA5d #: include/svx/strings.hrc:1224 @@ -7229,7 +7229,7 @@ #: include/svx/strings.hrc:1299 msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT" msgid "%1. Click to change selection mode." -msgstr "" +msgstr "%1. Click to change selection mode." #. Dh5A2 #: include/svx/strings.hrc:1300 @@ -9845,73 +9845,73 @@ #: include/svx/strings.hrc:1753 msgctxt "RID_SUBSETMAP" msgid "Arabic Extended-B" -msgstr "" +msgstr "Arabic Extended-B" #. QFLaj #: include/svx/strings.hrc:1754 msgctxt "RID_SUBSETMAP" msgid "Cypro-Minoan" -msgstr "" +msgstr "Cypro-Minoan" #. CYEeS #: include/svx/strings.hrc:1755 msgctxt "RID_SUBSETMAP" msgid "Ethiopic Extended-B" -msgstr "" +msgstr "Ethiopic Extended-B" #. ABqB6 #: include/svx/strings.hrc:1756 msgctxt "RID_SUBSETMAP" msgid "Kana Extended-B" -msgstr "" +msgstr "Kana Extended-B" #. DmagG #: include/svx/strings.hrc:1757 msgctxt "RID_SUBSETMAP" msgid "Latin Extended-F" -msgstr "" +msgstr "Latin Extended-F" #. tjuhJ #: include/svx/strings.hrc:1758 msgctxt "RID_SUBSETMAP" msgid "Latin Extended-G" -msgstr "" +msgstr "Latin Extended-G" #. naYAA #: include/svx/strings.hrc:1759 msgctxt "RID_SUBSETMAP" msgid "Old Uyghur" -msgstr "" +msgstr "Old Uyghur" #. JGVtT #: include/svx/strings.hrc:1760 msgctxt "RID_SUBSETMAP" msgid "Tangsa" -msgstr "" +msgstr "Tangsa" #. pkBYF #: include/svx/strings.hrc:1761 msgctxt "RID_SUBSETMAP" msgid "Toto" -msgstr "" +msgstr "Toto" #. SEVKT #: include/svx/strings.hrc:1762 msgctxt "RID_SUBSETMAP" msgid "Canadian Aboriginal Syllabics Extended-A" -msgstr "" +msgstr "Canadian Aboriginal Syllabics Extended-A" #. NpBis #: include/svx/strings.hrc:1763 msgctxt "RID_SUBSETMAP" msgid "Vithkuqi" -msgstr "" +msgstr "Vithkuqi" #. ssh5F #: include/svx/strings.hrc:1764 msgctxt "RID_SUBSETMAP" msgid "Znamenny Musical Notation" -msgstr "" +msgstr "Znamenny Musical Notation" #. BGGvD #: include/svx/strings.hrc:1766 @@ -9984,128 +9984,128 @@ #: include/svx/strings.hrc:1781 msgctxt "RID_SVXSTR_TRANSPARENCY" msgid "Transparency:" -msgstr "" +msgstr "Transparency:" #. PGuXa #. strings related to borders #: include/svx/strings.hrc:1785 msgctxt "RID_SVXSTR_TABLE_PRESET_NONE" msgid "No Borders" -msgstr "" +msgstr "No Borders" #. LzhYZ #: include/svx/strings.hrc:1786 msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER" msgid "Outer Border Only" -msgstr "" +msgstr "Outer Border Only" #. EniNF #: include/svx/strings.hrc:1787 msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI" msgid "Outer Border and Horizontal Lines" -msgstr "" +msgstr "Outer Border and Horizontal Lines" #. BuDWX #: include/svx/strings.hrc:1788 msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL" msgid "Outer Border and All Inner Lines" -msgstr "" +msgstr "Outer Border and All Inner Lines" #. ckL2Z #: include/svx/strings.hrc:1789 msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI" msgid "Outer Border and Vertical Lines" -msgstr "" +msgstr "Outer Border and Vertical Lines" #. Q9hj4 #: include/svx/strings.hrc:1790 msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER" msgid "Outer Border Without Changing Inner Lines" -msgstr "" +msgstr "Outer Border Without Changing Inner Lines" #. b7wCr #: include/svx/strings.hrc:1791 msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL" msgid "Diagonal Lines Only" -msgstr "" +msgstr "Diagonal Lines Only" #. 8r98a #: include/svx/strings.hrc:1792 msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN" msgid "Diagonal Down Border" -msgstr "" +msgstr "Diagonal Down Border" #. P4FGE #: include/svx/strings.hrc:1793 msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP" msgid "Diagonal Up Border" -msgstr "" +msgstr "Diagonal Up Border" #. VxBrT #: include/svx/strings.hrc:1794 msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS" msgid "Criss-Cross Border" -msgstr "" +msgstr "Criss-Cross Border" #. hTi3j #: include/svx/strings.hrc:1795 msgctxt "RID_SVXSTR_PARA_PRESET_ALL" msgid "All Four Borders" -msgstr "" +msgstr "All Four Borders" #. o8fB8 #: include/svx/strings.hrc:1796 msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT" msgid "Left and Right Borders Only" -msgstr "" +msgstr "Left and Right Borders Only" #. 6NnM2 #: include/svx/strings.hrc:1797 msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM" msgid "Top and Bottom Borders Only" -msgstr "" +msgstr "Top and Bottom Borders Only" #. KTYVW #: include/svx/strings.hrc:1798 msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI" msgid "Top and Bottom Borders, and All Horizontal Lines" -msgstr "" +msgstr "Top and Bottom Borders, and All Horizontal Lines" #. fRcEu #: include/svx/strings.hrc:1799 msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT" msgid "Left Border Only" -msgstr "" +msgstr "Left Border Only" #. uqzE7 #: include/svx/strings.hrc:1800 msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT" msgid "Right Border Only" -msgstr "" +msgstr "Right Border Only" #. 6ecLB #: include/svx/strings.hrc:1801 msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP" msgid "Top Border Only" -msgstr "" +msgstr "Top Border Only" #. B6KZc #: include/svx/strings.hrc:1802 msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM" msgid "Bottom Border Only" -msgstr "" +msgstr "Bottom Border Only" #. aCMGz #: include/svx/strings.hrc:1803 msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR" msgid "Top and Bottom Borders, and All Inner Lines" -msgstr "" +msgstr "Top and Bottom Borders, and All Inner Lines" #. t38dT #: include/svx/strings.hrc:1804 msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER" msgid "Left and Right Borders, and All Inner Lines" -msgstr "" +msgstr "Left and Right Borders, and All Inner Lines" #. wH3TZ msgctxt "stock" @@ -10768,7 +10768,6 @@ #. A8Dbz #: svx/inc/formnavi.hrc:34 -#, fuzzy msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo" msgid "Combo Bo~x" msgstr "Combo Bo~x" @@ -10819,31 +10818,31 @@ #: svx/inc/formnavi.hrc:42 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl" msgid "Ima~ge Control" -msgstr "" +msgstr "Ima~ge Control" #. WDsBh #: svx/inc/formnavi.hrc:43 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted" msgid "Fo~rmatted Field" -msgstr "" +msgstr "Fo~rmatted Field" #. aEXn5 #: svx/inc/formnavi.hrc:44 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar" msgid "Scroll bar" -msgstr "" +msgstr "Scroll bar" #. cGxjA #: svx/inc/formnavi.hrc:45 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton" msgid "Spin Button" -msgstr "" +msgstr "Spin Button" #. HYbc6 #: svx/inc/formnavi.hrc:46 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar" msgid "Navigation Bar" -msgstr "" +msgstr "Navigation Bar" #. d7vkX #: svx/inc/frmsel.hrc:30 @@ -10962,31 +10961,31 @@ #: svx/inc/inspectorvalues.hrc:21 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Normal" -msgstr "" +msgstr "Normal" #. d2zEw #: svx/inc/inspectorvalues.hrc:22 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bold" -msgstr "" +msgstr "Bold" #. jjrLz #: svx/inc/inspectorvalues.hrc:23 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Italic" -msgstr "" +msgstr "Italic" #. RTu5D #: svx/inc/inspectorvalues.hrc:25 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "False" -msgstr "" +msgstr "False" #. 67Lpi #: svx/inc/inspectorvalues.hrc:26 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "True" -msgstr "" +msgstr "True" #. hPpj7 #. SVX_NUM_NUMBER_NONE @@ -11189,14 +11188,14 @@ #: svx/inc/numberingtype.hrc:57 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "Α, Β, Γ, ... (Greek)" -msgstr "" +msgstr "Α, Β, Γ, ... (Greek)" #. CMFjw #. CHARS_GREEK_LOWER_LETTER #: svx/inc/numberingtype.hrc:58 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "α, β, γ, ... (Greek)" -msgstr "" +msgstr "α, β, γ, ... (Greek)" #. 8Cxkk #. NUMBER_HEBREW @@ -11718,13 +11717,13 @@ #: svx/inc/swframeposstrings.hrc:46 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Page text area top" -msgstr "" +msgstr "Page text area top" #. vWEe2 #: svx/inc/swframeposstrings.hrc:47 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Page text area bottom" -msgstr "" +msgstr "Page text area bottom" #. XG9Bj #: svx/inc/swframeposstrings.hrc:48 @@ -12708,25 +12707,25 @@ #: svx/source/dialog/page.hrc:94 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "Widescreen" -msgstr "" +msgstr "Widescreen" #. HqpFJ #: svx/source/dialog/page.hrc:95 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "On-screen Show (4:3)" -msgstr "" +msgstr "On-screen Show (4:3)" #. PFU8U #: svx/source/dialog/page.hrc:96 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "On-screen Show (16:9)" -msgstr "" +msgstr "On-screen Show (16:9)" #. 48LFY #: svx/source/dialog/page.hrc:97 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "On-screen Show (16:10)" -msgstr "" +msgstr "On-screen Show (16:10)" #. ryFz3 #: svx/source/dialog/page.hrc:98 @@ -12792,14 +12791,13 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:103 msgctxt "acceptrejectchangesdialog|undo" msgid "_Undo" -msgstr "" +msgstr "_Undo" #. phEJs #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110 -#, fuzzy msgctxt "acceptrejectchangesdialog|extended_tip|undo" msgid "Reverse the last Accept or Reject command." -msgstr " Reverse the last Accept or Reject command." +msgstr "Reverse the last Accept or Reject command." #. Jyka9 #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169 @@ -13027,7 +13025,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:266 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 "The Condition button opens the Add Condition dialogue box where you can enter used namespaces and full XPath expressions." #. Rqtm8 #: svx/uiconfig/ui/adddataitemdialog.ui:277 @@ -13099,7 +13097,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:380 msgctxt "adddataitemdialog|extended_tip|constraintcond" msgid "The Condition button opens the Add Condition dialog where you can specify the constraint condition." -msgstr "" +msgstr "The Condition button opens the Add Condition dialogue box where you can specify the constraint condition." #. wDmeB #: svx/uiconfig/ui/adddataitemdialog.ui:391 @@ -13123,7 +13121,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:418 msgctxt "adddataitemdialog|extended_tip|calculatecond" msgid "The Condition button opens the Add Condition dialog where you can enter the calculation." -msgstr "" +msgstr "The Condition button opens the Add Condition dialogue box where you can enter the calculation." #. JEwfa #: svx/uiconfig/ui/adddataitemdialog.ui:433 @@ -13453,7 +13451,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:402 msgctxt "asianphoneticguidedialog|extended_tip|adjustlb" msgid "Select the horizontal alignment for the ruby text." -msgstr "" +msgstr "Select the horizontal alignment for the ruby text." #. 68NYJ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:416 @@ -13591,7 +13589,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:253 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 "Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted." #. AdAdK #: svx/uiconfig/ui/chinesedictionary.ui:32 @@ -13819,13 +13817,13 @@ #: svx/uiconfig/ui/classificationdialog.ui:158 msgctxt "classificationdialog|extended_tip|classiticationCB" msgid "Lists the translated document and paragraph classification levels of your installation." -msgstr "" +msgstr "Lists the translated document and paragraph classification levels of your installation." #. BKBcj #: svx/uiconfig/ui/classificationdialog.ui:176 msgctxt "classificationdialog|extended_tip|internationalclassiticationCB" msgid "Lists the international document and paragraph classification levels of your installation." -msgstr "" +msgstr "Lists the international document and paragraph classification levels of your installation." #. 2DFQN #: svx/uiconfig/ui/classificationdialog.ui:189 @@ -13843,13 +13841,13 @@ #: svx/uiconfig/ui/classificationdialog.ui:226 msgctxt "classificationdialog|extended_tip|recentlyUsedCB" msgid "Lists the most recently used classification terms." -msgstr "" +msgstr "Lists the most recently used classification terms." #. E4AUF #: svx/uiconfig/ui/classificationdialog.ui:270 msgctxt "classificationdialog|extended_tip|markingLB" msgid "Lists the specific classification markings for document and paragraph classification of your installation." -msgstr "" +msgstr "Lists the specific classification markings for document and paragraph classification of your installation." #. L4EWE #: svx/uiconfig/ui/classificationdialog.ui:300 @@ -13867,7 +13865,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:327 msgctxt "classificationdialog|extended_tip|toolboxCB" msgid "Applies bold character style to the classification contents." -msgstr "" +msgstr "Applies bold character style to the classification contents." #. v8MHF #: svx/uiconfig/ui/classificationdialog.ui:339 @@ -13879,13 +13877,13 @@ #: svx/uiconfig/ui/classificationdialog.ui:345 msgctxt "classificationdialog|extended_tip|signButton" msgid "Opens the Select Certificate dialog to select a digital certificate for paragraph signature." -msgstr "" +msgstr "Opens the Select Certificate dialogue box to select a digital certificate for paragraph signature." #. xjChP #: svx/uiconfig/ui/classificationdialog.ui:382 msgctxt "classificationdialog|extended_tip|classiticationEditWindow" msgid "Displays the current classification terms of the document or paragraph." -msgstr "" +msgstr "Displays the current classification terms of the document or paragraph." #. cDs9q #: svx/uiconfig/ui/classificationdialog.ui:418 @@ -13909,19 +13907,19 @@ #: svx/uiconfig/ui/classificationdialog.ui:472 msgctxt "classificationdialog|extended_tip|intellectualPropertyPartEntry" msgid "Enter a custom intellectual property text for the document." -msgstr "" +msgstr "Enter a custom intellectual property text for the document." #. Q3nGA #: svx/uiconfig/ui/classificationdialog.ui:517 msgctxt "classificationdialog|extended_tip|intellectualPropertyPartLB" msgid "Lists the available intellectual property licenses defined for your installation." -msgstr "" +msgstr "Lists the available intellectual property licenses defined for your installation." #. GR2S8 #: svx/uiconfig/ui/classificationdialog.ui:563 msgctxt "classificationdialog|extended_tip|intellectual PropertyPartNumberLB" msgid "Lists the available intellectual property part numbers of your installation." -msgstr "" +msgstr "Lists the available intellectual property part numbers of your installation." #. gdZhQ #: svx/uiconfig/ui/classificationdialog.ui:576 @@ -13933,7 +13931,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:584 msgctxt "classificationdialog|extended_tip|intelectualPropertyPartAddButton" msgid "Click to add the part text to the intellectual property classification content." -msgstr "" +msgstr "Click to add the part text to the intellectual property classification content." #. XGQ6V #: svx/uiconfig/ui/classificationdialog.ui:605 @@ -14047,7 +14045,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:317 msgctxt "compressgraphicdialog|checkbox-reduce-resolution" msgid "Reduce image resolution to:" -msgstr "" +msgstr "Reduce image resolution to:" #. pYRff #: svx/uiconfig/ui/compressgraphicdialog.ui:334 @@ -14165,6 +14163,9 @@ "You can soon find the report at:\n" "https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" msgstr "" +"The crash report was successfully uploaded.\n" +"You can soon find the report at:\n" +"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" #. DDKL6 #: svx/uiconfig/ui/crashreportdlg.ui:11 @@ -14194,7 +14195,7 @@ #: svx/uiconfig/ui/crashreportdlg.ui:50 msgctxt "crashreportdlg|btn_cancel" msgid "Do _Not Send" -msgstr "" +msgstr "Do _Not Send" #. afExy #: svx/uiconfig/ui/crashreportdlg.ui:64 @@ -14224,7 +14225,7 @@ #: svx/uiconfig/ui/crashreportdlg.ui:144 msgctxt "crashreportdlg|privacy" msgid "Privacy Policy" -msgstr "" +msgstr "Privacy Policy" #. gsFSM #: svx/uiconfig/ui/datanavigator.ui:12 @@ -14656,7 +14657,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:728 msgctxt "docking3deffects|extended_tip|to3d" msgid "Use this icon to convert a selected 2D object to a 3D object." -msgstr "" +msgstr "Use this icon to convert a selected 2-D object to a 3-D object." #. v5fdY #: svx/uiconfig/ui/docking3deffects.ui:742 @@ -14668,7 +14669,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:747 msgctxt "docking3deffects|extended_tip|tolathe" msgid "Click here to convert a selected 2D object to a 3D rotation object." -msgstr "" +msgstr "Click here to convert a selected 2-D object to a 3-D rotation object." #. Tk7Vb #: svx/uiconfig/ui/docking3deffects.ui:761 @@ -15364,7 +15365,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2466 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 "Specifies the properties of 3-D object(s) in the current document or converts a 2-D object to 3-D." #. dzpTm #: svx/uiconfig/ui/dockingcolorreplace.ui:57 @@ -15836,7 +15837,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:581 msgctxt "dockingfontwork|extended_tip|DockingFontwork" msgid "Simple tool for putting text along a curve without any fancy effects." -msgstr "" +msgstr "Simple tool for putting text along a curve without any fancy effects." #. ASETE #: svx/uiconfig/ui/docrecoverybrokendialog.ui:16 @@ -15980,19 +15981,19 @@ #: svx/uiconfig/ui/fileexporteddialog.ui:8 msgctxt "fileexporteddialog|FileExportedDialog" msgid "File Exported" -msgstr "" +msgstr "File Exported" #. H7wJB #: svx/uiconfig/ui/fileexporteddialog.ui:45 msgctxt "fileexporteddialog|openfolder" msgid "Open Containing _Folder" -msgstr "" +msgstr "Open Containing _Folder" #. sthpX #: svx/uiconfig/ui/fileexporteddialog.ui:69 msgctxt "fileexporteddialog|Filelabel" msgid "File Name" -msgstr "" +msgstr "File Name" #. HDhiV #: svx/uiconfig/ui/filtermenu.ui:12 @@ -16022,241 +16023,241 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:8 msgctxt "findreplacedialog-mobile|FindReplaceDialog" msgid "Find & Replace" -msgstr "" +msgstr "Find & Replace" #. eByBj #: svx/uiconfig/ui/findreplacedialog-mobile.ui:138 msgctxt "findreplacedialog-mobile|label4" msgid "_Find:" -msgstr "" +msgstr "_Find:" #. oNJkY #: svx/uiconfig/ui/findreplacedialog-mobile.ui:192 msgctxt "findreplacedialog-mobile|matchcase" msgid "Ma_tch case" -msgstr "" +msgstr "Ma_tch case" #. uiV7G #: svx/uiconfig/ui/findreplacedialog-mobile.ui:207 msgctxt "findreplacedialog-mobile|searchformatted" msgid "For_matted display" -msgstr "" +msgstr "For_matted display" #. 3KibH #: svx/uiconfig/ui/findreplacedialog-mobile.ui:226 msgctxt "findreplacedialog-mobile|wholewords" msgid "Whole wor_ds only" -msgstr "" +msgstr "Whole wor_ds only" #. BRbAi #: svx/uiconfig/ui/findreplacedialog-mobile.ui:243 msgctxt "findreplacedialog-mobile|entirecells" msgid "_Entire cells" -msgstr "" +msgstr "_Entire cells" #. xFvzF #: svx/uiconfig/ui/findreplacedialog-mobile.ui:261 msgctxt "findreplacedialog-mobile|allsheets" msgid "All _sheets" -msgstr "" +msgstr "All _sheets" #. 8a3TB #: svx/uiconfig/ui/findreplacedialog-mobile.ui:297 msgctxt "findreplacedialog-mobile|label1" msgid "_Search For" -msgstr "" +msgstr "_Search For" #. aHAoN #: svx/uiconfig/ui/findreplacedialog-mobile.ui:380 msgctxt "findreplacedialog-mobile|label5" msgid "Re_place:" -msgstr "" +msgstr "Re_place:" #. PhyMv #: svx/uiconfig/ui/findreplacedialog-mobile.ui:418 msgctxt "findreplacedialog-mobile|label2" msgid "Re_place With" -msgstr "" +msgstr "Re_place With" #. gi3jL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:444 msgctxt "findreplacedialog-mobile|searchall" msgid "Find _All" -msgstr "" +msgstr "Find _All" #. xizGS #: svx/uiconfig/ui/findreplacedialog-mobile.ui:458 msgctxt "findreplacedialog-mobile|backsearch" msgid "Find Pre_vious" -msgstr "" +msgstr "Find Pre_vious" #. Fnoy9 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:472 msgctxt "findreplacedialog-mobile|search" msgid "Find Ne_xt" -msgstr "" +msgstr "Find Ne_xt" #. 4xbpA #: svx/uiconfig/ui/findreplacedialog-mobile.ui:488 msgctxt "findreplacedialog-mobile|replace" msgid "_Replace" -msgstr "" +msgstr "_Replace" #. LXUGG #: svx/uiconfig/ui/findreplacedialog-mobile.ui:502 msgctxt "findreplacedialog-mobile|replaceall" msgid "Replace A_ll" -msgstr "" +msgstr "Replace A_ll" #. 8pjvL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:650 msgctxt "findreplacedialog-mobile|selection" msgid "C_urrent selection only" -msgstr "" +msgstr "C_urrent selection only" #. kXCyp #: svx/uiconfig/ui/findreplacedialog-mobile.ui:664 msgctxt "findreplacedialog-mobile|regexp" msgid "Re_gular expressions" -msgstr "" +msgstr "Re_gular expressions" #. PHsrD #: svx/uiconfig/ui/findreplacedialog-mobile.ui:685 msgctxt "findreplacedialog-mobile|attributes" msgid "Attribut_es..." -msgstr "" +msgstr "Attribut_es..." #. GRaeC #: svx/uiconfig/ui/findreplacedialog-mobile.ui:699 msgctxt "findreplacedialog-mobile|format" msgid "For_mat..." -msgstr "" +msgstr "For_mat..." #. cx7u7 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:713 msgctxt "findreplacedialog-mobile|noformat" msgid "_No Format" -msgstr "" +msgstr "_No Format" #. TnTGs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:734 msgctxt "findreplacedialog-mobile|layout" msgid "Search for st_yles" -msgstr "" +msgstr "Search for st_yles" #. QZvqy #: svx/uiconfig/ui/findreplacedialog-mobile.ui:748 msgctxt "findreplacedialog-mobile|includediacritics" msgid "Diac_ritic-sensitive" -msgstr "" +msgstr "Diac_ritic-sensitive" #. jgEBu #: svx/uiconfig/ui/findreplacedialog-mobile.ui:762 msgctxt "findreplacedialog-mobile|includekashida" msgid "_Kashida-sensitive" -msgstr "" +msgstr "_Kashida-sensitive" #. HEtSQ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:776 msgctxt "findreplacedialog-mobile|matchcharwidth" msgid "Match character _width" -msgstr "" +msgstr "Match character _width" #. PeENq #: svx/uiconfig/ui/findreplacedialog-mobile.ui:795 msgctxt "findreplacedialog-mobile|similarity" msgid "S_imilarity search" -msgstr "" +msgstr "S_imilarity search" #. BxPGW #: svx/uiconfig/ui/findreplacedialog-mobile.ui:810 msgctxt "findreplacedialog-mobile|similaritybtn" msgid "Similarities..." -msgstr "" +msgstr "Similarities..." #. z8Uiz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:837 msgctxt "findreplacedialog-mobile|soundslike" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Sounds like (_Japanese)" #. e7EkJ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:852 msgctxt "findreplacedialog-mobile|soundslikebtn" msgid "Sounds..." -msgstr "" +msgstr "Sounds..." #. ZvWKZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:878 msgctxt "findreplacedialog-mobile|wildcard" msgid "Wil_dcards" -msgstr "" +msgstr "Wil_dcards" #. jCtqG #: svx/uiconfig/ui/findreplacedialog-mobile.ui:893 msgctxt "findreplacedialog-mobile|notes" msgid "_Comments" -msgstr "" +msgstr "_Comments" #. CABZs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:914 msgctxt "findreplacedialog-mobile|replace_backwards" msgid "Replace _backwards" -msgstr "" +msgstr "Replace _backwards" #. EjXBb #: svx/uiconfig/ui/findreplacedialog-mobile.ui:950 msgctxt "findreplacedialog-mobile|searchinlabel" msgid "Search i_n:" -msgstr "" +msgstr "Search i_n:" #. vHG2V #: svx/uiconfig/ui/findreplacedialog-mobile.ui:965 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Formulas" -msgstr "" +msgstr "Formulae" #. BC8U6 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:966 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Values" -msgstr "" +msgstr "Values" #. BkByZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:967 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Notes" -msgstr "" +msgstr "Notes" #. a8BE2 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:992 msgctxt "findreplacedialog-mobile|searchdir" msgid "Direction:" -msgstr "" +msgstr "Direction:" #. GPC8q #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009 msgctxt "findreplacedialog-mobile|rows" msgid "Ro_ws" -msgstr "" +msgstr "Ro_ws" #. xCeTz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028 msgctxt "findreplacedialog-mobile|cols" msgid "Colum_ns" -msgstr "" +msgstr "Colum_ns" #. fPE4f #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072 msgctxt "findreplacedialog-mobile|label3" msgid "Other _options" -msgstr "" +msgstr "Other _options" #. 2B7FQ #: svx/uiconfig/ui/findreplacedialog.ui:8 msgctxt "findreplacedialog|FindReplaceDialog" msgid "Find and Replace" -msgstr "" +msgstr "Find and Replace" #. 52T26 #: svx/uiconfig/ui/findreplacedialog.ui:107 @@ -16328,7 +16329,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:320 msgctxt "findreplacedialog|label1" msgid "Search For" -msgstr "" +msgstr "Search For" #. YCdJW #: svx/uiconfig/ui/findreplacedialog.ui:375 @@ -16472,7 +16473,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:817 msgctxt "findreplacedialog|includediacritics" msgid "Diacritic-_sensitive" -msgstr "" +msgstr "Diacritic-_sensitive" #. J8Zou #: svx/uiconfig/ui/findreplacedialog.ui:831 @@ -16550,7 +16551,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:987 msgctxt "findreplacedialog|notes" msgid "Comme_nts" -msgstr "" +msgstr "Comme_nts" #. z68pk #: svx/uiconfig/ui/findreplacedialog.ui:995 @@ -16592,7 +16593,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1071 msgctxt "findreplacedialog|calcsearchin" msgid "Comments" -msgstr "" +msgstr "Comments" #. K4WuW #: svx/uiconfig/ui/findreplacedialog.ui:1096 @@ -17648,13 +17649,13 @@ #: svx/uiconfig/ui/inspectortextpanel.ui:62 msgctxt "inspectortextpanel|property" msgid "Properties" -msgstr "" +msgstr "Properties" #. RyWCg #: svx/uiconfig/ui/inspectortextpanel.ui:78 msgctxt "inspectortextpanel|value" msgid "Values" -msgstr "" +msgstr "Values" #. kCqGA #: svx/uiconfig/ui/lightingwindow.ui:59 @@ -17792,31 +17793,31 @@ #: svx/uiconfig/ui/navigationbar.ui:129 msgctxt "navigationbar|first" msgid "First" -msgstr "" +msgstr "First" #. mX6CE #: svx/uiconfig/ui/navigationbar.ui:150 msgctxt "navigationbar|prev" msgid "Previous" -msgstr "" +msgstr "Previous" #. ggpok #: svx/uiconfig/ui/navigationbar.ui:171 msgctxt "navigationbar|next" msgid "Next" -msgstr "" +msgstr "Next" #. E3c7E #: svx/uiconfig/ui/navigationbar.ui:191 msgctxt "navigationbar|last" msgid "Last" -msgstr "" +msgstr "Last" #. GbURX #: svx/uiconfig/ui/navigationbar.ui:211 msgctxt "navigationbar|new" msgid "New" -msgstr "" +msgstr "New" #. Z8rca #: svx/uiconfig/ui/optgridpage.ui:70 @@ -17942,7 +17943,7 @@ #: svx/uiconfig/ui/optgridpage.ui:438 msgctxt "extended_tip|snaphelplines" msgid "Snaps the edge of a dragged object to the nearest snap line when you release the mouse." -msgstr "" +msgstr "Snaps the edge of a dragged object to the nearest snap line when you release the mouse." #. YkLQN #: svx/uiconfig/ui/optgridpage.ui:449 @@ -17954,7 +17955,7 @@ #: svx/uiconfig/ui/optgridpage.ui:457 msgctxt "extended_tip|snapborder" msgid "Specifies whether to align the contour of the graphic object to the nearest page margin." -msgstr "" +msgstr "Specifies whether to align the contour of the graphic object to the nearest page margin." #. GhDiX #: svx/uiconfig/ui/optgridpage.ui:468 @@ -17966,7 +17967,7 @@ #: svx/uiconfig/ui/optgridpage.ui:476 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 "Specifies whether to align the contour of the graphic object to the border of the nearest graphic object." #. akbks #: svx/uiconfig/ui/optgridpage.ui:487 @@ -17978,7 +17979,7 @@ #: svx/uiconfig/ui/optgridpage.ui:495 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 "Specifies whether to align the contour of the graphic object to the points of the nearest graphic object." #. rY7Uu #: svx/uiconfig/ui/optgridpage.ui:519 @@ -18456,7 +18457,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:126 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 "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 (...)." #. fdw75 #: svx/uiconfig/ui/redlinefilterpage.ui:147 @@ -18468,7 +18469,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:148 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 "Filters the list of changes according to the type of change that you select in the Action box." #. c4doe #: svx/uiconfig/ui/redlinefilterpage.ui:159 @@ -18480,7 +18481,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:167 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 "Filters the list of changes according to the type of change that you select in the Action box." #. r9bBY #: svx/uiconfig/ui/redlinefilterpage.ui:188 @@ -18504,7 +18505,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:218 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 "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 (...)." #. CcvJU #: svx/uiconfig/ui/redlinefilterpage.ui:235 @@ -18836,7 +18837,7 @@ #: svx/uiconfig/ui/safemodedialog.ui:210 msgctxt "safemodedialog|check_disable_hw_acceleration" msgid "Disable hardware acceleration (OpenGL, OpenCL, Vulkan)" -msgstr "" +msgstr "Disable hardware acceleration (OpenGL, OpenCL, Vulkan)" #. qwxrp #: svx/uiconfig/ui/safemodedialog.ui:231 @@ -18986,13 +18987,13 @@ #: svx/uiconfig/ui/sidebararea.ui:111 msgctxt "sidebararea|fillstylearea|tooltip_text" msgid "Select the fill type to apply." -msgstr "" +msgstr "Select the fill type to apply." #. wprqq #: svx/uiconfig/ui/sidebararea.ui:114 msgctxt "sidebararea|fillstylearea-atkobject" msgid "Fill Type" -msgstr "" +msgstr "Fill Type" #. eBXqH #: svx/uiconfig/ui/sidebararea.ui:133 @@ -19058,13 +19059,13 @@ #: svx/uiconfig/ui/sidebararea.ui:208 msgctxt "sidebararea|fillattrhb|tooltip_text" msgid "Select the effect to apply." -msgstr "" +msgstr "Select the effect to apply." #. EiCFo #: svx/uiconfig/ui/sidebararea.ui:224 msgctxt "sidebararea|fillattrhb-atkobject" msgid "Hatching/Bitmap" -msgstr "" +msgstr "Hatching/Bitmap" #. 6ziwq #: svx/uiconfig/ui/sidebararea.ui:239 @@ -19172,7 +19173,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:57 msgctxt "sidebarglow|radius" msgid "Radius:" -msgstr "" +msgstr "Radius:" #. bEFFC #: svx/uiconfig/ui/sidebareffect.ui:84 @@ -19184,25 +19185,25 @@ #: svx/uiconfig/ui/sidebareffect.ui:116 msgctxt "sidebarglow|transparency" msgid "Transparency:" -msgstr "" +msgstr "Transparency:" #. K7L6F #: svx/uiconfig/ui/sidebareffect.ui:145 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "Glow" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:177 msgctxt "sidebarsoftedge|radius" msgid "Radius:" -msgstr "" +msgstr "Radius:" #. KRr2U #: svx/uiconfig/ui/sidebareffect.ui:206 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "Soft Edge" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 @@ -19238,13 +19239,13 @@ #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "New..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "" +msgstr "Add more galleries via extension" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:52 @@ -19743,7 +19744,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:471 msgctxt "sidebarpossize|alignlabel" msgid "Alig_n:" -msgstr "" +msgstr "Alig_n:" #. osqQf #: svx/uiconfig/ui/sidebarshadow.ui:56 @@ -19767,7 +19768,7 @@ #: svx/uiconfig/ui/sidebarshadow.ui:129 msgctxt "sidebarshadow|blur_label" msgid "Blur:" -msgstr "" +msgstr "Blur:" #. SLW9V #: svx/uiconfig/ui/sidebarshadow.ui:156 @@ -19785,25 +19786,25 @@ #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:35 msgctxt "sidebartextcolumns|labelColNumber" msgid "_Number of columns:" -msgstr "" +msgstr "_Number of columns:" #. b7QHr #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:49 msgctxt "sidebartextcolumns|labelColSpacing" msgid "_Spacing:" -msgstr "" +msgstr "_Spacing:" #. Es5Bi #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:70 msgctxt "sidebartextcolumns|extended_tip|FLD_COL_NUMBER" msgid "Enter the number of columns to use for the text." -msgstr "" +msgstr "Enter the number of columns to use for the text." #. 9sraa #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:90 msgctxt "sidebartextcolumns|extended_tip|MTR_FLD_COL_SPACING" msgid "Enter the amount of space to leave between the columns." -msgstr "" +msgstr "Enter the amount of space to leave between the columns." #. dZf2D #: svx/uiconfig/ui/stylemenu.ui:12 @@ -19845,7 +19846,7 @@ #: svx/uiconfig/ui/tablewindow.ui:36 msgctxt "tablewindow|moreoptions" msgid "_More Options" -msgstr "" +msgstr "_More Options" #. BsL29 #: svx/uiconfig/ui/tablewindow.ui:40 diff -Nru libreoffice-7.3.4/translations/source/en-GB/sw/messages.po libreoffice-7.3.5/translations/source/en-GB/sw/messages.po --- libreoffice-7.3.4/translations/source/en-GB/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" "Language: en-GB\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562933331.000000\n" #. v3oJv @@ -1016,55 +1016,55 @@ #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "Char Interoperability Grab Bag" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Kerning" -msgstr "" +msgstr "Char Kerning" #. CFpCB #: sw/inc/inspectorproperties.hrc:91 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border" -msgstr "" +msgstr "Char Left Border" #. ZZNYY #: sw/inc/inspectorproperties.hrc:92 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border Distance" -msgstr "" +msgstr "Char Left Border Distance" #. ZAkB6 #: sw/inc/inspectorproperties.hrc:93 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale" -msgstr "" +msgstr "Char Locale" #. Ju3fR #: sw/inc/inspectorproperties.hrc:94 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Asian" -msgstr "" +msgstr "Char Locale Asian" #. sA8Rk #: sw/inc/inspectorproperties.hrc:95 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Complex" -msgstr "" +msgstr "Char Locale Complex" #. AAvjB #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "" +msgstr "Char No Hyphenation" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline" -msgstr "" +msgstr "Char Overline" #. GBMFT #: sw/inc/inspectorproperties.hrc:98 @@ -1082,133 +1082,133 @@ #: sw/inc/inspectorproperties.hrc:100 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture" -msgstr "" +msgstr "Char Posture" #. yTFRk #: sw/inc/inspectorproperties.hrc:101 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Asian" -msgstr "" +msgstr "Char Posture Asian" #. 8WG25 #: sw/inc/inspectorproperties.hrc:102 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Complex" -msgstr "" +msgstr "Char Posture Complex" #. yuK3c #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "Char Property Height" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "Char Property Height Asian" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "Char Property Height Complex" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Relief" -msgstr "" +msgstr "Char Relief" #. BsxCo #: sw/inc/inspectorproperties.hrc:107 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border" -msgstr "" +msgstr "Char Right Border" #. jrnRf #: sw/inc/inspectorproperties.hrc:108 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border Distance" -msgstr "" +msgstr "Char Right Border Distance" #. UEpDe #: sw/inc/inspectorproperties.hrc:109 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation" -msgstr "" +msgstr "Char Rotation" #. jwSQF #: sw/inc/inspectorproperties.hrc:110 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation is Fit To Line" -msgstr "" +msgstr "Char Rotation is Fit To Line" #. cYG7T #: sw/inc/inspectorproperties.hrc:111 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Scale Width" -msgstr "" +msgstr "Char Scale Width" #. WFuSd #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "Char Shading Value" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadow Format" -msgstr "" +msgstr "Char Shadow Format" #. tKjaF #: sw/inc/inspectorproperties.hrc:114 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadowed" -msgstr "" +msgstr "Char Shadowed" #. H9st9 #: sw/inc/inspectorproperties.hrc:115 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Strikeout" -msgstr "" +msgstr "Char Strikeout" #. zrLCN #: sw/inc/inspectorproperties.hrc:116 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Name" -msgstr "" +msgstr "Char Style Name" #. PN2pE #: sw/inc/inspectorproperties.hrc:117 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Names" -msgstr "" +msgstr "Char Style Names" #. rq2fu #: sw/inc/inspectorproperties.hrc:118 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border" -msgstr "" +msgstr "Char Top Border" #. SNLiC #: sw/inc/inspectorproperties.hrc:119 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border Distance" -msgstr "" +msgstr "Char Top Border Distance" #. ZoAde #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "Char Transparence" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline" -msgstr "" +msgstr "Char Underline" #. yGPLz #: sw/inc/inspectorproperties.hrc:122 @@ -1226,163 +1226,163 @@ #: sw/inc/inspectorproperties.hrc:124 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight" -msgstr "" +msgstr "Char Weight" #. EwWk2 #: sw/inc/inspectorproperties.hrc:125 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Asian" -msgstr "" +msgstr "Char Weight Asian" #. nxNQB #: sw/inc/inspectorproperties.hrc:126 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Complex" -msgstr "" +msgstr "Char Weight Complex" #. D4T2M #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "Char Word Mode" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Continuing Previous Tree" -msgstr "" +msgstr "Continuing Previous Tree" #. 4BCE7 #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "" +msgstr "Display Name" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index" -msgstr "" +msgstr "Document Index" #. A3nea #: sw/inc/inspectorproperties.hrc:131 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index Mark" -msgstr "" +msgstr "Document Index Mark" #. XgFaZ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "Drop Cap Char Style Name" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "Drop Cap Format" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "Drop Cap Whole Word" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Endnote" -msgstr "" +msgstr "Endnote" #. YmvFY #: sw/inc/inspectorproperties.hrc:136 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Background" -msgstr "" +msgstr "Fill Background" #. TvMCc #: sw/inc/inspectorproperties.hrc:137 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap" -msgstr "" +msgstr "Fill Bitmap" #. GWWrC #: sw/inc/inspectorproperties.hrc:138 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Logical Size" -msgstr "" +msgstr "Fill Bitmap Logical Size" #. r2Aif #: sw/inc/inspectorproperties.hrc:139 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Mode" -msgstr "" +msgstr "Fill Bitmap Mode" #. FZtcW #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "Fill Bitmap Name" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "Fill Bitmap Offset X" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "Fill Bitmap Offset Y" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "Fill Bitmap Position Offset X" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "Fill Bitmap Position Offset Y" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "Fill Bitmap Rectangle Point" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "Fill Bitmap Size X" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "Fill Bitmap Size Y" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "Fill Bitmap Stretch" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "Fill Bitmap Tile" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "Fill Bitmap URL" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 @@ -1400,229 +1400,229 @@ #: sw/inc/inspectorproperties.hrc:153 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient" -msgstr "" +msgstr "Fill Gradient" #. uWcQT #: sw/inc/inspectorproperties.hrc:154 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Name" -msgstr "" +msgstr "Fill Gradient Name" #. uazQm #: sw/inc/inspectorproperties.hrc:155 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Step Count" -msgstr "" +msgstr "Fill Gradient Step Count" #. bTjNu #: sw/inc/inspectorproperties.hrc:156 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch" -msgstr "" +msgstr "Fill Hatch" #. YCBtr #: sw/inc/inspectorproperties.hrc:157 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch Name" -msgstr "" +msgstr "Fill Hatch Name" #. GbQPt #: sw/inc/inspectorproperties.hrc:158 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Style" -msgstr "" +msgstr "Fill Style" #. tFYmZ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "Fill Transparence" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "Fill Transparence Gradient" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "Fill Transparence Gradient Name" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Follow Style" -msgstr "" +msgstr "Follow Style" #. 32Vgt #: sw/inc/inspectorproperties.hrc:163 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Footnote" -msgstr "" +msgstr "Footnote" #. NuA4J #: sw/inc/inspectorproperties.hrc:164 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hidden" -msgstr "" +msgstr "Hidden" #. TwGWU #: sw/inc/inspectorproperties.hrc:165 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Events" -msgstr "" +msgstr "Hyperlink Events" #. XU6P3 #: sw/inc/inspectorproperties.hrc:166 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Name" -msgstr "" +msgstr "Hyperlink Name" #. qRBxH #: sw/inc/inspectorproperties.hrc:167 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Target" -msgstr "" +msgstr "Hyperlink Target" #. BoFLZ #: sw/inc/inspectorproperties.hrc:168 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink URL" -msgstr "" +msgstr "Hyperlink URL" #. CbvLt #: sw/inc/inspectorproperties.hrc:169 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Auto Update" -msgstr "" +msgstr "Is Auto Update" #. DYXxe #: sw/inc/inspectorproperties.hrc:170 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Physical" -msgstr "" +msgstr "Is Physical" #. AdAo8 #: sw/inc/inspectorproperties.hrc:171 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border" -msgstr "" +msgstr "Left Border" #. tAqBG #: sw/inc/inspectorproperties.hrc:172 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border Distance" -msgstr "" +msgstr "Left Border Distance" #. 9cGvH #: sw/inc/inspectorproperties.hrc:173 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Auto Format" -msgstr "" +msgstr "List Auto Format" #. fBeTS #: sw/inc/inspectorproperties.hrc:174 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Id" -msgstr "" +msgstr "List Id" #. b73Zq #: sw/inc/inspectorproperties.hrc:175 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Label String" -msgstr "" +msgstr "List Label String" #. A2KEW #: sw/inc/inspectorproperties.hrc:176 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Metadata Reference" -msgstr "" +msgstr "Metadata Reference" #. n9DQD #: sw/inc/inspectorproperties.hrc:177 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Nested Text Content" -msgstr "" +msgstr "Nested Text Content" #. AzBDm #: sw/inc/inspectorproperties.hrc:178 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering is Number" -msgstr "" +msgstr "Numbering is Number" #. WsqfF #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Level" -msgstr "" +msgstr "Numbering Level" #. CEkBY #: sw/inc/inspectorproperties.hrc:180 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "" +msgstr "Numbering Rules" #. nTMoh #: sw/inc/inspectorproperties.hrc:181 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Start Value" -msgstr "" +msgstr "Numbering Start Value" #. tBVDF #: sw/inc/inspectorproperties.hrc:182 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Style Name" -msgstr "" +msgstr "List Style Name" #. zrVDM #: sw/inc/inspectorproperties.hrc:183 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Content Visible" -msgstr "" +msgstr "Outline Content Visible" #. NNuo4 #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "" +msgstr "Outline Level" #. syTbJ #: sw/inc/inspectorproperties.hrc:185 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Desc Name" -msgstr "" +msgstr "Page Desc Name" #. wLGct #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "" +msgstr "Page Number Offset" #. ryHzy #: sw/inc/inspectorproperties.hrc:187 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Style Name" -msgstr "" +msgstr "Page Style Name" #. UyyB6 #: sw/inc/inspectorproperties.hrc:188 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Rsid" -msgstr "" +msgstr "Para Rsid" #. xqcEV #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "Para Adjust" #. SyTxG #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "Para Auto Style Name" #. WHaym #: sw/inc/inspectorproperties.hrc:191 @@ -1634,403 +1634,403 @@ #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "" +msgstr "Para Back Graphic" #. f6RGz #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "" +msgstr "Para Back Graphic Filter" #. Yy5RY #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "" +msgstr "Para Back Graphic Location" #. MLDdK #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "" +msgstr "Para Back Graphic URL" #. HkGF3 #: sw/inc/inspectorproperties.hrc:196 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "" +msgstr "Para Back Transparent" #. TuYLo #: sw/inc/inspectorproperties.hrc:197 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin" -msgstr "" +msgstr "Para Bottom Margin" #. r5BAb #: sw/inc/inspectorproperties.hrc:198 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin Relative" -msgstr "" +msgstr "Para Bottom Margin Relative" #. rCWLX #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "Para Chapter Numbering Level" #. GLxXC #: sw/inc/inspectorproperties.hrc:200 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "" +msgstr "Para Conditional Style Name" #. AFGoP #: sw/inc/inspectorproperties.hrc:201 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Context Margin" -msgstr "" +msgstr "Para Context Margin" #. dpsFJ #: sw/inc/inspectorproperties.hrc:202 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "Para Expand Single Word" #. iD2DL #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent" -msgstr "" +msgstr "Para First Line Indent" #. wCMnF #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "" +msgstr "Para First Line Indent Relative" #. z47wS #: sw/inc/inspectorproperties.hrc:205 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Hyphens" -msgstr "" +msgstr "Para Hyphenation Max Hyphens" #. nFxKY #: sw/inc/inspectorproperties.hrc:206 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Leading Chars" -msgstr "" +msgstr "Para Hyphenation Max Leading Chars" #. agdzD #: sw/inc/inspectorproperties.hrc:207 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Trailing Chars" -msgstr "" +msgstr "Para Hyphenation Max Trailing Chars" #. hj7Fp #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Caps" -msgstr "" +msgstr "Para Hyphenation No Caps" #. 4bemD #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "Para Interop Grab Bag" #. fCGA4 #: sw/inc/inspectorproperties.hrc:210 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "" +msgstr "Para is Auto First Line Indent" #. Q68Bx #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "" +msgstr "Para is Character Distance" #. FGVAd #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "Para is Connect Border" #. tBy9h #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "" +msgstr "Para is Forbidden Rules" #. yZZSA #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "" +msgstr "Para is Hanging Punctuation" #. dDgrE #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "" +msgstr "Para is Hyphenation" #. mHDWE #: sw/inc/inspectorproperties.hrc:216 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "" +msgstr "Para is Numbering Restart" #. Mnm2C #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Keep Together" -msgstr "" +msgstr "Para Keep Together" #. 8Z5AP #: sw/inc/inspectorproperties.hrc:218 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Last Line Adjust" -msgstr "" +msgstr "Para Last Line Adjust" #. 6CaHh #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin" -msgstr "" +msgstr "Para Left Margin" #. ZDnZk #: sw/inc/inspectorproperties.hrc:220 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "" +msgstr "Para Left Margin Relative" #. G43XB #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "Para Line Number Count" #. EjnTM #: sw/inc/inspectorproperties.hrc:222 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "Para Line Number Start Value" #. eo9RR #: sw/inc/inspectorproperties.hrc:223 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Spacing" -msgstr "" +msgstr "Para Line Spacing" #. kczeF #: sw/inc/inspectorproperties.hrc:224 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "Para Orphans" #. FmuG6 #: sw/inc/inspectorproperties.hrc:225 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Register Mode Active" -msgstr "" +msgstr "Para Register Mode Active" #. Kwp9H #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin" -msgstr "" +msgstr "Para Right Margin" #. r2ao2 #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "" +msgstr "Para Right Margin Relative" #. FC9mA #: sw/inc/inspectorproperties.hrc:228 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "" +msgstr "Para Shadow Format" #. VXwD2 #: sw/inc/inspectorproperties.hrc:229 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Split" -msgstr "" +msgstr "Para Split" #. gXoCF #: sw/inc/inspectorproperties.hrc:230 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Style Name" -msgstr "" +msgstr "Para Style Name" #. sekLv #: sw/inc/inspectorproperties.hrc:231 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "Para Tab Stops" #. reW9Y #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin" -msgstr "" +msgstr "Para Top Margin" #. wHuj4 #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "Para Top Margin Relative" #. pUjFj #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "Para User Defined Attributes" #. WvA9C #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "Para Vertical Alignment" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "Para Widows" #. cdw2Q #: sw/inc/inspectorproperties.hrc:237 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Reference Mark" -msgstr "" +msgstr "Reference Mark" #. NDEck #: sw/inc/inspectorproperties.hrc:238 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border" -msgstr "" +msgstr "Right Border" #. 6rs9g #: sw/inc/inspectorproperties.hrc:239 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border Distance" -msgstr "" +msgstr "Right Border Distance" #. XYhSX #: sw/inc/inspectorproperties.hrc:240 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Rsid" -msgstr "" +msgstr "Rsid" #. Uoosp #: sw/inc/inspectorproperties.hrc:241 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "" +msgstr "Ruby Adjust" #. 3WwCU #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Char Style Name" -msgstr "" +msgstr "Ruby Char Style Name" #. DqMAX #: sw/inc/inspectorproperties.hrc:243 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby is Above" -msgstr "" +msgstr "Ruby is Above" #. w8jgs #: sw/inc/inspectorproperties.hrc:244 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Position" -msgstr "" +msgstr "Ruby Position" #. ZREEa #: sw/inc/inspectorproperties.hrc:245 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Text" -msgstr "" +msgstr "Ruby Text" #. tJEtt #: sw/inc/inspectorproperties.hrc:246 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Snap to Grid" -msgstr "" +msgstr "Snap to Grid" #. oDk6s #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "Style Interop Grab Bag" #. PV65u #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Field" -msgstr "" +msgstr "Text Field" #. a6k8F #: sw/inc/inspectorproperties.hrc:249 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Text Frame" #. CNyuR #: sw/inc/inspectorproperties.hrc:250 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Paragraph" -msgstr "" +msgstr "Text Paragraph" #. nTTEM #: sw/inc/inspectorproperties.hrc:251 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Section" -msgstr "" +msgstr "Text Section" #. VCADG #: sw/inc/inspectorproperties.hrc:252 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Table" -msgstr "" +msgstr "Text Table" #. hDjMA #: sw/inc/inspectorproperties.hrc:253 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text User Defined Attributes" -msgstr "" +msgstr "Text User Defined Attributes" #. ZG6rS #: sw/inc/inspectorproperties.hrc:254 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border" -msgstr "" +msgstr "Top Border" #. 6qBJD #: sw/inc/inspectorproperties.hrc:255 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border Distance" -msgstr "" +msgstr "Top Border Distance" #. RwtPi #: sw/inc/inspectorproperties.hrc:256 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Unvisited Char Style Name" -msgstr "" +msgstr "Unvisited Char Style Name" #. xcMEF #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Visited Char Style Name" -msgstr "" +msgstr "Visited Char Style Name" #. YiBym #: sw/inc/inspectorproperties.hrc:258 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Writing Mode" -msgstr "" +msgstr "Writing Mode" #. QBR3s #: sw/inc/mmaddressblockpage.hrc:27 @@ -2279,62 +2279,62 @@ #: sw/inc/strings.hrc:27 msgctxt "STR_STANDARD_LABEL" msgid "Reset to ~Parent" -msgstr "" +msgstr "Reset to ~Parent" #. FRWsF #: sw/inc/strings.hrc:28 msgctxt "STR_STANDARD_TOOLTIP" msgid "Values on this tab specified in “Contains” in Organizer are removed." -msgstr "" +msgstr "Values on this tab specified in “Contains” in Organiser are removed." #. 9BAeq #: sw/inc/strings.hrc:29 msgctxt "STR_STANDARD_EXTENDEDTIP" msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the current tab values specified in “Contains” are removed." -msgstr "" +msgstr "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organiser. In all cases, also when “Inherit from” is “None”, the current tab values specified in “Contains” are removed." #. x2EUX #: sw/inc/strings.hrc:30 msgctxt "STR_RESET_LABEL" msgid "Reset" -msgstr "" +msgstr "Reset" #. o3BC2 #: sw/inc/strings.hrc:31 msgctxt "STR_RESET_TOOLTIP" msgid "Unsaved modifications to this tab are reverted." -msgstr "" +msgstr "Unsaved modifications to this tab are reverted." #. Sju8m #: sw/inc/strings.hrc:32 msgctxt "STR_RESET_EXTENDEDTIP" msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”." -msgstr "" +msgstr "Revert any changes made on the current tab to the settings that were present when this dialogue box was opened, or after the last use of “Apply”." #. Lv4Ua #: sw/inc/strings.hrc:33 msgctxt "STR_APPLY_LABEL" msgid "Apply" -msgstr "" +msgstr "Apply" #. BFf9A #: sw/inc/strings.hrc:34 msgctxt "STR_APPLY_TOOLTIP" msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset." -msgstr "" +msgstr "Applies modifications on all tabs without closing dialogue box. Cannot be reverted with Reset." #. FbPXG #: sw/inc/strings.hrc:35 msgctxt "STR_APPLY_EXTENDEDTIP" msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset." -msgstr "" +msgstr "Applies all modifications without closing dialogue box. Values are saved and cannot be reverted with Reset." #. FezFo #. Format names #: sw/inc/strings.hrc:38 msgctxt "STR_POOLCHR_STANDARD" msgid "No Character Style" -msgstr "" +msgstr "No Character Style" #. iVg2a #: sw/inc/strings.hrc:39 @@ -2449,7 +2449,7 @@ #: sw/inc/strings.hrc:58 msgctxt "STR_POOLCHR_HTML_CITATION" msgid "Quotation" -msgstr "" +msgstr "Quotation" #. 6DAii #: sw/inc/strings.hrc:59 @@ -3021,13 +3021,13 @@ #: sw/inc/strings.hrc:155 msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS" msgid "Addressee" -msgstr "" +msgstr "Addressee" #. PvoVz #: sw/inc/strings.hrc:156 msgctxt "STR_POOLCOLL_SEND_ADDRESS" msgid "Sender" -msgstr "" +msgstr "Sender" #. AChE4 #: sw/inc/strings.hrc:157 @@ -3323,7 +3323,7 @@ #: sw/inc/strings.hrc:207 msgctxt "STR_POOLPAGE_ENVELOPE" msgid "Envelope" -msgstr "" +msgstr "Envelope" #. jGSGz #: sw/inc/strings.hrc:208 @@ -3360,7 +3360,7 @@ #: sw/inc/strings.hrc:214 msgctxt "STR_POOLNUMRULE_NOLIST" msgid "No List" -msgstr "" +msgstr "No List" #. mGZHb #: sw/inc/strings.hrc:215 @@ -4220,7 +4220,7 @@ #: sw/inc/strings.hrc:373 msgctxt "STR_CONTENT_TYPE_TEXTFIELD" msgid "Fields" -msgstr "" +msgstr "Fields" #. F5aQ8 #: sw/inc/strings.hrc:374 @@ -4340,7 +4340,7 @@ #: sw/inc/strings.hrc:393 msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME" msgid "Frame" -msgstr "" +msgstr "Frame" #. o2wx8 #: sw/inc/strings.hrc:394 @@ -4400,7 +4400,7 @@ #: sw/inc/strings.hrc:403 msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD" msgid "Field" -msgstr "" +msgstr "Field" #. mbDG4 #: sw/inc/strings.hrc:404 @@ -4412,19 +4412,19 @@ #: sw/inc/strings.hrc:405 msgctxt "STR_CONTENT_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "Footnote" #. X6DYF #: sw/inc/strings.hrc:406 msgctxt "STR_CONTENT_ENDNOTE" msgid "Endnote" -msgstr "" +msgstr "Endnote" #. sEQCK #: sw/inc/strings.hrc:407 msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP" msgid "Footnotes are listed above this line and Endnotes are listed below" -msgstr "" +msgstr "Footnotes are listed above this line and Endnotes are listed below" #. jThGW #: sw/inc/strings.hrc:408 @@ -4470,25 +4470,25 @@ #: sw/inc/strings.hrc:414 msgctxt "STR_HIDDEN_CHANGES" msgid "Track Changes" -msgstr "" +msgstr "Track Changes" #. DcXvE #: sw/inc/strings.hrc:415 msgctxt "STR_HIDDEN_CHANGES_DETAIL" msgid "Document contains tracked changes and recording is enabled." -msgstr "" +msgstr "Document contains tracked changes and recording is enabled." #. zxuEu #: sw/inc/strings.hrc:416 msgctxt "STR_HIDDEN_CHANGES_DETAIL2" msgid "Recording of changes is enabled." -msgstr "" +msgstr "Recording of changes is enabled." #. BH7Ud #: sw/inc/strings.hrc:417 msgctxt "STR_HIDDEN_CHANGES_DETAIL3" msgid "Document contains tracked changes." -msgstr "" +msgstr "Document contains tracked changes." #. MEN2d #. Undo @@ -4741,7 +4741,7 @@ #: sw/inc/strings.hrc:461 msgctxt "STR_OUTLINE_EDIT" msgid "Modify outline" -msgstr "" +msgstr "Modify outline" #. RjcRH #: sw/inc/strings.hrc:462 @@ -4987,13 +4987,13 @@ #: sw/inc/strings.hrc:502 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "Link frames" #. XV4Ap #: sw/inc/strings.hrc:503 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "Unlink frames" #. vUJG9 #: sw/inc/strings.hrc:504 @@ -5672,7 +5672,7 @@ #: sw/inc/strings.hrc:620 msgctxt "STR_STYLE_FAMILY_NUMBERING" msgid "List" -msgstr "" +msgstr "List" #. NydLs #: sw/inc/strings.hrc:621 @@ -5942,43 +5942,43 @@ #: sw/inc/strings.hrc:668 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "" +msgstr "Click to toggle outline folding" #. 44jEc #: sw/inc/strings.hrc:669 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "right-click to include sub levels" #. mnZA9 #: sw/inc/strings.hrc:670 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "" +msgstr "Click to toggle outline folding" #. rkD8H #: sw/inc/strings.hrc:671 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "right-click to include sub levels" #. oBH6y #: sw/inc/strings.hrc:672 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE" msgid "Toggle" -msgstr "" +msgstr "Toggle" #. YBDFD #: sw/inc/strings.hrc:673 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL" msgid "Unfold All" -msgstr "" +msgstr "Unfold All" #. Cj4js #: sw/inc/strings.hrc:674 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL" msgid "Fold All" -msgstr "" +msgstr "Fold All" #. 9Fipd #: sw/inc/strings.hrc:676 @@ -6712,7 +6712,7 @@ #: sw/inc/strings.hrc:803 msgctxt "STR_AUTH_FIELD_LOCAL_URL" msgid "Local copy" -msgstr "" +msgstr "Local copy" #. eFnnx #: sw/inc/strings.hrc:805 @@ -7651,7 +7651,7 @@ #: sw/inc/strings.hrc:988 msgctxt "FMT_FF_UI_NAME" msgid "Template name" -msgstr "" +msgstr "Template name" #. ANM2H #: sw/inc/strings.hrc:989 @@ -7837,13 +7837,13 @@ #: sw/inc/strings.hrc:1034 msgctxt "FMT_REF_TEXT" msgid "Referenced text" -msgstr "" +msgstr "Referenced text" #. eeSAu #: sw/inc/strings.hrc:1035 msgctxt "FMT_REF_PAGE" msgid "Page number (unstyled)" -msgstr "" +msgstr "Page number (unstyled)" #. MaB3q #: sw/inc/strings.hrc:1036 @@ -7855,13 +7855,13 @@ #: sw/inc/strings.hrc:1037 msgctxt "FMT_REF_UPDOWN" msgid "“Above”/“Below”" -msgstr "" +msgstr "“Above”/“Below”" #. 96emU #: sw/inc/strings.hrc:1038 msgctxt "FMT_REF_PAGE_PGDSC" msgid "Page number (styled)" -msgstr "" +msgstr "Page number (styled)" #. CQitd #: sw/inc/strings.hrc:1039 @@ -8204,13 +8204,13 @@ #: sw/inc/strings.hrc:1106 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Optimal" #. HEuGy #: sw/inc/strings.hrc:1107 msgctxt "STR_SURROUND_NONE" msgid "None" -msgstr "" +msgstr "None" #. 4tA4q #: sw/inc/strings.hrc:1108 @@ -8222,19 +8222,19 @@ #: sw/inc/strings.hrc:1109 msgctxt "STR_SURROUND_PARALLEL" msgid "Parallel" -msgstr "" +msgstr "Parallel" #. hyEQ5 #: sw/inc/strings.hrc:1110 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Before" #. bGBtQ #: sw/inc/strings.hrc:1111 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "After" #. SrG3D #: sw/inc/strings.hrc:1112 @@ -8270,13 +8270,13 @@ #: sw/inc/strings.hrc:1117 msgctxt "STR_FLY_AS_CHAR" msgid "as character" -msgstr "" +msgstr "as character" #. Uszmm #: sw/inc/strings.hrc:1118 msgctxt "STR_FLY_AT_CHAR" msgid "to character" -msgstr "" +msgstr "to character" #. hDUSa #: sw/inc/strings.hrc:1119 @@ -8336,13 +8336,13 @@ #: sw/inc/strings.hrc:1128 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Page line-spacing" #. Cui3U #: sw/inc/strings.hrc:1129 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Not page line-spacing" #. 4RL9X #: sw/inc/strings.hrc:1130 @@ -8414,13 +8414,13 @@ #: sw/inc/strings.hrc:1141 msgctxt "STR_NUMRULE_ON" msgid "List Style: (%LISTSTYLENAME)" -msgstr "" +msgstr "List Style: (%LISTSTYLENAME)" #. HvZBm #: sw/inc/strings.hrc:1142 msgctxt "STR_NUMRULE_OFF" msgid "List Style: (None)" -msgstr "" +msgstr "List Style: (None)" #. QDaFk #: sw/inc/strings.hrc:1143 @@ -8594,7 +8594,7 @@ #: sw/inc/strings.hrc:1172 msgctxt "ST_FRM" msgid "Frame" -msgstr "" +msgstr "Frame" #. Fsnm6 #: sw/inc/strings.hrc:1173 @@ -8696,19 +8696,19 @@ #: sw/inc/strings.hrc:1189 msgctxt "ST_RECENCY" msgid "Recency" -msgstr "" +msgstr "Recency" #. pCp7u #: sw/inc/strings.hrc:1190 msgctxt "ST_FIELD" msgid "Field" -msgstr "" +msgstr "Field" #. LYuHA #: sw/inc/strings.hrc:1191 msgctxt "ST_FIELD_BYTYPE" msgid "Field by type" -msgstr "" +msgstr "Field by type" #. ECFxw #. Strings for the quickhelp of the View-PgUp/Down-Buttons @@ -8721,7 +8721,7 @@ #: sw/inc/strings.hrc:1194 msgctxt "STR_IMGBTN_FRM_DOWN" msgid "Next frame" -msgstr "" +msgstr "Next frame" #. M4BCA #: sw/inc/strings.hrc:1195 @@ -8817,7 +8817,7 @@ #: sw/inc/strings.hrc:1210 msgctxt "STR_IMGBTN_FRM_UP" msgid "Previous frame" -msgstr "" +msgstr "Previous frame" #. eQPFD #: sw/inc/strings.hrc:1211 @@ -8931,37 +8931,37 @@ #: sw/inc/strings.hrc:1229 msgctxt "STR_IMGBTN_RECENCY_UP" msgid "Go back" -msgstr "" +msgstr "Go back" #. jCsGs #: sw/inc/strings.hrc:1230 msgctxt "STR_IMGBTN_RECENCY_DOWN" msgid "Go forward" -msgstr "" +msgstr "Go forward" #. o3BBz #: sw/inc/strings.hrc:1231 msgctxt "STR_IMGBTN_FIELD_UP" msgid "Previous field" -msgstr "" +msgstr "Previous field" #. bQ33Z #: sw/inc/strings.hrc:1232 msgctxt "STR_IMGBTN_FIELD_DOWN" msgid "Next field" -msgstr "" +msgstr "Next field" #. bhUaK #: sw/inc/strings.hrc:1233 msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP" msgid "Previous '%FIELDTYPE' field" -msgstr "" +msgstr "Previous '%FIELDTYPE' field" #. A8HWi #: sw/inc/strings.hrc:1234 msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN" msgid "Next '%FIELDTYPE' field" -msgstr "" +msgstr "Next '%FIELDTYPE' field" #. hSYa3 #: sw/inc/strings.hrc:1236 @@ -9027,13 +9027,13 @@ #: sw/inc/strings.hrc:1246 msgctxt "STR_REDLINE_INSERT_MOVED" msgid "Moved (insertion)" -msgstr "" +msgstr "Moved (insertion)" #. o39AA #: sw/inc/strings.hrc:1247 msgctxt "STR_REDLINE_DELETE_MOVED" msgid "Moved (deletion)" -msgstr "" +msgstr "Moved (deletion)" #. DRCyp #: sw/inc/strings.hrc:1248 @@ -9135,7 +9135,7 @@ #: sw/inc/strings.hrc:1266 msgctxt "STR_PAGE_BREAK_BUTTON" msgid "Edit page break" -msgstr "" +msgstr "Edit page break" #. uvDKE #: sw/inc/strings.hrc:1268 @@ -10022,7 +10022,7 @@ #: sw/inc/utlui.hrc:49 msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Transliterates RTL Hungarian text to Old Hungarian script" -msgstr "" +msgstr "Transliterates RTL Hungarian text to Old Hungarian script" #. MEgcB #: sw/uiconfig/swriter/ui/abstractdialog.ui:22 @@ -10256,13 +10256,13 @@ #: sw/uiconfig/swriter/ui/annotation.ui:48 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "" +msgstr "Resolve Thread" #. gE5Sy #: sw/uiconfig/swriter/ui/annotation.ui:56 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "" +msgstr "Unresolve Thread" #. qAYam #: sw/uiconfig/swriter/ui/annotation.ui:64 @@ -10274,7 +10274,7 @@ #: sw/uiconfig/swriter/ui/annotation.ui:72 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "" +msgstr "Delete _Comment Thread" #. z2NAS #: sw/uiconfig/swriter/ui/annotation.ui:80 @@ -10388,7 +10388,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291 msgctxt "asciifilterdialog|extended_tip|includebom" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." -msgstr "" +msgstr "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309 @@ -10499,19 +10499,19 @@ msgstr "Moves the selected paragraph style down one level in the index hierarchy." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Style" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Styles" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creates index entries from specific paragraph styles." @@ -10556,7 +10556,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:100 msgctxt "extended_tip|authentication" msgid "Enables the authentication that is required to send email by SMTP." -msgstr "" +msgstr "Enables the authentication that is required to send email by SMTP." #. 5F7CW #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:112 @@ -10610,7 +10610,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:228 msgctxt "extended_tip|smtpafterpop" msgid "Select if you are required to first read your email before you can send email." -msgstr "" +msgstr "Select if you are required to first read your email before you can send email." #. hguDR #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:243 @@ -10718,7 +10718,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "Displays a preview of the current selection." #. q7HjF #: sw/uiconfig/swriter/ui/autoformattable.ui:173 @@ -11060,13 +11060,13 @@ #: sw/uiconfig/swriter/ui/bibliofragment.ui:45 msgctxt "bibliofragment|browse" msgid "Browse..." -msgstr "" +msgstr "Browse..." #. ni4Mj #: sw/uiconfig/swriter/ui/bibliofragment.ui:68 msgctxt "bibliofragment|pagecb" msgid "Page" -msgstr "" +msgstr "Page" #. bBcSd #: sw/uiconfig/swriter/ui/bibliographyentry.ui:8 @@ -11204,25 +11204,25 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:162 msgctxt "bulletsandnumbering|bullets" msgid "Unordered" -msgstr "" +msgstr "Unordered" #. qqAgU #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:163 msgctxt "bulletsandnumbering|bullets" msgid "Select a bullet type for an unordered list." -msgstr "" +msgstr "Select a bullet type for an unordered list." #. pHHPT #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:210 msgctxt "bulletsandnumbering|singlenum" msgid "Ordered" -msgstr "" +msgstr "Ordered" #. aELAv #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:211 msgctxt "bulletsandnumbering|singlenum" msgid "Select a numbering scheme for an ordered list." -msgstr "" +msgstr "Select a numbering scheme for an ordered list." #. 8AADg #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:259 @@ -11234,7 +11234,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:260 msgctxt "bulletsandnumbering|outlinenum" msgid "Select an outline format for an ordered list." -msgstr "" +msgstr "Select an outline format for an ordered list." #. hW6yn #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:308 @@ -11246,7 +11246,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:309 msgctxt "bulletsandnumbering|graphics" msgid "Select a graphic bullet symbol for an unordered list." -msgstr "" +msgstr "Select a graphic bullet symbol for an unordered list." #. zVTFe #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:357 @@ -11258,7 +11258,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:358 msgctxt "bulletsandnumbering|position" msgid "Modify indent, spacing, and alignment options for ordered and unordered lists." -msgstr "" +msgstr "Modify indent, spacing, and alignment options for ordered and unordered lists." #. nFfDs #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:406 @@ -11270,7 +11270,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:407 msgctxt "bulletsandnumbering|customize" msgid "Design your own bullet or numbering scheme." -msgstr "" +msgstr "Design your own bullet or numbering scheme." #. rK9Jk #: sw/uiconfig/swriter/ui/businessdatapage.ui:26 @@ -11348,7 +11348,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:190 msgctxt "extended tip | fax" msgid "Type company fax number in this field." -msgstr "" +msgstr "Type company fax number in this field." #. iGBqW #: sw/uiconfig/swriter/ui/businessdatapage.ui:222 @@ -11360,7 +11360,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:223 msgctxt "extended tips | url" msgid "Company homepage" -msgstr "" +msgstr "Company homepage" #. JBxqb #: sw/uiconfig/swriter/ui/businessdatapage.ui:241 @@ -11372,7 +11372,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:242 msgctxt "extended tip | email" msgid "Type your company email address." -msgstr "" +msgstr "Type your company email address." #. CCKWa #: sw/uiconfig/swriter/ui/businessdatapage.ui:261 @@ -11390,7 +11390,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:287 msgctxt "extended tips | company2" msgid "Company second line" -msgstr "" +msgstr "Company second line" #. Po3B3 #: sw/uiconfig/swriter/ui/businessdatapage.ui:306 @@ -11408,7 +11408,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:332 msgctxt "extended tip | icity" msgid "Type the company city" -msgstr "" +msgstr "Type the company city" #. ytCQe #: sw/uiconfig/swriter/ui/businessdatapage.ui:350 @@ -11420,25 +11420,25 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:351 msgctxt "extended tip | izip" msgid "Type company ZIP in this field." -msgstr "" +msgstr "Type company ZIP in this field." #. iVLAA #: sw/uiconfig/swriter/ui/businessdatapage.ui:381 msgctxt "extended tips | slogan" msgid "Company slogan" -msgstr "" +msgstr "Company slogan" #. GAi2c #: sw/uiconfig/swriter/ui/businessdatapage.ui:412 msgctxt "extended tips | country" msgid "Company country" -msgstr "" +msgstr "Company country" #. ZFNQd #: sw/uiconfig/swriter/ui/businessdatapage.ui:430 msgctxt "extended tip | state" msgid "Type company state." -msgstr "" +msgstr "Type company state." #. yvuE2 #: sw/uiconfig/swriter/ui/businessdatapage.ui:449 @@ -11456,7 +11456,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:476 msgctxt "extended tips | phone" msgid "Type business phone" -msgstr "" +msgstr "Type business phone" #. BGbZN #: sw/uiconfig/swriter/ui/businessdatapage.ui:494 @@ -11468,7 +11468,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:495 msgctxt "extended tips | mobile" msgid "Type company mobile" -msgstr "" +msgstr "Type company mobile" #. 9TjDF #: sw/uiconfig/swriter/ui/businessdatapage.ui:514 @@ -11480,7 +11480,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:539 msgctxt "extended tip | street" msgid "Type the name of company street in this field." -msgstr "" +msgstr "Type the name of company street in this field." #. RTBTC #: sw/uiconfig/swriter/ui/businessdatapage.ui:560 @@ -11774,13 +11774,13 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:145 msgctxt "ccdialog|extended_tip|cc" msgid "Enter the recipients of email copies, separated by a semicolon (;)." -msgstr "" +msgstr "Enter the recipients of email copies, separated by a semicolon (;)." #. BCsoU #: sw/uiconfig/swriter/ui/ccdialog.ui:163 msgctxt "ccdialog|extended_tip|bcc" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Enter the recipients of email blind copies, separated by a semicolon (;)." #. P3CcW #: sw/uiconfig/swriter/ui/ccdialog.ui:178 @@ -11798,13 +11798,13 @@ #: sw/uiconfig/swriter/ui/characterproperties.ui:32 msgctxt "characterproperties|reset" msgid "Unsaved modifications to this tab are reverted." -msgstr "" +msgstr "Unsaved modifications to this tab are reverted." #. tLVfC #: sw/uiconfig/swriter/ui/characterproperties.ui:35 msgctxt "characterproperties|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "Revert any changes made on the tab shown here to the settings that were present when this dialogue box was opened." #. GJNuu #: sw/uiconfig/swriter/ui/characterproperties.ui:159 @@ -12278,7 +12278,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:148 msgctxt "conditionpage|extended_tip|apply" msgid "Click Apply to apply the selected Paragraph Style to the defined context." -msgstr "" +msgstr "Click Apply to apply the selected Paragraph Style to the defined context." #. xC6d7 #: sw/uiconfig/swriter/ui/conditionpage.ui:196 @@ -12404,61 +12404,61 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:243 msgctxt "conditionpage|filter" msgid " 1st List Level" -msgstr "" +msgstr " 1st List Level" #. sGSZA #: sw/uiconfig/swriter/ui/conditionpage.ui:244 msgctxt "conditionpage|filter" msgid " 2nd List Level" -msgstr "" +msgstr " 2nd List Level" #. FGGC4 #: sw/uiconfig/swriter/ui/conditionpage.ui:245 msgctxt "conditionpage|filter" msgid " 3rd List Level" -msgstr "" +msgstr " 3rd List Level" #. kne44 #: sw/uiconfig/swriter/ui/conditionpage.ui:246 msgctxt "conditionpage|filter" msgid " 4th List Level" -msgstr "" +msgstr " 4th List Level" #. Wjkzx #: sw/uiconfig/swriter/ui/conditionpage.ui:247 msgctxt "conditionpage|filter" msgid " 5th List Level" -msgstr "" +msgstr " 5th List Level" #. R7zrU #: sw/uiconfig/swriter/ui/conditionpage.ui:248 msgctxt "conditionpage|filter" msgid " 6th List Level" -msgstr "" +msgstr " 6th List Level" #. A4QuR #: sw/uiconfig/swriter/ui/conditionpage.ui:249 msgctxt "conditionpage|filter" msgid " 7th List Level" -msgstr "" +msgstr " 7th List Level" #. RiFQb #: sw/uiconfig/swriter/ui/conditionpage.ui:250 msgctxt "conditionpage|filter" msgid " 8th List Level" -msgstr "" +msgstr " 8th List Level" #. AoCPE #: sw/uiconfig/swriter/ui/conditionpage.ui:251 msgctxt "conditionpage|filter" msgid " 9th List Level" -msgstr "" +msgstr " 9th List Level" #. gLAFZ #: sw/uiconfig/swriter/ui/conditionpage.ui:252 msgctxt "conditionpage|filter" msgid "10th List Level" -msgstr "" +msgstr "10th List Level" #. AniaD #: sw/uiconfig/swriter/ui/conditionpage.ui:273 @@ -12992,13 +12992,13 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40 msgctxt "dropdownfielddialog|prev" msgid "_Previous" -msgstr "" +msgstr "_Previous" #. 2Wx2B #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53 msgctxt "dropdownfielddialog|next" msgid "_Next" -msgstr "" +msgstr "_Next" #. USGaG #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59 @@ -13436,7 +13436,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:212 msgctxt "endnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the endnote text. Only special styles can be selected." -msgstr "" +msgstr "Select the paragraph style for the endnote text. Only special styles can be selected." #. 3CM3n #: sw/uiconfig/swriter/ui/endnotepage.ui:228 @@ -13955,37 +13955,37 @@ msgstr "Exchange Databases" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Define" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Databases in Use" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Available Databases" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Browse..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opens a file open dialogue box to select a database file (*.odb). The selected file is added to the Available Databases list." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Use the browse button to select a database file." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lists the databases that are currently in use." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lists the databases that are registered in %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Exchange Databases" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database applied to document:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Change the data sources for the current document." @@ -14094,7 +14094,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:24 msgctxt "findentrydialog|find" msgid "_Find" -msgstr "" +msgstr "_Find" #. yfE3P #: sw/uiconfig/swriter/ui/findentrydialog.ui:33 @@ -14184,7 +14184,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:288 msgctxt "flddbpage|label2" msgid "Database S_election" -msgstr "" +msgstr "Database S_election" #. JeBVb #: sw/uiconfig/swriter/ui/flddbpage.ui:314 @@ -14268,7 +14268,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:155 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "" +msgstr "_Select" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:218 @@ -14280,7 +14280,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:232 msgctxt "flddocinfopage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fi_xed content" #. BojDo #: sw/uiconfig/swriter/ui/flddocinfopage.ui:240 @@ -14292,7 +14292,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:256 msgctxt "flddocinfopage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. BmH6G #: sw/uiconfig/swriter/ui/flddocumentpage.ui:98 @@ -14316,7 +14316,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:176 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "" +msgstr "_Select" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:247 @@ -14328,13 +14328,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:305 msgctxt "flddocumentpage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. k7KnK #: sw/uiconfig/swriter/ui/flddocumentpage.ui:321 msgctxt "flddocumentpage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fi_xed content" #. TjKiH #: sw/uiconfig/swriter/ui/flddocumentpage.ui:329 @@ -14346,7 +14346,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:348 msgctxt "flddocumentpage|levelft" msgid "_Level" -msgstr "" +msgstr "_Level" #. VX38D #: sw/uiconfig/swriter/ui/flddocumentpage.ui:366 @@ -14400,7 +14400,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:153 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "" +msgstr "_Select" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:210 @@ -14412,7 +14412,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:221 msgctxt "fldfuncpage|label2" msgid "_Format" -msgstr "" +msgstr "_Format" #. CGoTS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:246 @@ -14562,7 +14562,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:180 msgctxt "fldrefpage|label3" msgid "_Refer using:" -msgstr "" +msgstr "_Refer using:" #. bjLoy #: sw/uiconfig/swriter/ui/fldrefpage.ui:225 @@ -14580,7 +14580,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:311 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 \"Refer using\" list, and then click Insert." -msgstr "" +msgstr "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 \"Refer using\" list, and then click Insert." #. BFEfh #: sw/uiconfig/swriter/ui/fldrefpage.ui:356 @@ -14646,7 +14646,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:200 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "" +msgstr "_Select" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:286 @@ -14664,7 +14664,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:349 msgctxt "fldvarpage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. qPpKb #: sw/uiconfig/swriter/ui/fldvarpage.ui:366 @@ -14676,7 +14676,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:374 msgctxt "fldvarpage|extended_tip|invisible" msgid "Hides the field contents in the document." -msgstr "" +msgstr "Hides the field contents in the document." #. hapyp #: sw/uiconfig/swriter/ui/fldvarpage.ui:405 @@ -14688,7 +14688,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:418 msgctxt "fldvarpage|separatorft" msgid "Se_parator" -msgstr "" +msgstr "Se_parator" #. wrAG3 #: sw/uiconfig/swriter/ui/fldvarpage.ui:433 @@ -14754,7 +14754,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:590 msgctxt "fldvarpage|extended_tip|apply" msgid "Adds the user-defined field to the Select list." -msgstr "" +msgstr "Adds the user-defined field to the Select list." #. GKfDe #: sw/uiconfig/swriter/ui/fldvarpage.ui:604 @@ -14766,7 +14766,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:610 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 "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document." #. 27v8z #: sw/uiconfig/swriter/ui/floatingnavigation.ui:36 @@ -14904,7 +14904,7 @@ #: sw/uiconfig/swriter/ui/footendnotedialog.ui:8 msgctxt "footendnotedialog|FootEndnoteDialog" msgid "Settings of Footnotes and Endnotes" -msgstr "" +msgstr "Settings of Footnotes and Endnotes" #. hBdgx #: sw/uiconfig/swriter/ui/footendnotedialog.ui:135 @@ -15174,7 +15174,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:230 msgctxt "footnotepage|extended_tip|numberinglb" msgid "Select the numbering scheme that you want to use." -msgstr "" +msgstr "Select the numbering scheme that you want to use." #. Gzv4E #: sw/uiconfig/swriter/ui/footnotepage.ui:248 @@ -15228,7 +15228,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:403 msgctxt "footnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the footnote text. Only special styles can be selected." -msgstr "" +msgstr "Select the paragraph style for the footnote text. Only special styles can be selected." #. bhosj #: sw/uiconfig/swriter/ui/footnotepage.ui:419 @@ -15270,7 +15270,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:504 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "Specifies the formatting for footnotes." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51 @@ -15318,7 +15318,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:179 msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox" msgid "Select the numbering scheme for the footnotes." -msgstr "" +msgstr "Select the numbering scheme for the footnotes." #. 7RJB2 #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:198 @@ -15414,7 +15414,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:454 msgctxt "footnotesendnotestabpage|extended_tip|endnumviewbox" msgid "Select the numbering scheme for the endnotes." -msgstr "" +msgstr "Select the numbering scheme for the endnotes." #. kWheg #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:473 @@ -16110,7 +16110,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:502 msgctxt "frmtypepage|lbPreview" msgid "Preview" -msgstr "" +msgstr "Preview" #. 7RCJH #: sw/uiconfig/swriter/ui/frmtypepage.ui:539 @@ -16554,13 +16554,13 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:31 msgctxt "inputfielddialog|next" msgid "_Previous" -msgstr "" +msgstr "_Previous" #. iwh9e #: sw/uiconfig/swriter/ui/inputfielddialog.ui:45 msgctxt "inputfielddialog|next" msgid "_Next" -msgstr "" +msgstr "_Next" #. YpSqb #: sw/uiconfig/swriter/ui/inputfielddialog.ui:52 @@ -16578,7 +16578,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 "This box displays the name that you entered in the Reference box on the Functions or Variables tab of the Fields dialogue box. The box underneath displays the contents of the field." #. KcGwQ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:207 @@ -16836,13 +16836,13 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:294 msgctxt "inputwinmenu|count" msgid "Count" -msgstr "" +msgstr "Count" #. 3VBfQ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:302 msgctxt "inputwinmenu|product" msgid "Product" -msgstr "" +msgstr "Product" #. DRxEW #: sw/uiconfig/swriter/ui/inputwinmenu.ui:310 @@ -16932,13 +16932,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 @@ -16968,7 +16968,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:108 msgctxt "insertbookmark|extended_tip|name" msgid "Type the name of the bookmark that you want to create. Then press Insert." -msgstr "" +msgstr "Type the name of the bookmark that you want to create. Then press Insert." #. zocpL #: sw/uiconfig/swriter/ui/insertbookmark.ui:119 @@ -17046,7 +17046,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:349 msgctxt "insertbookmark|extended_tip|delete" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "" +msgstr "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialogue box will follow." #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:362 @@ -17058,7 +17058,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:392 msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time." -msgstr "" +msgstr "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time." #. ydP4q #: sw/uiconfig/swriter/ui/insertbreak.ui:14 @@ -17544,7 +17544,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:194 msgctxt "insertfootnote|extended_tip|character" msgid "Choose this option to define a character or symbol for the current footnote." -msgstr "" +msgstr "Choose this option to define a character or symbol for the current footnote." #. BrqCB #: sw/uiconfig/swriter/ui/insertfootnote.ui:218 @@ -17556,7 +17556,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:219 msgctxt "insertfootnote|extended_tip|characterentry" msgid "Choose this option to define a character or symbol for the current footnote." -msgstr "" +msgstr "Choose this option to define a character or symbol for the current footnote." #. yx2tm #: sw/uiconfig/swriter/ui/insertfootnote.ui:230 @@ -17566,7 +17566,6 @@ #. XDgLr #: sw/uiconfig/swriter/ui/insertfootnote.ui:238 -#, fuzzy msgctxt "insertfootnote|extended_tip|choosecharacter" msgid "Inserts a special character as a footnote or endnote anchor." msgstr "Inserts a special character as a footnote or endnote anchor." @@ -17737,7 +17736,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:181 msgctxt "insertsectiondialog|area" msgid "Area" -msgstr "" +msgstr "Area" #. Kt5QB #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:205 @@ -17809,7 +17808,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:240 msgctxt "inserttable|lbwarning" msgid "Warning : Large tables may adversely affect performance and compatibility" -msgstr "" +msgstr "Warning : Large tables may adversely affect performance and compatibility" #. M2tGB #: sw/uiconfig/swriter/ui/inserttable.ui:254 @@ -17875,7 +17874,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:437 msgctxt "inserttable|extended_tip|previewinstable" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "Displays a preview of the current selection." #. QDdwV #: sw/uiconfig/swriter/ui/inserttable.ui:479 @@ -18235,13 +18234,13 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:217 msgctxt "linenumbering|extended_tip|styledropdown" msgid "Select the character style that you want to use for the line numbers." -msgstr "" +msgstr "Select the character style that you want to use for the line numbers." #. MBZ7K #: sw/uiconfig/swriter/ui/linenumbering.ui:233 msgctxt "linenumbering|extended_tip|formatdropdown" msgid "Select the numbering scheme that you want to use." -msgstr "" +msgstr "Select the numbering scheme that you want to use." #. ntwJw #: sw/uiconfig/swriter/ui/linenumbering.ui:248 @@ -18391,13 +18390,13 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:63 msgctxt "extended_tip|address" msgid "Enter your email address for replies." -msgstr "" +msgstr "Enter your email address for replies." #. yBLGV #: sw/uiconfig/swriter/ui/mailconfigpage.ui:81 msgctxt "extended_tip|replyto" msgid "Enter the address to use for email replies." -msgstr "" +msgstr "Enter the address to use for email replies." #. nfWNf #: sw/uiconfig/swriter/ui/mailconfigpage.ui:95 @@ -18421,7 +18420,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:128 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 "Uses the email address that you enter in the Reply address text box as the reply-to email address." #. AESca #: sw/uiconfig/swriter/ui/mailconfigpage.ui:142 @@ -18451,7 +18450,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:226 msgctxt "extended_tip|serverauthentication" msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email." -msgstr "" +msgstr "Opens the Server Authentication dialogue box where you can specify the server authentication settings for secure email." #. AqgAF #: sw/uiconfig/swriter/ui/mailconfigpage.ui:250 @@ -18475,13 +18474,13 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:290 msgctxt "mailconfigpage|secure" msgid "_Use secure connection (TLS/SSL)" -msgstr "" +msgstr "_Use secure connection (TLS/SSL)" #. CoPAE #: sw/uiconfig/swriter/ui/mailconfigpage.ui:299 msgctxt "extended_tip|secure" msgid "When available, uses a secure connection to send emails." -msgstr "" +msgstr "When available, uses a secure connection to send emails." #. U82eq #: sw/uiconfig/swriter/ui/mailconfigpage.ui:318 @@ -18505,7 +18504,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:368 msgctxt "extended_tip|MailConfigPage" msgid "Specifies the user information and server settings for when you send form letters as email messages." -msgstr "" +msgstr "Specifies the user information and server settings for when you send form letters as email messages." #. RyDB6 #: sw/uiconfig/swriter/ui/mailmerge.ui:16 @@ -18703,13 +18702,13 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:676 msgctxt "mailmerge|passwd-check" msgid "Save with password" -msgstr "" +msgstr "Save with password" #. FFSYA #: sw/uiconfig/swriter/ui/mailmerge.ui:693 msgctxt "mailmerge|passwd-label" msgid "Password field:" -msgstr "" +msgstr "Password field:" #. LDBbz #: sw/uiconfig/swriter/ui/mailmerge.ui:753 @@ -18733,7 +18732,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:783 msgctxt "mailmerge|extended_tip|individualdocuments" msgid "Create one document for each data record." -msgstr "" +msgstr "Create one document for each data record." #. bAuH5 #: sw/uiconfig/swriter/ui/mailmerge.ui:801 @@ -18853,79 +18852,79 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:12 msgctxt "readonlymenu|STR_UPDATE" msgid "_Update" -msgstr "" +msgstr "_Update" #. MUFyx #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:22 msgctxt "mastercontextmenu|STR_UPDATE_SEL" msgid "Selection" -msgstr "" +msgstr "Selection" #. Xv4Q8 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:30 msgctxt "mastercontextmenu|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "" +msgstr "Indexes" #. NekK7 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:38 msgctxt "mastercontextmenu|STR_UPDATE_SEL" msgid "Links" -msgstr "" +msgstr "Links" #. RiguA #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:46 msgctxt "mastercontextmenu|STR_UPDATE_ALL" msgid "All" -msgstr "" +msgstr "All" #. kxEdV #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:58 msgctxt "mastercontextmenu|STR_EDIT_CONTENT" msgid "Edit" -msgstr "" +msgstr "Edit" #. V4abB #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:66 msgctxt "mastercontextmenu|STR_EDIT_LINK" msgid "Edit link" -msgstr "" +msgstr "Edit link" #. 4DrHX #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:74 msgctxt "readonlymenu|STR_EDIT_INSERT" msgid "Insert" -msgstr "" +msgstr "Insert" #. MCA6M #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:84 msgctxt "mastercontextmenu|STR_INDEX" msgid "_Index" -msgstr "" +msgstr "_Index" #. Eg3ib #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:92 msgctxt "mastercontextmenu|STR_FILE" msgid "File" -msgstr "" +msgstr "File" #. m6agV #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:100 msgctxt "mastercontextmenu|STR_NEW_FILE" msgid "New Document" -msgstr "" +msgstr "New Document" #. WCRAT #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:108 msgctxt "mastercontextmenu|STR_INSERT_TEXT" msgid "Text" -msgstr "" +msgstr "Text" #. diCCN #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:126 msgctxt "mastercontextmenu|STR_DELETE_ENTRY" msgid "_Delete" -msgstr "" +msgstr "_Delete" #. Gnk7X #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:8 @@ -19333,7 +19332,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:117 msgctxt "mmmailbody|extended_tip|bodymle" msgid "Enter the main text of the email." -msgstr "" +msgstr "Enter the main text of the email." #. AEVTw #: sw/uiconfig/swriter/ui/mmmailbody.ui:143 @@ -19345,7 +19344,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:151 msgctxt "mmmailbody|extended_tip|greeting" msgid "Adds a salutation to the email." -msgstr "" +msgstr "Adds a salutation to the email." #. i7T9E #: sw/uiconfig/swriter/ui/mmmailbody.ui:172 @@ -19453,7 +19452,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:472 msgctxt "mmmailbody|extended_tip|MailBodyDialog" msgid "Type the message and the salutation for files that you send as email attachments." -msgstr "" +msgstr "Type the message and the salutation for files that you send as email attachments." #. Zqr7R #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:38 @@ -19489,7 +19488,7 @@ #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:105 msgctxt "mmoutputtypepage|extended_tip|email" msgid "Creates mail merge documents that you can send as an email message or an email attachment." -msgstr "" +msgstr "Creates mail merge documents that you can send as an email message or an email attachment." #. roGWt #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:138 @@ -19519,7 +19518,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:44 msgctxt "mmresultemaildialog|extended_tip|ok" msgid "Click to start sending emails." -msgstr "" +msgstr "Click to start sending emails." #. cNmQk #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:119 @@ -19531,7 +19530,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:136 msgctxt "mmresultemaildialog|extended_tip|mailto" msgid "Select the database field that contains the email address of the recipient." -msgstr "" +msgstr "Select the database field that contains the email address of the recipient." #. H6VrM #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:147 @@ -19555,7 +19554,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:186 msgctxt "mmresultemaildialog|extended_tip|subject" msgid "Enter the subject line for the email messages." -msgstr "" +msgstr "Enter the subject line for the email messages." #. DRHXR #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:199 @@ -19597,7 +19596,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:223 msgctxt "mmresultemaildialog|extended_tip|sendas" msgid "Select the mail format for the email messages." -msgstr "" +msgstr "Select the mail format for the email messages." #. A25u6 #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:234 @@ -19609,19 +19608,19 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:242 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 "Opens the E-Mail Message dialogue box where you can enter the email message for the mail merge files that are sent as attachments." #. TePCV #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:255 msgctxt "mmresultemaildialog|passwordft" msgid "Password" -msgstr "" +msgstr "Password" #. AEF8w #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:278 msgctxt "mmresultemaildialog|passwordcb" msgid "Save with password" -msgstr "" +msgstr "Save with password" #. vHPkv #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:321 @@ -19639,7 +19638,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:348 msgctxt "mmresultemaildialog|label2" msgid "Email Options" -msgstr "" +msgstr "Email Options" #. kCBDz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:376 @@ -19651,7 +19650,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:385 msgctxt "mmresultemaildialog|extended_tip|sendallrb" msgid "Select to send emails to all recipients." -msgstr "" +msgstr "Select to send emails to all recipients." #. EN8Jh #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:403 @@ -19687,13 +19686,13 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:491 msgctxt "mmresultemaildialog|label1" msgid "Send Records" -msgstr "" +msgstr "Send Records" #. 6VhcE #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:516 msgctxt "mmresultemaildialog|extended_tip|MMResultEmailDialog" msgid "Sends the mail merge output as email messages to all or some recipients." -msgstr "" +msgstr "Sends the mail merge output as email messages to all or some recipients." #. rD68U #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:20 @@ -19741,7 +19740,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:163 msgctxt "mmresultprintdialog|label2" msgid "Printer Options" -msgstr "" +msgstr "Printer Options" #. VemES #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:191 @@ -19789,7 +19788,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:306 msgctxt "mmresultprintdialog|label1" msgid "Print Records" -msgstr "" +msgstr "Print Records" #. ZZ5p9 #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:331 @@ -19843,7 +19842,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157 msgctxt "mmresultsavedialog|label2" msgid "Save As Options" -msgstr "" +msgstr "Save As Options" #. xRGbs #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191 @@ -19879,7 +19878,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273 msgctxt "mmresultsavedialog|FromToRange" msgid "Range" -msgstr "" +msgstr "Range" #. 2BCiE #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295 @@ -20074,109 +20073,109 @@ msgstr "Use the current _document" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Uses the current Writer document as the base for the mail merge document." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Create a ne_w document" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Creates a new Writer document to use for the mail merge." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Start from _existing document" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Select an existing Writer document to use as the base for the mail merge document." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Start from a t_emplate" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Select the template that you want to create your mail merge document with." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Start fro_m a recently saved starting document" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Use an existing mail merge document as the base for a new mail merge document." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Select the document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "B_rowse..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Locate the Writer document that you want to use, and then click Open." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B_rowse..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Opens a template selector dialogue box." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." -msgstr "" +msgstr "Data source of the current document is not registered. Please exchange database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." -msgstr "" +msgstr "Exchange Database..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Select Starting Document for the Mail Merge" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Specify the document that you want to use as a base for the mail merge document." @@ -20203,7 +20202,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:107 msgctxt "mmsendmails|label1" msgid "Connection Status" -msgstr "" +msgstr "Connection Status" #. s8CDU #: sw/uiconfig/swriter/ui/mmsendmails.ui:150 @@ -20245,31 +20244,31 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:293 msgctxt "mmsendmails|label2" msgid "Transfer Status" -msgstr "" +msgstr "Transfer Status" #. c2i5B #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20 msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY" msgid "Send Outline to Clipboard" -msgstr "" +msgstr "Send Outline to Clipboard" #. 7HC9V #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:34 msgctxt "navigatorcontextmenu|STR_GOTO" msgid "Go to" -msgstr "" +msgstr "Go to" #. VCmAZ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43 msgctxt "navigatorcontextmenu|STR_SELECT" msgid "Select" -msgstr "" +msgstr "Select" #. dajzZ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51 msgctxt "navigatorcontextmenu|STR_DELETE" msgid "Delete" -msgstr "" +msgstr "Delete" #. CQSp3 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60 @@ -20299,217 +20298,217 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96 msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX" msgid "_Remove Index" -msgstr "" +msgstr "_Remove Index" #. C4355 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104 msgctxt "navigatorcontextmenu|STR_UPDATE" msgid "_Update" -msgstr "" +msgstr "_Update" #. BtCca #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112 msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY" msgid "Edit..." -msgstr "" +msgstr "Edit..." #. BYyhD #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120 msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION" msgid "_Unprotect" -msgstr "" +msgstr "_Unprotect" #. 6KWWG #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128 msgctxt "navigatorcontextmenu|STR_READONLY_IDX" msgid "Read-_only" -msgstr "" +msgstr "Read-_only" #. BUQRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136 msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY" msgid "_Delete" -msgstr "" +msgstr "_Delete" #. CUqD5 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "_Rename..." -msgstr "" +msgstr "_Rename..." #. U5nAb #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153 msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW" msgid "Show All" -msgstr "" +msgstr "Show All" #. E2wWp #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161 msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE" msgid "Hide All" -msgstr "" +msgstr "Hide All" #. aDRke #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169 msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE" msgid "Delete All" -msgstr "" +msgstr "Delete All" #. YBipC #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Folding" -msgstr "" +msgstr "Outline Folding" #. cECoG #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203 msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "" +msgstr "Outline Level" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217 msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING" msgid "Outline Tracking" -msgstr "" +msgstr "Outline Tracking" #. fZEEr #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231 msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING" msgid "Table Tracking" -msgstr "" +msgstr "Table Tracking" #. 7oCFa #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239 msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING" msgid "Section Tracking" -msgstr "" +msgstr "Section Tracking" #. YmjQf #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247 msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING" msgid "Frame Tracking" -msgstr "" +msgstr "Frame Tracking" #. vhxX5 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255 msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING" msgid "Image Tracking" -msgstr "" +msgstr "Image Tracking" #. mcYqZ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263 msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING" msgid "OLE Object Tracking" -msgstr "" +msgstr "OLE Object Tracking" #. DRaED #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271 msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING" msgid "Bookmark Tracking" -msgstr "" +msgstr "Bookmark Tracking" #. vpLmh #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279 msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING" msgid "Hyperlink Tracking" -msgstr "" +msgstr "Hyperlink Tracking" #. EvBzN #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287 msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING" msgid "Reference Tracking" -msgstr "" +msgstr "Reference Tracking" #. M8Bes #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295 msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING" msgid "Index Tracking" -msgstr "" +msgstr "Index Tracking" #. KBFwM #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303 msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING" msgid "Comment Tracking" -msgstr "" +msgstr "Comment Tracking" #. oGavB #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311 msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING" msgid "Drawing Object Tracking" -msgstr "" +msgstr "Drawing Object Tracking" #. w8FTW #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319 msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING" msgid "Field Tracking" -msgstr "" +msgstr "Field Tracking" #. BoCeZ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327 msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING" msgid "Footnote Tracking" -msgstr "" +msgstr "Footnote Tracking" #. GyAcG #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341 msgctxt "navigatorcontextmenu|STR_DRAGMODE" msgid "Drag Mode" -msgstr "" +msgstr "Drag Mode" #. Zehx2 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355 msgctxt "navigatorcontextmenu|STR_DISPLAY" msgid "Display" -msgstr "" +msgstr "Display" #. bgZoy #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375 msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES" msgid "Collapse All Categories" -msgstr "" +msgstr "Collapse All Categories" #. ba8wC #: sw/uiconfig/swriter/ui/navigatorpanel.ui:18 msgctxt "navigatorpanel|hyperlink" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Insert as Hyperlink" #. YFPAS #: sw/uiconfig/swriter/ui/navigatorpanel.ui:28 msgctxt "navigatorpanel|link" msgid "Insert as Link" -msgstr "" +msgstr "Insert as Link" #. 97BBT #: sw/uiconfig/swriter/ui/navigatorpanel.ui:38 msgctxt "navigatorpanel|copy" msgid "Insert as Copy" -msgstr "" +msgstr "Insert as Copy" #. mBP9D #: sw/uiconfig/swriter/ui/navigatorpanel.ui:155 msgctxt "navigatorpanel|STR_INDEX" msgid "_Index" -msgstr "" +msgstr "_Index" #. NyHHE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:163 msgctxt "navigatorpanel|STR_FILE" msgid "File" -msgstr "" +msgstr "File" #. NZZqB #: sw/uiconfig/swriter/ui/navigatorpanel.ui:171 msgctxt "navigatorpanel|STR_NEW_FILE" msgid "New Document" -msgstr "" +msgstr "New Document" #. FMVmv #: sw/uiconfig/swriter/ui/navigatorpanel.ui:179 msgctxt "navigatorpanel|STR_INSERT_TEXT" msgid "Text" -msgstr "" +msgstr "Text" #. xuEPo #: sw/uiconfig/swriter/ui/navigatorpanel.ui:266 @@ -20527,13 +20526,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:377 msgctxt "navigatorpanel|spinbutton|tooltip_text" msgid "Go to Page" -msgstr "" +msgstr "Go to Page" #. avLGA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:384 msgctxt "navigatorpanel|extended_tip|spinbutton" msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward." -msgstr "" +msgstr "Enter page number and press Enter. Use arrows to move to next page forward or backward." #. DgvFE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:416 @@ -20779,25 +20778,25 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:989 msgctxt "navigatorpanel|STR_UPDATE_SEL" msgid "Selection" -msgstr "" +msgstr "Selection" #. v2iCL #: sw/uiconfig/swriter/ui/navigatorpanel.ui:997 msgctxt "navigatorpanel|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "" +msgstr "Indexes" #. fvFtM #: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005 msgctxt "navigatorpanel|STR_UPDATE_SEL" msgid "Links" -msgstr "" +msgstr "Links" #. Njw6i #: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013 msgctxt "navigatorpanel|STR_UPDATE_ALL" msgid "All" -msgstr "" +msgstr "All" #. mYVYE #: sw/uiconfig/swriter/ui/newuserindexdialog.ui:8 @@ -22058,25 +22057,25 @@ #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122 msgctxt "numberingnamedialog|grid1" msgid "Names of saved formats." -msgstr "" +msgstr "Names of saved formats." #. 62pRF #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138 msgctxt "numberingnamedialog|extended_tip|form" msgid "Shows the current saved format names." -msgstr "" +msgstr "Shows the current saved format names." #. AbLwh #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155 msgctxt "numberingnamedialog|entry" msgid "Enter name to identify the format to be saved." -msgstr "" +msgstr "Enter name to identify the format to be saved." #. F662A #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158 msgctxt "numberingnamedialog|extended_tip|entry" msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button." -msgstr "" +msgstr "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button." #. VExwF #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173 @@ -22088,7 +22087,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:41 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style." -msgstr "" +msgstr "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style." #. Rekgx #: sw/uiconfig/swriter/ui/numparapage.ui:42 @@ -22100,7 +22099,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:57 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Assigned Outline Level" -msgstr "" +msgstr "Assigned Outline Level" #. y9mKV #: sw/uiconfig/swriter/ui/numparapage.ui:59 @@ -22172,7 +22171,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:73 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 "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style." #. A9CrD #: sw/uiconfig/swriter/ui/numparapage.ui:89 @@ -22184,31 +22183,31 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:126 msgctxt "numparapage|labelFT_NUMBER_STYLE" msgid "Select a List Style to apply to the paragraph." -msgstr "" +msgstr "Select a List Style to apply to the paragraph." #. eQZED #: sw/uiconfig/swriter/ui/numparapage.ui:127 msgctxt "numparapage|labelFT_NUMBER_STYLE" msgid "_List style:" -msgstr "" +msgstr "_List style:" #. Kx7Bm #: sw/uiconfig/swriter/ui/numparapage.ui:147 msgctxt "numparapage|comboLB_NUMBER_STYLE" msgid "Assigned List Style" -msgstr "" +msgstr "Assigned List Style" #. qgNLu #: sw/uiconfig/swriter/ui/numparapage.ui:149 msgctxt "numparapage|comboLB_NUMBER_STYLE" msgid "No List" -msgstr "" +msgstr "No List" #. hRgAM #: sw/uiconfig/swriter/ui/numparapage.ui:153 msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE" msgid "Select the List Style that you want to apply to the paragraph." -msgstr "" +msgstr "Select the List Style that you want to apply to the paragraph." #. eBkEW #: sw/uiconfig/swriter/ui/numparapage.ui:165 @@ -22220,19 +22219,19 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:171 msgctxt "numparapage|extended_tip|editnumstyle" msgid "Edit the properties of the selected List Style." -msgstr "" +msgstr "Edit the properties of the selected List Style." #. sQw2M #: sw/uiconfig/swriter/ui/numparapage.ui:197 msgctxt "numparapage|checkCB_NEW_START" msgid "R_estart numbering at this paragraph" -msgstr "" +msgstr "R_estart numbering at this paragraph" #. Dreuk #: sw/uiconfig/swriter/ui/numparapage.ui:201 msgctxt "numparapage|checkCB_NEW_START" msgid "For ordered lists and List Styles with numbering" -msgstr "" +msgstr "For ordered lists and List Styles with numbering" #. SCaCA #: sw/uiconfig/swriter/ui/numparapage.ui:209 @@ -22262,7 +22261,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:294 msgctxt "numparapage|label2" msgid "Apply List Style" -msgstr "" +msgstr "Apply List Style" #. tBYXk #: sw/uiconfig/swriter/ui/numparapage.ui:323 @@ -22310,7 +22309,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:450 msgctxt "numparapage|extended_tip|NumParaPage" msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list." -msgstr "" +msgstr "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list." #. jHKFJ #: sw/uiconfig/swriter/ui/objectdialog.ui:8 @@ -22319,49 +22318,49 @@ msgstr "Object" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Options" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Wrap" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borders" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparency" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -22572,7 +22571,7 @@ #: sw/uiconfig/swriter/ui/optcomparison.ui:113 msgctxt "optcomparison|ignore" msgid "Ignore _pieces of length:" -msgstr "" +msgstr "Ignore _pieces of length:" #. cCUqS #: sw/uiconfig/swriter/ui/optcomparison.ui:127 @@ -22602,7 +22601,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:133 msgctxt "optcompatpage|label2" msgid "Global Compatibility Options" -msgstr "" +msgstr "Global Compatibility Options" #. KC3YE #: sw/uiconfig/swriter/ui/optcompatpage.ui:225 @@ -22948,7 +22947,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:259 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "" +msgstr "Display Formatting" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:287 @@ -23038,31 +23037,31 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:489 msgctxt "optformataidspage|anchor" msgid "_Anchor:" -msgstr "" +msgstr "_Anchor:" #. 4ahDA #: sw/uiconfig/swriter/ui/optformataidspage.ui:506 msgctxt "optformataidspage|cxDefaultAnchor1" msgid "To Paragraph" -msgstr "" +msgstr "To Paragraph" #. Fxh2u #: sw/uiconfig/swriter/ui/optformataidspage.ui:507 msgctxt "optformataidspage|cxDefaultAnchor2" msgid "To Character" -msgstr "" +msgstr "To Character" #. rafqG #: sw/uiconfig/swriter/ui/optformataidspage.ui:508 msgctxt "optformataidspage|cxDefaultAnchor3" msgid "As Character" -msgstr "" +msgstr "As Character" #. B3qDX #: sw/uiconfig/swriter/ui/optformataidspage.ui:523 msgctxt "optformataidspage|lbImage" msgid "Image" -msgstr "" +msgstr "Image" #. npuVw #: sw/uiconfig/swriter/ui/optformataidspage.ui:551 @@ -23710,7 +23709,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:16 msgctxt "outlinenumbering|extended_tip|form1" msgid "Select the predefined numbering scheme that you want to assign to the selected outline level." -msgstr "" +msgstr "Select the predefined numbering scheme that you want to assign to the selected outline level." #. stM8e #: sw/uiconfig/swriter/ui/outlinenumbering.ui:25 @@ -23776,7 +23775,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:106 msgctxt "outlinenumbering|extended_tip|form" msgid "Click a numbering scheme in the list, and then enter a name for the scheme. The numbers correspond to the outline level that the styles are assigned to." -msgstr "" +msgstr "Click a numbering scheme in the list, and then enter a name for the scheme. The numbers correspond to the outline level that the styles are assigned to." #. d2QaP #: sw/uiconfig/swriter/ui/outlinenumbering.ui:113 @@ -23806,13 +23805,13 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:334 msgctxt "outlinenumbering|extended_tip|OutlineNumberingDialog" msgid "Specifies the numbering scheme and the hierarchy for chapter numbering in the current document." -msgstr "" +msgstr "Specifies the numbering scheme and the hierarchy for chapter numbering in the current document." #. soxpF #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:70 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 "Click the chapter and outline level that you want to modify, and then specify the numbering options for the level." #. 2ibio #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:81 @@ -23854,13 +23853,13 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:189 msgctxt "outlinenumberingpage|extended_tip|numbering" msgid "Select the numbering scheme that you want to apply to the selected outline level." -msgstr "" +msgstr "Select the numbering scheme that you want to apply to the selected outline level." #. BSBWE #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:205 msgctxt "outlinenumberingpage|extended_tip|charstyle" msgid "Select the character style of the numbering character." -msgstr "" +msgstr "Select the character style of the numbering character." #. 5A5fh #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:226 @@ -23926,7 +23925,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:89 msgctxt "outlinepositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Select the level(s) that you want to modify." #. aBYaM #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:100 @@ -23978,7 +23977,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:193 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 "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." #. JdjtA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:206 @@ -24002,7 +24001,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:246 msgctxt "outlinepositionpage|extended_tip|relative" msgid "Indents the current level relative to the previous level in the list hierarchy." -msgstr "" +msgstr "Indents the current level relative to the previous level in the list hierarchy." #. jBvmB #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:259 @@ -24014,7 +24013,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:280 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 "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." #. GFsnA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:293 @@ -24218,7 +24217,7 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:97 msgctxt "pagefooterpanel|footertoggle" msgid "Margins:" -msgstr "" +msgstr "Margins:" #. xepvQ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:109 @@ -24308,7 +24307,7 @@ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:97 msgctxt "pageheaderpanel|headertoggle" msgid "Margins:" -msgstr "" +msgstr "Margins:" #. PAGRJ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:109 @@ -24536,13 +24535,13 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:32 msgctxt "paradialog|reset" msgid "Unsaved modifications to this tab are reverted." -msgstr "" +msgstr "Unsaved modifications to this tab are reverted." #. Gw9vR #: sw/uiconfig/swriter/ui/paradialog.ui:35 msgctxt "paradialog|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "Revert any changes made on the tab shown here to the settings that were present when this dialogue box was opened." #. 6xRiy #: sw/uiconfig/swriter/ui/paradialog.ui:159 @@ -24572,13 +24571,13 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:352 msgctxt "paradialog|labelTP_NUMPARA" msgid "Outline & List" -msgstr "" +msgstr "Outline & List" #. hZxni #: sw/uiconfig/swriter/ui/paradialog.ui:353 msgctxt "paradialog|labelTP_NUMPARA" msgid "Set outline level, list style and line numbering for paragraph." -msgstr "" +msgstr "Set outline level, list style and line numbering for paragraph." #. BzbWJ #: sw/uiconfig/swriter/ui/paradialog.ui:401 @@ -24812,13 +24811,13 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:409 msgctxt "picturepage|label15" msgid "Type:" -msgstr "" +msgstr "Type:" #. DrEQF #: sw/uiconfig/swriter/ui/picturepage.ui:443 msgctxt "picturepage|label16" msgid "Image Information" -msgstr "" +msgstr "Image Information" #. UFDyD #: sw/uiconfig/swriter/ui/picturepage.ui:458 @@ -24884,7 +24883,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:54 msgctxt "printeroptions|extended_tip|pictures" msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed." -msgstr "" +msgstr "Specifies whether the graphics and drawings or OLE objects of your text document are printed." #. VRCmc #: sw/uiconfig/swriter/ui/printeroptions.ui:66 @@ -24896,7 +24895,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:74 msgctxt "printeroptions|extended_tip|hiddentext" msgid "Enable this option to print text that is marked as hidden." -msgstr "" +msgstr "Enable this option to print text that is marked as hidden." #. boJH4 #: sw/uiconfig/swriter/ui/printeroptions.ui:86 @@ -24908,7 +24907,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:94 msgctxt "printeroptions|extended_tip|placeholders" msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." -msgstr "" +msgstr "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." #. 3y2Gm #: sw/uiconfig/swriter/ui/printeroptions.ui:106 @@ -24920,7 +24919,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:114 msgctxt "printeroptions|extended_tip|formcontrols" msgid "Specifies whether the form control fields of the text document are printed." -msgstr "" +msgstr "Specifies whether the form control fields of the text document are printed." #. w7VH3 #: sw/uiconfig/swriter/ui/printeroptions.ui:134 @@ -24932,7 +24931,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:150 msgctxt "printeroptions|extended_tip|writercomments" msgid "Specify where to print comments (if any)." -msgstr "" +msgstr "Specify where to print comments (if any)." #. M6JQf #: sw/uiconfig/swriter/ui/printeroptions.ui:173 @@ -24950,7 +24949,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:204 msgctxt "printeroptions|extended_tip|textinblack" msgid "Specifies whether to always print text in black." -msgstr "" +msgstr "Specifies whether to always print text in black." #. uFDfh #: sw/uiconfig/swriter/ui/printeroptions.ui:213 @@ -25202,7 +25201,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:439 msgctxt "printoptionspage|label5" msgid "_Fax:" -msgstr "" +msgstr "_Fax:" #. CFCk9 #: sw/uiconfig/swriter/ui/printoptionspage.ui:444 @@ -25352,7 +25351,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:216 msgctxt "extended tips | job" msgid "Type your profession" -msgstr "" +msgstr "Type your profession" #. 344nc #: sw/uiconfig/swriter/ui/privateuserpage.ui:246 @@ -25376,7 +25375,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:280 msgctxt "extended tips | url" msgid "Enter your home page" -msgstr "" +msgstr "Enter your home page" #. AnyFT #: sw/uiconfig/swriter/ui/privateuserpage.ui:298 @@ -25388,7 +25387,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:299 msgctxt "extended tip | email" msgid "Type your email address." -msgstr "" +msgstr "Type your email address." #. Qxb4Q #: sw/uiconfig/swriter/ui/privateuserpage.ui:318 @@ -25406,7 +25405,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:344 msgctxt "extended tips | firstname2" msgid "Type your first name" -msgstr "" +msgstr "Type your first name" #. rDNHk #: sw/uiconfig/swriter/ui/privateuserpage.ui:362 @@ -25418,7 +25417,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:363 msgctxt "extended tips | lastname2" msgid "Type your last name " -msgstr "" +msgstr "Type your last name " #. rztbH #: sw/uiconfig/swriter/ui/privateuserpage.ui:381 @@ -25430,7 +25429,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:382 msgctxt "extended tips | shortname2" msgid "Type your initials" -msgstr "" +msgstr "Type your initials" #. LGHpW #: sw/uiconfig/swriter/ui/privateuserpage.ui:401 @@ -25472,7 +25471,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:507 msgctxt "extended tips | country" msgid "Type the country name" -msgstr "" +msgstr "Type the country name" #. y652V #: sw/uiconfig/swriter/ui/privateuserpage.ui:525 @@ -25496,7 +25495,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:571 msgctxt "extended tips | phone" msgid "Type your phone number" -msgstr "" +msgstr "Type your phone number" #. GThP4 #: sw/uiconfig/swriter/ui/privateuserpage.ui:589 @@ -25508,7 +25507,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:590 msgctxt "extended tips | mobile" msgid "Type your mobile phone number" -msgstr "" +msgstr "Type your mobile phone number" #. bGoA3 #: sw/uiconfig/swriter/ui/privateuserpage.ui:611 @@ -25740,13 +25739,13 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:156 msgctxt "readonlymenu|backaslink" msgid "As Link" -msgstr "" +msgstr "As Link" #. CwLB2 #: sw/uiconfig/swriter/ui/readonlymenu.ui:164 msgctxt "readonlymenu|backascopy" msgid "Copy" -msgstr "" +msgstr "Copy" #. K9D4E #: sw/uiconfig/swriter/ui/readonlymenu.ui:188 @@ -26526,37 +26525,37 @@ #: sw/uiconfig/swriter/ui/sidebarwrap.ui:74 msgctxt "sidebarwrap|wrapoff|tooltip_text" msgid "None" -msgstr "" +msgstr "None" #. BM99o #: sw/uiconfig/swriter/ui/sidebarwrap.ui:86 msgctxt "sidebarwrap|wrapon|tooltip_text" msgid "Parallel" -msgstr "" +msgstr "Parallel" #. 6LvB4 #: sw/uiconfig/swriter/ui/sidebarwrap.ui:98 msgctxt "sidebarwrap|wrapideal|tooltip_text" msgid "Optimal" -msgstr "" +msgstr "Optimal" #. 2TrbF #: sw/uiconfig/swriter/ui/sidebarwrap.ui:110 msgctxt "sidebarwrap|wrapbefore|tooltip_text" msgid "Before" -msgstr "" +msgstr "Before" #. oKykv #: sw/uiconfig/swriter/ui/sidebarwrap.ui:122 msgctxt "sidebarwrap|wrapafter|tooltip_text" msgid "After" -msgstr "" +msgstr "After" #. Sw6vj #: sw/uiconfig/swriter/ui/sidebarwrap.ui:134 msgctxt "sidebarwrap|wrapthrough|tooltip_text" msgid "Through" -msgstr "" +msgstr "Through" #. PqGRt #: sw/uiconfig/swriter/ui/sortdialog.ui:29 @@ -26874,25 +26873,25 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:20 msgctxt "spellmenu|addmenu" msgid "Add to _Dictionary" -msgstr "" +msgstr "Add to _Dictionary" #. GMjgF #: sw/uiconfig/swriter/ui/spellmenu.ui:34 msgctxt "spellmenu|add" msgid "Add to _Dictionary" -msgstr "" +msgstr "Add to _Dictionary" #. i7HEY #: sw/uiconfig/swriter/ui/spellmenu.ui:55 msgctxt "spellmenu|correctmenu" msgid "Add selected correction as replacement for incorrect word in AutoCorrect replacement table." -msgstr "" +msgstr "Add selected correction as replacement for incorrect word in AutoCorrect replacement table." #. jDmAi #: sw/uiconfig/swriter/ui/spellmenu.ui:56 msgctxt "spellmenu|correctmenu" msgid "Always AutoCorrect _to" -msgstr "" +msgstr "Always AutoCorrect _to" #. AU9d2 #: sw/uiconfig/swriter/ui/spellmenu.ui:83 @@ -27057,7 +27056,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Displays statistics for the current file." @@ -27132,7 +27131,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:146 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 "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." #. GZ93v #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:191 @@ -27528,7 +27527,7 @@ #: sw/uiconfig/swriter/ui/templatedialog1.ui:34 msgctxt "templatedialog1|extended_tip|reset" msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened." -msgstr "" +msgstr "Revert any changes made on the tab shown here to the settings that were present when this dialogue box was opened." #. UH8Vz #: sw/uiconfig/swriter/ui/templatedialog1.ui:172 @@ -27576,7 +27575,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:8 msgctxt "templatedialog16|TemplateDialog16" msgid "List Style" -msgstr "" +msgstr "List Style" #. tA5vb #: sw/uiconfig/swriter/ui/templatedialog16.ui:167 @@ -27588,31 +27587,31 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:168 msgctxt "templatedialog16|organizer" msgid "Name and hide user-defined styles" -msgstr "" +msgstr "Name and hide user-defined styles" #. 7o8No #: sw/uiconfig/swriter/ui/templatedialog16.ui:215 msgctxt "templatedialog16|bullets" msgid "Unordered" -msgstr "" +msgstr "Unordered" #. 7MAbD #: sw/uiconfig/swriter/ui/templatedialog16.ui:216 msgctxt "templatedialog16|bullets" msgid "Choose a predefined bullet type" -msgstr "" +msgstr "Choose a predefined bullet type" #. uCBn4 #: sw/uiconfig/swriter/ui/templatedialog16.ui:264 msgctxt "templatedialog16|numbering" msgid "Ordered" -msgstr "" +msgstr "Ordered" #. BHtZp #: sw/uiconfig/swriter/ui/templatedialog16.ui:265 msgctxt "templatedialog16|numbering" msgid "Choose a predefined ordered list" -msgstr "" +msgstr "Choose a predefined ordered list" #. D9oKE #: sw/uiconfig/swriter/ui/templatedialog16.ui:313 @@ -27624,7 +27623,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:314 msgctxt "templatedialog16|outline" msgid "Choose a predefined outline format" -msgstr "" +msgstr "Choose a predefined outline format" #. Dp6La #: sw/uiconfig/swriter/ui/templatedialog16.ui:362 @@ -27636,7 +27635,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:363 msgctxt "templatedialog16|graphics" msgid "Choose a predefined graphic bullet symbol" -msgstr "" +msgstr "Choose a predefined graphic bullet symbol" #. K55K4 #: sw/uiconfig/swriter/ui/templatedialog16.ui:411 @@ -27648,7 +27647,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:412 msgctxt "templatedialog16|position" msgid "Modify indent, spacing, and alignment for list numbers or symbols" -msgstr "" +msgstr "Modify indent, spacing, and alignment for list numbers or symbols" #. g5NQF #: sw/uiconfig/swriter/ui/templatedialog16.ui:460 @@ -27660,7 +27659,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:461 msgctxt "templatedialog16|customize" msgid "Design your own list or outline format" -msgstr "" +msgstr "Design your own list or outline format" #. 6ozqU #: sw/uiconfig/swriter/ui/templatedialog2.ui:8 @@ -27768,13 +27767,13 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:934 msgctxt "templatedialog2|outline" msgid "Outline & List" -msgstr "" +msgstr "Outline & List" #. xT7hc #: sw/uiconfig/swriter/ui/templatedialog2.ui:935 msgctxt "templatedialog2|outline" msgid "Set outline level, list style and line numbering for paragraph style." -msgstr "" +msgstr "Set outline level, list style and line numbering for paragraph style." #. q8oC5 #: sw/uiconfig/swriter/ui/templatedialog4.ui:8 @@ -27924,7 +27923,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:24 msgctxt "testmailsettings|stop" msgid "_Stop" -msgstr "" +msgstr "_Stop" #. pBore #: sw/uiconfig/swriter/ui/testmailsettings.ui:33 @@ -28350,7 +28349,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:290 msgctxt "tocentriespage|extended_tip|charstyle" msgid "Specify the character style for the selected part on the Structure line." -msgstr "" +msgstr "Specify the character style for the selected part on the Structure line." #. 5nWPi #: sw/uiconfig/swriter/ui/tocentriespage.ui:303 @@ -28608,7 +28607,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:824 msgctxt "tocentriespage|extended_tip|mainstyle" msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry." -msgstr "" +msgstr "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry." #. r33aA #: sw/uiconfig/swriter/ui/tocentriespage.ui:839 @@ -28848,7 +28847,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:151 msgctxt "tocindexpage|extended_tip|type" msgid "Select the type of index that you want to insert or edit." -msgstr "" +msgstr "Select the type of index that you want to insert or edit." #. 2M95E #: sw/uiconfig/swriter/ui/tocindexpage.ui:162 @@ -28920,7 +28919,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:358 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 "Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index." #. 6RPA5 #: sw/uiconfig/swriter/ui/tocindexpage.ui:369 @@ -29190,7 +29189,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:963 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 "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." #. Uivc8 #: sw/uiconfig/swriter/ui/tocindexpage.ui:974 @@ -29448,7 +29447,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:226 msgctxt "extended_tip|hiddentextfield" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "" +msgstr "Displays text that is hidden by Conditional Text or Hidden Text fields." #. Mbfk7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:237 @@ -29460,25 +29459,25 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:245 msgctxt "extended_tip|hiddenparafield" msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph." -msgstr "" +msgstr "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph." #. hFXBr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:260 msgctxt "viewoptionspage|fieldslabel" msgid "Display Fields" -msgstr "" +msgstr "Display Fields" #. EiyCk #: sw/uiconfig/swriter/ui/viewoptionspage.ui:290 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "" +msgstr "Tracked _deletions in margin" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:298 msgctxt "extended_tip|changesinmargin" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "" +msgstr "Displays text that is hidden by Conditional Text or Hidden Text fields." #. 6RQCH #: sw/uiconfig/swriter/ui/viewoptionspage.ui:309 @@ -29490,7 +29489,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:327 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "" +msgstr "Display tracked changes" #. YD6TK #: sw/uiconfig/swriter/ui/viewoptionspage.ui:369 @@ -29508,7 +29507,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:396 msgctxt "viewoptionspage|vruler" msgid "Verti_cal ruler:" -msgstr "" +msgstr "Verti_cal ruler:" #. gBqEr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:404 @@ -29544,7 +29543,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:470 msgctxt "viewoptionspage|hruler" msgid "Hori_zontal ruler:" -msgstr "" +msgstr "Hori_zontal ruler:" #. 3Xu8U #: sw/uiconfig/swriter/ui/viewoptionspage.ui:476 @@ -29568,7 +29567,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:544 msgctxt "viewoptionspage|measureunitlabel" msgid "Measurement unit:" -msgstr "" +msgstr "Measurement unit:" #. 3ES7A #: sw/uiconfig/swriter/ui/viewoptionspage.ui:557 @@ -29580,31 +29579,31 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:587 msgctxt "viewoptionspage|outlinecontentvisibilitybutton" msgid "_Show outline-folding buttons" -msgstr "" +msgstr "_Show outline-folding buttons" #. 4RBet #: sw/uiconfig/swriter/ui/viewoptionspage.ui:595 msgctxt "viewoptionspage|extended_tip|outlinecontentvisibilitybutton" msgid "Displays outline folding buttons on the left of the outline headings." -msgstr "" +msgstr "Displays outline folding buttons on the left of the outline headings." #. gAXeG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:606 msgctxt "viewoptionspage|suboutlinelevelscontent" msgid "Include sub _levels" -msgstr "" +msgstr "Include sub _levels" #. yqTFr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:615 msgctxt "viewoptionspage|extended_tip|suboutlinelevelsascontent" msgid "Displays the folding buttons of the outline sub levels." -msgstr "" +msgstr "Displays the folding buttons of the outline sub levels." #. P8f3D #: sw/uiconfig/swriter/ui/viewoptionspage.ui:651 msgctxt "viewoptionspage|outlinelabel" msgid "Outline Folding" -msgstr "" +msgstr "Outline Folding" #. LZT9X #: sw/uiconfig/swriter/ui/viewoptionspage.ui:679 @@ -29856,7 +29855,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:61 msgctxt "wrappage|before" msgid "Be_fore" -msgstr "" +msgstr "Be_fore" #. tE9SC #: sw/uiconfig/swriter/ui/wrappage.ui:74 @@ -29868,7 +29867,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:121 msgctxt "wrappage|after" msgid "Aft_er" -msgstr "" +msgstr "Aft_er" #. vpZfS #: sw/uiconfig/swriter/ui/wrappage.ui:134 @@ -29904,7 +29903,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:301 msgctxt "wrappage|none" msgid "_Wrap Off" -msgstr "" +msgstr "_Wrap Off" #. KSWRg #: sw/uiconfig/swriter/ui/wrappage.ui:314 diff -Nru libreoffice-7.3.4/translations/source/en-GB/vcl/messages.po libreoffice-7.3.5/translations/source/en-GB/vcl/messages.po --- libreoffice-7.3.4/translations/source/en-GB/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-GB/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-12-14 18:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562933319.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Print multiple pages per sheet of paper." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Custom" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Select how many pages to print per sheet of paper." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pages:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Select number of rows." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "by" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Select number of columns." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margin:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Select margin between individual pages on each sheet of paper." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "between pages" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distance:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Select margin between the printed pages and paper edge." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "to sheet border" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Order:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Left to right, then down" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Top to bottom, then right" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Top to bottom, then left" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Right to left, then down" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Select order in which pages are to be printed." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Draw a border around each page" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Check to draw a border around each page." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Select to print the document in brochure format." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Collation preview" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_ore" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Page Layout" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." diff -Nru libreoffice-7.3.4/translations/source/en-ZA/chart2/messages.po libreoffice-7.3.5/translations/source/en-ZA/chart2/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3695,7 +3695,7 @@ msgstr "Set the number of lines for the Column and Line chart type." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Select a basic chart type." diff -Nru libreoffice-7.3.4/translations/source/en-ZA/cui/messages.po libreoffice-7.3.5/translations/source/en-ZA/cui/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17605,177 +17605,152 @@ msgid "Automatic" msgstr "Automatic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~High Contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Directly accesses hardware features of the graphical display adapter to improve the screen display." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/dbaccess/messages.po libreoffice-7.3.5/translations/source/en-ZA/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3474,75 +3474,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Embedded database" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Recently Used" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Open" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3550,7 +3550,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/extensions/messages.po libreoffice-7.3.5/translations/source/en-ZA/extensions/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -310,596 +310,582 @@ msgid "Refresh form" msgstr "Refresh form" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (short)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (short YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (short YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (long)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Not Selected" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selected" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Not Defined" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "All records" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Active record" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Current page" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yes" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Parent Form" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Stop" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "None" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Single" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Range" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Default" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancel" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Help" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "The selected entry" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Position of the selected entry" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Single-line" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multi-line" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multi-line with formatting" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "None" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Both" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Left top" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Left centred" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Left bottom" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Right top" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Right centred" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Right bottom" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Above left" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Above centred" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Above right" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Below left" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Below centred" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Below right" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centred" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preserve" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Replace" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Collapse" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Keep Ratio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Fit to Size" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Left-to-right" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Right-to-left" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Use superordinate object settings" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Never" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "When focused" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Always" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "To Paragraph" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "As Character" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "To Frame" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "To Character" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/fpicker/messages.po libreoffice-7.3.5/translations/source/en-ZA/fpicker/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "File name:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "File ~type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Read-only" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Save with pass~word" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Automatic file name extension" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Edit filter settings" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/sc/messages.po libreoffice-7.3.5/translations/source/en-ZA/sc/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25858,97 +25858,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26337,158 +26337,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Arrange" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Colour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Grid" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Language" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Comments" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "View" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Edit" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Arrange" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "View" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Group" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Alignment" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "View" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Insert" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Frame" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Arrange" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Grid" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/sd/messages.po libreoffice-7.3.5/translations/source/en-ZA/sd/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4241,109 +4241,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7223,109 +7223,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/sw/messages.po libreoffice-7.3.5/translations/source/en-ZA/sw/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10763,20 +10763,20 @@ msgstr "Moves the selected paragraph style down one level in the index hierarchy." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Styles" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creates index entries from specific paragraph styles." @@ -14356,38 +14356,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Define" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Browse..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opens a file open dialogue to select a database file (*.odb). The selected file is added to the Available Databases list." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14395,31 +14395,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lists the databases that are currently in use." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Change the data sources for the current document." @@ -20735,111 +20735,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Uses the current Writer document as the base for the mail merge document." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Creates a new Writer document to use for the mail merge." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Select an existing Writer document to use as the base for the mail merge document." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Select the template that you want to create your mail merge document with." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Use an existing mail merge document as the base for a new mail merge document." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Select the document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Browse..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Browse..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23023,50 +23023,50 @@ msgstr "Object" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Options" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Wrap" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borders" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparency" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27961,7 +27961,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/en-ZA/vcl/messages.po libreoffice-7.3.5/translations/source/en-ZA/vcl/messages.po --- libreoffice-7.3.4/translations/source/en-ZA/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/en-ZA/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2346,169 +2346,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Custom" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Delete the current comment." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "by" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Delete the current comment." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "between pages" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "to sheet border" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Draw a border around each page" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." diff -Nru libreoffice-7.3.4/translations/source/eo/chart2/messages.po libreoffice-7.3.5/translations/source/eo/chart2/messages.po --- libreoffice-7.3.4/translations/source/eo/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-14 10:10+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -3602,7 +3602,7 @@ msgstr "Agordu la nombron da linioj por la diagrama tipo Kolumno kaj Linio." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Elektu tipon de baza diagramo." diff -Nru libreoffice-7.3.4/translations/source/eo/cui/messages.po libreoffice-7.3.5/translations/source/eo/cui/messages.po --- libreoffice-7.3.4/translations/source/eo/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-16 08:40+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564181160.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Aŭtomata" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaksio" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Forta kontrasto" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oksigena" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasika" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "SIFR" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Venteto" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Agordas la bildsimbolan stilon por bildsimboloj en ilobretoj kaj dialogoj." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Bildsimbola stilo:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Aldoni pliajn bildsimbolajn etosojn per kromprogramo." #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Bildsimbola stilo" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Necesas restartigi" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Uzi aparataran plirapidigon" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Rekte aliras aparatajn funkciojn de la grafika vidiga adaptilo por plibonigi la fenestran montradon." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Uzi glatigon" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Kiam ĝi estas subtenata, vi povas enŝalti kaj malŝalti glatigon grafikan. Kun glatigo aktiva, la vidigo de plejmultaj objektoj aperas pli glata kaj kun malpliaj artefaktoj." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Uzi je Skia por ĉiu bildigo" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Devigi bildigon per Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Bezonas restartigon. Ebligi tion malebligos uzi grafikajn pelilojn." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Aktuale Skia estas ŝaltita." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Aktuale Skia estas malŝaltita." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafika eligaĵo" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Vidigi tiparan antaŭvidon" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Vidigas la nomojn de elekteblaj tiparoj per la rilata tiparo, ekzemple, tiparoj en la kampo Tiparo en la breto Formatado." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ekrantipara glatigo" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Elektu por glatigi la fenestran aspekton de teksto." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "el:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Enigu la plej malgrandan tiparan grandon glatigotan." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Tiparaj listoj" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Ruli grafikajn testojn" diff -Nru libreoffice-7.3.4/translations/source/eo/dbaccess/messages.po libreoffice-7.3.5/translations/source/eo/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/eo/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-06-01 09:37+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563489111.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Krei novan datumbazon" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Elekti por krei novan datumbazon." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Enkorpigita datumbazo:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Malfermi ekzistantan datumbazan dosieron" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Elekti por malfermi datumbazan dosieron el listo de freŝe uzitaj dosieroj aŭ el dosierelekta dialogo." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Lastatempe uzita:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Elekti datumbazan dosieron malfermotan el listo de freŝe uzitaj dosieroj. Klaki al Fini por tuj malfermi la dosieron kaj iri el la Asistanto." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Malfermi" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Malfermas dialogon kie vi povas elekti datumbazan dosieron. Klaku al Malfermi aŭ al Akcepti en la dosierelekta dialogo por tuj malfermi la dosieron kaj iri el la Asistanto." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Konekti al ekzistanta datumbazo" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Elekti por krei datumbazan dokumenton por ekzistanta datumbaza konekto." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Elekti la datumbazan tipon por la ekzistanta datumbaza konekto." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Ne eblas krei novan datumbazon, ĉar nek HSQLDB, nek Firebird estas atingebla en ĉi tiu agordaĵo." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "La Datumbaza Asistanto kreas datumbazan dosieron kiu enhavas informon pri la datumbazo." diff -Nru libreoffice-7.3.4/translations/source/eo/extensions/messages.po libreoffice-7.3.5/translations/source/eo/extensions/messages.po --- libreoffice-7.3.4/translations/source/eo/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-01 22:36+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Rekomputi formularon" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Havigi" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Poŝti" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "Retadreso" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Plurparta" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teksto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Normala (mallonga)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Normala (mallonga JJ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Normala (mallonga JJJJ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Normala (longa)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "TT/MM/JJ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/TT/JJ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "JJ/MM/TT" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "TT/MM/JJJJ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/TT/JJJJ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "JJJJ/MM/TT" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "JJ-MM-TT" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "JJJJ-MM-TT" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PTM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PTM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Neelektita" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Elektita" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nedifinita" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Ĉiuj rikordoj" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiva rikordo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuala paĝo" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Jes" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Patra formularo" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "malplena" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "patra" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "mem" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "supre" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Neniu" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Unuope" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Pluraj linioj" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Amplekso" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontale" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikale" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Apriora" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Akcepti" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Nuligi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Helpo" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "La elektita elemento" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozicio de la elektita elemento" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Unuopa linio" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Pluraj linioj" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Pluraj linioj kun formatado" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LA (Unikso)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "ĈR LA (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Neniu" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontale" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikale" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambaŭ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plata" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Maldekstre supre" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Maldekstre centre" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Maldekstre malsupre" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Dekstre supre" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Dekstre centre" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Dekstre malsupre" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Supre maldekstre" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Supre centre" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Supre dekstre" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Malsupre maldekstre" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Malsupre centre" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Malsupre dekstre" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centre" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Konservi" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Anstataŭigi" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Maletendi" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Konservi la proporcion" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Adapti al grando" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "De maldekstro dekstren" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De dekstro maldekstren" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Uzi superordinatajn objektagordojn" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Neniam" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kiam fokusita" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Ĉiam" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al alineo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kiel signo" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Al paĝo" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Al kadro" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al signo" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Al paĝo" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Al ĉelo" diff -Nru libreoffice-7.3.4/translations/source/eo/fpicker/messages.po libreoffice-7.3.5/translations/source/eo/fpicker/messages.po --- libreoffice-7.3.4/translations/source/eo/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-25 14:03+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -216,55 +216,55 @@ msgstr "Dato modifita" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Malfermi" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Spektigi" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Dosier_nomo:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Dosier-_tipo:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Nurlega" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Konservi kun pasvorto" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Aŭtomata dosiernoma sufikso" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Redakti _filtrilan agordaron" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Ĉifri per GPG-ŝlosilo" diff -Nru libreoffice-7.3.4/translations/source/eo/sc/messages.po libreoffice-7.3.5/translations/source/eo/sc/messages.po --- libreoffice-7.3.4/translations/source/eo/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -9228,7 +9228,7 @@ #: sc/inc/scfuncs.hrc:1970 msgctxt "SC_OPCODE_QUARTILE" msgid "Returns the quartile of a sample." -msgstr "Liveras la kvartilon de muestro." +msgstr "Liveras la kvarilon de muestro." #. 5ACij #: sc/inc/scfuncs.hrc:1971 @@ -25253,97 +25253,97 @@ msgstr "Vido" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Bildo" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Bildo" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Desegni" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Desegni" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Objekto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Aŭdvidaĵoj" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "Aŭdvideaĵo" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Presi" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Presi" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Formularo" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Formularo" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Sufikso" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Sufikso" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Iloj" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Iloj" @@ -25702,139 +25702,139 @@ msgstr "Bildo" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Aranĝi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Koloro" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Krado" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Lingvo" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Recenzo" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Komentoj" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Kompari" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Vido" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Desegni" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Redakti" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Aranĝi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Vido" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupo" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Tiparo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Ĝisrandigo" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Vido" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Enmeti" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Aŭdvidaĵoj" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Kadro" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Aranĝi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Krado" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Vido" diff -Nru libreoffice-7.3.4/translations/source/eo/sd/messages.po libreoffice-7.3.5/translations/source/eo/sd/messages.po --- libreoffice-7.3.4/translations/source/eo/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-28 20:49+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -4173,109 +4173,109 @@ msgstr "Tabelo" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Bildo" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Bildo" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Desegni" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Desegni" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objekto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Spektaĵo" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Spektaĵo" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Formularo" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Formularo" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Ĉefa" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Ĉefa" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Sufikso" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Sufikso" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Iloj" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Iloj" @@ -7062,109 +7062,109 @@ msgstr "Tabelo" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Bildo" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Bildo" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Desegni" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Desegni" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objekto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Aŭdvidaĵoj" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Aŭdvideaĵoj" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Formularo" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Formularo" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Ĉefa" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Ĉefa" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Sufikso" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Sufikso" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Iloj" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Iloj" diff -Nru libreoffice-7.3.4/translations/source/eo/sw/messages.po libreoffice-7.3.5/translations/source/eo/sw/messages.po --- libreoffice-7.3.4/translations/source/eo/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-07 11:38+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -10499,19 +10499,19 @@ msgstr "Movas malsupren je unu nivelo en la indeksa hierarkio la alinean stilon." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stilo" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiloj" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Kreas indekserojn el specifaj alineaj stiloj." @@ -13955,37 +13955,37 @@ msgstr "Ŝanĝi datumbazon" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Difini" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Datumbazo jam uzata" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Disponeblaj datumbazoj" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Foliumi..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Malfermas dosiermalferman dialogon por elekti datumbazan dosieron (*.odb). La elektita dosiero aldoniĝos al la listo Disponeblaj Datumbazoj." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Uzu la foliumbutonon por elekti datumbazan dosieron." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Listigas la datumbazojn aktuale uzatajn." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Listigas la datumbazojn registritajn en %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Ŝanĝi datumbazon" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Datumbazo aplikata en la dokumento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Ŝanĝu la datumajn fontojn por la aktuala dokumento." @@ -20073,109 +20073,109 @@ msgstr "Uzi la aktualan dokumenton" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Uzas la aktualan Verkilo-dokumenton kiel bazon por la porpoŝta kunfanda dokumento." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Krei novan dokumenton" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Kreas novan Verkilo-dokumenton uzotan por la porpoŝta kunfandado." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Komenci per ekzistanta dokumento" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Elektu ekzistantan Verkilo-dokumenton uzotan kiel la bazon por la porpoŝta kunfanda dokumento." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Komenci per ŝablono" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Elektu la ŝablonon per kiu krei la porpoŝtan kunfandan dokumenton." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Komenci per lastatempe konservita startodokumento" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Uzi ekzistantan porpoŝtan kunfandan dokumenton kiel la bazon por nova porpoŝta kunfanda dokumento." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Elektu la dokumenton." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Foliumi..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Trovu la Verkilo-dokumenton uzotan, kaj tiam klaku al Malfermi." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Foliumi..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Malfermas la dialogon por elekti ŝablonon." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datumfonto de la aktuala dokumento ne estas registrita. Bonvolu ŝanĝi la datumbazon." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Ŝanĝi datumbazon..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Elektu startodokumenton por la retpoŝta kunfandado" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Agordu la dokumenton uzotan kiel la bazon por la porpoŝta kunfanda dokumento." @@ -22318,49 +22318,49 @@ msgstr "Objekto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Agordaro" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ĉirkaŭfluo" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperligilo" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borderoj" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Areo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Travidebleco" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makroo" @@ -27056,7 +27056,7 @@ msgstr "Ĝisdatigi" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Vidigas statistikojn por la aktuala dosiero." diff -Nru libreoffice-7.3.4/translations/source/eo/vcl/messages.po libreoffice-7.3.5/translations/source/eo/vcl/messages.po --- libreoffice-7.3.4/translations/source/eo/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eo/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-14 00:19+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -2324,169 +2324,169 @@ msgstr "Horizontale centrigas la enhavon de la ĉelo." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Propra" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra paĝoj." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Paĝoj:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra paĝoj." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "de" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Kreas novan modelan dokumenton." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marĝeno:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra paĝoj." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "inter paĝoj" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distanco:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra paĝoj." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "al bordero de folio" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordo:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Maldekstre dekstren, tiam malsupren" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De supre malsupren, tiam dekstren" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Supre malsupren, tiam maldekstren" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Dekstre maldekstren, tiam malsupren" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra rememorigiloj." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Desegni borderon ĉirkaŭ ĉiu paĝo" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Elektu ĉi tiun bildsimbolon por foliumi tra paĝoj." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broŝuro" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Elekti por presi la dokumenton en broŝura formato." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Antaŭvidi ordodifinadon" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Ŝanĝu la aranĝon de paĝoj presotaj sur ĉiu papera folio. La antaŭvido vidigos kiel aspektos ĉiu paperfolio." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Pli" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Paĝa Aranĝo" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Ĝenerale" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Presas la aktualan dokumenton, elektaĵon, aŭ paĝojn agorditajn. Vi ankaŭ povas agordi la presilajn atributojn por la aktuala dokumento." diff -Nru libreoffice-7.3.4/translations/source/es/chart2/messages.po libreoffice-7.3.5/translations/source/es/chart2/messages.po --- libreoffice-7.3.4/translations/source/es/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548565962.000000\n" #. NCRDD @@ -109,7 +109,7 @@ #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" msgid "Chart Wizard" -msgstr "Asistente de gráficos" +msgstr "Asistente para gráficos" #. HCEG9 #: chart2/inc/strings.hrc:25 @@ -3005,19 +3005,19 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje Z. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Z. La previsualización responde a las configuraciones nuevas." #. AyMWn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168 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 "Fija la rotación del gráfico sobre el eje Y. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Y. La previsualización responde a las configuraciones nuevas." #. EGS4B #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186 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 "Fija la rotación del gráfico sobre el eje X. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje X. La previsualización responde a las configuraciones nuevas." #. RGQDC #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92 @@ -3245,7 +3245,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:186 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 "Especifica que el eje se sitúa en las primeras/últimas marcas de graduación. Esto hace que la representación visual de los puntos de datos comience/termine en el eje de valores." #. gSFeZ #: chart2/uiconfig/ui/tp_AxisPositions.ui:197 @@ -3257,7 +3257,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:206 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 "Especifica que el eje se sitúa entre las marcas de graduación. Esto hace que la representación visual de los puntos de datos comience/termine a una distancia del eje de valores." #. ExBDm #: chart2/uiconfig/ui/tp_AxisPositions.ui:221 @@ -3602,7 +3602,7 @@ msgstr "Ajuste el número de líneas para los gráficos de tipo Columna y Línea." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Seleccione un tipo de gráfico básico." @@ -4013,7 +4013,7 @@ #: 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 "Muestra todos los rangos de datos utilizados por las series de datos que están seleccionados en el cuadro de lista Series de Datos. Cada rango de datos muestra el nombre de la función y el origen del rango de direcciones." +msgstr "Muestra todos los intervalos de datos utilizados por la serie de datos que está seleccionada en el cuadro de lista Serie de datos. Cada intervalo de datos muestra el nombre de la función y la dirección del intervalo de origen." #. qRMfs #: chart2/uiconfig/ui/tp_DataSource.ui:312 diff -Nru libreoffice-7.3.4/translations/source/es/cui/messages.po libreoffice-7.3.5/translations/source/es/cui/messages.po --- libreoffice-7.3.4/translations/source/es/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -643,7 +643,7 @@ #: cui/inc/strings.hrc:114 msgctxt "RID_SVXSTR_BASICMACROS" msgid "BASIC Macros" -msgstr "Macros de BASIC" +msgstr "Macros BASIC" #. XKYHn #: cui/inc/strings.hrc:115 @@ -655,7 +655,7 @@ #: cui/inc/strings.hrc:116 msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS" msgid "Sidebar Decks" -msgstr "Secciones de la barra lateral" +msgstr "Páginas de la barra lateral" #. hFEBv #: cui/inc/strings.hrc:118 @@ -2738,7 +2738,7 @@ #: cui/inc/tipoftheday.hrc:151 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 "Con el Navegador puede seleccionar y desplazar hacia arriba o hacia abajo los títulos y el texto debajo del título, en el navegador y en el documento." +msgstr "Con el Navegador puede seleccionar y mover hacia arriba o hacia abajo los títulos y el texto debajo del título, en el Navegador y en el documento." #. 8qYrk #: cui/inc/tipoftheday.hrc:152 @@ -2799,7 +2799,7 @@ #: cui/inc/tipoftheday.hrc:161 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 "¿Quiere imprimir dos páginas verticales en una horizontal (reduciendo A4 a A5)? Archivo ▸ Imprimir y seleccione 2 en «Páginas por hoja»." +msgstr "¿Quiere imprimir dos páginas verticales en una horizontal (reduciendo A4 a 2 A5)? Archivo ▸ Imprimir y seleccione 2 en «Páginas por hoja»." #. GmBZk #: cui/inc/tipoftheday.hrc:162 @@ -2842,7 +2842,7 @@ #: cui/inc/tipoftheday.hrc:168 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 "¿Quiere borrar todos los <> de una vez y mantener el texto del interior? Editar ▸ Buscar y reemplazar: Buscar = [<>], Reemplazar = (vacío) y marcar en \"Expresiones regulares\" en Otras opciones." +msgstr "¿Quiere borrar todos los <> de una sola vez y mantener el texto del interior? Vaya a Editar ▸ Buscar y reemplazar: en Buscar escriba [<>], deje vacío el campo Reemplazar y marque «Expresiones regulares» en Otras opciones." #. e3dfT #. local help missing @@ -2951,7 +2951,7 @@ #: cui/inc/tipoftheday.hrc:185 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 "¿Quiere exportar las fórmulas a CSV? Archivo ▸ Guardar como ▸ Tipo:Texto CSV, marque \"Editar la configuración de los filtros\", y marque \"Guardar las fórmulas de las celdas\" en el siguiente diálogo." +msgstr "¿Quiere exportar las fórmulas a CSV? Vaya a Archivo ▸ Guardar como y elija el tipo «Texto CSV». Active «Editar configuración de filtros» y, en el diálogo siguiente, active «Guardar fórmulas de celdas»." #. XLN9z #: cui/inc/tipoftheday.hrc:186 @@ -2995,13 +2995,13 @@ #: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." -msgstr "¿Necesita incluir un elemento de la lista sin una viñeta o un número? Utilice \"Insertar entrada sin numerar\" en la barra de herramientas de viñetas y numeración." +msgstr "¿Necesita incluir un elemento de la lista sin una viñeta o un número? Utilice «Insertar entrada no numerada» en la barra de herramientas Numeración y viñetas." #. ZacQo #: cui/inc/tipoftheday.hrc:193 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." -msgstr "Puede rotar la orientación de las celdas de una tabla con Tabla ▸ Propiedades ▸ Flujo de texto ▸ Orientación del texto." +msgstr "Puede cambiar la orientación de las celdas de una tabla con Tabla ▸ Propiedades ▸ Flujo de texto ▸ Orientación del texto." #. Vi6L8 #: cui/inc/tipoftheday.hrc:194 @@ -3051,7 +3051,7 @@ #: cui/inc/tipoftheday.hrc:201 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 puede usar su cuenta de GMail para combinar los correos. Rellene los datos de Herramientas ▸ Opciones ▸ %PRODUCTNAME Writer ▸ Correos para combinar correspondencia." +msgstr "Con %PRODUCTNAME puede usar su cuenta de Gmail para combinar correspondencia. Rellene los datos de Herramientas ▸ Opciones ▸ %PRODUCTNAME Writer ▸ Correo para combinar correspondencia." #. 87ozj #. local help missing @@ -3070,7 +3070,7 @@ #: cui/inc/tipoftheday.hrc:204 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 estilos de párrafos de título en Writer con los atajos de teclado: %MOD1+1 aplica Título1, %MOD1+2 aplica Título2, etc." +msgstr "Aplique estilos de párrafos de título en Writer con atajos de teclado: %MOD1 + 1 aplica Título 1, %MOD1 + 2 aplica Título 2, etc." #. DA82R #: cui/inc/tipoftheday.hrc:205 @@ -3094,7 +3094,7 @@ #: cui/inc/tipoftheday.hrc:208 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 "¿Quiere ver pero no imprimir un objeto en Draw? Dibuje en una capa con el indicador \"Imprimible\" desactivado (clic derecho en la pestaña y \"Modificar capa\")" +msgstr "¿Quiere mostrar, pero no imprimir, un objeto de Draw? Colóquelo en una capa con la opción «Imprimible» desactivada (pulse con el botón secundario en la pestaña de la capa y elija «Modificar capa»)." #. CGQaY #: cui/inc/tipoftheday.hrc:209 @@ -3131,7 +3131,7 @@ #: cui/inc/tipoftheday.hrc:214 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 "¿Quiere transponer una tabla de Writer? Copiar y pegar en Calc, Transponer con copiar/pegado especial y después copiar/pegado especial ▸ texto formateado en Writer." +msgstr "¿Quiere trasponer una tabla de Writer? Cópiela y péguela en Calc, efectúe la trasposición con Pegado especial y péguela nuevamente en Writer mediante Pegado especial ▸ Texto formateado." #. DKBCg #: cui/inc/tipoftheday.hrc:215 @@ -3242,7 +3242,7 @@ #: cui/inc/tipoftheday.hrc:232 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 inserte saltos manuales para separar dos párrafos. En su lugar, cambie Sangrías y espaciado ▸ Espaciado ▸ Bajo el párrafo en las propiedades de estilo/párrafo." +msgstr "No inserte saltos manuales para separar dos párrafos. En su lugar, cambie Sangría y espaciado ▸ Espaciado ▸ Bajo el párrafo en las propiedades de estilo/párrafo." #. rxTGc #: cui/inc/tipoftheday.hrc:233 @@ -4745,13 +4745,13 @@ #: cui/uiconfig/ui/additionsdialog.ui:212 msgctxt "additionsdialog|buttonGear" msgid "Gear Menu" -msgstr "" +msgstr "Menu personalizar" #. CbCbR #: 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 "Contiene órdenes para modificar la configuración de la lista de extras, como el tipo de clasificación o el tipo de vista." #. fUE2f #: cui/uiconfig/ui/additionsfragment.ui:16 @@ -4763,7 +4763,7 @@ #: cui/uiconfig/ui/additionsfragment.ui:21 msgctxt "additionsDialog|buttonShowMore" msgid "ButtonShowMore" -msgstr "" +msgstr "BotónMostrarMás" #. i9AoG #: cui/uiconfig/ui/additionsfragment.ui:22 @@ -4841,7 +4841,7 @@ #: cui/uiconfig/ui/agingdialog.ui:204 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 "Todos los píxeles se establecen en sus valores de gris y, a continuación, los canales de color verde y azul se reducen en la cantidad que especifique. El canal de color rojo no cambia." #. nxZTH #: cui/uiconfig/ui/applyautofmtpage.ui:55 @@ -5135,7 +5135,7 @@ #: cui/uiconfig/ui/areatabpage.ui:40 msgctxt "areatabpage|extended_tip|tablelb" msgid "Set the fill options for the selected drawing object or document element." -msgstr "" +msgstr "Configure las opciones de relleno para el objeto de dibujo o elemento de documento seleccionado." #. 2kC9i #: cui/uiconfig/ui/areatabpage.ui:52 @@ -5213,7 +5213,7 @@ #: cui/uiconfig/ui/areatabpage.ui:202 msgctxt "areatabpage|extended_tip|AreaTabPage" msgid "Set the fill options for the selected drawing object or document element." -msgstr "" +msgstr "Configurar las opciones de relleno para el objeto de dibujo o elemento de documento seleccionado." #. GSXcM #: cui/uiconfig/ui/asiantypography.ui:21 @@ -5675,7 +5675,7 @@ #: cui/uiconfig/ui/borderpage.ui:647 msgctxt "borderpage|mergewithnext" msgid "Merge indent, border and shadow style of current paragraph with next paragraph, if they are the same." -msgstr "" +msgstr "Combinar el estilo de sangría, borde y sombra del párrafo actual con el siguiente, si son iguales." #. xkm5N #: cui/uiconfig/ui/borderpage.ui:658 @@ -5765,7 +5765,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:280 msgctxt "bulletandposition|extended_tip|numfmtlb" msgid "Select the level(s) that you want to modify. To apply the options to all the levels, select “1-10”." -msgstr "" +msgstr "Seleccione los niveles que desea modificar. Para aplicar las opciones a todos los niveles, seleccione “1-10”." #. mp5Si #: cui/uiconfig/ui/bulletandposition.ui:293 @@ -5801,7 +5801,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:346 msgctxt "bulletandposition|extended_tip|bullet" msgid "Select the character for the unordered list." -msgstr "" +msgstr "Seleccione el carácter para la lista desordenada (viñetas)." #. oJgFH #: cui/uiconfig/ui/bulletandposition.ui:357 @@ -5813,7 +5813,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:369 msgctxt "bulletandposition|extended_tip|bitmap" msgid "Select a graphic bullet." -msgstr "" +msgstr "Seleccione una viñeta gráfica." #. Cv7BZ #: cui/uiconfig/ui/bulletandposition.ui:382 @@ -5825,7 +5825,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:405 msgctxt "bulletandposition|extended_tip|color" msgid "Select the color of the list characters for ordered and unordered lists." -msgstr "" +msgstr "Seleccione el color de los caracteres de la lista para listas ordenadas y desordenadas." #. jxFmf #: cui/uiconfig/ui/bulletandposition.ui:430 @@ -5849,13 +5849,13 @@ #: cui/uiconfig/ui/bulletandposition.ui:494 msgctxt "bulletandposition|extended_tip|suffix" msgid "Enter the text to display after the numbering." -msgstr "" +msgstr "Introduzca el texto que se mostrará después de la numeración." #. u9Bhq #: cui/uiconfig/ui/bulletandposition.ui:511 msgctxt "bulletandposition|extended_tip|prefix" msgid "Enter the text to display before the numbering." -msgstr "" +msgstr "Introduzca el texto que se mostrará antes de la numeración." #. GAS5v #: cui/uiconfig/ui/bulletandposition.ui:526 @@ -5879,25 +5879,25 @@ #: cui/uiconfig/ui/bulletandposition.ui:604 msgctxt "bulletandposition|extended_tip|widthmf" msgid " Enter the width of the graphic bullet character. " -msgstr "" +msgstr " Introduzca la anchura del carácter del bolo gráfico. " #. twiWp #: cui/uiconfig/ui/bulletandposition.ui:623 msgctxt "bulletandposition|extended_tip|heightmf" msgid " Enter the height of the graphic bullet character. " -msgstr "" +msgstr " Introduzca la altura del carácter del bolo gráfico. " #. vqDku #: cui/uiconfig/ui/bulletandposition.ui:657 msgctxt "bulletandposition|relsize" msgid "100" -msgstr "" +msgstr "100" #. QArnY #: cui/uiconfig/ui/bulletandposition.ui:663 msgctxt "bulletandposition|extended_tip|relsize" msgid "For character unordered and ordered lists, set the relative size of the list character. The relative size applies to the Before and After text as well." -msgstr "" +msgstr "Para listas ordenadas y desordenadas de caracteres, establezca el tamaño relativo del carácter de la lista. El tamaño relativo también se aplica al texto Antes y Después." #. pGXFi #: cui/uiconfig/ui/bulletandposition.ui:676 @@ -5915,7 +5915,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:702 msgctxt "bulletandposition|extended_tip|keepratio" msgid "Check this box to preserve the height to width ratio of the graphic bullet." -msgstr "" +msgstr "Marque esta casilla para conservar la proporción entre la altura y el ancho de la viñeta gráfica." #. EhFU7 #: cui/uiconfig/ui/bulletandposition.ui:734 @@ -5939,19 +5939,19 @@ #: cui/uiconfig/ui/bulletandposition.ui:795 msgctxt "bulletandposition|indentmf" msgid "0,00" -msgstr "" +msgstr "0,00" #. nCTvW #: cui/uiconfig/ui/bulletandposition.ui:801 msgctxt "bulletandposition|extended_tip|indentmf" msgid "Enter the distance from the left edge of the containing object to the start of all lines in the list." -msgstr "" +msgstr "Introduzca la distancia desde el borde izquierdo del objeto contenedor hasta el inicio de todas las líneas de la lista." #. eeDkR #: cui/uiconfig/ui/bulletandposition.ui:815 msgctxt "bulletandposition|numberingwidthmf" msgid "0,00" -msgstr "" +msgstr "0,00" #. EEFpF #: cui/uiconfig/ui/bulletandposition.ui:821 @@ -5969,25 +5969,25 @@ #: cui/uiconfig/ui/bulletandposition.ui:840 msgctxt "bulletandposition|extended_tip|relative" msgid "Relative to the upper list level. The entered value is added to that of this field in the level before. If “Indent: 20mm” on list level 1 and “Indent: 10mm Relative” on list level 2 will result in an effective indent of 30mm for level 2." -msgstr "" +msgstr "Relativo al nivel superior de la lista. El valor introducido se suma al de este campo en el nivel anterior. Si \"Sangría: 20 mm\" en el nivel 1 de la lista y \"Sangría: 10 mm relativa\" en el nivel 2 de la lista, se obtendrá una sangría efectiva de 30 mm para el nivel 2." #. zC5eX #: cui/uiconfig/ui/bulletandposition.ui:864 msgctxt "bulletandposition|extended_tip|center" msgid "Align bullet on the center of the list element." -msgstr "" +msgstr "Alinear la viñeta en el centro del elemento de la lista." #. sdBx9 #: cui/uiconfig/ui/bulletandposition.ui:882 msgctxt "bulletandposition|extended_tip|left" msgid "Align bullet on the left of the list element." -msgstr "" +msgstr "Alinear la viñeta a la izquierda del elemento de la lista." #. TFMgS #: cui/uiconfig/ui/bulletandposition.ui:900 msgctxt "bulletandposition|extended_tip|right" msgid "Align bullet on the right of the list element." -msgstr "" +msgstr "Alinear la viñeta a la derecha del elemento de la lista." #. FhAfv #: cui/uiconfig/ui/bulletandposition.ui:919 @@ -6257,7 +6257,7 @@ #: cui/uiconfig/ui/cellalignment.ui:83 msgctxt "cellalignment|extended_tip|spinDegrees" msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)." -msgstr "" +msgstr "Introduzca el ángulo de giro de 0 a 360 para el texto en las celdas seleccionadas." #. D2Ebb #: cui/uiconfig/ui/cellalignment.ui:100 @@ -6515,7 +6515,7 @@ #: cui/uiconfig/ui/certdialog.ui:47 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 "Abre un cuadro de diálogo de selección de archivos para agregar un nuevo directorio de certificados de servicios de seguridad de red a la lista." #. GFGjC #: cui/uiconfig/ui/certdialog.ui:132 @@ -6557,7 +6557,7 @@ #: cui/uiconfig/ui/certdialog.ui:275 msgctxt "certdialog|extended_tip|CertDialog" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Seleccione o agregue el directorio de certificados de servicios de seguridad de red correcto para usar para las firmas digitales." #. xXVpD #: cui/uiconfig/ui/charnamepage.ui:234 @@ -7139,7 +7139,7 @@ #: cui/uiconfig/ui/colorpage.ui:107 msgctxt "colorpage|btnMoreColors" msgid "Add color palettes via extension" -msgstr "" +msgstr "Agregar paletas de colores a través de una extensión" #. fKSac #: cui/uiconfig/ui/colorpage.ui:136 @@ -7349,7 +7349,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:199 msgctxt "extended tip | colorField" msgid "Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog." -msgstr "" +msgstr "Haga clic en el área de color grande a la izquierda para seleccionar un nuevo color. Con esta área de selección, puede modificar dos componentes del color tal como se representan en los modelos de color RGB o HSB. Tenga en cuenta que estos son los dos componentes no seleccionados con los botones de radio en el lado derecho del cuadro de diálogo." #. N8gjc #: cui/uiconfig/ui/colorpickerdialog.ui:216 @@ -7367,7 +7367,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:303 msgctxt "extended tip | redRadiobutton" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente rojo modificable en el control deslizante de color vertical y los componentes verde y azul en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." #. TkTSB #: cui/uiconfig/ui/colorpickerdialog.ui:314 @@ -7379,7 +7379,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:323 msgctxt "extended tip | greenRadiobutton" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente verde modificable en el control deslizante de color vertical y los componentes rojo y azul en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." #. 5FGfv #: cui/uiconfig/ui/colorpickerdialog.ui:334 @@ -7391,7 +7391,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:343 msgctxt "extended tip | blueRadiobutton" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente azul modificable en el control deslizante de color vertical y los componentes verde y rojo en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." #. c5MTh #: cui/uiconfig/ui/colorpickerdialog.ui:362 @@ -7439,7 +7439,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:490 msgctxt "extended tip | hueRadiobutton" msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359." -msgstr "" +msgstr "Establece el componente Matiz modificable en el control deslizante de color vertical y los componentes Saturación y Brillo en el campo selector de color bidimensional. Los valores se expresan en grados de 0 a 359." #. C4GE3 #: cui/uiconfig/ui/colorpickerdialog.ui:501 @@ -7451,7 +7451,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:510 msgctxt "extended tip | satRadiobutton" msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "" +msgstr "Establece el componente Saturación modificable en el control deslizante de color vertical y los componentes Matiz y Brillo en el campo selector de color bidimensional. Los valores se expresan en porcentaje (0 a 100)." #. NXs9w #: cui/uiconfig/ui/colorpickerdialog.ui:521 @@ -7463,13 +7463,13 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:530 msgctxt "extended tip | brightRadiobutton" msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "" +msgstr "Establece el componente Brillo modificable en el control deslizante de color vertical y los componentes Matiz y Saturación en el campo selector de color bidimensional. Los valores se expresan en porcentaje (0 a 100)." #. BCvUX #: cui/uiconfig/ui/colorpickerdialog.ui:549 msgctxt "extended tip | hueSpinbutton" msgid "Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359." -msgstr "" +msgstr "Establezca el Matiz directamente en el modelo de color HSB. Los valores se expresan en grados de 0 a 359." #. TcDh8 #: cui/uiconfig/ui/colorpickerdialog.ui:568 @@ -7901,7 +7901,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 "Introduzca el URL del archivo que desea abrir al pulsar en la zona activa seleccionada." #. FLKr9 #: cui/uiconfig/ui/cuiimapdlg.ui:143 @@ -7937,7 +7937,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 "Introduzca el texto que desea mostrar cuando el ratón se posa sobre la zona activa en un navegador." #. bsgYj #: cui/uiconfig/ui/cuiimapdlg.ui:293 @@ -8303,13 +8303,13 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:185 msgctxt "replace" msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc." -msgstr "" +msgstr "Este campo de entrada solo está disponible si está editando un diccionario de excepción o un diccionario personalizado dependiente del idioma. En los diccionarios de excepción, el campo muestra la sugerencia alternativa para la palabra actual en el cuadro de texto \"Palabra\". En los diccionarios personalizados dependientes del idioma, el campo contiene una palabra raíz conocida, como modelo de fijación de la nueva palabra o su uso en palabras compuestas. Por ejemplo, en un diccionario personalizado alemán, la nueva palabra \"Litschi\" (lichi) con la palabra modelo \"Gummi\" (goma) resultará en el reconocimiento de \"Litschis\" (lichis), \"Litschibaum\" (árbol de lichi), \"Litschifrucht\" (fruta de lichi) etc." #. 5EwBs #: cui/uiconfig/ui/editdictionarydialog.ui:203 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 "Puede escribir una palabra nueva para incluirla en el diccionario. En la lista a continuación, verá el contenido del diccionario personalizado actual." #. WWwmQ #: cui/uiconfig/ui/editdictionarydialog.ui:216 @@ -8333,7 +8333,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:364 msgctxt "newreplace" msgid "Adds the word in the Word text field to your current custom dictionary. The word in the Suggestion field is also added when working with exception dictionaries." -msgstr "" +msgstr "Agrega la palabra del campo de texto de Palabra a su diccionario personalizado actual. La palabra en el campo Sugerencia también se agrega cuando se trabaja con diccionarios de excepción." #. K2Sst #: cui/uiconfig/ui/editdictionarydialog.ui:376 @@ -8387,7 +8387,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:203 msgctxt "up" msgid "Increases the priority of the module selected in the list box by one level." -msgstr "" +msgstr "Aumenta la prioridad del módulo seleccionado en el cuadro de lista en un nivel." #. aGo9M #: cui/uiconfig/ui/editmodulesdialog.ui:215 @@ -8399,7 +8399,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:222 msgctxt "down" msgid "Decreases the priority of the module selected in the list box by one level." -msgstr "" +msgstr "Disminuye la prioridad del módulo seleccionado en el cuadro de lista en un nivel." #. Vr5kM #: cui/uiconfig/ui/editmodulesdialog.ui:234 @@ -8417,7 +8417,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:307 msgctxt "lingudicts" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module." -msgstr "" +msgstr "Especifica el idioma y los submódulos de ortografía, separación de sílabas y diccionario de sinónimos disponibles para el módulo seleccionado." #. ZF8AG #: cui/uiconfig/ui/editmodulesdialog.ui:330 @@ -9071,13 +9071,13 @@ #: cui/uiconfig/ui/fileextcheckdialog.ui:36 msgctxt "FileExtCheck|Checkbox_Tooltip" msgid "Enable the dialog again at Tools > Options > General" -msgstr "" +msgstr "Vuelva a activar el diálogo en Herramientas > Opciones > General" #. mGEv5 #: cui/uiconfig/ui/fileextcheckdialog.ui:64 msgctxt "FileExtCheckDialog|Ok_Button" msgid "_OK" -msgstr "" +msgstr "_Aceptar" #. BvWSS #: cui/uiconfig/ui/fmsearchdialog.ui:8 @@ -9371,7 +9371,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:873 msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog" msgid "Searches database tables and forms." -msgstr "" +msgstr "Busca tablas y formularios en la base de datos." #. zbAyQ #: cui/uiconfig/ui/fontfeaturesdialog.ui:10 @@ -9720,13 +9720,13 @@ #: cui/uiconfig/ui/gradientpage.ui:339 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 "Introduzca el desplazamiento horizontal para el gradiente, donde 0% corresponde a la ubicación horizontal actual del color del punto final en el gradiente. El color del punto final es el color que está seleccionado en el cuadro A Color." #. AP27S #: cui/uiconfig/ui/gradientpage.ui:358 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 "Introduzca el desplazamiento vertical para el gradiente, donde 0% corresponde a la ubicación vertical actual del color del punto final en el gradiente. El color del punto final es el color que está seleccionado en el cuadro A Color." #. ZZ7yo #: cui/uiconfig/ui/gradientpage.ui:393 @@ -9738,7 +9738,7 @@ #: cui/uiconfig/ui/gradientpage.ui:427 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 "Introduzca la cantidad por la que desea ajustar el área del color del punto final en el gradiente. El color del punto final es el color que está seleccionado en el cuadro A Color." #. qCvgc #: cui/uiconfig/ui/gradientpage.ui:444 @@ -9756,7 +9756,7 @@ #: cui/uiconfig/ui/gradientpage.ui:477 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 "Introduzca la intensidad del color en el cuadro de color, donde 0 % corresponde al negro y 100 % al color seleccionado." #. C6iys #: cui/uiconfig/ui/gradientpage.ui:499 @@ -9834,7 +9834,7 @@ #: cui/uiconfig/ui/gradientpage.ui:750 msgctxt "gradientpage|extended_tip|GradientPage" msgid "Select a gradient, modify the properties of a gradient, or save a new gradient." -msgstr "" +msgstr "Seleccione un degradado, modifique las propiedades de un degradado o guarde un degradado nuevo" #. zycno #: cui/uiconfig/ui/graphictestdlg.ui:7 @@ -10530,7 +10530,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:65 msgctxt "hyperlinkdocpage|extended_tip|fileopen" msgid "Opens the Open dialog, where you can select a file." -msgstr "" +msgstr "Abre el cuadro de diálogo Abrir, donde puede seleccionar un archivo." #. 9f5SN #: cui/uiconfig/ui/hyperlinkdocpage.ui:89 @@ -10638,7 +10638,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:375 msgctxt "hyperlinkdocpage|extended_tip|script" msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes." -msgstr "" +msgstr "Abre el cuadro de diálogo Asignar macro, en el que se pueden asignar códigos de programa propios a sucesos como «pasar el ratón por encima de un objeto» o «activar un hiperenlace»." #. TXrCH #: cui/uiconfig/ui/hyperlinkdocpage.ui:399 @@ -10656,7 +10656,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:435 msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage" msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog." -msgstr "" +msgstr "Los hiperenlaces a cualquier documento o destinos en los documentos pueden editarse utilizando la pestaña Documento del cuadro de diálogo Hiperenlace." #. BpE9F #: cui/uiconfig/ui/hyperlinkinternetpage.ui:38 @@ -10764,7 +10764,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:312 msgctxt "hyperlinkinternetpage|name_label" msgid "N_ame:" -msgstr "" +msgstr "N_ombre" #. ZdkMh #: cui/uiconfig/ui/hyperlinkinternetpage.ui:330 @@ -10794,7 +10794,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:385 msgctxt "hyperlinkinternetpage|extended_tip|script" msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes." -msgstr "" +msgstr "Abre el cuadro de diálogo Asignar macro, en el que se pueden asignar códigos de programa propios a sucesos como «pasar el ratón por encima de un objeto» o «activar un hiperenlace»." #. C5Hqs #: cui/uiconfig/ui/hyperlinkinternetpage.ui:409 @@ -10812,7 +10812,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:445 msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage" msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses." -msgstr "" +msgstr "Utilice la página Internet del cuadro de diálogo Hiperenlace para editar los hiperenlaces con direcciones WWW o FTP." #. GKAsu #: cui/uiconfig/ui/hyperlinkmailpage.ui:40 @@ -10842,13 +10842,13 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:93 msgctxt "hyperlinkmailpage|extended_tip|subject" msgid "Specifies the subject that is inserted in the subject line of the new message document." -msgstr "" +msgstr "Especifica el asunto que se inserta en la línea de asunto del nuevo documento de mensaje." #. 8gCor #: cui/uiconfig/ui/hyperlinkmailpage.ui:117 msgctxt "hyperlinkmailpage|extended_tip|receiver" msgid "Assigns the specified email address to the hyperlink." -msgstr "" +msgstr "Asigna la dirección de correo electrónico especificada al hiperenlace." #. eCvXD #: cui/uiconfig/ui/hyperlinkmailpage.ui:144 @@ -10908,7 +10908,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:300 msgctxt "hyperlinkmailpage|extended_tip|script" msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes." -msgstr "" +msgstr "Abre el cuadro de diálogo Asignar macro, en el que se pueden asignar códigos de programa propios a sucesos como «pasar el ratón por encima de un objeto» o «activar un hiperenlace»." #. CwHdi #: cui/uiconfig/ui/hyperlinkmailpage.ui:324 @@ -10926,7 +10926,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:360 msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage" msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses." -msgstr "" +msgstr "En la página Correo, en el cuadro de diálogo Hiperenlace, puede editar los hiperenlaces de las direcciones de correo electrónico." #. FiqBU #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18 @@ -11082,7 +11082,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:384 msgctxt "hyperlinknewdocpage|extended_tip|script" msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes." -msgstr "" +msgstr "Abre el cuadro de diálogo Asignar macro, en el que se pueden asignar códigos de programa propios a sucesos como «pasar el ratón por encima de un objeto» o «activar un hiperenlace»." #. rXaNm #: cui/uiconfig/ui/hyperlinknewdocpage.ui:408 @@ -11100,7 +11100,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:444 msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage" msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously." -msgstr "" +msgstr "Utilice la pestaña Nuevo documento del cuadro de diálogo Hiperenlace para configurar un hiperenlace a un nuevo documento y crear el nuevo documento simultáneamente." #. XkDqc #: cui/uiconfig/ui/hyphenate.ui:18 @@ -11266,13 +11266,13 @@ #: cui/uiconfig/ui/imagetabpage.ui:144 msgctxt "imagetabpage|imagestyle" msgid "Tiled" -msgstr "" +msgstr "En mosaico" #. Nbj26 #: cui/uiconfig/ui/imagetabpage.ui:145 msgctxt "imagetabpage|imagestyle" msgid "Stretched" -msgstr "" +msgstr "Expandido" #. Dd2Bq #: cui/uiconfig/ui/imagetabpage.ui:171 @@ -11326,19 +11326,19 @@ #: cui/uiconfig/ui/imagetabpage.ui:309 msgctxt "imagetabpage|positionlb" msgid "Center Left" -msgstr "" +msgstr "Centro Izquierda" #. aZCeF #: cui/uiconfig/ui/imagetabpage.ui:310 msgctxt "imagetabpage|positionlb" msgid "Center" -msgstr "" +msgstr "Centro" #. bifby #: cui/uiconfig/ui/imagetabpage.ui:311 msgctxt "imagetabpage|positionlb" msgid "Center Right" -msgstr "" +msgstr "Centro derecha" #. 2Ds63 #: cui/uiconfig/ui/imagetabpage.ui:312 @@ -11362,25 +11362,25 @@ #: cui/uiconfig/ui/imagetabpage.ui:340 msgctxt "imagetabpage|label9" msgid "Tiling Position:" -msgstr "" +msgstr "Posición de mosaico:" #. Xrp73 #: cui/uiconfig/ui/imagetabpage.ui:359 msgctxt "imagetabpage|label10" msgid "X-Offset:" -msgstr "" +msgstr "Desplazamiento X:" #. YGBMn #: cui/uiconfig/ui/imagetabpage.ui:398 msgctxt "imagetabpage|label11" msgid "Y-Offset:" -msgstr "" +msgstr "Desplazamiento Y:" #. vprmD #: cui/uiconfig/ui/imagetabpage.ui:444 msgctxt "imagetabpage|label15" msgid "Tiling Offset:" -msgstr "" +msgstr "Desplazamiento de mosaico" #. QEPUJ #: cui/uiconfig/ui/imagetabpage.ui:467 @@ -11416,7 +11416,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:592 msgctxt "imagetabpage|extended_tip|ImageTabPage" msgid "Select a image that you want to use as a fill image, or add your own image/pattern." -msgstr "" +msgstr "Seleccione una imagen que desee usar como imagen de relleno o agregue su propia imagen/patrón." #. zCiFk #: cui/uiconfig/ui/insertfloatingframe.ui:18 @@ -12504,7 +12504,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:734 msgctxt "menuassignpage|defaultsbtn" msgid "_Defaults" -msgstr "_Valores predet." +msgstr "_Valores predets." #. taFyJ #: cui/uiconfig/ui/menuassignpage.ui:745 @@ -12522,7 +12522,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:789 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 "Pulse en el botón de la flecha derecha para seleccionar una función en el cuadro de visualización de la izquierda y copiarla en el cuadro de visualización de la derecha. Esto añadirá la función al menú seleccionado." #. iree8 #: cui/uiconfig/ui/menuassignpage.ui:815 @@ -12534,7 +12534,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:823 msgctxt "menuassignpage|extended_tip|remove" msgid "Click on the left arrow button to remove the selected command from the current menu." -msgstr "" +msgstr "Pulse el botón de flecha izquierda para quitar la orden seleccionada del menú actual." #. t7BYP #: cui/uiconfig/ui/menuassignpage.ui:856 @@ -12546,7 +12546,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:861 msgctxt "menuassignpage|extended_tip|up" msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands." -msgstr "" +msgstr "Pulse en las flechas hacia arriba o hacia abajo de la derecha para mover la orden seleccionada hacia arriba o hacia abajo en la lista de órdenes de menú mostradas." #. S6K2N #: cui/uiconfig/ui/menuassignpage.ui:875 @@ -12558,7 +12558,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:880 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 "Pulse en las flechas hacia arriba o hacia abajo de la derecha para mover la orden seleccionada hacia arriba o hacia abajo en la lista de órdenes de menú mostradas." #. fto8m #: cui/uiconfig/ui/menuassignpage.ui:900 @@ -12576,7 +12576,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:926 msgctxt "menuassignpage|functionlabel" msgid "Assi_gned Commands" -msgstr "Ó_rdenes asignadas" +msgstr "Órdenes asi_gnadas" #. AZQ8V #: cui/uiconfig/ui/menuassignpage.ui:939 @@ -12648,7 +12648,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:288 msgctxt "mosaicdialog|extended_tip|MosaicDialog" msgid "Joins small groups of pixels into rectangular areas of the same color." -msgstr "" +msgstr "Une pequeños grupos de píxeles en áreas rectangulares del mismo color." #. NcNCG #: cui/uiconfig/ui/movemenu.ui:26 @@ -12720,7 +12720,7 @@ #: cui/uiconfig/ui/multipathdialog.ui:132 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 "Abre el cuadro de diálogo Seleccionar ruta para seleccionar otra carpeta o el cuadro de diálogo Abrir para seleccionar otro archivo." #. e3JxQ #: cui/uiconfig/ui/multipathdialog.ui:151 @@ -12738,7 +12738,7 @@ #: cui/uiconfig/ui/multipathdialog.ui:217 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 "Contiene una lista de las rutas que ya se han añadido. Indique la ruta predeterminada para los archivos nuevos." #. AsnM3 #: cui/uiconfig/ui/multipathdialog.ui:240 @@ -12930,7 +12930,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:354 msgctxt "numberingformatpage|extended_tip|negnumred" msgid "Changes the font color of negative numbers to red." -msgstr "" +msgstr "Cambia el color de los números negativos a rojo." #. 9DhkC #: cui/uiconfig/ui/numberingformatpage.ui:372 @@ -12990,7 +12990,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:577 msgctxt "numberingformatpage|extended_tip|formatlb" msgid "Select how you want the contents of the selected field to be displayed." -msgstr "" +msgstr "Seleccione cómo desea que se muestre el contenido del campo seleccionado." #. Wxkzd #: cui/uiconfig/ui/numberingformatpage.ui:594 @@ -13002,7 +13002,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:630 msgctxt "numberingformatpage|extended_tip|languagelb" msgid "Specifies the language setting for the selected field." -msgstr "" +msgstr "Especifica la configuración de idioma para el campo seleccionado." #. hx9FX #: cui/uiconfig/ui/numberingformatpage.ui:641 @@ -13362,7 +13362,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:206 msgctxt "numberingpositionpage|extended_tip|indentatmf" msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line." -msgstr "Ingrese la distancia desde el margen izquierdo de la página desde el cual inicia todas la líneas de un párrafo numerado a partir de la primera línea." +msgstr "Introduzca la distancia desde el margen izquierdo de la página hasta el comienzo de todos los renglones del párrafo numerado que siguen al primero." #. FW9wv #: cui/uiconfig/ui/numberingpositionpage.ui:219 @@ -13660,7 +13660,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:188 msgctxt "extended_tip|systempagepreviewcolor" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "Aplica la configuración de contraste elevado del sistema operativo en la vista previa de las páginas." +msgstr "Aplica la configuración de contraste alto del sistema operativo en la previsualización de las páginas." #. hGpaw #: cui/uiconfig/ui/optaccessibilitypage.ui:204 @@ -14408,7 +14408,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:349 msgctxt "extended_tip|OptFilterPage" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Especifica la configuración para importar y exportar Microsoft Office y otros documentos." #. ttAk5 #: cui/uiconfig/ui/optfltrpage.ui:27 @@ -14684,13 +14684,13 @@ #: cui/uiconfig/ui/optgeneralpage.ui:53 msgctxt "optgeneralpage|popupnohelp" msgid "Show \"No offline help installed\" popup" -msgstr "Mostrar alerta si la ayuda local no está instalada" +msgstr "Alertar si la ayuda local no está instalada" #. YUaEz #: cui/uiconfig/ui/optgeneralpage.ui:66 msgctxt "optgeneralpage|TipOfTheDayCheckbox" msgid "Show \"Tip of the Day\" dialog on start-up" -msgstr "Mostrar el «consejo del día» al iniciar" +msgstr "Mostrar el consejo del día al iniciar" #. BR6gf #: cui/uiconfig/ui/optgeneralpage.ui:84 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automático" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contraste alto" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clásico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Brisa" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Especifica el estilo de iconos de las barras de herramientas y los cuadros de diálogo." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Tema:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Añadir más temas de iconos mediante extensiones" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estilo de iconos" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Necesita un reinicio" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utilizar aceleración por hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accede directamente a las funciones de hardware del adaptador de gráficos para mejorar la visualización en pantalla." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Utilizar anti_dentado" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Cuando el hardware lo admita, se puede activar o desactivar el antidentado de gráficos. Esta configuración mejora la apariencia de la mayoría de los elementos y reduce el ruido visual." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Representar todo el programa con Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forzar representación por software de Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Necesita un reinicio. Activar esta opción impide el uso de controladores gráficos." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia está activado actualmente." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia está desactivado actualmente." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Salida gráfica" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "P_revisualizar tipos de letra" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Muestra los nombres de los tipos de letra que se pueden seleccionar en el tipo de letra correspondiente, por ejemplo, en el cuadro desplegable Tipo de letra de la barra Formato." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Sua_vizar bordes de letras en pantalla" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Seleccione esta opción para suavizar el aspecto en pantalla del texto." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_desde:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Especifique el tamaño de tipo de letra más pequeño al que aplicar antidentado." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas de tipos de letra" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Ejecutar pruebas gráficas" @@ -18748,7 +18724,7 @@ #: cui/uiconfig/ui/querydeletebitmapdialog.ui:7 msgctxt "querydeletebitmapdialog|AskDelBitmapDialog" msgid "Delete Bitmap?" -msgstr "¿Eliminar el mapa de bits?" +msgstr "¿Quiere eliminar el mapa de bits?" #. 9EZrV #: cui/uiconfig/ui/querydeletebitmapdialog.ui:14 @@ -18904,7 +18880,7 @@ #: cui/uiconfig/ui/querysavelistdialog.ui:7 msgctxt "querysavelistdialog|AskSaveList" msgid "Save List?" -msgstr "¿Guardar la lista?" +msgstr "¿Quiere guardar la lista?" #. Jxvdx #: cui/uiconfig/ui/querysavelistdialog.ui:14 @@ -19360,7 +19336,7 @@ #: cui/uiconfig/ui/selectpathdialog.ui:196 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 "" +msgstr "Contiene una lista de las rutas que ya se han añadido. Indique la ruta predeterminada para los archivos nuevos." #. oADTt #: cui/uiconfig/ui/selectpathdialog.ui:213 @@ -19966,7 +19942,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:109 msgctxt "specialcharacters|subsetft" msgid "Subset:" -msgstr "Subconjunto:" +msgstr "Bloque de caracteres:" #. mPCRR #: cui/uiconfig/ui/specialcharacters.ui:123 @@ -20686,7 +20662,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:189 msgctxt "textanimtabpage|extended_tip|BTN_DOWN" msgid "Scrolls text from top to bottom." -msgstr "Desplaza el texto de arriba a abajo." +msgstr "Desplaza el texto de arriba abajo." #. C8qts #: cui/uiconfig/ui/textanimtabpage.ui:233 @@ -20866,7 +20842,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:181 msgctxt "textattrtabpage|extended_tip|TSB_WORDWRAP_TEXT" msgid "Wraps the text that you add after double-clicking a custom shape to fit inside the shape." -msgstr "Ajusta el texto que desea agregar después de hacer doble clic en una forma personalizada para que quepa dentro de la forma." +msgstr "Ajusta el texto que se añada después de pulsar dos veces en una forma personalizada de modo que quepa dentro de la forma." #. T4kEz #: cui/uiconfig/ui/textattrtabpage.ui:192 @@ -21358,7 +21334,7 @@ #: cui/uiconfig/ui/tipofthedaydialog.ui:29 msgctxt "TipOfTheDay|Checkbox_Tooltip" msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day" -msgstr "" +msgstr "Vuelva a habilitar el diálogo en Herramientas ▸ Opciones ▸ General o en Ayuda ▸ Mostrar el consejo del día" #. GALqP #: cui/uiconfig/ui/tipofthedaydialog.ui:43 diff -Nru libreoffice-7.3.4/translations/source/es/dbaccess/messages.po libreoffice-7.3.5/translations/source/es/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/es/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562301625.000000\n" #. BiN6g @@ -2047,7 +2047,7 @@ #: dbaccess/inc/strings.hrc:359 msgctxt "STR_DBWIZARDTITLE" msgid "Database Wizard" -msgstr "Asistente de bases de datos" +msgstr "Asistente para bases de datos" #. p4Yy4 #: dbaccess/inc/strings.hrc:360 @@ -3223,7 +3223,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:172 msgctxt "fielddescpage|STR_BUTTON_FORMAT" msgid "_Format Field" -msgstr "" +msgstr "_Formato de campo" #. Ff2B8 #: dbaccess/uiconfig/ui/fielddescpage.ui:194 @@ -3374,7 +3374,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:18 msgctxt "generalpagewizard|headerText" msgid "Welcome to the %PRODUCTNAME Database Wizard" -msgstr "Este es el asistente de bases de datos de %PRODUCTNAME" +msgstr "Este es el asistente para bases de datos de %PRODUCTNAME" #. DSNWP #: dbaccess/uiconfig/ui/generalpagewizard.ui:35 @@ -3395,73 +3395,73 @@ msgstr "Crear una base de datos n_ueva" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Seleccione esta opción para crear una base de datos nueva." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Base de datos _incorporada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Abrir una _base de datos existente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." -msgstr "" +msgstr "Seleccione para abrir un archivo de base de datos desde una lista de archivos usados recientemente o desde un cuadro de diálogo de selección de archivos." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Utilizadas _recientemente:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Seleccione un archivo de base de datos para abrir de la lista de archivos usados recientemente. Pulse en Finalizar para abrir el archivo inmediatamente y salir del asistente." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Abrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Abre un cuadro de diálogo de selección de archivos donde puede seleccionar un archivo de base de datos. Pulse en Abrir o Aceptar en el cuadro de diálogo de selección de archivos para abrir el archivo inmediatamente y salir del asistente." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Conectar con una base de datos e_xistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." -msgstr "" +msgstr "Seleccione esta opción para crear un documento de base de datos para una conexión de base de datos existente." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." -msgstr "" +msgstr "Seleccione el tipo de base de datos para la conexión a base de datos existente." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,10 +3471,10 @@ "están disponibles ni HSQLDB ni Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "" +msgstr "El Asistente para bases de datos crea un archivo de base de datos que contiene información sobre una base de datos." #. DQvKi #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:39 @@ -4872,7 +4872,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:355 msgctxt "specialsettingspage|comparison" msgid "MS Access" -msgstr "MS Access" +msgstr "Microsoft Access" #. FxEbE #: dbaccess/uiconfig/ui/specialsettingspage.ui:359 diff -Nru libreoffice-7.3.4/translations/source/es/desktop/messages.po libreoffice-7.3.5/translations/source/es/desktop/messages.po --- libreoffice-7.3.4/translations/source/es/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.12.2\n" "X-POOTLE-MTIME: 1565190821.000000\n" #. v2iwK @@ -366,9 +366,9 @@ "Click 'OK' to disable the extension.\n" "Click 'Cancel' to stop disabling the extension." msgstr "" -"Cuando cambie extensiones compartidas en un entorno multiusuario, asegúrese de que ningún otro usuario esté trabajando con la misma instancia de %PRODUCTNAME.\n" -"Pulse «Aceptar» para desactivar la extensión.\n" -"Pulse «Cancelar» para detener la deshabilitación." +"Cuando cambie extensiones compartidas en un entorno multiusuario, asegúrese de que ningún otro usuario esté trabajando con la misma copia de %PRODUCTNAME.\n" +"Pulse en «Aceptar» para desactivar la extensión.\n" +"Pulse en «Cancelar» para detener la desactivación." #. bfdYH #: desktop/inc/strings.hrc:102 diff -Nru libreoffice-7.3.4/translations/source/es/extensions/messages.po libreoffice-7.3.5/translations/source/es/extensions/messages.po --- libreoffice-7.3.4/translations/source/es/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: drodriguez \n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566234639.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Actualizar formulario" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multiparte" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estándar (breve)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estándar (AA breve)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estándar (AAAA breve)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estándar (larga)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 p. m." #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 p. m." #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "No seleccionado" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleccionado" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "No definido" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Todos los registros" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registro activo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Página actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sí" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulario padre" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ninguno" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Único" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Múltiple" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Intervalo" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predeterminado" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Aceptar" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancelar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ayuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "La entrada seleccionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posición de la entrada seleccionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Renglón único" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multirrenglón" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multirrenglón con formato" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ninguno" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambas" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plano" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Superior izquierda" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centro izquierda" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Inferior izquierda" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Superior derecha" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centro derecha" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Inferior derecha" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Arriba izquierda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Arriba centro" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Arriba derecha" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Debajo izquierda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Debajo centro" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Debajo derecha" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrado" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Mantener" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Reemplazar" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Contraer" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantener proporción" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajustar al tamaño" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "De izquierda a derecha" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De derecha a izquierda" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizar configuración del objeto superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nunca" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Al enfocarse" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Siempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al párrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Como carácter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A página" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Al marco" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al carácter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A página" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "A la celda" @@ -2035,13 +2023,13 @@ #: extensions/inc/strings.hrc:228 msgctxt "RID_STR_SHOWS_HANDLES" msgid "Show handles" -msgstr "Mostrar manillas" +msgstr "Mostrar agarraderas" #. cEG7h #: extensions/inc/strings.hrc:229 msgctxt "RID_STR_SHOWS_ROOT_HANDLES" msgid "Show root handles" -msgstr "Mostrar manillas raíz" +msgstr "Mostrar agarraderas de raíz" #. zWTZe #: extensions/inc/strings.hrc:230 @@ -2996,25 +2984,25 @@ #: extensions/inc/strings.hrc:395 msgctxt "RID_STR_GROUPWIZARD_TITLE" msgid "Group Element Wizard" -msgstr "Asistente de elementos de grupo" +msgstr "Asistente para elementos de grupo" #. 97Evr #: extensions/inc/strings.hrc:396 msgctxt "RID_STR_GRIDWIZARD_TITLE" msgid "Table Element Wizard" -msgstr "Asistente de elementos de tabla" +msgstr "Asistente para elementos de tabla" #. 3cAJq #: extensions/inc/strings.hrc:397 msgctxt "RID_STR_LISTWIZARD_TITLE" msgid "List Box Wizard" -msgstr "Asistente de cuadros de lista" +msgstr "Asistente para cuadros de lista" #. DYg5X #: extensions/inc/strings.hrc:398 msgctxt "RID_STR_COMBOWIZARD_TITLE" msgid "Combo Box Wizard" -msgstr "Asistente de cuadro combinado" +msgstr "Asistente para cuadros combinados" #. BG3Ch #: extensions/inc/strings.hrc:399 @@ -4276,7 +4264,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:366 msgctxt "sanedialog|extended_tip|preview" msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box." -msgstr "Muestra una vista previa de la imagen escaneada. El área de vista previa contiene ocho controladores. Arrastre los tiradores para ajustar el área de escaneo o ingrese un valor en el cuadro del margen correspondiente." +msgstr "Muestra una previsualización de la imagen digitalizada. El área de previsualización incluye ocho agarraderas. Arrastre estos controles para ajustar la zona de escaneo, o bien, introduzca un valor en el cuadro correspondiente al margen que desee modificar." #. FZ7Vw #: extensions/uiconfig/scanner/ui/sanedialog.ui:379 @@ -4330,7 +4318,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:569 msgctxt "sanedialog\\extended_tip|optionSvTreeListBox" msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below." -msgstr "Muestra la lista de opciones avanzadas del controlador del escáner disponible. Haga doble clic en una opción para mostrar su contenido justo debajo." +msgstr "Muestra la lista de opciones avanzadas de los controladores de los escáneres disponibles. Pulse dos veces en una opción para mostrar su contenido justo debajo." #. VDQay #: extensions/uiconfig/scanner/ui/sanedialog.ui:607 diff -Nru libreoffice-7.3.4/translations/source/es/extras/source/autocorr/emoji.po libreoffice-7.3.5/translations/source/es/extras/source/autocorr/emoji.po --- libreoffice-7.3.4/translations/source/es/extras/source/autocorr/emoji.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/extras/source/autocorr/emoji.po 2022-07-15 19:12:51.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: 2022-01-10 11:42+0000\n" -"Last-Translator: Emilio Herrera Espinosa \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1555994801.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -544,7 +544,7 @@ "GREEK_SMALL_LETTER_FINAL_SIGMA\n" "LngText.text" msgid "sigma2" -msgstr "sigma2" +msgstr "sigma final" #. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji #. aSVZ2 @@ -1404,7 +1404,7 @@ "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "integral2" +msgstr "integral doble" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji #. WdFpx @@ -1414,7 +1414,7 @@ "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "integral3" +msgstr "integral triple" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji #. qNHWc @@ -1424,7 +1424,7 @@ "CONTOUR_INTEGRAL\n" "LngText.text" msgid "integral4" -msgstr "integral4" +msgstr "integral de contorno" #. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji #. 6cv3C @@ -1434,7 +1434,7 @@ "VOLUME_INTEGRAL\n" "LngText.text" msgid "integral5" -msgstr "integral5" +msgstr "integral de volumen" #. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji #. mijSG @@ -5714,7 +5714,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "snowboarder" +msgstr "tabla de nieve" #. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji #. z7CKn @@ -6374,7 +6374,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "poodle" +msgstr "caniche" #. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji #. A3ng3 diff -Nru libreoffice-7.3.4/translations/source/es/filter/messages.po libreoffice-7.3.5/translations/source/es/filter/messages.po --- libreoffice-7.3.4/translations/source/es/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" +"Last-Translator: drodriguez \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -760,7 +760,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:891 msgctxt "pdfgeneralpage|extended_tip|usereferencexobject" msgid "When the option is enabled, then the reference XObject markup is used: viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer." -msgstr "" +msgstr "Cuando la opción está habilitada, se usa el marcado XObject de referencia: los visores de archivo deben admitir este marcado para mostrar imágenes vectoriales. De lo contrario, se muestra un mapa de bits alternativo en el visor." #. 2K2cD #: filter/uiconfig/ui/pdfgeneralpage.ui:902 @@ -1402,13 +1402,13 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:323 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 "Seleccione esta opción para mostrar los niveles de marcadores hasta el nivel seleccionado cuando el lector abra el archivo PDF." #. NEDWP #: filter/uiconfig/ui/pdfuserinterfacepage.ui:343 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 "Seleccione esta opción para mostrar los niveles de marcadores hasta el nivel seleccionado cuando el lector abra el archivo PDF." #. x4kjV #: filter/uiconfig/ui/pdfuserinterfacepage.ui:361 @@ -1450,7 +1450,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:97 msgctxt "pdfviewpage|extended_tip|thumbs" msgid "Select to generate a PDF file that shows a thumbnails palette and the page contents." -msgstr "" +msgstr "Seleccione esta opción para generar un archivo PDF que muestre una paleta de miniaturas y el contenido de la página." #. EgKos #: filter/uiconfig/ui/pdfviewpage.ui:116 @@ -1480,7 +1480,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:194 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 "Seleccione esta opción para generar un archivo PDF que muestre el contenido de la página sin escalar. Si el software del lector está configurado para utilizar un factor de escala predeterminado, la página se muestra con ese factor de escala." #. kqho7 #: filter/uiconfig/ui/pdfviewpage.ui:205 @@ -1492,7 +1492,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:214 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 "Seleccione esta opción para generar un archivo PDF que muestre la página escalada para llenar completamente la ventana del lector." #. gcStc #: filter/uiconfig/ui/pdfviewpage.ui:225 @@ -1504,7 +1504,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:234 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 "Seleccione esta opción para generar un archivo PDF que muestre la página escalada y se ajuste al ancho de la ventana del lector." #. V6kwp #: filter/uiconfig/ui/pdfviewpage.ui:245 @@ -1516,7 +1516,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:254 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 "Seleccione esta opción para generar un PDF que muestre el texto y gráficos de la página escalados para ajustarse al ancho de la ventana del lector." #. NGpWy #: filter/uiconfig/ui/pdfviewpage.ui:271 @@ -1552,7 +1552,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:370 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 "Seleccione esta opción para generar un PDF que muestre las páginas de acuerdo con la configuración de diseño del programa de lectura." #. QBpan #: filter/uiconfig/ui/pdfviewpage.ui:381 @@ -1582,7 +1582,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:421 msgctxt "pdfviewpage|contfacinglayout" msgid "Co_ntinuous facing" -msgstr "" +msgstr "Co_ntinua lado a lado" #. YyCT7 #: filter/uiconfig/ui/pdfviewpage.ui:430 diff -Nru libreoffice-7.3.4/translations/source/es/formula/messages.po libreoffice-7.3.5/translations/source/es/formula/messages.po --- libreoffice-7.3.4/translations/source/es/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554909614.000000\n" #. YfKFn @@ -2600,13 +2600,13 @@ #: formula/inc/strings.hrc:27 msgctxt "STR_TITLE1" msgid "Function Wizard" -msgstr "Asistente de funciones" +msgstr "Asistente para funciones" #. ctTA6 #: formula/inc/strings.hrc:28 msgctxt "STR_TITLE2" msgid "Function Wizard -" -msgstr "Asistente de funciones." +msgstr "Asistente para funciones." #. USDCA #: formula/inc/strings.hrc:29 @@ -2738,7 +2738,7 @@ #: formula/uiconfig/ui/functionpage.ui:155 msgctxt "functionpage|extended_tip|FunctionPage" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "Abre el asistente de funciones, que le ayuda a crear fórmulas interactivamente." +msgstr "Abre el asistente para funciones, que le ayuda a crear fórmulas interactivamente." #. GCYUY #: formula/uiconfig/ui/parameter.ui:27 @@ -2750,25 +2750,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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. 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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. 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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. 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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. 6GD3i #: formula/uiconfig/ui/parameter.ui:288 diff -Nru libreoffice-7.3.4/translations/source/es/fpicker/messages.po libreoffice-7.3.5/translations/source/es/fpicker/messages.po --- libreoffice-7.3.4/translations/source/es/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-26 17:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" @@ -216,55 +216,55 @@ msgstr "Fecha de modificación" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Abrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Reproducir" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nombre de archivo:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo de archivo:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Solo lectura" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Guardar con contraseña" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensión de archivo _automática" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar configuración de _filtros" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Cifrar con clave GPG" diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/auxiliary.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/auxiliary.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/auxiliary.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/auxiliary.po 2022-07-15 19:12:51.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-11-25 19:33+0100\n" -"PO-Revision-Date: 2022-03-31 21:46+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562203919.000000\n" #. fEEXD @@ -536,7 +536,7 @@ "100501\n" "node.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. 6qzVL #: shared.tree @@ -545,7 +545,7 @@ "100502\n" "node.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. GMiKt #: shared.tree @@ -554,7 +554,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. gvsML #: shared.tree @@ -563,7 +563,7 @@ "100506\n" "node.text" msgid "HTML Export Wizard" -msgstr "Asistente de exportación a HTML" +msgstr "Asistente para exportación a HTML" #. 8tHJK #: shared.tree @@ -572,7 +572,7 @@ "100510\n" "node.text" msgid "Document Converter Wizard" -msgstr "Asistente de conversión de documentos" +msgstr "Asistente para conversión de documentos" #. zhnAF #: shared.tree diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-02-12 18:39+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565287211.000000\n" #. naSFZ @@ -2039,7 +2039,7 @@ "N0448\n" "help.text" msgid "def disposing(self, evt: EventObject): # mandatory routine" -msgstr "" +msgstr "def disposing(self, evt: EventObject): # rutina obligatoria" #. 9mtTR #: python_listener.xhp @@ -2219,7 +2219,7 @@ "par_id801636114808666\n" "help.text" msgid "Three library containers are shown in the Macro From list:" -msgstr "" +msgstr "Tres contenedores de bibliotecas figuran en la lista Macro de:" #. RnBRr #: python_locations.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2021-10-24 01:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -1499,7 +1499,7 @@ "par_id3150046\n" "help.text" msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date." -msgstr "Si se asigna la propiedad \"dropdown\" al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha." +msgstr "Si se asigna la propiedad «desplegable» al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha." #. Mofqo #: 20000000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548211825.000000\n" #. ViEWM @@ -6917,7 +6917,7 @@ "par_id301600788076785\n" "help.text" msgid "Access chart objects in Calc documents and manipulate their properties." -msgstr "" +msgstr "Acceder a los objetos de gráfico en los documentos de Calc y manipular sus propiedades." #. rzioM #: sf_chart.xhp @@ -9446,7 +9446,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies if a command button has or not the behaviour of a Cancel button." -msgstr "" +msgstr "Especifica si un botón de orden tiene o no el comportamiento de un botón Cancelar." #. Gft3Z #: sf_dialogcontrol.xhp @@ -9536,7 +9536,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default (OK) button." -msgstr "" +msgstr "Especifica si un botón de orden es el botón predeterminado (Aceptar)." #. GAdvJ #: sf_dialogcontrol.xhp @@ -13640,7 +13640,7 @@ "par_id271588334016191\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. Ggnnt #: sf_filesystem.xhp @@ -16448,7 +16448,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default OK button." -msgstr "" +msgstr "Especifica si un botón de orden es el botón Aceptar predeterminado." #. 2dP2A #: sf_formcontrol.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "«?» representa cualquier carácter único;" #. CFPcW #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: la cadena que se comprobará. Si está vacía, el método devuelve False." #. 7Ryzp #: sf_string.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2741,7 +2741,7 @@ "par_id3150693\n" "help.text" msgid "Date variables are assigned the value 0 internally; equivalent to converting the value to \"0\" with the Day, Month, Year or the Hour, Minute, Second function." -msgstr "A las variables de fecha se les asigna el valor 0 internamente; que equivale a convertir el valor a \"0\" con las funciones Day, Month, Year or the Hour, Minute, Second." +msgstr "A las variables de fecha se les asigna el valor 0 internamente, lo que equivale a convertir el valor a «0» con las funciones Day, Month, Year or the Hour, Minute o Second." #. WiXVw #: 01020100.xhp @@ -7232,7 +7232,7 @@ "hd_id543534\n" "help.text" msgid "Show handles" -msgstr "Muestra manillas" +msgstr "Mostrar agarraderas" #. wG6AD #: 01170101.xhp @@ -7241,7 +7241,7 @@ "par_id5060884\n" "help.text" msgid "Specifies whether the handles of the nodes should be displayed." -msgstr "Especifca si los manillas de los nodos deben ser mostrado." +msgstr "Especifica si se deben mostrar las agarraderas de los nodos." #. TC8mj #: 01170101.xhp @@ -7250,7 +7250,7 @@ "par_id4974822\n" "help.text" msgid "The handles are dotted lines that visualize the hierarchy of the tree control." -msgstr "Los manillas son líneas de puntos que visualiza la jerarquía del control de árbol." +msgstr "Las agarraderas son líneas punteadas que permiten visualizar la jerarquía del control en árbol." #. 55Gfe #: 01170101.xhp @@ -7268,7 +7268,7 @@ "hd_id4062013\n" "help.text" msgid "Show root handles" -msgstr "Muestra manillas de raíz" +msgstr "Mostrar agarraderas de raíz" #. nGccA #: 01170101.xhp @@ -7277,7 +7277,7 @@ "par_id3314004\n" "help.text" msgid "Specifies whether the handles of the nodes should also be displayed at root level." -msgstr "Especifica si los manillas de los nodos deben ser mostrado a nivel raíz." +msgstr "Especifica si las agarraderas de los nodos deben mostrarse al nivel de la raíz." #. GCfuF #: 01170101.xhp @@ -10256,7 +10256,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: una variable numérica o de cadena a la que se asignan los valores leídos desde el archivo abierto." #. 23Pzt #: 03020202.xhp @@ -32990,7 +32990,7 @@ "par_id3159201\n" "help.text" msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch." -msgstr "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación." +msgstr "Hace sonar un tono a través del altavoz del PC. El tono depende del sistema y no puede modificarse el volumen ni la modulación." #. JMATz #: 03130100.xhp @@ -34646,7 +34646,7 @@ "tit\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Objeto ThisComponent" #. AKrki #: 03132200.xhp @@ -34664,7 +34664,7 @@ "hd_id3155342\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Objeto ThisComponent" #. ECFFs #: 03132200.xhp @@ -34763,7 +34763,7 @@ "par_id105622646874083\n" "help.text" msgid "com.sun.star.formula.FormulaProperties API service" -msgstr "" +msgstr "Servicio de API com.sun.star.formula.FormulaProperties" #. FLbnX #: 03132200.xhp @@ -34772,7 +34772,7 @@ "par_id106622646874083\n" "help.text" msgid "com.sun.star.sdb.OfficeDatabaseDocument API service" -msgstr "" +msgstr "Servicio de API com.sun.star.sdb.OfficeDatabaseDocument" #. vZW9w #: 03132200.xhp @@ -34781,7 +34781,7 @@ "par_id581622646875379\n" "help.text" msgid "com.sun.star.document.OfficeDocument API service" -msgstr "" +msgstr "Servicio de API com.sun.star.document.OfficeDocument" #. QgZSF #: 03132300.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/00.po 2022-07-15 19:12:51.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-09-27 19:09+0200\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -473,7 +473,7 @@ "par_id3154370\n" "help.text" msgid "Function Wizard" -msgstr "Asistente de funciones" +msgstr "Asistente para funciones" #. CfMjV #: 00000404.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1517,7 +1517,7 @@ "par_id3150887\n" "help.text" msgid "Creates a date series using the defined increment and end date." -msgstr "Crea una serie de fechas utilizando el incremento y la fecha final definidos." +msgstr "Crea una serie de fechas utilizando el incremento y la fecha de finalización definidos." #. b7qsB #: 02140600.xhp @@ -3839,7 +3839,7 @@ "hd_id3147426\n" "help.text" msgid "Function" -msgstr "Función" +msgstr "Función" #. wjD4H #: 04060000.xhp @@ -3848,7 +3848,7 @@ "par_id3145271\n" "help.text" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "Abre el asistente de funciones, que le ayuda a crear fórmulas interactivamente." +msgstr "Abre el asistente para funciones, que le ayuda a crear fórmulas interactivamente." #. exDJs #: 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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. GSRgn #: 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 "Finaliza el Asistente de funciones y transfiere la fórmula a la celda seleccionada." +msgstr "Finaliza el Asistente para funciones y transfiere la fórmula a la celda seleccionada." #. 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 "Si inicia el asistente de funciones mientras el cursor de celda esté posicionado en una celda que ya contiene una función, se abrirá la pestaña Estructura y se mostrará la composición de la fórmula actual." +msgstr "Si inicia el asistente para funciones mientras el cursor de celda esté posicionado en una celda que ya contiene una función, se abrirá la pestaña Estructura y se mostrará la composición de la fórmula actual." #. 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 "Esta sección describe las funciones de $[officename] Calc. Las distintas funciones se dividen en categorías en el Asistente de funciones." +msgstr "Esta sección describe las funciones de $[officename] Calc. Las distintas funciones se dividen en categorías en el Asistente para funciones." #. JJJ2y #: 04060100.xhp @@ -4487,7 +4487,7 @@ "par_id241615842810077\n" "help.text" msgid "All functions have the same outline concept of operation. The first logical step is to use the specified SearchCriteria to identify the subset of records in the Database that are to be used during subsequent calculations. The second step is to extract the data values and perform the calculations associated with the specific function (average, sum, product, and so on). The values processed are those in the DatabaseField column of the selected records." -msgstr "" +msgstr "Todas las funciones tienen el mismo concepto de funcionamiento. El primer paso lógico es utilizar el Criterio de Búsqueda para identificar el subconjunto de registros en la Base de datosque se utilizarán en los cálculos posteriores. El segundo paso consiste en extraer los valores de los datos y realizar los cálculos asociados a la función específica (media, suma, producto, etc.). Los valores que se procesan son los que están en el Campo de base de datos de los registros seleccionados." #. oErum #: 04060101.xhp @@ -4595,7 +4595,7 @@ "par_id981615889517841\n" "help.text" msgid "By entering a reference to a header cell within the Database area. Alternatively, if the cell has been given a meaningful name as a named range or database range, enter that name. If the name does not match the name of a defined range, Calc reports a #NAME? error. If the name is valid but does not correspond to one cell only, Calc reports Err:504 (error in parameter list)." -msgstr "" +msgstr "Al introducir una referencia a una celda de encabezado dentro del área Base de datos Alternativamente, si la celda ha recibido un nombre significativo como rango con nombre o rango de base de datos, introduzca ese nombre. Si el nombre no coincide con el nombre de un rango definido, Calc informa de un error #NOMBRE? Si el nombre es válido pero no corresponde a una sola celda, Calc informa de Err:504 (error en la lista de parámetros)." #. 6EGoq #: 04060101.xhp @@ -4604,7 +4604,7 @@ "par_id551615889661457\n" "help.text" msgid "By entering a number to specify the column within the Database area, starting with 1. For example, if a Database occupied the cell range D6:H123, then enter 3 to indicate the header cell at F6. Calc expects an integer value that lies between 1 and the number of columns defined within Database and ignores any digits after a decimal point. If the value is less than 1, Calc reports Err:504 (error in parameter list). If the value is greater than the number of columns in Database, Calc reports a #VALUE! error." -msgstr "" +msgstr "Ingresando un número para especificar la columna en el área Base de datos, comenzando con 1. Por ejemplo, si una Base de datos ocupaba el intervalo de celdas D6: H123, ingrese 3 para indicar la celda de encabezado en F6. Calc espera un valor entero que se encuentre entre 1 y el número de columnas definido en Base de datos e ignora cualquier dígito después de un punto decimal. Si el valor es inferior a 1, Calc informa Err:504 (error en la lista de parámetros). Si el valor es mayor que el número de columnas en Base de datos, Calc informa un error #¡VALOR!" #. qSkvo #: 04060101.xhp @@ -4613,7 +4613,7 @@ "par_id561615889738472\n" "help.text" msgid "By entering the literal column header name from the first row of the Database range, placing quotation marks around the header name. For example, “Distance to School”. If the string does not match one of the Database area’s column headings, Calc reports Err:504 (error in parameter list). You can also provide a reference to an arbitrary cell (not within the Database and SearchCriteria areas) that contains the required string." -msgstr "" +msgstr "Al introducir el nombre literal del encabezado de la columna desde la primera fila del intervalo Base de datos, entrecomillando el nombre del encabezado. Por ejemplo, \"Distancia a la escuela\". Si la cadena no coincide con uno de los encabezados de columna del área Base de datos, Calc informa Err:504 (error en la lista de parámetros). También puede proporcionar una referencia a una celda arbitraria (fuera de las áreas de Base de datos y Criterios de búsqueda) que contenga la cadena requerida." #. AUEy6 #: 04060101.xhp @@ -4622,7 +4622,7 @@ "par_id181615889841279\n" "help.text" msgid "The DatabaseField argument is optional for the DCOUNT and DCOUNTA functions but it is required for the other ten Database functions." -msgstr "" +msgstr "El argumento Campo de base de datos es opcional para las funciones DCONTAR y DCONTARA pero es necesario para las otras diez funciones de la base de datos." #. Af4va #: 04060101.xhp @@ -4631,7 +4631,7 @@ "par_id841615891322513\n" "help.text" msgid "SearchCriteria argument" -msgstr "" +msgstr "Argumento de los criterios de búsqueda" #. 9eBBv #: 04060101.xhp @@ -4640,7 +4640,7 @@ "par_id351615891337585\n" "help.text" msgid "SearchCriteria specifies the range of cells containing search criteria. Like Database, its first row is also field names, and subsequent rows are conditions for related fields. The Database and SearchCriteria areas need not be adjacent, or even on the same sheet." -msgstr "" +msgstr "Criterios de búsqueda especifica el rango de celdas que contienen los criterios de búsqueda. Al igual que Base de datos, su primera fila también son nombres de campo y las filas subsiguientes son condiciones para campos relacionados. Las áreas Base de datos y Criterios de búsqueda no necesitan estar adyacentes, ni siquiera en la misma hoja." #. iuFJF #: 04060101.xhp @@ -4649,7 +4649,7 @@ "par_id401615891342289\n" "help.text" msgid "One way of defining the range of cells is to enter the cell reference for the upper left-hand cell, followed by a colon (:), and then the lower right-hand cell reference. For example, A13:B14. The cell range may also be specified by passing the name of a defined named range or database range. If the name does not match the name of a defined range, Calc reports a #NAME? error." -msgstr "" +msgstr "Una forma de definir el intervalo de celdas es ingresando la referencia de la celda superior izquierda, seguida de dos puntos (:), y luego la referencia de la celda inferior derecha. Por ejemplo, A13:B14. El intervalo de celdas también puede especificarse pasando el nombre de un intervalo con nombre definido o un intervalo de base de datos. Si el nombre no coincide con el de un intervalo definido, Calc informa de un error #NAME?" #. 2BE4W #: 04060101.xhp @@ -4658,7 +4658,7 @@ "par_id861615891345281\n" "help.text" msgid "Err:504 (error in parameter list) may also be reported as a result of an invalid SearchCriteria argument." -msgstr "" +msgstr "El Err:504 (error en la lista de parámetros) también puede informarse como resultado de un argumento Criterio de búsqueda no válido" #. D6TBP #: 04060101.xhp @@ -4667,7 +4667,7 @@ "par_id901615891349688\n" "help.text" msgid "The contents of the SearchCriteria area are described in more detail in the next section." -msgstr "" +msgstr "El contenido del área Criterios de búsqueda se describe con más detalle en la siguiente sección." #. vj96q #: 04060101.xhp @@ -4685,7 +4685,7 @@ "par_id691615892329680\n" "help.text" msgid "The number of columns occupied by the SearchCriteria area need not be the same as the width of the Database area. All headings that appear in the first row of SearchCriteria must be identical to headings in the first row of Database. However, not all headings in Database need appear in the first row of SearchCriteria, while a heading in Database can appear multiple times in the first row of SearchCriteria." -msgstr "" +msgstr "El número de columnas ocupadas por el área Criterios de búsqueda no necesita ser el mismo ancho del área Base de datos. Todos los encabezados que aparecen en la primera fila deCriterios de búsqueda deben ser idénticos a los encabezados de la primera fila en la Base de datos. Sin embargo, no todos los encabezados en la Base de datos deben aparecer en la primera fila de Criterios de búsqueda, mientras que un encabezado en la Base de datos puede aparecer varias veces en la primera fila de Criterios de búsqueda." #. AeGHn #: 04060101.xhp @@ -4694,7 +4694,7 @@ "par_id541615892358897\n" "help.text" msgid "Search criteria are entered into the cells of the second and subsequent rows of the SearchCriteria area, below the row containing headings. Blank cells within the SearchCriteria area are ignored." -msgstr "" +msgstr "Los criterios de búsqueda se ingresan en las celdas de la segunda y siguientes filas del área Criterios de búsqueda, debajo de la fila que contiene a los encabezados. Las celdas en blanco dentro del área Criterios de búsqueda deben ser ignorados." #. MddCQ #: 04060101.xhp @@ -4730,7 +4730,7 @@ "par_id921615893158111\n" "help.text" msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the Enable regular expressions in formulas option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog." -msgstr "" +msgstr "Se pueden crear criterios aún más poderosos utilizando expresiones regulares, siempre que las expresiones regulares se hayan activado a través de la opción Activar expresiones regulares en las fórmulas en el diálogo %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - Calcularcuadro de dialogo." #. YkSzL #: 04060101.xhp @@ -4740,6 +4740,9 @@ "help.text" msgid "Another setting that affects how the search criteria are handled is the Search criteria = and <> must apply to whole cells option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." msgstr "" +"Otra configuración que afecta la forma en que se manejan los criterios de búsqueda es la opción Los criterios de búsqueda = y <> deben aplicarse a celdas enteras en el %PRODUCTNAME -\n" +"PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - cuadro de dialogo. Esta opción controla si los criterios de búsqueda que establece para las funciones de la base de datos deben hacer coincidir exactamente con toda la celda.\n" +"Cuando la interoperatividad con Microsoft Excel es importante para su hoja de cálculo, esta opción debe estar habilitada." #. 4sbmh #: 04060101.xhp @@ -4955,7 +4958,7 @@ "par_id451616246535763\n" "help.text" msgid "As in this simple example, it is sometimes desirable (but not essential) to place the search criteria area directly under the database table, with the columns of the two areas vertically aligned. Blank entries in the search criteria area are ignored. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:E14) into an empty cell elsewhere in the sheet to count how many of Joe’s guests travel further than 600 meters to school. The value 5 is returned (counting Betty, Daniel, Eva, Harry, and Irene)." -msgstr "" +msgstr "Como en este sencillo ejemplo, a veces es recomendable (pero no esencial) colocar el área de criterios de búsqueda directamente debajo de la tabla de la base de datos, con las columnas de las dos áreas alineadas verticalmente. Las entradas en blanco en el área de criterios de búsqueda se ignoran. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:E14) en una celda vacía en otra parte de la hoja para contar cuántos de los huéspedes de Joe viajan más de 600 metros a la escuela. Se devuelve el valor 5 (contando a Betty, Daniel, Eva, Harry e Irene)." #. bBHFr #: 04060101.xhp @@ -5000,7 +5003,7 @@ "par_id361616251794063\n" "help.text" msgid "In this example the search criteria area contains only two headings and these are not vertically aligned with the corresponding headings in the example database table. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;B12:C13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests are in grade 2 and greater than 7 years old. The value 2 is returned (counting Eva and Irene)." -msgstr "" +msgstr "En este ejemplo, el área de criterios de búsqueda contiene sólo dos encabezados y éstos no están alineados verticalmente con los encabezados correspondientes en la tabla de la base de datos de ejemplo. Como hay dos condiciones en la misma fila, éstas están conectadas por AND. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserta la fórmula =DCOUNT(A1:E10;;B12:C13) en una celda vacía en otro lugar de la hoja para contar cuántos de los invitados de Joe están en el grado 2 y tienen más de 7 años. Se devuelve el valor 2 (contando a Eva e Irene)." #. 6Tfyk #: 04060101.xhp @@ -5063,7 +5066,7 @@ "par_id991616252981928\n" "help.text" msgid "In this example the search criteria area contains two occurrences of the same heading. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;B12:C13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests are aged between 8 and 10 (inclusive). The value 6 is returned (counting Andy, Betty, Charles, Eva, Harry, and Irene)." -msgstr "" +msgstr "En este ejemplo, el área de criterios de búsqueda contiene dos apariciones del mismo título. Como hay dos condiciones en la misma fila, éstas están conectadas por AND. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserta la fórmula =DCOUNT(A1:E10;;B12:C13) en una celda vacía en otro lugar de la hoja para contar cuántos de los invitados de Joe tienen entre 8 y 10 años (inclusive). Se devuelve el valor 6 (contando a Andy, Betty, Charles, Eva, Harry e Irene)." #. vgeRe #: 04060101.xhp @@ -5090,7 +5093,7 @@ "par_id91616253394127\n" "help.text" msgid "This simple example shows the use of wildcards. For this example to work as intended, select to enable wildcards at %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:A13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letter “F”. The value 1 is returned (counting Frank)." -msgstr "" +msgstr "Este sencillo ejemplo muestra el uso de comodines. Para que este ejemplo funcione como se pretende, seleccione activar los comodines en %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - Calcular. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:A13)en una celda vacía en cualquier lugar de la hoja para contar cuántos de los huéspedes de Joe tienen nombres que empiezan por la letra \"F\". Se devuelve el valor 1 (contando a Frank)." #. BAnVJ #: 04060101.xhp @@ -5117,7 +5120,7 @@ "par_id631616253692350\n" "help.text" msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:A13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)." -msgstr "" +msgstr "Este sencillo ejemplo muestra el uso de expresiones regulares. Para que este ejemplo funcione como se pretende, seleccione activar las expresiones regulares en%PRODUCTNAME - PreferenciasHerramienas - Opciones - %PRODUCTNAME Calc - Calcular. Con la tabla de base de datos de ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:A13) en una celda vacía en cualquier lugar de la hoja para contar cuántos de las visitas de Joe tienen nombres que empiezan por las letras \"A\", \"B\" o \"C\". Se devuelve el valor 3 (contando a Andy, Betty y Charles)." #. KBZPC #: 04060101.xhp @@ -5126,7 +5129,7 @@ "bm_id3150882\n" "help.text" msgid "DCOUNT functioncounting rows;with numeric values" -msgstr "" +msgstr "BDCONTAR funciónrecuento de filas;con valores numéricos" #. DLGGD #: 04060101.xhp @@ -5144,7 +5147,7 @@ "par_id3156133\n" "help.text" msgid "DCOUNT counts the number of cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. However, if no column is specified, DCOUNT returns the count of all records that match the specified search criteria irrespective of their contents." -msgstr "" +msgstr "BDCONTAR cuenta el número de celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Sin embargo, si no se especifica ninguna columna, BDCONTAR devuelve el recuento de todos los registros que coinciden con los criterios de búsqueda especificados, independientemente de su contenido." #. EetM7 #: 04060101.xhp @@ -5162,7 +5165,7 @@ "par_id3153623\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)." -msgstr "" +msgstr "La tabla de la base de datos del ejemplo que nos da información sobre los invitados a la fiesta de cumpleaños de Juan (descrita anteriormente) debería ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico a las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, a excepción de la celda D13 que debe contener \">600\" (este criterio de búsqueda coincidirá con los registros en la tabla de la base de datos que tengan un valor superior a 600 en la columna Distancia)." #. kVciZ #: 04060101.xhp @@ -5171,7 +5174,7 @@ "par_id441616368480646\n" "help.text" msgid "Insert the formula =DCOUNT(A1:E10;; A12:E13) into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned." -msgstr "" +msgstr "Añada la fórmula =BDCONTAR(A1:E10;; A12:E13) en una celda vacía en otra parte de la hoja para calcular cuántos de los invitados a la fiesta de Juan viajan más de 600 metros a la escuela. Arrojara el valor 5." #. UZFcp #: 04060101.xhp @@ -5180,7 +5183,7 @@ "par_id361616368488119\n" "help.text" msgid "The same result is obtained if you use the formula =DCOUNT(A1:E10; \"Distance\"; A12:E13), because all entries in the Distance column are numeric. However, if you use the formula =DCOUNT(A1:E10; \"Name\"; A12:E13), the value 0 is returned because all entries in the Name column are non-numeric." -msgstr "" +msgstr "Se obtiene el mismo resultado si usa la fórmula =BDCONTAR(A1:E10; \"Distancia\"; A12:E13), porque todas las entradas en la columna distancia son numéricas. Sin embargo, si se usa la fórmula =BDCONTAR(A1:E10; \"Nombre\"; A12:E13), devuelve el valor 0 porque todas las entradas en la columna nombre no son numéricas." #. tGFyD #: 04060101.xhp @@ -5189,7 +5192,7 @@ "bm_id3156123\n" "help.text" msgid "DCOUNTA functionrecords;counting in Calc databasescounting rows;with numeric or alphanumeric values" -msgstr "" +msgstr "Función BDCONTARAregistros; conteo en bases de datos Calccontar filas; con valores numéricos o alfanuméricos" #. aJdyL #: 04060101.xhp @@ -5207,7 +5210,7 @@ "par_id3156110\n" "help.text" msgid "DCOUNTA counts the number of cells (fields) of the specified column that are not blank, for all rows (database records) that match the specified search criteria. Blank cells of the specified column are not counted. However, if no column is specified, DCOUNTA returns the count of all records that match the specified search criteria irrespective of their contents." -msgstr "" +msgstr "BDCONTARA cuenta el número de celdas (campos) de la columna especificada que no están en blanco, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Las celdas en blanco de la columna especificada no se cuentan. Sin embargo, si no se especifica ninguna columna, BDCONTARA hace el recuento de todos los registros que coinciden con los criterios de búsqueda especificados, independientemente de su contenido." #. CxWGV #: 04060101.xhp @@ -5225,7 +5228,7 @@ "par_id3153982\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">600\" (este criterio de búsqueda coincidirá con los registros de la tabla de la base de datos que tengan un valor superior a 600 en la columna Distancia)." #. SSD7D #: 04060101.xhp @@ -5234,7 +5237,7 @@ "par_id61616368616093\n" "help.text" msgid "Insert the formula =DCOUNTA(A1:E10;; A12:E13) into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDCONTARA(A1:E10;; A12:E13) en una celda vacía de otro lugar de la hoja para calcular cuántos de los invitados a la fiesta de Joe viajan más de 600 metros hasta la escuela. Nos devolverá el valor 5." #. WyEGc #: 04060101.xhp @@ -5243,7 +5246,7 @@ "par_id841616368623207\n" "help.text" msgid "The same result is obtained if you use the formula =DCOUNTA(A1:E10; \"Distance\"; A12:E13) or the formula =DCOUNTA(A1:E10; \"Name\"; A12:E13). The latter case reflects that in contrast to DCOUNT, DCOUNTA counts both numeric and alphanumeric values in the column indicated by the DatabaseField argument." -msgstr "" +msgstr "Se obtiene el mismo resultado si utiliza la fórmula =DCONTARA(A1:E10; \"Distancia\"; A12:E13) o la fórmula =BDCONTARA(A1:E10; \"Nombre\"; A12 :E13). El último caso refleja que, a diferencia de BDCONTAR, BDCONTARA cuenta valores numéricos y alfanuméricos en la columna indicada por el argumento Campo de base de datosDGET functioncell contents;searching in Calc databasessearching;cell contents in Calc databases" -msgstr "" +msgstr "Función BDEXTRAERcontenido de las celdas; búsqueda en bases de datos Calcbúsqueda; contenido de las celdas en bases de datos Calc" #. wj7ck #: 04060101.xhp @@ -5279,7 +5282,7 @@ "par_id171616180137385\n" "help.text" msgid "Calc reports Err:502 (invalid argument) if multiple matches are found, or a #VALUE! error (wrong data type) if no matches are found. A #VALUE! error is also reported if a single match is found but the relevant cell is empty." -msgstr "Calc informa Err: 502 (argumento no válido) si se encuentran múltiples coincidencias, o un error #¡VALOR! (tipo de datos incorrecto) si no se encuentran coincidencias. También se devuelve un error #¡VALOR! si se encuentra una sola coincidencia pero la celda correspondiente está vacía." +msgstr "Calc emite el Err:502 (argumento no válido) si se encuentran varias coincidencias, o bien, un error #¡VALOR! (tipo de datos incorrecto) si no se encuentran coincidencias. También se devuelve un error #¡VALOR! si se encuentra una sola coincidencia pero la celda correspondiente está vacía." #. oFi8J #: 04060101.xhp @@ -5297,7 +5300,7 @@ "par_id3155388\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \"11\" (this search criterion will match records in the database table that have a value of 11 in the Age column)." -msgstr "" +msgstr "La tabla de base de datos de ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda C13 que debe contener \"11\" (este criterio de búsqueda coincidirá con los registros de la tabla de la base de datos que tengan un valor de 11 en la columna edad)." #. A942C #: 04060101.xhp @@ -5306,7 +5309,7 @@ "par_id3153096\n" "help.text" msgid "Insert the formula =DGET(A1:E10; \"Name\"; A12:E13) into an empty cell elsewhere in the sheet to find the name of Joe’s party guest who is age 11. The name Daniel is returned." -msgstr "" +msgstr "Inserta la fórmula =BDEXTRAER(A1:E10; \"Nombre\"; A12:E13) en una celda vacía en otro lugar de la hoja para encontrar el nombre del invitado a la fiesta de Joe que tiene 11 años. Nos devolverá el nombre de Daniel." #. 6AKoj #: 04060101.xhp @@ -5315,7 +5318,7 @@ "par_id3150524\n" "help.text" msgid "If you change the value in cell C13 to “10”, then the formula =DGET(A1:E10; \"Name\"; A12:E13) returns an invalid argument error (Err:502). The reflects that multiple records match the specified criterion (both Betty and Charles are age 10)." -msgstr "" +msgstr "Si cambia el valor de la celda C13 por \"10\", la fórmula =BDEXTRAER(A1:E10; \"Nombre\"; A12:E13) devuelve un error de argumento no válido (Err:502). Refleja que varios registros coinciden con el criterio especificado (tanto Betty como Carlos tienen 10 años)." #. rB9Ek #: 04060101.xhp @@ -5342,7 +5345,7 @@ "par_id3154903\n" "help.text" msgid "DMAX calculates the maximum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDMAX calcula el valor máximo en todas las celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. pUGwd #: 04060101.xhp @@ -5369,7 +5372,7 @@ "par_id3148442\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. Mqocw #: 04060101.xhp @@ -5378,7 +5381,7 @@ "par_id3148804\n" "help.text" msgid "Insert the formula =DMAX(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the maximum distance in meters that any of Joe’s party guests travel to school. The value 1200 is returned." -msgstr "" +msgstr "Inserte la fórmula =BDMAX(A1:E10; \"Distancia\"; A12:E13) en una celda vacía en otra parte de la hoja para encontrar la distancia máxima en metros que recorre cualquiera de los invitados a la fiesta de Juan hasta a la escuela. Devolverá el valor 1200." #. CnaXx #: 04060101.xhp @@ -5405,7 +5408,7 @@ "par_id3154261\n" "help.text" msgid "DMIN calculates the minimum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDMIN calcula el valor mínimo en todas las celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. yYJTa #: 04060101.xhp @@ -5432,7 +5435,7 @@ "par_id3148925\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. LrfjC #: 04060101.xhp @@ -5441,7 +5444,7 @@ "par_id3149161\n" "help.text" msgid "Insert the formula =DMIN(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the minimum distance in meters that any of Joe’s party guests travel to school. The value 150 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDMIN(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la distancia mínima en metros que recorre cualquiera de los invitados a la fiesta de Joe hasta la escuela. Nos devolverá el valor 150." #. XEu9j #: 04060101.xhp @@ -5450,7 +5453,7 @@ "bm_id3154274\n" "help.text" msgid "DAVERAGE functionaverages; in Calc databasescalculating;averages in Calc databases" -msgstr "" +msgstr "función BDPROMEDIOpromedios; en bases de datos Calccálculo; medias en bases de datos Calc" #. dQciw #: 04060101.xhp @@ -5468,7 +5471,7 @@ "par_id3166453\n" "help.text" msgid "DAVERAGE calculates the average of the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values in those cells are ignored." -msgstr "" +msgstr "BDPROMEDIO calcula la media de los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Los valores no numéricos de esas celdas deben ser ignorados." #. 87qxe #: 04060101.xhp @@ -5477,7 +5480,7 @@ "par_id31615978739452\n" "help.text" msgid "Returns a #DIV/0! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #DIV/0! si ningún registro coincide con los criterios de búsqueda especificados, o si no hay valores numéricos en las celdas de la columna especificada para los registros coincidentes." #. PPkBD #: 04060101.xhp @@ -5495,7 +5498,7 @@ "par_id3149104\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos de ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. CjTGB #: 04060101.xhp @@ -5504,7 +5507,7 @@ "par_id201616368312277\n" "help.text" msgid "Insert the formula =DAVERAGE(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the average distance in meters travelled to school by Joe’s party guests. The value 666.67 is returned." -msgstr "" +msgstr "Introduzca la fórmula =BDPROMEDIO(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para calcular la distancia media en metros recorrida hasta la escuela por los invitados a la fiesta de Joe. Se obtendrá el valor 666,67." #. 6fcFr #: 04060101.xhp @@ -5531,7 +5534,7 @@ "par_id3152879\n" "help.text" msgid "DPRODUCT calculates the product of all numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDPRODUCTO calcula el producto de todos los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. oUsZD #: 04060101.xhp @@ -5558,7 +5561,7 @@ "par_id3148986\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda C13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. iaoUA #: 04060101.xhp @@ -5567,7 +5570,7 @@ "par_id91616368981807\n" "help.text" msgid "Insert the formula =DPRODUCT(A1:E10; \"Age\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the product of the ages in years of Joe’s party guests. The value 279417600 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDPRODUCTO(A1:E10; \"Antigüedad\"; A12:E13) en una celda vacía de la hoja para calcular el producto de las edades en años de los invitados a la fiesta de Joe. Nos dará el valor 279417600." #. KsVCV #: 04060101.xhp @@ -5576,7 +5579,7 @@ "bm_id3148462\n" "help.text" msgid "DSTDEV functionstandard deviations in databases;based on a sample" -msgstr "" +msgstr "Función BDDESVESTdesviaciones estándar en bases de datos; basadas en una muestra" #. EvGNP #: 04060101.xhp @@ -5594,7 +5597,7 @@ "par_id3154605\n" "help.text" msgid "DSTDEV calculates the sample standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDDESVEST calcula la desviación estándar de la muestra basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos deben ignorarse." #. RACag #: 04060101.xhp @@ -5603,7 +5606,7 @@ "par_id121616181037440\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #NUM! si exactamente un registro coincide con los criterios de búsqueda especificados, o si sólo hay un valor numérico en las celdas de la columna especificada para los registros coincidentes." #. r6onB #: 04060101.xhp @@ -5630,7 +5633,7 @@ "par_id3149934\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegurarse que las celdas A13:D13 estén en blanco y que la celda E13 contenga \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. SXqfH #: 04060101.xhp @@ -5639,7 +5642,7 @@ "par_id3150630\n" "help.text" msgid "Insert the formula =DSTDEV(A1:E10; \"Weight\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the sample standard deviation of the weights in kg of Joe’s party guests. The value 5.5 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDDESVEST(A1:E10; \"Peso\"; A12:E13) en una celda vacía de otro lugar de la hoja para calcular la desviación estándar muestral de los pesos en kg de los invitados a la fiesta de Joe. Nos devolverá el valor 5,5." #. VRXXy #: 04060101.xhp @@ -5666,7 +5669,7 @@ "par_id3145598\n" "help.text" msgid "DSTDEVP calculates the population standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDDESVESTP calcula la desviación estándar de la población basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos se ignoran." #. TjThw #: 04060101.xhp @@ -5693,7 +5696,7 @@ "par_id3155431\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegurarse de que las celdas A13:D13 estén en blanco y que la celda E13 contenga \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. 6eisL #: 04060101.xhp @@ -5702,7 +5705,7 @@ "par_id3148411\n" "help.text" msgid "Insert the formula =DSTDEVP(A1:E10; \"Weight\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the population standard deviation of the weights in kg of Joe’s party guests. The value 5.18545 is returned." -msgstr "" +msgstr "Inserta la fórmula =DBDDESVESTP(A1:E10; \"Peso\"; A12:E13) en una celda vacía en cualquier lugar de la hoja para calcular la desviación estándar de la población de los pesos en kg de los invitados a la fiesta de Joe. Nos devolverá el valor 5,18545." #. Z2CTY #: 04060101.xhp @@ -5756,7 +5759,7 @@ "par_id3152766\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da la información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. riVB4 #: 04060101.xhp @@ -5765,7 +5768,7 @@ "par_id3151312\n" "help.text" msgid "Insert the formula =DSUM(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the total distance in meters that all of Joe’s party guests travel to school. The value 6000 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDSUMA(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la distancia total en metros que recorren todos los invitados a la fiesta de Joe hasta la escuela. Nos devolverá el valor 6000." #. YBFb7 #: 04060101.xhp @@ -5774,7 +5777,7 @@ "bm_id3155614\n" "help.text" msgid "DVAR functionvariances;based on samples" -msgstr "" +msgstr "Función BDVARvarianzas; basadas en muestras" #. G6ZBW #: 04060101.xhp @@ -5801,7 +5804,7 @@ "par_id301616181465164\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #NUM! si un registro coincide con los criterios de búsqueda especificados, o si sólo hay un valor numérico en las celdas de la columna especificada para los registros coincidentes." #. gW4LZ #: 04060101.xhp @@ -5828,7 +5831,7 @@ "par_id3153701\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. bRDWF #: 04060101.xhp @@ -5837,7 +5840,7 @@ "par_id3153676\n" "help.text" msgid "Insert the formula =DVAR(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the sample variance of the distances in meters that Joe’s party guests travel to school. The value 193125 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDVAR(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la varianza muestral de las distancias en metros que los invitados a la fiesta de Joe recorren hasta la escuela. Nos devolverá el valor 193125." #. 7FWS4 #: 04060101.xhp @@ -5864,7 +5867,7 @@ "par_id3155119\n" "help.text" msgid "DVARP calculates the population variation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDVARP calcula la variación de la población basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos deben ignorarse." #. ERRmG #: 04060101.xhp @@ -5891,7 +5894,7 @@ "par_id3147099\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. 8puR2 #: 04060101.xhp @@ -5900,7 +5903,7 @@ "par_id3147322\n" "help.text" msgid "Insert the formula =DVARP(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the population variance of the distances in meters that Joe’s party guests travel to school. The value 171666.67 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDVARP(A1:E10; \"Distancia\"; A12:E13) en una celda vacía en otra parte de la hoja para encontrar la varianza poblacional de las distancias en metros que los invitados a la fiesta de Joe recorren hasta la escuela. Obtenemos el valor 171666,67." #. n99gx #: 04060102.xhp @@ -5918,7 +5921,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "funciones de fecha y horafunciones; fecha y horaAsistente de funciones; fecha y hora" +msgstr "funciones de fecha y horafunciones; fecha y horaAsistente para funciones; fecha y hora" #. 4twnp #: 04060102.xhp @@ -6188,7 +6191,7 @@ "par_id3147427\n" "help.text" msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "" +msgstr "AMORTIZ.PROGRE(Costo; Fecha de compra; Primer periodo; Valor residual; Periodo; Tasa [; Base])" #. bA2pT #: 04060103.xhp @@ -6251,7 +6254,7 @@ "par_id421612299085248\n" "help.text" msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming degressive depreciation, what is the amount of depreciation in the fourth depreciation period?" -msgstr "" +msgstr "Se adquirió un activo el 1 de febrero de 2020 a un coste de 2000 unidades monetarias. La fecha de finalización del primer período de liquidación fue el 31 de diciembre de 2020. El valor residual del activo al final de su vida amortizable será de 10 unidades monetarias. La tasa de depreciación es de 0,1 (10 %) y el ejercicio se calcula utilizando el método estadounidense (base 0). Suponiendo una depreciación decreciente, ¿cuál es el importe de la depreciación en el cuarto período de amortización?" #. qyD4t #: 04060103.xhp @@ -6260,7 +6263,7 @@ "par_id901612299089478\n" "help.text" msgid "=AMORDEGRC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0) returns a depreciation amount of 163 currency units." -msgstr "" +msgstr "=AMORTIZ.PROGRE(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0,1; 0) devuelve una cantidad de amortización de 163 unidades monetarias." #. AvpDv #: 04060103.xhp @@ -6269,7 +6272,7 @@ "par_id851616615176815\n" "help.text" msgid "Beware that Basis 2 is not supported by Microsoft Excel. Hence, if you use Basis 2 and export your document to XLSX format, it will return an error when opened in Excel." -msgstr "" +msgstr "Tenga en cuenta que Microsoft Excel no acepta Base 2. Por lo tanto, si utiliza Base 2 y exporta el documento al formato XLSX, nos devolverá un error cuando se abra en Excel." #. UCPgp #: 04060103.xhp @@ -6305,7 +6308,7 @@ "par_id3147363\n" "help.text" msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "" +msgstr "AMORTIZ.LIN(Costo; Fecha de compra; Primer periodo; Valor residual; Periodo; Tasa [; Base])" #. PsFjE #: 04060103.xhp @@ -10967,7 +10970,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Esta categoría contiene las funciones matemáticas de Calc. Para abrir el Asistente de funciones, diríjase a Insertar ▸ Función." +msgstr "Esta categoría contiene las funciones matemáticas de Calc. Para abrir el Asistente para funciones, diríjase a Insertar ▸ Función." #. bWDf7 #: 04060106.xhp @@ -14936,7 +14939,7 @@ "par_id0908200902475431\n" "help.text" msgid "=CONVERT_OOO(100;\"EUR\";\"DEM\") converts 100 euros into German marks." -msgstr "" +msgstr "=CONVERT_OOO(100;\"EUR\";\"DEM\") convierte 100 euros en marcos alemanes." #. PRgAD #: 04060106.xhp @@ -15593,7 +15596,7 @@ "bm_id3147273\n" "help.text" msgid "matrices; functionsFunction Wizard; arraysarray formulasinline array constantsformulas; arraysfunctions; array functionsediting; array formulascopying; array formulasdeleting; array formulasadjusting array rangescalculating; conditional calculationsmatrices; calculationsconditional calculations with arraysimplicit array handlingforced array handling" -msgstr "matrices; funcionesAsistente de funciones; matricesfórmulas matricialesconstantes de matrices en líneafórmulas; matricesfunciones; funciones matricialesedición; fórmulas matricialescopiar; fórmulas matricialesborrar; fórmulas matricialesajustar un intervalo matricialcálculo; cálculos condicionalesmatrices; cálculoscálculos de matriz condicionalmanejo implícito de matricesmanejo forzado de matrices" +msgstr "matrices; funcionesAsistente para funciones; matricesfórmulas matricialesconstantes de matrices en líneafórmulas; matricesfunciones; funciones matricialesedición; fórmulas matricialescopiar; fórmulas matricialesborrar; fórmulas matricialesajustar un intervalo matricialcálculo; cálculos condicionalesmatrices; cálculoscálculos de matriz condicionalmanejo implícito de matricesmanejo forzado de matrices" #. ALUph #: 04060107.xhp @@ -15755,7 +15758,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 "Para crear una fórmula matricial mediante el Asistente de funciones, deberá seleccionar la casilla de verificación Matriz para que los resultados se devuelvan en una matriz. En caso contrario, solo se devolverá el valor correspondiente a la celda superior izquierda de la matriz." +msgstr "Para crear una fórmula matricial mediante el Asistente para funciones, deberá seleccionar la casilla de verificación Matriz para que los resultados se devuelvan en una matriz. En caso contrario, solo se devolverá el valor correspondiente a la celda superior izquierda de la matriz." #. G9EUo #: 04060107.xhp @@ -16448,7 +16451,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 "Seleccione un intervalo de una sola columna donde introducir la frecuencia según los límites de la clase. Debe seleccionar un campo más que el campo superior de la clase. En este ejemplo, seleccione el intervalo C1:C6. Active la función FRECUENCIA mediante el Asistente de funciones. Seleccione el intervalo Datos en (A1:A11) y, a continuación, el intervalo Clases en el que haya introducido los límites de la clase (B1:B6). Active la casilla Matriz y pulse en Aceptar. Aparecerá el conteo de la frecuencia en el intervalo C1:C6." +msgstr "Seleccione un intervalo de una sola columna donde introducir la frecuencia según los límites de la clase. Debe seleccionar un campo más que el campo superior de la clase. En este ejemplo, seleccione el intervalo C1:C6. Active la función FRECUENCIA mediante el Asistente para funciones. Seleccione el intervalo Datos en (A1:A11) y, a continuación, el intervalo Clases en el que haya introducido los límites de la clase (B1:B6). Active la casilla Matriz y pulse en Aceptar. Aparecerá el conteo de la frecuencia en el intervalo C1:C6." #. shMJG #: 04060107.xhp @@ -17006,7 +17009,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 "La columna A contiene diversos valores de X1, la columna B diversos valores de X2 y la columna C, los valores Y. Estos valores ya están en la hoja de cálculo. Ha configurado el intervalo E2:G6 en la hoja de cálculo y ha abierto el Asistente de funciones. Para que la función ESTIMACION.LINEAL funcione, deberá seleccionar la casilla de verificación Matriz en el Asistente de funciones. A continuación seleccione los siguientes valores en la hoja de cálculo (o escríbalos con el teclado):" +msgstr "La columna A contiene diversos valores de X1, la columna B diversos valores de X2 y la columna C, los valores Y. Estos valores ya están en la hoja de cálculo. Ha configurado el intervalo E2:G6 en la hoja de cálculo y ha abierto el Asistente para funciones. Para que la función ESTIMACION.LINEAL funcione, deberá seleccionar la casilla de verificación Matriz en el Asistente para funciones. A continuación seleccione los siguientes valores en la hoja de cálculo (o escríbalos con el teclado):" #. KgyyZ #: 04060107.xhp @@ -19229,7 +19232,7 @@ "par_id3154104\n" "help.text" msgid "LOOKUP(Lookup; SearchVector [; ResultVector])" -msgstr "" +msgstr "BUSCAR(CriteriodeBúsqueda; VectordeBúsqueda [; VectordeResultado])" #. yGLLE #: 04060109.xhp @@ -19238,7 +19241,7 @@ "par_id3150646\n" "help.text" msgid "Lookup is the value of any type to be looked for; entered either directly or as a reference." -msgstr "" +msgstr "CriteriodeBúsqueda es el valor de cualquier tipo a buscar; introducido directamente o como referencia." #. tFDBC #: 04060109.xhp @@ -19400,7 +19403,7 @@ "par_id3155425\n" "help.text" msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])" -msgstr "" +msgstr "ELEGIR(Índice; Valor 1 [; Valor 2 [; ... [; Valor 30]]])" #. CNK7e #: 04060109.xhp @@ -19418,7 +19421,7 @@ "par_id3149939\n" "help.text" msgid "Value 1, Value 2, ..., Value 30 is the list of values entered as a reference to a cell or as individual values." -msgstr "" +msgstr "Valor 1, Valor 2, ..., Valor 30 esta es la lista de valores introducidos como referencia a una celda o como valores individuales." #. s64Du #: 04060109.xhp @@ -19463,7 +19466,7 @@ "par_id3146070\n" "help.text" msgid "HLOOKUP(Lookup; Array; Index [; SortedRangeLookup])" -msgstr "" +msgstr "BUSCARH(Búsqueda; Intervalo; Índice [; Búsqueda por intervalos ordenados])" #. nhwwF #: 04060109.xhp @@ -19607,7 +19610,7 @@ "par_id3154564\n" "help.text" msgid "Returns the row number of a cell reference. If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column Array if the formula is entered as an array formula. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned." -msgstr "" +msgstr "Nos devuelve el número de fila de una referencia de celda. Si la referencia es una celda, devuelve el número de fila de la celda. Si la referencia es un intervalo de celdas, nos devuelve los números de fila correspondientes en una columna Matriz si la fórmula se ingresa como fórmula de la matriz. Si no se utiliza la función FILA con una referencia de intervalo en una fórmula de matriz, sólo nos devolverá el número de fila de la primera celda del intervalo." #. 97EEE #: 04060109.xhp @@ -19841,7 +19844,7 @@ "par_idN11827\n" "help.text" msgid "=HYPERLINK(\"http://www.example.org\") displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked." -msgstr "" +msgstr "=HIPERVINCULO(\"http://www.example.org\") muestra el texto «http://www.example.org» en la celda y ejecuta el hiperenlace http://www.example.org cuando se pulsa." #. wHG7A #: 04060109.xhp @@ -19850,7 +19853,7 @@ "par_idN1182A\n" "help.text" msgid "=HYPERLINK(\"http://www.example.org\";\"Click here\") displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked." -msgstr "" +msgstr "=HIPERVINCULO(\"http://www.example.org\"; \"Pulse aquí\") muestra el texto «Pulse aquí» en la celda y ejecuta el hiperenlace http://www.example.org cuando se pulse." #. jamR2 #: 04060109.xhp @@ -19976,7 +19979,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 "Se asume la segunda sintaxis si se proporcionan exactamente dos parámetros, el primero de los cuales es una celda o una referencia a un intervalo de celdas. En el resto de los casos se asume la primera sintaxis. El Asistente de funciones muestra la primera sintaxis." +msgstr "Se asume la segunda sintaxis si se proporcionan exactamente dos parámetros, el primero de los cuales es una celda o una referencia a un intervalo de celdas. En el resto de los casos se asume la primera sintaxis. El Asistente para funciones muestra la primera sintaxis." #. Cwsfn #: 04060109.xhp @@ -20120,7 +20123,7 @@ "bm_id3145389\n" "help.text" msgid "text in cells; functions functions; text functions Function Wizard;text" -msgstr "texto en celdas; funcionesfunciones; funciones de textoAsistente de funciones; texto" +msgstr "texto en celdas; funcionesfunciones; funciones de textoAsistente para funciones; texto" #. DEMF7 #: 04060110.xhp @@ -23189,7 +23192,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 puede ampliarse por medio de complementos, módulos de programación externos que brindan prestaciones adicionales para trabajar con hojas de cálculo. El asistente de funciones enumera estos en la categoría Complemento. Si quiere programar su propio complemento, aquí encontrará las funciones que deben exportarse a través de la biblioteca compartidaDLL externa para que el complemento pueda adjuntarse adecuadamente." +msgstr "$[officename] Calc puede ampliarse por medio de complementos, módulos de programación externos que brindan prestaciones adicionales para trabajar con hojas de cálculo. El asistente para funciones enumera estos en la categoría Complemento. Si quiere programar su propio complemento, aquí encontrará las funciones que deben exportarse a través de la biblioteca compartidaDLL externa para que el complemento pueda adjuntarse adecuadamente." #. qyzrA #: 04060112.xhp @@ -23459,7 +23462,7 @@ "hd_id3150653\n" "help.text" msgid "GetFunctionCount()" -msgstr "GetFunctionCount()" +msgstr "Obtenerelrecuentodefunciones()" #. Hs7Du #: 04060112.xhp @@ -27680,7 +27683,7 @@ "par_id3149708\n" "help.text" msgid "Guess (optional) is a guess that can be input for the internal rate of return. The default is 10%." -msgstr "Valor estimado (opcional) es un valor estimado que puede ser ingresado para la tasa interna de retorno. El valor predeterminado es 10%." +msgstr "Valor estimado (opcional) es una estimación que puede introducirse para la tasa interna de retorno. El valor predeterminado es 10 %." #. dZESY #: 04060118.xhp @@ -27698,7 +27701,7 @@ "par_id3146856\n" "help.text" msgid "Received" -msgstr "" +msgstr "Recibido" #. N2RNr #: 04060118.xhp @@ -27707,7 +27710,7 @@ "par_id3149985\n" "help.text" msgid "Deposited" -msgstr "" +msgstr "Depositado" #. FLNWb #: 04060118.xhp @@ -27788,7 +27791,7 @@ "par_id3150525\n" "help.text" msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%." -msgstr "" +msgstr "Cálculo del valor presente neto de los cinco pagos antes mencionados para una tasa interna de retorno nacional del 6 %." #. YFtiD #: 04060118.xhp @@ -30218,7 +30221,7 @@ "par_id3153321\n" "help.text" msgid "NPV(Rate; )" -msgstr "" +msgstr "VNA(Tasa; )" #. EEL34 #: 04060119.xhp @@ -30713,7 +30716,7 @@ "par_id3154194\n" "help.text" msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent." -msgstr "" +msgstr "=RENDTO(\"1999-02-15\"; \"2007-11-15\"; 0,0575 ;95,04287; 100; 2; 0) devuelve 0,065, o el 6,50 por ciento." #. AeJmf #: 04060119.xhp @@ -31730,7 +31733,7 @@ "par_id3148585\n" "help.text" msgid "COUNT()" -msgstr "" +msgstr "CONTAR()" #. VBCGA #: 04060181.xhp @@ -31784,7 +31787,7 @@ "par_id3153111\n" "help.text" msgid "COUNTA()" -msgstr "" +msgstr "CONTARA()" #. QKY5C #: 04060181.xhp @@ -31892,7 +31895,7 @@ "par_id3164967\n" "help.text" msgid "COUNTIF(Range; Criterion)" -msgstr "" +msgstr "CONTAR.SI(Rango; Criterio)" #. sxGvB #: 04060181.xhp @@ -32000,7 +32003,7 @@ "par_id3148392\n" "help.text" msgid "B(Trials; SP; T1 [; T2])" -msgstr "" +msgstr "B(Ensayos; SP; T1 [; T2])" #. 5gx3q #: 04060181.xhp @@ -32153,7 +32156,7 @@ "par_id3156300\n" "help.text" msgid "BETAINV(Number; Alpha; Beta [; Start [; End]])" -msgstr "" +msgstr "DISTR.BETA.INV(Número; Alfa; Beta [; Inicio [; Fin]])" #. nrAdm #: 04060181.xhp @@ -32243,7 +32246,7 @@ "par_id2956300\n" "help.text" msgid "BETA.INV(Number; Alpha; Beta [; Start [; End]])" -msgstr "" +msgstr "INV.BETA.N(Número; Alfa; Beta [; Inicio [; Fin]])" #. 2fKqs #: 04060181.xhp @@ -32333,7 +32336,7 @@ "par_id3147571\n" "help.text" msgid "BETADIST(Number; Alpha; Beta [; Start [; End [; Cumulative]]])" -msgstr "" +msgstr "DISTR.BETA(Número; Alfa; Beta [; Inicio [;Fin [; Acumulativo]]])" #. jfrX3 #: 04060181.xhp @@ -32432,7 +32435,7 @@ "par_id2947571\n" "help.text" msgid "BETA.DIST(Number; Alpha; Beta; Cumulative [; Start [; End]])" -msgstr "" +msgstr "DISTR.BETA.N(Número; Alfa; Beta; Acumulativa [; Inicio [; Fin]])" #. VV9bt #: 04060181.xhp @@ -32792,7 +32795,7 @@ "par_id21585771564740\n" "help.text" msgid "CHISQINV(Probability; Degrees of Freedom)" -msgstr "" +msgstr "CHISQINV(Probabilidad; Grados de libertad)" #. KibGe #: 04060181.xhp @@ -33755,7 +33758,7 @@ "par_id2745774\n" "help.text" msgid "=CHISQ.DIST(3; 2; 1) equals 0.7768698399, the cumulative chi-square distribution with 2 degrees of freedom, at the value x = 3." -msgstr "" +msgstr "=DISTR.CHICUAD(3; 2; 1) equivale a 0.7768698399, la distribución acumulada de chi-cuadrado con 2 grados de libertad, en el valor x = 3." #. NE9BQ #: 04060181.xhp @@ -33872,7 +33875,7 @@ "par_id0119200902395679\n" "help.text" msgid "CHISQDIST(Number; Degrees Of Freedom [; Cumulative])" -msgstr "" +msgstr "CHISQDIST(Número; Grados de libertad [; Acumulativo])" #. nLEaF #: 04060181.xhp @@ -34619,7 +34622,7 @@ "par_id2945826\n" "help.text" msgid "F.DIST(Number; DegreesFreedom1; DegreesFreedom2 [; Cumulative])" -msgstr "" +msgstr "DIST.F(Número; Grados de libertad 1; Grados de libertad 2 [; Acumulativo])" #. TeZSu #: 04060182.xhp @@ -34781,7 +34784,7 @@ "par_id211585771824267\n" "help.text" msgid "GAMMA(Number)" -msgstr "" +msgstr "GAMMA(Número)" #. 2DdQa #: 04060182.xhp @@ -35096,7 +35099,7 @@ "par_id3155436\n" "help.text" msgid "GAMMADIST(Number; Alpha; Beta [; C])" -msgstr "" +msgstr "DISTR.GAMMA(Número; Alfa; Beta [; C])" #. erGE4 #: 04060182.xhp @@ -35456,7 +35459,7 @@ "par_id3153274\n" "help.text" msgid "ZTEST(Data; mu [; Sigma])" -msgstr "" +msgstr "PRUEBA.Z(Datos; mu [; Sigma])" #. RKyE7 #: 04060182.xhp @@ -35492,7 +35495,7 @@ "par_id0305200911372999\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Véase también elPágina de la Wiki." #. BM9oD #: 04060182.xhp @@ -35528,7 +35531,7 @@ "par_id2953274\n" "help.text" msgid "Z.TEST(Data; mu [; Sigma])" -msgstr "" +msgstr "PRUEBA.Z(Datos; mu [; Sigma])" #. 2peSH #: 04060182.xhp @@ -35600,7 +35603,7 @@ "par_id3149287\n" "help.text" msgid "HARMEAN()" -msgstr "" +msgstr "MEDIA.ARMO()" #. DMCH7 #: 04060182.xhp @@ -35645,7 +35648,7 @@ "par_id3155388\n" "help.text" msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation [; Cumulative])" -msgstr "" +msgstr "DISTR.HIPERGEOM(X; Ejemplo N; ; Éxitos; Población N [; Acumulativa])" #. ingyW #: 04060182.xhp @@ -35690,7 +35693,7 @@ "par_id231585952506847\n" "help.text" msgid "Cumulative (optional) specifies whether to calculate the probability mass function (FALSE or 0) or the cumulative distribution function (any other value). The probability mass function is the default if no value is specified for this parameter." -msgstr "" +msgstr "Acumulativo(opcional) especifica si se debe calcular la función de mayor probabilidad (FALSO o 0) o la función de distribución acumulada (cualquier otro valor). La función de mayor probabilidad es la predeterminada si no se especifica ningún valor para este parámetro." #. WUiB6 #: 04060182.xhp @@ -35870,7 +35873,7 @@ "par_id3156448\n" "help.text" msgid "RankC is the ranking of the value. If RankC is an array, the function becomes an array function." -msgstr "" +msgstr "Posición Ces la clasificación del valor. Si Posición C es un array, la función se convierte en una función de matriz." #. 9gMJx #: 04060183.xhp @@ -35879,7 +35882,7 @@ "par_id3148702\n" "help.text" msgid "=LARGE(A1:C50;2) gives the second largest value in A1:C50." -msgstr "" +msgstr "=MAYOR(A1:C50;2) da el segundo valor mas grande en A1:C50." #. fdcAk #: 04060183.xhp @@ -35888,7 +35891,7 @@ "par_id3248702\n" "help.text" msgid "=LARGE(A1:C50;B1:B5) entered as an array function gives an array of the c-th largest value in A1:C50 with ranks defined in B1:B5." -msgstr "" +msgstr "=K.ESIMO.MAYOR(A1:C50;B1:B5) ingresado como una función de matriz da una matriz del c-ésimo valor más grande en A1:C50 con rangos definidos en B1:B5." #. p8pZc #: 04060183.xhp @@ -36536,7 +36539,7 @@ "par_id3154508\n" "help.text" msgid "KURT()" -msgstr "" +msgstr "CURTOSIS()" #. qFqj4 #: 04060183.xhp @@ -36590,7 +36593,7 @@ "par_id3153049\n" "help.text" msgid "LOGINV(Number [; Mean [; StDev]])" -msgstr "" +msgstr "INV.LOG(Número [; Media [; Desviación Estándar]])" #. vDVWm #: 04060183.xhp @@ -36599,7 +36602,7 @@ "par_id3148390\n" "help.text" msgid "Number (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated." -msgstr "" +msgstr "Número(requerido) es el valor de probabilidad para el que se va a calcular la distribución logarítmica estándar inversa." #. aJATB #: 04060183.xhp @@ -36608,7 +36611,7 @@ "par_id3149538\n" "help.text" msgid "Mean (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)." -msgstr "" +msgstr "Media (opcional) es la media aritmética de la distribución logarítmica estándar (el valor predeterminado es 0 si se omite)." #. PDJWU #: 04060183.xhp @@ -36617,7 +36620,7 @@ "par_id3145355\n" "help.text" msgid "StDev (optional) is the standard deviation of the standard logarithmic distribution (defaults to 1 if omitted)." -msgstr "" +msgstr "DESVEST(opcional) es la desviación estándar de la distribución logarítmica estándar (el valor por defecto es 1 si se omite)." #. Uh6oi #: 04060183.xhp @@ -36689,7 +36692,7 @@ "par_id2901538\n" "help.text" msgid "Mean (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)." -msgstr "" +msgstr "Media (opcional) es la media aritmética de la distribución logarítmica estándar (el valor predeterminado es 0 si se omite)." #. pPM9C #: 04060183.xhp @@ -36707,7 +36710,7 @@ "par_id2901623\n" "help.text" msgid "=LOGNORM.INV(0.05;0;1) returns 0.1930408167." -msgstr "=INV.LOGNORM(0.05;0;1) devuelve 0.1930408167." +msgstr "=INV.LOGNORM(0,05;0;1) devuelve 0,1930408167." #. spVtz #: 04060183.xhp @@ -36743,7 +36746,7 @@ "par_id3150686\n" "help.text" msgid "LOGNORMDIST(Number [; Mean [; StDev [; Cumulative]]])" -msgstr "" +msgstr "DIS.LOG.NORM(Número [; Media [; Desviación Estándar [; Acumulada]]])" #. BiGC6 #: 04060183.xhp @@ -36932,7 +36935,7 @@ "par_id3147340\n" "help.text" msgid "MAX()" -msgstr "" +msgstr "MAX()" #. giyJK #: 04060184.xhp @@ -36995,7 +36998,7 @@ "par_id3166431\n" "help.text" msgid "MAXA()" -msgstr "" +msgstr "MAXA()" #. ZxXLp #: 04060184.xhp @@ -37049,7 +37052,7 @@ "par_id3155264\n" "help.text" msgid "MEDIAN()" -msgstr "" +msgstr "MEDIANA" #. bDCXJ #: 04060184.xhp @@ -37112,7 +37115,7 @@ "par_id3146964\n" "help.text" msgid "MIN()" -msgstr "" +msgstr "MIN()" #. yutoe #: 04060184.xhp @@ -37166,7 +37169,7 @@ "par_id3153336\n" "help.text" msgid "MINA()" -msgstr "" +msgstr "MINA()" #. TrF9C #: 04060184.xhp @@ -37220,7 +37223,7 @@ "par_id3145636\n" "help.text" msgid "AVEDEV()" -msgstr "" +msgstr "DESVPROM()" #. UA5P6 #: 04060184.xhp @@ -37265,7 +37268,7 @@ "par_id3154679\n" "help.text" msgid "AVERAGE()" -msgstr "" +msgstr "PROMEDIO()" #. AjUyH #: 04060184.xhp @@ -37310,7 +37313,7 @@ "par_id3149734\n" "help.text" msgid "AVERAGEA()" -msgstr "" +msgstr "PROMEDIOA" #. sxYNi #: 04060184.xhp @@ -37328,7 +37331,7 @@ "hd_id110421803716508\n" "help.text" msgid "" -msgstr "" +msgstr "" #. K3rLb #: 04060184.xhp @@ -37337,7 +37340,7 @@ "hd_id5471656631510\n" "help.text" msgid "" -msgstr "" +msgstr "" #. hKE9h #: 04060184.xhp @@ -37373,7 +37376,7 @@ "par_id3155950\n" "help.text" msgid "MODE()" -msgstr "" +msgstr "MODO()" #. VYNy2 #: 04060184.xhp @@ -37418,7 +37421,7 @@ "par_id2955950\n" "help.text" msgid "MODE.SNGL()" -msgstr "" +msgstr "MODA.UNO()" #. BGawC #: 04060184.xhp @@ -37472,7 +37475,7 @@ "par_id2855950\n" "help.text" msgid "MODE.MULT()" -msgstr "" +msgstr "MODA.VARIOS()" #. nrjtV #: 04060184.xhp @@ -37832,7 +37835,7 @@ "par_id3150613\n" "help.text" msgid "NORMDIST(Number; Mean; StDev [; C])" -msgstr "" +msgstr "DISTR.NORM(Número; Media; Derivación Estándar[; C])" #. CoXtp #: 04060184.xhp @@ -38066,7 +38069,7 @@ "par_id3150254\n" "help.text" msgid "Returns the value of the probability density function for a given value considering the standard normal distribution." -msgstr "" +msgstr "Devuelve el valor de la función de densidad de probabilidad para un valor dado considerando la distribución normal estándar." #. oEGwC #: 04060184.xhp @@ -38075,7 +38078,7 @@ "par_id151629986285891\n" "help.text" msgid "PHI(Number)" -msgstr "" +msgstr "PHI(Número)" #. 4JwEu #: 04060184.xhp @@ -38084,7 +38087,7 @@ "par_id3156108\n" "help.text" msgid "Number is the value for which the probability density function is calculated." -msgstr "" +msgstr "Númeroes el valor que se calcula para la función de densidad de probabilidad." #. 92hiK #: 04060184.xhp @@ -38093,7 +38096,7 @@ "par_id3155849\n" "help.text" msgid "=PHI(2.25) returns 0.0317." -msgstr "" +msgstr "=FI(2.25)devuelve 0.0317." #. NsLhE #: 04060184.xhp @@ -38102,7 +38105,7 @@ "par_id3143236\n" "help.text" msgid "=PHI(-2.25) also returns 0.0317 because the normal distribution is symmetrical." -msgstr "" +msgstr "=FI(-2.25)también devuelve 0.0317 ya que la distribución normal es simétrica." #. NXho4 #: 04060184.xhp @@ -38111,7 +38114,7 @@ "par_id3149286\n" "help.text" msgid "=PHI(0) returns 0.3989." -msgstr "" +msgstr "=FI(0)devuelve 0.3989." #. GMDrd #: 04060184.xhp @@ -38120,7 +38123,7 @@ "par_id611629985664328\n" "help.text" msgid "Calling PHI(Number) is equivalent to calling NORMDIST(Number,0,1,FALSE()) or NORM.S.DIST(Number;FALSE()), hence using the standard normal distribution with mean equal to 0 and standard deviation equal to 1 with the Cumulative argument set to False." -msgstr "" +msgstr "Llamar a FI(Número) es equivalente a llamar a.NORMDIST(Número,0,1,FALSO()) o NORM.S.DIST(Número; FALSO()), por lo que se utiliza la distribución normal estándar con media igual a 0 y la desviación estándar igual a 1 con la Acumulada establecido en Falso ." #. vqBTN #: 04060184.xhp @@ -38156,7 +38159,7 @@ "par_id3146093\n" "help.text" msgid "POISSON(Number; Mean [; C])" -msgstr "" +msgstr "POISSON(Número; Media [; C])" #. mZnNF #: 04060184.xhp @@ -38228,7 +38231,7 @@ "par_id2946093\n" "help.text" msgid "POISSON.DIST(Number; Mean ; Cumulative)" -msgstr "" +msgstr "DISTRIBUCIÓN DE POISSON(Número; Media; Acumulado)" #. jnjk7 #: 04060184.xhp @@ -38255,7 +38258,7 @@ "par_id2949200\n" "help.text" msgid "Cumulative = 0 or False to calculate the probability mass function; Cumulative = 1, True, or any other non-zero value to calculate the cumulative distribution function." -msgstr "" +msgstr "Acumulativa= 0 o Falso para calcular la función de mayor probabilidad;Acumulativa= 1, Verdadero, o cualquier otro valor distinto de cero para calcular la función de distribución acumulativa." #. gXFJQ #: 04060184.xhp @@ -38372,7 +38375,7 @@ "par_id2653976\n" "help.text" msgid "The difference between PERCENTILE.INC and PERCENTILE.EXC is that, in the PERCENTILE.INC function the value of alpha is within the range 0 to 1 inclusive, and in the PERCENTILE.EXC function, the value of alpha is within the range 0 to 1 exclusive." -msgstr "" +msgstr "La diferencia entre PERCENTIL.INC y PERCENTIL.EXC es que, en la función PERCENTIL.INC el valor de alfa esta dentro del rango de 0 a 1 inclusive, y en la función PERCENTIL.EXC el valor de alfa esta dentro del rango de 0 a 1 exclusivamente." #. iu26H #: 04060184.xhp @@ -38444,7 +38447,7 @@ "par_id2753976\n" "help.text" msgid "The difference between PERCENTILE.INC and PERCENTILE.EXC is that, in the PERCENTILE.INC function the value of alpha is within the range 0 to 1 inclusive, and in the PERCENTILE.EXC function, the value of alpha is within the range 0 to 1 exclusive." -msgstr "" +msgstr "La diferencia entre PERCENTIL.INC y PERCENTIL.EXC es que, en la función PERCENTIL.INC el valor de alfa esta dentro del rango de 0 a 1 inclusive, y en la función PERCENTIL.EXC el valor de alfa esta dentro del rango de 0 a 1 exclusivamente." #. LYbqG #: 04060184.xhp @@ -38597,7 +38600,7 @@ "par_id2847238\n" "help.text" msgid "PERCENTRANK.EXC(Data; Value [; Significance])" -msgstr "" +msgstr "RANGO PORCENTUAL.EXC(Datos; Valor [; Significatividad])" #. paUED #: 04060184.xhp @@ -38678,7 +38681,7 @@ "par_id2947238\n" "help.text" msgid "PERCENTRANK.INC(Data; Value [; Significance])" -msgstr "" +msgstr "RANGO.PERCENTIL.INC(Datos; Valor [; Significatividad])" #. QmR4b #: 04060184.xhp @@ -38975,7 +38978,7 @@ "par_id3153250\n" "help.text" msgid "RANK(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN(Valor; Datos [; Tipo])" #. AzAQx #: 04060185.xhp @@ -39074,7 +39077,7 @@ "par_id2953250\n" "help.text" msgid "RANK.AVG(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN.MEDIA(Valor; Datos [; Tipo])" #. 9jn8F #: 04060185.xhp @@ -39173,7 +39176,7 @@ "par_id2853250\n" "help.text" msgid "RANK.EQ(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN.EQ(Valor; Datos [; Tipo])" #. mncnk #: 04060185.xhp @@ -39263,7 +39266,7 @@ "par_id3151191\n" "help.text" msgid "SKEW()" -msgstr "" +msgstr "ASIMETRÍA " #. BmsyE #: 04060185.xhp @@ -39461,7 +39464,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR " #. H3V9F #: 04060185.xhp @@ -39479,7 +39482,7 @@ "par_id3149434\n" "help.text" msgid "=STDEV(A1:A50) returns the estimated standard deviation based on the data referenced." -msgstr "" +msgstr " = DESVIACIÓN ESTÁNDAR (A1:A50) devuelve la desviación estándar estimada en base a los datos referenciados." #. EaGD7 #: 04060185.xhp @@ -39515,7 +39518,7 @@ "par_id3147422\n" "help.text" msgid "STDEVA()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR A " #. iK7Ch #: 04060185.xhp @@ -39569,7 +39572,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR P" #. ADXhB #: 04060185.xhp @@ -39614,7 +39617,7 @@ "par_id2954392\n" "help.text" msgid "STDEV.P()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR.P" #. 9PAi8 #: 04060185.xhp @@ -39659,7 +39662,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR.S" #. fPUck #: 04060185.xhp @@ -39713,7 +39716,7 @@ "par_id3146851\n" "help.text" msgid "STDEVPA()" -msgstr "" +msgstr "DESVESTPA()" #. DL6D2 #: 04060185.xhp @@ -39722,7 +39725,7 @@ "par_id961585163990543\n" "help.text" msgid "Text has the value 0." -msgstr "" +msgstr "El texto tiene un valor de 0." #. avUGE #: 04060185.xhp @@ -40208,7 +40211,7 @@ "par_id3146790\n" "help.text" msgid "DEVSQ()" -msgstr "" +msgstr "DESVIA2()" #. tETcx #: 04060185.xhp @@ -40874,7 +40877,7 @@ "par_id3153054\n" "help.text" msgid "VAR()" -msgstr "" +msgstr "VAR()" #. qsPg5 #: 04060185.xhp @@ -40928,7 +40931,7 @@ "par_id2953054\n" "help.text" msgid "VAR.S()" -msgstr "" +msgstr "VAR.S()" #. GGJFX #: 04060185.xhp @@ -40982,7 +40985,7 @@ "par_id3149999\n" "help.text" msgid "VARA()" -msgstr "" +msgstr "VARA()" #. KSAnB #: 04060185.xhp @@ -41036,7 +41039,7 @@ "par_id3147282\n" "help.text" msgid "VARP()" -msgstr "" +msgstr "VARP()" #. PGCgC #: 04060185.xhp @@ -41081,7 +41084,7 @@ "par_id2947282\n" "help.text" msgid "VAR.P()" -msgstr "" +msgstr "VAR.P()" #. zF5Ys #: 04060185.xhp @@ -41126,7 +41129,7 @@ "par_id3149967\n" "help.text" msgid "VARPA()" -msgstr "" +msgstr "VARPA()" #. Fa9Jj #: 04060185.xhp @@ -41315,7 +41318,7 @@ "par_id3147330\n" "help.text" msgid "PROB(Data; Probability; Start [; End])" -msgstr "" +msgstr "PROBABILIDAD (Datos; Probabilidad; Inicio [; Fin])" #. Reoxn #: 04060185.xhp @@ -41477,7 +41480,7 @@ "par_id0305200911372899\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Consulte también la página del wiki." #. AC9jG #: 04060185.xhp @@ -41486,7 +41489,7 @@ "bm_id2950941\n" "help.text" msgid "WEIBULL.DIST function" -msgstr "WEIBULL.DIST" +msgstr "función DISTR.WEIBULL" #. 7pk6M #: 04060185.xhp @@ -41495,7 +41498,7 @@ "hd_id2950941\n" "help.text" msgid "WEIBULL.DIST" -msgstr "WEIBULL.DIST" +msgstr "DISTR.WEIBULL" #. 6o2Cy #: 04060185.xhp @@ -41594,7 +41597,7 @@ "par_id2905200911372899\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Consulte también la página del wiki." #. ZC7eG #: 04060199.xhp @@ -42908,7 +42911,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 "Abre la sección «Lista de funciones» de la barra lateral, que muestra todas las funciones que se pueden insertar en el documento. La sección Lista de funciones es similar a la pestaña Funciones del Asistente de funciones. Las funciones se insertarán con sustitutivos que debe reemplazar con sus propios valores." +msgstr "Abre el grupo Lista de funciones de la barra lateral, que muestra todas las funciones que se pueden insertar en el documento. La sección Lista de funciones es similar a la pestaña Funciones del Asistente para funciones. Las funciones se insertarán con sustitutivos que debe reemplazar con sus propios valores." #. kJGdD #: 04080000.xhp @@ -42989,7 +42992,7 @@ "par_id3153192\n" "help.text" msgid "Open a file dialog to locate the file containing the data you want to insert." -msgstr "" +msgstr "Abra el cuadro de dialogo del archivo para localizar el archivo que contiene los datos que desea insertar." #. kcfuM #: 04090000.xhp @@ -43025,7 +43028,7 @@ "par_id3145366\n" "help.text" msgid "Enter the URL or the file name that contains the data that you want to insert, and then press Enter. Alternatively, click Browse button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system." -msgstr "" +msgstr " Introduce la URL o el nombre del archivo que contiene los datos que desea insertar y después presione introducir. Alternativamente, pulsarBuscar enpara seleccionar el nombre del archivo en un cuadro de diálogo que se abre. Sólo entonces se solicitará la URL a la red o al sistema de archivos." #. oomVx #: 04090000.xhp @@ -43052,7 +43055,7 @@ "par_id3147397\n" "help.text" msgid "Select the table or the data range that you want to insert. If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and OK button will remain inactive" -msgstr "" +msgstr "Seleccione la tabla o el rango de datos que desea introducir. Si el documento de Calc o Exel seleccionado no contiene ningún rango con nombre, no se puede insertar los datos de la hoja de cálculo y OKpermanecerá inactivo." #. PVMSv #: 04090000.xhp @@ -43322,7 +43325,7 @@ "par_id3154758\n" "help.text" msgid "Determines the optimal row height for the selected rows. The optimal row height depends on the font size of the largest character in the row. You can use various units of measure." -msgstr "" +msgstr "Determina la altura óptima de las filas seleccionadas.La altura óptima de la fila depende del tamaño del tipo de letra mas grande de la fila. Puede utilizar varias.unidades de medida." #. hCkvc #: 05030200.xhp @@ -43448,7 +43451,7 @@ "par_id5532090\n" "help.text" msgid "Choose Format - Rows/Columns - Show or Format - Sheet - Show." -msgstr "" +msgstr "ElijaFormato - Filas/Columnas - MostraroFormato - Hoja - Mostrar." #. cGFcB #: 05030400.xhp @@ -43628,7 +43631,7 @@ "par_id3146120\n" "help.text" msgid "Defines the optimal column width in order to display the entire contents of the column. The additional spacing for the optimal column width is preset to 2 mm." -msgstr "" +msgstr "Define la anchura optima de la columna para mostrar todo su contenido.El espacio adicional para el ancho óptimo de la columna está preestablecido en 2 mm." #. CYMhG #: 05050000.xhp @@ -43763,7 +43766,7 @@ "par_id3155131\n" "help.text" msgid "Enter a new name for the sheet here." -msgstr "Ingrese aquí un nuevo nombre par ala Hoja ." +msgstr "Introduzca aquí un nombre nuevo para la hoja." #. JF3vh #: 05050100.xhp @@ -43853,7 +43856,7 @@ "bm_id501632012952361\n" "help.text" msgid "toggle merge and center cells" -msgstr "" +msgstr " alternar, combinar y centrar celdas" #. CQ5ZE #: 05060000.xhp @@ -43871,7 +43874,7 @@ "par_id3151246\n" "help.text" msgid "This is a toggleable control that joins all cells in a rectangular selection into a single cell, or returns merged cells to the original individual cells. When merging it will format the merged cell as center aligned." -msgstr "" +msgstr "Este es un control conmutable que une todas las celdas de una selección rectangular en una sola celda o devuelve las celdas combinadas a las celdas individuales originales. Cuando se fusiona, se formatea la celda combinada y se alinea al centro." #. b63oA #: 05060000.xhp @@ -43898,7 +43901,7 @@ "par_id441632808439621\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Siga uno de estos procedimientos:" #. bnEwD #: 05060000.xhp @@ -43934,7 +43937,7 @@ "par_id3154020\n" "help.text" msgid "Or, choose Format - Merge and Unmerge Cells - Merge and Center Cells." -msgstr "" +msgstr "O bien, vaya a Formato ▸ Combinar y separar celdas ▸ Combinar y centrar celdas." #. 8zues #: 05060000.xhp @@ -43943,7 +43946,7 @@ "par_id3149665\n" "help.text" msgid "Cells cannot be merged again without first unmerging them." -msgstr "" +msgstr "No es posible combinar nuevamente las celdas sin primero separarlas." #. Dybs6 #: 05060000.xhp @@ -43952,7 +43955,7 @@ "par_id581632979766784\n" "help.text" msgid "Merging a cell selection that partially includes merged cells is generally possible with Unmerge Cells followed by Merge Cells, without altering the initial selection. The result will be largely depend on previous choices when merging cells made with the Merge Cells Dialog options described below." -msgstr "" +msgstr "La combinación de una selección de celdas que incluye parcialmente las celdas combinadas es generalmente posible conSeparar Celdasseguido porCombinar Celdassin alterar la selección inicial. El resultado dependerá en gran medida de las elecciones anteriores al combinar celdas realizadas por elCuadro de dialogo y Combinar Celdasopciones que se describen a continuación." #. wNBDD #: 05060000.xhp @@ -43961,7 +43964,7 @@ "par_id3148552\n" "help.text" msgid "Multiple selection is not supported, that is, the selection must be rectangular." -msgstr "" +msgstr "No se admite la selección múltiple, es decir, la selección debe ser rectangular." #. XB4aH #: 05060000.xhp @@ -43970,7 +43973,7 @@ "par_id211632985508898\n" "help.text" msgid "The merged cell receives the name and content of the first cell of the selection." -msgstr "" +msgstr "La celda combinada recibe el nombre y el contenido de la primera celda de selección." #. XRBDv #: 05060000.xhp @@ -43979,7 +43982,7 @@ "par_id271632985709781\n" "help.text" msgid "If more than one cell to be merged has content the Merge Cells dialog opens." -msgstr "" +msgstr "Si más de una celda a combinar tiene contenido, se abre el cuadro de diálogo Combinar celdas." #. QWjJw #: 05060000.xhp @@ -43988,7 +43991,7 @@ "par_id391632360383197\n" "help.text" msgid "Merge Cells Dialog Options" -msgstr "" +msgstr "Opciones para combinar celdas del cuadro de dialogo." #. LBMEE #: 05060000.xhp @@ -44042,7 +44045,7 @@ "bm_id651593596384469\n" "help.text" msgid "style;pagepage;styleformat;pageformatting;page" -msgstr "" +msgstr "estilo; paginapágina; estiloformatear; páginaformato; pagina." #. Rpt6B #: 05070000.xhp @@ -44654,7 +44657,7 @@ "par_id3159488\n" "help.text" msgid "Opens a dialog where you can specify the print range. You can also set the rows or columns which are to be repeated in every page." -msgstr "" +msgstr "Abre un cuadro de diálogo en el que se puede especificar la zona de impresión. También puede establecer las filas o columnas que deben repetirse en cada página." #. eja4j #: 05080300.xhp @@ -44789,7 +44792,7 @@ "bm_id3150447\n" "help.text" msgid "Stylist, see Styles windowStyles windowformats; Styles windowformatting; Styles windowpaint can for applying stylesstyles in spreadsheetsstyles; in Calc" -msgstr "" +msgstr "Lista de estilos, ver Ventana de estilosVentana de estilosformatos; Ventana de estilosformateo; Ventana de estiloscolores para aplicar los estilosestilos en las hojas de cálculoestilos; en Calc" #. eA3vo #: 05100000.xhp @@ -44807,7 +44810,7 @@ "par_id3147434\n" "help.text" msgid "Use the Styles deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles." -msgstr "Utilice la sección Estilos de la barra lateral para asignar estilos a las celdas y las páginas. Puede aplicar, actualizar y modificar estilos o crear nuevos." +msgstr "Utilice el grupo Estilos de la barra lateral para asignar estilos a las celdas y las páginas. Puede aplicar, actualizar y modificar estilos o crear nuevos." #. nTiyj #: 05100000.xhp @@ -45014,7 +45017,7 @@ "par_id3150050\n" "help.text" msgid "Icon New Style from Selection" -msgstr "" +msgstr "Estilo nuevo a partir de la selección" #. aE4gp #: 05100000.xhp @@ -45086,7 +45089,7 @@ "par_idN109D1\n" "help.text" msgid "In the context menu you can choose commands to create a new style, delete a user-defined style, or change the selected style." -msgstr "" +msgstr "En el menú contextual puede elegir los comandos para crear un nuevo estilo, eliminar un estilo definido por el usuario o cambiar el estilo seleccionado." #. zdEoY #: 05100000.xhp @@ -45419,7 +45422,7 @@ "hd_id41624649786605\n" "help.text" msgid "Up" -msgstr "" +msgstr "Arriba" #. xSGWr #: 05120000.xhp @@ -45437,7 +45440,7 @@ "hd_id861624649792266\n" "help.text" msgid "Down" -msgstr "" +msgstr "Abajo" #. BAEJK #: 05120000.xhp @@ -45527,7 +45530,7 @@ "par_id31494139\n" "help.text" msgid "If you select Formula is as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches." -msgstr "" +msgstr "Si seleccionala fórmula escomo referencia, introduzca una referencia de celda. Si la referencia de celda es un valor distinto de cero, la condición coincide." #. bErXu #: 05120000.xhp @@ -45581,7 +45584,7 @@ "par_id3155605\n" "help.text" msgid "For a detailed explanation and examples, please visit How to apply a Color Scale Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Para una explicación detallada y con ejemplos, por favor visite. Cómo aplicar una página de formato condicional de escala de color en TDF Wiki." #. dACxH #: 05120000.xhp @@ -45590,7 +45593,7 @@ "par_id991609782427459\n" "help.text" msgid "Data Bar" -msgstr "" +msgstr "Barra de datos" #. xapwr #: 05120000.xhp @@ -45599,7 +45602,7 @@ "par_id41609780964157\n" "help.text" msgid "Data bar option will fill the cell with solid or gradient color corresponding to the numeric value in the cell. Default is blue for positive and red for negative." -msgstr "" +msgstr "La opción de la barra de datos rellenará la celda con un color sólido o degradado correspondiente al valor numérico de la celda. De manera predeterminada es azul para los positivos y rojo para los negativos." #. AKYoW #: 05120000.xhp @@ -45608,7 +45611,7 @@ "par_id931609781970981\n" "help.text" msgid "The calculation of the area of fill is based on Min - Max - Percentile - Value - Percent - Formula." -msgstr "" +msgstr "El cálculo del área de relleno se basa en Mínimo - Máximo - Porcentual - Valor - Porcentaje - Fórmula." #. smxFL #: 05120000.xhp @@ -45617,7 +45620,7 @@ "par_id981609782003841\n" "help.text" msgid "The choices Min and Max are sufficient to themselves as found in the range. Other options need to be specified by a value (Percentile, Value, Percentage) or a cell reference or formula (Formula)." -msgstr "" +msgstr "Las opciones Mínima y Máxima se bastan a sí mismas tal y como se encuentran en el rango. Otras opciones deben especificarse mediante un valor (Porcentual, Valor, Porcentaje) o una referencia de celda o fórmula (Fórmula)." #. qBVjM #: 05120000.xhp @@ -45626,7 +45629,7 @@ "par_id281609781729359\n" "help.text" msgid "More Options... opens a dialog to:" -msgstr "" +msgstr "Más opciones... abre un cuadro de diálogo para:" #. saDJA #: 05120000.xhp @@ -45635,7 +45638,7 @@ "par_id271609781812913\n" "help.text" msgid "change colors" -msgstr "" +msgstr "cambiar los colores" #. uncF8 #: 05120000.xhp @@ -45644,7 +45647,7 @@ "par_id921609781838551\n" "help.text" msgid "change position of vertical axis within the cell" -msgstr "" +msgstr "cambiar la posición del eje vertical dentro de la celda" #. wJNxE #: 05120000.xhp @@ -45761,7 +45764,7 @@ "par_id3155606\n" "help.text" msgid "For a detailed explanation and examples, please visit How to use Icon Set Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Para obtener una explicación detallada y ejemplos, visite la página Cómo utilizar el formato condicional por conjunto de iconos en el wiki de la TDF." #. GJTU3 #: 05120000.xhp @@ -46031,7 +46034,7 @@ "par_id3150447\n" "help.text" msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace." -msgstr "Tras haber definido un rastro, el puntero del ratón se puede situar sobre él. El puntero del ratón modifica su forma. Con este puntero, haga doble clic en el rastro para seleccionar la celda referenciada al final del rastro." +msgstr "Tras haber definido un rastro, sitúe el puntero del ratón sobre él. El puntero del ratón cambia de forma. Con este puntero, pulse dos veces en el rastro para seleccionar la celda referenciada al final de este." #. eFaMR #: 06030100.xhp @@ -46814,7 +46817,7 @@ "bm_id141619439455954\n" "help.text" msgid "insert rows;protected sheetinsert columns;protected sheetdelete columns;protected sheetdelete rows;protected sheetprotected sheet;insert columnsprotected sheet;insert rowsprotected sheet;delete rowsprotected sheet;delete columnsprotect;sheetselection;in protected cells" -msgstr "" +msgstr "insertar filas; hoja protegidainsertar columnas; hoja protegidaeliminar columnas; hoja protegidaeliminar filas; hoja protegidahoja protegida; insertar columnashoja protegida; insertar filashoja protegida; eliminar filashoja protegida; eliminar columnasproteger; hojaselección; en celdas protegidas" #. ZFcP8 #: 06060100.xhp @@ -46823,7 +46826,7 @@ "hd_id3153087\n" "help.text" msgid "Protecting Sheet" -msgstr "" +msgstr "Protección de hojas" #. LcpD8 #: 06060100.xhp @@ -46841,7 +46844,7 @@ "par_id701619429750616\n" "help.text" msgid "Choose Tools - Protect Sheet to open the Protect Sheet dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect." -msgstr "" +msgstr "EligeHerramientas - Proteger hojapara abrir elProteger hojacuadro de dialogo en el que podrá especificar la protección de la hoja con o sin contraseña, y seleccionar los elementos de la hoja que desea proteger." #. vFHpY #: 06060100.xhp @@ -46859,7 +46862,7 @@ "hd_id901619431276995\n" "help.text" msgid "Protect this sheet and contents of the protected cells" -msgstr "" +msgstr "Proteger esta hoja y el contenido de las celdas protegidas" #. G5UKV #: 06060100.xhp @@ -46895,7 +46898,7 @@ "hd_id711619431316966\n" "help.text" msgid "Allow users of this sheet to" -msgstr "" +msgstr "Permitir a los usuarios ésta hoja" #. skcWB #: 06060100.xhp @@ -46913,7 +46916,7 @@ "par_id661619430257262\n" "help.text" msgid "Select protected cells: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range." -msgstr "" +msgstr "Seleccione las celdas protegidasmarque esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla no está marcada, no puede seleccionar celdas protegidas, el cursor no puede entrar en un rango protegido." #. UqBRQ #: 06060100.xhp @@ -46922,7 +46925,7 @@ "par_id921619430295947\n" "help.text" msgid "Select unprotected cells: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range." -msgstr "" +msgstr "Seleccionar celdas no protegidasmarque esta casilla para permitir al usuario seleccionar celdas no protegidas. Cuando la casilla no está marcada, el usuario no puede seleccionar celdas no protegidas, el cursor no puede entrar en una celda o rango no protegido." #. R6DuD #: 06060100.xhp @@ -46931,7 +46934,7 @@ "par_id101619430333784\n" "help.text" msgid "Insert columns: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected." -msgstr "" +msgstr "Insertar columnasPermitir insertar columnas incluso cuando la hoja está protegida. Tenga en cuenta que cuando las inserciones de columnas están activadas, puede insertar columnas incluso cuando el rango en el que se insertan las nuevas columnas contiene celdas protegidas que se desplazarán después de la inserción. Las celdas de las columnas recién insertadas heredan la propiedad de Protección del rango al que pertenecen: cuando la nueva celda está dentro de un rango protegido, la celda está protegida, y cuando está en un rango no protegido, la celda está desprotegida." #. 36hCi #: 06060100.xhp @@ -46940,7 +46943,7 @@ "par_id891619430338809\n" "help.text" msgid "Insert rows: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected." -msgstr "" +msgstr "Insertar filasPermitir insertar filas incluso cuando la hoja está protegida. Tenga en cuenta que cuando las inserciones de filas están activadas, puede insertar filas incluso cuando el rango en el que se insertan las nuevas filas contiene celdas protegidas que se desplazarán después de la inserción. Las celdas de las filas recién insertadas heredan la propiedad de Protección del rango al que pertenecen: Cuando la nueva celda está dentro de un rango protegido está protegida, y cuando está en un rango no protegido, la celda no está protegida." #. hGXEq #: 06060100.xhp @@ -46949,7 +46952,7 @@ "par_id311619430374686\n" "help.text" msgid "Delete columns: Allow column deletions. Note that column deletions are only allowed on unprotected cells." -msgstr "" +msgstr "Eliminar columnasPermitir eliminar las columnas. Tenga en cuenta que la eliminación de columnas sólo se permiten en las celdas no protegidas." #. ebwLU #: 06060100.xhp @@ -46958,7 +46961,7 @@ "par_id561619430376854\n" "help.text" msgid "Delete rows: Allow row deletions. Note that row deletions are only allowed on unprotected cells." -msgstr "" +msgstr "Eliminar filasPermitir eliminar las filas. Tenga en cuenta que la eliminación de filas sólo se permiten en las celdas no protegidas." #. cE3Ff #: 06060100.xhp @@ -47022,6 +47025,8 @@ "help.text" msgid "On the Format - Cells - Cell Protection tab page, check the Protected box." msgstr "" +"En la pestañaFormato - Celdas - Protección de celdas\n" +"tabulador, marque la opciónProtegidocuadro." #. EeKFF #: 06060100.xhp @@ -47057,7 +47062,7 @@ "par_id3154656\n" "help.text" msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialog. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialog opens, where you must enter the password." -msgstr "" +msgstr "Una hoja o un rango de celdas protegidas no pueden modificarse hasta que se desactive esta protección, con las excepciones de la configuración de las columnas y la fila delHerramientas - Proteger hojacuadro de dialogo. Para desactivar la protección, elija la opciónHerramientas - Proteger hojaorden. Si no se ha establecido ninguna contraseña, la protección de la hoja se desactiva inmediatamente. Si la hoja estaba protegida con contraseña, laquitar protecciónse abre el cuadro de dialogo, donde debe introducir la contraseña." #. scXrG #: 06060100.xhp @@ -47156,7 +47161,7 @@ "par_id3150717\n" "help.text" msgid "You can completely protect your work by combining the options Tools - Protect Sheet and Tools - Protect Spreadsheet Structure, including password entry. If you want to prevent the document from being opened by other users, select Save With Password and click the Save button. The Enter Password dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document." -msgstr "" +msgstr "Puede proteger completamente su trabajo combinando las opcionesHerramientas - Proteger la hojayHerramientas - Proteger la estructura de la hoja de cálculoincluyendo la introducción de la contraseña. Si quiere evitar que el documento sea abierto por otros usuarios, seleccioneGuardar con contraseñay pulse en elGuardarbotón. LosIntroducir la contraseñaaparece el cuadro de diálogo. Tenga cuidado al elegir una contraseña; si la olvida después de cerrar un documento, no podrá acceder al documento." #. rH4Zz #: 06070000.xhp @@ -47174,7 +47179,7 @@ "bm_id3145673\n" "help.text" msgid "calculating; auto calculating sheetsrecalculate;auto calculating sheetsrecalculating;auto calculating sheetsAutoCalculate function in sheetscorrecting sheets automaticallyformulas;AutoCalculate functioncell contents;AutoCalculate function" -msgstr "" +msgstr "calculador; hojas de cálculo automáticorecalcular; hojas de auto cálculorecalcular; hojas de cálculo automáticofunción de auto cálculo en las hojascorregir hojas automáticamentefórmulas; función Auto Calcularcontenido de las celdas; función Auto Calcular" #. aruTj #: 06070000.xhp @@ -47219,7 +47224,7 @@ "bm_id3157909\n" "help.text" msgid "recalculating;all formulas in sheetsrecalculate;all formulas in sheetsformulas; recalculating manuallycell contents; recalculating" -msgstr "" +msgstr "recalcular; todas las fórmulas en las hojasrecalcular; todas las fórmulas en las hojasfórmulas; recalculando manualmentecontenido de la celda; recalculando" #. eVjX4 #: 06080000.xhp @@ -47237,7 +47242,7 @@ "par_id951584669541929\n" "help.text" msgid "Recalculates formula cells." -msgstr "" +msgstr "Vuelve a calcular las celdas de la fórmula." #. tCCr5 #: 06080000.xhp @@ -47246,7 +47251,7 @@ "par_id3154758\n" "help.text" msgid "If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them." -msgstr "" +msgstr "Si el cálculo automático está desactivado, la orden Volver a Calcular vuelve a calcular todas las celdas de fórmula (denominadas sucias) que dependen del contenido de la celda modificada y sus dependientes, y las celdas de fórmula que contienen funciones volátiles como RAND() o NOW() y las celdas de fórmula que dependen de ellas." #. QcG4R #: 06080000.xhp @@ -47255,7 +47260,7 @@ "par_id3154759\n" "help.text" msgid "If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them." -msgstr "" +msgstr "Si el cálculo automático está activado, la orden Volver a Calcular se aplica sólo a las celdas de fórmula que contienen funciones volátiles como ALEATORIO() o AHORA() y a las celdas de fórmula que dependen de ellas." #. CXEtC #: 06080000.xhp @@ -47264,7 +47269,7 @@ "par_id3154753\n" "help.text" msgid "In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation." -msgstr "" +msgstr "En cualquiera modo, con la(s) celda(s) de fórmula seleccionada(s), al presionar F9 se vuelven a calcular las celdas actualmente seleccionadas y las celdas de fórmula que dependen de ellas. Esto puede ser útil después de leer documentos con el recálculo desactivado y las celdas individuales necesitan ser recalculadas." #. jVUni #: 06080000.xhp @@ -47471,7 +47476,7 @@ "hd_id3150517\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "" +msgstr "Congelar filas y columnas" #. XjvVY #: 07090000.xhp @@ -47489,7 +47494,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congelar celdas" #. U6FYG #: 07090100.xhp @@ -47498,7 +47503,7 @@ "bm_id821612315529410\n" "help.text" msgid "freezing;first row freezing;first column freezing;cells" -msgstr "" +msgstr "congelación; primera filacongelación; primera columnacongelación; celda" #. tTzNC #: 07090100.xhp @@ -47507,7 +47512,7 @@ "hd_id961612313262512\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congelar celdas" #. sWGWB #: 07090100.xhp @@ -47516,7 +47521,7 @@ "par_id481612313262514\n" "help.text" msgid "Freezes the first column or the first row of the current spreadsheet." -msgstr "" +msgstr "Congela la primera columna o la primera fila de la hoja de cálculo actual." #. ozNTG #: 12010000.xhp @@ -47534,7 +47539,7 @@ "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "" +msgstr "Definir el intervalo" #. 8zFH5 #: 12010000.xhp @@ -47597,7 +47602,7 @@ "hd_id3153188\n" "help.text" msgid "Add/Modify" -msgstr "Agregar/Modificar" +msgstr "Añadir/Modificar" #. VBDQA #: 12010000.xhp @@ -47777,7 +47782,7 @@ "hd_id3145068\n" "help.text" msgid "Select Range" -msgstr "" +msgstr "Seleccione el intervalo" #. DjALP #: 12020000.xhp @@ -47822,7 +47827,7 @@ "hd_id3150275\n" "help.text" msgid "Sort" -msgstr "" +msgstr "Ordenar" #. BHBgn #: 12030000.xhp @@ -47840,7 +47845,7 @@ "par_id3147428\n" "help.text" msgid "You cannot sort data if the Record changes options is enabled." -msgstr "No se pueden ordenar datos si las opciones de cambios de registros de datos están habilitadas." +msgstr "No se puede ordenar los datos si alguna opción de Grabar cambios está activada." #. yfaxr #: 12030100.xhp @@ -48011,7 +48016,7 @@ "par_id3158212\n" "help.text" msgid "Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "" +msgstr "Ordena la selección de mayor a menor valor, o de menor a mayor valor. Los campos numéricos se ordenan por tamaño y los campos de texto por el orden de los caracteres. Puede definir las reglas de ordenación en Datos - Ordenar - Opciones.El orden por defecto se define en%NOMBRE DEL PRODUCTO-PreferenciasHerramientas - OpcionesConfiguración del idioma - Idiomas." #. cAFdw #: 12030100.xhp @@ -48074,7 +48079,7 @@ "par_id3153091\n" "help.text" msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies." -msgstr "" +msgstr "Ordena primero por letra mayúsculas y luego por letras minúsculas. Para los idiomas asiáticos, se aplica un orden especial." #. QbcU3 #: 12030200.xhp @@ -48083,7 +48088,7 @@ "par_idN10637\n" "help.text" msgid "For Asian languages: Check Case Sensitive to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison." -msgstr "" +msgstr "Para las lenguas asiáticas: ConsulteDistingue mayúsculas y minúsculaspara aplicar intercalación multinivel. Con la intercalación multinivel, las entradas se comparan primero en sus formas primitivas con sus mayúsculas y minúsculas y se ignoran los signos diacríticos. Si se evalúan como iguales, sus signos diacríticos se tienen en cuenta para la comparación de segundo nivel. Si todavía se evalúan como iguales, sus letras mayúsculas y minúsculas, el ancho de los caracteres y la diferencia de Kana japonés se consideran para la comparación de tercer nivel." #. Z5MKw #: 12030200.xhp @@ -48092,7 +48097,7 @@ "hd_id3155856\n" "help.text" msgid "Range contains row/column labels" -msgstr "" +msgstr "El rango contiene etiquetas de fila/columna" #. dHpeV #: 12030200.xhp @@ -48146,7 +48151,7 @@ "hd_id71610757096466\n" "help.text" msgid "Include boundary column(s)/row(s) containing only comments" -msgstr "" +msgstr "Incluir columna(s)/fila(s) de límite que contengan solo comentarios" #. AKcgf #: 12030200.xhp @@ -48155,7 +48160,7 @@ "par_id431610757186031\n" "help.text" msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted." -msgstr "" +msgstr "Las columnas límite del rango (para ordenar las filas) o las filas límite (para ordenar las columnas) de un rango de ordenación no se ordenan por defecto si están vacías. Marque esta opción si las columnas o filas límite que contienen comentarios también deben ordenarse." #. zDzUQ #: 12030200.xhp @@ -48164,7 +48169,7 @@ "hd_id161610757296697\n" "help.text" msgid "Include boundary column(s)/row(s) containing only images" -msgstr "" +msgstr "Incluir columna(s)/fila(s) delimitadora(s) que contenga(n) sólo imágenes" #. QCvRo #: 12030200.xhp @@ -48173,7 +48178,7 @@ "par_id181610758875786\n" "help.text" msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted." -msgstr "" +msgstr "Las columnas límite (para clasificar filas) o las filas límite (para clasificar columnas) de un área de clasificación no se clasifican por defecto si están vacías. Marque esta opción si las columnas de los bordes o las filas de los bordes que contienen imágenes también deben clasificarse." #. LBnqi #: 12030200.xhp @@ -48200,7 +48205,7 @@ "hd_id3153418\n" "help.text" msgid "Sort results (named ranges list)" -msgstr "" +msgstr "Ordenar los resultados (lista de rangos con nombre)" #. JGhWC #: 12030200.xhp @@ -48209,7 +48214,7 @@ "par_id3155602\n" "help.text" msgid " Select a named cell range where you want to display the sorted list." -msgstr "" +msgstr "Seleccione un nombrerango de celdasdonde desea mostrar la lista ordenada." #. nxJWR #: 12030200.xhp @@ -48218,7 +48223,7 @@ "hd_id3153707\n" "help.text" msgid "Sort results (input box)" -msgstr "" +msgstr "Ordenar los resultados (cuadro de entrada)" #. BDJEH #: 12030200.xhp @@ -48227,7 +48232,7 @@ "par_id3145642\n" "help.text" msgid "Enter the cell range where you want to display the sorted list." -msgstr "" +msgstr "Ingrese el rango de celdas donde desea mostrar la lista ordenada." #. ZCoZV #: 12030200.xhp @@ -48254,7 +48259,7 @@ "hd_id3154704\n" "help.text" msgid "Custom sort order list" -msgstr "" +msgstr "Lista de orden de clasificación personalizada" #. hQE6m #: 12030200.xhp @@ -48263,7 +48268,7 @@ "par_id3155962\n" "help.text" msgid " Select the custom sort order that you want to apply. To define a custom sort order, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Seleccione el orden de clasificación personalizado que desea aplicar. Para definir un orden de clasificación personalizado, seleccione%NOMBRE DEL PRODUCTO - PreferenciasHerramientas - Opciones%NOMBRE DEL PRODUCTO Calc - Ordenar listas" #. vH2Uh #: 12030200.xhp @@ -48452,7 +48457,7 @@ "hd_id101621534096986\n" "help.text" msgid "Sort Ascending" -msgstr "" +msgstr "Orden ascendente" #. u7XHt #: 12040100.xhp @@ -48461,7 +48466,7 @@ "par_id31621544435954\n" "help.text" msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column." -msgstr "" +msgstr "Muestre las filas del rango de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." #. 6Q8nn #: 12040100.xhp @@ -48470,7 +48475,7 @@ "hd_id561621534101425\n" "help.text" msgid "Sort Descending" -msgstr "" +msgstr "Orden descendiente" #. CbVJm #: 12040100.xhp @@ -48479,7 +48484,7 @@ "par_id861621544431393\n" "help.text" msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column." -msgstr "" +msgstr "Muestra las filas del rango de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." #. sHhH3 #: 12040100.xhp @@ -48497,7 +48502,7 @@ "par_id341621544426925\n" "help.text" msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown." -msgstr "" +msgstr "Muestra las 10 filas del rango de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." #. 4oiCy #: 12040100.xhp @@ -48551,7 +48556,7 @@ "par_id691621544414646\n" "help.text" msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected." -msgstr "" +msgstr "Muestra sólo las filas del rango de celdas para las que el color del texto de la celda en la columna actual coincide con el color seleccionado." #. pdme8 #: 12040100.xhp @@ -48569,7 +48574,7 @@ "par_id491621544410605\n" "help.text" msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected." -msgstr "" +msgstr "Muestra solo las filas del rango de celdas para las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." #. wCDB5 #: 12040100.xhp @@ -48605,7 +48610,7 @@ "par_id421621544399700\n" "help.text" msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries." -msgstr "" +msgstr "Busque una entrada específica en la lista de valores que se encuentran en la columna actual. A medida que se escriben caracteres en el cuadro de texto, esta lista se actualiza para mostrar solo las entradas coincidentes." #. igezW #: 12040100.xhp @@ -48623,7 +48628,7 @@ "par_id641621544394836\n" "help.text" msgid "Click once to select to show all rows and click again to select to hide all rows." -msgstr "" +msgstr "Pulse una vez para seleccionar y mostrar todas las filas , pulse de nuevo para seleccionar y ocultar todas las filas." #. EADGt #: 12040100.xhp @@ -48632,7 +48637,7 @@ "hd_id731621534146408\n" "help.text" msgid "Show only current" -msgstr "" +msgstr "Mostrar sólo la versión actual" #. FURWe #: 12040100.xhp @@ -48641,7 +48646,7 @@ "par_id71621544390147\n" "help.text" msgid "Display only rows containing the value highlighted in the Value box." -msgstr "" +msgstr "Mostrar solo las filas que contienen el valor resaltado en elValorcuadro." #. ovQAm #: 12040100.xhp @@ -48650,7 +48655,7 @@ "hd_id11621534151081\n" "help.text" msgid "Hide only current" -msgstr "" +msgstr "Ocultar sólo lo actual" #. EJgvW #: 12040100.xhp @@ -48659,7 +48664,7 @@ "par_id491621544384770\n" "help.text" msgid "Hide all rows containing the value highlighted in the Value box and display all other rows." -msgstr "" +msgstr "Oculta todas las filas que contienen el valor resaltado en el cuadro Valor y en el cuadro muestra todas las demás filas." #. kVCCi #: 12040100.xhp @@ -48992,7 +48997,7 @@ "hd_id3153822\n" "help.text" msgid "Subtotals" -msgstr "" +msgstr "Subtotales" #. 2jiYA #: 12050000.xhp @@ -49244,7 +49249,7 @@ "par_id3149400\n" "help.text" msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Utiliza un orden de clasificación personalizado que ha definido en el cuadro de diálogo Opciones enPRODUCTNAME Calc - Ordenar listas" #. 5w6FV #: 12050200.xhp @@ -49280,7 +49285,7 @@ "par_id3153766\n" "help.text" msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "" +msgstr "Ordena comenzando con el valor más alto. Puede definir las reglas de ordenación en Datos - Ordenar - Opciones.El valor por defecto se define en%NOMBRE DEL PRODUCTO - PreferenciaOpciones de herramientas- Ajustes de idioma - Idiomas" #. qjwrH #: 12060000.xhp @@ -49298,7 +49303,7 @@ "hd_id3153381\n" "help.text" msgid "Multiple Operations" -msgstr "" +msgstr "Operaciones Múltiples " #. WJG7J #: 12060000.xhp @@ -49406,7 +49411,7 @@ "hd_id3148946\n" "help.text" msgid "Consolidate" -msgstr "" +msgstr "Consolidar" #. LGBKi #: 12070000.xhp @@ -49613,7 +49618,7 @@ "hd_id3159154\n" "help.text" msgid "Link to source data" -msgstr "Conectar con datos fuente" +msgstr "Enlazar a datos de origen" #. CG7Gn #: 12070100.xhp @@ -49622,7 +49627,7 @@ "par_id3146986\n" "help.text" msgid "Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed." -msgstr "Vincula los datos del área de consolidación con los datos fuente y actualiza automáticamente los resultados de la consolidación en caso de modificación de dichos datos fuente." +msgstr "Enlaza los datos del intervalo de consolidación con los datos de origen y actualiza automáticamente los resultados de la consolidación en caso de que dichos datos de origen se modifiquen." #. AetFo #: 12070100.xhp @@ -49685,7 +49690,7 @@ "hd_id3147229\n" "help.text" msgid "Group" -msgstr "Agrupar..." +msgstr "Agrupar" #. 3AEgr #: 12080000.xhp @@ -50810,7 +50815,7 @@ "par_idN108F1\n" "help.text" msgid "If you double-click a field which has adjacent fields at the same level, the Show Detail dialog opens:" -msgstr "Si hace doble clic en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo Mostrar detalle:" +msgstr "Si pulsa dos veces en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo Mostrar detalle:" #. qExkE #: 12090102.xhp @@ -55355,7 +55360,7 @@ "par_id2309201512011592\n" "help.text" msgid "Ignore only hidden rows" -msgstr "Ignorar solos filas ocultas" +msgstr "Ignorar solo filas ocultas" #. eDQoE #: func_aggregate.xhp @@ -55364,7 +55369,7 @@ "par_id230920151201150\n" "help.text" msgid "Ignore only errors" -msgstr "Ignorar solo los errores" +msgstr "Ignorar solo errores" #. AEVKM #: func_aggregate.xhp @@ -56327,7 +56332,7 @@ "par_id3155000\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Significatividad (opcional) es el valor, o una referencia a una celda que contiene el valor, a cuyo múltiplo Número se redondeará. Su valor predeterminado es +1 o −1, en función del signo de Número." #. AosjB #: func_ceiling.xhp @@ -56408,7 +56413,7 @@ "par_id2953422\n" "help.text" msgid "Rounds a number up to the nearest multiple of a significance value." -msgstr "Redondea al alza un número hacia el múltiplo de significación más próximo." +msgstr "Redondea al alza un número hacia el múltiplo de significatividad más próximo." #. BjuBa #: func_ceiling.xhp @@ -56435,7 +56440,7 @@ "par_id2953454\n" "help.text" msgid "CEILING.PRECISE(Number [; Significance])" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.EXACTO(Número [; Significatividad])" #. FaYeD #: func_ceiling.xhp @@ -56453,7 +56458,7 @@ "par_id201586213398634\n" "help.text" msgid "=CEILING.PRECISE(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.EXACTO(3.45) devuelve 4." #. KxeUC #: func_ceiling.xhp @@ -56462,7 +56467,7 @@ "par_id651586213406243\n" "help.text" msgid "=CEILING.PRECISE(-45.67; 2) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.EXACTO(-45.67; 2) devuelve -44." #. WV9bx #: func_ceiling.xhp @@ -56471,7 +56476,7 @@ "bm_id911516997198644\n" "help.text" msgid "CEILING.MATH function" -msgstr "" +msgstr "Función MULTIPLO.SUPERIOR.MAT" #. 7xeKu #: func_ceiling.xhp @@ -56480,7 +56485,7 @@ "hd_id91516997330445\n" "help.text" msgid "CEILING.MATH" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.MAT" #. AzJvD #: func_ceiling.xhp @@ -56507,7 +56512,7 @@ "par_id291516998575663\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Esta función existe por razones de interoperatividad con Microsoft Excel, versión 2013 o más reciente." #. pcXnS #: func_ceiling.xhp @@ -56543,7 +56548,7 @@ "par_id331586208590009\n" "help.text" msgid "=CEILING.MATH(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(3.45) devuelve 4." #. g5xAQ #: func_ceiling.xhp @@ -56552,7 +56557,7 @@ "par_id481586208595809\n" "help.text" msgid "=CEILING.MATH(3.45; -3) returns 6." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(3.45; -3) devuelve 6." #. Eby7i #: func_ceiling.xhp @@ -56561,7 +56566,7 @@ "par_id641586208600665\n" "help.text" msgid "=CEILING.MATH(-1.234) returns -1." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-1.234) devuelve -1." #. T4orc #: func_ceiling.xhp @@ -56570,7 +56575,7 @@ "par_id151586208604536\n" "help.text" msgid "=CEILING.MATH(-45.67; -2; 0) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-45,67; -2; 0) devuelve -44." #. opt6B #: func_ceiling.xhp @@ -56579,7 +56584,7 @@ "par_id971586208611345\n" "help.text" msgid "=CEILING.MATH(-45.67; +2; 1) returns -46." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-45,67; +2; 1) devuelve -46." #. EzE9t #: func_ceiling.xhp @@ -56687,7 +56692,7 @@ "hd_id8952518\n" "help.text" msgid "ISO.CEILING" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.ISO" #. 5beBC #: func_ceiling.xhp @@ -56723,7 +56728,7 @@ "par_id8953454\n" "help.text" msgid "ISO.CEILING(Number [; Significance])" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.ISO(Número [; Significatividad])" #. hwhCW #: func_ceiling.xhp @@ -56741,7 +56746,7 @@ "par_id801586214431463\n" "help.text" msgid "=ISO.CEILING(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.ISO(3.45) devuelve 4." #. QHpJp #: func_ceiling.xhp @@ -56750,7 +56755,7 @@ "par_id181586214438808\n" "help.text" msgid "=ISO.CEILING(-45.67; 2) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.ISO(-45.67; 2) devuelve -44." #. GuEcB #: func_color.xhp @@ -56858,7 +56863,7 @@ "tit\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "Función CONCAT" #. WEfAD #: func_concat.xhp @@ -56867,7 +56872,7 @@ "bm_id741556228031712\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "Función CONCAT" #. BCZMB #: func_concat.xhp @@ -56876,7 +56881,7 @@ "hd_id471556226436779\n" "help.text" msgid "CONCAT" -msgstr "" +msgstr "CONCAT" #. jUBjE #: func_concat.xhp @@ -56912,7 +56917,7 @@ "par_id911556226813412\n" "help.text" msgid "CONCAT( )" -msgstr "" +msgstr "CONCAT( )" #. aTwgH #: func_concat.xhp @@ -56975,7 +56980,7 @@ "par_id761620414839890\n" "help.text" msgid "The measurement units recognized by CONVERT fall into 13 groups, which are listed below. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups." -msgstr "" +msgstr "Las unidades de medida reconocidas por CONVERTIR se dividen en 13 grupos, que se enumeran a continuación. CONVERTIR realizará conversiones entre dos unidades dentro de un grupo, pero rechazará cualquier solicitud de conversión entre unidades en diferentes grupos." #. x6USE #: func_convert.xhp @@ -56984,7 +56989,7 @@ "par_id861620428840333\n" "help.text" msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown below." -msgstr "" +msgstr "También puede agregar prefijos binarios y decimales a las unidades de medida que los admitan. La lista de todos los prefijos y sus correspondientes multiplicadores se muestra abajo." #. GvB7m #: func_convert.xhp @@ -57002,7 +57007,7 @@ "par_id23219159944266\n" "help.text" msgid "CONVERT(Number; FromUnit; ToUnit)" -msgstr "" +msgstr "CONVERTIR(Número; DesdeUnidad; AUnidad)" #. RiLFj #: func_convert.xhp @@ -57020,7 +57025,7 @@ "par_id3154472\n" "help.text" msgid "FromUnit is the unit from which conversion is taking place." -msgstr "" +msgstr "DesdeUnidad es la unidad a partir de la cual se realiza la conversión." #. d2Hrk #: func_convert.xhp @@ -57029,7 +57034,7 @@ "par_id3153790\n" "help.text" msgid "ToUnit is the unit to which conversion is taking place. Both units must be of the same type." -msgstr "" +msgstr "AUnidad es la unidad a la que se realiza la conversión. Ambas unidades deben ser del mismo tipo." #. 7D2db #: func_convert.xhp @@ -57038,7 +57043,7 @@ "par_id541620414925560\n" "help.text" msgid "If FromUnit and ToUnit are not valid units from the same group, then CONVERT reports an invalid argument error (Err:502)." -msgstr "" +msgstr "Si DesdeUnidad y AUnidad no son unidades válidas del mismo grupo, entonces CONVERTIR informa un error de argumento no válido (Error:502)." #. gq5EJ #: func_convert.xhp @@ -57056,7 +57061,7 @@ "par_id951620413562988\n" "help.text" msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value." -msgstr "" +msgstr "Aquí la función convierte -10 grados Celsius a grados Fahrenheit, devolviendo el valor 14. No existe una relación multiplicativa simple entre las unidades de temperatura, ya que se utilizan diferentes puntos de referencia. Por lo tanto, como en este caso, un número negativo de entrada puede convertirse en un valor positivo." #. CQPne #: func_convert.xhp @@ -57065,7 +57070,7 @@ "par_id3154834\n" "help.text" msgid "=CONVERT(3.5; \"mi\"; \"yd\")" -msgstr "" +msgstr "=CONVERTIR(3.5; \"mi\"; \"yd\")" #. xaEX2 #: func_convert.xhp @@ -57074,7 +57079,7 @@ "par_id971620413678102\n" "help.text" msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group." -msgstr "" +msgstr "Aquí la función convierte 3,5 millas internacionales a yardas, devolviendo el valor 6160. Ambas unidades están en el grupo de longitud y distancia." #. 3GMEy #: func_convert.xhp @@ -57083,7 +57088,7 @@ "par_id741620413834726\n" "help.text" msgid "=CONVERT(256; \"Gibit\"; \"Mibyte\")" -msgstr "" +msgstr "=CONVERTIR(256; \"Gibit\"; \"Mibyte\")" #. pdEtf #: func_convert.xhp @@ -57092,7 +57097,7 @@ "par_id261620413900652\n" "help.text" msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes." -msgstr "" +msgstr "Aquí la función convierte 256 gigibits a mebibytes, devolviendo el valor 32768. Ambas unidades (bit y byte) están en el grupo Información y admiten prefijos binarios." #. cdqCp #: func_convert.xhp @@ -57101,7 +57106,7 @@ "par_id761620413966496\n" "help.text" msgid "=CONVERT(1; \"dyn\"; \"e\")" -msgstr "" +msgstr "=CONVERTIR(1; \"dyn\"; \"e\")" #. vDR5q #: func_convert.xhp @@ -57110,7 +57115,7 @@ "par_id531620414005955\n" "help.text" msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)." -msgstr "" +msgstr "Aquí la función devuelve un error de argumento no válido (Error:502) ya que las dos unidades (dina y ergio) están en grupos diferentes (Fuerza y Energía respectivamente)." #. DGVq5 #: func_convert.xhp @@ -57128,7 +57133,7 @@ "par_id481620428685029\n" "help.text" msgid "Below are the unit measurement groups supported by the CONVERT function. Beware that conversions can only happen between units that belong to the same group." -msgstr "" +msgstr "A continuación se muestran los grupos de unidades de medida admitidos por la función CONVERTIR. Tenga en cuenta que las conversiones solo pueden ocurrir entre unidades que pertenecen al mismo grupo." #. Rd9Fp #: func_convert.xhp @@ -57137,7 +57142,7 @@ "par_id461620429183259\n" "help.text" msgid "The column Prefix indicates whether or not a given unit of measurement supports prefixes." -msgstr "" +msgstr "La columna Prefijo indica si una determinada unidad de medida admite o no prefijos." #. ELyFm #: func_convert.xhp @@ -57254,7 +57259,7 @@ "par_id731620416024782\n" "help.text" msgid "Square international mile" -msgstr "" +msgstr "Milla internacional cuadrada" #. 4i4iC #: func_convert.xhp @@ -57272,7 +57277,7 @@ "par_id661620416251507\n" "help.text" msgid "Square nautical mile" -msgstr "" +msgstr "Milla náutica cuadrada" #. hCiCS #: func_convert.xhp @@ -57281,7 +57286,7 @@ "par_id791620416251948\n" "help.text" msgid "Square pica point" -msgstr "" +msgstr "Punto de pica cuadrado" #. ZfeRr #: func_convert.xhp @@ -57299,7 +57304,7 @@ "par_id621620416418311\n" "help.text" msgid "International acre" -msgstr "" +msgstr "Acre internacional." #. AsFDV #: func_convert.xhp @@ -57308,7 +57313,7 @@ "par_id71620416418768\n" "help.text" msgid "US survey acre" -msgstr "" +msgstr "Acre de agrimensura de EE. UU." #. vFpVJ #: func_convert.xhp @@ -57317,7 +57322,7 @@ "par_id71620416418025\n" "help.text" msgid "Square yard" -msgstr "" +msgstr "Yarda cuadrada" #. Y8KWb #: func_convert.xhp @@ -57362,7 +57367,7 @@ "par_id797688281572156\n" "help.text" msgid "British thermal unit" -msgstr "" +msgstr "Unidad Térmica Británica." #. nu34E #: func_convert.xhp @@ -57371,7 +57376,7 @@ "par_id844417659281393\n" "help.text" msgid "Thermochemical calorie" -msgstr "" +msgstr "Caloría termoquímica" #. DBTz9 #: func_convert.xhp @@ -57380,7 +57385,7 @@ "par_id672765982649722\n" "help.text" msgid "International Steam Table calorie" -msgstr "" +msgstr "Caloría de la Tabla Internacional del Vapor" #. uw6BK #: func_convert.xhp @@ -57389,7 +57394,7 @@ "par_id798492531882282\n" "help.text" msgid "erg" -msgstr "" +msgstr "Ergio" #. i9qGV #: func_convert.xhp @@ -57398,7 +57403,7 @@ "par_id547247548598782\n" "help.text" msgid "Electron volt" -msgstr "" +msgstr "Electronvoltio" #. sLtDD #: func_convert.xhp @@ -57407,7 +57412,7 @@ "par_id587393171297892\n" "help.text" msgid "Foot-pound" -msgstr "" +msgstr "Pie-libra" #. 2GjCu #: func_convert.xhp @@ -57416,7 +57421,7 @@ "par_id695171299238861\n" "help.text" msgid "Horsepower-hour" -msgstr "" +msgstr "Caballo de potencia por hora" #. ZPZRc #: func_convert.xhp @@ -57542,7 +57547,7 @@ "par_id297688664469184\n" "help.text" msgid "Newton" -msgstr "Newton" +msgstr "Neutonio" #. EEy3q #: func_convert.xhp @@ -57560,7 +57565,7 @@ "par_id472715992174398\n" "help.text" msgid "Pond" -msgstr "" +msgstr "Pondio" #. Z8snf #: func_convert.xhp @@ -57740,7 +57745,7 @@ "par_id343241931577938\n" "help.text" msgid "Pica point" -msgstr "" +msgstr "Punto de pica" #. J45F6 #: func_convert.xhp @@ -57758,7 +57763,7 @@ "par_id579641593251685\n" "help.text" msgid "US survey mile" -msgstr "" +msgstr "Milla topográfica de EE.UU." #. bHo6X #: func_convert.xhp @@ -57857,7 +57862,7 @@ "par_id613492674545171\n" "help.text" msgid "Pennyweight" -msgstr "" +msgstr "«Pennyweight»" #. BE88d #: func_convert.xhp @@ -57866,7 +57871,7 @@ "par_id566783887997575\n" "help.text" msgid "Slug" -msgstr "" +msgstr "«Slug»" #. VmfEH #: func_convert.xhp @@ -57875,7 +57880,7 @@ "par_id731498557457276\n" "help.text" msgid "Stone" -msgstr "" +msgstr "«Stone»" #. ZLyGB #: func_convert.xhp @@ -57956,7 +57961,7 @@ "par_id578436173796358\n" "help.text" msgid "Mechanical horsepower" -msgstr "" +msgstr "Caballo de potencia mecánico" #. M6req #: func_convert.xhp @@ -58100,7 +58105,7 @@ "par_id391572877557741\n" "help.text" msgid "Admiralty knot" -msgstr "" +msgstr "Nudo del Almirantazgo" #. X3yym #: func_convert.xhp @@ -58109,7 +58114,7 @@ "par_id152721538362456\n" "help.text" msgid "International knot" -msgstr "" +msgstr "Nudo internacional" #. KAWp4 #: func_convert.xhp @@ -58352,7 +58357,7 @@ "par_id545825775819166\n" "help.text" msgid "Oil barrel" -msgstr "" +msgstr "Barril de petróleo" #. a3nDk #: func_convert.xhp @@ -58361,7 +58366,7 @@ "par_id976829653577442\n" "help.text" msgid "US bushel" -msgstr "" +msgstr "Bushel de EE.UU." #. Fb3dj #: func_convert.xhp @@ -58370,7 +58375,7 @@ "par_id184258429676826\n" "help.text" msgid "US cup" -msgstr "" +msgstr "Taza de EE.UU." #. z98AU #: func_convert.xhp @@ -58397,7 +58402,7 @@ "par_id938562498562468\n" "help.text" msgid "Australian glass (200 milliliters)" -msgstr "" +msgstr "Vaso australiano (200 mililitros)" #. vFvu4 #: func_convert.xhp @@ -58406,7 +58411,7 @@ "par_id471177863127144\n" "help.text" msgid "Gross register tonnage" -msgstr "" +msgstr "Tonelaje de arqueo bruto" #. tM2GH #: func_convert.xhp @@ -58415,7 +58420,7 @@ "par_id347175644673122\n" "help.text" msgid "Humpen (500 milliliters)" -msgstr "" +msgstr "Humpen (500 mililitros)" #. 3jCKA #: func_convert.xhp @@ -58460,7 +58465,7 @@ "par_id463843338576911\n" "help.text" msgid "Cubic international mile" -msgstr "" +msgstr "Milla cúbica internacional" #. apJka #: func_convert.xhp @@ -58469,7 +58474,7 @@ "par_id995778363641811\n" "help.text" msgid "Australian middy (285 milliliters)" -msgstr "" +msgstr "Middy australiano (285 mililitros)" #. 5vKXB #: func_convert.xhp @@ -58478,7 +58483,7 @@ "par_id894695318848125\n" "help.text" msgid "Measurement ton" -msgstr "" +msgstr "Tonelada de medición" #. gAxRC #: func_convert.xhp @@ -58487,7 +58492,7 @@ "par_id392284181269245\n" "help.text" msgid "Cubic nautical mile" -msgstr "" +msgstr "Milla náutica cúbica" #. GLMFQ #: func_convert.xhp @@ -58496,7 +58501,7 @@ "par_id371262895179554\n" "help.text" msgid "US fluid ounce" -msgstr "" +msgstr "Onza líquida estadounidense" #. KdjB5 #: func_convert.xhp @@ -58505,7 +58510,7 @@ "par_id956867693183654\n" "help.text" msgid "Cubic pica" -msgstr "" +msgstr "Pica cúbica" #. wPWak #: func_convert.xhp @@ -58514,7 +58519,7 @@ "par_id698697624265559\n" "help.text" msgid "US pint" -msgstr "" +msgstr "Pinta estadounidense" #. oaVnc #: func_convert.xhp @@ -58523,7 +58528,7 @@ "par_id615917164511264\n" "help.text" msgid "US quart" -msgstr "" +msgstr "Cuarto de galón estadounidense" #. nFgfR #: func_convert.xhp @@ -58532,7 +58537,7 @@ "par_id653481929342877\n" "help.text" msgid "Australian schooner (425 milliliters)" -msgstr "" +msgstr "Goleta australiana (425 mililitros)" #. yumuN #: func_convert.xhp @@ -58541,7 +58546,7 @@ "par_id912821548196546\n" "help.text" msgid "Six pack (2 liters)" -msgstr "" +msgstr "Paquete de seis (2 litros)" #. GNQxR #: func_convert.xhp @@ -58550,7 +58555,7 @@ "par_id248216629889251\n" "help.text" msgid "US tablespoon" -msgstr "" +msgstr "Cucharada estadounidense" #. Bs5pc #: func_convert.xhp @@ -58559,7 +58564,7 @@ "par_id745625921159327\n" "help.text" msgid "US teaspoon" -msgstr "" +msgstr "Cucharadita estadounidense" #. oFoZf #: func_convert.xhp @@ -58568,7 +58573,7 @@ "par_id864223151994899\n" "help.text" msgid "Metric teaspoon" -msgstr "" +msgstr "Cucharadita métrica" #. 6eLBT #: func_convert.xhp @@ -58577,7 +58582,7 @@ "par_id311759289592485\n" "help.text" msgid "Imperial gallon" -msgstr "" +msgstr "Galón imperial" #. zJyLT #: func_convert.xhp @@ -58586,7 +58591,7 @@ "par_id673293916128784\n" "help.text" msgid "Imperial pint" -msgstr "" +msgstr "Pinta imperial" #. f9zhg #: func_convert.xhp @@ -58595,7 +58600,7 @@ "par_id213353742979736\n" "help.text" msgid "Imperial quart" -msgstr "" +msgstr "Cuarto de galón imperial" #. TGDmn #: func_convert.xhp @@ -58676,7 +58681,7 @@ "par_id871621424421294\n" "help.text" msgid "CONVERT Wiki page" -msgstr "" +msgstr "Página Wiki de CONVERTIR" #. JEUej #: func_countifs.xhp @@ -58703,7 +58708,7 @@ "hd_id456845684568\n" "help.text" msgid "COUNTIFS" -msgstr "" +msgstr "CONTAR.SI.CONJUNTO" #. pGTzr #: func_countifs.xhp @@ -58712,7 +58717,7 @@ "par_id462646264626\n" "help.text" msgid "Returns the count of cells that meet criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el recuento de celdas que cumplen los criterios en varios intervalos." #. jbwVT #: func_countifs.xhp @@ -58721,7 +58726,7 @@ "par_id27421466710275\n" "help.text" msgid "COUNTIFS(Range; Criterion[; Range2; Criterion2][; ... ; [Range127; Criterion127]])" -msgstr "" +msgstr "CONTAR.SI.CONJUNTO(Rango; Criterio[; Rango2; Criterio2][; ... ; [Rango127; Criterio127]])" #. KTAXW #: func_countifs.xhp @@ -58730,7 +58735,7 @@ "par_id14734320631377\n" "help.text" msgid "Range, Range2, ... and Criterion, Criterion2, ... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Rango, Rango2, ... y Criterio, Criterio2, ... deben tener el mismo tamaño, de lo contrario la función devuelve error:502 - Argumento no válido." #. ZuFZj #: func_countifs.xhp @@ -59081,7 +59086,7 @@ "par_id908841\n" "help.text" msgid "Number of whole days between Start date and End date." -msgstr "Número de días completos entre Fecha de inicio y Fecha de final." +msgstr "Número de días completos entre Fecha de inicio y Fecha de finalización." #. KTzdL #: func_datedif.xhp @@ -59090,7 +59095,7 @@ "par_id9841608\n" "help.text" msgid "Number of whole months between Start date and End date." -msgstr "Número de meses completos entre Fecha de inicio y Fecha de final." +msgstr "Número de meses completos entre Fecha de inicio y Fecha de finalización." #. jMGKG #: func_datedif.xhp @@ -59099,7 +59104,7 @@ "par_id2136295\n" "help.text" msgid "Number of whole years between Start date and End date." -msgstr "Número de años completos entre Fecha de inicio y Fecha de final." +msgstr "Número de años completos entre Fecha de inicio y Fecha de finalización." #. 8tDzh #: func_datedif.xhp @@ -59108,7 +59113,7 @@ "par_id4186223\n" "help.text" msgid "Number of whole months when subtracting years from the difference of Start date and End date." -msgstr "Número de meses completos al restar los años de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de meses completos al restar los años de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. jShMp #: func_datedif.xhp @@ -59117,7 +59122,7 @@ "par_id1491134\n" "help.text" msgid "Number of whole days when subtracting years and months from the difference of Start date and End date." -msgstr "Número de días completos al restar los años y los meses de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de días completos al restar los años y los meses de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. 9uGY2 #: func_datedif.xhp @@ -59126,7 +59131,7 @@ "par_id1591134\n" "help.text" msgid "Number of whole days when subtracting years from the difference of Start date and End date." -msgstr "Número de días completos al restar los años de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de días completos al restar los años de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. Pc57T #: func_datedif.xhp @@ -59414,7 +59419,7 @@ "par_id3151376\n" "help.text" msgid "Date1 is the start date, Date2 is the end date. If Date2 is an earlier date than Date1 the result is a negative number." -msgstr "Datos1 es la fecha de inicio, Datos2 es la fecha final. Si Datos2 es una fecha anterior a Datos1 el resultado es un número negativo." +msgstr "Datos1 es la fecha de inicio, Datos2 es la fecha de finalización. Si Datos2 es una fecha anterior a Datos1 el resultado es un número negativo." #. hjctD #: func_days.xhp @@ -59423,7 +59428,7 @@ "par_id3159101\n" "help.text" msgid "=DAYS(NOW();\"2010-01-01\")) returns the number of days from January 1, 2010 until today." -msgstr "" +msgstr "=DIAS(AHORA();\"2010-01-01\")) devuelve el número de días desde el 1 de enero de 2010 hasta hoy." #. GwLS3 #: func_days.xhp @@ -59477,7 +59482,7 @@ "par_id3155313\n" "help.text" msgid "DAYS360(Date1; Date2[; Type])" -msgstr "" +msgstr "DIAS360(Fecha1; Fecha2[; Tipo])" #. 5qfGz #: func_days360.xhp @@ -59783,7 +59788,7 @@ "par_id3156144\n" "help.text" msgid "=EOMONTH(\"2001-09-14\";6) works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings." -msgstr "" +msgstr "=FIN.MES(\"2001-09-14\";6) también funciona. Si especifica la fecha directamente, le recomendamos que utilice el formato estándar ISO 8601, ya que debería ser independiente de la configuración regional seleccionada." #. Lu8Ng #: func_eomonth.xhp @@ -59792,7 +59797,7 @@ "par_id681621540307527\n" "help.text" msgid "EOMONTH wiki page" -msgstr "" +msgstr "Página wiki FIN.MES" #. BNTm6 #: func_error_type.xhp @@ -60026,7 +60031,7 @@ "par_id12475201719494\n" "help.text" msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned." -msgstr "La función ESERROR devuelve Verdadero o Falso dependiendo si hay un error o no. Si el error ocurre, la función SI direcciona al segundo argumento, si no hay error, devuelve el resultado de la división. El segundo argumento comprueba el número índice que representa un tipo de error específico y si es igual a 2 devuelve el texto \"el denominador no pude ser cero\" o 0 en cualquier otro caso. Así el texto en claro muestra la división por cero, el resultado de la división se muestra cuando la división es correcta o si hay, por ejemplo, un error de otro tipo, devuelve 0." +msgstr "La función ESERROR devuelve Verdadero o Falso en función de la existencia o no de un error. Si el error ocurre, la función SI responde al segundo argumento; si no hay error, devuelve el resultado de la división. El segundo argumento comprueba el número índice que representa un tipo de error específico y si es igual a 2 devuelve el texto «El denominador no puede ser cero» o 0 en cualquier otro caso. Así, el texto en claro muestra la división por cero, el resultado de la división se muestra cuando la división es correcta o si hay, por ejemplo, un error de otro tipo, devuelve 0." #. 8XdGp #: func_error_type.xhp @@ -60071,7 +60076,7 @@ "bm_id141573508995071\n" "help.text" msgid "FINDB Function find text;FINDB Function" -msgstr "" +msgstr "Función ENCONTRARB buscar texto;Función ENCONTRARB" #. WmZAa #: func_findb.xhp @@ -60080,7 +60085,7 @@ "hd_id771573508637966\n" "help.text" msgid "FINDB" -msgstr "" +msgstr "ENCONTRARB" #. iW2EE #: func_findb.xhp @@ -60089,7 +60094,7 @@ "par_id831573508637970\n" "help.text" msgid "Returns the starting position of a given text, using byte positions. FINDB is case sensitive." -msgstr "" +msgstr "Devuelve la posición inicial de un texto dado, usando posiciones de bytes. ENCONTRARB distingue entre mayúsculas y minúsculas." #. 4ztby #: func_findb.xhp @@ -60098,7 +60103,7 @@ "par_id221573517641172\n" "help.text" msgid "FINDB(Find Text ; Text [; Position])" -msgstr "" +msgstr "ENCONTRARB(Buscar texto; Texto [; Posición])" #. puQAw #: func_findb.xhp @@ -60107,7 +60112,7 @@ "par_id241573517292388\n" "help.text" msgid "Find Text: The text or text expression to be found." -msgstr "" +msgstr "Buscar texto: el texto o la expresión de texto que se buscará." #. YgyTW #: func_findb.xhp @@ -60116,7 +60121,7 @@ "par_id991573517299918\n" "help.text" msgid "Text: the text in which the search is to be made." -msgstr "" +msgstr "Texto: el texto en el que se va a realizar la búsqueda." #. pfYPq #: func_findb.xhp @@ -60125,7 +60130,7 @@ "par_id521573517305077\n" "help.text" msgid "Position: The position in the text where the search starts." -msgstr "" +msgstr "Posición: la posición en el texto donde comienza la búsqueda." #. okEBS #: func_findb.xhp @@ -60134,7 +60139,7 @@ "par_id481573517830373\n" "help.text" msgid "=FINDB(\"a\"; \"LibreOffice Calc\") returns 15. The Find Text argument is a text string that comprises a full-width, double-byte \"a\" character, while the Text argument comprises 12 single-byte characters followed by four full-width, double-byte characters." -msgstr "" +msgstr "=ENCONTRARB(\"a\"; \"LibreOffice Calc\") devuelve 15. El argumento Buscar texto es una cadena de texto que comprende una \"a\" de doble byte de ancho completo carácter, mientras que el argumento Texto consta de 12 caracteres de un solo byte seguidos de cuatro caracteres de doble byte de ancho completo." #. aACGP #: func_floor.xhp @@ -60143,7 +60148,7 @@ "tit\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "Funciones MULTIPLO.INFERIOR" #. RuCRw #: func_floor.xhp @@ -60152,7 +60157,7 @@ "hd_id391586285373874\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "Funciones MULTIPLO.INFERIOR" #. hkrkw #: func_floor.xhp @@ -60161,7 +60166,7 @@ "bm_id3157404\n" "help.text" msgid "FLOOR functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "función MULTIPLO.INFERIORredondear;a la baja al múltiplo de significatividad más cercano" #. KoqGL #: func_floor.xhp @@ -60170,7 +60175,7 @@ "hd_id3157404\n" "help.text" msgid "FLOOR" -msgstr "" +msgstr "MULTIPLO.INFERIOR" #. VSV8H #: func_floor.xhp @@ -60179,7 +60184,7 @@ "par_id3157432\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. 345Fr #: func_floor.xhp @@ -60188,7 +60193,7 @@ "par_id661586285977707\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs." -msgstr "" +msgstr "Para un número positivo y un valor de significatividad positivo, la función redondea hacia abajo (hacia cero). Para un número negativo y un valor de significatividad negativo, la dirección del redondeo está determinada por el valor de un parámetro de modo. La función devuelve un error si el número y los valores de significatividad tienen signos opuestos." #. 5kHtR #: func_floor.xhp @@ -60206,7 +60211,7 @@ "par_id3157464\n" "help.text" msgid "FLOOR(Number[; Significance[; Mode]])" -msgstr "" +msgstr "MULTIPLO.INFERIOR(Número[; Significatividad[; Modo]])" #. ERf3D #: func_floor.xhp @@ -60215,7 +60220,7 @@ "par_id3153467\n" "help.text" msgid "Number is the number that is to be rounded, or a reference to a cell containing the number." -msgstr "" +msgstr "Número es el número que se va a redondear o una referencia a una celda que contiene el número." #. 8w8tL #: func_floor.xhp @@ -60224,7 +60229,7 @@ "par_id3157497\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Significatividad (opcional) es el valor, o una referencia a una celda que contiene el valor, a cuyo múltiplo Número se redondeará. Su valor predeterminado es +1 o −1, en función del signo de Número." #. qCpHR #: func_floor.xhp @@ -60233,7 +60238,7 @@ "par_id3157517\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. The function only uses Mode if both Number and Significance are negative. Then if Mode is given and not equal to zero, numbers are rounded up (towards zero); if Mode is equal to zero or not given, negative numbers are rounded down (away from zero)." -msgstr "" +msgstr "Modo (opcional) es un número o una referencia a una celda que contiene un número. La función solo usa Modo si tanto Número como Significatividad son negativos. Entonces, si se da Modo y no es igual a cero, los números se redondean hacia arriba (hacia cero); si Modo es igual a cero o no se proporciona, los números negativos se redondean hacia abajo (lejos de cero)." #. EU85r #: func_floor.xhp @@ -60242,7 +60247,7 @@ "par_id761586287595376\n" "help.text" msgid "=FLOOR(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(3,45) devuelve 3." #. vuJc5 #: func_floor.xhp @@ -60251,7 +60256,7 @@ "par_id311586287600048\n" "help.text" msgid "=FLOOR(3.45, 3) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(3,45; 3) devuelve 3." #. uTWTb #: func_floor.xhp @@ -60260,7 +60265,7 @@ "par_id661586287604519\n" "help.text" msgid "=FLOOR(-1.234) returns -2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-1,234) devuelve −2." #. 8ZGDc #: func_floor.xhp @@ -60269,7 +60274,7 @@ "par_id741586287608968\n" "help.text" msgid "=FLOOR(-45.67, -2, 0) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-45,67; -2; 0) devuelve −46." #. gXsTm #: func_floor.xhp @@ -60278,7 +60283,7 @@ "par_id431586287616089\n" "help.text" msgid "=FLOOR(-45.67, -2, 1) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-45,67; -2; 1) devuelve −44." #. zzTLr #: func_floor.xhp @@ -60287,7 +60292,7 @@ "bm_id811586290952465\n" "help.text" msgid "FLOOR.MATH function" -msgstr "" +msgstr "función MULTIPLO.INFERIOR.MAT" #. rEELD #: func_floor.xhp @@ -60296,7 +60301,7 @@ "hd_id1001586287279297\n" "help.text" msgid "FLOOR.MATH" -msgstr "" +msgstr "MULTIPLO.INFERIOR.MAT" #. BBjwd #: func_floor.xhp @@ -60305,7 +60310,7 @@ "par_id721586287302689\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. UJLZc #: func_floor.xhp @@ -60314,7 +60319,7 @@ "par_id311586287323417\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored." -msgstr "" +msgstr "Para un número positivo, la función se redondea hacia abajo (hacia cero). Para un número negativo, la dirección del redondeo está determinada por el valor de un parámetro de modo. Se ignora el signo del valor de significatividad." #. 4weAd #: func_floor.xhp @@ -60323,7 +60328,7 @@ "par_id851586287535879\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Esta función existe por razones de interoperatividad con Microsoft Excel, versión 2013 o más reciente." #. 4DFyG #: func_floor.xhp @@ -60332,7 +60337,7 @@ "par_id161586287421523\n" "help.text" msgid "FLOOR.MATH(Number[; Significance[; Mode]])" -msgstr "" +msgstr "MULTIPLO.INFERIOR.MAT(Número[; Significatividad[; Modo]])" #. Un6FB #: func_floor.xhp @@ -60350,7 +60355,7 @@ "par_id261586287494401\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. If Mode is given and not equal to zero, a negative Number is rounded up (towards zero). If Mode is equal to zero or is not given, a negative Number is rounded down (away from zero)." -msgstr "" +msgstr "Modo (opcional) es un número o una referencia a una celda que contiene un número. Si se proporciona Modo y no es igual a cero, un Número negativo se redondea hacia arriba (hacia cero). Si Modo es igual a cero o no se proporciona, un Número negativo se redondea hacia abajo (lejos de cero)." #. wCd8C #: func_floor.xhp @@ -60359,7 +60364,7 @@ "par_id101586287621816\n" "help.text" msgid "=FLOOR.MATH(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(3,45) devuelve 3." #. p27MD #: func_floor.xhp @@ -60368,7 +60373,7 @@ "par_id771586287627784\n" "help.text" msgid "=FLOOR.MATH(3.45,-3) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(3,45;-3) devuelve 3." #. Fehfx #: func_floor.xhp @@ -60377,7 +60382,7 @@ "par_id981586287632392\n" "help.text" msgid "=FLOOR.MATH(-1.234) returns -2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-1,234) devuelve −2." #. eQfea #: func_floor.xhp @@ -60386,7 +60391,7 @@ "par_id631586287637256\n" "help.text" msgid "=FLOOR.MATH(-45.67,-2, 0) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-45,67;-2; 0) devuelve −46." #. XXqpS #: func_floor.xhp @@ -60395,7 +60400,7 @@ "par_id371586287641888\n" "help.text" msgid "=FLOOR.MATH(-45.67,+2, 1) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-45,67;+2; 1) devuelve −44." #. 9MJem #: func_floor.xhp @@ -60404,7 +60409,7 @@ "bm_id2957404\n" "help.text" msgid "FLOOR.PRECISE functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "FUNCIÓN MULTIPLO.INFERIOR.EXACTOredondeo;hacia abajo al múltiplo de significatividad más cercano" #. niyQj #: func_floor.xhp @@ -60413,7 +60418,7 @@ "hd_id2957404\n" "help.text" msgid "FLOOR.PRECISE" -msgstr "" +msgstr "MULTIPLO.INFERIOR.EXACTO" #. DgQBx #: func_floor.xhp @@ -60422,7 +60427,7 @@ "par_id2957432\n" "help.text" msgid "Rounds a number down to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número hacia abajo al múltiplo más cercano de un valor de significatividad." #. NHMnz #: func_floor.xhp @@ -60431,7 +60436,7 @@ "par_id261586641501175\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the function rounds down (away form zero). The sign of the significance value is ignored." -msgstr "" +msgstr "Para un número positivo, la función se redondea hacia abajo (hacia cero). Para un número negativo, la función redondea hacia abajo (lejos de cero). Se ignora el signo del valor de significatividad." #. ni9y2 #: func_floor.xhp @@ -60440,7 +60445,7 @@ "par_id2957464\n" "help.text" msgid "FLOOR.PRECISE(Number[; Significance])" -msgstr "" +msgstr "MULTIPLO.INFERIOR.EXACTO(Número[; Significatividad])" #. pirHp #: func_floor.xhp @@ -60458,7 +60463,7 @@ "par_id981586291388900\n" "help.text" msgid "=FLOOR.PRECISE(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.EXACTO(3,45) devuelve 3." #. Q9vnd #: func_floor.xhp @@ -60467,7 +60472,7 @@ "par_id831586291395477\n" "help.text" msgid "=FLOOR.PRECISE(-45.67,2) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.EXACTO(-45,67;2) devuelve −46." #. HnS5F #: func_floor.xhp @@ -60476,7 +60481,7 @@ "bm_id171586291849333\n" "help.text" msgid "FLOOR.XCL function" -msgstr "" +msgstr "función MULTIPLO.INFERIOR.XCL" #. LMEET #: func_floor.xhp @@ -60485,7 +60490,7 @@ "hd_id791586291468176\n" "help.text" msgid "FLOOR.XCL" -msgstr "" +msgstr "MULTIPLO.INFERIOR.XCL" #. WMsAT #: func_floor.xhp @@ -60494,7 +60499,7 @@ "par_id521586291476023\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. jrymG #: func_floor.xhp @@ -60503,7 +60508,7 @@ "par_id401586291488768\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a positive significance value, the function rounds down (away from zero). For a negative number and a negative significance value, the function rounds up (towards zero). The function returns an error if the number is positive and the significance value is negative." -msgstr "" +msgstr "Para un número positivo y un valor de significatividad positivo, la función redondea hacia abajo (hacia cero). Para un número negativo y un valor de significatividad positivo, la función redondea hacia abajo (lejos de cero). Para un número negativo y un valor de significatividad negativo, la función redondea hacia arriba (hacia cero). La función devuelve un error si el número es positivo y el valor de significatividad es negativo." #. BFXRR #: func_floor.xhp @@ -60512,7 +60517,7 @@ "par_id231586291503319\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s FLOOR.XCL function are exported as references to Excel’s FLOOR function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s FLOOR function are imported as references to Calc’s FLOOR.XCL function." -msgstr "" +msgstr "Esta función existe para la interoperatividad con Microsoft Excel 2007 o anterior. Si una hoja de cálculo de Calc se exporta a Microsoft Excel, las referencias a la función MULTIPLO.INFERIOR.XCL de Calc se exportan como referencias a la función MULTIPLO.INFERIOR de Excel, que es compatible con todas las versiones de Excel. Si se importa una hoja de cálculo de Microsoft Excel a Calc, las referencias a la función MULTIPLO.INFERIOR de Excel se importan como referencias a la función MULTIPLO.INFERIOR.XCL de Calc." #. WA7uC #: func_floor.xhp @@ -60521,7 +60526,7 @@ "par_id491586291532177\n" "help.text" msgid "FLOOR.XCL(Number; Significance)" -msgstr "" +msgstr "MULTIPLO.INFERIOR.XCL(Número; Significatividad)" #. aRww7 #: func_floor.xhp @@ -60539,7 +60544,7 @@ "par_id531586291622306\n" "help.text" msgid "=FLOOR.XCL(3.45,2) returns 2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(3,45;2) devuelve 2." #. gFyGC #: func_floor.xhp @@ -60548,7 +60553,7 @@ "par_id361586291628003\n" "help.text" msgid "=FLOOR.XCL(-45.67,2) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(-45,67;2) devuelve −46." #. EU7xy #: func_floor.xhp @@ -60557,7 +60562,7 @@ "par_id801586291641099\n" "help.text" msgid "=FLOOR.XCL(-45.67,-2) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(-45,67;-2) devuelve −44." #. 2YcR7 #: func_forecastetsadd.xhp @@ -60791,7 +60796,7 @@ "par_id0603201617141750\n" "help.text" msgid "Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Calcula los intervalos de predicción para el pronóstico aditivo en función de los datos históricos usando algoritmos ETS o EDS. EDS se usa cuando el argumento duración_período es 0, de lo contrario se utiliza ETS." #. ZnBVX #: func_forecastetspiadd.xhp @@ -61322,7 +61327,7 @@ "par_id121556227727948\n" "help.text" msgid "Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms. The function is an array formula." -msgstr "" +msgstr "Calcula la transformada discreta de Fourier [DFT] de una matriz de entrada de números complejos usando un par de algoritmos de transformada rápida de Fourier (FFT). La función es una fórmula de matriz." #. xGHaG #: func_fourier.xhp @@ -61331,7 +61336,7 @@ "par_id541556228253979\n" "help.text" msgid "FOURIER(Array; GroupedByColumns [; Inverse [; Polar [; MinimumMagnitude]]])" -msgstr "" +msgstr "FOURIER(Matriz; AgrupadasPorColumnas [; Inversa [; Polar [; MagnitudMínima]]])" #. ELSK7 #: func_fourier.xhp @@ -61340,7 +61345,7 @@ "par_id741556228390897\n" "help.text" msgid "Array is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "" +msgstr "Matriz es un rango de 2 x N o N x 2 que representa una matriz de números complejos a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." #. xTPa5 #: func_fourier.xhp @@ -61349,7 +61354,7 @@ "par_id621556228397269\n" "help.text" msgid "GroupedByColumns is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE the array is grouped by columns where the first column contains the real part of the complex number and the second columns contains the imaginary part of the complex number. When FALSE, the first row contains the real part of the complex number and the second row contains the imaginary part of the complex number. If there is only 1 column (row), the input sequence is treated as purely real." -msgstr "" +msgstr " AgrupadoPorColumnas es un argumento lógico (VERDADERO o FALSO, 1 o 0). Cuando es VERDADERO, la matriz se agrupa por columnas, donde la primera columna contiene la parte real del número complejo y la segunda columna contiene la parte imaginaria del número complejo. Cuando es FALSO, la primera fila contiene la parte real del número complejo y la segunda fila contiene la parte imaginaria del número complejo. Si solo hay 1 columna (fila), la secuencia de entrada se trata como puramente real." #. tbzAA #: func_fourier.xhp @@ -61358,7 +61363,7 @@ "par_id631556228516997\n" "help.text" msgid "Inverse is an optional logical (TRUE or FALSE, 1 or 0) argument. When TRUE, calculates the inverse Discrete Fourier Transform. The default value is FALSE." -msgstr "" +msgstr " Inversa es un argumento lógico opcional (VERDADERO o FALSO, 1 o 0). Cuando es VERDADERO, calcula la transformada de Fourier discreta inversa. El valor predeterminado es FALSO." #. N6enC #: func_fourier.xhp @@ -61367,7 +61372,7 @@ "par_id811561732287508\n" "help.text" msgid "Polar: is an optional logical (TRUE or FALSE, 1 or 0) argument. Indicates whether the final output is in polar coordinates (magnitude, phase). This argument is optional and the default value is FALSE." -msgstr "" +msgstr "Polar: es un argumento lógico opcional (VERDADERO o FALSO, 1 o 0). Indica si la salida final está en coordenadas polares (magnitud, fase). Este argumento es opcional y el valor predeterminado es FALSO." #. qBBZd #: func_fourier.xhp @@ -61376,7 +61381,7 @@ "par_id661561732521977\n" "help.text" msgid "MinimumMagnitude: used only if Polar=TRUE. All frequency components with magnitude less than MinimumMagnitude will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed. By default the value of MinimumMagnitude is 0.0, and no suppression is done by default." -msgstr "" +msgstr "MagnitudMínima: se utiliza sólo si Polar=VERDADERO. Todos los componentes de frecuencia con una magnitud inferior a MagnitudMínima se suprimirán con una entrada de magnitud-fase cero. Esto es muy útil cuando se mira el espectro de magnitud-fase de una señal porque siempre hay una cantidad muy pequeña de error de redondeo cuando se hacen algoritmos FFT y resulta en una fase incorrecta no nula para frecuencias inexistentes. Proporcionando un valor adecuado a este parámetro, se pueden suprimir estos componentes de frecuencia inexistentes. Por defecto el valor de MagnitudMínima es 0.0, y no se realiza ninguna supresión por defecto." #. P2z9v #: func_hour.xhp @@ -61457,7 +61462,7 @@ "tit\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "función SI.CONJUNTO" #. XMPcD #: func_ifs.xhp @@ -61466,7 +61471,7 @@ "bm_id901556242230198\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "función SI.CONJUNTO" #. u33ve #: func_ifs.xhp @@ -61475,7 +61480,7 @@ "hd_id271556234923654\n" "help.text" msgid "IFS" -msgstr "" +msgstr "SI.CONJUNTO" #. iANFF #: func_ifs.xhp @@ -61484,7 +61489,7 @@ "par_id171556234923655\n" "help.text" msgid "IFS is a multiple IF-function." -msgstr "" +msgstr "SI.CONJUNTO es una función SI múltiple." #. WxB3F #: func_ifs.xhp @@ -61493,7 +61498,7 @@ "par_id271556235333493\n" "help.text" msgid "IFS(expression1; result1[; expression2; result2][; ... ; [expression127; result127]])" -msgstr "" +msgstr "SI.CONJUNTO(expresión1; resultado1[; expresión2; resultado2][; ... ; [expresión127; resultado127]])" #. 3KbKX #: func_ifs.xhp @@ -61502,7 +61507,7 @@ "par_id31556235655212\n" "help.text" msgid "expression1, expression2, ... are any boolean values or expressions that can be TRUE or FALSE" -msgstr "" +msgstr "expresión1, expresión2, ... son valores booleanos o expresiones que pueden ser VERDADERO o FALSO" #. 8qEKq #: func_ifs.xhp @@ -61511,7 +61516,7 @@ "par_id441556235649549\n" "help.text" msgid "result1, result2, ... are the values that are returned if the logical test is TRUE" -msgstr "" +msgstr "resultado1, resultado2, ... son los valores que se devuelven si la prueba lógica es VERDADERO" #. qgtwA #: func_ifs.xhp @@ -61520,7 +61525,7 @@ "par_id641556235704257\n" "help.text" msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as" -msgstr "" +msgstr "SI.CONJUNTO( expresión1, resultado1, expresión2, resultado2, expresión3, resultado3 ) se ejecuta como" #. NriAd #: func_ifs.xhp @@ -61529,7 +61534,7 @@ "par_id551556235712759\n" "help.text" msgid "IF expression1 is TRUE" -msgstr "" +msgstr "SI expresión1 es VERDADERO" #. tRdjB #: func_ifs.xhp @@ -61538,7 +61543,7 @@ "par_id1001556235718948\n" "help.text" msgid "THEN result1" -msgstr "" +msgstr "ENTONCES resultado1" #. 2DYMn #: func_ifs.xhp @@ -61547,7 +61552,7 @@ "par_id571556235725969\n" "help.text" msgid "ELSE IF expression2 is TRUE" -msgstr "" +msgstr "DE LO CONTRARIO SI expresión2 es VERDADERO" #. QZSge #: func_ifs.xhp @@ -61556,7 +61561,7 @@ "par_id581556235731982\n" "help.text" msgid "THEN result2" -msgstr "" +msgstr "ENTONCES resultado2" #. H5BJe #: func_ifs.xhp @@ -61565,7 +61570,7 @@ "par_id961556235738258\n" "help.text" msgid "ELSE IF expression3 is TRUE" -msgstr "" +msgstr "DE LO CONTRARIO SI expresión3 es VERDADERO" #. LpUGo #: func_ifs.xhp @@ -61574,7 +61579,7 @@ "par_id951556235743954\n" "help.text" msgid "THEN result3" -msgstr "" +msgstr "ENTONCES reultado3" #. QCFfF #: func_ifs.xhp @@ -61583,7 +61588,7 @@ "par_id671556235758504\n" "help.text" msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result." -msgstr "" +msgstr "Para obtener un resultado predeterminado si ninguna expresión es VERDADERA, añade una última expresión que siempre sea VERDADERA, como VERDADERO o 1=1, seguida del resultado predeterminado." #. mkt7F #: func_ifs.xhp @@ -61592,7 +61597,7 @@ "par_id541556235771022\n" "help.text" msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned." -msgstr "" +msgstr "Si falta un resultado para una expresión o si ninguna expresión es VERDADERA, se devuelve un error #N/A." #. 8sMKs #: func_ifs.xhp @@ -61601,7 +61606,7 @@ "par_id181556235788473\n" "help.text" msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned." -msgstr "" +msgstr "Si la expresión no es VERDADERA ni FALSA, se devuelve un error #VALOR." #. smDfE #: func_ifs.xhp @@ -61610,7 +61615,7 @@ "par_id781556244709752\n" "help.text" msgid "IF" -msgstr "" +msgstr "SI" #. vaiXE #: func_imcos.xhp @@ -61727,7 +61732,7 @@ "par_id24939266285933\n" "help.text" msgid "IMCOSH equation" -msgstr "" +msgstr "ecuación IM.COSH" #. neXB8 #: func_imcosh.xhp @@ -61808,7 +61813,7 @@ "par_id311713256011430\n" "help.text" msgid "IMCOT equation" -msgstr "" +msgstr "ecuación IM.COT" #. z7EtV #: func_imcot.xhp @@ -61889,7 +61894,7 @@ "par_id13510198901485\n" "help.text" msgid "IMCSC equation" -msgstr "" +msgstr "ecuación IM.CSC" #. jBzZA #: func_imcsc.xhp @@ -61970,7 +61975,7 @@ "par_id195151657917534\n" "help.text" msgid "IMCSCH equation" -msgstr "" +msgstr "ecuación IM.CSCH" #. ndjhY #: func_imcsch.xhp @@ -62051,7 +62056,7 @@ "par_id17543461310594\n" "help.text" msgid "IMSEC equation" -msgstr "" +msgstr "ecuación IM.SEC" #. CEucF #: func_imsec.xhp @@ -62132,7 +62137,7 @@ "par_id74572850718840\n" "help.text" msgid "IMSECH equation" -msgstr "" +msgstr "ecuación IM.SECH" #. Rqker #: func_imsech.xhp @@ -62213,7 +62218,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSIN equation" -msgstr "" +msgstr "ecuación IM.SENO" #. tcmGA #: func_imsin.xhp @@ -62294,7 +62299,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSINH equation" -msgstr "" +msgstr "ecuación IM.SENOH" #. CM4Gy #: func_imsinh.xhp @@ -62501,7 +62506,7 @@ "tit\n" "help.text" msgid "JIS Function" -msgstr "" +msgstr "Función JIS" #. 5Qavf #: func_jis.xhp @@ -62510,7 +62515,7 @@ "bm_id831542233029549\n" "help.text" msgid "JIS function" -msgstr "" +msgstr "Función JIS" #. MEYJo #: func_jis.xhp @@ -62519,7 +62524,7 @@ "hd_id881628776094597\n" "help.text" msgid "JIS" -msgstr "" +msgstr "JIS" #. 3XKQ3 #: func_jis.xhp @@ -62528,7 +62533,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts single-byte (half-width) ASCII or katakana characters to double-byte (full-width) characters." -msgstr "" +msgstr "Convierte caracteres ASCII o katakana de un byte (medio ancho) en caracteres de doble byte (ancho completo)." #. UdHVW #: func_jis.xhp @@ -62537,7 +62542,7 @@ "par_id151634221012221\n" "help.text" msgid "See https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for a conversion table." -msgstr "" +msgstr "Consulte https://wiki.documentfoundation.org/ Calc/Features/JIS_and_ASC_functions para una tabla de conversión." #. AjjnX #: func_jis.xhp @@ -62546,7 +62551,7 @@ "par_id701542231253817\n" "help.text" msgid "JIS(Text)" -msgstr "" +msgstr "JIS(Texto)" #. f9YAh #: func_jis.xhp @@ -62564,7 +62569,7 @@ "par_id481637763523789\n" "help.text" msgid "Applying the JIS function to a string composed of double-byte characters will return the input string without any modifications." -msgstr "" +msgstr "La aplicación de la función JIS a una cadena compuesta por caracteres de doble byte devolverá la cadena de entrada sin ninguna modificación." #. BBEVj #: func_jis.xhp @@ -62573,7 +62578,7 @@ "par_id451628776707264\n" "help.text" msgid "=JIS(\"LibreOffice\") returns the string \"LibreOffice\". Note that the returned string uses double-byte characters." -msgstr "" +msgstr "=JIS(\"LibreOffice\") devuelve la cadena \"LibreOffice\". Tenga en cuenta que la cadena devuelta utiliza caracteres de doble byte." #. fEFNT #: func_jis.xhp @@ -62582,7 +62587,7 @@ "par_id101628778036375\n" "help.text" msgid "=JIS(\"ライト\") returns the string \"ライト\", which is composed of double-byte characters." -msgstr "" +msgstr " = JIS (\"luz\") devuelve la cadena \"luz\", que se compone de caracteres de doble byte." #. Cauxq #: func_maxifs.xhp @@ -62591,7 +62596,7 @@ "tit\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "Función MAX.SI.CONJUNTO" #. 8HdEW #: func_maxifs.xhp @@ -62600,7 +62605,7 @@ "bm_id658066580665806\n" "help.text" msgid "MAXIFS function maximum;satisfying conditions" -msgstr "" +msgstr "Función MAX.SI.CONJUNTO máximo;satisfaciendo condiciones" #. kKHTn #: func_maxifs.xhp @@ -62609,7 +62614,7 @@ "hd_id658866588665886\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "MAX.SI.CONJUNTO función" #. DXshy #: func_maxifs.xhp @@ -62618,7 +62623,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the maximum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el máximo de los valores de las celdas en un rango que cumple varios criterios en varios rangos." #. PKmRh #: func_maxifs.xhp @@ -62627,7 +62632,7 @@ "par_id11655988824213\n" "help.text" msgid "MAXIFS()" -msgstr "" +msgstr "MAX.SI.CONJUNTO()" #. UrwgE #: func_maxifs.xhp @@ -62636,7 +62641,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the maximum." -msgstr "" +msgstr "Función_Rango – argumento requerido. Un rango de celdas, un nombre de un rango con nombre o una etiqueta de una columna o una fila que contiene valores para calcular el máximo." #. BUavo #: func_maxifs.xhp @@ -62654,7 +62659,7 @@ "par_id94321051525036\n" "help.text" msgid "=MAXIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(B2:B6;B2:B6;\"<35\")" #. j2PKY #: func_maxifs.xhp @@ -62663,7 +62668,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the maximum of values of the range B2:B6 that are greater than or equal to 20. Returns 35. The fifth row does not meet the criterion." -msgstr "" +msgstr "Calcula el máximo de valores del rango B2:B6 que son mayores o iguales a 20. Devuelve 35. La quinta fila no cumple el criterio." #. c6yAQ #: func_maxifs.xhp @@ -62672,7 +62677,7 @@ "par_id36952767622741\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" #. nGj4o #: func_maxifs.xhp @@ -62681,7 +62686,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 85, because the fourth and fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Calcula el máximo de valores del rango C2:C6 que son inferiores a 90 y corresponden a celdas del rango B2:B6 con valores mayores o iguales a 20. Devuelve 85, porque la cuarta y quinta fila no cumplen al menos un criterio." #. 9Ayop #: func_maxifs.xhp @@ -62699,7 +62704,7 @@ "par_id307691022525348\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;B2:B6;\">\"&MÍNIMO(B2:B6);B2:B6;\"<\"&MÁXIMO(B2:B6))" #. CR2To #: func_maxifs.xhp @@ -62708,7 +62713,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 190, because only the fourth row meet the criteria." -msgstr "" +msgstr "Calcula el máximo de valores del intervalo C2:C6 que corresponden a todos los valores del intervalo B2:B6 salvo su mínimo y máximo. Devuelve 190, porque solo la cuarta fila cumple los criterios." #. xriFt #: func_maxifs.xhp @@ -62717,7 +62722,7 @@ "par_id220502883332563\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<=\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;A2:A6;\"pluma.*\";B2:B6;\"<=\"&MÁXIMO(B2:B6))" #. FQicN #: func_maxifs.xhp @@ -62726,7 +62731,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 85, because only the third row meets all criteria." -msgstr "" +msgstr "Calcula el máximo de valores del rango C2:C6 que corresponden a todas las celdas del rango A2:A6 comenzando con \"pluma\" y a todas las celdas del rango B2:B6 excepto su máximo. Devuelve 85, porque solo la tercera fila cumple todos los criterios." #. DwLDF #: func_maxifs.xhp @@ -62744,7 +62749,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MAXIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Si necesita cambiar un criterio fácilmente, puede especificarlo en una celda separada y usar una referencia a esta celda en la condición de la función MAX.SI.CONJUNTO. Por ejemplo, la función anterior se puede reescribir de la siguiente manera:" #. gcYDr #: func_maxifs.xhp @@ -62753,7 +62758,7 @@ "par_id135761606425300\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MÁXIMO(B2:B6))" #. wHPFq #: func_maxifs.xhp @@ -62762,7 +62767,7 @@ "par_id30574750215839\n" "help.text" msgid "If E2 = \"pen\", the function returns 65, because the reference to the cell is substituted with its content." -msgstr "" +msgstr "Si E2 = \"pluma\", la función devuelve 65, porque la referencia a la celda se sustituye por su contenido." #. zGQnQ #: func_minifs.xhp @@ -62771,7 +62776,7 @@ "tit\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "Función MIN.SI.CONJUNTO" #. V8Fu7 #: func_minifs.xhp @@ -62780,7 +62785,7 @@ "bm_id658066580665806\n" "help.text" msgid "MINIFS function minimum;satisfying conditions" -msgstr "" +msgstr "Función MIN.SI.CONJUNTO mínimo;satisfaciendo condiciones" #. vnegG #: func_minifs.xhp @@ -62789,7 +62794,7 @@ "hd_id658866588665886\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "MIN.SI.CONJUNTO función" #. PmaDA #: func_minifs.xhp @@ -62798,7 +62803,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the minimum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el mínimo de los valores de las celdas en un intervalo que cumple varios criterios en múltiples intervalos." #. yekSJ #: func_minifs.xhp @@ -62807,7 +62812,7 @@ "par_id11655988824213\n" "help.text" msgid "MINIFS()" -msgstr "" +msgstr "MIN.SI.CONJUNTO()" #. Gf5P2 #: func_minifs.xhp @@ -62816,7 +62821,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the minimum." -msgstr "" +msgstr "Función_Rango – argumento requerido. Un rango de celdas, un nombre de un rango con nombre o una etiqueta de una columna o una fila que contiene valores para calcular el mínimo." #. KkDwL #: func_minifs.xhp @@ -62834,7 +62839,7 @@ "par_id94321051525036\n" "help.text" msgid "=MINIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(B2:B6;B2:B6;\"<35\")" #. eRNbh #: func_minifs.xhp @@ -62843,7 +62848,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the minimum of values of the range B2:B6 that are lower than or equal to 20. Returns 17." -msgstr "" +msgstr "Calcula el mínimo de valores del rango B2:B6 que son menores o iguales a 20. Devuelve 17." #. zufoC #: func_minifs.xhp @@ -62852,7 +62857,7 @@ "par_id36952767622741\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" #. iCk4M #: func_minifs.xhp @@ -62861,7 +62866,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 190." -msgstr "" +msgstr "Calcula el mínimo de valores del rango C2:C6 que son menores a 90 y corresponden a celdas del rango B2:B6 con valores mayores o iguales a 20. Devuelve 190." #. iqFXq #: func_minifs.xhp @@ -62879,7 +62884,7 @@ "par_id307691022525348\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;B2:B6;\">\"&MÍNIMO(B2:B6);B2:B6;\"<\"&MÁXIMO(B2:B6))" #. Dp4Sx #: func_minifs.xhp @@ -62888,7 +62893,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 65." -msgstr "" +msgstr "Calcula el mínimo de valores del rango C2:C6 que corresponden a todos los valores del rango B2:B6 excepto su mínimo y máximo. Devuelve 65." #. 7S443 #: func_minifs.xhp @@ -62897,7 +62902,7 @@ "par_id220502883332563\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*book\";B2:B6;\">\"&MIN(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;A2:A6;\".*libro\";B2:B6;\">\"&MÍNIMO(B2:B6))" #. gNhzJ #: func_minifs.xhp @@ -62906,7 +62911,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all cells of the A2:A6 range ending with \"book\" and to all cells of the B2:B6 range except its minimum. Returns 190." -msgstr "" +msgstr "Calcula el mínimo de valores del intervalo C2:C6 que corresponden a todas las celdas del intervalo A2:A6 que terminan en «libro» y a todas las celdas del intervalo B2:B6 salvo su mínimo. Devuelve 190." #. uz4wr #: func_minifs.xhp @@ -62924,7 +62929,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MINIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Si necesita cambiar un criterio fácilmente, puede especificarlo en una celda separada y usar una referencia a esta celda en la condición de la función MIN.SI.CONJUNTO. Por ejemplo, la función anterior se puede reescribir de la siguiente manera:" #. EcoDf #: func_minifs.xhp @@ -62933,7 +62938,7 @@ "par_id135761606425300\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MÁXIMO(B2:B6))" #. cxmqK #: func_minifs.xhp @@ -63131,7 +63136,7 @@ "par_id231020162213393086\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days." -msgstr "Devuelve el número de días laborables que hay entre una fecha inicial y una final. Existen opciones para definir los días feriados y los correspondientes a los fines de semana. Se puede utilizar el parámetro (o cadena) opcional de fin de semana para definir los días de fin de semana (o los días no laborables de cada semana). Asimismo, de manera opcional, puede definirse una lista de feriados. Los días de fin de semana y los feriados definidos por el usuario no se cuentan como días laborables." +msgstr "Devuelve el número de días laborables que hay entre una fecha de inicio y una de finalización. Existen opciones para definir los días feriados y los correspondientes a los fines de semana. Se puede utilizar el parámetro (o cadena) opcional de fin de semana para definir los días de fin de semana (o los días no laborables de cada semana). Asimismo, de manera opcional, puede definirse una lista de feriados. Los días de fin de semana y los feriados definidos por el usuario no se cuentan como días laborables." #. 53kNC #: func_networkdays.intl.xhp @@ -63140,7 +63145,7 @@ "par_id231020162249539143\n" "help.text" msgid "NETWORKDAYS.INTL(StartDate; EndDate [; [ Weekend ] [; Holidays ] ])" -msgstr "" +msgstr "DIAS.LAB.INTL(FechaInicial; FechaFinal [; [ Fin de semana] [; Feriados ] ])" #. D8jig #: func_networkdays.intl.xhp @@ -63158,7 +63163,7 @@ "par_id231020162249536398\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "FechaFinal es la fecha de término del cálculo. Si la fecha final es un día laborable, el día se incluye en el cálculo." +msgstr "FechaFinal es la fecha de término del cálculo. Si la fecha de finalización es un día laborable, el día se incluye en el cálculo." #. Yhepz #: func_networkdays.intl.xhp @@ -63239,7 +63244,7 @@ "bm_id3151254\n" "help.text" msgid "NETWORKDAYS function NETWORKDAYS_EXCEL2003 function" -msgstr "" +msgstr "función DIAS.LABfunción DIAS.LAB_EXCEL2003" #. HzF8v #: func_networkdays.xhp @@ -63257,7 +63262,7 @@ "par_id3153788\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. Holidays can be deducted." -msgstr "" +msgstr "Devuelve el número de días laborables entre una fecha de inicio y una fecha de finalización. Los días feriados se pueden deducir." #. AME9S #: func_networkdays.xhp @@ -63266,7 +63271,7 @@ "par_id3145775\n" "help.text" msgid "NETWORKDAYS(StartDate; EndDate [; [ Holidays ] [; Workdays ] ])" -msgstr "" +msgstr "DIAS.LAB(FechaInicial; FechaFinal [; [ Feriados ] [; Días laborales] ])" #. BEtbU #: func_networkdays.xhp @@ -63302,7 +63307,7 @@ "par_id160920161749585013\n" "help.text" msgid "Workdays is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value." -msgstr "" +msgstr "Días laborables es una lista opcional de valores numéricos que definen la semana laborable estándar. Esta lista comienza el domingo, los días laborables se indican con cero y los días no laborables con un valor distinto de cero." #. yTEUA #: func_networkdays.xhp @@ -63437,7 +63442,7 @@ "par_id3145087\n" "help.text" msgid "Converts the string representation of a number into a locale-independent numeric value." -msgstr "" +msgstr "Convierte la representación de cadena de un número en un valor numérico independiente de la configuración regional." #. xfP9G #: func_numbervalue.xhp @@ -63446,7 +63451,7 @@ "par_id3149281\n" "help.text" msgid "The input text may be in a locale-dependent or other bespoke format." -msgstr "" +msgstr "El texto de entrada puede estar en un formato dependiente de la configuración regional o uno personalizado." #. vVK9p #: func_numbervalue.xhp @@ -63455,7 +63460,7 @@ "par_id381625600941159\n" "help.text" msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format." -msgstr "" +msgstr "El número de salida se formatea como un valor de coma flotante válido y se muestra con el formato numérico de la celda actual." #. CdgXz #: func_numbervalue.xhp @@ -63473,7 +63478,7 @@ "par_id721625602228575\n" "help.text" msgid "NUMBERVALUE(Text[; Decimal Separator[; Group Separator]])" -msgstr "" +msgstr "VALOR.NUMERO(Texto[; Separador decimal[; Separador de grupos]])" #. Y3A9n #: func_numbervalue.xhp @@ -63491,7 +63496,7 @@ "par_id3154820\n" "help.text" msgid "Decimal Separator is a single character that specifies the decimal separator in Text. It can be omitted if Text does not include any decimal or group separators." -msgstr "" +msgstr "Separador decimal es un solo carácter que especifica el separador decimal en Texto. Se puede omitir si Texto no incluye ningún separador decimal o de grupo." #. KJ6WA #: func_numbervalue.xhp @@ -63500,7 +63505,7 @@ "par_id3154821\n" "help.text" msgid "Group Separator is a string that specifies the character(s) used as the group separator in Text. It can be omitted if Text does not include any group separators. The Decimal Separator character should not be used in Group Separator." -msgstr "" +msgstr "Separador de grupo es una cadena que especifica los caracteres utilizados como separador de grupo en Texto. Se puede omitir si Texto no incluye ningún separador de grupo. El carácter Separador decimal no debe usarse en Separador de grupo." #. yptHN #: func_numbervalue.xhp @@ -63509,7 +63514,7 @@ "par_id3155841\n" "help.text" msgid "=NUMBERVALUE(\"1.234.567,89\"; \",\"; \".\") returns 1234567.89 (considering en-US locale). The function removes the two group separators and changes the decimal separator from a comma to a full stop." -msgstr "" +msgstr "=VALOR.NUMERO(\"1.234.567,89\"; \",\"; \".\") devuelve 1234567.89 (considerando la configuración regional en EE. UU.). La función elimina los dos separadores de grupo y cambia el separador decimal de una coma a un punto." #. UNiLM #: func_numbervalue.xhp @@ -63518,7 +63523,7 @@ "par_id721625603302860\n" "help.text" msgid "=NUMBERVALUE(\"123·4\"; \"·\") returns 123.4 (considering en-US locale). The function changes the decimal separator from a \"·\" to a full stop. No group separator is used in the supplied number and so the Group Separator argument is omitted." -msgstr "" +msgstr "=VALOR.NUMERO(\"123·4\"; \"·\") devuelve 123.4 (considerando la configuración regional en-US). La función cambia el separador decimal de \"·\" a un punto. No se utiliza ningún separador de grupo en el número proporcionado, por lo que se omite el argumento Separador de grupo." #. iGGwj #: func_numbervalue.xhp @@ -63527,7 +63532,7 @@ "par_id491625603415715\n" "help.text" msgid "=NUMBERVALUE(\"123e12\") returns 1.23E+14 (considering en-US locale). No decimal or group separators are used in the supplied number and so the Decimal Separator and Group Separator arguments are omitted." -msgstr "" +msgstr "=VALOR.NUMERO(\"123e12\") devuelve 1.23E+14 (considerando la configuración regional en EE. UU.). No se utilizan separadores decimales ni de grupo en el número proporcionado, por lo que se omiten los argumentos Separador decimal y Separador de grupo." #. vTYDd #: func_numbervalue.xhp @@ -63536,7 +63541,7 @@ "par_id801625603497421\n" "help.text" msgid "=NUMBERVALUE(\"1#!234#!567\"; \".\"; \"#!\") returns 1234567 (considering en-US locale). Note that in this case the group separator is specified as a two-character string." -msgstr "" +msgstr "=VALOR.NUMERO(\"1#!234#!567\"; \".\"; \"¡#!\") devuelve 1234567 (considerando la configuración regional en EE. UU.). Tenga en cuenta que, en este caso, el separador de grupo se especifica como una cadena de dos caracteres." #. 4sMd6 #: func_numbervalue.xhp @@ -63545,7 +63550,7 @@ "par_id451626100385699\n" "help.text" msgid "Refer to the NUMBERVALUE wiki page for more details about this function." -msgstr "" +msgstr "Consulte la página wiki VALOR.NUMERO para obtener más detalles sobre esta función." #. EJhfD #: func_opt_barrier.xhp @@ -63554,7 +63559,7 @@ "tit\n" "help.text" msgid "Function OPT_BARRIER" -msgstr "" +msgstr "Función OPT_BARRIER" #. 4HRGX #: func_opt_barrier.xhp @@ -63563,7 +63568,7 @@ "bm_id511575065323638\n" "help.text" msgid "OPT_BARRIER function" -msgstr "" +msgstr "Función OPT_BARRIER" #. KrCYn #: func_opt_barrier.xhp @@ -63572,7 +63577,7 @@ "hd_id241575063871994\n" "help.text" msgid "OPT_BARRIER" -msgstr "" +msgstr "OPT_BARRIER" #. uFKBs #: func_opt_barrier.xhp @@ -63581,7 +63586,7 @@ "par_id121575063871995\n" "help.text" msgid "Returns the pricing for a barrier option, calculated using the Black-Scholes option pricing model." -msgstr "" +msgstr "Devuelve el precio de una opción de barrera, calculado utilizando el modelo de precios de opciones de Black-Scholes." #. 3ky3t #: func_opt_barrier.xhp @@ -63590,7 +63595,7 @@ "par_id371575067051846\n" "help.text" msgid "OPT_BARRIER(Spot; Volatility; Rate; Foreign Rate; Maturity; Strike; LowerBarrier; UpperBarrier; Rebate; PutCall; InOut; BarrierMonitoring [; Greek])" -msgstr "" +msgstr "OPT_BARRIER(Anuncio; Volatilidad; Tasa; Tasa extranjera; Vencimiento; Ejercicio; Barrera inferior; Barrera superior; Reembolso; Llamada externa; Entrada; Supervisión de barrera [; Griego])" #. XEMff #: func_opt_barrier.xhp @@ -63599,7 +63604,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Ejercicio es el precio de ejercicio de la opción y no debe ser negativo." #. 8tgWG #: func_opt_barrier.xhp @@ -63608,7 +63613,7 @@ "par_id671575073495724\n" "help.text" msgid "Rebate is the amount of money to be paid at maturity if the barrier is hit." -msgstr "" +msgstr "Reembolso es la cantidad de dinero que se pagará al vencimiento si se supera la barrera." #. uAzky #: func_opt_barrier.xhp @@ -63617,7 +63622,7 @@ "par_id691575073511191\n" "help.text" msgid "Put or Call is a string that defines whether the option is a put (“p”) or a call (“c”)." -msgstr "" +msgstr "Venta o Compra es una cadena que define si la opción es venta(\"p\") o compra (\"c\")." #. PdCJb #: func_opt_barrier.xhp @@ -63626,7 +63631,7 @@ "par_id651575073773761\n" "help.text" msgid "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") returns the value 0.4243." -msgstr "" +msgstr "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") devuelve el valor 0.4243." #. ABVQH #: func_opt_barrier.xhp @@ -63635,7 +63640,7 @@ "par_id401575073777593\n" "help.text" msgid "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") returns the value 10.1585." -msgstr "" +msgstr "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") devuelve el valor 10.1585." #. HWhRY #: func_opt_prob_hit.xhp @@ -63644,7 +63649,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_HIT" -msgstr "" +msgstr "Función OPT_PROB_HIT" #. 5Naq2 #: func_opt_prob_hit.xhp @@ -63653,7 +63658,7 @@ "bm_id961575074485125\n" "help.text" msgid "OPT_PROB_HIT function" -msgstr "" +msgstr "Función OPT_PROB_HIT" #. jn8fF #: func_opt_prob_hit.xhp @@ -63662,7 +63667,7 @@ "hd_id71575063908363\n" "help.text" msgid "OPT_PROB_HIT" -msgstr "" +msgstr "OPT_PROB_HIT" #. fWecm #: func_opt_prob_hit.xhp @@ -63671,7 +63676,7 @@ "par_id591575063908364\n" "help.text" msgid "Returns the probability that an asset hits a predetermined barrier price, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Devuelve la probabilidad de que un activo alcance un precio de barrera predeterminado, suponiendo que el precio de la acción se puede modelar como un proceso S que sigue la ecuación diferencial estocástica, de la siguiente manera." #. ZJBj2 #: func_opt_prob_hit.xhp @@ -63680,7 +63685,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_HIT equation" -msgstr "" +msgstr "Ecuación OPT_PROB_HIT" #. FnaCP #: func_opt_prob_hit.xhp @@ -63689,7 +63694,7 @@ "par_id821575074114118\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ es la deriva porcentual del activo, vol es la volatilidad porcentual de la acción y dW es una muestra aleatoria extraída de una distribución normal con una media cero. W es un proceso de Wiener o movimiento browniano." #. 9NRxu #: func_opt_prob_hit.xhp @@ -63698,7 +63703,7 @@ "par_id211575074192954\n" "help.text" msgid "OPT_PROB_HIT(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier)" -msgstr "" +msgstr "OPT_PROB_HIT(Anuncio; Volatilidad; Deriva; Vencimiento; Barrera Inferior; Barrera Superior)" #. XaA8K #: func_opt_prob_hit.xhp @@ -63707,7 +63712,7 @@ "par_id901575074339820\n" "help.text" msgid "Drift is the annual stock price percentage drift rate (µ in the above formula). The value is expressed as a decimal (for example, enter 15% as 0.15)." -msgstr "" +msgstr "Deriva es la tasa de variación porcentual anual del precio de las acciones (µ en la fórmula anterior). El valor se expresa como un decimal (por ejemplo, ingrese 15% como 0.15)." #. 6yrWk #: func_opt_prob_hit.xhp @@ -63716,7 +63721,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Ejercicio es el precio de ejercicio de la opción y no debe ser negativo." #. mHW3F #: func_opt_prob_hit.xhp @@ -63725,7 +63730,7 @@ "par_id971575074431070\n" "help.text" msgid "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) returns the value 0.6119." -msgstr "" +msgstr "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) devuelve el valor 0.6119." #. 3EshE #: func_opt_prob_hit.xhp @@ -63734,7 +63739,7 @@ "par_id171575074434932\n" "help.text" msgid "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) returns the value 0.4239." -msgstr "" +msgstr "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) devuelve el valor 0.4239." #. RFprF #: func_opt_prob_inmoney.xhp @@ -63743,7 +63748,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_INMONEY" -msgstr "" +msgstr "Función OPT_PROB_INMONEY" #. QQBrZ #: func_opt_prob_inmoney.xhp @@ -63752,7 +63757,7 @@ "bm_id961575065633373\n" "help.text" msgid "OPT_PROB_INMONEY function" -msgstr "" +msgstr "Función OPT_PROB_INMONEY" #. kMBbw #: func_opt_prob_inmoney.xhp @@ -63761,7 +63766,7 @@ "hd_id941575063929082\n" "help.text" msgid "OPT_PROB_INMONEY" -msgstr "" +msgstr "OPT_PROB_INMONEY" #. QDryb #: func_opt_prob_inmoney.xhp @@ -63770,7 +63775,7 @@ "par_id941575063929083\n" "help.text" msgid "Returns the probability that an asset will end up between two barrier levels at maturity, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Devuelve la probabilidad de que un activo termine entre dos niveles de barrera al vencimiento, suponiendo que el precio de la acción se puede modelar como un proceso S que sigue el diferencial estocástico ecuación, de la siguiente manera." #. 2GJsA #: func_opt_prob_inmoney.xhp @@ -63779,7 +63784,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_INMONEY equation" -msgstr "" +msgstr "Ecuación OPT_PROB_INMONEY" #. 7ja6D #: func_opt_prob_inmoney.xhp @@ -63788,7 +63793,7 @@ "par_id941575074893788\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ es la deriva porcentual del activo, vol es la volatilidad porcentual de la acción y dW es una muestra aleatoria extraída de una distribución normal con una media cero. W es un proceso de Wiener o movimiento browniano." #. pMCin #: func_opt_prob_inmoney.xhp @@ -64724,7 +64729,7 @@ "par_id51519156941987\n" "help.text" msgid "See also ROUND, MROUND, ROUNDUP, ROUNDDOWN." -msgstr "Véase también: REDONDEAR, REDOND.MULT, REDONDEAR.MAS, REDONDEAR.MENOS." +msgstr "Consulte también: REDONDEAR, REDOND.MULT, REDONDEAR.MAS, REDONDEAR.MENOS." #. hkbrZ #: func_searchb.xhp @@ -64967,7 +64972,7 @@ "tit\n" "help.text" msgid "SUM Function" -msgstr "" +msgstr "Función SUMA" #. fLyVA #: func_sum.xhp @@ -64976,7 +64981,7 @@ "id431636401649762\n" "help.text" msgid "SUM function adding;numbers in cell ranges" -msgstr "" +msgstr "función SUMAsumar;números en intervalos de celdas" #. AE4pM #: func_sum.xhp @@ -64985,7 +64990,7 @@ "hd_id121636398275790\n" "help.text" msgid "SUM" -msgstr "" +msgstr "SUMA" #. c32xJ #: func_sum.xhp @@ -64994,7 +64999,7 @@ "par_id491636401806866\n" "help.text" msgid "Adds a set of numbers." -msgstr "" +msgstr "Suma un conjunto de números." #. vfwu7 #: func_sum.xhp @@ -65012,7 +65017,7 @@ "par_id3163704\n" "help.text" msgid "=SUM(2;3;4) returns 9." -msgstr "" +msgstr "=SUMA(2;3;4) devuelve 9." #. 6ohPR #: func_sum.xhp @@ -65021,7 +65026,7 @@ "par_id3151740\n" "help.text" msgid "=SUM(A1;A3;B5) calculates the sum of the three cells." -msgstr "" +msgstr "=SUMA(A1;A3;B5) calcula la suma de las tres celdas." #. FbQ6a #: func_sum.xhp @@ -65696,7 +65701,7 @@ "par_id3153759\n" "help.text" msgid "Returns the current computer system date. The value is updated when you reopen the document or modify the values of the document." -msgstr "Devuelve la fecha actual del sistema. El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de éste." +msgstr "Devuelve la fecha actual del sistema. El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de este." #. ABDRC #: func_today.xhp @@ -66848,7 +66853,7 @@ "par_id23102016234837285\n" "help.text" msgid "Returns the date calculated from a start date with a specific number of work days, before or after the start date. The calculation can include week-ends and holidays as non-working days." -msgstr "" +msgstr "Devuelve la fecha calculada a partir de una fecha de inicio con un número específico de días laborables, antes o después de la fecha de inicio. El cálculo puede incluir fines de semana y días festivos como días no laborables." #. 9r2Ns #: func_workday.intl.xhp @@ -66857,7 +66862,7 @@ "par_id241020160008306838\n" "help.text" msgid "WORKDAY.INTL(StartDate; Days [; Weekend [; Holidays]])" -msgstr "" +msgstr "DIA.LAB.INTL (Fecha de inicio; Días [; Fin de semana [; Días festivos]])" #. gJg5G #: func_workday.intl.xhp @@ -66866,7 +66871,7 @@ "par_id241020160008308885\n" "help.text" msgid "StartDate: is the date from when the calculation is carried out." -msgstr "" +msgstr "Fecha de inicio: es la fecha desde que se realiza el cálculo." #. CVBCb #: func_workday.intl.xhp @@ -66911,7 +66916,7 @@ "par_id241020160012177923\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;;F3:J3) returns January 11, 2017 in the result cell, say D6 (use date format for the cell)." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;;F3:J3) devuelve el 11 de enero de 2017 en la celda de resultados, digamos D6 (use el formato de fecha para la celda)." #. LGcmi #: func_workday.intl.xhp @@ -66929,7 +66934,7 @@ "par_id241020160012178562\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;7;F3:J3) returns January 15, 2017 with weekend parameter 7." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;7;F3:J3)devuelve el 15 de enero de 2017 con el parámetro de fin de semana 7." #. gdAdN #: func_workday.intl.xhp @@ -66947,7 +66952,7 @@ "par_id241020160012181455\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;11;F3:J3) returns January 9, 2017." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;11;F3:J3)regresa el 9 de enero de 2017." #. ySGjs #: func_workday.intl.xhp @@ -66965,7 +66970,7 @@ "par_id241020160012183680\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3) returns January 9, 2017." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;\"0000001\";F3:J3)regresa el 9 de enero de 2017." #. 3Xzsr #: func_workday.intl.xhp @@ -66983,7 +66988,7 @@ "par_id241020160012182048\n" "help.text" msgid "=WORKDAY.INTL(C3;D3) gives the result: January 10, 2017." -msgstr "" +msgstr "= DIA.LAB.INTLC3;D3) da el resultado: 10 de enero de 2017." #. 5dvmu #: func_workday.xhp @@ -67028,7 +67033,7 @@ "par_id3154844\n" "help.text" msgid "WORKDAY(StartDate; Days [; Holidays])" -msgstr "" +msgstr "DIA.LAB(Fecha de inicio; Días [; Días festivos])" #. 35EG5 #: func_workday.xhp @@ -67073,7 +67078,7 @@ "par_id3146142\n" "help.text" msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD." -msgstr "" +msgstr "=DIA.LABDIA.(C3;D3;F3:J3)devuelve 2001-12-28. Formatee el número de fecha de serie como una fecha, por ejemplo, en el formato AAAA-MM-DD." #. tHNNK #: func_workday.xhp @@ -67118,7 +67123,7 @@ "par_id3147496\n" "help.text" msgid "Returns the year as a number according to the internal calculation rules." -msgstr "" +msgstr "Devuelve el año como un número de acuerdo con elreglas internas de cálculo" #. 3SfLe #: func_year.xhp @@ -67172,7 +67177,7 @@ "par_id141577548861101\n" "help.text" msgid "=YEAR(DATEVALUE('2010-09-28')) returns 2010." -msgstr "" +msgstr "=AÑO(VALOR DE LA FECHA('2010-09-28')devuelve 2010." #. kAjPe #: func_yearfrac.xhp @@ -67595,7 +67600,7 @@ "par_id2423780\n" "help.text" msgid "Opens the Solver Options dialog." -msgstr "" +msgstr "Abre el cuadro de diálogo Opciones de Solver." #. jDGPG #: solver.xhp @@ -67604,7 +67609,7 @@ "par_id221589917833431\n" "help.text" msgid "The Solver Options dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." -msgstr "" +msgstr "El cuadro de diálogo Opciones de Solver le permite seleccionar diferentes algoritmos para resolver problemas lineales y no lineales y establecer los parámetros de resolución." #. 8YGDA #: solver.xhp @@ -67640,7 +67645,7 @@ "par_id2216559\n" "help.text" msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the target cell, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value." -msgstr "El objetivo del proceso solucionador es encontrar estos valores variables de una ecuación que el resultado en un valor optimizado en la celda objetvo. Usted puede elegir si el valor en la celda objetivo debe ser el máximo, mínimo, o acercarse a un determinado valor." +msgstr "El objetivo del proceso del Solver es encontrar aquellos valores variables de una ecuación que resulten en un valor optimizado en la celda de destino u «objetivo». Puede elegir si el valor en la celda de destino debe ser un máximo, un mínimo o una aproximación a un valor determinado." #. tPUFj #: solver.xhp @@ -67667,7 +67672,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Using Non-Linear solvers" -msgstr "" +msgstr "Uso de solucionadores no lineales" #. UTzzV #: solver.xhp @@ -67676,7 +67681,7 @@ "par_id0603200910430845\n" "help.text" 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 "" +msgstr "Independientemente de si utiliza DEPS o SCO, comience yendo a Herramientas ▸ Solver e indique la celda que se debe optimizar, la dirección de avance (minimización, maximización) y las celdas que se deben modificar para alcanzar el objetivo. Luego vaya a las Opciones, especifique el tipo de Solver que se usará y, finalmente, ajuste los parámetros, si fuera necesario." #. gJGz2 #: solver.xhp @@ -67721,7 +67726,7 @@ "bm_id291590166034871\n" "help.text" msgid "solver for Calc;options" -msgstr "" +msgstr "Solver para Calc;opciones" #. vZkr3 #: solver_options.xhp @@ -67730,7 +67735,7 @@ "hd_id2794274\n" "help.text" msgid "Solver Options" -msgstr "" +msgstr "Opciones de Solver" #. LHgS8 #: solver_options.xhp @@ -67739,7 +67744,7 @@ "par_id3163853\n" "help.text" msgid "Use the Options dialog to configure the solver engine." -msgstr "" +msgstr "Utilice el cuadro de diálogo Opciones para configurar el motor del Solver." #. mFtPo #: solver_options.xhp @@ -67757,7 +67762,7 @@ "hd_id581589922716672\n" "help.text" msgid "Solver engine" -msgstr "Motor de Solver" +msgstr "Algoritmo de Solver" #. A7MrG #: solver_options.xhp @@ -67829,7 +67834,7 @@ "par_id3912778\n" "help.text" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Introduzca o cambie el valor de la configuración seleccionada" #. cYCVf #: solver_options.xhp @@ -67865,7 +67870,7 @@ "hd_id0503200917103593\n" "help.text" msgid "Solver Algorithms Options" -msgstr "" +msgstr "Opciones de algoritmos para Solver" #. RjM8p #: solver_options_algo.xhp @@ -71627,4 +71632,4 @@ "par_id240920171007419799\n" "help.text" msgid "Wiki page on XML Source" -msgstr "" +msgstr "Página wiki sobre fuente XML" diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/02.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/02.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/02.po 2022-07-15 19:12:51.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-29 13:08+0200\n" -"PO-Revision-Date: 2021-05-27 20:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548569336.000000\n" #. aSE5T @@ -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 "Escriba la fórmula que desee incorporar a la celda actual. También puede pulsar en el icono Asistente de funciones para insertar una función predefinida en la fórmula." +msgstr "Escriba la fórmula que desee incorporar a la celda actual. También puede pulsar en el icono Asistente para funciones para insertar una función predefinida en la fórmula." #. pBxxB #: 06060000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1778,7 +1778,7 @@ "tit\n" "help.text" msgid "Entering Values" -msgstr "Ingresar valores" +msgstr "Introducir valores" #. 2aSdr #: cell_enter.xhp @@ -1931,7 +1931,7 @@ "bm_id3146119\n" "help.text" msgid "protecting;cells and sheets cells; protecting cell protection; enabling sheets; protecting documents; protecting cells; hiding for printing changing; sheet protection hiding;formulas formulas;hiding" -msgstr "proteger;celdas y hojas celdas; proteger proteger celdas; habilitar hojas; proteger documentos; proteger celdas; ocultar para imprimir cambiar; protección de hojas ocultar;fórmulas fórmulas;ocultar" +msgstr "proteger;celdas y hojasceldas; protegerproteger celdas; activarhojas; protegerdocumentos; protegerceldas; ocultar para imprimircambiar; protección de hojasocultar;fórmulasfórmulas;ocultar" #. DDnnF #: cell_protect.xhp @@ -2291,7 +2291,7 @@ "tit\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referencia a celdas mediante arrastrar y soltar" +msgstr "Referencia a celdas mediante arrastrar y colocar" #. DN7Zz #: cellreference_dragdrop.xhp @@ -3020,7 +3020,7 @@ "par_id3154484\n" "help.text" msgid "In the Styles deck of the Sidebar, click the New Style from Selection icon. Enter the name of the new style. For this example, name the style \"Above\"." -msgstr "En la sección Estilos de la barra lateral, pulse en el icono Estilo nuevo desde selección. Escriba el nombre del estilo nuevo. En este ejemplo, llámelo «Mayor que»." +msgstr "En el grupo Estilos de la barra lateral, pulse en el icono Estilo nuevo desde selección. Escriba el nombre del estilo nuevo. En este ejemplo, llámelo «Mayor que»." #. 4bRZa #: cellstyle_conditional.xhp @@ -3074,7 +3074,7 @@ "par_id3153246\n" "help.text" msgid "Close the Function Wizard with OK." -msgstr "Pulse en Aceptar para cerrar el Asistente de funciones." +msgstr "Pulse en Aceptar para cerrar el Asistente para funciones." #. 75WFf #: cellstyle_conditional.xhp @@ -3452,7 +3452,7 @@ "par_id3153816\n" "help.text" msgid "Select additional ranges and click Add after each selection." -msgstr "A continuación seleccione las demás áreas siguiendo uno de los procedimientos indicados, y después de cada área pulse Agregar." +msgstr "A continuación, seleccione las demás áreas siguiendo uno de los procedimientos indicados y, después de cada área, pulse en Añadir." #. 85CXx #: consolidate.xhp @@ -4298,7 +4298,7 @@ "par_id3145069\n" "help.text" msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells." -msgstr "Puede usar varios filtros para filtrar los rangos de celdas en hojas de cálculo. Un filtro estándar utiliza las opciones especificadas para filtrar los datos. Un filtro automático filtra los datos de acuerdo con una cadena o un valor especificados. Un filtro avanzado utiliza criterios de filtrado de celdas específicas." +msgstr "Puede usar varios filtros para filtrar los intervalos de celdas en las hojas de cálculo. Un filtro estándar utiliza las opciones especificadas para filtrar los datos. Un filtro automático filtra los datos de acuerdo con una cadena o un valor que se especifique. Un filtro avanzado utiliza los criterios de filtrado de celdas específicas." #. e7DZH #: database_filter.xhp @@ -4676,7 +4676,7 @@ "par_id3146974\n" "help.text" msgid "By double-clicking on one of the fields in the Data Fields area you can call up the Data Field dialog." -msgstr "Al hacer doble clic en uno de los campos del área Campos de datos puede abrir el diálogo Campo de datos." +msgstr "Si pulsa dos veces en uno de los campos del apartado Campos de datos, se abrirá el cuadro de diálogo Campo de datos." #. PAuDC #: datapilot_createtable.xhp @@ -5333,7 +5333,7 @@ "par_idN1079A\n" "help.text" msgid "In the Database type box of the Database Properties dialog, select \"dBASE\"." -msgstr "En el cuadro Tipo de base de datos del diálogo Propiedades de la base de datos, seleccione \"dBASE\"." +msgstr "En el cuadro Tipo de base de datos del diálogo Propiedades de la base de datos, seleccione «dBASE»." #. HjBBj #: dbase_files.xhp @@ -5360,7 +5360,7 @@ "par_idN107B6\n" "help.text" msgid "Locate the directory that contains the dBASE file, and click OK." -msgstr "Ubique el directorio que contiene el archivo dBASE, y pulse en Aceptar." +msgstr "Ubique el directorio que contiene el archivo dBASE y pulse en Aceptar." #. 5kG55 #: dbase_files.xhp @@ -6557,7 +6557,7 @@ "hd_id3150868\n" "help.text" msgid "Entering Formulas" -msgstr "Ingresar fórmulas" +msgstr "Introducir fórmulas" #. H3w2m #: formula_enter.xhp @@ -7205,7 +7205,7 @@ "par_id3145785\n" "help.text" msgid "%PRODUCTNAME Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document." -msgstr "%PRODUCTNAME Calc guarda todas las hojas de un documento de Calc en un único documento HTML. Al principio de dicho documento se agregan un encabezado y una lista de hipervínculos a cada una de las hojas individuales del documento." +msgstr "%PRODUCTNAME Calc guarda todas las hojas de un documento de Calc en un único documento HTML. Al principio de dicho documento se añaden un título y una lista de hiperenlaces a cada una de las hojas del documento." #. mtAQs #: html_doc.xhp @@ -9455,7 +9455,7 @@ "par_id151525140367370\n" "help.text" msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard." -msgstr "%PRODUCTNAME Calc detecta automáticamente la tabla dinámica y abre el asistente de gráficos dinámicos." +msgstr "%PRODUCTNAME Calc detecta automáticamente la tabla dinámica y abre el asistente para gráficos dinámicos." #. q3cHS #: pivotchart_create.xhp @@ -9473,7 +9473,7 @@ "par_id41525141917275\n" "help.text" msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table." -msgstr "No se activan las páginas del intervalo de datos y de la serie de datos del asistente de gráficos, dado que ambos elementos son controlados por la tabla dinámica." +msgstr "No se activan las páginas del intervalo de datos y de la serie de datos del asistente para gráficos, dado que ambos elementos son controlados por la tabla dinámica." #. 6tkMF #: pivotchart_create.xhp @@ -11813,7 +11813,7 @@ "par_id3147372\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view." -msgstr "" +msgstr "Diríjase a Datos ▸ Más filtros ▸ Filtro avanzado y, acto seguido, seleccione el intervalo A20:E22. Luego de que pulse en Aceptar, se mostrarán solamente las filas filtradas; el resto estará oculto a la vista." #. jQ6bn #: subtotaltool.xhp @@ -12137,7 +12137,7 @@ "par_id3154351\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Merge Cells.
    If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further." -msgstr "" +msgstr "O bien, pulse con el botón secundario del ratón sobre la selección para abrir el menú contextual y seleccione Combinar celdas.
    Si en su lugar ve Separar celdas, la selección contiene celdas combinadas que no pueden combinarse más." #. uH6dA #: table_cellmerge.xhp @@ -13253,7 +13253,7 @@ "par_id5774101\n" "help.text" msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells." -msgstr "También puede asignar nombres a otros rangos de celdas en este diálogo. Para ello, escriba el nombre en el campo y, a continuación, seleccione las celdas correspondientes." +msgstr "También puede asignar nombres a otros intervalos de celdas en este cuadro de diálogo. Para ello, escriba el nombre en el campo y, a continuación, seleccione las celdas correspondientes." #. 3sCdF #: value_with_name.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/schart/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/schart/01.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-09 19:38+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550207897.000000\n" #. DsZFP @@ -2948,7 +2948,7 @@ "par_id3145750\n" "help.text" msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose Format - Format Selection. Some of the menu entries are only available for 2D or 3D charts." -msgstr "Permite modificar las propiedades de una serie de datos seleccionada. Este diálogo se muestra si al activar el comando de menú Formato - Formato de selección, se ha seleccionado una serie de datos. Algunas entradas del menú están disponibles sólo para gráficos 2D y 3D." +msgstr "Permite modificar las propiedades de una serie de datos seleccionada. Este cuadro de diálogo se muestra si, al activar la orden de menú Formato ▸ Formato de selección, se ha seleccionado una serie de datos. Algunas entradas del menú están disponibles solo para gráficos 2D y 3D." #. 9jEEq #: 05010200.xhp @@ -4649,7 +4649,7 @@ "par_id7085787\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. NSMjA #: choose_chart_type.xhp @@ -5090,7 +5090,7 @@ "par_id6998809\n" "help.text" msgid "On the first page of the Chart Wizard or in the context menu of a chart you can choose a chart type. Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines." -msgstr "En la primera página del Asistente de gráficos o en el menú contextual puede escoger el tipo de gráfico. Abre un cuadro de diálogo que permite editar las propiedades de una vista tridimensional en gráficos de columnas, barras, circulares y de área. En el caso de los gráficos de líneas y XY, podrá ver líneas en 3D." +msgstr "En la primera página del Asistente para gráficos o en el menú contextual puede escoger el tipo de gráfico. Abre un cuadro de diálogo que permite editar las propiedades de una vista tridimensional en gráficos de columnas, barras, circulares y de área. En el caso de los gráficos de líneas y XY, podrá ver líneas en 3D." #. FJdFw #: three_d_view.xhp @@ -5225,7 +5225,7 @@ "par_id3791924\n" "help.text" msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version." -msgstr "Viejas versiones de %PRODUCTNAME no pueden mostrar el porcentaje de perspectiva de la misma manera que la versión actual." +msgstr "Las versiones anteriores de %PRODUCTNAME no pueden mostrar el porcentaje de perspectiva de la misma manera que la versión actual." #. SY4DN #: three_d_view.xhp @@ -5243,7 +5243,7 @@ "par_id4721823\n" "help.text" msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje X. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje X. La previsualización responde a las configuraciones nuevas." #. r68Bu #: three_d_view.xhp @@ -5252,7 +5252,7 @@ "par_id5806756\n" "help.text" msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje Y. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Y. La previsualización responde a las configuraciones nuevas." #. HG7NF #: three_d_view.xhp @@ -5261,7 +5261,7 @@ "par_id8915372\n" "help.text" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje Z. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Z. La previsualización responde a las configuraciones nuevas." #. P3E59 #: three_d_view.xhp @@ -5576,7 +5576,7 @@ "par_id916776\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. AXGaZ #: type_area.xhp @@ -5657,7 +5657,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. fPDAo #: type_bubble.xhp @@ -5720,7 +5720,7 @@ "par_id3430585\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. 2AjSb #: type_column_bar.xhp @@ -5846,7 +5846,7 @@ "par_id4818567\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. p8vzY #: type_column_line.xhp @@ -6116,7 +6116,7 @@ "par_id5729544\n" "help.text" msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:" -msgstr "Sírvase de la página Elementos de gráfico del Asistente de gráficos para insertar cualquiera de los elementos siguientes:" +msgstr "Sírvase de la página Elementos de gráfico del Asistente para gráficos para insertar cualquiera de los elementos siguientes:" #. ZC2FB #: type_column_line.xhp @@ -6233,7 +6233,7 @@ "par_id389721\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. a3Zmw #: type_line.xhp @@ -6341,7 +6341,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. MWv9D #: type_net.xhp @@ -6404,7 +6404,7 @@ "par_id245979\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. XGE3t #: type_pie.xhp @@ -6494,7 +6494,7 @@ "par_id3516953\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede seleccionar un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede seleccionar un tipo de gráfico." #. CZZei #: type_stock.xhp @@ -7241,7 +7241,7 @@ "par_id3486434\n" "help.text" msgid "You can organize data series and edit the source for parts of single data series on the third page of the Chart Wizard or on the page Data Series in the Data Range dialog." -msgstr "Puede organizar las series de datos y editar el origen para partes de series de datos únicas en la tercera página del Asistente de gráficos o en la página Serie de datos del cuadro de diálogo Intervalo de datos." +msgstr "Puede organizar las series de datos y editar el origen para partes de series de datos únicas en la tercera página del Asistente para gráficos o en la página Serie de datos del cuadro de diálogo Intervalo de datos." #. zSfXf #: type_stock.xhp @@ -7403,7 +7403,7 @@ "par_id2003845\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. EHrHp #: type_xy.xhp @@ -7493,7 +7493,7 @@ "par_id8919339\n" "help.text" msgid "You can choose an XY chart variant on the first page of the Chart Wizard, or by choosing Format - Chart Type for a chart in edit mode." -msgstr "Puede escoger una variante de gráfico XY en la primera página del asistente de gráficos, o bien seleccionando Formato ▸ Tipo de gráfico para pasar al modo de edición." +msgstr "Puede escoger una variante de gráfico XY en la primera página del asistente para gráficos, o bien seleccionando Formato ▸ Tipo de gráfico para pasar al modo de edición." #. azkUx #: type_xy.xhp @@ -7790,7 +7790,7 @@ "hd_id70802\n" "help.text" msgid "Chart Wizard - Chart Elements" -msgstr "Asistente de gráficos. Elementos del gráfico" +msgstr "Asistente para gráficos. Elementos del gráfico" #. GPTJT #: wiz_chart_elements.xhp @@ -7943,7 +7943,7 @@ "hd_id4411145\n" "help.text" msgid "To enter chart elements" -msgstr "Para ingresar los elementos del gráfico" +msgstr "Para introducir elementos del gráfico" #. X4ABG #: wiz_chart_elements.xhp @@ -7979,7 +7979,7 @@ "par_id156865\n" "help.text" msgid "It is not possible to link the title text to a cell. You must enter the text directly." -msgstr "No es posible para ligar el titulo de texto a la celda. Debes ingresar el texto directamente." +msgstr "No es posible enlazar el texto de título a una celda. Debe introducir el texto directamente." #. 5W5Ld #: wiz_chart_elements.xhp @@ -8123,7 +8123,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Chart Type" -msgstr "Asistente de gráficos. Tipo de gráfico" +msgstr "Asistente para gráficos. Tipo de gráfico" #. LZdZA #: wiz_chart_type.xhp @@ -8141,7 +8141,7 @@ "hd_id1536606\n" "help.text" msgid "Chart Wizard - Chart Type" -msgstr "Asistente de gráficos. Tipo de gráfico" +msgstr "Asistente para gráficos. Tipo de gráfico" #. D8wP7 #: wiz_chart_type.xhp @@ -8150,7 +8150,7 @@ "par_id6006958\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del asistente de gráficos puede escoger un tipo de gráfico." +msgstr "En la primera página del asistente para gráficos puede escoger un tipo de gráfico." #. MD2Pv #: wiz_chart_type.xhp @@ -8366,7 +8366,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Data Range" -msgstr "Asistente de gráficos. Intervalo de datos" +msgstr "Asistente para gráficos. Intervalo de datos" #. JGeZD #: wiz_data_range.xhp @@ -8384,7 +8384,7 @@ "hd_id8313852\n" "help.text" msgid "Chart Wizard - Data Range" -msgstr "Asistente de gráficos. Intervalo de datos" +msgstr "Asistente para gráficos. Intervalo de datos" #. nqjuD #: wiz_data_range.xhp @@ -8555,7 +8555,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Data Series" -msgstr "Asistente de gráficos. Series de datos" +msgstr "Asistente para gráficos. Series de datos" #. DDAu9 #: wiz_data_series.xhp @@ -8573,7 +8573,7 @@ "hd_id6124149\n" "help.text" msgid "Chart Wizard - Data Series" -msgstr "Asistente de gráficos. Series de datos" +msgstr "Asistente para gráficos. Series de datos" #. WZBBV #: wiz_data_series.xhp @@ -8591,7 +8591,7 @@ "par_id6326487\n" "help.text" msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page." -msgstr "Si le abruma la cantidad de opciones de esta página, puede pasarla por alto y definir el intervalo de datos mediante Asistente de gráficos ▸ Intervalo de datos." +msgstr "Si le abruma la cantidad de opciones de esta página, puede pasarla por alto y definir el intervalo de datos mediante Asistente para gráficos ▸ Intervalo de datos." #. o74Mn #: wiz_data_series.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" #. ugSgG #: 02000000.xhp @@ -2335,7 +2335,7 @@ "par_id3149523\n" "help.text" msgid "To query Yes/No fields, use the following syntax for dBASE tables:" -msgstr "" +msgstr "Para efectuar consultas en campos sí/no, utilice esta sintaxis para archivos dBASE:" #. A4Uh7 #: 02010100.xhp @@ -2839,7 +2839,7 @@ "hd_id3157910\n" "help.text" msgid "FormWizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. GDZow #: 04000000.xhp @@ -5422,7 +5422,7 @@ "par_id3151245\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database. Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "Seleccione la conversión de código que quiera utilizar para ver la base de datos en $[officename]. Esto no afecta la base de datos en sí. Elija «Sistema» para utilizar el conjunto de caracteres predeterminado del sistema operativo. Las bases de datos de texto y dBASE están restringidas a una longitud de carácter fija, en la cual todos los caracteres están codificados con la misma cantidad de bytes." #. xBEZv #: 11020000.xhp @@ -5620,7 +5620,7 @@ "par_id3153823\n" "help.text" msgid "Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records." -msgstr "" +msgstr "Muestra todos los registros de un archivo, incluidos los marcados como eliminados. Si selecciona esta opción, no podrá eliminar registros." #. 7vpRc #: 11030000.xhp @@ -5638,7 +5638,7 @@ "par_id3151384\n" "help.text" msgid "To view any changes that you make to the database, close the connection to the database, and then reconnect the database." -msgstr "" +msgstr "Para ver las modificaciones efectuadas en la base de datos, cierre la conexión a esta y establezca una conexión nueva." #. 5LBSi #: 11030000.xhp @@ -5647,7 +5647,7 @@ "par_id0904200811094971\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database." -msgstr "" +msgstr "Seleccione la conversión de código que quiera utilizar para ver la base de datos en $[officename]. Esto no afecta la base de datos en sí." #. Gmun9 #: 11030000.xhp @@ -7078,7 +7078,7 @@ "tit\n" "help.text" msgid "Connection Type Wizard" -msgstr "Asistente de tipos de conexión" +msgstr "Asistente para tipos de conexión" #. tR5Cs #: dabapropcon.xhp @@ -7087,7 +7087,7 @@ "par_idN1054D\n" "help.text" msgid "Connection Type Wizard" -msgstr "Asistente de tipos de conexión" +msgstr "Asistente para tipos de conexión" #. cnXMD #: dabapropcon.xhp @@ -7114,7 +7114,7 @@ "par_idN10569\n" "help.text" msgid "The Connection Type Wizard consists of three pages. You cannot transfer all settings from one database type to another." -msgstr "El asistente de tipos de conexión se compone de tres páginas. No es posible transferir todos los parámetros de un tipo de base de datos a otro." +msgstr "El asistente para tipos de conexión se compone de tres páginas. No es posible transferir todos los parámetros de un tipo de base de datos a otro." #. htEBY #: dabapropcon.xhp @@ -7510,7 +7510,7 @@ "tit\n" "help.text" msgid "Database Wizard" -msgstr "Asistente de bases de datos" +msgstr "Asistente para bases de datos" #. dYT7e #: dabawiz00.xhp @@ -7519,7 +7519,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)jdbc; database settings (Base)odbc; database settings (Base)spreadsheets;as databases (base)" -msgstr "asistentes;bases de datos (Base)Asistente de bases de datos (Base)bases de datos; formatos (Base)MySQL databases (Base)bases de datos MariaDB (Base)dBASE; configuración de base de datos (Base)jdbc; configuración de base de datos (Base)odbc; configuración de base de datos (Base)hojas de cálculo;como bases de datos (Base)" +msgstr "asistentes;bases de datos (Base)Asistente para bases de datos (Base)bases de datos; formatos (Base)MySQL databases (Base)bases de datos MariaDB (Base)dBASE; configuración de base de datos (Base)jdbc; configuración de base de datos (Base)odbc; configuración de base de datos (Base)hojas de cálculo;como bases de datos (Base)" #. 5pnX6 #: dabawiz00.xhp @@ -7528,7 +7528,7 @@ "par_idN105B4\n" "help.text" msgid "Database Wizard" -msgstr "Asistente de base de dados" +msgstr "Asistente para base de dados" #. 4L7fe #: dabawiz00.xhp @@ -7537,7 +7537,7 @@ "par_id9856563\n" "help.text" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "El Asistente de bases de datos crea un archivo que contiene información sobre una base de datos." +msgstr "El Asistente para bases de datos crea un archivo que contiene información sobre una base de datos." #. MP58w #: dabawiz00.xhp @@ -7546,7 +7546,7 @@ "par_idN105D5\n" "help.text" msgid "Depending on the type of operation and the type of database, the Database Wizard consists of a varying number of steps." -msgstr "Los pasos del Asistente de bases de datos dependen del tipo de operación y del tipo de base de datos." +msgstr "Los pasos del Asistente para bases de datos dependen del tipo de operación y del tipo de base de datos." #. BvAbd #: dabawiz00.xhp @@ -7564,7 +7564,7 @@ "par_idN105DF\n" "help.text" msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more." -msgstr "Si abre el Asistente de bases de datos para crear un archivo de base de datos para una conexión existente, puede que haya más pasos para especificar las rutas, la información de autenticación, etcétera." +msgstr "Si abre el Asistente para bases de datos para crear un archivo de base de datos para una conexión existente, puede que haya más pasos para especificar las rutas, la información de autenticación, etcétera." #. A9JMA #: dabawiz00.xhp @@ -9535,7 +9535,7 @@ "par_idN1083B\n" "help.text" msgid "The Database Wizard helps you to create a database file and to register a new database within %PRODUCTNAME." -msgstr "El asistente de bases de datos le ayuda a crear un archivo de base de datos y registrar una base de datos nueva en %PRODUCTNAME." +msgstr "El asistente para bases de datos le ayuda a crear un archivo de base de datos y registrar una base de datos nueva en %PRODUCTNAME." #. 2jPWg #: main.xhp @@ -9796,7 +9796,7 @@ "par_idN105AD\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. LZsjA #: menuedit.xhp @@ -9814,7 +9814,7 @@ "par_idN105C2\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. U7xE3 #: menuedit.xhp @@ -10714,7 +10714,7 @@ "tit\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. CU3Fy #: tablewizard00.xhp @@ -10723,7 +10723,7 @@ "bm_id6009094\n" "help.text" msgid "wizards;database tables (Base)Table Wizard (Base)" -msgstr "" +msgstr "asistentes;tablas de base de datos (Base)Asistente para tablas (Base)" #. TStMh #: tablewizard00.xhp @@ -10732,7 +10732,7 @@ "par_idN1054C\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. rBE4D #: tablewizard00.xhp @@ -10741,7 +10741,7 @@ "par_idN1055C\n" "help.text" msgid "The Table Wizard helps you to create a database table." -msgstr "El asistente de tablas le ayuda a crear una tabla en una base de datos." +msgstr "El asistente para tablas le ayuda a crear una tabla en una base de datos." #. UBG57 #: tablewizard00.xhp @@ -10876,7 +10876,7 @@ "par_idN10552\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "Asistente de tablas. Establecer tipos y formatos" +msgstr "Asistente para tablas. Establecer tipos y formatos" #. r3sex #: tablewizard02.xhp @@ -11443,7 +11443,7 @@ "par_idN10580\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. PAxTq #: toolbars.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2660,7 +2660,7 @@ "par_id3149021\n" "help.text" msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object." -msgstr "Mueva el puntero a una manilla de esquina para que el puntero se convierta en un icono de giro. Arrastre la manilla para girar un objeto." +msgstr "Mueva el puntero a una agarradera de esquina para que el puntero se convierta en un icono de giro. Arrastre la agarradera para girar el objeto." #. TrVS9 #: rotate_object.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 "Para sesgar el objeto verticalmente u horizontalmente, arrastralo de las manillas laterales." +msgstr "Para torcer el objeto vertical u horizontalmente, arrastre una de las agarraderas laterales." #. SFGmo #: text_enter.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2516,7 +2516,7 @@ "par_id3150092\n" "help.text" msgid "The Links to External Files command is found in the Edit menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link." -msgstr "" +msgstr "La orden Enlaces a archivos externos se encuentra en el menú Editar. La orden puede activarse solo si existe al menos un enlace en el documento actual. Cuando inserte, por ejemplo, una imagen, puede hacerlo directamente en el documento o en forma de enlace." #. ePu6N #: 00000005.xhp @@ -3578,7 +3578,7 @@ "par_id3150129\n" "help.text" msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off." -msgstr "\"Fuente: 10pt\" pasa a una fuente con 10pt y al mismo tiempo negrita, cursiva y versalita." +msgstr "«Font: 10pt» selecciona un tipo de letra de 10 pt, sin negritas, itálicas ni versalitas." #. sx5EP #: 00000020.xhp @@ -4640,7 +4640,7 @@ "par_idN10AC5\n" "help.text" msgid "Document Converter Wizard" -msgstr "Asistente de conversión de documentos" +msgstr "Asistente para conversión de documentos" #. 6sL4z #: 00000099.xhp @@ -4676,7 +4676,7 @@ "par_id3156069\n" "help.text" msgid "On the help page for $[officename] general you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop." -msgstr "En la página de ayuda general de $[officename] encontrará instrucciones aplicables a todos los módulos, como el trabajo con ventanas y menús, la personalización de $[officename], fuentes de datos, de galería y arrastrar y colocar." +msgstr "En la página de ayuda general de $[officename] encontrará instrucciones aplicables a todos los módulos, como el trabajo con ventanas y menús, la personalización de $[officename], los orígenes de datos, la galería y la técnica de arrastrar y colocar." #. v53RG #: 00000099.xhp @@ -4982,7 +4982,7 @@ "par_id15\n" "help.text" msgid "For EPS files you can set the preview, the color format, the compression, and the version." -msgstr "Para archivos EPS puede establecer la vista previa, el formato de color, la compresión y la versión." +msgstr "Para archivos EPS puede establecer la previsualización, el formato de color, la compresión y la versión." #. hCFBd #: 00000200.xhp @@ -5441,7 +5441,7 @@ "par_id3150247\n" "help.text" msgid "Specifies the row where you want to start the import. The rows are visible in the preview window at the bottom of the dialog." -msgstr "Especifica la fila en la que se desee insertar el contenido importado. Las filas se pueden ver en la ventana de vista previa, en la parte inferior del diálogo." +msgstr "Especifica la fila en la que se desee insertar el contenido importado. Las filas se pueden ver en la ventana de previsualización, en la parte inferior del diálogo." #. MHZFB #: 00000208.xhp @@ -14513,7 +14513,7 @@ "par_id3152791\n" "help.text" msgid "Choose Edit - Paste Special - Paste Special." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegado especial." #. CFGeE #: edit_menu.xhp @@ -14531,7 +14531,7 @@ "par_id731584805182269\n" "help.text" msgid "Choose Edit - Paste Special - Paste Unformatted Text." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegar texto sin formato." #. BUPSo #: edit_menu.xhp @@ -14558,7 +14558,7 @@ "par_id531584805456716\n" "help.text" msgid "Choose Edit - Paste Special - Paste Nested Table." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegar tabla anidada." #. AWiCd #: edit_menu.xhp @@ -14612,7 +14612,7 @@ "par_id3148555\n" "help.text" msgid "Choose Edit - Select All." -msgstr "" +msgstr "Vaya a Editar ▸ Seleccionar todo." #. mia2c #: edit_menu.xhp @@ -14630,7 +14630,7 @@ "par_id3145748\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icono" #. 8xMiC #: edit_menu.xhp @@ -14648,7 +14648,7 @@ "par_id3145251\n" "help.text" msgid "Choose Edit - Track Changes." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios." #. FtngJ #: edit_menu.xhp @@ -14657,7 +14657,7 @@ "par_id3153336\n" "help.text" msgid "Choose Edit - Track Changes - Record." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Grabar." #. eaiZ6 #: edit_menu.xhp @@ -14675,7 +14675,7 @@ "par_id3153845\n" "help.text" msgid "Choose Edit - Track Changes - Manage." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Gestionar." #. RLwDH #: edit_menu.xhp @@ -14684,7 +14684,7 @@ "par_id3148587\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Gestionar ▸ pestaña Lista." #. KKGxQ #: edit_menu.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -230,7 +230,7 @@ "par_idN108D0\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "Abre el Asistente de base de datos para crear un archivo de base de datos." +msgstr "Abre el Asistente para base de datos para crear un archivo de base de datos." #. 9nYdo #: 01010000.xhp @@ -473,7 +473,7 @@ "par_idN10A43\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "Abre el asistente de bases de datos para crear una base de datos." +msgstr "Abre el asistente para bases de datos para crear una base de datos." #. 8qFCs #: 01010000.xhp @@ -2534,7 +2534,7 @@ "par_id3159201\n" "help.text" msgid "When you close the last open document window, you see the Start Center." -msgstr "Tras cerrar la última ventana de documento aparece el Centro de inicio." +msgstr "Tras cerrar la última ventana de documento aparece el centro de bienvenida." #. 638RE #: 01050000.xhp @@ -3983,7 +3983,7 @@ "par_idN106AE\n" "help.text" msgid "Select to allow this document to be opened in read-only mode only." -msgstr "Seleccione esta opción para permitir que este documento sólo pueda abrirse en modo de lectura." +msgstr "Seleccione esta opción para permitir que este documento solo pueda abrirse en modo de lectura." #. uhvBT #: 01100600.xhp @@ -12614,7 +12614,7 @@ "par_id3155356\n" "help.text" msgid "When you rest the mouse pointer over a change markup in the document, a Tip displays the author and the date and time that the change was made. If the Extended Tips are activated, the type of change and any attached comments are also displayed." -msgstr "Cuando se coloca el puntero del ratón sobre un marcador de cambios del documento, unaSugerencia muestra el autor y la fecha y hora en la que se ha efectuado el cambio. Si están activadas las Sugerencias extendidas, también se muestra el tipo de cambio y cualquier otro comentario adjunto." +msgstr "Cuando se coloca el puntero del ratón sobre un marcador de cambios del documento, una descripción emergente muestra el autor y la fecha y hora en la que se ha efectuado el cambio. Si están activadas las descripciones emergentes ampliadas, también se muestra el tipo de cambio y cualquier otro comentario adjunto." #. WQNSX #: 02230200.xhp @@ -22523,7 +22523,7 @@ "par_id3152360\n" "help.text" msgid "Click the border style that you want to apply. The style is applied to the borders selected in the preview." -msgstr "Pulse el estilo de borde que desee aplicar. El borde se aplica a los bordes seleccionados en la vista previa." +msgstr "Pulse el estilo de borde que desee aplicar. El borde se aplica a los bordes seleccionados en la previsualización." #. TDfwQ #: 05030500.xhp @@ -24953,7 +24953,7 @@ "par_id3149202\n" "help.text" msgid "Opens the Styles deck of the SidebarStyles deck of the Sidebar where you can select a character style for the ruby text." -msgstr "Abre la sección Estilos de la barra lateralEstilos de la barra lateral, en la que puede seleccionar un estilo de caracteres para el texto ágata." +msgstr "Abre el grupo Estilos de la barra lateralEstilos de la barra lateral, en el que puede seleccionar un estilo de caracteres para el texto ágata." #. MD7GR #: 05070000.xhp @@ -25520,7 +25520,7 @@ "par_id3154351\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Merge Cells. If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further." -msgstr "" +msgstr "O bien, pulse con el botón secundario del ratón sobre la selección para abrir el menú contextual y seleccione Combinar celdas. Si en su lugar ve Separar celdas, la selección contiene celdas combinadas que no pueden combinarse más." #. Fz6u9 #: 05100100.xhp @@ -29390,7 +29390,7 @@ "par_idN10709\n" "help.text" msgid "Wraps the text that you add after double-clicking a custom shape to fit inside the shape." -msgstr "Ajusta el texto que desea agregar después de hacer doble clic en una forma personalizada para que quepa dentro de la forma." +msgstr "Ajusta el texto que se añada después de pulsar dos veces en una forma personalizada de modo que quepa dentro de la forma." #. C9z8b #: 05220000.xhp @@ -32171,7 +32171,7 @@ "par_id3155388\n" "help.text" msgid "Scrolls text from top to bottom." -msgstr "Desplaza el texto de arriba a abajo." +msgstr "Desplaza el texto de arriba abajo." #. TGcQ5 #: 05320000.xhp @@ -32918,7 +32918,7 @@ "par_id3153194\n" "help.text" msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)." -msgstr "" +msgstr "Introduzca el ángulo de giro de 0 a 360 para el texto en las celdas seleccionadas." #. XJAyp #: 05340300.xhp @@ -34754,7 +34754,7 @@ "par_id3151056\n" "help.text" msgid "Displays a preview of the light source changes." -msgstr "Muestra una vista previa de los cambios en las fuentes de luz." +msgstr "Muestra una previsualización de los cambios en las fuentes de luz." #. uRKAW #: 05350500.xhp @@ -38939,7 +38939,7 @@ "par_idN106F8\n" "help.text" msgid "Press Esc to decline the word completion." -msgstr "Pulse Esc para que las palabras no se completen automáticamente." +msgstr "Presione Esc para que las palabras no se completen automáticamente." #. aZdst #: 06040600.xhp @@ -38984,7 +38984,7 @@ "hd_id3147265\n" "help.text" msgid "Word Completion list" -msgstr "Lista de palabras" +msgstr "Lista de compleción de palabras" #. uBqx9 #: 06040600.xhp @@ -40235,7 +40235,7 @@ "par_id6081728\n" "help.text" msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line." -msgstr "Ingrese la distancia desde el margen izquierdo de la página desde el cual inicia todas la líneas de un párrafo numerado a partir de la primera línea." +msgstr "Introduzca la distancia desde el margen izquierdo de la página hasta el comienzo de todos los renglones del párrafo numerado que siguen al primero." #. B9fGG #: 06050600.xhp @@ -46355,7 +46355,7 @@ "par_id3150789\n" "help.text" msgid "Opens the Gallery deck of the Sidebar, where you can select images and audio clips to insert into your document." -msgstr "Abre la sección «Galería» de la barra lateral, en la que puede seleccionar imágenes y sonidos para insertarlos en el documento." +msgstr "Abre el grupo Galería de la barra lateral, en el que puede seleccionar imágenes y sonidos para insertarlos en el documento." #. EWyc5 #: gallery.xhp @@ -47345,7 +47345,7 @@ "par_id10272015084124198\n" "help.text" msgid "The sidebar is docked on the right or left side of the document view area and contains a tab bar with tab buttons, that when clicked show a different tab deck." -msgstr "La barra lateral se encuentra acoplada en el lado derecho o izquierdo del área de visualización del documento y contiene una barra de pestañas cuyos botones muestran una sección distinta al ser pulsados." +msgstr "La barra lateral se encuentra acoplada en el lado derecho o izquierdo del área de visualización del documento y contiene una barra de pestañas cuyos botones muestran un grupo distinto al ser pulsados." #. EbTSQ #: menu_view_sidebar.xhp @@ -47930,7 +47930,7 @@ "par_id702230\n" "help.text" msgid "You can disable or enable the automatic check in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Puede habilitar o deshabilitar la actualización automática en %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME - Actualización en línea." +msgstr "Puede activar o desactivar la actualización automática en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Actualización en línea." #. AJBeB #: online_update.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -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 "Dibuja una línea que acaba en un cuadro de leyenda rectangular con dirección de texto horizontal desde el lugar del que se arrastra en el documento actual. Para cambiar el tamaño de la llamada arrastre una de sus manillas. Para agregar texto pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la manilla de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano." +msgstr "Dibuja una línea que acaba en un cuadro de leyenda rectangular, con dirección de escritura horizontal a partir del lugar del que se arrastra, en el documento actual. Para cambiar el tamaño de la llamada, arrastre una de sus agarraderas. Para añadir texto, pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la agarradera de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano." #. 3wvLq #: 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 "Dibuja una línea que acaba en un cuadro de llamada rectangular con dirección de escritura vertical desde el lugar del que se arrastra en el documento actual. Para cambiar el tamaño de la llamada arrastre una de sus manillas. Para agregar texto pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la manilla de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano. Sólo disponible cuando la compatibilidad con idiomas asiáticos está activada." +msgstr "Dibuja una línea que acaba en un cuadro de llamada rectangular, con dirección de escritura vertical a partir del lugar del que se arrastra, en el documento actual. Para cambiar el tamaño de la llamada, tire de una de sus agarraderas. Para añadir texto, pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la agarradera de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano. La opción solo está disponible cuando se activa la compatibilidad con idiomas asiáticos." #. JJWjC #: 01140000.xhp @@ -1013,7 +1013,7 @@ "par_id3166428\n" "help.text" msgid "Creates a list box. A list box lets users select an entry from a list. If the form is linked to a database and the database connection is active, the List Box Wizard will automatically appear after the list box is inserted in the document. This wizard helps you create the list box." -msgstr "Crea un cuadro de lista. El cuadro de lista permite a los usuarios seleccionar una entrada de una lista. Si el formulario se enlaza con una base de datos y la conexión con la base está activa, aparecerá automáticamente el Asistente de cuadro de lista tras insertar el cuadro de lista en el documento. Este asistente le ayuda a configurar el cuadro." +msgstr "Crea un cuadro de lista. El cuadro de lista permite a los usuarios seleccionar una entrada de una lista. Si el formulario se enlaza con una base de datos y la conexión con la base está activa, aparecerá automáticamente el Asistente para cuadro de lista tras insertar el cuadro de lista en el documento. Este asistente le ayuda a configurar el cuadro." #. T6y5B #: 01170000.xhp @@ -1040,7 +1040,7 @@ "par_id3149407\n" "help.text" msgid "Creates a combo box. A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the Combo Box Wizard will automatically appear after you insert the combo box in the document." -msgstr "Crea un cuadro combinado. Un cuadro combinado es un listado de un solo renglón con una lista desplegable en la que los usuarios pueden elegir una opción. Puede asignar al cuadro combinado la propiedad «solo lectura» para que los usuarios no puedan escribir entradas distintas de las que aparecen en la lista. Si el formulario está relacionado con una base de datos y la conexión con ella está activa, el asistente de cuadros combinados se abre de forma automática después de insertar el cuadro combinado en el documento." +msgstr "Crea un cuadro combinado. Un cuadro combinado es un listado de un solo renglón con una lista desplegable en la que los usuarios pueden elegir una opción. Puede asignar al cuadro combinado la propiedad «solo lectura» para que los usuarios no puedan escribir entradas distintas de las que aparecen en la lista. Si el formulario está relacionado con una base de datos y la conexión con ella está activa, el asistente para cuadros combinados se abre de forma automática después de insertar el cuadro combinado en el documento." #. yDFji #: 01170000.xhp @@ -1706,7 +1706,7 @@ "par_id3148394\n" "help.text" msgid "If you insert a group frame into the document, the Group Element Wizard starts, which allows you to easily create an option group." -msgstr "Si se inserta un marco de grupo en el documento, se inicia el asistente de agrupación de elementos, que permite crear con facilidad un grupo de opciones." +msgstr "Si se inserta un marco de grupo en el documento, se inicia el asistente para agrupación de elementos, que permite crear con facilidad un grupo de opciones." #. YPpYV #: 01170000.xhp @@ -3821,7 +3821,7 @@ "par_id3153287\n" "help.text" msgid "For URL type buttons, the help text appears as the extended tip instead of the URL address entered under URL." -msgstr "" +msgstr "En el caso de los botones de tipo URL, el texto de ayuda aparece como la descripción emergente ampliada, en lugar de la dirección URL introducida en URL." #. 75FBj #: 01170101.xhp @@ -9896,7 +9896,7 @@ "bm_id3159233\n" "help.text" msgid "forms; Combo Box/List Box Wizard" -msgstr "formularios;Asistente de cuadro combinado / cuadro de lista" +msgstr "formularios;Asistente para cuadro combinado / cuadro de lista" #. ZvjMo #: 01170900.xhp @@ -11012,7 +11012,7 @@ "par_id3149827\n" "help.text" msgid "Text direction from top to bottom" -msgstr "Dirección de escritura de arriba a abajo" +msgstr "Dirección de escritura de arriba abajo" #. RBXPc #: 02130000.xhp @@ -12893,7 +12893,7 @@ "par_id3153683\n" "help.text" msgid "Opens the hyperlink in your default web browser." -msgstr "Abre el hipervínculo en su navegador Web predeterminado." +msgstr "Abre el hiperenlace en su navegador Web predeterminado." #. yM32z #: 09070000.xhp @@ -12920,7 +12920,7 @@ "par_id0122200902231630\n" "help.text" msgid "Removes the hyperlink, leaving plain text." -msgstr "Elimina el hipervínculo, dejando texto sin formato." +msgstr "Elimina el hiperenlace, dejando texto sin formato." #. uzB6R #: 09070000.xhp @@ -19211,7 +19211,7 @@ "par_id0514200804261097\n" "help.text" msgid "In Impress and Draw no dialog is shown when you click the icon, but you see eight cropping handles. Open the context menu of a selected picture and choose Crop Image, if you want to use the dialog for cropping." -msgstr "En Impress y Draw no se muestra ningún cuadro de diálogo al pulsar en el icono, sino que verá ocho manijas de recorte. Abra el menú contextual de la imagen y elija Recortar imagen si prefiere usar el cuadro de diálogo para recortar." +msgstr "En Impress y Draw no se muestra ningún cuadro de diálogo al pulsar en el icono, sino que verá ocho agarraderas de recorte. Abra el menú contextual de la imagen y elija Recortar imagen si prefiere usar el cuadro de diálogo para recortar." #. CSAFE #: 24100000.xhp @@ -19220,7 +19220,7 @@ "par_id0514200804261043\n" "help.text" msgid "Drag any of the eight cropping handles to crop the picture." -msgstr "Arrastre cualquiera de las ocho manijas para recortar la imagen." +msgstr "Arrastre cualquiera de las ocho agarraderas para recortar la imagen." #. SdwAf #: 24100000.xhp @@ -19283,7 +19283,7 @@ "par_idN10594\n" "help.text" msgid "Some shapes have a handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. dU82R #: blockarrows.xhp @@ -19328,7 +19328,7 @@ "par_idN1059D\n" "help.text" msgid "Some shapes have a special handle which you can drag to change properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. Ssw34 #: callouts.xhp @@ -19382,7 +19382,7 @@ "par_idN10597\n" "help.text" msgid "Some shapes have a special handle which you can drag to change properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. TMQDK #: colortoolbar.xhp @@ -19598,7 +19598,7 @@ "par_idN1057A\n" "help.text" msgid "First select some text or an object, then click this icon. Then click on or drag across other text or click an object to apply the same formatting." -msgstr "Primero seleccionar algún texto u objeto, luego dar clic en este icono. Luego para aplicar el mismo formato, dar un clic o arrastrar a través de otro texto o clic en otro objeto." +msgstr "Primero seleccione algún texto u objeto; luego, pulse en este icono. Acto seguido, para aplicar el mismo formato, pulse o arrastre sobre otro texto u objeto." #. FsDda #: paintbrush.xhp @@ -19769,7 +19769,7 @@ "par_idN10597\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." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. SNjA5 #: symbolshapes.xhp @@ -19814,7 +19814,7 @@ "par_idN1059D\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." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. Ju4Wr #: symbolshapes.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -725,7 +725,7 @@ "tit\n" "help.text" msgid "Tips and Extended Tips" -msgstr "Consejos y consejos extendidos" +msgstr "Descripciones emergentes y descripciones ampliadas" #. YfEyC #: 00000120.xhp @@ -743,7 +743,7 @@ "hd_id3155599\n" "help.text" msgid "Tips and Extended Tips" -msgstr "Consejos y consejos extendidos" +msgstr "Descripciones emergentes y descripciones ampliadas" #. UWpFA #: 00000120.xhp @@ -752,7 +752,7 @@ "par_id3148520\n" "help.text" msgid "Tips and Extended Tips provide help while you work." -msgstr "Los consejos y los consejos extendidos le proporcionan ayuda mientras trabaja." +msgstr "Las descripciones emergentes y las versiones ampliadas de las mismas le proporcionan ayuda mientras trabaja." #. U4ku2 #: 00000120.xhp @@ -770,7 +770,7 @@ "par_id3157896\n" "help.text" msgid "Tips provide you with the names of toolbar buttons. To display a tip, rest the pointer over a toolbar button until the name of the button appears." -msgstr "" +msgstr "Las descripciones emergentes informan de los nombres de los botones de las barras de herramientas. Para mostrar una, deje el puntero del ratón sobre un botón hasta que aparezca el nombre de este." #. phMKm #: 00000120.xhp @@ -779,7 +779,7 @@ "par_id3153910\n" "help.text" msgid "Tips are also displayed for some elements in a document, such as chapter names when you scroll through a long document." -msgstr "" +msgstr "También se muestran descripciones emergentes para determinados elementos del documento, como los nombres de los capítulos, cuando se desplaza por un documento extenso." #. uGgBR #: 00000120.xhp @@ -806,7 +806,7 @@ "par_id3149346\n" "help.text" msgid "Extended Tips provide a brief description about buttons and commands. To display an extended tip, press Shift+F1, then point to a button or command." -msgstr "" +msgstr "Las descripciones emergentes ampliadas brindan información concisa sobre los botones y las órdenes. Para que se muestre una descripción amplada, presione Mayús + F1 y, a continuación, apunte con el ratón a un botón o a una orden." #. KZ5SB #: 00000120.xhp @@ -815,7 +815,7 @@ "par_idN10666\n" "help.text" msgid "If you always want extended tips instead of tips, enable the extended tips on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General." -msgstr "Si quiere usar los consejos extendidos en lugar de los normales, actívelos en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General." +msgstr "Si quiere usar las descripciones ampliadas en lugar de las normales, actívelas en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General." #. RXCzT #: 00000130.xhp @@ -1103,7 +1103,7 @@ "par_id3145345\n" "help.text" msgid "Double-clicking a bookmark or pressing the Return key opens the assigned page in Help. A right-click opens the context menu." -msgstr "" +msgstr "Pulsar dos veces sobre un marcador u oprimir la tecla Intro abrirá la página correspondiente de la Ayuda. Para abrir un menú contextual, pulse con el botón secundario del ratón." #. qqCBe #: 00000150.xhp @@ -1148,7 +1148,7 @@ "par_id3153087\n" "help.text" msgid "Delete - deletes the selected bookmark." -msgstr "" +msgstr "Eliminar: suprime el marcador seleccionado." #. VqaZD #: 00000160.xhp @@ -1238,7 +1238,7 @@ "par_id3152909\n" "help.text" msgid "Double-click a document icon to display the corresponding Help page." -msgstr "Pulse dos veces el símbolo de un documento para abrir la página de ayuda correspondiente." +msgstr "Pulse dos veces en el icono de un documento para abrir la página de ayuda correspondiente." #. yFLEy #: 00000160.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/autopi.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/autopi.po 2022-07-15 19:12:51.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 18:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -104,7 +104,7 @@ "tit\n" "help.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. PFxuA #: 01010000.xhp @@ -113,7 +113,7 @@ "bm_id3151100\n" "help.text" msgid "wizards; lettersLetter Wizardtemplates;letters" -msgstr "asistentes; cartasAsistente de cartasplantillas;cartas" +msgstr "asistentes; cartasAsistente para cartasplantillas;cartas" #. 96DDV #: 01010000.xhp @@ -122,7 +122,7 @@ "hd_id3151100\n" "help.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. 6BFCi #: 01010000.xhp @@ -230,7 +230,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Page design" -msgstr "Asistente de cartas. Diseño de página" +msgstr "Asistente para cartas. Diseño de página" #. HhQdD #: 01010100.xhp @@ -239,7 +239,7 @@ "hd_id3147102\n" "help.text" msgid "Letter Wizard - Page design" -msgstr "Asistente de cartas. Diseño de página" +msgstr "Asistente para cartas. Diseño de página" #. jBVzZ #: 01010100.xhp @@ -365,7 +365,7 @@ "par_id3150254\n" "help.text" msgid "Go to Letter Wizard - Letterhead layout" -msgstr "Avanzar a Asistente de cartas ▸ Disposición de membrete" +msgstr "Avanzar a Asistente para cartas ▸ Disposición de membrete" #. ma7Nd #: 01010200.xhp @@ -374,7 +374,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Letterhead layout" -msgstr "Asistente de cartas. Disposición de membrete" +msgstr "Asistente para cartas. Disposición de membrete" #. Amg7R #: 01010200.xhp @@ -383,7 +383,7 @@ "hd_id3155354\n" "help.text" msgid "Letter Wizard - Letterhead layout" -msgstr "Asistente de cartas. Disposición de membrete" +msgstr "Asistente para cartas. Disposición de membrete" #. 9ZLVJ #: 01010200.xhp @@ -572,7 +572,7 @@ "par_id3153367\n" "help.text" msgid "Go to Letter Wizard - Printed items" -msgstr "Avanzar a Asistente de cartas ▸ Elementos impresos" +msgstr "Avanzar a Asistente para cartas ▸ Elementos impresos" #. hPVFU #: 01010300.xhp @@ -581,7 +581,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Printed items" -msgstr "Asistente de cartas. Elementos impresos" +msgstr "Asistente para cartas. Elementos impresos" #. Syz7w #: 01010300.xhp @@ -590,7 +590,7 @@ "hd_id3148520\n" "help.text" msgid "Letter Wizard - Printed items" -msgstr "Asistente de cartas: elementos impresos" +msgstr "Asistente para cartas: elementos impresos" #. wnxmZ #: 01010300.xhp @@ -752,7 +752,7 @@ "par_id3149666\n" "help.text" msgid "Go to Letter Wizard - Recipient and sender" -msgstr "Avanzar a Asistente de cartas ▸ Destinatario y remitente" +msgstr "Avanzar a Asistente para cartas ▸ Destinatario y remitente" #. EYFFV #: 01010400.xhp @@ -761,7 +761,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Recipient and sender" -msgstr "Asistente de cartas. Destinatario y remitente" +msgstr "Asistente para cartas. Destinatario y remitente" #. Fg4tq #: 01010400.xhp @@ -770,7 +770,7 @@ "hd_id3154288\n" "help.text" msgid "Letter Wizard - Recipient and sender" -msgstr "Asistente de cartas. Destinatario y remitente" +msgstr "Asistente para cartas. Destinatario y remitente" #. ZFzrE #: 01010400.xhp @@ -950,7 +950,7 @@ "par_id3154365\n" "help.text" msgid "Go to Letter Wizard - Footer" -msgstr "Avanzar a Asistente de cartas ▸ Pie" +msgstr "Avanzar a Asistente para cartas ▸ Pie" #. P7eTT #: 01010500.xhp @@ -959,7 +959,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Footer" -msgstr "Asistente de cartas. Pie" +msgstr "Asistente para cartas. Pie" #. WCeEp #: 01010500.xhp @@ -968,7 +968,7 @@ "hd_id3143281\n" "help.text" msgid "Letter Wizard - Footer" -msgstr "Asistente de cartas. Pie" +msgstr "Asistente para cartas. Pie" #. kNGXK #: 01010500.xhp @@ -1040,7 +1040,7 @@ "par_id3154988\n" "help.text" msgid "Go to Letter Wizard - Name and location" -msgstr "Avanzar a Asistente de cartas ▸ Nombre y ubicación" +msgstr "Avanzar a Asistente para cartas ▸ Nombre y ubicación" #. sbinu #: 01010600.xhp @@ -1049,7 +1049,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Name and Location" -msgstr "Asistente de cartas: nombre y ubicación" +msgstr "Asistente para cartas: nombre y ubicación" #. EtxLp #: 01010600.xhp @@ -1058,7 +1058,7 @@ "hd_id3150355\n" "help.text" msgid "Letter Wizard - Name and Location" -msgstr "Asistente de cartas: nombre y ubicación" +msgstr "Asistente para cartas: nombre y ubicación" #. Bf2pC #: 01010600.xhp @@ -1148,7 +1148,7 @@ "par_idN10665\n" "help.text" msgid "Letter Wizard overview" -msgstr "Información general sobre el Asistente de cartas" +msgstr "Información general sobre el Asistente para cartas" #. Fdhin #: 01020000.xhp @@ -1157,7 +1157,7 @@ "tit\n" "help.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. Le26A #: 01020000.xhp @@ -1175,7 +1175,7 @@ "hd_id3150445\n" "help.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. mZvnG #: 01020000.xhp @@ -1184,7 +1184,7 @@ "par_id3153394\n" "help.text" msgid "Opens the wizard for faxes. The wizard can help you create document templates for fax documents. You can then print the fax documents to a printer or to a fax machine, if fax driver software is available. " -msgstr "Abre el Asistente de faxes. El asistente ayuda a crear plantillas de documento para faxes. Luego podrá imprimir los faxes o, si dispone de una máquina de fax con su controlador, enviarlos directamente a través de él." +msgstr "Abre el Asistente para faxes. El asistente ayuda a crear plantillas de documento para faxes. Luego podrá imprimir los faxes o, si dispone de una máquina de fax con su controlador, enviarlos directamente a través de él." #. TiVAB #: 01020000.xhp @@ -1265,7 +1265,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Page Design" -msgstr "Asistente de faxes: diseño de página" +msgstr "Asistente para faxes: diseño de página" #. PxSiA #: 01020100.xhp @@ -1274,7 +1274,7 @@ "hd_id3109850\n" "help.text" msgid "Fax Wizard - Page Design" -msgstr "Asistente de faxes: diseño de página" +msgstr "Asistente para faxes. Diseño de página" #. hNAfN #: 01020100.xhp @@ -1373,7 +1373,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Items to include" -msgstr "Asistente de faxes: elementos que incluir" +msgstr "Asistente para faxes. Elementos que incluir" #. 4nzcG #: 01020200.xhp @@ -1382,7 +1382,7 @@ "hd_id3157898\n" "help.text" msgid "Fax Wizard - Items to include" -msgstr "Asistente de faxes: elementos que incluir" +msgstr "Asistente para faxes. Elementos que incluir" #. gA627 #: 01020200.xhp @@ -1526,7 +1526,7 @@ "par_id3148491\n" "help.text" msgid "Go to Fax Wizard - Sender and Recipient" -msgstr "Ir a Asistente de faxes. Remitente y destinatario" +msgstr "Ir a Asistente para faxes. Remitente y destinatario" #. KqE4C #: 01020300.xhp @@ -1535,7 +1535,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Sender and Recipient" -msgstr "Asistente de faxes. Remitente y destinatario" +msgstr "Asistente para faxes. Remitente y destinatario" #. DFEty #: 01020300.xhp @@ -1544,7 +1544,7 @@ "hd_id3155934\n" "help.text" msgid "Fax Wizard - Sender and Recipient" -msgstr "Asistente de faxes. Remitente y destinatario" +msgstr "Asistente para faxes. Remitente y destinatario" #. 9wCnR #: 01020300.xhp @@ -1661,7 +1661,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Footer" -msgstr "Asistente de faxes: pie de página" +msgstr "Asistente para faxes: pie de página" #. GBKcG #: 01020400.xhp @@ -1670,7 +1670,7 @@ "hd_id3147143\n" "help.text" msgid "Fax Wizard - Footer" -msgstr "Asistente de faxes: pie de página" +msgstr "Asistente para faxes: pie de página" #. moG7a #: 01020400.xhp @@ -1751,7 +1751,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Name and location" -msgstr "Asistente de faxes: nombre y ubicación" +msgstr "Asistente para faxes: nombre y ubicación" #. 4u9br #: 01020500.xhp @@ -1760,7 +1760,7 @@ "hd_id3150247\n" "help.text" msgid "Fax Wizard - Name and location" -msgstr "Asistente de faxes: nombre y ubicación" +msgstr "Asistente para faxes: nombre y ubicación" #. 9MJNj #: 01020500.xhp @@ -1859,7 +1859,7 @@ "tit\n" "help.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. D3wGn #: 01040000.xhp @@ -1868,7 +1868,7 @@ "bm_id3149031\n" "help.text" msgid "wizards;agendasAgenda Wizardtemplates;agendas" -msgstr "asistentes;órdenes del díaAsistente de órdenes del díaplantillas;órdenes del día" +msgstr "asistentes;órdenes del díaAsistente para órdenes del díaplantillas;órdenes del día" #. s5qJR #: 01040000.xhp @@ -1877,7 +1877,7 @@ "hd_id3149031\n" "help.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. rVtcF #: 01040000.xhp @@ -1886,7 +1886,7 @@ "par_id3147102\n" "help.text" msgid "Starts the wizard to help you create an agenda template. You can use an agenda to specify discussion topics for conferences and meetings." -msgstr "Inicia el asistente de creación de plantillas para órdenes del día. Puede utilizar las órdenes del día para especificar los temas que se debatirán en conferencias y reuniones." +msgstr "Inicia el asistente para creación de plantillas para órdenes del día. Puede utilizar las órdenes del día para especificar los temas que se debatirán en conferencias y reuniones." #. HJ9w2 #: 01040000.xhp @@ -1976,7 +1976,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Asistente de órdenes del día: diseño de página" +msgstr "Asistente para órdenes del día: diseño de página" #. bBzNB #: 01040100.xhp @@ -1985,7 +1985,7 @@ "hd_id3151100\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Asistente de órdenes del día: diseño de página" +msgstr "Asistente para órdenes del día: diseño de página" #. fPTHx #: 01040100.xhp @@ -2039,7 +2039,7 @@ "par_id3153087\n" "help.text" msgid "Go to Agenda Wizard - General information" -msgstr "Vaya al Asistente de órdenes del día ▸ Información general" +msgstr "Vaya al Asistente para órdenes del día ▸ Información general" #. WGmzy #: 01040200.xhp @@ -2048,7 +2048,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Asistente de órdenes del día: información general" +msgstr "Asistente para órdenes del día: información general" #. d4naA #: 01040200.xhp @@ -2057,7 +2057,7 @@ "hd_id3150247\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Asistente de órdenes del día: información general" +msgstr "Asistente para órdenes del día: información general" #. eLECH #: 01040200.xhp @@ -2147,7 +2147,7 @@ "par_id3148946\n" "help.text" msgid "Go to Agenda Wizard - Headings to include" -msgstr "Vaya al Asistente de órdenes del día ▸ Títulos que incluir" +msgstr "Vaya al Asistente para órdenes del día ▸ Títulos que incluir" #. Q5JDB #: 01040300.xhp @@ -2156,7 +2156,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Asistente de órdenes del día: títulos que incluir" +msgstr "Asistente para órdenes del día: títulos que incluir" #. ipAGt #: 01040300.xhp @@ -2165,7 +2165,7 @@ "hd_id3109850\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Asistente de órdenes del día: títulos que incluir" +msgstr "Asistente para órdenes del día: títulos que incluir" #. yBn6A #: 01040300.xhp @@ -2255,7 +2255,7 @@ "par_id3163802\n" "help.text" msgid "Go to Agenda Wizard - Names" -msgstr "Vaya al Asistente de órdenes del día ▸ Nombres" +msgstr "Vaya al Asistente para órdenes del día ▸ Nombres" #. zECC7 #: 01040400.xhp @@ -2264,7 +2264,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Asistente de órdenes del día: nombres" +msgstr "Asistente para órdenes del día: nombres" #. FmZNr #: 01040400.xhp @@ -2273,7 +2273,7 @@ "hd_id3143284\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Asistente de órdenes del día: nombres" +msgstr "Asistente para órdenes del día: nombres" #. emLhT #: 01040400.xhp @@ -2417,7 +2417,7 @@ "par_id3150275\n" "help.text" msgid "Go to Agenda Wizard - Agenda Items" -msgstr "Vaya al Asistente de órdenes del día ▸ Temas del orden del día" +msgstr "Vaya al Asistente para órdenes del día ▸ Temas del orden del día" #. STCc4 #: 01040500.xhp @@ -2426,7 +2426,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Asistente de órdenes del día: temas del orden del día" +msgstr "Asistente para órdenes del día: temas del orden del día" #. Gj4D2 #: 01040500.xhp @@ -2435,7 +2435,7 @@ "hd_id3159224\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Asistente de órdenes del día: temas del orden del día" +msgstr "Asistente para órdenes del día: temas del orden del día" #. BDRvF #: 01040500.xhp @@ -2543,7 +2543,7 @@ "par_id3146798\n" "help.text" msgid "Go to Agenda Wizard - Name and location" -msgstr "Vaya al Asistente de órdenes del día ▸ Nombre y ubicación" +msgstr "Vaya al Asistente para órdenes del día ▸ Nombre y ubicación" #. H9Wbq #: 01040600.xhp @@ -2552,7 +2552,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Asistente de órdenes del día: nombre y ubicación" +msgstr "Asistente para órdenes del día: nombre y ubicación" #. VcrH9 #: 01040600.xhp @@ -2561,7 +2561,7 @@ "hd_id3144740\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Asistente de órdenes del día: nombre y ubicación" +msgstr "Asistente para órdenes del día: nombre y ubicación" #. viGf3 #: 01040600.xhp @@ -2651,7 +2651,7 @@ "par_idN105F6\n" "help.text" msgid "Go to Agenda Wizard" -msgstr "Vaya al Asistente de órdenes del día" +msgstr "Vaya al Asistente para órdenes del día" #. 4DsCG #: 01090000.xhp @@ -2660,7 +2660,7 @@ "tit\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. XGnsy #: 01090000.xhp @@ -2678,7 +2678,7 @@ "hd_id3109850\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. xPnbC #: 01090000.xhp @@ -2714,7 +2714,7 @@ "tit\n" "help.text" msgid "Form Wizard - Field Selection" -msgstr "Asistente de formularios: selección de campos" +msgstr "Asistente para formularios: selección de campos" #. vKHEZ #: 01090100.xhp @@ -2723,7 +2723,7 @@ "hd_id3155599\n" "help.text" msgid "Form Wizard - Field Selection" -msgstr "Asistente de formularios: selección de campos" +msgstr "Asistente para formularios: selección de campos" #. q2PHa #: 01090100.xhp @@ -2732,7 +2732,7 @@ "par_id3150445\n" "help.text" msgid "On this page of the Form Wizard, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form." -msgstr "En esta página del Asistente de formularios puede especificar la tabla o consulta que debe crear el formulario, así como los campos que este debe tener." +msgstr "En esta página del Asistente para formularios puede especificar la tabla o consulta que debe crear el formulario, así como los campos que este debe tener." #. yohes #: 01090100.xhp @@ -3263,7 +3263,7 @@ "par_idN105F8\n" "help.text" msgid "Form Wizard - Arrange controls" -msgstr "Asistente de formularios ▸ Organizar controles" +msgstr "Asistente para formularios ▸ Organizar controles" #. oKc93 #: 01090300.xhp @@ -3641,7 +3641,7 @@ "tit\n" "help.text" msgid "Form Wizard - Apply Styles" -msgstr "Asistente de formularios: aplicar estilos" +msgstr "Asistente para formularios: aplicar estilos" #. r5BGE #: 01090500.xhp @@ -3650,7 +3650,7 @@ "par_idN10543\n" "help.text" msgid "Form Wizard - Apply Styles" -msgstr "Asistente de formularios: aplicar estilos" +msgstr "Asistente para formularios: aplicar estilos" #. gfLGt #: 01090500.xhp @@ -3758,7 +3758,7 @@ "par_idN10579\n" "help.text" msgid "Form Wizard - Set name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. kFiaa #: 01090600.xhp @@ -3767,7 +3767,7 @@ "tit\n" "help.text" msgid "Form Wizard - Set Name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. 83jJk #: 01090600.xhp @@ -3776,7 +3776,7 @@ "par_idN10543\n" "help.text" msgid "Form Wizard - Set Name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. kuq7q #: 01090600.xhp @@ -3848,7 +3848,7 @@ "par_idN10569\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. 9GEmD #: 01100000.xhp @@ -3857,7 +3857,7 @@ "tit\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. Ljpsw #: 01100000.xhp @@ -3866,7 +3866,7 @@ "hd_id3150499\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. Wxizv #: 01100000.xhp @@ -3875,7 +3875,7 @@ "par_id3145071\n" "help.text" msgid "Activates the wizard for creating reports." -msgstr "Activa el asistente de creación de informes." +msgstr "Activa el asistente para creación de informes." #. JBzBF #: 01100000.xhp @@ -4217,7 +4217,7 @@ "tit\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Asistente para informe - Opciones de ordenación" +msgstr "Asistente para informes. Opciones de clasificación" #. 5icZB #: 01100300.xhp @@ -4226,7 +4226,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Asistente para informes - Opciones de ordenación" +msgstr "Asistente para informes. Opciones de clasificación" #. RSArv #: 01100300.xhp @@ -4325,7 +4325,7 @@ "tit\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Asistente de informes: elija una disposición" +msgstr "Asistente para informes: elija una disposición" #. GCkoV #: 01100400.xhp @@ -4334,7 +4334,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Asistente de informes: elija una disposición" +msgstr "Asistente para informes: elija una disposición" #. aPVFq #: 01100400.xhp @@ -4442,7 +4442,7 @@ "par_id3148491\n" "help.text" msgid "More about Report Wizard - Create Report" -msgstr "Más acerca de Asistente de informes - Crear informe" +msgstr "Más acerca de Asistente para informes - Crear informe" #. KwNon #: 01100500.xhp @@ -4451,7 +4451,7 @@ "tit\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Asistente de informes: crear informe" +msgstr "Asistente para informes: crear informe" #. gKZbX #: 01100500.xhp @@ -4460,7 +4460,7 @@ "hd_id3156211\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Asistente de informes: crear informe" +msgstr "Asistente para informes: crear informe" #. G5N3i #: 01100500.xhp @@ -5315,7 +5315,7 @@ "par_id3148432\n" "help.text" msgid "In the second page of the HTML Export, select WebCast as the publication type." -msgstr "Elija en la segunda página del asistente de exportación a HTML WebCast como tipo de publicación." +msgstr "Elija en la segunda página del asistente para exportación a HTML WebCast como tipo de publicación." #. Fd3Tc #: 01110200.xhp @@ -6629,7 +6629,7 @@ "par_id3156410\n" "help.text" msgid "The Document Converter Wizard contains the following pages:" -msgstr "El Asistente de conversión de documentos contiene las páginas siguientes:" +msgstr "El Asistente para conversión de documentos contiene las páginas siguientes:" #. 9CQNJ #: 01130000.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 "Aquí puede regresar a la página principal del Asistente de conversión de documentos." +msgstr "Aquí puede regresar a la página principal del Asistente para conversión de documentos." #. ELq8D #: 01150000.xhp @@ -6980,7 +6980,7 @@ "tit\n" "help.text" msgid "Euro Converter Wizard" -msgstr "Asistente de conversión de euros" +msgstr "Asistente para conversión de euros" #. EKHAB #: 01150000.xhp @@ -6989,7 +6989,7 @@ "bm_id3154840\n" "help.text" msgid "Euro; Euro Converter Wizardwizards; Euro Converterconverters; Euro convertercurrencies; converters" -msgstr "euro;Asistente de conversión de eurosasistentes;Conversor de eurosconversores;Conversor de eurosmonedas;conversores" +msgstr "euro;Asistente para conversión de eurosasistentes;Conversor de eurosconversores;Conversor de eurosmonedas;conversores" #. ERtPD #: 01150000.xhp @@ -6998,7 +6998,7 @@ "hd_id3154840\n" "help.text" msgid "Euro Converter Wizard" -msgstr "Asistente de conversión de euros" +msgstr "Asistente para conversión de euros" #. uwNbS #: 01150000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-01-20 17:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550598512.000000\n" #. kyYMn @@ -1886,7 +1886,7 @@ "par_id7588732\n" "help.text" msgid "In the Groups box, open the Group Header list box and select to show a group header." -msgstr "En la sección Agrupar, abra el Encabezado de grupo y marque mostrar encabezado de grupo." +msgstr "En el apartado Grupos, abra el cuadro de lista Cabecera de grupo y seleccione que se muestre este elemento mencionado." #. AAvAB #: rep_main.xhp @@ -2120,7 +2120,7 @@ "par_id1565904\n" "help.text" msgid "In the initial value enter 0." -msgstr "Como valor inicial ingrese 0." +msgstr "Como valor inicial introduzca 0." #. RkdrZ #: rep_navigator.xhp @@ -2741,7 +2741,7 @@ "par_id5833307\n" "help.text" msgid "Select to show or hide the Group Header." -msgstr "Seleccione mostrar u ocultar el encabezado de grupo." +msgstr "Seleccione esta opción para mostrar u ocultar la cabecera de grupo." #. tN76n #: rep_sort.xhp @@ -2750,7 +2750,7 @@ "par_id7726676\n" "help.text" msgid "Select to show or hide the Group Footer." -msgstr "Seleccione mostrar u ocultar el pie de página del grupo." +msgstr "Seleccione esta opción para mostrar u ocultar el pie de grupo." #. Ez4dt #: rep_sort.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -275,7 +275,7 @@ "tit\n" "help.text" msgid "Turning Extended Tips On and Off" -msgstr "Activar o desactivar la ayuda emergente" +msgstr "Activar o desactivar las descripciones emergentes ampliadas" #. 2AGQZ #: active_help_on_off.xhp @@ -293,7 +293,7 @@ "hd_id3156414\n" "help.text" msgid "Turning Extended Tips On and Off" -msgstr "Activar y desactivar la ayuda emergente" +msgstr "Activar y desactivar las descripciones emergentes ampliadas" #. Q57zF #: active_help_on_off.xhp @@ -329,7 +329,7 @@ "par_id3149398\n" "help.text" msgid "A check mark indicates that the extended tips are activated." -msgstr "Una marca de verificación indica que la ayuda emergente está activada." +msgstr "Una marca de comprobación indica que las descripciones emergentes ampliadas están activadas." #. KaXUm #: active_help_on_off.xhp @@ -2048,7 +2048,7 @@ "par_id7549363\n" "help.text" msgid "You see a chart preview and the Chart Wizard." -msgstr "Verá una previsualización del gráfico y el Asistente de gráficos." +msgstr "Verá una previsualización del gráfico y el Asistente para gráficos." #. 5yB5v #: chart_insert.xhp @@ -2057,7 +2057,7 @@ "par_id9091769\n" "help.text" msgid "Follow the instructions in the Chart Wizard to create the chart." -msgstr "Siga las instrucciones del Asistente de gráficos para crear el gráfico." +msgstr "Siga las instrucciones del Asistente para gráficos para crear el gráfico." #. beBWD #: chart_insert.xhp @@ -2102,7 +2102,7 @@ "par_id6171452\n" "help.text" msgid "You see a chart preview and the Chart Wizard." -msgstr "Verá una previsualización del gráfico y el Asistente de gráficos." +msgstr "Verá una previsualización del gráfico y el Asistente para gráficos." #. E525o #: chart_insert.xhp @@ -2111,7 +2111,7 @@ "par_id3145419\n" "help.text" msgid "Follow the instructions in the Chart Wizard to create the chart." -msgstr "Siga las instrucciones del Asistente de gráficos para crear el gráfico." +msgstr "Siga las instrucciones del Asistente para gráficos para crear el gráfico." #. jP5b5 #: chart_insert.xhp @@ -2606,7 +2606,7 @@ "hd_id030820161747134459\n" "help.text" msgid "Customizing classification levels." -msgstr "" +msgstr "Personalizar los niveles de clasificación" #. DCBYu #: classification.xhp @@ -2615,7 +2615,7 @@ "bm_id030820161851045883\n" "help.text" msgid "custom;classification levels classification levels;customizing" -msgstr "" +msgstr "personalizados;niveles de clasificación niveles de clasificación;personalizar" #. 3wmPg #: classification.xhp @@ -2633,7 +2633,7 @@ "par_id03082016174713477\n" "help.text" msgid "Use the file with your %PRODUCTNAME locale in the name as example." -msgstr "" +msgstr "Utilice como punto de partida el archivo que corresponda con la configuración regional de %PRODUCTNAME." #. YhBEK #: classification.xhp @@ -2642,7 +2642,7 @@ "par_id030820161747137522\n" "help.text" msgid "Save the file and make the adequate changes to the classification path above to access the file." -msgstr "" +msgstr "Guarde el archivo y realice las modificaciones adecuadas a la ruta de clasificación anterior para acceder al archivo." #. kzkkC #: classification.xhp @@ -2651,7 +2651,7 @@ "par_id030820161747135133\n" "help.text" msgid "Your system administrator can place the file in a network folder and make all users access the classification settings file." -msgstr "" +msgstr "Su administrador de sistemas puede colocar el archivo de configuración de clasificación en una carpeta de la red para que todos los usuarios puedan acceder a él." #. AnzFS #: classification.xhp @@ -2660,7 +2660,7 @@ "hd_id03082016174713354\n" "help.text" msgid "Pasting contents in documents with different levels of classification." -msgstr "" +msgstr "Pegar contenido en documentos con niveles distintos de clasificación" #. z5iqF #: classification.xhp @@ -2669,7 +2669,7 @@ "bm_id030820161851512902\n" "help.text" msgid "document classification;pasting contents" -msgstr "" +msgstr "clasificación de documentos;pegado de contenido" #. KSkfc #: classification.xhp @@ -2678,7 +2678,7 @@ "par_id030820161747134188\n" "help.text" msgid "To prevent a breach in the security policy, contents with high classification level pasted to documents with lower classification level are not allowed. %PRODUCTNAME will display a warning message wherever it detects that the contents of the clipboard have higher security classification than the target document." -msgstr "" +msgstr "Para evitar violaciones a la normativa de seguridad, no se permite pegar contenidos con niveles de clasificación elevados en documentos con niveles de clasificación inferiores. %PRODUCTNAME mostrará una alerta siempre que detecte que el contenido del portapapeles tiene una clasificación de seguridad más elevada que la del documento de destino." #. GCqDL #: classification.xhp @@ -2687,7 +2687,7 @@ "par_id030820161818081317\n" "help.text" msgid "TSCP (Transglobal Secure Collaboration Participation, Inc.) website." -msgstr "" +msgstr "Sitio web de TSCP (Transglobal Secure Collaboration Participation, Inc.) (en inglés)." #. gpp8Q #: classification.xhp @@ -2696,7 +2696,7 @@ "par_id030820161818082152\n" "help.text" msgid "Business Authentication Framework (BAF) document (PDF)" -msgstr "" +msgstr "Documento sobre el Marco de Autenticación Empresarial (BAF) (PDF, en inglés)" #. svkxK #: classification.xhp @@ -2705,7 +2705,7 @@ "par_id030820161818085901\n" "help.text" msgid "Business Authorization Identification and Labeling Scheme (BAILS) document (PDF)" -msgstr "" +msgstr "Documento sobre el Esquema de Identificación y Etiquetado de Autorizaciones Empresariales (BAILS) (PDF, en inglés)" #. TT796 #: cmis-remote-files-setup.xhp @@ -3497,7 +3497,7 @@ "par_id2519913\n" "help.text" msgid "Enable to share the current document with other users. Disable to use the document unshared. This will invalidate the not yet saved edits that other users applied in the time since you last opened or saved this document." -msgstr "Habilitar para compartir el documento actual con otros usuarios. Inhabilitar para usar el documento no compartido. Esto invalidará las ediciones aún no guardadas por otros usuarios, aplicado desde la última vez que se abrió o se guardado este documento." +msgstr "Active esta opción para compartir el documento actual con otras personas. Desactívela para utilizar el documento sin compartirlo. Se anularán todas aquellas ediciones aún no guardadas que otros hayan hecho desde el momento en que Ud. abrió o guardó el documento por última vez." #. yLhB5 #: collab.xhp @@ -3794,7 +3794,7 @@ "par_id2675862\n" "help.text" msgid "For all modules Writer, Impress, Draw, and for Calc when document sharing is not enabled, a file locking is possible. This file locking is available even when accessing the same document from different operating systems:" -msgstr "Para todos los módulos de Writer, Impress, Draw y Calc cuando el documento compartido no esta habilitado, un bloqueo de archivo es posible. Este bloqueo de archivo esta habilitado incluso cuando el acceso al mismo documento se hace desde diferentes sistemas operativos:" +msgstr "En Writer, Impress, Draw y Calc (este último, cuando no se activa la compartición de documentos), es posible efectuar bloqueos de archivos. Este bloqueo estará disponible incluso si se accede al mismo documento desde sistemas operativos diferentes:" #. 2AFCR #: collab.xhp @@ -4334,7 +4334,7 @@ "FilterName_writer_MIZI_Hwp_97\n" "help.text" msgid "Hangul WP 97" -msgstr "" +msgstr "Hangul WP 97" #. zZWv7 #: convertfilters.xhp @@ -4910,7 +4910,7 @@ "FilterName_Microsoft_Multiplan\n" "help.text" msgid "Microsoft Multiplan" -msgstr "" +msgstr "Microsoft Multiplan" #. EGUxE #: convertfilters.xhp @@ -6728,7 +6728,7 @@ "par_id3147008\n" "help.text" msgid "To call the Address Data Source wizard, choose File - Wizards - Address Data Source." -msgstr "Para ejecutar el Asistente de origen de datos de direcciones, seleccione Archivo ▸ Asistentes ▸ Origen de datos de direcciones." +msgstr "Para ejecutar el Asistente para origen de datos de direcciones, seleccione Archivo ▸ Asistentes ▸ Origen de datos de direcciones." #. KtvnA #: data_addressbook.xhp @@ -6764,7 +6764,7 @@ "par_id3149669\n" "help.text" msgid "If you have not yet registered the system address book in %PRODUCTNAME as the data source, click the Address Data Source ... button. This takes you to the Address Book Data Source Wizard, in which you can register your address book as a new data source in %PRODUCTNAME." -msgstr "Si todavía no ha registrado la libreta de direcciones del sistema en %PRODUCTNAME como origen de datos, pulse en el botón Origen de datos de direcciones. De esta forma, se accede al Asistente de Origen de datos de libreta de direcciones, para poder registrar la libreta de direcciones como nuevo origen de datos en %PRODUCTNAME." +msgstr "Si todavía no ha registrado la libreta de direcciones del sistema en %PRODUCTNAME como origen de datos, pulse en el botón Origen de datos de direcciones. De esta forma, se accede al Asistente para Origen de datos de libreta de direcciones, para poder registrar la libreta de direcciones como nuevo origen de datos en %PRODUCTNAME." #. otNu9 #: data_addressbook.xhp @@ -7502,7 +7502,7 @@ "par_idN105DD\n" "help.text" msgid "In the Database Wizard, select the type of database, and select the option to open the Table Wizard as the next wizard." -msgstr "En el Asistente de bases de datos, seleccione el tipo de base de datos y marque la opción para abrir el Asistente de tablas como el próximo asistente." +msgstr "En el Asistente para bases de datos, seleccione el tipo de base de datos y marque la opción para abrir el Asistente para tablas como el próximo asistente." #. wiuwa #: data_new.xhp @@ -7808,7 +7808,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 "Estos enlaces se añaden automáticamente cuando crea un informe nuevo mediante el Asistente de informes o el Generador de informes." +msgstr "Estos enlaces se añaden automáticamente cuando crea un informe nuevo mediante el Asistente para informes o el Generador de informes." #. rECmE #: data_report.xhp @@ -7862,7 +7862,7 @@ "hd_id3153104\n" "help.text" msgid "Editing a Report Created by the Report Wizard" -msgstr "Editar un informe creado por el Asistente de informes" +msgstr "Editar un informe creado por el Asistente para informes" #. PcBjS #: data_report.xhp @@ -7925,7 +7925,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 "Un informe es un documento de texto de Writer en el cual se muestran los datos organizados con formato y orden. En %PRODUCTNAME Base tiene la opción de crear un informe manualmente mediante la técnica de arrastrar y colocar en la ventana del Generador de informes, o semiautomáticamente utilizando el Asistente de informes." +msgstr "Un informe es un documento de texto de Writer en el cual se muestran los datos organizados con formato y orden. En %PRODUCTNAME Base tiene la opción de crear un informe manualmente mediante la técnica de arrastrar y colocar en la ventana del Generador de informes, o semiautomáticamente utilizando el Asistente para informes." #. G4j7Y #: data_reports.xhp @@ -7952,7 +7952,7 @@ "par_id9764091\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. GjNKw #: data_reports.xhp @@ -8132,7 +8132,7 @@ "par_idN105C4\n" "help.text" msgid "Creating a New Report With the Report Wizard" -msgstr "Crear un informe con el Asistente de informes" +msgstr "Crear un informe con el Asistente para informes" #. XSaQ9 #: data_reports.xhp @@ -8168,7 +8168,7 @@ "par_id8032166\n" "help.text" msgid "Follow the steps of the Report Wizard to create the report." -msgstr "Siga los pasos del Asistente de Informes para crear un informe." +msgstr "Siga los pasos del Asistente para Informes para crear un informe." #. TKDmA #: data_search.xhp @@ -8933,7 +8933,7 @@ "par_idN1078F\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. x7kax #: database_main.xhp @@ -11183,7 +11183,7 @@ "par_id3153665\n" "help.text" msgid "If you copy the graphic (drag it while holding down the CommandCtrl key, in which case a plus sign appears next to the mouse pointer), the graphic will be inserted as an object." -msgstr "Si se copia el gráfico (arrastrar mientras se mantiene presionada la tecla ComandoCtrl, en dicho caso aparecerá un signo mas al lado del puntero del mouse), el gráfico se insertara como un objeto." +msgstr "Si se copia la imagen (arrastre mientras mantiene presionada la tecla Ctrl, en cuyo caso aparecerá un signo de suma al lado del puntero del ratón), esta se insertará como un objeto." #. bppRZ #: dragdrop_fromgallery.xhp @@ -11192,7 +11192,7 @@ "par_id3154514\n" "help.text" msgid "If you create a hyperlink (drag while holding down Shift and CommandCtrl, in which case a linking arrow appears next to the mouse pointer), the drawing object is replaced by the graphic from the Gallery, but the position and size of the replaced draw object are retained." -msgstr "Si se crea un hipervínculo (arrastrando mientras se mantiene presionada Shift y ComandoControl, en este caso aparecerá una flecha de enlace al lado del puntero del ratón), el objeto de dibujo es reemplazado por el gráfico de la Galería, pero la posición y tamaño del objeto de dibujo reemplazado se mantiene." +msgstr "Si se crea un hiperenlace (arrastrando mientras se mantiene presionada Mayús y Ctrl, en este caso aparecerá una flecha de enlace al lado del puntero del ratón), el objeto de dibujo se reemplaza por la imagen de la Galería, pero la posición y el tamaño del objeto de dibujo reemplazado se mantienen." #. 6HANC #: dragdrop_gallery.xhp @@ -11345,7 +11345,7 @@ "par_id3149182\n" "help.text" msgid "Click the graphic while pressing the OptionAlt key, to select it without executing any hyperlinks it may refer to." -msgstr "Pulse en el gráfico mientras pulsa la tecla OpciónAlt para seleccionarlo sin ejecutar ningún hipervínculo al que enlace." +msgstr "Pulse en el gráfico mientras presiona la tecla Alt para seleccionarlo sin ejecutar ningún hiperenlace que contenga." #. GAFBF #: dragdrop_graphic.xhp @@ -12641,7 +12641,7 @@ "bm_id3696707\n" "help.text" msgid "graphical text art designing; fonts TextArt, see Fontwork WordArt, see Fontwork Fontwork text effects effects; Fontwork icons text; Fontwork icons 3D text creation rotating;3D text editing;Fontwork objects inserting;Fontwork objects" -msgstr "arte con textos gráficos diseño; fuentes TextArt, consulte Fontwork WordArt, consulte Fontwork Fontwork efectos de texto efectos; íconos de Fontwork texto; íconos de Fontwork creación de texto 3D rotación;texto 3D editar;objetos de Fontwork insertar;objetos de Fontwork" +msgstr "arte con textos gráficosdiseño; tipos de letra TextArt, consulte FontworkWordArt, consulte FontworkFontworkefectos de textoefectos; iconos de Fontworktexto; iconos de Fontworkcreación de texto 3Dgiro;texto 3Deditar;objetos de Fontworkinsertar;objetos de Fontwork" #. wjc2i #: fontwork.xhp @@ -12884,7 +12884,7 @@ "bm_id3149798\n" "help.text" msgid "command buttons, see push buttons controls;adding to documents inserting;push buttons keys;adding push buttons buttons;adding push buttons press buttons, see push buttons push buttons;adding to documents" -msgstr "botones de comando, véase botones controles;agregarlos a documentos insertar;botones teclas;agregar botones botones;agregar botones presionar botones, ver botones botones; agregarlos a documentos" +msgstr "botones de orden, véase botonescontroles;añadirlos a documentosinsertar;botonesteclas;añadir botonesbotones;añadir botonesbotones accionables, véase botonesbotones; añadirlos a documentos" #. xrBhy #: formfields.xhp @@ -12893,7 +12893,7 @@ "hd_id3149798\n" "help.text" msgid "Adding a Command Button to a Document" -msgstr "Agregar un botón de comando a un documento" +msgstr "Añadir un botón de orden a un documento" #. CjP4o #: formfields.xhp @@ -13523,7 +13523,7 @@ "bm_id3153910\n" "help.text" msgid "hyperlinks; editinglinks; editing hyperlinksediting; hyperlinkstext attributes; hyperlinksbuttons;editing hyperlink buttonsURL;changing hyperlink URLs" -msgstr "hipervínculos; editarvínculos; editar hipervínculoseditar; hipervínculosatributos del texto; hipervínculosbotones;editar botones de hipervínculoURL;cambiar hipervínculo URLs" +msgstr "hiperenlaces; editarvínculos; editar hiperenlaceseditar; hiperenlacesatributos del texto; hiperenlacesbotones;editar botones de hiperenlaceURL;cambiar hiperenlace URLs" #. V6ywk #: hyperlink_edit.xhp @@ -13712,7 +13712,7 @@ "bm_id3150789\n" "help.text" msgid "hyperlinks; insertinglinks; insertinginserting; hyperlinks" -msgstr "hipervínculos;insertarvínculos;insertarinsertar;hipervínculos" +msgstr "hiperenlaces;insertarvínculos;insertarinsertar;hiperenlaces" #. 6hGVf #: hyperlink_insert.xhp @@ -14045,7 +14045,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;abrir documentos de Microsoftdocumentos; importarimportar; documentos en otros formatosabrir; documentos de otros formatoscargar; documentos de otros formatosconvertir;documentos de Microsoftguardar; formatos de archivo predeterminadosvalores predeterminados;formatos de documento en cuadros de diálogo de selección de archivosformatos de archivo; guardar siempre en otros formatosMicrosoft Office; como formato de archivo predeterminadoarchivos;importarconversores XMLconversores; XMLAsistente de conversión de documentosasistentes; conversor de documentos conversores; conversor de documentosarchivos, véase también Documentos" +msgstr "Microsoft Office;abrir documentos de Microsoftdocumentos; importarimportar; documentos en otros formatosabrir; documentos de otros formatoscargar; documentos de otros formatosconvertir;documentos de Microsoftguardar; formatos de archivo predeterminadosvalores predeterminados;formatos de documento en cuadros de diálogo de selección de archivosformatos de archivo; guardar siempre en otros formatosMicrosoft Office; como formato de archivo predeterminadoarchivos;importarconversores XMLconversores; XMLAsistente para conversión de documentosasistentes; conversor de documentos conversores; conversor de documentosarchivos, véase también Documentos" #. 2SFQD #: import_ms.xhp @@ -14603,7 +14603,7 @@ "par_id224616\n" "help.text" msgid "To scale a draw object using the keyboard, first select the object, then press CommandCtrl+Tab repeatedly to highlight one of the handles. Then press an arrow key. To scale in smaller steps, hold down the OptionAlt key while pressing an arrow key. Press Esc to leave the point edit mode." -msgstr "Para escalar un objeto de dibujo usando el teclado, primero se selecciona el objeto, luego se presiona Command Ctrl+Tab repetidamente para resaltar una de las manijas. Luego presionar una tecla de cursor. Para escalar en menos pasos, mantener presionada la tecla Opción Alt mientras se presiona una tecla de cursor. Presionar Esc para dejar el modo de edicion de punto." +msgstr "Para escalar un objeto de dibujo usando el teclado, primero seleccione el objeto; luego, presione Ctrl + Tab repetidamente para resaltar una de las agarraderas. Luego, presione una tecla de flecha. Para escalar en menos pasos, mantenga presionada la tecla Alt mientras presiona una tecla de flecha. Presione Esc para dejar el modo de edición de puntos." #. fEEBG #: insert_graphic_drawit.xhp @@ -14711,7 +14711,7 @@ "par_id3153031\n" "help.text" msgid "In any text input field (such as the input fields in the Find & Replace dialog) you can press Shift+CommandCtrl+S to open the Special Characters dialog." -msgstr "En cualquier campo de entrada de texto (como los campos de entrada del diálogo Buscar y reemplazar), puede pulsar Shift + ComandoControl + S para abrir el diálogo Caracteres especiales." +msgstr "En cualquier campo de entrada de texto (como los campos del cuadro de diálogo Buscar y reemplazar), puede presionar Mayús + Ctrl + S para abrir el cuadro de diálogo Caracteres especiales." #. yrs8i #: insert_specialchar.xhp @@ -15071,7 +15071,7 @@ "par_id3153968\n" "help.text" msgid "Pressing CommandCtrl+Enter on an icon for creating a draw object. A draw object will be placed into the middle of the view, with a predefined size." -msgstr "Presionar ComandoCtrl+Enter o un icono para crear un objeto de dibujo. Un objeto de dibujo será ubicado en la mitad de la vista, con un tamaño predefinido." +msgstr "Presione Ctrl + Intro sobre un icono para crear un objeto de dibujo. Se colocará un objeto de dibujo en la mitad de la vista, con un tamaño predefinido." #. 3DcDc #: keyboard.xhp @@ -15197,7 +15197,7 @@ "par_id3147396\n" "help.text" msgid "CommandCtrl+spacebar: switches between selection of the current row and cancellation of this selection." -msgstr "Comando Ctrl+barra espaciadora: permite cambiar entre la selección de la fila actual y la cancelación de esta selección." +msgstr "Ctrl + barra espaciadora: permite cambiar entre la selección de la fila actual y la cancelación de esta selección." #. GXFNH #: keyboard.xhp @@ -15206,7 +15206,7 @@ "par_id3149488\n" "help.text" msgid "CommandCtrl+Shift+spacebar: switches between selection of the current column and cancellation of this selection." -msgstr "Comando Ctrl+Mayús.+barra espaciadora: permite cambiar entre la selección de la columna actual y la cancelación de esta selección." +msgstr "Ctrl +Mayús + barra espaciadora: permite cambiar entre la selección de la columna actual y la cancelación de esta selección." #. EgAEL #: keyboard.xhp @@ -15224,7 +15224,7 @@ "par_id3145251\n" "help.text" msgid "In a table control or in the data source view, the Tab key moves to the next column. To move to the next control, press CommandCtrl+Tab. To move to the previous control, press Shift+CommandCtrl+Tab." -msgstr "En un control de tabla o en la vista de fuente de datos, la tecla Tab mueve hacia la siguiente columna. Para mover al siguiente control, presionar ComandoCtrl+Tab. Para mover al control anterior, presionar Shift + ComandoCtrl+Tab." +msgstr "En un control de tabla o en la vista de origen de datos, la tecla Tab desplaza a la columna siguiente. Para moverse al control siguiente, presione Ctrl + Tab. Para moverse al control anterior, presione Mayús + Ctrl + Tab." #. dE4w5 #: keyboard.xhp @@ -15386,7 +15386,7 @@ "par_id3147345\n" "help.text" msgid "Use CommandCtrl+Tab to enter the handle edit mode. The upper left handle is the active handle, it starts blinking. Use CommandCtrl+Tab to select the next handle. Press Escape to exit the handle edit mode." -msgstr "Usar ComandoCtrl+Tab para ingresar en el modo de edición de manijas. La manija superior izquierda es la manija activa, esta empieza a parpadear. Usar ComandoCtrl+Tab para seleccionar la siguiente manija. Presionar Escape para salir del modo de edición de manijas." +msgstr "Utilice Ctrl + Tab para entrar en el modo de edición de agarraderas. La agarradera superior izquierda es la activa; esta empieza a parpadear. Presione Ctrl + Tab para seleccionar la agarradera siguiente. Presione Escape para salir del modo de edición de agarraderas." #. Js3F6 #: keyboard.xhp @@ -15431,7 +15431,7 @@ "par_id3150646\n" "help.text" msgid "Enter the handle edit mode with CommandCtrl+Tab." -msgstr "Ingresar al modo de edición de manijas con ComandoCtrl+Tab." +msgstr "Ingrese al modo de edición de agarraderas con Ctrl + Tab." #. dyTrD #: keyboard.xhp @@ -18752,7 +18752,7 @@ "par_idN10841\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. fLi53 #: main.xhp @@ -18770,7 +18770,7 @@ "par_idN10875\n" "help.text" msgid "Forms Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. p2gFB #: main.xhp @@ -18779,7 +18779,7 @@ "par_id3154011\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. CZZjV #: main.xhp @@ -20426,7 +20426,7 @@ "par_id3146986\n" "help.text" msgid "The Document Converter Wizard will copy and convert all Microsoft Office files in a folder into $[officename] documents in the OpenDocument file format. You can specify the folder to be read, and the folder where the converted files are to be saved." -msgstr "El Asistente de conversión de documentos copia y convierte todos los archivos de Microsoft Office de una carpeta en documentos de $[officename] en el formato de archivo OpenDocument. Puede especificar la carpeta que se debe leer y la carpeta donde se deben guardar los archivos convertidos." +msgstr "El Asistente para conversión de documentos copia y convierte todos los archivos de Microsoft Office de una carpeta en documentos de $[officename] en el formato de archivo OpenDocument. Puede especificar la carpeta que se debe leer y la carpeta donde se deben guardar los archivos convertidos." #. DnGoX #: ms_user.xhp @@ -20570,7 +20570,7 @@ "par_id3166461\n" "help.text" msgid "You may dock the Navigator to any document border or turn it back into a free window (double click on the gray area). You can change the size of the Navigator when it is a free window." -msgstr "Puede acoplar el Navegador al borde de cualquier documento o volver a convertirlo en una ventana libre (haciendo doble clic en el área gris). Cuando el Navegador es una ventana libre, puede cambiar su tamaño." +msgstr "Puede acoplar el Navegador al borde de cualquier documento o volver a convertirlo en una ventana libre (pulsando dos veces en el área gris). Cuando el Navegador es una ventana libre, puede cambiar su tamaño." #. sBSUi #: navigator_setcursor.xhp @@ -22667,7 +22667,7 @@ "par_id731562796423552\n" "help.text" msgid "The Rectangle Redaction tool is used to mark the content for redaction by drawing transparent rectangles covering the content. Use the handles to resize the redaction rectangle." -msgstr "" +msgstr "La herramienta Censura con rectángulos sirve para marcar el contenido que debe testarse, cubriéndolo con rectángulos semitransparentes. Sírvase de las agarraderas para cambiar las dimensiones del rectángulo de censura." #. jEFws #: redaction.xhp @@ -22793,7 +22793,7 @@ "par_id3147008\n" "help.text" msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document." -msgstr "Por ejemplo: usted es un editor y va a entregar el último informe. Pero antes de publicar el informe debe leerlo un editor jefe y un corrector de pruebas, y ambos añadirán sus cambios. El editor jefe escribe \"aclarar\" después de un párrafo y tacha otro completamente. El corrector de pruebas revisa la ortografía del documento y anota dos ejemplos donde las referencias concretas al sexo de una persona imaginaria se podrían cambiar para evitarlas completamente." +msgstr "Por ejemplo: usted es un editor y va a entregar el último informe. Pero antes de publicar el informe debe leerlo un editor jefe y una correctora de pruebas, y ambos añadirán sus cambios. El editor jefe escribe «aclarar» después de un párrafo y tacha otro completamente. La correctora de pruebas revisa la ortografía del documento." #. sZdoa #: redlining.xhp @@ -23135,7 +23135,7 @@ "tit\n" "help.text" msgid "Recording Changes" -msgstr "Registrar cambios" +msgstr "Grabar cambios" #. V8ATh #: redlining_enter.xhp @@ -23153,7 +23153,7 @@ "hd_id3155364\n" "help.text" msgid "Recording Changes" -msgstr "Registrar cambios" +msgstr "Grabar cambios" #. VBpWf #: redlining_enter.xhp @@ -23171,7 +23171,7 @@ "par_id3145669\n" "help.text" msgid "Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting." -msgstr "No se registran todos los cambios. Por ejemplo, si se cambia la alineación de un tabulador de izquierda a derecha, el cambio no se registra. Aunque todos los cambios comunes que se realizan al revisar un texto sí se registran, como adiciones, eliminaciones, cambios del texto y cambios de formato comunes." +msgstr "No todos los cambios se graban. Por ejemplo, si se cambia la alineación de un tabulador de izquierda a derecha, el cambio no se registra. No obstante, todos los cambios comunes que realizan los correctores de pruebas sí que se registran, como las adiciones, las eliminaciones, los cambios en el texto y los cambios de formato habituales." #. FHNi5 #: redlining_enter.xhp @@ -23495,7 +23495,7 @@ "par_id3156136\n" "help.text" msgid "When you insert a rectangle or a callout box using the drawing functions and activate the Points icon on the Drawing toolbar, you see a small frame at the upper left corner of the object. The frame indicates the amount by which the corners are rounded. When the frame is positioned at the top left corner, no rounding occurs. When the frame is positioned on the handle centered at the top of the object, the corners are rounded as much as possible. You adjust the degree of rounding by moving the frame between these two positions." -msgstr "Al insertar un rectángulo o un cuadro de llamada mediante las funciones de dibujo y activar el icono Puntos de la barra de herramientas Dibujo, en la esquina superior izquierda del objeto se muestra un pequeño marco. El marco indica la cantidad de redondeo que se aplica a las esquinas. Si el marco se coloca en la esquina superior izquierda, no hay redondeo. Si el marco se ubica en la manilla que está en el centro de la parte superior del objeto, las esquinas se redondean al máximo. El grado de redondeo se ajusta desplazando el marco entre estas dos posiciones." +msgstr "Al insertar un rectángulo o un cuadro de llamada mediante las funciones de dibujo y activar el icono Puntos de la barra de herramientas Dibujo, en la esquina superior izquierda del objeto se muestra un pequeño marco. El marco indica la cantidad de redondeo que se aplica a las esquinas. Si el marco se coloca en la esquina superior izquierda, no hay redondeo. Si el marco se ubica en la agarradera que está en el centro de la parte superior del objeto, las esquinas se redondean al máximo. La cantidad de redondeo se ajusta desplazando el control entre estas dos posiciones." #. 9KxkW #: round_corner.xhp @@ -25565,7 +25565,7 @@ "tit\n" "help.text" msgid "Start Center" -msgstr "Centro de inicio" +msgstr "Centro de bienvenida" #. BezyC #: startcenter.xhp @@ -25574,7 +25574,7 @@ "bm_id0820200802500562\n" "help.text" msgid "backing window start center" -msgstr "ventana principalcentro de inicio" +msgstr "ventana principalcentro de bienvenida" #. VxGgY #: startcenter.xhp @@ -25583,7 +25583,7 @@ "hd_id0820200802524447\n" "help.text" msgid "Start Center" -msgstr "Centro de inicio" +msgstr "Centro de bienvenida" #. e3XEA #: startcenter.xhp @@ -25592,7 +25592,7 @@ "par_id0820200803204063\n" "help.text" msgid "Welcome to %PRODUCTNAME. Thank you for using the %PRODUCTNAME application help. Press F1 whenever you need help using %PRODUCTNAME." -msgstr "" +msgstr "Le damos la bienvenida a %PRODUCTNAME. Gracias por utilizar la ayuda de la aplicación %PRODUCTNAME. Presione F1 siempre que necesite una guía al utilizar %PRODUCTNAME." #. mg9A4 #: startcenter.xhp @@ -25601,7 +25601,7 @@ "par_id0820200802524413\n" "help.text" msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. Click a button on the left pane to open a new document or a file dialog." -msgstr "Cuando no hay ningún documento abierto en %PRODUCTNAME se muestra el Centro de inicio. Está dividido en dos paneles. Pulse en un botón del panel izquierdo para abrir un documento nuevo o un cuadro de diálogo de apertura de archivos." +msgstr "Cuando no hay ningún documento abierto en %PRODUCTNAME se muestra el centro de bienvenida. Está dividido en dos paneles. Pulse en un botón del panel izquierdo para abrir un documento nuevo o un cuadro de diálogo de apertura de archivos." #. mWB6t #: startcenter.xhp @@ -25754,7 +25754,7 @@ "par_id0820200803105089\n" "help.text" msgid "Base Database opens %PRODUCTNAME Base" -msgstr "" +msgstr "Base de datos de Base abre %PRODUCTNAME Base" #. MvEcH #: startcenter.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -4721,7 +4721,7 @@ "par_id3146923\n" "help.text" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "Aplica la configuración de contraste elevado del sistema operativo en la vista previa de las páginas." +msgstr "Aplica la configuración de contraste alto del sistema operativo en la previsualización de las páginas." #. 3Terk #: 01020000.xhp @@ -7349,7 +7349,7 @@ "par_id3149020\n" "help.text" msgid "Defines the insert options for the direct cursor. If you click at any position in your document, a new paragraph can be written or inserted exactly at this position. The properties of this paragraph depend on the selected option. You can select from the following options:" -msgstr "Define las propiedades de inserción del cursor directo. Si hace clic en cualquier posición del documento podrá escribir o insertar un párrafo nuevo exactamente en esa posición. Las propiedades de este párrafo dependen de la opción seleccionada. Puede seleccionar las opciones siguientes:" +msgstr "Define las propiedades de inserción del cursor directo. Si pulsa en cualquier posición del documento podrá escribir o insertar un párrafo nuevo exactamente en esa posición. Las propiedades de este párrafo dependen de la opción seleccionada. Puede seleccionar las opciones siguientes:" #. arLP9 #: 01040600.xhp @@ -8753,7 +8753,7 @@ "par_idN10588\n" "help.text" msgid "Add captions automatically when inserting" -msgstr "Agregar títulos automáticamente al insertar" +msgstr "Añadir leyendas automáticamente al insertar" #. Fa42d #: 01041100.xhp @@ -9743,7 +9743,7 @@ "par_id3149816\n" "help.text" msgid "Specifies whether to display row and column headers." -msgstr "Especifica si se debe mostrar encabezados de fila y columna." +msgstr "Especifica si se debe mostrar cabeceras de fila y columna." #. d5GAX #: 01060100.xhp @@ -11561,7 +11561,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 "En %PRODUCTNAME Calc, los nombres de las funciones pueden traducirse. Normalmente esta casilla está desactivada, lo que significa que los nombres de las fórmulas estarán traducidos. Si activa esta casilla se utilizarán los nombres de las fórmulas en inglés. Este cambio afectará las áreas siguientes: entrada y visualización de fórmulas, asistente de fórmulas y mensajes emergentes de fórmulas. Puede desmarcar la opción en cualquier momento para volver a utilizar los nombres traducidos." +msgstr "En %PRODUCTNAME Calc, los nombres de las funciones pueden traducirse. Normalmente esta casilla está desactivada, lo que significa que los nombres de las fórmulas estarán traducidos. Si activa esta casilla se utilizarán los nombres de las fórmulas en inglés. Este cambio afectará las áreas siguientes: entrada y visualización de fórmulas, asistente para fórmulas y mensajes emergentes de fórmulas. Puede desmarcar la opción en cualquier momento para volver a utilizar los nombres traducidos." #. DtrRf #: 01060900.xhp @@ -14873,7 +14873,7 @@ "par_id3147571\n" "help.text" msgid "Defines how the connections to data sources are pooled." -msgstr "Define cómo se conservan las conexiones de las fuentes de datos." +msgstr "Define cómo se conservan las conexiones de los orígenes de datos." #. KG6qY #: 01160100.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/shared.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548070165.000000\n" #. DBz3U @@ -896,7 +896,7 @@ "par_idN1078F\n" "help.text" msgid "Starts the Mail Merge Wizard to create form letters." -msgstr "Inicia el asistente de combinación de correspondencia para crear cartas modelo." +msgstr "Inicia el asistente para combinación de correspondencia para crear cartas modelo." #. 7wCKo #: main0213.xhp @@ -1661,7 +1661,7 @@ "hd_id3150345\n" "help.text" msgid "Convert To Curve" -msgstr "Transformar en curva" +msgstr "Convertir en curva" #. DNKmR #: main0227.xhp @@ -1697,7 +1697,7 @@ "par_id3158445\n" "help.text" msgid "Convert To Curve" -msgstr "Transformar en curva" +msgstr "Convertir en curva" #. GJN2S #: main0227.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/00.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/00.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2021-11-16 11:21+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1560857928.000000\n" #. sqmGT @@ -50,7 +50,7 @@ "par_id5316324\n" "help.text" msgid "Opens the Custom Animation sidebar deck." -msgstr "Abre la sección Animación personalizada de la barra lateral." +msgstr "Abre el grupo Animación personalizada de la barra lateral." #. AgwPX #: 00000004.xhp @@ -212,7 +212,7 @@ "par_id3149263\n" "help.text" msgid "Choose Shape - Cross-fading (%PRODUCTNAME Draw only)" -msgstr "" +msgstr "Vaya a Forma ▸ Disolvencia (solo en %PRODUCTNAME Draw)" #. k3XUS #: 00000402.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1544632647.000000\n" #. mu9aV @@ -1751,7 +1751,7 @@ "par_id110120150547279702\n" "help.text" msgid "To modify the number of slides you can print on a page, open the Properties sidebar deck and double-click a layout on the Layout content panel." -msgstr "Para cambiar la cantidad de diapositivas que puede imprimir en una página, abra la sección Propiedades de la barra lateral y pulse dos veces en una disposición del panel Disposición." +msgstr "Para cambiar la cantidad de diapositivas que puede imprimir en una página, abra el grupo Propiedades de la barra lateral y pulse dos veces en una disposición del panel Disposición." #. Tbjmu #: 03130000.xhp @@ -3614,7 +3614,7 @@ "par_id3150398\n" "help.text" msgid "Opens the Styles deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing." -msgstr "Abre la sección Estilos de la barra lateral, que proporciona los estilos gráficos y de presentación disponibles para su aplicación y edición." +msgstr "Abre el grupo Estilos de la barra lateral, que proporciona los estilos gráficos y de presentación disponibles para su aplicación y edición." #. CFqVN #: 05100000.xhp @@ -5090,7 +5090,7 @@ "par_idN1076B\n" "help.text" msgid "Shows the current slide transition as a preview." -msgstr "Muestra una vista previa de la transición de diapositiva actual." +msgstr "Muestra una previsualización de la transición de diapositiva actual." #. BGuDQ #: 06040000.xhp @@ -5972,7 +5972,7 @@ "par_idN10840\n" "help.text" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "Seleccione para obtener una vista previa de los efectos nuevos o editados en la diapositiva mientras los asigna." +msgstr "Seleccione para obtener una previsualización de los efectos nuevos o editados en la diapositiva mientras los asigna." #. SXDka #: 06060000.xhp @@ -7475,7 +7475,7 @@ "par_id3150046\n" "help.text" msgid "Previews the converted image without applying the changes." -msgstr "Ofrece una vista previa de la imagen convertida sin aplicar los cambios." +msgstr "Ofrece una previsualización de la imagen convertida sin aplicar los cambios." #. aocCm #: 13050300.xhp @@ -8249,7 +8249,7 @@ "par_id321623291834607\n" "help.text" msgid "Enter the height of the graphic bullet character." -msgstr "" +msgstr "Introduzca la altura del carácter del bolo gráfico." #. SjRNb #: bulletandposition.xhp @@ -8852,7 +8852,7 @@ "par_idN105E7\n" "help.text" msgid "As one object - all paragraphs are animated as one object." -msgstr "Como un objeto: todos los párrafos son animados como un objeto." +msgstr "Como un solo objeto: todos los párrafos se animan como si fuesen un único objeto." #. iFEvf #: effectoptionstext.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-05-22 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534121568.000000\n" #. AiACn @@ -482,7 +482,7 @@ "par_id3152926\n" "help.text" msgid "Returns the display of the slide to the previous zoom factor you applied. You can also press CommandCtrl+Comma(,)." -msgstr "Vuelve al factor de escala usado anteriormente en la visualización de la diapositiva. También puede pulsar Comando Ctrl+Coma(,)." +msgstr "Vuelve al factor de escala usado anteriormente en la visualización de la diapositiva. También puede presionar Ctrl + coma (,)." #. gpa4k #: 10020000.xhp @@ -518,7 +518,7 @@ "par_id3143228\n" "help.text" msgid "Undoes the action of the Previous Zoom command. You can also press CommandCtrl+Period(.)." -msgstr "Deshace la acción del comando Factor de escala anterior. También puede pulsar Comando Ctrl+punto(.)." +msgstr "Deshace la acción de la orden Escala anterior. También puede presionar Ctrl + punto (.)." #. 7dCrD #: 10020000.xhp @@ -914,7 +914,7 @@ "par_id3150928\n" "help.text" msgid "Icon In 3D rotation object" -msgstr "" +msgstr "Icono En cuerpo de giro 3D" #. vCf5c #: 10030000.xhp @@ -5405,7 +5405,7 @@ "bm_id3149666\n" "help.text" msgid "allowing; effectseffects; preview" -msgstr "permitir;efectosefectos;vista previas" +msgstr "permitir;efectosefectos;previsualización" #. voBzV #: 13030000.xhp @@ -5459,7 +5459,7 @@ "bm_id3148386\n" "help.text" msgid "interactions; previewallowing; interaction" -msgstr "interacciones;vista previapermitir;interacción" +msgstr "interacciones;previsualizaciónpermitir;interacción" #. ACcu9 #: 13040000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -671,7 +671,7 @@ "par_id4396801\n" "help.text" msgid "A motion path can be selected by clicking on the path. A selected path will support handles, it can be moved and resized like a shape. A double click on a path starts the point edit mode. The point edit mode can also be started by Edit - Points or by pressing F8." -msgstr "Puede seleccionar una trayectoria si pulsa en ella con el ratón. Las trayectorias seleccionadas pueden redimensionarse y desplazarse como las formas, a través de sus asas. Si se pulsa dos veces en la trayectoria, se activará el modo de edición de puntos. El modo de edición de puntos también puede iniciarse a través del menú Editar ▸ Puntos u oprimiendo F8." +msgstr "Puede seleccionar una trayectoria si pulsa en ella con el ratón. Las trayectorias seleccionadas pueden redimensionarse y desplazarse como las formas, a través de sus agarraderas. Si se pulsa dos veces en la trayectoria, se activará el modo de edición de puntos. El modo de edición de puntos también puede iniciarse a través del menú Editar ▸ Puntos u oprimiendo F8." #. Bx46G #: animated_objects.xhp @@ -995,7 +995,7 @@ "par_id3155067\n" "help.text" msgid "You can change the background color or the background fill of the current slide or all of the slides in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Se puede cambiar el color o el relleno del fondo de la diapositiva actual o de todas las diapositivas del documento. Como relleno de fondo se puede emplear una trama, un degradado o una imagen de mapa de bits." #. SEPCz #: background.xhp @@ -1022,7 +1022,7 @@ "par_id4155067\n" "help.text" msgid "You can change the background color or the background fill of the current page or all of the pages in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Puede cambiar el color o el relleno de fondo de la página actual o de todas las páginas del documento. Como relleno de fondo puede utilizar motivos, degradados o imágenes de mapa de bits." #. BUHu6 #: background.xhp @@ -3146,7 +3146,7 @@ "par_id3148868\n" "help.text" msgid "The Curve icon Icon on the Drawing toolbar opens a toolbar to draw Bézier curves. Bézier curves are defined by a start point and an end point, which are called \"anchors\". The curvature of the Bézier curve is defined by control points (\"handles\"). Moving a control point changes the shape of the Bézier curve." -msgstr "El icono CurvaIcono de la barra de herramientas Dibujo abre una barra que incluye herramientas para trazar curvas de Bézier. Las curvas de Bézier se definen mediante un punto inicial y uno final, llamados «anclas». La curvatura de la curva de Bézier se establece mediante puntos de control («manillas»). Si se mueve un punto de control se cambia la forma de la curva de Bézier." +msgstr "El icono CurvaIcono de la barra de herramientas Dibujo abre una barra que incluye herramientas para trazar curvas de Bézier. Las curvas de Bézier se definen mediante un punto inicial y uno final, llamados «anclas». La curvatura de la curva de Bézier se establece mediante puntos de control («agarraderas»). Si se mueve un punto de control se cambia la forma de la curva de Bézier." #. o9cHX #: line_draw.xhp @@ -5685,7 +5685,7 @@ "par_id2361522\n" "help.text" msgid "Open the Slide Transition sidebar deck." -msgstr "Abra la sección Transición de diapositivas de la barra lateral." +msgstr "Abra el grupo Transición entre diapositivas de la barra lateral." #. 9CjNM #: show.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/smath/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/smath/01.po 2022-07-15 19:12:51.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-05-14 14:16+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5189,7 +5189,7 @@ "par_id3149645\n" "help.text" msgid "If a line or an expression begins with text, it is aligned on the left by default. You can change this with any of the align commands. An example is stack{a+b-c*d#alignr \"text\"}, where \"text\" appears aligned to the right. Note that text must always be surrounded by quotation marks." -msgstr "Si una línea o expresión comienza con texto, la opción predeterminada es la alineación a la izquierda. Puede modificar esta opción con cualquiera de los comandos de alineación. Un ejemplo puede ser stack{a+b-c*d#alignr \"text\"}, donde \"text\" aparece alineado a la derecha. El texto siempre debe ir entre comillas." +msgstr "Si un renglón o expresión comienza por texto, la opción predeterminada es la alineación a la izquierda. Puede modificar esta opción con cualquiera de las órdenes de alineación. Un ejemplo puede ser stack{a+b-c*d#alignr \"texto\"}, donde «texto» aparece alineado a la derecha. El texto siempre debe ir entrecomillado." #. KwFtM #: 03090700.xhp @@ -6737,7 +6737,7 @@ "par_id3158437\n" "help.text" msgid "Using the \"csub\" and \"csup\" commands, you can write super- and subscripts directly above or below a character. An example is \"a csub y csup x\". Combinations of indexes and exponents together are also possible: \"abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666\"." -msgstr "Con los comandos \"csub\" y \"csup\" es posible colocar superíndices o subíndices directamente encima o debajo de un carácter; véase \"a csub y csup x\". Asimismo, es posible introducir índices y exponentes de todo tipo, a la vez. \"abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666\"." +msgstr "Con las órdenes «csub» y «csup» es posible colocar superíndices o subíndices directamente encima o debajo de un carácter; un ejemplo es «a csub y csup x». Asimismo, es posible introducir índices y exponentes de todo tipo, a la vez. «abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666»." #. KsCCv #: 03091200.xhp @@ -12200,7 +12200,7 @@ "par_id3148839\n" "help.text" msgid "Check this box to assign the bold attribute to the font." -msgstr "Si activa esta casilla de verificación, el tipo de letra se representará en negrita." +msgstr "Active esta casilla para aplicar el atributo negrita al tipo de letra." #. 3wvxW #: 05010100.xhp @@ -12218,7 +12218,7 @@ "par_id3149126\n" "help.text" msgid "Check this box to assign the italic attribute to the font." -msgstr "Si pulsa esta casilla de verificación, el tipo de letra se representará en cursiva." +msgstr "Active esta casilla para aplicar el atributo itálica al tipo de letra." #. GVz9x #: 05020000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/smath/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/smath/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/smath/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/smath/guide.po 2022-07-15 19:12:51.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: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -527,7 +527,7 @@ "par_id759300\n" "help.text" msgid "Press F4 to advance to the next marker, and enter the summand:" -msgstr "Presione F4 para avanzar al próximo marcador, e ingrese el sumando:" +msgstr "Presione F4 para avanzar al próximo marcador e introduzca el sumando:" #. dJvvn #: limits.xhp @@ -734,7 +734,7 @@ "tit\n" "help.text" msgid "Entering Text" -msgstr "Ingresando texto" +msgstr "Introducir texto" #. FGbj6 #: text.xhp @@ -752,7 +752,7 @@ "hd_id5676442\n" "help.text" msgid "Entering Text" -msgstr "Ingresar texto" +msgstr "Introducir texto" #. FGjG4 #: text.xhp @@ -761,7 +761,7 @@ "hd_id8509170\n" "help.text" msgid "How to enter direct text strings that do not get interpreted?" -msgstr "¿Cómo ingresar directamente cadenas de texto que no sean interpretadas?" +msgstr "¿Cómo introducir directamente cadenas de texto que no sean interpretadas?" #. 8AWkB #: text.xhp @@ -815,7 +815,7 @@ "par_id4941557\n" "help.text" msgid "You can also use W^\"*\" to enter the character as direct text." -msgstr "Tambien puede usar W^\"*\" para ingresar el carácter como texto directo." +msgstr "Tambien puede usar W^\"*\" para introducir el carácter como texto directo." #. qELLZ #: text.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-03-31 21:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563615688.000000\n" #. E9tti @@ -1760,7 +1760,7 @@ "par_id61610557667046\n" "help.text" msgid "Click on the Character Style icon at top of the deck, then select a character style." -msgstr "Pulse en el icono Estilo de carácter en la parte superior del panel y, acto seguido, seleccione un estilo de carácter." +msgstr "Pulse en el icono Estilo de carácter en la parte superior del grupo y, acto seguido, seleccione un estilo de carácter." #. j5skL #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -698,7 +698,7 @@ "par_id3149802\n" "help.text" msgid "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." -msgstr "Muestra u oculta la ventana Navegador, donde puede saltar rápidamente entre diferentes partes del documento. El Navegador también está disponible como un icono en la barra lateral. Puede usar también el Navegador para insertar elementos desde el documento actual u otro documento abierto y organizar patrones de documentos. Para editar un punto en el Navegador, pulse con el botón secundario del ratón sobre el punto y elija una orden del menú contextual. Si lo desea, puede acoplar el Navegador en el borde de su espacio de trabajo." +msgstr "Muestra u oculta la ventana Navegador, donde puede saltar rápidamente entre diferentes partes del documento. El Navegador también está disponible como un grupo de la barra lateral. Puede usar también el Navegador para insertar elementos desde el documento actual u otro documento abierto y organizar patrones de documentos. Para editar un punto en el Navegador, pulse con el botón secundario del ratón sobre el punto y elija una orden del menú contextual. Si lo desea, puede acoplar el Navegador en el borde de su espacio de trabajo." #. 3Bt3V #: 02110000.xhp @@ -5891,7 +5891,7 @@ "par_id5187536\n" "help.text" msgid "Choose the \"Default\" page style from the submenu." -msgstr "Elija el estilo de página predeterminado usando el submenú." +msgstr "Elija el estilo de página «Predeterminado» usando el submenú." #. JyxEQ #: 04070000.xhp @@ -5900,7 +5900,7 @@ "par_id6952726\n" "help.text" msgid "This removes the special \"Envelope\" page formatting." -msgstr "Esto elimina el formato especial del \"Sobre\"." +msgstr "Esto elimina el formato especial del «Sobre»." #. 3iAPy #: 04070000.xhp @@ -9383,7 +9383,7 @@ "par_id0902200804391084\n" "help.text" msgid "For fields linked to a condition, enter the criteria here." -msgstr "Para campos enlazados a una condición, ingrese aquí los criterios." +msgstr "Para campos enlazados a una condición, introduzca aquí los criterios." #. cUbyM #: 04090006.xhp @@ -18888,7 +18888,7 @@ "par_id3150558\n" "help.text" msgid "Draws an oval contour where you drag in the object preview. To draw a circle, hold down shift while you drag." -msgstr "Dibuja un contorno ovalado donde puede arrastrar la vista previa del objeto. Para dibujar un círculo, mantenga pulsada la tecla Mayús mientras dibuja." +msgstr "Dibuja un contorno ovalado donde puede arrastrar la previsualización del objeto. Para dibujar un círculo, mantenga presionada la tecla Mayús mientras arrastra." #. brcFj #: 05060201.xhp @@ -19932,7 +19932,7 @@ "bm_id3150980\n" "help.text" msgid "objects; defining hyperlinks frames; defining hyperlinks pictures; defining hyperlinks hyperlinks; for objects" -msgstr "objetos;definir hipervínculos marcos;definir hipervínculos imágenes;definir hipervínculos hipervínculos;para objetos" +msgstr "objetos;definir hiperenlaces marcos;definir hiperenlaces imágenes;definir hiperenlaces hiperenlaces;para objetos" #. xQRVz #: 05060800.xhp @@ -20022,7 +20022,7 @@ "par_id3147217\n" "help.text" msgid "Enter a name for the hyperlink." -msgstr "Escriba un nombre para el hipervínculo." +msgstr "Escriba un nombre para el hiperenlace." #. 7kyXD #: 05060800.xhp @@ -20085,7 +20085,7 @@ "hd_id3156278\n" "help.text" msgid "Client-side image map" -msgstr "Image map del sitio del cliente" +msgstr "Mapa de imagen del lado cliente" #. tGhmQ #: 05060800.xhp @@ -22164,7 +22164,7 @@ "par_id3149052\n" "help.text" msgid "The following information concerns Writer styles that you can apply using the Styles deck of the Sidebar." -msgstr "La información siguiente se refiere a los estilos de Writer que puede aplicar a través de la sección Estilos de la barra lateral." +msgstr "La información siguiente se refiere a los estilos de Writer que puede aplicar a través del grupo Estilos de la barra lateral." #. g2Dm2 #: 05130000.xhp @@ -22632,7 +22632,7 @@ "hd_id3155961\n" "help.text" msgid "List Style" -msgstr "Estilo de lista" +msgstr "Estilo de lista" #. 3zB3P #: 05130004.xhp @@ -22758,7 +22758,7 @@ "par_id3150760\n" "help.text" msgid "You can apply the Paragraph Style to the context by double-clicking the selected entry in the Paragraph Styles list box or by using Apply." -msgstr "Puede aplicar el Estilo de párrafo al contexto haciendo doble clic en la entrada seleccionada en el cuadro de lista Estilos de párrafo o utilizando Aplicar." +msgstr "Puede aplicar el estilo de párrafo al contexto si pulsa dos veces en la entrada seleccionada en el cuadro de lista Estilos de párrafo o si utiliza Aplicar." #. ZFDp8 #: 05130100.xhp @@ -22938,7 +22938,7 @@ "par_id3148391\n" "help.text" msgid "Use the Styles deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style." -msgstr "Utilice la sección «Estilos» de la barra lateral para aplicar, crear, editar, añadir y quitar estilos de formato. Pulse dos veces en una entrada para aplicar el estilo." +msgstr "Utilice el grupo Estilos de la barra lateral para aplicar, crear, editar, añadir y quitar estilos de formato. Pulse dos veces en una entrada para aplicar el estilo." #. 3LCgW #: 05140000.xhp @@ -22965,7 +22965,7 @@ "par_id270120161717298895\n" "help.text" msgid "By default, the Styles deck displays a preview of the available styles. The previews can be disabled by unchecking the Show Previews box below the list of styles." -msgstr "De manera predeterminada, la sección Estilos de la barra lateral muestra previsualizaciones de los estilos disponibles. Puede desactivarlas mediante la casilla Mostrar previsualizaciones que está situada debajo de la lista de estilos." +msgstr "De manera predeterminada, el grupo Estilos de la barra lateral muestra previsualizaciones de los estilos disponibles. Puede desactivarlas mediante la casilla Mostrar previsualizaciones que está situada debajo de la lista de estilos." #. LBEgn #: 05140000.xhp @@ -27231,7 +27231,7 @@ "par_id521630941308319\n" "help.text" msgid "Select File - Export as PDF - General - Universal Accessibility (PDF/UA) and click OK." -msgstr "" +msgstr "Seleccione Archivo ▸ Exportar a PDF ▸ General ▸ Accesibilidad universal (PDF/UA) y pulse en Aceptar." #. FvnEV #: accessibility_check.xhp @@ -28122,7 +28122,7 @@ "par_id7805417\n" "help.text" msgid "Unless all address elements are matched with a column header, you cannot finish the Mail Merge wizard with the Finish button or continue to the fourth step of the wizard." -msgstr "No es posible terminar el asistente de combinación de correspondencia con el botón Finalizar ni continuar con el cuarto paso de este a menos que haya relacionado todos los elementos de las direcciones con una cabecera de columna." +msgstr "No es posible terminar el asistente para combinación de correspondencia con el botón Finalizar ni continuar con el cuarto paso de este a menos que haya relacionado todos los elementos de las direcciones con una cabecera de columna." #. wcCUR #: mailmerge03.xhp @@ -28149,7 +28149,7 @@ "par_idN105B5\n" "help.text" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. YXk87 #: mailmerge03.xhp @@ -28419,7 +28419,7 @@ "par_idN105D1\n" "help.text" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. jbNCg #: mailmerge04.xhp @@ -28617,7 +28617,7 @@ "par_idN1057D\n" "help.text" msgid "Select a magnification for the print preview." -msgstr "Seleccione una ampliación para la vista previa de impresión." +msgstr "Seleccione un aumento para la previsualización de la impresión." #. SnhQw #: mailmerge05.xhp @@ -28941,7 +28941,7 @@ "par_idN10578\n" "help.text" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "Muestra una vista previa del primer registro de la base de datos con el diseño de saludo actual." +msgstr "Muestra una previsualización del primer registro de la base de datos con la disposición de saludo actual." #. Exjps #: mm_cusgrelin.xhp @@ -29688,7 +29688,7 @@ "par_idN10589\n" "help.text" msgid "Displays a preview of the first database record with the current address block layout." -msgstr "Muestra una vista previa del primer registro de la base de datos con el diseño de bloque de direcciones actual." +msgstr "Muestra una previsualización del primer registro de la base de datos con la disposición de bloque de direcciones actual." #. 6DCtx #: mm_newaddblo.xhp @@ -31416,7 +31416,7 @@ "par_id501516905708560\n" "help.text" msgid "The values entered applies to the actual page style." -msgstr "Los valores ingresados se aplican al estilo actual de la página." +msgstr "Los valores introducidos se aplican al estilo actual de la página." #. a3iUA #: watermark.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/02.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -653,7 +653,7 @@ "tit\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. dFea2 #: 06090000.xhp @@ -662,7 +662,7 @@ "hd_id3154505\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. WX5QJ #: 06090000.xhp @@ -689,7 +689,7 @@ "par_id3156381\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. bWtAw #: 06120000.xhp @@ -1076,7 +1076,7 @@ "tit\n" "help.text" msgid "Preview Zoom" -msgstr "Escala de la vista previa" +msgstr "Escala de la previsualización" #. LNQGR #: 10030000.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -896,7 +896,7 @@ "par_id3144875\n" "help.text" msgid "To quickly undo an AutoCorrect replacement, press Command Ctrl+Z. This also adds the word or abbreviation that you typed to the AutoCorrect exceptions list." -msgstr "Para deshacer rápidamente una sustitución de Corrección automática, pulse Comando Control +Z. De este modo también se añade la palabra o abreviatura que escribió en la lista de excepciones de Corrección automática." +msgstr "Para deshacer rápidamente una sustitución de Corrección automática, presione Ctrl + Z. De este modo también se añade la palabra o abreviatura que escribió en la lista de excepciones de Corrección automática." #. L4Z3h #: autotext.xhp @@ -6026,7 +6026,7 @@ "par_idN10653\n" "help.text" msgid "The Mail Merge Wizard helps you to create form letters." -msgstr "El asistente de combinación de correspondencia le ayuda a crear cartas modelo." +msgstr "El asistente para combinación de correspondencia le ayuda a crear cartas modelo." #. M5tkD #: form_letters_main.xhp @@ -6116,7 +6116,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 "Si quiere ubicar campos de combinación de correspondencia en cualquier otro lugar del documento, seleccione la columna correspondiente en su origen de datos de direcciones y luego arrastre y suelte el encabezado de la columna en la parte del documento donde quiere que esté el campo. Asegúrese de seleccionar la columna completa." +msgstr "Si quiere ubicar campos de combinación de correspondencia en cualquier otro lugar del documento, seleccione la columna correspondiente en su origen de datos de direcciones y luego arrastre y coloque la cabecera de la columna en la parte del documento donde quiere que esté el campo. Asegúrese de seleccionar la columna completa." #. xbE3K #: form_letters_main.xhp @@ -6791,7 +6791,7 @@ "par_id3150946\n" "help.text" msgid "Choose View - Styles and click the Page Styles icon in the Styles sidebar deck." -msgstr "Vaya a Ver ▸ Estilos y pulse en el icono Estilos de página de la sección «Estilos» de la barra lateral." +msgstr "Vaya a Ver ▸ Estilos y pulse en el icono Estilos de página del grupo Estilos de la barra lateral." #. u8FFH #: header_pagestyles.xhp @@ -7016,7 +7016,7 @@ "par_id3150527\n" "help.text" msgid "Apply the paragraph style that you defined for chapter titles to the chapter headings in your document." -msgstr "Aplique el estilo de párrafo que definió en los títulos de los capítulos a los encabezados de los capítulos del documento." +msgstr "Aplique el estilo de párrafo que definió a los títulos de los capítulos del documento." #. ovYTz #: header_with_chapter.xhp @@ -8276,7 +8276,7 @@ "bm_id3155855\n" "help.text" msgid "indexes; formatting editing; index format tables of contents; formatting entries; in tables of contents, as hyperlinks tables of contents; hyperlinks as entries hyperlinks; in tables of contents and indexes formatting;indexes and tables of contents" -msgstr "índices;dar formato editar;formato del índice índices de materias;dar formato entradas;en índices de materias, como hipervínculos índices de materias;hipervínculos como entradas hipervínculos;en índices de materias e índices dar formato;índices e índices de materias" +msgstr "índices;dar formato editar;formato del índice índices de materias;dar formato entradas;en índices de materias, como hiperenlaces índices de materias;hiperenlaces como entradas hiperenlaces;en índices de materias e índices dar formato;índices e índices de materias" #. NaZ57 #: indices_form.xhp @@ -8429,7 +8429,7 @@ "par_id3147060\n" "help.text" msgid "Repeat for each heading level that you want to create hyperlinks for, or click the All button to apply the formatting to all levels." -msgstr "Repita el proceso para cada nivel de encabezado para el que desee crear hipervínculos o pulse en el botón Todos para aplicar el formato a todos los niveles." +msgstr "Repita el proceso para cada nivel de título para el que desee crear hiperenlaces, o bien, pulse en el botón Todos para aplicar el formato a todos los niveles." #. BiZ3o #: indices_index.xhp @@ -10193,7 +10193,7 @@ "bm_id3154897\n" "help.text" msgid "Navigator; overview in texts hyperlinks;jumping to objects;quickly moving to, within text frames;jumping to tables;jumping to headings;jumping to pages;jumping to jumping;to text elements overviews;Navigator in text documents" -msgstr "Navegador; visión general en los textos hipervínculos;saltar a objetos;moverse rápidamente por, en texto marcos;saltar a tablas;saltar a encabezados;saltar a páginas;saltar a saltar a;a elementos de texto visiones generales;Navegador en documentos de texto" +msgstr "Navegador; visión general en los textos hiperenlaces;saltar a objetos;moverse rápidamente por, en texto marcos;saltar a tablas;saltar a encabezados;saltar a páginas;saltar a saltar a;a elementos de texto visiones generales;Navegador en documentos de texto" #. RLvQ6 #: navigator.xhp @@ -12335,7 +12335,7 @@ "par_id601615419994433\n" "help.text" msgid "Place cursor between the page with the page style and the page with the style specified in Next style." -msgstr "" +msgstr "Coloque el cursor entre la página con el estilo de página y la página con el estilo especificado en Estilo siguiente." #. V4dVd #: pagestyles.xhp @@ -15089,7 +15089,7 @@ "par_id3156112\n" "help.text" msgid "You can also press Command Ctrl+B, type the text that you want to format in bold, and then press Command Ctrl+B when you are finished." -msgstr "También se puede pulsar Comando Control + B, escribir el texto al que se desea aplicar negrita y, a continuación, pulsar Comando Control+B cuando se haya concluido." +msgstr "También se puede presionar ⌘BCtrl + N, escribir el texto al que se desea aplicar negrita y, a continuación, presionar ⌘BCtrl + Z cuando se haya concluido." #. ExVea #: shortcut_writing.xhp @@ -15125,7 +15125,7 @@ "par_id3151112\n" "help.text" msgid "You can also press CommandCtrl+I, type the text that you want to format in italic, and then press CommandCtrl+I when you are finished." -msgstr "También puede presionar ComandoCtrl+K, escriba el texto que quiere formatear en cursiva, y luego presione ComandoCtrl+K cuando termine." +msgstr "También puede presionar ⌘ICtrl + K, escribir el texto al que quiera dar formato de itálica y, por último, presionar ⌘ICtrl + K cuando termine." #. 5WmCk #: shortcut_writing.xhp @@ -15296,7 +15296,7 @@ "par_id1998962\n" "help.text" msgid "In the Smart Tags menu you see the available actions that are defined for this Smart Tag. Choose an option from the menu. The Smart Tags Options command opens the Smart Tags page of Tools - Autocorrect Options." -msgstr "Dentro de un menú de etiqueta inteligente ves las acciones disponibles que estan definidos para esta etiqueta inteligente. Seleccione una opcion desde el menú. El comando de opciones de etiquetas inteligentes abre la pagina de etiquetas inteligentes dentro de Herramientas - Corrección automática de opción." +msgstr "En el menú Etiquetas inteligentes radican las acciones disponibles que se han definido para cada etiqueta inteligente. Elija una opción del menú. La orden Opciones de etiquetas inteligentes abre la pestaña Etiquetas inteligentes de Herramientas ▸ Opciones de corrección automática." #. bWm2N #: smarttags.xhp @@ -15584,7 +15584,7 @@ "par_id3156097\n" "help.text" msgid "Choose View - Styles to open the Styles deck in the Sidebar." -msgstr "" +msgstr "Vaya a Ver ▸ Estilos para abrir el grupo Estilos de la barra lateral." #. rKRNy #: stylist_fromselect.xhp @@ -15593,7 +15593,7 @@ "par_id3153402\n" "help.text" msgid "Click the icon at the top of the Styles deck for the style category of the new style." -msgstr "" +msgstr "Pulse en el icono situado en la parte superior del grupo Estilos para elegir la categoría del estilo nuevo." #. tQGu2 #: stylist_fromselect.xhp @@ -15674,7 +15674,7 @@ "par_idN107B2\n" "help.text" msgid "Alternatively, you can drag-and-drop the selection onto the respective icon at the top of the Styles deck. You do not need to open that style category in advance." -msgstr "" +msgstr "Como alternativa, puede arrastrar y colocar la selección sobre el icono respectivo en la parte superior del grupo Estilos. No es necesario abrir esa categoría de estilos anticipadamente." #. Asyoi #: stylist_fromselect.xhp @@ -15863,7 +15863,7 @@ "par_id3149205\n" "help.text" msgid "In the Properties deck of the sidebar, go to the Character area and click the Superscript or Subscript buttons." -msgstr "En la sección Propiedades de la barra lateral, vaya al apartado Carácter y utilice los botones Superíndice o Subíndice." +msgstr "En el grupo Propiedades de la barra lateral, vaya al apartado Carácter y utilice los botones Superíndice o Subíndice." #. VwZA6 #: subscript.xhp @@ -16763,7 +16763,7 @@ "par_id5009308\n" "help.text" msgid "To wrap text to the sides of a table, and to arrange two tables next to another, you must insert the tables into a frame. Click inside the table, press Command Ctrl+A twice to select the whole table, then choose Insert - Frame." -msgstr "Para ajustar el texto a los lados de la tabla y para colocar dos tablas una junto a la otra, deberá insertar las tablas en un marco. Pulse dentro de la tabla, oprima Comando Ctrl+A dos veces para seleccionar la tabla completa, y luego elija Insertar ▸ Marco." +msgstr "Para ajustar el texto a los lados de la tabla y para colocar dos tablas una junto a la otra, deberá insertar las tablas en un marco. Pulse dentro de la tabla, oprima ⌘ACtrl + E dos veces para seleccionar la tabla completa, y luego elija Insertar ▸ Marco." #. 4LuFp #: table_sizing.xhp @@ -17816,7 +17816,7 @@ "par_id3149972\n" "help.text" msgid "(Command+OptionCtrl+Alt) Moves the current paragraph up or down." -msgstr "(Comando+OpciónCtrl+Alt) Hace mover el párrafo actual hacia arriba o hacia abajo." +msgstr "(⌘⌥Ctrl + Alt) Mueve el párrafo actual hacia arriba o hacia abajo." #. D5ECG #: text_nav_keyb.xhp @@ -18086,7 +18086,7 @@ "par_id3154252\n" "help.text" msgid "Drag one of the corner handles of the text object." -msgstr "Arrastre una de las asas en las esquinas del objeto de texto." +msgstr "Tire de una de las agarraderas en las esquinas del objeto de texto." #. XEKCo #: text_rotate.xhp @@ -19229,7 +19229,7 @@ "hd_id4745017\n" "help.text" msgid "Fine-Tuning the Word Completion for Text Documents" -msgstr "Poner a punto el completado de palabras para documentos de texto" +msgstr "Poner a punto la compleción de palabras para documentos de texto" #. P8C3U #: word_completion_adjust.xhp @@ -19436,7 +19436,7 @@ "par_idN10809\n" "help.text" msgid "Word Completion" -msgstr "Completado de palabras" +msgstr "Compleción de palabras" #. QETHk #: word_completion_adjust.xhp @@ -19445,7 +19445,7 @@ "par_id5458845\n" "help.text" msgid "Using Word Completion" -msgstr "Usando completar palabra" +msgstr "Utilizar la compleción de palabras" #. GGZk7 #: words_count.xhp diff -Nru libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter.po libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter.po --- libreoffice-7.3.4/translations/source/es/helpcontent2/source/text/swriter.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/helpcontent2/source/text/swriter.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1310,7 +1310,7 @@ "par_idN10706\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "Distribuir filas equitativamente" +msgstr "Distribuir filas uniformemente" #. pTncP #: main0110.xhp @@ -1481,7 +1481,7 @@ "par_id841630938899606\n" "help.text" msgid "Allows a page break or column break inside a row of the table. This option is not applied to the first row in a table if the Repeat Heading option is selected." -msgstr "" +msgstr "Permite un salto de página o de columna dentro de una fila de la tabla. Esta opción no se aplica a la primera fila de la tabla si se selecciona la opción Repetir cabecera." #. kwKdS #: main0110.xhp @@ -1706,7 +1706,7 @@ "par_id901529883673111\n" "help.text" msgid "Opens the Styles deck in the sidebar." -msgstr "Abre la sección Estilos de la barra lateral." +msgstr "Abre la página Estilos de la barra lateral." #. VmXct #: main0120.xhp diff -Nru libreoffice-7.3.4/translations/source/es/librelogo/source/pythonpath.po libreoffice-7.3.5/translations/source/es/librelogo/source/pythonpath.po --- libreoffice-7.3.4/translations/source/es/librelogo/source/pythonpath.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/librelogo/source/pythonpath.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2022-04-05 10:47+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"Last-Translator: drodriguez \n" "Language-Team: Spanish \n" "Language: es\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548562703.000000\n" #. tFoAo @@ -320,7 +320,7 @@ "FONTTRANSPARENCY\n" "property.text" msgid "fonttransparency|texttransparency" -msgstr "" +msgstr "transparenciafuente|transparenciatexto" #. EPJeZ #: LibreLogo_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.3.5/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.3.4/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-07-15 19:12:51.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: 2021-04-27 10:00+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1511581803.000000\n" #. XpeLj @@ -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 "Si se activa, se muestra un cuadro de diálogo adicional durante el proceso de resolución que muestra información sobre el progreso actual, el nivel de estancamiento, la mejor solución conocida, así como la posibilidad de detener o reanudar el solucionador." +msgstr "Si se activa, se muestra un cuadro de diálogo adicional durante el proceso de resolución que muestra información sobre el progreso actual, el nivel de estancamiento, la mejor solución conocida, así como la posibilidad de detener o reanudar el Solver." #. KH5yg #: Options.xhp @@ -419,7 +419,7 @@ "par_id0603200910430845\n" "help.text" 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 "Independientemente de que utilice DEPS o SCO, comience yendo a Herramientas ▸ Solver e indique la celda que se debe optimizar, la dirección de avance (minimización, maximización) y las celdas que se deben modificar para alcanzar el objetivo. Luego vaya a las Opciones, especifique el tipo de Solver que se usará y finalmente ajuste los parámetros si fuera necesario." +msgstr "Independientemente de que utilice DEPS o SCO, comience yendo a Herramientas ▸ Solver e indique la celda que se debe optimizar, la dirección de avance (minimización, maximización) y las celdas que se deben modificar para alcanzar el objetivo. Luego vaya a las Opciones, especifique el tipo de Solver que se usará y finalmente ajuste los parámetros si fuera necesario." #. iuEnw #: Usage.xhp diff -Nru libreoffice-7.3.4/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5044,7 +5044,7 @@ "Label\n" "value.text" msgid "Open the Functions Deck" -msgstr "Abrir sección Funciones" +msgstr "Abrir grupo Funciones" #. 7wktD #: CalcWindowState.xcu @@ -7404,7 +7404,7 @@ "Label\n" "value.text" msgid "Form Wizard..." -msgstr "Asistente de formularios…" +msgstr "Asistente para formularios…" #. XX6Ja #: DbuCommands.xcu @@ -7414,7 +7414,7 @@ "Label\n" "value.text" msgid "Table Wizard..." -msgstr "Asistente de tablas…" +msgstr "Asistente para tablas…" #. JDQAJ #: DbuCommands.xcu @@ -7424,7 +7424,7 @@ "Label\n" "value.text" msgid "Query Wizard..." -msgstr "Asistente de consultas…" +msgstr "Asistente para consultas…" #. J7mKa #: DbuCommands.xcu @@ -7434,7 +7434,7 @@ "Label\n" "value.text" msgid "Form Wizard..." -msgstr "Asistente de formularios…" +msgstr "Asistente para formularios…" #. weSF2 #: DbuCommands.xcu @@ -7454,7 +7454,7 @@ "Label\n" "value.text" msgid "Report Wizard..." -msgstr "Asistente de informes…" +msgstr "Asistente para informes…" #. cpEvD #: DbuCommands.xcu @@ -7464,7 +7464,7 @@ "Label\n" "value.text" msgid "Report Wizard..." -msgstr "Asistente de informes…" +msgstr "Asistente para informes…" #. BBDhw #: DbuCommands.xcu @@ -11504,7 +11504,7 @@ "Label\n" "value.text" msgid "Open the Shapes Deck" -msgstr "Abrir sección Formas" +msgstr "Abrir grupo Formas" #. SziV6 #: DrawImpressCommands.xcu @@ -11514,7 +11514,7 @@ "Label\n" "value.text" msgid "Open the Slide Transition Deck" -msgstr "Abrir sección Transición entre diapositivas" +msgstr "Abrir grupo Transición entre diapositivas" #. DmUFe #: DrawImpressCommands.xcu @@ -11524,7 +11524,7 @@ "Label\n" "value.text" msgid "Open the Custom Animation Deck" -msgstr "Abrir sección Animación personalizada" +msgstr "Abrir grupo Animación personalizada" #. H8jxa #: DrawImpressCommands.xcu @@ -11534,7 +11534,7 @@ "Label\n" "value.text" msgid "Open the Master Slides Deck" -msgstr "Abrir sección Patrones de diapositivas" +msgstr "Abrir grupo Patrones de diapositivas" #. ESt3w #: DrawWindowState.xcu @@ -18194,7 +18194,7 @@ "Label\n" "value.text" msgid "Shadow" -msgstr "Efecto sombra" +msgstr "Sombra" #. 9aQPQ #: GenericCommands.xcu @@ -18204,7 +18204,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Shadow" -msgstr "Conmutar sombra" +msgstr "Alternar sombra" #. c9PFU #: GenericCommands.xcu @@ -18234,7 +18234,7 @@ "TooltipLabel\n" "value.text" msgid "Apply outline attribute to font. Not all fonts implement this attribute." -msgstr "" +msgstr "Aplicar atributo de contorno al tipo de letra. No todos los tipos de letra implementan este atributo." #. CjLxE #: GenericCommands.xcu @@ -18354,7 +18354,7 @@ "TooltipLabel\n" "value.text" msgid "Find text in values, to search in formulas use the dialog" -msgstr "" +msgstr "Buscar texto en valores; para buscar en fórmulas utilice el cuadro de diálogo" #. NCRsb #: GenericCommands.xcu @@ -18454,7 +18454,7 @@ "Label\n" "value.text" msgid "~Extended Tips" -msgstr "Consejos ~extendidos" +msgstr "D~escripciones ampliadas" #. CdRTm #: GenericCommands.xcu @@ -18474,7 +18474,7 @@ "Label\n" "value.text" msgid "~Tips" -msgstr "~Consejos" +msgstr "~Descripciones emergentes" #. UGLKw #: GenericCommands.xcu @@ -22766,7 +22766,7 @@ "Label\n" "value.text" msgid "AutoPilot: Agenda" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. wUCAN #: GenericCommands.xcu @@ -23456,7 +23456,7 @@ "ContextLabel\n" "value.text" msgid "Show Tip of the Day" -msgstr "Mostrar consejo del día" +msgstr "Mostrar el consejo del día" #. 6VUAq #: GenericCommands.xcu @@ -23466,7 +23466,7 @@ "TooltipLabel\n" "value.text" msgid "Show the Tip of the Day dialog" -msgstr "Mostrar cuadro de diálogo Consejo del día" +msgstr "Mostrar el diálogo Consejo del día" #. GjCU6 #: GenericCommands.xcu @@ -26936,7 +26936,7 @@ "Label\n" "value.text" msgid "Open the Properties Deck" -msgstr "Abrir sección Propiedades" +msgstr "Abrir grupo Propiedades" #. kHuni #: GenericCommands.xcu @@ -26946,7 +26946,7 @@ "Label\n" "value.text" msgid "Open the Styles Deck" -msgstr "Abrir sección Estilos" +msgstr "Abrir grupo Estilos" #. X4FoZ #: GenericCommands.xcu @@ -26956,7 +26956,7 @@ "Label\n" "value.text" msgid "Open the Gallery Deck" -msgstr "Abrir sección Galería" +msgstr "Abrir grupo Galería" #. e4JiP #: GenericCommands.xcu @@ -26966,7 +26966,7 @@ "Label\n" "value.text" msgid "Open the Navigator Deck" -msgstr "Abrir sección Navegador" +msgstr "Abrir grupo Navegador" #. uaVMn #: ImpressWindowState.xcu @@ -32847,7 +32847,7 @@ "Label\n" "value.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. iDerQ #: WriterCommands.xcu @@ -35747,7 +35747,7 @@ "Label\n" "value.text" msgid "Open the Page Deck" -msgstr "Abrir sección Página" +msgstr "Abrir grupo Página" #. foho3 #: WriterCommands.xcu @@ -35757,7 +35757,7 @@ "Label\n" "value.text" msgid "Open the Style Inspector Deck" -msgstr "Abrir sección Inspector de estilos" +msgstr "Abrir grupo Inspector de estilos" #. joS9f #: WriterFormWindowState.xcu diff -Nru libreoffice-7.3.4/translations/source/es/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/es/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/es/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-03-02 22:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542397559.000000\n" #. q6Gg3 @@ -680,7 +680,7 @@ "gfh6w0\n" "readmeitem.text" msgid "Graphic Performance" -msgstr "Rendimiento gráfico" +msgstr "Desempeño gráfico" #. dDsXM #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/es/sc/messages.po libreoffice-7.3.5/translations/source/es/sc/messages.po --- libreoffice-7.3.4/translations/source/es/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566031195.000000\n" #. kBovX @@ -4199,19 +4199,19 @@ #: sc/inc/scfuncs.hrc:221 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. EE6Eh #: sc/inc/scfuncs.hrc:222 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Start date for calculation." -msgstr "Fecha inicial del cálculo." +msgstr "Fecha de inicio del cálculo." #. DmzPz #: sc/inc/scfuncs.hrc:223 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. 6BzAF #: sc/inc/scfuncs.hrc:224 @@ -4253,19 +4253,19 @@ #: sc/inc/scfuncs.hrc:235 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. wKgJr #: sc/inc/scfuncs.hrc:236 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Start date for calculation." -msgstr "Fecha inicial del cálculo." +msgstr "Fecha de inicio del cálculo." #. xomvo #: sc/inc/scfuncs.hrc:237 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. ora8B #: sc/inc/scfuncs.hrc:238 @@ -4307,7 +4307,7 @@ #: sc/inc/scfuncs.hrc:249 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. 6LCTC #: sc/inc/scfuncs.hrc:250 @@ -16985,7 +16985,7 @@ #: sc/inc/strings.hrc:103 msgctxt "STR_ACC_EDITLINE_NAME" msgid "Input line" -msgstr "Línea de entrada" +msgstr "Cuadro de entrada" #. ejFak #: sc/inc/strings.hrc:104 @@ -20447,7 +20447,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:563 msgctxt "consolidatedialog|extended_tip|refs" msgid "Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed." -msgstr "Vincula los datos del área de consolidación con los datos fuente y actualiza automáticamente los resultados de la consolidación en caso de modificación de dichos datos fuente." +msgstr "Enlaza los datos del intervalo de consolidación con los datos de origen y actualiza automáticamente los resultados de la consolidación en caso de que dichos datos de origen se modifiquen." #. tTmj2 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:572 @@ -20567,7 +20567,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:269 msgctxt "covariancedialog|extended_tip|CovarianceDialog" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "Calcula la covarianza de dos conjuntos de datos numéricos." #. F22h3 #: sc/uiconfig/scalc/ui/createnamesdialog.ui:8 @@ -20987,7 +20987,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:184 msgctxt "datafielddialog|extended_tip|checkbutton1" msgid "Includes empty columns and rows in the results table." -msgstr "Incluye columnas y filas vacías en la tabla de resultados." +msgstr "Incluye las columnas y filas vacías en la tabla de resultados." #. CNVLs #: sc/uiconfig/scalc/ui/datafielddialog.ui:203 @@ -21365,7 +21365,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:25 msgctxt "dataproviderdlg/okaybtn" msgid "Okay" -msgstr "" +msgstr "Aceptar" #. Ah2h8 #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:38 @@ -21401,7 +21401,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:175 msgctxt "dataproviderdlg/id" msgid "Id / Xpath:" -msgstr "" +msgstr "Identificación/Xpath:" #. pwS4k #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:203 @@ -22649,7 +22649,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:270 msgctxt "filldlg|extended_tip|date" msgid "Creates a date series using the defined increment and end date." -msgstr "Crea una serie de fechas utilizando el incremento y la fecha final definidos." +msgstr "Crea una serie de fechas utilizando el incremento y la fecha de finalización definidos." #. mDADM #: sc/uiconfig/scalc/ui/filldlg.ui:282 @@ -22755,10 +22755,9 @@ #. LMokQ #: sc/uiconfig/scalc/ui/filldlg.ui:530 -#, fuzzy msgctxt "filldlg|extended_tip|increment" msgid "Determines the value by which the series of the selected type increases by each step." -msgstr " Determina el valor en el que se incrementa con cada paso la serie del tipo seleccionado." +msgstr "Determina el valor en el que se incrementa con cada paso la serie del tipo seleccionado." #. AvMwH #: sc/uiconfig/scalc/ui/filldlg.ui:568 @@ -23833,7 +23832,7 @@ #: sc/uiconfig/scalc/ui/inputstringdialog.ui:108 msgctxt "inputstringdialog|extended_tip|name_entry" msgid "Enter a new name for the sheet here." -msgstr "Ingrese aquí un nuevo nombre par ala Hoja ." +msgstr "Introduzca aquí un nombre nuevo para la hoja." #. MwM2i #: sc/uiconfig/scalc/ui/inputstringdialog.ui:137 @@ -25255,97 +25254,97 @@ msgstr "~Ver" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ima_gen" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gen" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Di_bujo" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Di~bujo" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimir" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Imprimir" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Formu_lario" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Formu~lario" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Herramientas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Herramientas" @@ -25705,141 +25704,141 @@ msgstr "Ima_gen" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Organi_zar" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "C_uadrícula" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Idioma" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisión" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentarios" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Co_mparar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Ver" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Di_bujo" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Organi_zar" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Ver" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Agrupar" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Tipo de letra" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alineación" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Ver" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insertar" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimedia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Marco" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Organi_zar" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "C_uadrícula" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Ver" @@ -27564,7 +27563,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250 msgctxt "pivotfielddialog|extended_tip|showall" msgid "Includes empty columns and rows in the results table." -msgstr "Incluye columnas y filas vacías en la tabla de resultados." +msgstr "Incluye las columnas y filas vacías en la tabla de resultados." #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269 @@ -30529,7 +30528,7 @@ #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:105 msgctxt "solveroptionsdialog|label2" msgid "Solver engine:" -msgstr "Algoritmo del solucionador:" +msgstr "Algoritmo de Solver:" #. pTBRt #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:121 @@ -30619,7 +30618,7 @@ #: sc/uiconfig/scalc/ui/sortdialog.ui:8 msgctxt "sortdialog|SortDialog" msgid "Sort" -msgstr "Ordenación" +msgstr "Ordenar" #. BMbZ7 #: sc/uiconfig/scalc/ui/sortdialog.ui:139 @@ -30829,13 +30828,13 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:333 msgctxt "sortoptionspage|label2" msgid "Sort Options" -msgstr "Opciones de ordenación" +msgstr "Opciones de clasificación" #. TkBw5 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:361 msgctxt "sortoptionspage|topdown" msgid "_Top to bottom (sort rows)" -msgstr "De _arriba a abajo (ordenar filas)" +msgstr "De _arriba abajo (ordenar filas)" #. bSvKu #: sc/uiconfig/scalc/ui/sortoptionspage.ui:370 @@ -31665,7 +31664,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:235 msgctxt "subtotaloptionspage|label2" msgid "Sort" -msgstr "Ordenación" +msgstr "Ordenar" #. ikECk #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:250 diff -Nru libreoffice-7.3.4/translations/source/es/scaddins/messages.po libreoffice-7.3.5/translations/source/es/scaddins/messages.po --- libreoffice-7.3.4/translations/source/es/scaddins/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/scaddins/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-06-29 23:35+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.12.2\n" "X-POOTLE-MTIME: 1512860287.000000\n" #. i8Y7Z @@ -26,7 +26,7 @@ #: scaddins/inc/analysis.hrc:29 msgctxt "ANALYSIS_Workday" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. VQvrc #: scaddins/inc/analysis.hrc:30 @@ -68,7 +68,7 @@ #: scaddins/inc/analysis.hrc:40 msgctxt "ANALYSIS_Yearfrac" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. 7GV4n #: scaddins/inc/analysis.hrc:41 @@ -80,7 +80,7 @@ #: scaddins/inc/analysis.hrc:42 msgctxt "ANALYSIS_Yearfrac" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. 3uuGg #: scaddins/inc/analysis.hrc:43 @@ -110,7 +110,7 @@ #: scaddins/inc/analysis.hrc:51 msgctxt "ANALYSIS_Edate" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. 7e2EC #: scaddins/inc/analysis.hrc:52 @@ -174,7 +174,7 @@ #: scaddins/inc/analysis.hrc:69 msgctxt "ANALYSIS_Eomonth" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. FqaAT #: scaddins/inc/analysis.hrc:70 @@ -208,7 +208,7 @@ #: scaddins/inc/analysis.hrc:78 msgctxt "ANALYSIS_Networkdays" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. Czzcp #: scaddins/inc/analysis.hrc:79 @@ -220,7 +220,7 @@ #: scaddins/inc/analysis.hrc:80 msgctxt "ANALYSIS_Networkdays" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. cacTJ #: scaddins/inc/analysis.hrc:81 @@ -1668,13 +1668,13 @@ #: scaddins/inc/analysis.hrc:559 msgctxt "ANALYSIS_Amordegrc" msgid "First period" -msgstr "Primer periodo" +msgstr "Primer período" #. n2TqV #: scaddins/inc/analysis.hrc:560 msgctxt "ANALYSIS_Amordegrc" msgid "Date the first period ends" -msgstr "Fecha del final del primer periodo." +msgstr "Fecha en que termina el primer período" #. Qs5FJ #: scaddins/inc/analysis.hrc:561 @@ -1764,7 +1764,7 @@ #: scaddins/inc/analysis.hrc:579 msgctxt "ANALYSIS_Amorlinc" msgid "The date the first period ends" -msgstr "Fecha del final del primer período." +msgstr "La fecha en que termina el primer período" #. d59Fr #: scaddins/inc/analysis.hrc:580 @@ -2148,7 +2148,7 @@ #: scaddins/inc/analysis.hrc:663 msgctxt "ANALYSIS_Duration" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. sFCVY #: scaddins/inc/analysis.hrc:664 @@ -2412,7 +2412,7 @@ #: scaddins/inc/analysis.hrc:723 msgctxt "ANALYSIS_Price" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. bCqEv #: scaddins/inc/analysis.hrc:724 @@ -2580,7 +2580,7 @@ #: scaddins/inc/analysis.hrc:759 msgctxt "ANALYSIS_Pricemat" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. Vs9zb #: scaddins/inc/analysis.hrc:760 @@ -2646,7 +2646,7 @@ #: scaddins/inc/analysis.hrc:774 msgctxt "ANALYSIS_Mduration" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. 7J37r #: scaddins/inc/analysis.hrc:775 @@ -3180,7 +3180,7 @@ #: scaddins/inc/analysis.hrc:903 msgctxt "ANALYSIS_Oddfprice" msgid "The first coupon date" -msgstr "Primer plazo de interés" +msgstr "El primer plazo de interés" #. e6HE5 #: scaddins/inc/analysis.hrc:904 @@ -3198,7 +3198,7 @@ #: scaddins/inc/analysis.hrc:906 msgctxt "ANALYSIS_Oddfprice" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. 5EvGf #: scaddins/inc/analysis.hrc:907 @@ -3294,7 +3294,7 @@ #: scaddins/inc/analysis.hrc:926 msgctxt "ANALYSIS_Oddfyield" msgid "The first coupon date" -msgstr "Primer plazo de interés" +msgstr "El primer plazo de interés" #. Az44N #: scaddins/inc/analysis.hrc:927 @@ -3414,7 +3414,7 @@ #: scaddins/inc/analysis.hrc:950 msgctxt "ANALYSIS_Oddlprice" msgid "Yield" -msgstr "Rédito" +msgstr "Rendimiento" #. avZVs #: scaddins/inc/analysis.hrc:951 @@ -4139,7 +4139,7 @@ #: scaddins/inc/datefunc.hrc:29 msgctxt "DATE_FUNCDESC_DiffWeeks" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. cP4gN #: scaddins/inc/datefunc.hrc:30 @@ -4151,7 +4151,7 @@ #: scaddins/inc/datefunc.hrc:31 msgctxt "DATE_FUNCDESC_DiffWeeks" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. NJwqc #: scaddins/inc/datefunc.hrc:32 @@ -4181,7 +4181,7 @@ #: scaddins/inc/datefunc.hrc:40 msgctxt "DATE_FUNCDESC_DiffMonths" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. joP95 #: scaddins/inc/datefunc.hrc:41 @@ -4193,7 +4193,7 @@ #: scaddins/inc/datefunc.hrc:42 msgctxt "DATE_FUNCDESC_DiffMonths" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. GRW2z #: scaddins/inc/datefunc.hrc:43 @@ -4223,7 +4223,7 @@ #: scaddins/inc/datefunc.hrc:51 msgctxt "DATE_FUNCDESC_DiffYears" msgid "Start date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. 86b9L #: scaddins/inc/datefunc.hrc:52 @@ -4235,7 +4235,7 @@ #: scaddins/inc/datefunc.hrc:53 msgctxt "DATE_FUNCDESC_DiffYears" msgid "End date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. mcrms #: scaddins/inc/datefunc.hrc:54 @@ -4475,7 +4475,7 @@ #: scaddins/inc/pricing.hrc:50 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Knock-In/Out" -msgstr "" +msgstr "Knock in/out" #. RquEA #: scaddins/inc/pricing.hrc:51 @@ -4613,7 +4613,7 @@ #: scaddins/inc/pricing.hrc:77 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Knock-In/Out" -msgstr "" +msgstr "Knock in/out" #. A8faz #: scaddins/inc/pricing.hrc:78 @@ -4679,7 +4679,7 @@ #: scaddins/inc/pricing.hrc:92 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Drift" -msgstr "" +msgstr "Deriva" #. qsmwN #: scaddins/inc/pricing.hrc:93 @@ -4727,7 +4727,7 @@ #: scaddins/inc/pricing.hrc:104 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (Strike, PutCall) are specified, the probability of S_T in [Strike, UpperBarrier] for a Call and S_T in [LowerBarrier, Strike] for a Put will be returned)" -msgstr "" +msgstr "Devuelve la probabilidad de que un activo cierre al vencimiento entre dos niveles de barrera, suponiendo que sigue la ecuación dS/S = mu dt + vol dW (si se especifican los dos últimos parámetros opcionales (Strike, PutCall), devolverá la probabilidad de S_T en [Strike, Límite superior] para una llamada y será devuelto S_T en [Límite inferior, Strike]." #. jFDzR #: scaddins/inc/pricing.hrc:105 @@ -4757,7 +4757,7 @@ #: scaddins/inc/pricing.hrc:109 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Drift" -msgstr "" +msgstr "Deriva" #. b9uKH #: scaddins/inc/pricing.hrc:110 diff -Nru libreoffice-7.3.4/translations/source/es/sccomp/messages.po libreoffice-7.3.5/translations/source/es/sccomp/messages.po --- libreoffice-7.3.4/translations/source/es/sccomp/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/sccomp/messages.po 2022-07-15 19:12:51.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-03-29 16:03+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.12.2\n" "X-POOTLE-MTIME: 1511581911.000000\n" #. whDxm #: sccomp/inc/strings.hrc:24 msgctxt "RID_SOLVER_COMPONENT" msgid "%PRODUCTNAME Linear Solver" -msgstr "Solucionador lineal de %PRODUCTNAME" +msgstr "Solver lineal de %PRODUCTNAME" #. PD5QV #: sccomp/inc/strings.hrc:25 msgctxt "RID_COINMP_SOLVER_COMPONENT" msgid "%PRODUCTNAME CoinMP Linear Solver" -msgstr "Solucionador lineal CoinMP de %PRODUCTNAME" +msgstr "Solver lineal CoinMP de %PRODUCTNAME" #. 22ZBP #: sccomp/inc/strings.hrc:26 diff -Nru libreoffice-7.3.4/translations/source/es/sd/messages.po libreoffice-7.3.5/translations/source/es/sd/messages.po --- libreoffice-7.3.4/translations/source/es/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563809077.000000\n" #. WDjkB @@ -1325,13 +1325,13 @@ #: sd/inc/strings.hrc:179 msgctxt "STR_TWAIN_NO_SOURCE_UNX" msgid "No SANE source is available at the moment." -msgstr "Por el momento no existe ninguna fuente SANE disponible." +msgstr "Por el momento no existe ningún origen SANE disponible." #. EW8j8 #: sd/inc/strings.hrc:180 msgctxt "STR_TWAIN_NO_SOURCE" msgid "At present, no TWAIN source is available." -msgstr "Por el momento no existe ninguna fuente TWAIN disponible." +msgstr "Por el momento no existe ningún origen TWAIN disponible." #. nsjMC #: sd/inc/strings.hrc:181 @@ -3040,7 +3040,7 @@ #: sd/inc/strings.hrc:482 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Previous" -msgstr "" +msgstr "~Anterior" #. A9eJu #: sd/inc/strings.hrc:483 @@ -3550,7 +3550,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:131 msgctxt "drawprinteroptions|extended_tip|grayscale" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "Especifica que los colores se impriman en escala de grises." #. oFnFq #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:143 @@ -3562,7 +3562,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:152 msgctxt "drawprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "Especifica que los colores se impriman en blanco y negro." #. MGAFs #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:168 @@ -3580,7 +3580,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:206 msgctxt "drawprinteroptions|extended_tip|originalsize" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "Especifica que ya no desea escalar las páginas al imprimir." #. drvLN #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:218 @@ -3604,7 +3604,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:248 msgctxt "drawprinteroptions|extended_tip|distributeonmultiple" msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets." -msgstr "" +msgstr "Imprime un documento de gran formato, como un póster o pancarta, distribuyendo la página del documento en varias hojas de papel. La opción de distribución calcula cuántas hojas de papel se necesitan. Después, puede juntar las hojas." #. kAHyQ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:260 @@ -3616,7 +3616,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:269 msgctxt "drawprinteroptions|extended_tip|tilesheet" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper." -msgstr "" +msgstr "Especifica que las páginas se imprimirán en formato de mosaico. Si las páginas o diapositivas son más pequeñas que el papel, repite las páginas o diapositivas en una hoja de papel." #. qbU9A #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:285 @@ -4174,109 +4174,109 @@ msgstr "~Tabla" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imagen" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gen" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Di_bujo" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Di~bujo" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Formu_lario" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Formu~lario" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Patrón" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Patrón" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Herramientas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Herramientas" @@ -4522,7 +4522,7 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:52 msgctxt "vectorize|extended_tip|preview" msgid "Previews the converted image without applying the changes." -msgstr "Ofrece una vista previa de la imagen convertida sin aplicar los cambios." +msgstr "Ofrece una previsualización de la imagen convertida sin aplicar los cambios." #. 4LBUQ #: sd/uiconfig/sdraw/ui/vectorize.ui:126 @@ -5174,7 +5174,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:598 msgctxt "customanimationspanel|extended_tip|auto_preview" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "Seleccione para obtener una vista previa de los efectos nuevos o editados en la diapositiva mientras los asigna." +msgstr "Seleccione para obtener una previsualización de los efectos nuevos o editados en la diapositiva mientras los asigna." #. KP8UC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:610 @@ -5198,7 +5198,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:633 msgctxt "customanimationspanel|box1_label" msgid "Animation Deck" -msgstr "Sección Animaciones" +msgstr "Grupo Animaciones" #. bUvjt #: sd/uiconfig/simpress/ui/customanimationspanel.ui:645 @@ -5252,7 +5252,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:86 msgctxt "customanimationtexttab|group_text_list" msgid "By 1st level paragraphs" -msgstr "Por párrafos de 1er. nivel" +msgstr "Por párrafos de 1.ᵉʳ nivel" #. ggJkd #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:87 @@ -5264,7 +5264,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:88 msgctxt "customanimationtexttab|group_text_list" msgid "By 3rd level paragraphs" -msgstr "Por párrafos de 3er. nivel" +msgstr "Por párrafos de 3.ᵉʳ nivel" #. GNWBw #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:89 @@ -7064,109 +7064,109 @@ msgstr "~Tabla" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imagen" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gen" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Di_bujo" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Di~bujo" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Formu_lario" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Formu~lario" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Patrón" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Patrón" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "_3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "~3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Herramientas" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Herramientas" @@ -9781,7 +9781,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423 msgctxt "slidetransitionspanel|extended_tip|play" msgid "Shows the current slide transition as a preview." -msgstr "Muestra una vista previa de la transición de diapositiva actual." +msgstr "Muestra una previsualización de la transición de diapositiva actual." #. E9Xpn #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456 diff -Nru libreoffice-7.3.4/translations/source/es/sfx2/messages.po libreoffice-7.3.5/translations/source/es/sfx2/messages.po --- libreoffice-7.3.4/translations/source/es/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562302714.000000\n" #. bHbFE @@ -475,7 +475,7 @@ #: include/sfx2/strings.hrc:96 msgctxt "RID_HELP_ONSTARTUP_TEXT" msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup" -msgstr "~Visualizar la Ayuda de %PRODUCTNAME %MODULENAME al inicio." +msgstr "~Ver la Ayuda de %PRODUCTNAME %MODULENAME al inicio" #. TEgzB #: include/sfx2/strings.hrc:98 @@ -591,7 +591,7 @@ #: include/sfx2/strings.hrc:115 msgctxt "STR_GID_MATH" msgid "Math" -msgstr "Math" +msgstr "Matemáticas" #. rFALW #: include/sfx2/strings.hrc:116 @@ -765,7 +765,7 @@ #: include/sfx2/strings.hrc:144 msgctxt "STR_QUICKSTART_STARTCENTER" msgid "Startcenter" -msgstr "Centro de inicio" +msgstr "Centro de bienvenida" #. Uhn54 #: include/sfx2/strings.hrc:145 @@ -3837,7 +3837,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:45 msgctxt "loadtemplatedialog|fromfile|tooltip_text" msgid "Copy styles from selected external document to current document." -msgstr "" +msgstr "Copiar estilos del documento externo seleccionado al documento actual." #. GE236 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:48 @@ -3885,7 +3885,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:269 msgctxt "loadtemplatedialog|text|tooltip_text" msgid "Copy paragraph and character styles to current document." -msgstr "" +msgstr "Copiar los estilos de párrafo y carácter al documento actual." #. VLWfZ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:273 @@ -3903,7 +3903,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:289 msgctxt "loadtemplatedialog|frame|tooltip_text" msgid "Copy frame styles to current document." -msgstr "" +msgstr "Copiar estilos de marco al documento actual." #. 4ZF6u #: sfx2/uiconfig/ui/loadtemplatedialog.ui:293 @@ -3921,7 +3921,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:309 msgctxt "loadtemplatedialog|pages|tooltip_text" msgid "Copy page styles to current document." -msgstr "" +msgstr "Copiar estilos de página al documento actual." #. o2C8c #: sfx2/uiconfig/ui/loadtemplatedialog.ui:313 @@ -3939,7 +3939,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:329 msgctxt "loadtemplatedialog|numbering|tooltip_text" msgid "Copy list styles to current document." -msgstr "" +msgstr "Copiar estilos de lista al documento actual." #. PAsEB #: sfx2/uiconfig/ui/loadtemplatedialog.ui:333 @@ -3981,7 +3981,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:419 msgctxt "loadtemplatedialog|extended_tip|expander" msgid "Shows or hides a preview of a selected template." -msgstr "Muestra u oculta una vista previa de una plantilla seleccionada." +msgstr "Muestra u oculta una previsualización de una plantilla seleccionada." #. CRcca #: sfx2/uiconfig/ui/loadtemplatedialog.ui:449 @@ -4227,7 +4227,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:372 msgctxt "extended_tip|reducebitmapnormal" msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. " -msgstr "La impresión de calidad alta corresponde a una resolución de 300 ppp. La calidad normal corresponde a una resolución de 200 ppp." +msgstr "La impresión de calidad alta corresponde a una resolución de 300 ppp. La calidad normal corresponde a una resolución de 200 ppp. " #. EZGK5 #: sfx2/uiconfig/ui/optprintpage.ui:389 @@ -4293,7 +4293,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:447 msgctxt "extended_tip|reducebitmapoptimal" msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. " -msgstr "La impresión de calidad alta corresponde a una resolución de 300 ppp. La calidad normal corresponde a una resolución de 200 ppp." +msgstr "La impresión de calidad alta corresponde a una resolución de 300 ppp. La calidad normal corresponde a una resolución de 200 ppp. " #. YxX2s #: sfx2/uiconfig/ui/optprintpage.ui:468 @@ -4557,7 +4557,7 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:155 msgctxt "saveastemplatedlg|select_label" msgid "Save template in selected category." -msgstr "" +msgstr "Guardar plantilla en la categoría seleccionada." #. JBPKb #: sfx2/uiconfig/ui/saveastemplatedlg.ui:203 diff -Nru libreoffice-7.3.4/translations/source/es/starmath/messages.po libreoffice-7.3.5/translations/source/es/starmath/messages.po --- libreoffice-7.3.4/translations/source/es/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562321435.000000\n" #. GrDhX @@ -2852,7 +2852,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:211 msgctxt "fontdialog|extended_tip|bold" msgid "Check this box to assign the bold attribute to the font." -msgstr "Si activa esta casilla de verificación la fuente se representará en negrita." +msgstr "Active esta casilla para aplicar el atributo negrita al tipo de letra." #. mBw2w #: starmath/uiconfig/smath/ui/fontdialog.ui:222 @@ -2864,7 +2864,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:230 msgctxt "fontdialog|extended_tip|italic" msgid "Check this box to assign the italic attribute to the font." -msgstr "Si pulsa esta casilla de verificación, la fuente se representará en cursiva." +msgstr "Active esta casilla para aplicar el atributo itálica al tipo de letra." #. uvvT5 #: starmath/uiconfig/smath/ui/fontdialog.ui:245 @@ -3092,7 +3092,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:310 msgctxt "fonttypedialog|extended_tip|numberCB" msgid "You can select the font for the numbers in your formula." -msgstr "" +msgstr "Puede seleccionar el tipo de letra para los números de su fórmula." #. gt2wF #: starmath/uiconfig/smath/ui/fonttypedialog.ui:326 @@ -3128,19 +3128,19 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:429 msgctxt "fonttypedialog|extended_tip|serifCB" msgid "You can specify the font to be used as serif font." -msgstr "" +msgstr "Puede especificar el tipo de letra que se utilizará como tipo serif." #. mD8Qp #: starmath/uiconfig/smath/ui/fonttypedialog.ui:445 msgctxt "fonttypedialog|extended_tip|sansCB" msgid "You can specify the font to be used for sans serif font." -msgstr "" +msgstr "Puede especificar el tipo de letra que se utilizará para el tipo sans serif." #. BUA9M #: starmath/uiconfig/smath/ui/fonttypedialog.ui:461 msgctxt "fonttypedialog|extended_tip|fixedCB" msgid "You can specify the font to be used for fixed-width font." -msgstr "" +msgstr "Puede especificar el tipo de letra que se utilizará para el tipo de ancho fijo." #. PgQfV #: starmath/uiconfig/smath/ui/fonttypedialog.ui:476 @@ -3176,7 +3176,7 @@ #: starmath/uiconfig/smath/ui/printeroptions.ui:63 msgctxt "printeroptions|extended_tip|formulatext" msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout." -msgstr "" +msgstr "Especifica si se debe incluir el contenido del cuadro Órdenes en la parte inferior de la impresión." #. 3zuC8 #: starmath/uiconfig/smath/ui/printeroptions.ui:75 @@ -3206,7 +3206,7 @@ #: starmath/uiconfig/smath/ui/printeroptions.ui:137 msgctxt "printeroptions|extended_tip|originalsize" msgid "Prints the formula without adjusting the current font size." -msgstr "" +msgstr "Imprime la fórmula sin ajustar el tamaño de tipo de letra actual." #. gzwzd #: starmath/uiconfig/smath/ui/printeroptions.ui:149 @@ -3218,7 +3218,7 @@ #: starmath/uiconfig/smath/ui/printeroptions.ui:158 msgctxt "printeroptions|extended_tip|fittopage" msgid "Adjusts the formula to the page format used in the printout." -msgstr "" +msgstr "Ajusta la fórmula al formato de página utilizado en la impresión." #. jqNJw #: starmath/uiconfig/smath/ui/printeroptions.ui:175 @@ -3230,7 +3230,7 @@ #: starmath/uiconfig/smath/ui/printeroptions.ui:184 msgctxt "printeroptions|extended_tip|scaling" msgid "Reduces or enlarges the size of the printed formula by a specified factor." -msgstr "" +msgstr "Reduce o aumenta el tamaño de la fórmula impresa por un factor especificado." #. cqANF #: starmath/uiconfig/smath/ui/printeroptions.ui:202 @@ -3380,14 +3380,14 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:321 msgctxt "smathsettings|smzoom" msgid "Scaling code input window:" -msgstr "" +msgstr "Ventana de entrada de código a escala:" #. sZMPm #: starmath/uiconfig/smath/ui/smathsettings.ui:337 #: starmath/uiconfig/smath/ui/smathsettings.ui:340 msgctxt "extended_tip|smzoom" msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor." -msgstr "" +msgstr "Reduce o amplía el tamaño del código de la fórmula según un factor de ampliación especificado." #. N4Diy #: starmath/uiconfig/smath/ui/smathsettings.ui:363 diff -Nru libreoffice-7.3.4/translations/source/es/svtools/messages.po libreoffice-7.3.5/translations/source/es/svtools/messages.po --- libreoffice-7.3.4/translations/source/es/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-03-13 22:04+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"Last-Translator: drodriguez \n" "Language-Team: Spanish \n" "Language: es\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562302736.000000\n" #. fLdeV @@ -4900,13 +4900,13 @@ #: svtools/inc/langtab.hrc:418 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Juǀ’hoan" -msgstr "" +msgstr "Juǀ’hoan" #. jPaAH #: svtools/inc/langtab.hrc:419 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Naro" -msgstr "" +msgstr "Naro" #. mMVAF #: svtools/inc/langtab.hrc:420 diff -Nru libreoffice-7.3.4/translations/source/es/svx/messages.po libreoffice-7.3.5/translations/source/es/svx/messages.po --- libreoffice-7.3.4/translations/source/es/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565118157.000000\n" #. 3GkZj @@ -9603,7 +9603,7 @@ #: include/svx/strings.hrc:1713 msgctxt "RID_SUBSETMAP" msgid "Marchen" -msgstr "" +msgstr "Sistema de escritura Marchen" #. Mr7RB #: include/svx/strings.hrc:1714 @@ -9723,7 +9723,7 @@ #: include/svx/strings.hrc:1733 msgctxt "RID_SUBSETMAP" msgid "Medefaidrin" -msgstr "" +msgstr "Medefaidrin" #. qMf5N #: include/svx/strings.hrc:1734 @@ -9759,7 +9759,7 @@ #: include/svx/strings.hrc:1739 msgctxt "RID_SUBSETMAP" msgid "Nyiakeng Puachue Hmong" -msgstr "" +msgstr "«Nyiakeng puachue hmong»" #. DajDi #: include/svx/strings.hrc:1740 @@ -11649,7 +11649,7 @@ #: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Paragraph text area" -msgstr "Área de texto de párrafo" +msgstr "Área de texto del párrafo" #. MT34e #: svx/inc/swframeposstrings.hrc:36 @@ -11709,7 +11709,7 @@ #: svx/inc/swframeposstrings.hrc:45 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Page text area" -msgstr "Área de texto de página" +msgstr "Área de texto de la página" #. jY8xQ #: svx/inc/swframeposstrings.hrc:46 @@ -13413,7 +13413,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 "Abre la sección Estilos de la barra lateral, en la que puede seleccionar un estilo de caracteres para el texto ágata." +msgstr "Abre el grupo Estilos de la barra lateral, en el que puede seleccionar un estilo de caracteres para el texto ágata." #. Ruh4F #: svx/uiconfig/ui/asianphoneticguidedialog.ui:394 @@ -16784,7 +16784,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:250 msgctxt "floatingcontour|extended_tip|TBI_CIRCLE" msgid "Draws an oval contour where you drag in the object preview." -msgstr "Dibuja un contorno ovalado donde puede arrastrar la vista previa del objeto." +msgstr "Dibuja un contorno ovalado donde puede arrastrar la previsualización del objeto." #. 38Cmn #: svx/uiconfig/ui/floatingcontour.ui:263 @@ -17571,7 +17571,7 @@ #: svx/uiconfig/ui/imapdialog.ui:550 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 "Introduzca el URL del archivo que desea abrir al pulsar en la zona activa seleccionada." #. CnDFH #: svx/uiconfig/ui/imapdialog.ui:590 @@ -18571,7 +18571,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:320 msgctxt "redlinefilterpage|startdate-atkobject" msgid "Start Date" -msgstr "Fecha inicial" +msgstr "Fecha de inicio" #. NScn6 #: svx/uiconfig/ui/redlinefilterpage.ui:321 @@ -18583,7 +18583,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:342 msgctxt "redlinefilterpage|starttime-atkobject" msgid "Start Time" -msgstr "Hora inicial" +msgstr "Hora de inicio" #. K2ohk #: svx/uiconfig/ui/redlinefilterpage.ui:343 @@ -18601,7 +18601,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:379 msgctxt "redlinefilterpage|enddate-atkobject" msgid "End Date" -msgstr "Fecha final" +msgstr "Fecha de finalización" #. BF8D3 #: svx/uiconfig/ui/redlinefilterpage.ui:380 @@ -18613,7 +18613,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:401 msgctxt "redlinefilterpage|endtime-atkobject" msgid "End Time" -msgstr "Hora final" +msgstr "Hora de finalización" #. GnJ9o #: svx/uiconfig/ui/redlinefilterpage.ui:402 diff -Nru libreoffice-7.3.4/translations/source/es/sw/messages.po libreoffice-7.3.5/translations/source/es/sw/messages.po --- libreoffice-7.3.4/translations/source/es/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -812,7 +812,7 @@ #: sw/inc/inspectorproperties.hrc:55 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Case Map" -msgstr "Cter.: correspondencia de may./min." +msgstr "Cter.: mapa correspondencia mayús./minús." #. AxVck #: sw/inc/inspectorproperties.hrc:56 @@ -854,19 +854,19 @@ #: sw/inc/inspectorproperties.hrc:62 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height" -msgstr "" +msgstr "Car.: altura de la diferencia" #. ccULG #: sw/inc/inspectorproperties.hrc:63 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Asian" -msgstr "" +msgstr "Cter.: altura de la diferencia asiática" #. LVABm #: sw/inc/inspectorproperties.hrc:64 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Complex" -msgstr "" +msgstr "Cter.: altura de la diferencia compleja" #. B2CTr #: sw/inc/inspectorproperties.hrc:65 @@ -896,19 +896,19 @@ #: sw/inc/inspectorproperties.hrc:69 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Char Set" -msgstr "" +msgstr "Cter.: conjunto de caracteres" #. ZonDP #: sw/inc/inspectorproperties.hrc:70 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Char Set Asian" -msgstr "" +msgstr "Cter.: conjunto de caracteres asiático" #. qrfZA #: sw/inc/inspectorproperties.hrc:71 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Char Set Complex" -msgstr "" +msgstr "Cter.: conjunto de caracteres complejo" #. CGEVw #: sw/inc/inspectorproperties.hrc:72 @@ -920,67 +920,67 @@ #: sw/inc/inspectorproperties.hrc:73 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family Asian" -msgstr "Cter.: fam. tipográfica asiática" +msgstr "Cter.: fam. tipográfica, asiático" #. 72RGq #: sw/inc/inspectorproperties.hrc:74 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family Complex" -msgstr "Cter.: fam. tipográfica compleja" +msgstr "Cter.: fam. tipográfica, complejo" #. Ef9Rc #: sw/inc/inspectorproperties.hrc:75 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Name" -msgstr "" +msgstr "Cter.: nombre de tipo de letra" #. EcTvq #: sw/inc/inspectorproperties.hrc:76 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Name Asian" -msgstr "" +msgstr "Cter.: nombre de tipo de letra, asiático" #. jrLqT #: sw/inc/inspectorproperties.hrc:77 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Name Complex" -msgstr "" +msgstr "Cter.: nombre de tipo de letra, complejo" #. WtA4i #: sw/inc/inspectorproperties.hrc:78 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch" -msgstr "" +msgstr "Cter.: paso de la tipografía" #. kHGrk #: sw/inc/inspectorproperties.hrc:79 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Asian" -msgstr "" +msgstr "Cter.: paso de la tipografía asiática" #. KVfXe #: sw/inc/inspectorproperties.hrc:80 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Complex" -msgstr "" +msgstr "Cter.: paso de la tipografía compleja" #. CQWM3 #: sw/inc/inspectorproperties.hrc:81 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name" -msgstr "" +msgstr "Cter.: nombre del estilo de la tipografía" #. h6gAC #: sw/inc/inspectorproperties.hrc:82 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name Asian" -msgstr "" +msgstr "Cter.: nombre del estilo de la tipografía asiática" #. Tm4Rb #: sw/inc/inspectorproperties.hrc:83 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name Complex" -msgstr "" +msgstr "Cter.: nombre del estilo de la tipografía compleja" #. AQzKB #: sw/inc/inspectorproperties.hrc:84 @@ -992,19 +992,19 @@ #: sw/inc/inspectorproperties.hrc:85 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Height Asian" -msgstr "" +msgstr "Cter.: altura, asiático" #. FNnH2 #: sw/inc/inspectorproperties.hrc:86 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Height Complex" -msgstr "" +msgstr "Cter.: altura, complejo" #. 3DzPD #: sw/inc/inspectorproperties.hrc:87 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Hidden" -msgstr "" +msgstr "Cter.: oculto" #. TkovG #: sw/inc/inspectorproperties.hrc:88 @@ -1016,13 +1016,13 @@ #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "Cter.: recursos de interoperatividad" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Kerning" -msgstr "Cter.: cran" +msgstr "Cter.: cranaje" #. CFpCB #: sw/inc/inspectorproperties.hrc:91 @@ -1040,25 +1040,25 @@ #: sw/inc/inspectorproperties.hrc:93 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale" -msgstr "" +msgstr "Cter.: configuración regional" #. Ju3fR #: sw/inc/inspectorproperties.hrc:94 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Asian" -msgstr "" +msgstr "Cter.: configuración regional, asiático" #. sA8Rk #: sw/inc/inspectorproperties.hrc:95 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Complex" -msgstr "" +msgstr "Cter.: configuración regional, complejo" #. AAvjB #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "" +msgstr "Cter.: sin división de palabras" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 @@ -1076,43 +1076,43 @@ #: sw/inc/inspectorproperties.hrc:99 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Has Color" -msgstr "" +msgstr "Cter.: suprarrayado con color" #. BEeWf #: sw/inc/inspectorproperties.hrc:100 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture" -msgstr "" +msgstr "Cter.: posición" #. yTFRk #: sw/inc/inspectorproperties.hrc:101 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Asian" -msgstr "" +msgstr "Cter.: posición, asiática" #. 8WG25 #: sw/inc/inspectorproperties.hrc:102 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Complex" -msgstr "" +msgstr "Cter.: posición, compleja" #. yuK3c #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "Cter.: altura de caracteres" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "Cter.: altura de caracteres, asiático" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "Cter.: altura de caracteres, complejo" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 @@ -1142,19 +1142,19 @@ #: sw/inc/inspectorproperties.hrc:110 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation is Fit To Line" -msgstr "" +msgstr "Cter.: giro ajustado al renglón" #. cYG7T #: sw/inc/inspectorproperties.hrc:111 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Scale Width" -msgstr "" +msgstr "Cter.: anchura de escala" #. WFuSd #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "Cter.: valor de sombreado" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 @@ -1202,61 +1202,61 @@ #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "Cter.: transparencia" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline" -msgstr "" +msgstr "Cter.: subrayado" #. yGPLz #: sw/inc/inspectorproperties.hrc:122 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Color" -msgstr "" +msgstr "Cter.: color de subrayado" #. HmfPF #: sw/inc/inspectorproperties.hrc:123 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Has Color" -msgstr "" +msgstr "Cter.: subrayado con color" #. QRCs4 #: sw/inc/inspectorproperties.hrc:124 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight" -msgstr "Cter.: peso" +msgstr "Peso del carácter" #. EwWk2 #: sw/inc/inspectorproperties.hrc:125 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Asian" -msgstr "" +msgstr "Cter.: peso, asiático" #. nxNQB #: sw/inc/inspectorproperties.hrc:126 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Complex" -msgstr "" +msgstr "Cter.: peso, complejo" #. D4T2M #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "Carácter en modo palabra" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Continuing Previous Tree" -msgstr "" +msgstr "Continuar árbol anterior" #. 4BCE7 #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "" +msgstr "Nombre que se muestra" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 @@ -1268,25 +1268,25 @@ #: sw/inc/inspectorproperties.hrc:131 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index Mark" -msgstr "Marca de índice de documento" +msgstr "Marca de índice del documento" #. XgFaZ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "Capitulares: Nombre del estilo de carácter" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "Capitulares: Formato" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "Capitulares: Palabra completa" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 @@ -1304,85 +1304,85 @@ #: sw/inc/inspectorproperties.hrc:137 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap" -msgstr "" +msgstr "Mapa de bits de fondo" #. GWWrC #: sw/inc/inspectorproperties.hrc:138 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Logical Size" -msgstr "" +msgstr "Tamaño lógico del mapa de bits de fondo" #. r2Aif #: sw/inc/inspectorproperties.hrc:139 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Mode" -msgstr "" +msgstr "Modo de mapa de bits de fondo" #. FZtcW #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "Nombre del mapa de bits de fondo" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "Desplazamiento en X del mapa de bits de fondo" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "Desplazamiento en Y del mapa de bits de fondo" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "Desplazamiento en X de la posición del mapa de bits de fondo" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "Desplazamiento en Y de la posición del mapa de bits de fondo" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "Punto del rectángulo de la imagen de mapa de bits de relleno" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "Tamaño X del mapa de bits de fondo" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "Tamaño Y del mapa de bits de fondo" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "Ampliación del mapa de bits de fondo" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "Rellenar un mosaico de mapa de bits" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "URL del mapa de bits de fondo" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 @@ -1394,7 +1394,7 @@ #: sw/inc/inspectorproperties.hrc:152 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color2" -msgstr "Color de relleno2" +msgstr "Color2 de relleno" #. 72i4Q #: sw/inc/inspectorproperties.hrc:153 @@ -1412,7 +1412,7 @@ #: sw/inc/inspectorproperties.hrc:155 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Step Count" -msgstr "" +msgstr "Relleno: Gradiente: nº de pasos" #. bTjNu #: sw/inc/inspectorproperties.hrc:156 @@ -1430,25 +1430,25 @@ #: sw/inc/inspectorproperties.hrc:158 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Style" -msgstr "" +msgstr "Estilo de relleno" #. tFYmZ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "Transparencia de relleno" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "Gradiente de transparencia de relleno" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "Nombre del gradiente de transparencia del relleno" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 @@ -1514,25 +1514,25 @@ #: sw/inc/inspectorproperties.hrc:172 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border Distance" -msgstr "" +msgstr "Distancia al borde izquierdo" #. 9cGvH #: sw/inc/inspectorproperties.hrc:173 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Auto Format" -msgstr "" +msgstr "Formato automático de la lista" #. fBeTS #: sw/inc/inspectorproperties.hrc:174 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Id" -msgstr "" +msgstr "Identificador de la lista" #. b73Zq #: sw/inc/inspectorproperties.hrc:175 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Label String" -msgstr "" +msgstr "Texto de la etiqueta de la lista" #. A2KEW #: sw/inc/inspectorproperties.hrc:176 @@ -1550,7 +1550,7 @@ #: sw/inc/inspectorproperties.hrc:178 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering is Number" -msgstr "" +msgstr "La numeración es numérica" #. WsqfF #: sw/inc/inspectorproperties.hrc:179 @@ -1592,13 +1592,13 @@ #: sw/inc/inspectorproperties.hrc:185 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Desc Name" -msgstr "Pág.: nombre de descripción" +msgstr "Pág.: nombre de la descripción" #. wLGct #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "" +msgstr "Desplazamiento del número de página" #. ryHzy #: sw/inc/inspectorproperties.hrc:187 @@ -1616,43 +1616,43 @@ #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "Párr.: Ajuste" #. SyTxG #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "Párr.: Nombre automático del estilo" #. WHaym #: sw/inc/inspectorproperties.hrc:191 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Color" -msgstr "" +msgstr "Párr.: Color de fondo" #. uKmB5 #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "" +msgstr "Párr.: Imagen de fondo" #. f6RGz #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "" +msgstr "Párr.: Filtro de la imagen de fondo" #. Yy5RY #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "" +msgstr "Párr.: Posición de la imagen de fondo" #. MLDdK #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "" +msgstr "Párr: URL de la imagen de fondo" #. HkGF3 #: sw/inc/inspectorproperties.hrc:196 @@ -1676,7 +1676,7 @@ #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "Párr.: Nivel de la numeración de los temas" #. GLxXC #: sw/inc/inspectorproperties.hrc:200 @@ -1694,49 +1694,49 @@ #: sw/inc/inspectorproperties.hrc:202 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "Párr.: Expandir palabra única" #. iD2DL #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent" -msgstr "" +msgstr "Párr.: Sangrado de primera línea" #. wCMnF #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "" +msgstr "Párr.: Sangrado relativo de primera línea" #. z47wS #: sw/inc/inspectorproperties.hrc:205 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Hyphens" -msgstr "" +msgstr "Párr.: Cant. máxima de guiones para separación silábica" #. nFxKY #: sw/inc/inspectorproperties.hrc:206 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Leading Chars" -msgstr "" +msgstr "Par.: max. caracteres de inicio para separación silábica" #. agdzD #: sw/inc/inspectorproperties.hrc:207 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Trailing Chars" -msgstr "" +msgstr "Par.: max. caracteres finales para separación silábica" #. hj7Fp #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Caps" -msgstr "" +msgstr "Par.: No separar mayúsculas en silabas" #. 4bemD #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "Párr.: recursos de interoperatividad" #. fCGA4 #: sw/inc/inspectorproperties.hrc:210 @@ -1748,13 +1748,13 @@ #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "" +msgstr "Par.: Distancia de los caracteres" #. FGVAd #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "Par.: Está conectado al borde" #. tBy9h #: sw/inc/inspectorproperties.hrc:213 @@ -1784,127 +1784,127 @@ #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Keep Together" -msgstr "" +msgstr "Par.: Mantener juntos" #. 8Z5AP #: sw/inc/inspectorproperties.hrc:218 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Last Line Adjust" -msgstr "" +msgstr "Par.: Ajuste de última línea" #. 6CaHh #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin" -msgstr "" +msgstr "Par.: Margen izquierdo" #. ZDnZk #: sw/inc/inspectorproperties.hrc:220 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "" +msgstr "Par.: Margen izquierdo relativo" #. G43XB #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "Par.: Recuento de líneas" #. EjnTM #: sw/inc/inspectorproperties.hrc:222 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "Par.: Valor inicial del recuento de lineas" #. eo9RR #: sw/inc/inspectorproperties.hrc:223 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Spacing" -msgstr "" +msgstr "Par.: Desplazamiento entre líneas" #. kczeF #: sw/inc/inspectorproperties.hrc:224 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "Par.: Huérfanos" #. FmuG6 #: sw/inc/inspectorproperties.hrc:225 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Register Mode Active" -msgstr "" +msgstr "Par.: Modo de registro activo" #. Kwp9H #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin" -msgstr "" +msgstr "Par.: Margen derecho" #. r2ao2 #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "" +msgstr "Par.: Margen derecho Relativo" #. FC9mA #: sw/inc/inspectorproperties.hrc:228 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "" +msgstr "Par.: Formato sombra" #. VXwD2 #: sw/inc/inspectorproperties.hrc:229 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Split" -msgstr "" +msgstr "División de párrafo" #. gXoCF #: sw/inc/inspectorproperties.hrc:230 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Style Name" -msgstr "" +msgstr "Par.: Nombre de estilo" #. sekLv #: sw/inc/inspectorproperties.hrc:231 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "Par.: Tabulaciones" #. reW9Y #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin" -msgstr "" +msgstr "Par.: Margen superior" #. wHuj4 #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "Par.: Margen superior relativo" #. pUjFj #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "Par.: Atributos definidos por el usuario" #. WvA9C #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "Par.: Alineamiento vertical" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "Par.: Viudas" #. cdw2Q #: sw/inc/inspectorproperties.hrc:237 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Reference Mark" -msgstr "" +msgstr "Marca de referencia" #. NDEck #: sw/inc/inspectorproperties.hrc:238 @@ -1928,19 +1928,19 @@ #: sw/inc/inspectorproperties.hrc:241 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "" +msgstr "Ajuste de viñetas" #. 3WwCU #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Char Style Name" -msgstr "" +msgstr "Nombre del estilo de viñetas" #. DqMAX #: sw/inc/inspectorproperties.hrc:243 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby is Above" -msgstr "" +msgstr "Viñetas arriba" #. w8jgs #: sw/inc/inspectorproperties.hrc:244 @@ -1964,7 +1964,7 @@ #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "Estilos: recursos de interoperatividad" #. PV65u #: sw/inc/inspectorproperties.hrc:248 @@ -2000,7 +2000,7 @@ #: sw/inc/inspectorproperties.hrc:253 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text User Defined Attributes" -msgstr "" +msgstr "Atributos de texto definidos por el usuario" #. ZG6rS #: sw/inc/inspectorproperties.hrc:254 @@ -2012,19 +2012,19 @@ #: sw/inc/inspectorproperties.hrc:255 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border Distance" -msgstr "" +msgstr "Distancia al borde superior" #. RwtPi #: sw/inc/inspectorproperties.hrc:256 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Unvisited Char Style Name" -msgstr "" +msgstr "Car.: Nombre de estilo no visitado" #. xcMEF #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Visited Char Style Name" -msgstr "" +msgstr "Car.: Nombre de estilo visitado" #. YiBym #: sw/inc/inspectorproperties.hrc:258 @@ -2279,19 +2279,19 @@ #: sw/inc/strings.hrc:27 msgctxt "STR_STANDARD_LABEL" msgid "Reset to ~Parent" -msgstr "" +msgstr "Restablecer al ~Padre" #. FRWsF #: sw/inc/strings.hrc:28 msgctxt "STR_STANDARD_TOOLTIP" msgid "Values on this tab specified in “Contains” in Organizer are removed." -msgstr "" +msgstr "Se eliminan los valores de esta pestaña especificados en \"Contiene\" en el Organizador." #. 9BAeq #: sw/inc/strings.hrc:29 msgctxt "STR_STANDARD_EXTENDEDTIP" msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the current tab values specified in “Contains” are removed." -msgstr "" +msgstr "Los valores de esta pestaña se ajustan a los valores correspondientes del estilo especificado en \"Heredar de\" en el Organizador. En todos los casos, también cuando \"Heredar de\" es \"Ninguno\", se eliminan los valores de la pestaña actual especificados en \"Contiene\"." #. x2EUX #: sw/inc/strings.hrc:30 @@ -10190,7 +10190,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:411 msgctxt "addressblockdialog|extended_tip|addrpreview" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "Muestra una vista previa del primer registro de la base de datos con el diseño de saludo actual." +msgstr "Muestra una previsualización del primer registro de la base de datos con la disposición de saludo actual." #. HQ7GB #: sw/uiconfig/swriter/ui/addressblockdialog.ui:436 @@ -10499,19 +10499,19 @@ msgstr "Desplaza el estilo de párrafo seleccionado un nivel abajo en la jerarquía de índices." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estilo" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilos" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crea entradas del índice a partir de estilos concretos de párrafos." @@ -12488,7 +12488,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:127 msgctxt "converttexttable|semicolons" msgid "Semicolons" -msgstr "Puntos y comas" +msgstr "Punto y coma" #. GqN6W #: sw/uiconfig/swriter/ui/converttexttable.ui:136 @@ -13955,37 +13955,37 @@ msgstr "Intercambiar base de datos" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de datos en uso" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Bases de datos _disponibles" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Examinar…" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Abre un diálogo de apertura de archivos para seleccionar un archivo de base de datos (*.odb). El archivo seleccionado se incorpora a la lista Bases de datos disponibles." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Utilice el botón Examinar para seleccionar un archivo de base de datos." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Muestra las bases de datos en uso." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Muestra una lista de las bases de datos que se han registrado en %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Intercambiar base de datos" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de datos aplicada al documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Cambia el origen de datos del documento abierto." @@ -14160,7 +14160,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:149 msgctxt "flddbpage|extended_tip|condition" msgid "For fields linked to a condition, enter the criteria here." -msgstr "Para campos enlazados a una condición, ingrese aquí los criterios." +msgstr "Para campos enlazados a una condición, introduzca aquí los criterios." #. 8Xd25 #: sw/uiconfig/swriter/ui/flddbpage.ui:178 @@ -14742,7 +14742,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:563 msgctxt "fldvarpage|extended_tip|value" msgid "Enter the contents that you want to add to a user-defined field." -msgstr "Ingresa los contenidos que desea agregar al campo definido por el usuario." +msgstr "Introduzca el contenido que quiera añadir a un campo definido por el usuario." #. BLiKH #: sw/uiconfig/swriter/ui/fldvarpage.ui:584 @@ -19110,7 +19110,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:444 msgctxt "mmaddressblockpage|extended_tip|prev" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. VJLVC #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:458 @@ -19122,7 +19122,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:463 msgctxt "mmaddressblockpage|extended_tip|next" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. 5FAA9 #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:477 @@ -19290,7 +19290,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:359 msgctxt "mmlayoutpage|extended_tip|zoom" msgid "Select a magnification for the print preview." -msgstr "Seleccione una ampliación para la vista previa de impresión." +msgstr "Seleccione un aumento para la previsualización de la impresión." #. WB6v3 #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:397 @@ -19920,7 +19920,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:143 msgctxt "mmsalutationpage|extended_tip|prev" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. 5CDnR #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:157 @@ -19932,7 +19932,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:162 msgctxt "mmsalutationpage|extended_tip|next" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. rS3A8 #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:176 @@ -20073,109 +20073,109 @@ msgstr "Utilizar el _documento actual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilice el documento de Writer actual como base del documento de combinar correspondencia." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crear un documento _nuevo" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Cree un documento de Writer para utilizarse con la combinación de correspondencia." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Iniciar a partir de un documento _existente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Seleccione un documento de Writer para utilizarlo como base del documento de combinar correspondencia." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Iniciar a partir de una _plantilla" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Seleccione la plantilla con la que desea crear el documento de combinar correspondencia." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Iniciar a partir de un documento guardado _recientemente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utilice un documento de combinación de correspondencia como base para uno nuevo." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Seleccione el documento." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "E_xaminar…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localice el documento de Writer que quiere usar, y luego pulse Abrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "E_xaminar…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Abre un cuadro de diálogo para seleccionar una plantilla." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "El origen de datos del documento actual no está registrado. Intercambie la base de datos." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Intercambiar base de datos…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleccione un documento inicial para combinar correspondencia" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Especifique el documento que desee emplear como base para el documento de combinación de correspondencia." @@ -22318,49 +22318,49 @@ msgstr "Objeto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opciones" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ajustar" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperenlace" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordes" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparencia" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -24025,7 +24025,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:314 msgctxt "outlinepositionpage|extended_tip|indentatmf" msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line." -msgstr "Ingrese la distancia desde el margen izquierdo de la página desde el cual inicia todas la líneas de un párrafo numerado a partir de la primera línea." +msgstr "Introduzca la distancia desde el margen izquierdo de la página hasta el comienzo de todos los renglones del párrafo numerado que siguen al primero." #. 6ZE4k #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:327 @@ -27047,7 +27047,7 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:129 msgctxt "statisticsinfopage|lineft" msgid "Lines:" -msgstr "Líneas:" +msgstr "Renglones:" #. xEDWN #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:240 @@ -27056,7 +27056,7 @@ msgstr "Actualizar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Muestra estadísticas aplicables al documento actual." @@ -27773,7 +27773,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:935 msgctxt "templatedialog2|outline" msgid "Set outline level, list style and line numbering for paragraph style." -msgstr "" +msgstr "Establezca el nivel de esquema, el estilo de lista y la numeración de líneas para el estilo de párrafo." #. q8oC5 #: sw/uiconfig/swriter/ui/templatedialog4.ui:8 diff -Nru libreoffice-7.3.4/translations/source/es/swext/mediawiki/src.po libreoffice-7.3.5/translations/source/es/swext/mediawiki/src.po --- libreoffice-7.3.4/translations/source/es/swext/mediawiki/src.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/swext/mediawiki/src.po 2022-07-15 19:12:51.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: 2013-05-24 07:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \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.12.2\n" "X-POOTLE-MTIME: 1369379872.000000\n" #. MzinF @@ -32,4 +32,4 @@ "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 "El publicador para wikis le permite crear artículos en servidores con MediaWiki sin tener que conocer la sintaxis del lenguaje de marcado de MediaWiki. Publique sus documentos nuevos y existentes de forma transparente en una página wiki.\n" +msgstr "El publicador para wikis le permite crear artículos en servidores con MediaWiki sin tener que conocer la sintaxis del lenguaje de marcado de MediaWiki. Publique sus documentos nuevos y existentes de forma transparente en una página del wiki.\n" diff -Nru libreoffice-7.3.4/translations/source/es/vcl/messages.po libreoffice-7.3.5/translations/source/es/vcl/messages.po --- libreoffice-7.3.4/translations/source/es/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"Last-Translator: drodriguez \n" "Language-Team: Spanish \n" "Language: es\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564675121.000000\n" #. k5jTM @@ -2135,7 +2135,7 @@ #: vcl/uiconfig/ui/printdialog.ui:602 msgctxt "printdialog|extended_tip|rbRangeSelection" msgid "Prints only the selected area(s) or object(s) in the current document." -msgstr "" +msgstr "Imprime sólo las áreas u objetos seleccionados en el documento actual." #. UKYwM #: vcl/uiconfig/ui/printdialog.ui:616 @@ -2165,7 +2165,7 @@ #: vcl/uiconfig/ui/printdialog.ui:639 msgctxt "printdialog|extended_tip|evenoddbox" msgid "Select the subset of pages to print." -msgstr "" +msgstr "Seleccione el subconjunto de páginas a imprimir." #. wn2kB #: vcl/uiconfig/ui/printdialog.ui:670 @@ -2324,169 +2324,169 @@ msgstr "Imprime varias páginas por hoja de papel." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizado" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleccione cuántas páginas se imprimirán por hoja de papel." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Páginas:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleccione el número de filas." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "por" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Seleccione el número de columnas." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margen:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Seleccione el margen entre páginas individuales en cada hoja de papel." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre las páginas" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distancia:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Seleccione el margen entre las páginas impresas y el borde del papel." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "al borde de la hoja" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Orden:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "De izquierda a derecha y hacia abajo" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De arriba abajo y hacia la derecha" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De abajo arriba y hacia la izquierda" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De derecha a izquierda y hacia abajo" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleccione el orden en el que se imprimirán las páginas." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Trazar borde alrededor de cada página" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Active esta opción para dibujar un borde alrededor de cada página." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Prospecto" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." -msgstr "" +msgstr "Seleccione esta opción para imprimir el documento en formato de folleto." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Previsualización de intercalación" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Modifique la colocación de las páginas que se imprimirán en cada hoja de papel. La previsualización le indica cómo lucirán las hojas impresas finales." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" -msgstr "" +msgstr "_Más" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Disposición de página" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprime el documento, la selección actual o las páginas especificadas. También se pueden establecer las opciones de impresión del documento actual." diff -Nru libreoffice-7.3.4/translations/source/es/wizards/messages.po libreoffice-7.3.5/translations/source/es/wizards/messages.po --- libreoffice-7.3.4/translations/source/es/wizards/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/wizards/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559358133.000000\n" #. gbiMx @@ -158,7 +158,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:56 msgctxt "RID_LETTERWIZARDDIALOG_START_1" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. evGjG #: wizards/com/sun/star/wizards/common/strings.hrc:57 @@ -620,7 +620,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:141 msgctxt "RID_FAXWIZARDDIALOG_START_1" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. DZhsU #: wizards/com/sun/star/wizards/common/strings.hrc:142 @@ -1052,7 +1052,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:223 msgctxt "RID_AGENDAWIZARDDIALOG_START_1" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. AV2GE #: wizards/com/sun/star/wizards/common/strings.hrc:224 @@ -1094,7 +1094,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:230 msgctxt "RID_AGENDAWIZARDDIALOG_START_8" msgid "Please enter general information for the event" -msgstr "Proporcione información general sobre el evento" +msgstr "Proporcione información general sobre el suceso" #. 66asU #: wizards/com/sun/star/wizards/common/strings.hrc:231 @@ -1358,7 +1358,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:274 msgctxt "RID_AGENDAWIZARDDIALOG_START_54" msgid "Agenda Items" -msgstr "Elementos de orden del día" +msgstr "Elementos del orden del día" #. rSC3E #: wizards/com/sun/star/wizards/common/strings.hrc:275 diff -Nru libreoffice-7.3.4/translations/source/es/wizards/source/resources.po libreoffice-7.3.5/translations/source/es/wizards/source/resources.po --- libreoffice-7.3.4/translations/source/es/wizards/source/resources.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/es/wizards/source/resources.po 2022-07-15 19:12:51.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: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1556397922.000000\n" #. 8UKfi @@ -221,7 +221,7 @@ "RID_REPORT_0\n" "property.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. BZtXG #: resources_en_US.properties @@ -284,7 +284,7 @@ "RID_REPORT_12\n" "property.text" msgid "Sort options" -msgstr "Opciones de ordenación" +msgstr "Opciones de clasificación" #. 7EUD3 #: resources_en_US.properties @@ -1427,7 +1427,7 @@ "RID_QUERY_0\n" "property.text" msgid "Query Wizard" -msgstr "Asistente de consultas" +msgstr "Asistente para consultas" #. RySqB #: resources_en_US.properties @@ -1445,7 +1445,7 @@ "RID_QUERY_2\n" "property.text" msgid "Query Wizard" -msgstr "Asistente de consultas" +msgstr "Asistente para consultas" #. QEtRG #: resources_en_US.properties @@ -2129,7 +2129,7 @@ "RID_FORM_0\n" "property.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. H4MXV #: resources_en_US.properties @@ -2723,7 +2723,7 @@ "RID_TABLE_1\n" "property.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. hGMoR #: resources_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/et/chart2/messages.po libreoffice-7.3.5/translations/source/et/chart2/messages.po --- libreoffice-7.3.4/translations/source/et/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-10 11:43+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566121579.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Määra joonte arv tulp- ja joondiagrammis." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Vali diagrammi põhitüüp." diff -Nru libreoffice-7.3.4/translations/source/et/cui/messages.po libreoffice-7.3.5/translations/source/et/cui/messages.po --- libreoffice-7.3.4/translations/source/et/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-27 17:40+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566121498.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automaatne" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaktika" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Suur kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassikaline" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Määrab tööriistaribade ja dialoogide ikoonide stiili." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikoonistiil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Lisa laienduste abil veel ikooniteemasid" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikoonistiil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Jõustub pärast taaskäivitust" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Riistvaralise kiirenduse kasutamine" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Võimaldab ligipääsu graafikakaardi riistvaralistele omadustele ekraanil kuvamise parendamiseks." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Pehmendamise kasutamine" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Kui see on toetatud, siis on võimalik lubada või keelata graafika pehmendamist. Kui graafika pehmendamine on lubatud, siis enamiku graafiliste objektide puhul tähendab see paremat välimust ja vähem moonutusi." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia kasutamine igasuguseks renderdamiseks" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia tarkvaralise renderdamise pealesundimine" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Jõustub pärast taaskäivitust. Selle ruudu märkimine keelab graafikadraiverite kasutamise." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia olek hetkel: lubatud" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia olek hetkel: keelatud" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Graafikaväljund" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Fontide eelvaate _kuvamine" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Valitavate fontide nimed kuvatakse vastavate fontidega vormindatult, näiteks fondid vormindusribal olevas fontide kastis." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ekraanifontide pehmendamine" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Pehmendab ekraanifontide kuva." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "Alates" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Fontide loendid" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Käivita graafikatest" diff -Nru libreoffice-7.3.4/translations/source/et/dbaccess/messages.po libreoffice-7.3.5/translations/source/et/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/et/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-10 11:42+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566121723.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Luua uue andmebaasi" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Põimitud andmebaas::" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Avada olemasoleva andmebaasifaili" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Hiljuti kasutatud:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ava" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Luua ühenduse olemasolevasse andmebaasi" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Uue andmebaasi loomine pole võimalik, kuna ei HSQLDB ega Firebird pole saadaval." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Andmebaasi loomise nõustaja loob uue andmebaasifaili, mis sisaldab infot andmebaasi kohta." diff -Nru libreoffice-7.3.4/translations/source/et/extensions/messages.po libreoffice-7.3.5/translations/source/et/extensions/messages.po --- libreoffice-7.3.4/translations/source/et/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-10 11:42+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566122989.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Värskenda vormi" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Mitmeosaline" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standardne (lühike)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardne (lühike YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardne (lühike YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standardne (pikk)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Pole valitud" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Valitud" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Määramata" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Kõik kirjed" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiivne kirje" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Käesolev lehekülg" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ei" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Jah" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Põhivorm" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Puudub" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Üksik" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Mitu" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Vahemik" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Rõhtne" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Püstine" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Vaikeväärtused" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Sobib" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Loobu" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Abi" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Valitud kirje" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Valitud kirje asukoht" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Üks rida" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Mitu rida" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Mitu rida koos vormindusega" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Puudub" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Rõhtne" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Püstine" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Mõlemad" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Ruumiline" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Lame" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Vasakul üleval" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Vasakul keskel" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Vasakul all" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Paremal üleval" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Paremal keskel" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Paremal all" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Üleval vasakul" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Üleval keskel" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Üleval paremal" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "All vasakul" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "All keskel" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "All paremal" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Keskel" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Säilita" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Asenda" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Lase kokku" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ei" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Proportsionaalne" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Sobitamine suurusega" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Vasakult paremale" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Paremalt vasakule" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Ülemobjekti sätete järgi" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Mitte kunagi" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kui fookuses" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Alati" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Lõigule" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Märgina" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Leheküljele" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Paneelile" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Märgile" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Leheküljele" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Lahtrile" diff -Nru libreoffice-7.3.4/translations/source/et/fpicker/messages.po libreoffice-7.3.5/translations/source/et/fpicker/messages.po --- libreoffice-7.3.4/translations/source/et/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-13 12:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -216,55 +216,55 @@ msgstr "Viimati muudetud" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Ava" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Esita" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Faili nimi:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Failitüüp:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Kirjutuskaitstud" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Salvestatakse parooliga" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Automaatne failinime laiend" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Filtri sätete redigeerimine" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Krüpteeritakse GPG-võtmega" diff -Nru libreoffice-7.3.4/translations/source/et/sc/messages.po libreoffice-7.3.5/translations/source/et/sc/messages.po --- libreoffice-7.3.4/translations/source/et/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-27 17:40+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566122065.000000\n" #. kBovX @@ -25267,97 +25267,97 @@ msgstr "~Vaade" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Pilt" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Pilt" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Joonistus" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Joonistus" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Multimeedium" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "Multimeedium" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Prindi" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Prindi" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Vorm" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Vorm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Laiendus" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Laiendus" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tööriistad" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Tööriistad" @@ -25716,139 +25716,139 @@ msgstr "Pilt" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Järjestus" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Värv" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Alusvõrk" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Kee_l" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Läbivaatus" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Märkused" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Võrdlemine" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Vaade" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Joonistamine" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Redigeerimine" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Järjestus" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Vaade" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Rühmitamine" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "Ruumilisus" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Joondus" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Vaade" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Lisamine" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Multimeedium" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Paneel" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Järjestus" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Alusvõrk" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Vaade" diff -Nru libreoffice-7.3.4/translations/source/et/sd/messages.po libreoffice-7.3.5/translations/source/et/sd/messages.po --- libreoffice-7.3.4/translations/source/et/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-10 11:42+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566122192.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Pilt" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Pilt" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Joonistus" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Joonistus" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Multimeedium" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Multimeedium" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Vorm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Vorm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Juhtleht" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Juhtleht" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "Ruumilisus" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "Ruumilisus" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Laiendus" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Laiendus" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tööriistad" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Tööriistad" @@ -7062,109 +7062,109 @@ msgstr "Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Pilt" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Pilt" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Joonistus" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Joonistus" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Multimeedium" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Multimeedium" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Vorm" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Vorm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Juhtslaid" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Juhtslaid" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "Ruumilisus" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "Ruumilisus" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Laiendus" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Laiendus" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tööriistad" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Tööriistad" diff -Nru libreoffice-7.3.4/translations/source/et/sw/messages.po libreoffice-7.3.5/translations/source/et/sw/messages.po --- libreoffice-7.3.4/translations/source/et/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-27 17:40+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566165825.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Liigutab valitud lõigustiili registri hierarhias ühe taseme võrra allapoole." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stiil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiilid" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Loob registri kirjed kindlatest lõigustiilidest." @@ -13955,37 +13955,37 @@ msgstr "Andmebaasi vahetamine" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Vaheta" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Kasutuselolevad andmebaasid" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Võimalikud andmebaasid" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Lehitse..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Avab faili avamise dialoogi andmebaasi faili (*.odb) valimiseks. Valitud fail lisatakse võimalike andmebaaside nimekirja." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Kasuta andmebaasi faili valimiseks nuppu \"Lehitse\"." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Kuvab hetkel kasutuselolevad andmebaasid." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Kuvab kõik %PRODUCTNAME'is registreeritud andmebaasid." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Andmebaasi vahetamine" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Rakendatud andmebaas:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Aktiivse dokumendi andmeallikate vahetamine." @@ -20076,109 +20076,109 @@ msgstr "Kasutatakse aktiivset dokumenti" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Kasutab kirjakoostedokumendi alusena praegust Writeri dokumenti." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Luuakse uus dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Loob kirjakooste jaoks kasutamiseks uue Writeri dokumendi." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Alustatakse olemasolevast dokumendist" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Vali olemasolev Writeri dokument, mida kasutada kirjakoostedokumendi alusena." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Alustatakse mallist" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Vali mall, millega soovid kirjakoostedokumendi luua." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Alustatakse hiljuti salvestatud dokumendist" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Kasuta uue kirjakoostedokumendi alusena olemasolevat kirjakoostedokumenti." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vali dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Lehitse..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Otsi üles soovitud Writeri dokument ja klõpsa \"Ava\"." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Lehitse..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Kirjakooste lähtedokumendi valimine" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Vali dokument, mida kasutada kirjakoostedokumendi alusena." @@ -22321,49 +22321,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tüüp" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Sätted" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Mähkimine" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hüperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Äärised" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Taust" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Läbipaistvus" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27059,7 +27059,7 @@ msgstr "Värskenda" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/et/vcl/messages.po libreoffice-7.3.5/translations/source/et/vcl/messages.po --- libreoffice-7.3.4/translations/source/et/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/et/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-01-10 11:42+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566122224.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Ühele paberilehele prinditakse mitu lehekülge." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Kohandatud" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Määrab ühele paberilehele prinditavate lehekülgede arvu." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Leheküljed:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Määrab ridade arvu." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "x" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Määrab veergude arvu." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Veerised:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Määrab dokumendi lehekülgede vahelise veerise." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "(lehekülgede vahel)" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Vahe:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Määrab dokumendi lehekülgede ja paberilehe serva vahelise veerise." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "(lehe servani)" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Järjestus:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Vasakult paremale, siis alla" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Ülalt alla, siis paremale" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Ülalt alla, siis vasakule" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Paremalt vasakule, siis alla" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Vali lehekülgede printimisjärjestus." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ääris iga lehekülje ümber" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Märgi ruut iga lehekülje ümber äärise joonistamiseks." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošüürina" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Järjestuse eelvaade" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Lisasätted" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Leheküljepaigutus" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Üldine" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prindib aktiivse dokumendi, valiku või määratud lehtede vahemiku. Aktiivsele dokumendile on võimalik määrata ka printimise sätteid." diff -Nru libreoffice-7.3.4/translations/source/eu/chart2/messages.po libreoffice-7.3.5/translations/source/eu/chart2/messages.po --- libreoffice-7.3.4/translations/source/eu/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-26 12:32+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1559371396.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Ezarri 'Zutabea eta marra' diagrama motako lerro kopurua." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Hautatu oinarrizko diagrama mota bat." diff -Nru libreoffice-7.3.4/translations/source/eu/cui/messages.po libreoffice-7.3.5/translations/source/eu/cui/messages.po --- libreoffice-7.3.4/translations/source/eu/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565776659.000000\n" #. GyY9M @@ -26,7 +26,7 @@ #: cui/inc/numcategories.hrc:19 msgctxt "numberingformatpage|liststore1" msgid "User-defined" -msgstr "Erabiltzaileak definituak" +msgstr "Erabiltzaileak definitua" #. YPFu3 #: cui/inc/numcategories.hrc:20 @@ -265,7 +265,7 @@ #: cui/inc/strings.hrc:42 msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR" msgid "User-defined dictionaries" -msgstr "Erabiltzailearen hiztegiak" +msgstr "Erabiltzaileak definitutako hiztegiak" #. qxBAu #: cui/inc/strings.hrc:43 @@ -10266,7 +10266,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248 msgctxt "hangulhanjaoptdialog|label1" msgid "User-defined Dictionaries" -msgstr "Erabiltzailearen hiztegiak" +msgstr "Erabiltzaileak definitutako hiztegiak" #. DEoRc #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:276 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatikoa" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Kontraste altua" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasikoa" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Tresna-barretako eta elkarrizketa-koadroetako ikonoen estiloa zehazten du." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikono-es_tiloa:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Gehitu ikono-gai gehiago hedapenen bidez" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikono-estiloa" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Berrabiarazi behar da" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Erabili hard_ware bidezko azelerazioa" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Zuzenean sartzen da bistaratze-grafikoaren moldagailuaren hardware-eginbideetara." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Erabili antia_liasing-a" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Onartuta dagoenean, grafikoen antialiasing-a gaitu edo desgaitu dezakezu. Gaituta dagoenean, objektu grafiko gehienen bistaratzea leunagoa izango da eta akats gutxiago izango ditu." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Erabili Skia errendatze guztietarako" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Behartu Skia bidezko software errendatzea" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Berrabiarazi behar da. Hau gaitzen bada, kontrolagailu grafikoak ezin izango dira erabili." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia gaituta dago." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia desgaituta dago." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafikoen irteera" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Erakutsi letra-tipoen a_urrebista" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Letra-tipo hautagarrien izenak, bakoitza bere letra-tipoarekin bistaratzen du, adibidez, Formatua barrako letra-tipoen kutxan." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Pantailako letra-tipoen a_ntialiasing-a" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Hautatu testuak pantailan duen itxura leuntzeko." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "he_mendik:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Sartu antialiasing-a aplikatuko zaion letra-tamaina txikiena." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Letra-tipoen zerrendak" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Exekutatu proba grafikoak" diff -Nru libreoffice-7.3.4/translations/source/eu/dbaccess/messages.po libreoffice-7.3.5/translations/source/eu/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/eu/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-01-13 18:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562308074.000000\n" #. BiN6g @@ -1791,7 +1791,7 @@ #: dbaccess/inc/strings.hrc:312 msgctxt "RID_STR_EXTENSION_NOT_PRESENT" msgid "The report, \"$file$\", requires the Report Builder feature." -msgstr "\"$file$\" txostenak txosten-diseinatzailea behar du." +msgstr "\"$file$\" txostenak txosten-eraikitzailea behar du." #. oC8Px #: dbaccess/inc/strings.hrc:314 @@ -3395,73 +3395,73 @@ msgstr "Datu-base _berria sortu" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Hautatu hau datu-base berria sortzeko." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Ka_psulatutako datu-basea:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "_Lehendik dagoen datu-base bat ireki" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Hautatu hau azken aldian erabilitako datu-base baten fitxategia irekitzeko zerrenda batetik edo fitxategia aukeratzeko elkarrizketa-koadro batetik abiatuta." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Azken aldian erabilia:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Hautatu datu-baseen fitxategi bat erabilitako azken fitxategien zerrendan, hura irekitzeko. Sakatu 'Amaitu' fitxategia berehala irekitzeko eta morroitik irteteko." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ireki" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Fitxategiak hautatzeko elkarrizketa-koadroa irekitzen du, datu-basearen fitxategi bat hautatu ahal izateko. Sakatu 'Ireki' edo 'Ados' elkarrizketa-koadroan fitxategia berehala ireki eta morroitik irteteko." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Lehendik dagoen datu-basera _konektatzea" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Hautatu hau datu-base baten dokumentu bat sortzeko lehendik dagoen konexio bat erabilita." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Hautatu lehendik dagoen datu-baseen konexioaren mota." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "erabilgarri ez HSQLDB ez Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Datu-baseen morroiak datu-base bati buruzko informazioa duen fitxategi bat sortzen du." diff -Nru libreoffice-7.3.4/translations/source/eu/extensions/messages.po libreoffice-7.3.5/translations/source/eu/extensions/messages.po --- libreoffice-7.3.4/translations/source/eu/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-23 04:36+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Freskatu inprimakia" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Hartu" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Bidali" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URLa" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Zati anitzak" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testua" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estandarra (laburra)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estandarra (laburra UU)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estandarra (laburra UUUU)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estandarra (luzea)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "EE-HH-UU" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "HH-EE-UU" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "UU-HH-EE" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "EE-HH-UUUU" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "HH-EE-UUUU" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "UUUU-HH-EE" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "UU-HH-EE" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "UUUU-HH-EE" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Hautatu gabe" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Hautatuta" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Zehaztu gabe" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Erregistro guztiak" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Uneko erregistroa" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Uneko orrialdea" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ez" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Bai" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Inprimaki gurasoa" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_hutsa" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_gurasoa" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_bera" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_goian" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Bat ere ez" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Bakarra" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Anitza" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Barrutia" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontala" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Bertikala" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Lehenetsia" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Ados" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Utzi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Laguntza" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Hautatutako sarrera" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Hautatutako sarreraren kokagunea" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Lerro bakarra" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Lerro anitzekoa" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Lerro anitzekoa formatuarekin" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Bat ere ez" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontala" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Bertikala" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Biak" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Laua" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ezkerrean goian" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ezkerrean erdian" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ezkerrean behean" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Eskuinean goian" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Eskuinean erdian" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Eskuinean behean" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Goian ezkerrean" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Goian erdian" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Goian eskuinean" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Azpian ezkerrean" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Azpian erdian" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Azpian eskuinean" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Zentratuta" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Mantendu" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ordeztu" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Tolestu" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ez" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantendu proportzioa" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Doitu tamainari" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ezkerretik eskuinera" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Eskuinetik ezkerrera" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Erabili goi-mailako objektuen ezarpenak" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Inoiz ere ez" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Fokua duenean" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Beti" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Paragrafoan" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Karaktere gisa" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Orrialdean" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Markora" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Karakterean" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Orrialdean" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Gelaxkan" diff -Nru libreoffice-7.3.4/translations/source/eu/fpicker/messages.po libreoffice-7.3.5/translations/source/eu/fpicker/messages.po --- libreoffice-7.3.4/translations/source/eu/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-23 09:42+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" @@ -216,55 +216,55 @@ msgstr "Aldaketa-data" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Ireki" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Erreproduzitu" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fitxategi-_izena:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Fitxategi _mota:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Irakurtzeko soilik" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Gorde pasahitzarekin" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Fitxategi-izenaren luzapen _automatikoa" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editatu _iragazki-ezarpenak" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Zifratu GPG gakoarekin" diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2022-01-26 12:49+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559714057.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 "kontrolak; elkarrizketa-editoreansakatzeko botoiaren kontrola elkarrizketa-editoreanikonoaren kontrolabotoiak; kontrolakirudi-kontrolakontrol-laukiaren kontrolaaukera-botoiaren kontrolaaukera-botoiaren kontrolatestu finkoaren kontrolaetiketa-eremuaren kontrolaeditatu; kontrolaktestu-koadroak; kontrolakzerrenda-koadroak; kontrolakkonbinazio-koadroaren kontrolakorritze-barraren kontrolakorritze-barra horizontalaren kontrolakorritze-barra bertikalaren kontrolatalde-koadroaren kontrolaaurrerapen-barraren kontrolamarra finkoaren kontrolamarra horizontalaren kontrolamarraren kontrolamarra bertikalaren kontroladata-eremuaren kontrolaordu-eremuaren kontrolazenbakizko eremuaren kontrolamoneta-eremuaren kontrolaeremu formatudunaren kontrolaeredu-eremuaren kontrolaeremu maskaratuaren kontrolafitxategi-hautapenaren kontrolahautapenak; kontrolakproba moduaren kontrola" +msgstr "kontrolak; elkarrizketa-editoreansakatzeko botoiaren kontrola elkarrizketa-editoreanikonoaren kontrolabotoiak; kontrolakirudi-kontrolakontrol-laukiaren kontrolaaukera-botoiaren kontrolaaukera-botoiaren kontrolatestu finkoaren kontrolaetiketa-eremuaren kontrolaeditatu; kontrolaktestu-koadroak; kontrolakzerrenda-koadroak; kontrolakkonbinazio-koadroaren kontrolakorritze-barraren kontrolakorritze-barra horizontalaren kontrolakorritze-barra bertikalaren kontrolatalde-markoaren kontrolaaurrerapen-barraren kontrolamarra finkoaren kontrolamarra horizontalaren kontrolamarraren kontrolamarra bertikalaren kontroladata-eremuaren kontrolaordu-eremuaren kontrolazenbakizko eremuaren kontrolamoneta-eremuaren kontrolaeremu formatudunaren kontrolaeredu-eremuaren kontrolaeremu maskaratuaren kontrolafitxategi-hautapenaren kontrolahautapenak; kontrolakproba moduaren kontrola" #. YL3Za #: 20000000.xhp @@ -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 order. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab order between the tab orders of the two groups. For example, to the frame of the second group, or to any other control in the dialog, with the exception of another option button." -msgstr "Erabiltzaileak aukera anitzen artean hautatzeko modua eskaintzen duen botoi bat gehitzen du. Taldekatutako aukera-botoiek elkarren ondoko tabulazio-ordena izan behar dute. Normalean talde-koadro batez inguratuta daude. Aukera-botoien bi talde badaude, tabulazio-ordena bat sartu behar da bi taldeen arteko tabulazio-ordenen artean, adibidez bigarren taldearen markoan, edo elkarrizketa-koadroko beste edozein kontroletan, beste kontrol hori aukera-botoi bat ez bada." +msgstr "Erabiltzaileak aukera anitzen artean hautatzeko modua eskaintzen duen botoi bat gehitzen du. Taldekatutako aukera-botoiek elkarren ondoko tabulazio-ordena izan behar dute. Normalean talde-marko batez inguratuta daude. Aukera-botoien bi talde badaude, tabulazio-ordena bat sartu behar da bi taldeen arteko tabulazio-ordenen artean, adibidez bigarren taldearen markoan, edo elkarrizketa-koadroko beste edozein kontroletan, beste kontrol hori aukera-botoi bat ez bada." #. DaRgN #: 20000000.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-03-23 11:41+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1561615582.000000\n" #. ViEWM @@ -18689,7 +18689,7 @@ "par_id61637863440399\n" "help.text" msgid "The caption of the following control types: Button, CheckBox, FixedLine, FixedText, GroupBox and RadioButton." -msgstr "Epigrafea honako kontrol motetan: botoia, kontrol-laukia, lerro finkoa, testu finkoa, talde-koadroa eta aukera-kontrola." +msgstr "Epigrafea honako kontrol motetan: botoia, kontrol-laukia, lerro finkoa, testu finkoa, talde-markoa eta aukera-kontrola." #. uCL85 #: sf_l10n.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-03-23 11:42+0000\n" -"Last-Translator: sophie \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563601210.000000\n" #. sZfWF @@ -47840,7 +47840,7 @@ "par_id3147428\n" "help.text" msgid "You cannot sort data if the Record changes options is enabled." -msgstr "Datuak ordenatu ahal izateko, Erregistratu aldaketak aukerak gaitu gabe egon behar du." +msgstr "Datuak ordenatu ahal izateko, Grabatu aldaketak aukerak gaitu gabe egon behar du." #. yfaxr #: 12030100.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-01-28 20:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563601251.000000\n" #. 3u8hR @@ -4001,7 +4001,7 @@ "par_idN106B4\n" "help.text" msgid "Record changes" -msgstr "Erregistratu aldaketak" +msgstr "Grabatu aldaketak" #. ijJbw #: 01100600.xhp @@ -12398,7 +12398,7 @@ "par_id3145669\n" "help.text" msgid "The following changes are tracked when the record changes command is active:" -msgstr "Erregistroen aldaketa-komandoa aktibo dagoenean ondorengo aldaketak jarraitzen dira:" +msgstr "Aldaketak grabatzeko komandoa aktibo dagoenean ondorengo aldaketak jarraitzen dira:" #. oUQkB #: 02230100.xhp @@ -12533,7 +12533,7 @@ "par_id3154347\n" "help.text" msgid "When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets." -msgstr "Aldaketa-erregistroen komandoa aktibo dagoenean, ezin dira gelaxkak ezabatu, lekuz aldatu, batu, zatitu edo kopiatu edo orriak ezabatu." +msgstr "Aldaketak grabatzeko komandoa aktibo dagoenean, ezin dira gelaxkak ezabatu, lekuz aldatu, batu, zatitu edo kopiatu edo orriak ezabatu." #. DaFFu #: 02230150.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-01-21 18:39+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559627231.000000\n" #. Edm6o @@ -986,7 +986,7 @@ "par_id3149123\n" "help.text" msgid "Creates an option button. Option buttons enable the user to choose one of several options. Option buttons with the same functionality are given the same name (Name property). Normally, they are given a group box." -msgstr "Aukera-botoia sortzen du. Aukera-botoiaren bidez, erabiltzaileak hainbat aukeraren artean bat aukera dezake. Funtzionalitate bereko aukera-botoiei izen bera ematen zaie (Izenapropietatea). Normaleantalde-laukia esleitzen zaie." +msgstr "Aukera-botoia sortzen du. Aukera-botoiaren bidez, erabiltzaileak hainbat aukeraren artean bat aukera dezake. Funtzionalitate bereko aukera-botoiei izen bera ematen zaie (Izenapropietatea). Normaleantalde-markoa esleitzen zaie." #. PEmCF #: 01170000.xhp @@ -10463,7 +10463,7 @@ "par_id3159201\n" "help.text" msgid "There are wizards for inserting a list box or combo box, a table element and group boxes." -msgstr "Zerrenda-koadro edo konbinazio-koadroak, taula-elementuak edo talde-laukiak txertatzeko morroiak daude." +msgstr "Zerrenda-koadro edo konbinazio-koadroak, taula-elementuak edo talde-markoak txertatzeko morroiak daude." #. AkNJ6 #: 01171200.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/eu/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-03-23 11:41+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561194957.000000\n" #. iharT @@ -23144,7 +23144,7 @@ "bm_id3155364\n" "help.text" msgid "changes; recording recording; changes comments; on changes review function;tracking changes" -msgstr "aldaketak; erregistratzea erregistratzea; aldaketak iruzkinak; aldaketetan berrikuspen-funtzioa;aldaketen jarraipena" +msgstr "aldaketak; grabatzea grabatzea; aldaketak iruzkinak; aldaketetan berrikuspen-funtzioa;aldaketen jarraipena" #. DgEE4 #: redlining_enter.xhp diff -Nru libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564560909.000000\n" #. W5ukN @@ -10884,7 +10884,7 @@ "Label\n" "value.text" msgid "Autofit Text" -msgstr "Autodoitu testua" +msgstr "Doitu automatikoki testua" #. bcYGc #: DrawImpressCommands.xcu @@ -17194,7 +17194,7 @@ "Label\n" "value.text" msgid "Flowchart: Predefined Process" -msgstr "Fluxu-diagrama: aurrez zehaztutako prozesua" +msgstr "Fluxu-diagrama: aurredefinitutako prozesua" #. tifbd #: GenericCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2021-02-09 16:36+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559405183.000000\n" #. HhMVS @@ -784,7 +784,7 @@ "DisplayName\n" "value.text" msgid "Report Builder" -msgstr "Txosten-diseinatzailea" +msgstr "Txosten-eraikitzailea" #. iE8oL #: ExtendedColorScheme.xcu diff -Nru libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice.po libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice.po --- libreoffice-7.3.4/translations/source/eu/officecfg/registry/data/org/openoffice.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/officecfg/registry/data/org/openoffice.po 2022-07-15 19:12:51.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: 2018-06-04 05:58+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: LANGUAGE \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1528091889.000000\n" #. foAxC @@ -104,4 +104,4 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Builder" -msgstr "Base: txosten-diseinatzailea" +msgstr "Base: txosten-eraikitzailea" diff -Nru libreoffice-7.3.4/translations/source/eu/sc/messages.po libreoffice-7.3.5/translations/source/eu/sc/messages.po --- libreoffice-7.3.4/translations/source/eu/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562221465.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Ikusi" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Irud_ia" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Irud~ia" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "M_arraztu" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Marraztu" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objektua" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objektua" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Inprimatu" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Inprimatu" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "I_nprimakia" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "I~nprimakia" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Hedapena" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Hedapena" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tresnak" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Tresnak" @@ -25702,139 +25702,139 @@ msgstr "Irud_ia" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "A_ntolatu" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "K_olorea" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Sareta" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Hizkuntza" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Berrikusi" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Iru_zkinak" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Konparatu" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Ikusi" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "M_arraztu" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editatu" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "A_ntolatu" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Ikusi" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Taldea" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Letra-tipoa" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Le_rrokatzea" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Ikusi" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "T_xertatu" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimedia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Markoa" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "A_ntolatu" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Sareta" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Ikusi" @@ -27541,7 +27541,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211 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 "Egin klik kalkulatu nahi duzun subtotal motan. Aukera hau erabilgarri egoteko, hautatuta egon behar du Erabiltzaileak definitua aukerak." +msgstr "Egin klik kalkulatu nahi duzun subtotal motan. Aukera hau erabilgarri egoteko, 'Erabiltzaileak definitua' aukerak hautatuta egon behar du." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:228 @@ -28051,7 +28051,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:154 msgctxt "printareasdialog|lbprintarea" msgid "- user defined -" -msgstr "- erabiltzaileak definituta -" +msgstr "- erabiltzaileak definitua -" #. aBLgV #: sc/uiconfig/scalc/ui/printareasdialog.ui:155 @@ -28093,7 +28093,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:248 msgctxt "printareasdialog|lbrepeatrow" msgid "- user defined -" -msgstr "- erabiltzaileak definituta -" +msgstr "- erabiltzaileak definitua -" #. fmxFD #: sc/uiconfig/scalc/ui/printareasdialog.ui:252 @@ -28129,7 +28129,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:341 msgctxt "printareasdialog|lbrepeatcol" msgid "- user defined -" -msgstr "- erabiltzaileak definituta -" +msgstr "- erabiltzaileak definitua -" #. vhTpH #: sc/uiconfig/scalc/ui/printareasdialog.ui:345 diff -Nru libreoffice-7.3.4/translations/source/eu/scp2/source/ooo.po libreoffice-7.3.5/translations/source/eu/scp2/source/ooo.po --- libreoffice-7.3.4/translations/source/eu/scp2/source/ooo.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/scp2/source/ooo.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-10-15 11:36+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1558597088.000000\n" #. CYBGJ @@ -5333,7 +5333,7 @@ "STR_NAME_MODULE_OPTIONAL_REPORTDESIGN\n" "LngText.text" msgid "Report Builder" -msgstr "Txosten-diseinatzailea" +msgstr "Txosten-eraikitzailea" #. uzCcq #: module_reportbuilder.ulf @@ -5342,7 +5342,7 @@ "STR_DESC_MODULE_OPTIONAL_REPORTDESIGN\n" "LngText.text" msgid "Report Builder helps to design database reports. It requires Java." -msgstr "Txosten-diseinatzaileak datu-baseen txostenak diseinatzen laguntzen du. Java behar du." +msgstr "Txosten-eraikitzaileak datu-baseen txostenak diseinatzen laguntzen du. Java behar du." #. 9vjxt #: module_systemint.ulf diff -Nru libreoffice-7.3.4/translations/source/eu/sd/messages.po libreoffice-7.3.5/translations/source/eu/sd/messages.po --- libreoffice-7.3.4/translations/source/eu/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-26 12:32+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562394047.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Taula" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Irudia" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Irud~ia" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "M_arraztu" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Marraztu" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objektua" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objektua" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "I_nprimakia" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Inp~rimakia" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Maisua" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Maisua" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Hedapena" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Hedapena" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tresnak" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Tresnak" @@ -7062,109 +7062,109 @@ msgstr "T~aula" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Irudia" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Irud~ia" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "M_arraztu" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "M~arraztu" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objektua" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objektua" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "I_nprimakia" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Inp~rimakia" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Maisua" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Maisua" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Hedapena" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Hedapena" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Tresnak" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Tresnak" diff -Nru libreoffice-7.3.4/translations/source/eu/svx/messages.po libreoffice-7.3.5/translations/source/eu/svx/messages.po --- libreoffice-7.3.4/translations/source/eu/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559371103.000000\n" #. 3GkZj @@ -13671,7 +13671,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:269 msgctxt "chinesedictionary|extended_tip|delete" msgid "Removes the selected user-defined entry from the dictionary." -msgstr "Hautatutako sarrera, erabiltzaileak zehaztua, hiztegitik kentzen du." +msgstr "Hautatutako sarrera, erabiltzaileak definitua, hiztegitik kentzen du." #. cUcgH #: svx/uiconfig/ui/chinesedictionary.ui:290 @@ -15185,7 +15185,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2138 msgctxt "docking3deffects|favorites" msgid "User-defined" -msgstr "Erabiltzaileak definituak" +msgstr "Erabiltzaileak definitua" #. RcCQG #: svx/uiconfig/ui/docking3deffects.ui:2139 @@ -15221,7 +15221,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2150 msgctxt "docking3deffects|extended_tip|favorites" msgid "Select a predefined color scheme, or select User-defined to define a custom color scheme." -msgstr "Hautatu aurrez definitutako kolore-eskema bat, edo hautatu Erabiltzaileak definitua kolore-eskema pertsonalizatua definitzeko." +msgstr "Hautatu aurrez definitutako kolore-eskema bat, edo hautatu 'Erabiltzaileak definitua' kolore-eskema pertsonalizatua definitzeko." #. AndqG #: svx/uiconfig/ui/docking3deffects.ui:2165 diff -Nru libreoffice-7.3.4/translations/source/eu/sw/messages.po libreoffice-7.3.5/translations/source/eu/sw/messages.po --- libreoffice-7.3.4/translations/source/eu/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562394087.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Hautatutako paragrafo-estiloa maila bat jaisten du indize-hierarkian." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estiloa" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estiloak" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Indize-sarrerak paragrafo-estilo zehatzetatik sortzen ditu." @@ -13955,37 +13955,37 @@ msgstr "Trukatu datu-baseak" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definitu" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Erabilitako datu-baseak" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Datu-base erabilgarriak" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Arakatu..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Fitxategiak irekitzeko elkarrizketa-koadroa irekitzen du, eta hor datu-basearen fitxategi bat (*.odb) hauta dezakezu. Hautatutako fitxategia datu-base erabilgarrien zerrendari gehitzen zaio." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Erabili arakatzeko botoia datu-base baten fitxategia hautatzeko." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Une honetan erabiltzen ari diren datu-baseak zerrendatzen dira." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "%PRODUCTNAME aplikazioan erregistratu diren datu-baseak zerrendatzen ditu." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Trukatu datu-baseak" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Dokumentuari aplikatutako datu-basea:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Aldatu uneko dokumentuaren datu-iturburuak." @@ -14220,7 +14220,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:388 msgctxt "flddbpage|userdefinedcb" msgid "User-defined" -msgstr "Erabiltzaileak definituak" +msgstr "Erabiltzaileak definitua" #. ExYpF #: sw/uiconfig/swriter/ui/flddbpage.ui:400 @@ -14754,7 +14754,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:590 msgctxt "fldvarpage|extended_tip|apply" msgid "Adds the user-defined field to the Select list." -msgstr "Erabiltzaileak definitutako eremua Hautatu zerrendari gehitzen dio." +msgstr "Erabiltzaileak definitutako eremua 'Hautatu' zerrendari gehitzen dio." #. GKfDe #: sw/uiconfig/swriter/ui/fldvarpage.ui:604 @@ -20073,109 +20073,109 @@ msgstr "Erabili uneko _dokumentua" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Uneko Writer dokumentua erabiltzen du posta-konbinazioko oinarri-dokumentu gisa." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Sortu dokumentu _berria" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Writer dokumentu berria sortzen du posta-konbinazioan erabiltzeko." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Hasi _lehendik dagoen dokumentutik" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Hautatu lehendik dagoen Writer dokumentu bat posta-konbinazioko oinarri-dokumentu gisa erabiltzeko." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Hasi _txantiloitik" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Hautatu posta-konbinazioko dokumentuarekin erabili nahi duzun txantiloia." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Hasi a_zkena gordetako hasierako dokumentutik" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Erabili lehendik dagoen posta-konbinazioko dokumentu bat posta-konbinazioko dokumentu berriaren oinarri gisa." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Hautatu dokumentua." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "A_rakatu..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Bilatu erabili nahi duzun Writer dokumentua, eta ondoren sakatu Ireki." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "A_rakatu..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Txantiloia hautatzeko elkarrizketa-koadroa irekitzen du." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Uneko dokumentuaren datu-iturburua ez dago erregistratuta. Trukatu datu-basea." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Trukatu datu-basea..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Hautatu hasierako dokumentua posta-konbinaziorako" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Zehaztu zein dokumentu erabiliko duzun posta-konbinazioko oinarri-dokumentua izateko." @@ -22318,49 +22318,49 @@ msgstr "Objektua" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Mota" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Aukerak" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Egokitu" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperesteka" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ertzak" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Gardentasuna" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makroa" @@ -27056,7 +27056,7 @@ msgstr "Eguneratu" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Uneko fitxategiaren estatistikak bistaratzen ditu." @@ -28829,7 +28829,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:145 msgctxt "tocindexpage|liststore1" msgid "User-Defined" -msgstr "Erabiltzaileak definituak" +msgstr "Erabiltzaileak definitua" #. CCQdU #: sw/uiconfig/swriter/ui/tocindexpage.ui:146 diff -Nru libreoffice-7.3.4/translations/source/eu/vcl/messages.po libreoffice-7.3.5/translations/source/eu/vcl/messages.po --- libreoffice-7.3.4/translations/source/eu/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/eu/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-10-15 11:36+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.12.2\n" "X-POOTLE-MTIME: 1562394089.000000\n" #. k5jTM @@ -88,7 +88,7 @@ #: vcl/inc/print.hrc:44 msgctxt "RID_STR_PAPERNAMES" msgid "User Defined" -msgstr "Erabiltzaileak definituak" +msgstr "Erabiltzaileak definitua" #. GFBC8 #: vcl/inc/print.hrc:45 @@ -2324,169 +2324,169 @@ msgstr "Erabilgarri adude orrialde maisuak zerrendatzen ditu." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Pertsonalizatu" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Hautatu ikono hori orrialdeetan arakatzeko." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Orrialdeak:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Hautatu fitxategiaren formatua." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "honek:" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Hautatu fitxategiaren formatua." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marjina:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Hautatu datu-basea eta taula bat." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "orrialdeen artean" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distantzia:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Hautatu datu-basea eta taula bat." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "orriaren ertzera" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordena:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Ezkerretik eskuinera, gero behera" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Goitik behera, gero eskuinera" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Goitik behera, gero ezkerrera" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Eskuinetik ezkerrera, gero behera" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Hautatu datu-basea eta taula bat." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Marraztu ertza orrialde bakoitzaren inguruan" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Hautatu datu-basea eta taula bat." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Liburuxka" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Hautatu hau dokumentua liburuxka-formatuan inprimatzeko." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Tartekatzearen aurrebista" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Aldatu paper-orri bakoitzean inprimatuko den orrialde-antolaketa. Aurrebistak erakusten du zein itxura izango duen paper-orri bakoitzak." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Ge_hiago" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Orrialde-diseinua" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Orokorra" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Uneko dokumentua, hautapena edo zehaztu dituzun orrialdeak inprimatzen ditu. Uneko dokumentuaren inprimatzeko aukerak ere ezar daitezke." diff -Nru libreoffice-7.3.4/translations/source/fa/chart2/messages.po libreoffice-7.3.5/translations/source/fa/chart2/messages.po --- libreoffice-7.3.4/translations/source/fa/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-26 09:37+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -3629,7 +3629,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fa/cui/messages.po libreoffice-7.3.5/translations/source/fa/cui/messages.po --- libreoffice-7.3.4/translations/source/fa/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-24 15:39+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195434.000000\n" #. GyY9M @@ -17582,177 +17582,152 @@ msgid "Automatic" msgstr "خودکار" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "کنتراست ~زیاد" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fa/dbaccess/messages.po libreoffice-7.3.5/translations/source/fa/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/fa/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-04 05:39+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524566860.000000\n" #. BiN6g @@ -3587,75 +3587,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "پایگاه‌داده جاسازی‌شده" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "اخیراً به کار رفته" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "باز کردن" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3663,7 +3663,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fa/extensions/messages.po libreoffice-7.3.5/translations/source/fa/extensions/messages.po --- libreoffice-7.3.4/translations/source/fa/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-26 09:37+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -301,555 +301,542 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "هزینه" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "نشانی اینترنتی" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "متن" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "استاندارد (کوتاه)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "استاندارد (کوتاه)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "استاندارد (کوتاه)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "استاندارد (بلند)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(انتخاب شده)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "تاریخ فعلی" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "نه" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "بله" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "توقف" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "هیچ‌کدام" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "تکی" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "محدوده" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "افقی" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "عمودی" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "پیش‌فرض" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "تأیید" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "انصراف" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "راهنما" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "خط تکی" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "هیچ‌کدام" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "افقی" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "عمودی" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "هر دو" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "سه‌بعدی" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "تخت" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "چپ، بالا" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "راست، بالا" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "وسط‌چین" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "جایگزینی" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "جمع شدن" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "نه" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "تطابق با خط" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "چپ به راست" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "راست به چپ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "استفاده از تنظیمات شیء مافوق" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "بند" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "به صورت نویسه" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "به صفحه" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "چارچوب" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "به نویسه" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "به صفحه" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/fa/fpicker/messages.po libreoffice-7.3.5/translations/source/fa/fpicker/messages.po --- libreoffice-7.3.4/translations/source/fa/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-26 09:36+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -216,55 +216,55 @@ msgstr "تاریخ تغییر" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_باز کردن" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_پخش" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_نام پرونده:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "نو_ع پرونده:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_فقط خواندنی" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ذخیره با گذرواژه" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "پسوند _خودکار برای نام پرونده" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ویرایش تنظیمات _فیلتر" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "رمز کردن با کلیدِ GPG" diff -Nru libreoffice-7.3.4/translations/source/fa/sc/messages.po libreoffice-7.3.5/translations/source/fa/sc/messages.po --- libreoffice-7.3.4/translations/source/fa/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-26 09:37+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -25875,97 +25875,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26348,156 +26348,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "آرایش" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "رنگ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "توری" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "زبان" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "یادداشت‌ها" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "نما" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ویرایش" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "آرایش" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "نما" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "گروه کردن" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "فوت" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ردیف کردن" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "نما" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "درج" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "چارچوب" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "آرایش" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "توری" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/fa/sd/messages.po libreoffice-7.3.5/translations/source/fa/sd/messages.po --- libreoffice-7.3.4/translations/source/fa/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-26 09:37+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -4241,109 +4241,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7223,109 +7223,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fa/sw/messages.po libreoffice-7.3.5/translations/source/fa/sw/messages.po --- libreoffice-7.3.4/translations/source/fa/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-26 09:37+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -10704,20 +10704,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "سبک‌ها" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14300,38 +14300,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "ت~عریف!" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "مرور..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14339,31 +14339,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20677,111 +20677,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "مرور..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "مرور..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22958,51 +22958,51 @@ msgstr "شیء" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "نوع" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "گزینه‌ها" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~پیچش" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "فراپیوند" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "حاشیه‌ها" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "محیط" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "شفافیت" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ماکرو" @@ -27889,7 +27889,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fa/vcl/messages.po libreoffice-7.3.5/translations/source/fa/vcl/messages.po --- libreoffice-7.3.4/translations/source/fa/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fa/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-02-26 09:36+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -2337,169 +2337,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "سفارشی" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "توسط" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "بین صفحات" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "تا حاشیه برگه" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "کشیدن یک کادر اطراف هر صفحه" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "بروشور" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fi/chart2/messages.po libreoffice-7.3.5/translations/source/fi/chart2/messages.po --- libreoffice-7.3.4/translations/source/fi/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-01-18 17:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563894248.000000\n" #. NCRDD @@ -1488,7 +1488,6 @@ #. 3HjyB #: chart2/uiconfig/ui/dlg_DataLabel.ui:350 -#, fuzzy msgctxt "dlg_DataLabel|liststorePLACEMENT" msgid "Near origin" msgstr "Juureen" @@ -2609,7 +2608,6 @@ #. pAmg7 #: chart2/uiconfig/ui/sidebarseries.ui:84 -#, fuzzy msgctxt "sidebarseries|comboboxtext_label" msgid "Near origin" msgstr "Juureen" @@ -3654,7 +3652,7 @@ msgstr "Asetetaan piirrettävien viivakuvaajien määrä Pylväs ja viiva -kaaviossa." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Valitse peruskaaviotyyppi." @@ -3851,7 +3849,6 @@ #. XGkMi #: chart2/uiconfig/ui/tp_DataLabel.ui:282 -#, fuzzy msgctxt "tp_DataLabel|liststorePLACEMENT" msgid "Near origin" msgstr "Juureen" @@ -4732,19 +4729,19 @@ #: chart2/uiconfig/ui/tp_Scale.ui:281 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Days" -msgstr "" +msgstr "Päivät" #. NL9uN #: chart2/uiconfig/ui/tp_Scale.ui:282 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Months" -msgstr "" +msgstr "Kuukaudet" #. BfyLg #: chart2/uiconfig/ui/tp_Scale.ui:283 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Years" -msgstr "" +msgstr "Vuodet" #. WUANc #: chart2/uiconfig/ui/tp_Scale.ui:287 @@ -4899,6 +4896,7 @@ #. hV3cT #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:84 +#, fuzzy msgctxt "tp_SeriesToAxis|label1" msgid "Align Data Series to" msgstr "Tietolähteiden tasaus" diff -Nru libreoffice-7.3.4/translations/source/fi/connectivity/messages.po libreoffice-7.3.5/translations/source/fi/connectivity/messages.po --- libreoffice-7.3.4/translations/source/fi/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2021-09-28 20:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563900933.000000\n" #. 9KHB8 @@ -501,7 +501,7 @@ #: connectivity/inc/strings.hrc:107 msgctxt "STR_PARA_ONLY_PREPARED" msgid "Parameters can appear only in prepared statements." -msgstr "Parametreja voi käyttää vain valmistelluissa käskyissä." +msgstr "Parametreja voi käyttää vain valmistelluissa lauseissa." #. CB7pj #. MACAB diff -Nru libreoffice-7.3.4/translations/source/fi/cui/messages.po libreoffice-7.3.5/translations/source/fi/cui/messages.po --- libreoffice-7.3.4/translations/source/fi/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564954460.000000\n" #. GyY9M @@ -655,7 +655,7 @@ #: cui/inc/strings.hrc:116 msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS" msgid "Sidebar Decks" -msgstr "" +msgstr "Sivupalkin paneelit" #. hFEBv #: cui/inc/strings.hrc:118 @@ -1855,7 +1855,7 @@ #: cui/inc/strings.hrc:339 msgctxt "RID_SVXSTR_OLD_HUNGARIAN" msgid "Transliterate to Old Hungarian if the text direction is from right to left" -msgstr "" +msgstr "Translitteroi muinaisunkariin, mikäli tekstin suunta on oikealta vasemmalle" #. CNtDd #: cui/inc/strings.hrc:340 @@ -2000,7 +2000,7 @@ #: cui/inc/strings.hrc:368 msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR" msgid "The URL <%1> cannot be converted to a filesystem path." -msgstr "URL-osoitetta <%1> ei voi muuttaa tiedostojärjestelmän poluksi." +msgstr "URL-osoitetta <%1> ei voi muuntaa tiedostojärjestelmän poluksi." #. ZzTBf #: cui/inc/strings.hrc:370 @@ -5626,13 +5626,13 @@ #: cui/uiconfig/ui/borderpage.ui:450 msgctxt "borderpage|topft" msgid "_Top:" -msgstr "Yläreuna:" +msgstr "Ylä:" #. fRE8t #: cui/uiconfig/ui/borderpage.ui:464 msgctxt "borderpage|bottomft" msgid "_Bottom:" -msgstr "Alareuna:" +msgstr "Ala:" #. M8CGp #: cui/uiconfig/ui/borderpage.ui:476 @@ -8921,7 +8921,7 @@ #: cui/uiconfig/ui/entrycontextmenu.ui:20 msgctxt "entrycontextmenu|rename" msgid "R_ename..." -msgstr "" +msgstr "Nimeä uudelleen..." #. xuHT8 #: cui/uiconfig/ui/entrycontextmenu.ui:28 @@ -11310,13 +11310,13 @@ #: cui/uiconfig/ui/imagetabpage.ui:144 msgctxt "imagetabpage|imagestyle" msgid "Tiled" -msgstr "" +msgstr "Toistuva" #. Nbj26 #: cui/uiconfig/ui/imagetabpage.ui:145 msgctxt "imagetabpage|imagestyle" msgid "Stretched" -msgstr "" +msgstr "Venytetty" #. Dd2Bq #: cui/uiconfig/ui/imagetabpage.ui:171 @@ -11340,7 +11340,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:260 msgctxt "imagetabpage|scaletsb" msgid "Scale" -msgstr "" +msgstr "Prosentteina sivun koosta" #. pSSBr #: cui/uiconfig/ui/imagetabpage.ui:290 @@ -11406,7 +11406,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:340 msgctxt "imagetabpage|label9" msgid "Tiling Position:" -msgstr "" +msgstr "Toiston sijainti:" #. Xrp73 #: cui/uiconfig/ui/imagetabpage.ui:359 @@ -11424,19 +11424,19 @@ #: cui/uiconfig/ui/imagetabpage.ui:444 msgctxt "imagetabpage|label15" msgid "Tiling Offset:" -msgstr "" +msgstr "Toiston siirros:" #. QEPUJ #: cui/uiconfig/ui/imagetabpage.ui:467 msgctxt "imagetabpage|tileofflb" msgid "Row" -msgstr "" +msgstr "RIvi" #. CwmC3 #: cui/uiconfig/ui/imagetabpage.ui:468 msgctxt "imagetabpage|tileofflb" msgid "Column" -msgstr "" +msgstr "Sarake" #. GQBjR #: cui/uiconfig/ui/imagetabpage.ui:511 @@ -12207,7 +12207,7 @@ #: cui/uiconfig/ui/linetabpage.ui:727 msgctxt "linetabpage|label3" msgid "Corner and Cap Styles" -msgstr "Kulmien ja viivanpäiden tyylit" +msgstr "Kulma- ja viivanpäätyylit" #. 4YTBE #: cui/uiconfig/ui/linetabpage.ui:755 @@ -17197,98 +17197,74 @@ msgid "Automatic" msgstr "Automaattinen" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Korkea kontrasti" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Perinteinen" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Määrittää työkalurivien ja valintaikkunoiden kuvaketyylin." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Kuvaketyyli:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Lisää kuvaketeemoja lisäosalla" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Kuvaketyyli" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Vaatii uudelleenkäynnistyksen" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Käytä laitteistokiihdytystä" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Käyttää suoraan näytönohjaimen ominaisuuksia näytön kuvan parantamiseen." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Käytä sahalaitaisuuden poistoa" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Sahalaitaisuuden poiston voi laittaa päälle tai pois, mikäli sitä tuetaan. Kun sahalaitaisuuden poisto on käytössä, useimmat graafiset objektit näyttävät sileämmiltä ja sisältävät vähemmän artefakteja." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" @@ -17296,7 +17272,7 @@ "grafiikan piirtämiseen" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" @@ -17304,73 +17280,73 @@ "grafiikan piirtäminen Skialla" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Vaatii uudelleenkäynnistyksen. Tämän valitseminen estää grafiikka-ajureiden käyttämisen." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia on käytössä." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia on pois käytöstä." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafiikan näyttäminen" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Näytä fonttien _esikatselu" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Näyttöfontin sahalaitaisuuden poisto" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Valinta silottaa tekstin ulkoasua näytöllä." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "alkaen koosta:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Syötä pienin fonttikoko, johon sahalaitaisuuden poistoa käytetään." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Fonttiluettelot" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Suorita grafiikkatestit" @@ -17537,19 +17513,19 @@ #: cui/uiconfig/ui/pageformatpage.ui:591 msgctxt "pageformatpage|labelTblAlign" msgid "Table alignment:" -msgstr "Taulukon tasaus:" +msgstr "Taulukon keskitys:" #. 79BH9 #: cui/uiconfig/ui/pageformatpage.ui:603 msgctxt "pageformatpage|checkbuttonHorz" msgid "Hori_zontal" -msgstr "Vaakasuora" +msgstr "Vaakasuunnassa" #. krxQZ #: cui/uiconfig/ui/pageformatpage.ui:617 msgctxt "pageformatpage|checkbuttonVert" msgid "_Vertical" -msgstr "_Pystysuora" +msgstr "Pystysuunnassa" #. FPLFK #: cui/uiconfig/ui/pageformatpage.ui:631 @@ -17670,13 +17646,13 @@ #: cui/uiconfig/ui/paragalignpage.ui:172 msgctxt "paragalignpage|labelST_RIGHTALIGN_ASIAN" msgid "Righ_t/Bottom" -msgstr "Oikea/Alhaalla" +msgstr "Oikea/ala" #. hpARG #: cui/uiconfig/ui/paragalignpage.ui:184 msgctxt "paragalignpage|labelST_LEFTALIGN_ASIAN" msgid "_Left/Top" -msgstr "Vasen/Ylä" +msgstr "Vasen/ylä" #. tRWTe #: cui/uiconfig/ui/paragalignpage.ui:209 @@ -17808,7 +17784,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:221 msgctxt "paraindentspacing|label1" msgid "Indent" -msgstr "Sisennä" +msgstr "Sisennys" #. RMdgy #: cui/uiconfig/ui/paraindentspacing.ui:258 @@ -17929,7 +17905,7 @@ #: cui/uiconfig/ui/paratabspage.ui:233 msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN" msgid "_Left/Top" -msgstr "Vasen/Ylä" +msgstr "Vasen/ylä" #. dtaBp #: cui/uiconfig/ui/paratabspage.ui:259 @@ -17941,7 +17917,7 @@ #: cui/uiconfig/ui/paratabspage.ui:274 msgctxt "paratabspage|radiobuttonST_RIGHTTAB_ASIAN" msgid "Righ_t/Bottom" -msgstr "Oikea/Alhaalla" +msgstr "Oikea/ala" #. fDVEt #: cui/uiconfig/ui/paratabspage.ui:295 @@ -18791,7 +18767,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:384 msgctxt "qr code dialog title" msgid "Generate linear and matrix codes for any text or URL." -msgstr "Luo lineaarisia- ja matriisikoodeja mistä tahansa tekstistä tai URL-osoitteesta." +msgstr "Luo lineaarisia ja matriisikoodeja mistä tahansa tekstistä tai URL-osoitteesta." #. 3HNDZ #: cui/uiconfig/ui/querychangelineenddialog.ui:7 @@ -19013,13 +18989,13 @@ #: cui/uiconfig/ui/rotationtabpage.ui:53 msgctxt "rotationtabpage|FT_POS_X" msgid "Position _X:" -msgstr "Sijainti X:" +msgstr "X-sijainti:" #. yEEEo #: cui/uiconfig/ui/rotationtabpage.ui:67 msgctxt "rotationtabpage|FT_POS_Y" msgid "Position _Y:" -msgstr "Sijainti Y:" +msgstr "Y-sijainti:" #. EiCXd #: cui/uiconfig/ui/rotationtabpage.ui:87 @@ -20103,7 +20079,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 "Antaa käyttäjän lisätä merkkejä asennettujen fonttien symbolivalikoimasta." #. 2pg6B #: cui/uiconfig/ui/spellingdialog.ui:30 diff -Nru libreoffice-7.3.4/translations/source/fi/dbaccess/messages.po libreoffice-7.3.5/translations/source/fi/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/fi/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563272569.000000\n" #. BiN6g @@ -2381,7 +2381,7 @@ #: dbaccess/inc/strings.hrc:413 msgctxt "STR_COULD_NOT_CONVERT_PARAM" msgid "The entry could not be converted to a valid value for the \"$name$\" parameter" -msgstr "Merkintää ei voitu muuttaa parametrin \"$name$\" kelvolliseksi arvoksi" +msgstr "Merkintää ei voitu muuntaa parametrin \"$name$\" kelvolliseksi arvoksi" #. FCnE3 #: dbaccess/inc/strings.hrc:415 @@ -3395,73 +3395,73 @@ msgstr "Luoda uuden tietokannan" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Tämän valitseminen luo uuden tietokannan." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Upotettu tietokanta:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Avata olemassa olevan tietokantatiedoston" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Valitse tämä avataksesi tietokantatiedoston viimeaikaisten tiedostojen luettelosta tai tiedostonvalintaikkunasta." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Viimeksi käytetty:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Avaa" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Muodostaa yhteyden olemassa olevaan tietokantaan" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "ei ole saatavilla." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fi/editeng/messages.po libreoffice-7.3.5/translations/source/fi/editeng/messages.po --- libreoffice-7.3.4/translations/source/fi/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-09-05 11:22+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1517138300.000000\n" #. BHYB4 @@ -1737,7 +1737,7 @@ #: include/editeng/editrids.hrc:307 msgctxt "RID_OUTLUNDO_EXPAND" msgid "Show subpoints" -msgstr "Näytä alipisteet" +msgstr "Näytä alakohdat" #. egnVC #: include/editeng/editrids.hrc:308 diff -Nru libreoffice-7.3.4/translations/source/fi/extensions/messages.po libreoffice-7.3.5/translations/source/fi/extensions/messages.po --- libreoffice-7.3.4/translations/source/fi/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564237489.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Päivitä lomake" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL-osoite" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Moniosainen" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teksti" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Vakio (lyhyt)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Vakio (lyhyt VV)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Vakio (lyhyt VVVV)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Vakio (pitkä)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "PP/KK/VV" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "KK/PP/VV" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "VV/KK/PP" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "PP/KK/VVVV" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "KK/PP/VVVV" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "VVVV/KK/PP" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "VV-KK-PP" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "VVVV-KK-PP" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ei valittu" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Valittu" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ei määritetty" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Kaikki tietueet" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiivinen tietue" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Nykyinen sivu" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ei" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Kyllä" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Päälomake" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ei mitään" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Yksittäinen valinta" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Monivalinta" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Yhtenäinen valinta" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vaakataso" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Pystytaso" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Oletus" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Peruuta" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ohje" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Valittu merkintä" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Valitun merkinnän sijainti" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Yksirivinen" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Monirivinen" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Muotoiltu monirivinen" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ei mitään" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vaakataso" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Pystytaso" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Molemmat" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Kolmiulotteinen" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Litteä" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ylävasen" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Keskellä vasemmalla" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Alavasen" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Yläoikea" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Keskellä oikealla" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Alaoikea" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Yläpuolella vasemmalla" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Yläpuolella keskellä" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Yläpuolella oikealla" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Alapuolella vasemmalla" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Alapuolella keskellä" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Alapuolella oikealla" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Keskitetty" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Säilytä" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Korvaa" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Pienennä" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ei" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Säilytä mittasuhteet" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Sovita kokoon" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Vasemmalta oikealle" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Oikealta vasemmalle" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Käytä ensisijaista objektiasetusta" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ei koskaan" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kohdistettuna" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Aina" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Kappaleeseen" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Merkkinä" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Sivuun" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Kehykseen" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Merkkiin" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Sivuun" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Soluun" @@ -4306,7 +4294,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:466 msgctxt "sanedialog|extended_tip|reslCombobox" msgid "Select the resolution in dots per inch for the scan job." -msgstr "" +msgstr "Valitse skannaustyön tarkkuus pisteinä tuumalle (DPI)." #. t3Tuq #: extensions/uiconfig/scanner/ui/sanedialog.ui:492 @@ -4330,7 +4318,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:569 msgctxt "sanedialog\\extended_tip|optionSvTreeListBox" msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below." -msgstr "" +msgstr "Näyttää listan saatavilla olevista skannerin ajurin lisäasetuksista. Kaksoisnapsauta asetusta näyttääksesi sen sisällön alla." #. VDQay #: extensions/uiconfig/scanner/ui/sanedialog.ui:607 diff -Nru libreoffice-7.3.4/translations/source/fi/filter/messages.po libreoffice-7.3.5/translations/source/fi/filter/messages.po --- libreoffice-7.3.4/translations/source/fi/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-01-25 11:19+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563900856.000000\n" #. 5AQgJ @@ -580,7 +580,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:525 msgctxt "pdfgeneralpage|tagged|tooltip_text" msgid "Includes a document's content structure information in a PDF" -msgstr "Sisällyttää tietoja asiakirjan rakenteesta PDF-tiedostoon" +msgstr "Sisällyttää tiedot asiakirjan sisällön rakenteesta PDF-tiedostoon" #. Btxot #: filter/uiconfig/ui/pdfgeneralpage.ui:531 @@ -802,13 +802,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:963 msgctxt "pdfgeneralpage|singlepagesheets" msgid "Whole sheet export" -msgstr "" +msgstr "Vie taulukot kokonaisina" #. jRGAS #: filter/uiconfig/ui/pdfgeneralpage.ui:972 msgctxt "pdfgeneralpage|extended_tip|singlepagessheets" msgid "Ignores each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page, which is exactly as small or large as needed to fit the whole contents of the sheet." -msgstr "" +msgstr "Sivuuttaa kunkin taulukon paperikoon, tulostusalueet ja näkyvyyden asettaen kunkin taulukon (myös piilotetut) täsmälleen yhdelle sivulle, joka on juuri niin pieni tai iso, että taulukon koko sisältö mahtuu sille." #. AcPTB #: filter/uiconfig/ui/pdfgeneralpage.ui:987 @@ -1123,7 +1123,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:456 msgctxt "pdfsecuritypage|extended_tip|changecomment" msgid "Only commenting and filling in form fields is permitted." -msgstr "" +msgstr "Vain kommentointi ja lomakkeen kenttien täyttäminen sallitaan." #. uP8VW #: filter/uiconfig/ui/pdfsecuritypage.ui:467 diff -Nru libreoffice-7.3.4/translations/source/fi/fpicker/messages.po libreoffice-7.3.5/translations/source/fi/fpicker/messages.po --- libreoffice-7.3.4/translations/source/fi/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-13 13:36+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" @@ -216,55 +216,55 @@ msgstr "Muokattu" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Avaa" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Toista" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Tiedoston nimi:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Tiedoston tyyppi:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Kirjoitussuojattu" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Tallenna salasanalla" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Automaattinen tiedoston tunniste" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Muokkaa suodattimen asetuksia" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Salaa GPG-avaimella" diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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: 2021-12-20 13:20+0100\n" -"PO-Revision-Date: 2021-08-08 17:10+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.12.2\n" "X-POOTLE-MTIME: 1540152935.000000\n" #. yzYVt @@ -671,7 +671,7 @@ "par_id161599082457466\n" "help.text" msgid "String functions" -msgstr "" +msgstr "Merkkijonofunktiot" #. CGSvh #: 00000003.xhp @@ -689,7 +689,7 @@ "par_id06142017016837917\n" "help.text" msgid "VBA Time and Date functions" -msgstr "" +msgstr "VBA:n aika- ja päivämääräfunktiot" #. 7Ua2W #: 00000003.xhp @@ -698,7 +698,7 @@ "par_id06142017016837918\n" "help.text" msgid "VBA I/O functions" -msgstr "" +msgstr "VBA:n I/O-funktiot" #. 6WpBf #: 00000003.xhp @@ -707,7 +707,7 @@ "par_id06142017016837919\n" "help.text" msgid "VBA Mathematical functions" -msgstr "" +msgstr "VBA:n matemaattiset funktiot" #. prz6h #: 00000003.xhp @@ -1697,7 +1697,7 @@ "par_id31455973\n" "help.text" msgid "973 not allowed within a procedure" -msgstr "" +msgstr "973 ei sallittu proseduurissa" #. MBgDF #: 00000003.xhp @@ -1706,7 +1706,7 @@ "par_id31455974\n" "help.text" msgid "974 not allowed outside a procedure" -msgstr "" +msgstr "974 ei sallittu proseduurin ulkopuolella" #. FBV3n #: 00000003.xhp @@ -2102,7 +2102,7 @@ "par_idm1341272896\n" "help.text" msgid "MyNumber=5 'Correct'" -msgstr "" +msgstr "MyNumber=5 'Oikein'" #. BQYCs #: 01020100.xhp @@ -2111,7 +2111,7 @@ "par_idm1341267456\n" "help.text" msgid "MyNumber5=15 'Correct'" -msgstr "" +msgstr "MyNumber5=15 'Oikein'" #. Pvdzr #: 01020100.xhp @@ -2120,7 +2120,7 @@ "par_idm1341262016\n" "help.text" msgid "MyNumber_5=20 'Correct'" -msgstr "" +msgstr "MyNumber_5=20 'Oikein'" #. JfvAk #: 01020100.xhp @@ -2138,7 +2138,7 @@ "par_idm1341251088\n" "help.text" msgid "[My Number]=12 'Correct'" -msgstr "" +msgstr "[My Number]=12 'Oikein'" #. efEQG #: 01020100.xhp @@ -2147,7 +2147,7 @@ "par_idm1341245648\n" "help.text" msgid "DéjàVu=25 'Not valid, special characters are not allowed'" -msgstr "" +msgstr "DéjàVu=25 'Ei kelpaa, erikoismerkit eivät ole sallittuja'" #. 4AnyZ #: 01020100.xhp @@ -2156,7 +2156,7 @@ "par_idm1341240176\n" "help.text" msgid "5MyNumber=12 'Not valid, variable may not begin with a number'" -msgstr "" +msgstr "5MyNumber=12 'Ei kelpaa, muuttuja ei voi alkaa numerolla'" #. BxPtT #: 01020100.xhp @@ -2165,7 +2165,7 @@ "par_idm1341234704\n" "help.text" msgid "Number,Mine=12 'Not valid, punctuation marks are not allowed'" -msgstr "" +msgstr "Number,Mine=12 'Ei kelpaa, välimerkit eivät ole sallittuja'" #. yqbu6 #: 01020100.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/sdraw.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/sdraw.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/sdraw.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/sdraw.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -32,7 +32,7 @@ "hd_id3155960\n" "help.text" msgid "Welcome to the $[officename] Draw Help" -msgstr "" +msgstr "Tervetuloa $[officename] Draw'n ohjeeseen" #. 7S6g8 #: main0000.xhp @@ -194,7 +194,7 @@ "hd_id102720151746522815\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Huomautukset" #. XjZkS #: main0103.xhp @@ -905,7 +905,7 @@ "par_id3152578\n" "help.text" msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "" +msgstr "Sisältää komentoja asiakirjasi asettelun ja sisällön muotoiluun." #. eMepm #: main_format.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2021-11-20 17:38+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540152953.000000\n" #. WPTtk @@ -266,7 +266,7 @@ "par_id3150699\n" "help.text" msgid "The Help references the default settings of the program on a system that is set to defaults. Descriptions of colors, mouse actions, or other configurable items can be different for your program and system." -msgstr "Ohje viittaa ohjelman oletusasetuksiin perustilassa olevassa järjestelmässä. Värit, hiiren toiminnot ja muut muokattavat tekijät voivat olla erilaisia ohjelmaa käytettäessä." +msgstr "Ohje viittaa ohjelman oletusasetuksiin perustilassa olevassa järjestelmässä. Värit, hiiren toiminnot ja muut muokattavat tekijät voivat olla erilaisia ohjelmaa käytettäessä." #. XnEMC #: 00000100.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565339123.000000\n" #. iharT @@ -419,7 +419,7 @@ "par_id3150771\n" "help.text" msgid "Click the Start button on the Windows taskbar. Choose Settings." -msgstr "" +msgstr "Napsauta Käynnistä-painiketta Windows-tehtäväpalkissa. Valitse Asetukset." #. u7g6Z #: activex.xhp @@ -1643,7 +1643,7 @@ "par_idN10707\n" "help.text" msgid "To insert a line break in a text document table cell, press the Enter key." -msgstr "" +msgstr "Lisätäksesi rivinvaihdon tekstiasiakirjan taulukon soluun, paina Enter-näppäintä." #. Gm3yj #: breaking_lines.xhp @@ -2444,7 +2444,7 @@ "hd_id030820161800093929\n" "help.text" msgid "BAF Categories" -msgstr "" +msgstr "BAF-luokat" #. NtntD #: classification.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/help.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/help.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/shared/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/shared/help.po 2022-07-15 19:12:51.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-02 11:50+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.12.2\n" "X-POOTLE-MTIME: 1542029857.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 "Ota JavaScript käyttöön selaimessasi %PRODUCTNAMEn ohjesivujen näyttämistä varten." #. DXqYQ #: browserhelp.xhp @@ -761,7 +761,7 @@ "par_id411567800419493\n" "help.text" msgid "Searching $nice{$dbsize} documents" -msgstr "" +msgstr "Etsitään $nice{$dbsize} asiakirjasta" #. BCvZR #: browserhelp.xhp @@ -770,7 +770,7 @@ "par_id281567800425143\n" "help.text" msgid "All $nice{$msize} matches" -msgstr "" +msgstr "Kaikki $nice{$msize} osumaa" #. MwGqL #: browserhelp.xhp @@ -788,7 +788,7 @@ "par_id671567860834840\n" "help.text" msgid "No documents match your query" -msgstr "" +msgstr "Yksikään asiakirja ei vastannut kyselyäsi" #. T8xb6 #: browserhelp.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/swriter/menu.po libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.3.4/translations/source/fi/helpcontent2/source/text/swriter/menu.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/helpcontent2/source/text/swriter/menu.po 2022-07-15 19:12:51.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: 2021-04-10 15:37+0000\n" -"Last-Translator: Markus Mikkonen \n" -"Language-Team: Finnish \n" +"PO-Revision-Date: 2022-07-15 17:32+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1462679072.000000\n" #. tP5yN @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Footnote and Endnote" -msgstr "" +msgstr "Ala- ja loppuviite" #. FKmED #: insert_footnote_endnote.xhp @@ -32,7 +32,7 @@ "hd_id03042016113344773\n" "help.text" msgid "Footnote and Endnote" -msgstr "" +msgstr "Ala- ja loppuviite" #. Nn9aD #: insert_footnote_endnote.xhp @@ -86,7 +86,7 @@ "hd_id3147231\n" "help.text" msgid "Footnote or Endnote" -msgstr "" +msgstr "Ala- tai loppuviite" #. VGa5M #: insert_frame.xhp @@ -95,7 +95,7 @@ "tit\n" "help.text" msgid "Frame" -msgstr "" +msgstr "Kehys" #. BwzFp #: insert_frame.xhp @@ -104,7 +104,7 @@ "hd_id030720160601535384\n" "help.text" msgid "Frame" -msgstr "" +msgstr "Kehys" #. LZL3Y #: insert_frame.xhp @@ -131,7 +131,7 @@ "par_id030720160605261333\n" "help.text" msgid "Insert a frame by drawing its shape with the mouse cursor." -msgstr "" +msgstr "Lisää kehys piirtämällä sen muoto hiiren kohdistimella." #. pF4Ah #: insert_frame.xhp @@ -149,7 +149,7 @@ "tit\n" "help.text" msgid "Header and Footer" -msgstr "" +msgstr "Ylä- ja alatunniste" #. 4Gubu #: insert_header_footer.xhp @@ -158,7 +158,7 @@ "hd_id030720160441573285\n" "help.text" msgid "Header and Footer" -msgstr "" +msgstr "Ylä- ja alatunniste" #. RV7vJ #: insert_header_footer.xhp diff -Nru libreoffice-7.3.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-22 12:53+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565038397.000000\n" #. W5ukN @@ -594,7 +594,7 @@ "Label\n" "value.text" msgid "Freeze First Column" -msgstr "" +msgstr "Lukitse ensimmäinen sarake" #. WDbnU #: CalcCommands.xcu @@ -604,7 +604,7 @@ "Label\n" "value.text" msgid "Freeze First Row" -msgstr "" +msgstr "Lukitse ensimmäinen rivi" #. Qz2C5 #: CalcCommands.xcu @@ -814,7 +814,7 @@ "Label\n" "value.text" msgid "Sheet ~Events..." -msgstr "Laskentataulukon tapahtumat..." +msgstr "Taulukon tapahtumat..." #. QfBmZ #: CalcCommands.xcu @@ -2084,7 +2084,7 @@ "Label\n" "value.text" msgid "~Headers and Footers..." -msgstr "Ylätunniste ja alatunniste..." +msgstr "Ylä- ja alatunnisteet..." #. 9wsip #: CalcCommands.xcu @@ -7994,7 +7994,7 @@ "Label\n" "value.text" msgid "Rename Page..." -msgstr "" +msgstr "Nimeä sivu uudelleen..." #. gCyCR #: DrawImpressCommands.xcu @@ -8004,7 +8004,7 @@ "Label\n" "value.text" msgid "Rename Slide..." -msgstr "" +msgstr "Nimeä dia uudelleen..." #. EoR9S #: DrawImpressCommands.xcu @@ -8014,7 +8014,7 @@ "Label\n" "value.text" msgid "~Rename Layer" -msgstr "Muuta kerroksen nimeä" +msgstr "Nimeä kerros uudelleen" #. SZEUF #: DrawImpressCommands.xcu @@ -8244,7 +8244,7 @@ "Label\n" "value.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Liimapiste on suhteellinen" #. XbDqq #: DrawImpressCommands.xcu @@ -8254,7 +8254,7 @@ "Label\n" "value.text" msgid "Exit Direction" -msgstr "Poistumissuunta" +msgstr "Kiinnityssuunta" #. qkKD2 #: DrawImpressCommands.xcu @@ -8264,7 +8264,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Center" -msgstr "" +msgstr "Liimapiste vaakasuunnassa keskellä" #. JxbE3 #: DrawImpressCommands.xcu @@ -8274,7 +8274,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Liimapiste vaakasuunnassa vasemmalla" #. QrYe6 #: DrawImpressCommands.xcu @@ -8284,7 +8284,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Liimapiste vaakasuunnassa oikealla" #. vAMar #: DrawImpressCommands.xcu @@ -8294,7 +8294,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Center" -msgstr "" +msgstr "Liimapiste pystysuunnassa keskellä" #. Fu3Kk #: DrawImpressCommands.xcu @@ -8304,7 +8304,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Liimapiste pystysuunnassa ylhäällä" #. rBrUL #: DrawImpressCommands.xcu @@ -8314,7 +8314,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Liimapiste pystysuunnassa alhaalla" #. NNo3V #: DrawImpressCommands.xcu @@ -9094,7 +9094,7 @@ "Label\n" "value.text" msgid "Comb~ine" -msgstr "~Nivo" +msgstr "Yhdistä" #. xauJR #: DrawImpressCommands.xcu @@ -9494,7 +9494,7 @@ "Label\n" "value.text" msgid "Spl~it" -msgstr "Pura nivonta" +msgstr "Jaa osiin" #. LH3FP #: DrawImpressCommands.xcu @@ -10464,7 +10464,7 @@ "Label\n" "value.text" msgid "~Header and Footer..." -msgstr "~Ylätunniste ja alatunniste..." +msgstr "Ylä- ja alatunniste..." #. WESiK #: DrawImpressCommands.xcu @@ -20547,7 +20547,7 @@ "Label\n" "value.text" msgid "Line Cap Style" -msgstr "Viivanpäiden tyyli" +msgstr "Viivanpäätyyli" #. XqE8X #: GenericCommands.xcu @@ -21167,7 +21167,7 @@ "Label\n" "value.text" msgid "Hide Subpoints" -msgstr "Piilota alipisteet" +msgstr "Piilota alakohdat" #. F3rQp #: GenericCommands.xcu @@ -21187,7 +21187,7 @@ "Label\n" "value.text" msgid "Show Subpoints" -msgstr "Näytä alipisteet" +msgstr "Näytä alakohdat" #. UNMEA #: GenericCommands.xcu @@ -23637,7 +23637,7 @@ "ContextLabel\n" "value.text" msgid "Export as E~PUB..." -msgstr "Vie EPUB-asiakirjana..." +msgstr "Vie EPUB-muodossa..." #. CMyAs #: GenericCommands.xcu @@ -23647,7 +23647,7 @@ "TooltipLabel\n" "value.text" msgid "Export as EPUB" -msgstr "Vie EPUB-asiakirjana" +msgstr "Vie EPUB-muodossa" #. pQGEQ #: GenericCommands.xcu @@ -23667,7 +23667,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as EPUB" -msgstr "Vie suoraan EPUB-asiakirjana" +msgstr "Vie suoraan EPUB-muodossa" #. CMp4K #: GenericCommands.xcu @@ -23677,7 +23677,7 @@ "TooltipLabel\n" "value.text" msgid "Export as EPUB" -msgstr "Vie EPUB-asiakirjana" +msgstr "Vie EPUB-muodossa" #. EdjwU #: GenericCommands.xcu @@ -31469,7 +31469,7 @@ "Label\n" "value.text" msgid "Outline to ~Presentation" -msgstr "Jäsennys ~esitykselle" +msgstr "Jäsennys esitykseen" #. 4wZZS #: WriterCommands.xcu @@ -34399,7 +34399,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "Taulukon rajat" +msgstr "Taulukoiden rajat" #. cGGKB #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/fi/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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: 2021-02-05 18:59+0100\n" -"PO-Revision-Date: 2022-01-18 17:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564951649.000000\n" #. HhMVS @@ -2184,7 +2184,7 @@ "Right\n" "value.text" msgid "Switches monitors" -msgstr "Vaihtaa näytöt" +msgstr "Vaihtaa näyttöjä" #. EMh4x #: PresenterScreen.xcu diff -Nru libreoffice-7.3.4/translations/source/fi/sc/messages.po libreoffice-7.3.5/translations/source/fi/sc/messages.po --- libreoffice-7.3.4/translations/source/fi/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565038740.000000\n" #. kBovX @@ -15045,7 +15045,7 @@ #: sc/inc/scfuncs.hrc:3691 msgctxt "SC_OPCODE_UPPER" msgid "The text in which lower case letters are to be converted to capitals." -msgstr "Teksti, jonka pienet kirjaimet muutetaan isoiksi kirjaimiksi." +msgstr "Teksti, jonka pienet kirjaimet muunnetaan isoiksi kirjaimiksi." #. CqaAp #: sc/inc/scfuncs.hrc:3697 @@ -15063,7 +15063,7 @@ #: sc/inc/scfuncs.hrc:3699 msgctxt "SC_OPCODE_LOWER" msgid "The text in which capitals are converted to lower case letters." -msgstr "Teksti, jonka isot kirjaimet muutetaan pieniksi kirjaimiksi." +msgstr "Teksti, jonka isot kirjaimet muunnetaan pieniksi kirjaimiksi." #. tCABh #: sc/inc/scfuncs.hrc:3705 @@ -16934,7 +16934,7 @@ #: sc/inc/strings.hrc:94 msgctxt "STR_ACC_DOC_NAME" msgid "Document view" -msgstr "Asiakirjan näyttö" +msgstr "Asiakirjanäkymä" #. NFaas #: sc/inc/strings.hrc:95 @@ -18097,7 +18097,7 @@ #: sc/inc/strings.hrc:304 msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE" msgid "Input range is invalid." -msgstr "" +msgstr "Lähdealue ei kelpaa." #. rTFFF #: sc/inc/strings.hrc:305 @@ -18446,7 +18446,7 @@ #: sc/inc/strings.hrc:369 msgctxt "STR_NO_NAMED_RANGES_AVAILABLE" msgid "No named ranges available in the selected document" -msgstr "" +msgstr "Valitussa asiakirjassa ei ole nimettyjä alueita" #. hnAZx #: sc/inc/strings.hrc:370 @@ -18848,7 +18848,7 @@ #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:8 msgctxt "allheaderfooterdialog|AllHeaderFooterDialog" msgid "Headers/Footers" -msgstr "Ylätunnisteet/Alatunnisteet" +msgstr "Ylä/alatunnisteet" #. 5TTBG #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:139 @@ -21683,19 +21683,19 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18 msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog" msgid "Define Database Range" -msgstr "Tietokannan alueen määritys" +msgstr "Määritä tietokanta-alue" #. CyzxS #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:44 msgctxt "definedatabaserangedialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Tallentaa kaikki muutokset ja sulkee valintaikkunan." #. djkZd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63 msgctxt "definedatabaserangedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Sulkee valintaikkunan ja hylkää kaikki muutokset." #. RMghE #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:171 @@ -23087,7 +23087,7 @@ #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:104 msgctxt "fourieranalysisdialog|input-range-label" msgid "Input range:" -msgstr "" +msgstr "Lähdealue:" #. ZkLNa #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:144 @@ -23995,7 +23995,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:134 msgctxt "insertsheet|after" msgid "_After current sheet" -msgstr "Nykyisen taulukon _perään" +msgstr "Nykyisen taulukon jälkeen" #. uiKdA #: sc/uiconfig/scalc/ui/insertsheet.ui:143 @@ -24037,7 +24037,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:265 msgctxt "insertsheet|extended_tip|countnf" msgid "Specifies the number of sheets to be created." -msgstr "" +msgstr "Määrittää luotavien taulukoiden määrän." #. dxNfa #: sc/uiconfig/scalc/ui/insertsheet.ui:281 @@ -24049,7 +24049,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:285 msgctxt "insertsheet|extended_tip|nameed" msgid "Specifies the name of the new sheet." -msgstr "" +msgstr "Määrittää uuden taulukon nimen." #. NmbDF #: sc/uiconfig/scalc/ui/insertsheet.ui:318 @@ -24157,7 +24157,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:44 msgctxt "managenamesdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Tallentaa kaikki muutokset ja sulkee valintaikkunan." #. ftVCr #: sc/uiconfig/scalc/ui/managenamesdialog.ui:63 @@ -24403,7 +24403,7 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:122 msgctxt "movecopysheet|extended_tip|copy" msgid "Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved." -msgstr "" +msgstr "Määrittää taulukon kopioitavaksi. Jos asetusta ei ole valittu, taulukko siirretään." #. Cf9Po #: sc/uiconfig/scalc/ui/movecopysheet.ui:138 @@ -24547,7 +24547,7 @@ #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:359 msgctxt "movingaveragedialog|extended_tip|MovingAverageDialog" msgid "Calculates the moving average of a time series" -msgstr "" +msgstr "Laskee aikasarjan liukuvan keskiarvon" #. EME6W #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:8 @@ -24631,7 +24631,7 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:280 msgctxt "multipleoperationsdialog|extended_tip|MultipleOperationsDialog" msgid "Applies the same formula to different cells, but with different parameter values." -msgstr "" +msgstr "Käyttää samaa kaavaa eri soluihin, eri parametrien arvoilla." #. jbFci #: sc/uiconfig/scalc/ui/namerangesdialog.ui:16 @@ -25029,7 +25029,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:8573 msgctxt "CalcNotebookbar|DataLabel" msgid "~Data" -msgstr "Tie_dot" +msgstr "Tie~dot" #. CBEHA #: sc/uiconfig/scalc/ui/notebookbar.ui:9376 @@ -25261,97 +25261,97 @@ msgstr "~Näytä" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ku_va" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Kuva" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Piirrä" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Piirrä" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekti" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Objekti" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Tulosta" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "T~ulosta" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Lomak_e" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Lomak~e" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Lisäosa" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Lisäosa" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ty_ökalut" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "T~yökalut" @@ -25710,139 +25710,139 @@ msgstr "Ku_va" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Järjestä" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Väri" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Ruudukko" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Kieli" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Ta_rkista" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Huomautukset" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Vertaile" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Näytä" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Piirros" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Muokkaa" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Järjestä" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Näytä" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Ryhmä" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fontti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Tasaus" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Näytä" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Lisää" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Kehys" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Järjestä" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Ruudukko" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Näytä" @@ -27479,7 +27479,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:732 msgctxt "pastespecial|extended_tip|subtract" msgid "Subtracts the values in the clipboard cells from the values in the target cells." -msgstr "" +msgstr "Vähentää leikepöydällä olevien solujen arvot kohdesolujen arvoista." #. zdDUB #: sc/uiconfig/scalc/ui/pastespecial.ui:744 @@ -28217,43 +28217,43 @@ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:293 msgctxt "protectsheetdlg|protected" msgid "Select protected cells" -msgstr "Valitse suojatut solut" +msgstr "Valita suojattuja soluja" #. qQhAG #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:305 msgctxt "protectsheetdlg|delete-columns" msgid "Delete columns" -msgstr "Poista sarakkeita" +msgstr "Poistaa sarakkeita" #. fsQEB #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:317 msgctxt "protectsheetdlg|delete-rows" msgid "Delete rows" -msgstr "Poista rivejä" +msgstr "Poistaa rivejä" #. cVdms #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:329 msgctxt "protectsheetdlg|insert-columns" msgid "Insert columns" -msgstr "Lisää sarakkeita" +msgstr "Lisätä sarakkeita" #. Arv5t #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:341 msgctxt "protectsheetdlg|insert-rows" msgid "Insert rows" -msgstr "Lisää rivejä" +msgstr "Lisätä rivejä" #. y93cJ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:353 msgctxt "protectsheetdlg|unprotected" msgid "Select unprotected cells" -msgstr "Valitse suojaamattomat solut" +msgstr "Valita suojaamattomia soluja" #. MTnMc #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:394 msgctxt "protectsheetdlg|extended_tip|ProtectSheetDialog" msgid "Protects the cells in the current sheet from being modified." -msgstr "" +msgstr "Suojaa käsiteltävän taulukon solut muutoksilta." #. 3n2mh #: sc/uiconfig/scalc/ui/queryrunstreamscriptdialog.ui:13 @@ -29347,7 +29347,7 @@ #: sc/uiconfig/scalc/ui/selectsource.ui:230 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 "Avaa valintaikkunan, jossa voi valita pivot-taulukon lähteen ja luoda taulukon." #. ukBzT #: sc/uiconfig/scalc/ui/sharedfirstfooterdialog.ui:8 @@ -29803,7 +29803,7 @@ #: sc/uiconfig/scalc/ui/showchangesdialog.ui:149 msgctxt "showchangesdialog|extended_tip|showrejected" msgid "Shows or hides the changes that were rejected." -msgstr "" +msgstr "Näyttää tai piilottaa hylätyt muutokset." #. PHqfD #: sc/uiconfig/scalc/ui/showchangesdialog.ui:178 diff -Nru libreoffice-7.3.4/translations/source/fi/sd/messages.po libreoffice-7.3.5/translations/source/fi/sd/messages.po --- libreoffice-7.3.4/translations/source/fi/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564952922.000000\n" #. WDjkB @@ -3385,7 +3385,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:266 msgctxt "dlgsnap|vert" msgid "_Vertical" -msgstr "_Pystysuora" +msgstr "Pysty" #. 7bAB7 #: sd/uiconfig/sdraw/ui/dlgsnap.ui:275 @@ -3397,7 +3397,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:286 msgctxt "dlgsnap|horz" msgid "Hori_zontal" -msgstr "Vaakasuora" +msgstr "Vaaka" #. GMavs #: sd/uiconfig/sdraw/ui/dlgsnap.ui:295 @@ -4185,109 +4185,109 @@ msgstr "T~aulukko" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Kuva" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Kuva" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Piirrä" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Piirrä" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekti" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekti" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Lomak_e" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Lomak~e" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Pohja" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Pohja" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Lisäosa" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Lisäosa" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "T_yökalut" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "T~yökalut" @@ -5421,7 +5421,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:73 msgctxt "customslideshows|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Tallentaa kaikki muutokset ja sulkee valintaikkunan." #. BvVBK #: sd/uiconfig/simpress/ui/customslideshows.ui:137 @@ -5974,7 +5974,7 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:8 msgctxt "headerfooterdialog|HeaderFooterDialog" msgid "Header and Footer" -msgstr "Ylätunniste ja alatunniste" +msgstr "Ylä- ja alatunniste" #. HmAnf #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24 @@ -7078,109 +7078,109 @@ msgstr "T~aulukko" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Kuva" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Kuva" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Piirrä" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Piirrä" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekti" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objekti" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Lomak_e" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Lomak~e" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Pohja" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Pohja" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Lisäosa" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Lisäosa" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "T_yökalut" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "T~yökalut" diff -Nru libreoffice-7.3.4/translations/source/fi/sfx2/classification.po libreoffice-7.3.5/translations/source/fi/sfx2/classification.po --- libreoffice-7.3.4/translations/source/fi/sfx2/classification.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/sfx2/classification.po 2022-07-15 19:12:51.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: 2021-07-01 17:54+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-06-15 20:57+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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. TEpY4 @@ -71,7 +73,7 @@ "BusinessAuthorizationCategory_Conf\n" "LngText.text" msgid "Confidential" -msgstr "" +msgstr "Luottamuksellinen" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. vDZtm @@ -101,7 +103,7 @@ "BAC_VisualMarkingPart_Conf_Watermark\n" "LngText.text" msgid "Confidential" -msgstr "" +msgstr "Luottamuksellinen" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. uajcr diff -Nru libreoffice-7.3.4/translations/source/fi/sfx2/messages.po libreoffice-7.3.5/translations/source/fi/sfx2/messages.po --- libreoffice-7.3.4/translations/source/fi/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564247041.000000\n" #. bHbFE @@ -80,7 +80,7 @@ #: include/sfx2/strings.hrc:35 msgctxt "STR_SFX_RENAME" msgid "~Rename" -msgstr "" +msgstr "Nimeä uudelleen" #. Gnhk4 #: include/sfx2/strings.hrc:36 @@ -98,13 +98,13 @@ #: include/sfx2/strings.hrc:38 msgctxt "STR_CATEGORY_RENAME" msgid "Ren~ame Category" -msgstr "" +msgstr "Nimeä luokka uudelleen" #. Ys9z4 #: include/sfx2/strings.hrc:39 msgctxt "STR_RENAME_TEMPLATE" msgid "Enter new template name:" -msgstr "" +msgstr "Anna mallille uusi nimi:" #. TVTsi #: include/sfx2/strings.hrc:40 @@ -1979,19 +1979,19 @@ #: include/sfx2/strings.hrc:358 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "Lisäosat" #. idGvM #: include/sfx2/strings.hrc:359 msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE" msgid "Rename" -msgstr "" +msgstr "Nimeä uudelleen" #. EyjE3 #: include/sfx2/strings.hrc:360 msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY" msgid "Rename Category" -msgstr "" +msgstr "Nimeä luokka uudelleen" #. T79Eb #: include/sfx2/strings.hrc:361 diff -Nru libreoffice-7.3.4/translations/source/fi/svtools/messages.po libreoffice-7.3.5/translations/source/fi/svtools/messages.po --- libreoffice-7.3.4/translations/source/fi/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2021-12-21 11:44+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564951602.000000\n" #. fLdeV @@ -3739,7 +3739,7 @@ #: svtools/inc/langtab.hrc:224 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tibetan (PR China)" -msgstr "tiibet (Kiina)" +msgstr "tiibet (Kiinan kansantasavalta)" #. DpbUS #: svtools/inc/langtab.hrc:225 @@ -5027,13 +5027,13 @@ #: svtools/inc/langtab.hrc:438 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Latin" -msgstr "" +msgstr "interslaavi (latinalainen)" #. DZBAE #: svtools/inc/langtab.hrc:439 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Cyrillic" -msgstr "" +msgstr "interslaavi (kyrillinen)" #. fXSja #: svtools/uiconfig/ui/addresstemplatedialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/fi/svx/messages.po libreoffice-7.3.5/translations/source/fi/svx/messages.po --- libreoffice-7.3.4/translations/source/fi/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564950000.000000\n" #. 3GkZj @@ -900,19 +900,19 @@ #: include/svx/strings.hrc:171 msgctxt "STR_EditSetPointsSmooth" msgid "Modify bézier properties of %1" -msgstr "Muuta kohteen %1 bézier-ominaisuuksia" +msgstr "Muuta kohteen %1 Bézier-ominaisuuksia" #. CzVVY #: include/svx/strings.hrc:172 msgctxt "STR_EditSetSegmentsKind" msgid "Modify bézier properties of %1" -msgstr "Muuta kohteen %1 bézier-ominaisuuksia" +msgstr "Muuta kohteen %1 Bézier-ominaisuuksia" #. 5KcDa #: include/svx/strings.hrc:173 msgctxt "STR_EditSetGlueEscDir" msgid "Set exit direction for %1" -msgstr "Määritä kohteen %1 poistumissuunta" +msgstr "Aseta kohteen %1 kiinnityssuunta" #. Gbbmq #: include/svx/strings.hrc:174 @@ -8066,13 +8066,13 @@ #: include/svx/strings.hrc:1454 msgctxt "RID_SUBSETMAP" msgid "Cyrillic" -msgstr "Kyrillisiä (perusosa)" +msgstr "kyrillinen" #. DQgLS #: include/svx/strings.hrc:1455 msgctxt "RID_SUBSETMAP" msgid "Armenian" -msgstr "Armenia" +msgstr "armenialainen" #. kXEQY #: include/svx/strings.hrc:1456 @@ -8102,67 +8102,67 @@ #: include/svx/strings.hrc:1460 msgctxt "RID_SUBSETMAP" msgid "Devanagari" -msgstr "Devanagari" +msgstr "devanagari" #. EfVnG #: include/svx/strings.hrc:1461 msgctxt "RID_SUBSETMAP" msgid "Bengali" -msgstr "Bengali" +msgstr "bengalilainen" #. iWzLc #: include/svx/strings.hrc:1462 msgctxt "RID_SUBSETMAP" msgid "Gurmukhi" -msgstr "Gurmukhi" +msgstr "gurmukhi" #. omacG #: include/svx/strings.hrc:1463 msgctxt "RID_SUBSETMAP" msgid "Gujarati" -msgstr "Gudžarati" +msgstr "gudžaratilainen" #. Cdwzw #: include/svx/strings.hrc:1464 msgctxt "RID_SUBSETMAP" msgid "Odia" -msgstr "Orija" +msgstr "orijalainen" #. BhEGN #: include/svx/strings.hrc:1465 msgctxt "RID_SUBSETMAP" msgid "Tamil" -msgstr "Tamili" +msgstr "tamililainen" #. 6YkEo #: include/svx/strings.hrc:1466 msgctxt "RID_SUBSETMAP" msgid "Telugu" -msgstr "Telugu" +msgstr "telugulainen" #. J5qn4 #: include/svx/strings.hrc:1467 msgctxt "RID_SUBSETMAP" msgid "Kannada" -msgstr "Kannada" +msgstr "kannadalainen" #. 4UEFU #: include/svx/strings.hrc:1468 msgctxt "RID_SUBSETMAP" msgid "Malayalam" -msgstr "Malajalam" +msgstr "malajalamilainen" #. C5yzo #: include/svx/strings.hrc:1469 msgctxt "RID_SUBSETMAP" msgid "Thai" -msgstr "Thai" +msgstr "thailainen" #. EvjbD #: include/svx/strings.hrc:1470 msgctxt "RID_SUBSETMAP" msgid "Lao" -msgstr "Lao" +msgstr "laolainen" #. HqFTh #: include/svx/strings.hrc:1471 @@ -8180,7 +8180,7 @@ #: include/svx/strings.hrc:1473 msgctxt "RID_SUBSETMAP" msgid "Hangul Jamo" -msgstr "Hangul jamo" +msgstr "korean hangulin jamo-elementit" #. gMEFL #: include/svx/strings.hrc:1474 @@ -8210,7 +8210,7 @@ #: include/svx/strings.hrc:1478 msgctxt "RID_SUBSETMAP" msgid "Currency Symbols" -msgstr "Valuuttamerkkejä" +msgstr "valuuttamerkit" #. jzA5i #: include/svx/strings.hrc:1479 @@ -8222,7 +8222,7 @@ #: include/svx/strings.hrc:1480 msgctxt "RID_SUBSETMAP" msgid "Letterlike Symbols" -msgstr "Kirjainsymboleita" +msgstr "kirjainsymbolit" #. cDkEd #: include/svx/strings.hrc:1481 @@ -8294,7 +8294,7 @@ #: include/svx/strings.hrc:1492 msgctxt "RID_SUBSETMAP" msgid "Dingbats" -msgstr "Dingbats-leikkeet" +msgstr "ornamentit" #. Cth4P #: include/svx/strings.hrc:1493 @@ -8306,19 +8306,19 @@ #: include/svx/strings.hrc:1494 msgctxt "RID_SUBSETMAP" msgid "Hiragana" -msgstr "Hiragana" +msgstr "hiragana" #. i2Cdr #: include/svx/strings.hrc:1495 msgctxt "RID_SUBSETMAP" msgid "Katakana" -msgstr "Katakana" +msgstr "katakana" #. 9YYLD #: include/svx/strings.hrc:1496 msgctxt "RID_SUBSETMAP" msgid "Bopomofo" -msgstr "Bopomofo" +msgstr "bopomofo" #. F9UFG #: include/svx/strings.hrc:1497 @@ -8348,7 +8348,7 @@ #: include/svx/strings.hrc:1501 msgctxt "RID_SUBSETMAP" msgid "Hangul" -msgstr "Hangul" +msgstr "hangul" #. XzS6D #: include/svx/strings.hrc:1502 @@ -8438,19 +8438,19 @@ #: include/svx/strings.hrc:1516 msgctxt "RID_SUBSETMAP" msgid "Old Italic" -msgstr "Vanhoja italialaisia kirjainmerkkejä" +msgstr "muinaisitalialainen" #. wtKAB #: include/svx/strings.hrc:1517 msgctxt "RID_SUBSETMAP" msgid "Gothic" -msgstr "Goottilaisia merkkejä" +msgstr "goottilainen" #. GPFqC #: include/svx/strings.hrc:1518 msgctxt "RID_SUBSETMAP" msgid "Deseret" -msgstr "Deseret-merkkejä" +msgstr "deseret" #. 7AovD #: include/svx/strings.hrc:1519 @@ -8462,7 +8462,7 @@ #: include/svx/strings.hrc:1520 msgctxt "RID_SUBSETMAP" msgid "Musical Symbols" -msgstr "Musiikkisymboleita" +msgstr "musiikkisymbolit" #. YzBDD #: include/svx/strings.hrc:1521 @@ -8534,7 +8534,7 @@ #: include/svx/strings.hrc:1532 msgctxt "RID_SUBSETMAP" msgid "Tai Le" -msgstr "Tai le" +msgstr "tailelainen" #. nujxa #: include/svx/strings.hrc:1533 @@ -8582,19 +8582,19 @@ #: include/svx/strings.hrc:1540 msgctxt "RID_SUBSETMAP" msgid "Ugaritic" -msgstr "Ugariti" +msgstr "ugaritilainen" #. nBtk5 #: include/svx/strings.hrc:1541 msgctxt "RID_SUBSETMAP" msgid "Shavian" -msgstr "Shawilaisia kirjaimia" +msgstr "shaw’lainen" #. vvMNk #: include/svx/strings.hrc:1542 msgctxt "RID_SUBSETMAP" msgid "Osmanya" -msgstr "Osmanya" +msgstr "osmanjalainen" #. aiySp #: include/svx/strings.hrc:1543 @@ -8606,55 +8606,55 @@ #: include/svx/strings.hrc:1544 msgctxt "RID_SUBSETMAP" msgid "Tibetan" -msgstr "Tiibet" +msgstr "tiibetiläinen" #. tRBTP #: include/svx/strings.hrc:1545 msgctxt "RID_SUBSETMAP" msgid "Myanmar" -msgstr "Myanmar" +msgstr "burmalainen" #. 8sgGF #: include/svx/strings.hrc:1546 msgctxt "RID_SUBSETMAP" msgid "Khmer" -msgstr "Khmer" +msgstr "khmeriläinen" #. CdXvH #: include/svx/strings.hrc:1547 msgctxt "RID_SUBSETMAP" msgid "Ogham" -msgstr "Ogham" +msgstr "ogam" #. jFWRQ #: include/svx/strings.hrc:1548 msgctxt "RID_SUBSETMAP" msgid "Runic" -msgstr "Riimukirjoitus" +msgstr "riimukirjoitus" #. jhzoc #: include/svx/strings.hrc:1549 msgctxt "RID_SUBSETMAP" msgid "Syriac" -msgstr "Syyria" +msgstr "syyrialainen" #. B66QG #: include/svx/strings.hrc:1550 msgctxt "RID_SUBSETMAP" msgid "Thaana" -msgstr "Thaana" +msgstr "thaana" #. j8cuG #: include/svx/strings.hrc:1551 msgctxt "RID_SUBSETMAP" msgid "Ethiopic" -msgstr "Etiopia" +msgstr "etiopialainen" #. AE5wq #: include/svx/strings.hrc:1552 msgctxt "RID_SUBSETMAP" msgid "Cherokee" -msgstr "Cherokee" +msgstr "cherokeelainen" #. 9mgNF #: include/svx/strings.hrc:1553 @@ -8666,7 +8666,7 @@ #: include/svx/strings.hrc:1554 msgctxt "RID_SUBSETMAP" msgid "Mongolian" -msgstr "Mongoli" +msgstr "mongolilainen" #. XnzyB #: include/svx/strings.hrc:1555 @@ -8720,31 +8720,31 @@ #: include/svx/strings.hrc:1563 msgctxt "RID_SUBSETMAP" msgid "Tagalog" -msgstr "Tagalog" +msgstr "tagalogilainen" #. BVieL #: include/svx/strings.hrc:1564 msgctxt "RID_SUBSETMAP" msgid "Hanunoo" -msgstr "Hanunoo" +msgstr "hanunoolainen" #. DwAEz #: include/svx/strings.hrc:1565 msgctxt "RID_SUBSETMAP" msgid "Tagbanwa" -msgstr "Tagbanwa" +msgstr "tagbanwalainen" #. 3GDP5 #: include/svx/strings.hrc:1566 msgctxt "RID_SUBSETMAP" msgid "Buhid" -msgstr "Buhid" +msgstr "buhidilainen" #. BfGBm #: include/svx/strings.hrc:1567 msgctxt "RID_SUBSETMAP" msgid "Kanbun" -msgstr "Kanbun" +msgstr "kanbun" #. cL7Vo #: include/svx/strings.hrc:1568 @@ -8804,7 +8804,7 @@ #: include/svx/strings.hrc:1577 msgctxt "RID_SUBSETMAP" msgid "Buginese" -msgstr "Bugi" +msgstr "bugi" #. zDaXa #: include/svx/strings.hrc:1578 @@ -8840,13 +8840,13 @@ #: include/svx/strings.hrc:1583 msgctxt "RID_SUBSETMAP" msgid "Glagolitic" -msgstr "Glagoliittisia kirjaimia" +msgstr "glagoliittinen" #. zKCVG #: include/svx/strings.hrc:1584 msgctxt "RID_SUBSETMAP" msgid "Kharoshthi" -msgstr "Kharoshthi" +msgstr "kharosthi" #. U8zrU #: include/svx/strings.hrc:1585 @@ -8858,13 +8858,13 @@ #: include/svx/strings.hrc:1586 msgctxt "RID_SUBSETMAP" msgid "New Tai Lue" -msgstr "Uusi Tai lue" +msgstr "uusi tailuelainen" #. J4KdA #: include/svx/strings.hrc:1587 msgctxt "RID_SUBSETMAP" msgid "Old Persian" -msgstr "Muinaispersia" +msgstr "muinaispersialainen" #. eGPjC #: include/svx/strings.hrc:1588 @@ -8882,13 +8882,13 @@ #: include/svx/strings.hrc:1590 msgctxt "RID_SUBSETMAP" msgid "Syloti Nagri" -msgstr "Syloti Nagri" +msgstr "syloti nagri" #. Qrowh #: include/svx/strings.hrc:1591 msgctxt "RID_SUBSETMAP" msgid "Tifinagh" -msgstr "Tifinagh" +msgstr "tifinagh" #. aZKS5 #: include/svx/strings.hrc:1592 @@ -8906,7 +8906,7 @@ #: include/svx/strings.hrc:1594 msgctxt "RID_SUBSETMAP" msgid "Balinese" -msgstr "Bali" +msgstr "balilainen" #. 428ER #: include/svx/strings.hrc:1595 @@ -8924,13 +8924,13 @@ #: include/svx/strings.hrc:1597 msgctxt "RID_SUBSETMAP" msgid "Phags-Pa" -msgstr "Phags-pa" +msgstr "phags-pa" #. V6CsB #: include/svx/strings.hrc:1598 msgctxt "RID_SUBSETMAP" msgid "Phoenician" -msgstr "Foinikia" +msgstr "foinikialainen" #. GNBwz #: include/svx/strings.hrc:1599 @@ -8954,19 +8954,19 @@ #: include/svx/strings.hrc:1602 msgctxt "RID_SUBSETMAP" msgid "Sundanese" -msgstr "Sunda" +msgstr "sundalainen" #. WrXXX #: include/svx/strings.hrc:1603 msgctxt "RID_SUBSETMAP" msgid "Lepcha" -msgstr "Lepcha" +msgstr "lepchalainen" #. FhhAQ #: include/svx/strings.hrc:1604 msgctxt "RID_SUBSETMAP" msgid "Ol Chiki" -msgstr "Ol Chiki" +msgstr "ol chiki" #. eHvUh #: include/svx/strings.hrc:1605 @@ -8978,7 +8978,7 @@ #: include/svx/strings.hrc:1606 msgctxt "RID_SUBSETMAP" msgid "Vai" -msgstr "Vai" +msgstr "vailainen" #. pBASG #: include/svx/strings.hrc:1607 @@ -8990,25 +8990,25 @@ #: include/svx/strings.hrc:1608 msgctxt "RID_SUBSETMAP" msgid "Saurashtra" -msgstr "Saurashtra" +msgstr "saurashtra" #. 6pufg #: include/svx/strings.hrc:1609 msgctxt "RID_SUBSETMAP" msgid "Kayah Li" -msgstr "Kayah Li" +msgstr "kayah li" #. bmFny #: include/svx/strings.hrc:1610 msgctxt "RID_SUBSETMAP" msgid "Rejang" -msgstr "Rejang" +msgstr "rejang" #. EaXay #: include/svx/strings.hrc:1611 msgctxt "RID_SUBSETMAP" msgid "Cham" -msgstr "Cham" +msgstr "tšamilainen" #. qYaAV #: include/svx/strings.hrc:1612 @@ -9026,19 +9026,19 @@ #: include/svx/strings.hrc:1614 msgctxt "RID_SUBSETMAP" msgid "Lycian" -msgstr "Lyykia" +msgstr "lyykialainen" #. EYLa8 #: include/svx/strings.hrc:1615 msgctxt "RID_SUBSETMAP" msgid "Carian" -msgstr "Kaaria" +msgstr "kaarialainen" #. TPN6m #: include/svx/strings.hrc:1616 msgctxt "RID_SUBSETMAP" msgid "Lydian" -msgstr "Lyydia" +msgstr "lyydialainen" #. G5GLd #: include/svx/strings.hrc:1617 @@ -9056,7 +9056,7 @@ #: include/svx/strings.hrc:1619 msgctxt "RID_SUBSETMAP" msgid "Samaritan" -msgstr "Samaria" +msgstr "samarianaramealainen" #. feZ2Q #: include/svx/strings.hrc:1620 @@ -9086,7 +9086,7 @@ #: include/svx/strings.hrc:1624 msgctxt "RID_SUBSETMAP" msgid "Bamum" -msgstr "Bamum" +msgstr "bamum" #. CQMqK #: include/svx/strings.hrc:1625 @@ -9110,7 +9110,7 @@ #: include/svx/strings.hrc:1628 msgctxt "RID_SUBSETMAP" msgid "Javanese" -msgstr "Jaava" +msgstr "jaavalainen" #. upBjC #: include/svx/strings.hrc:1629 @@ -9122,7 +9122,7 @@ #: include/svx/strings.hrc:1630 msgctxt "RID_SUBSETMAP" msgid "Tai Viet" -msgstr "Tai Viet" +msgstr "tai viet" #. HGVSu #: include/svx/strings.hrc:1631 @@ -9140,31 +9140,31 @@ #: include/svx/strings.hrc:1633 msgctxt "RID_SUBSETMAP" msgid "Imperial Aramaic" -msgstr "Valtakunnan aramea" +msgstr "valtakunnanaramealainen" #. 7E6G8 #: include/svx/strings.hrc:1634 msgctxt "RID_SUBSETMAP" msgid "Old South Arabian" -msgstr "Vanha eteläarabia" +msgstr "muinaiseteläarabialainen" #. Ab3wu #: include/svx/strings.hrc:1635 msgctxt "RID_SUBSETMAP" msgid "Avestan" -msgstr "Avesta" +msgstr "avestalainen" #. 5gN8e #: include/svx/strings.hrc:1636 msgctxt "RID_SUBSETMAP" msgid "Inscriptional Parthian" -msgstr "Parthian kaiverrusmerkkejä" +msgstr "piirtokirjoitusparthialainen" #. D7rcV #: include/svx/strings.hrc:1637 msgctxt "RID_SUBSETMAP" msgid "Inscriptional Pahlavi" -msgstr "Pahlavin kaiverrusmerkkejä" +msgstr "piirtokirjoituspahlavilainen" #. d44Dq #: include/svx/strings.hrc:1638 @@ -9182,13 +9182,13 @@ #: include/svx/strings.hrc:1640 msgctxt "RID_SUBSETMAP" msgid "Kaithi" -msgstr "Kaithi" +msgstr "kaithi" #. Swfzy #: include/svx/strings.hrc:1641 msgctxt "RID_SUBSETMAP" msgid "Egyptian Hieroglyphs" -msgstr "Egyptin hieroglyfejä" +msgstr "egyptiläiset hieroglyfit" #. bMYVC #: include/svx/strings.hrc:1642 @@ -9212,7 +9212,7 @@ #: include/svx/strings.hrc:1645 msgctxt "RID_SUBSETMAP" msgid "Batak" -msgstr "Batak" +msgstr "batakilainen" #. 9SrgK #: include/svx/strings.hrc:1646 @@ -9224,7 +9224,7 @@ #: include/svx/strings.hrc:1647 msgctxt "RID_SUBSETMAP" msgid "Brahmi" -msgstr "Brahmi" +msgstr "brahmi" #. n4oND #: include/svx/strings.hrc:1648 @@ -9284,7 +9284,7 @@ #: include/svx/strings.hrc:1657 msgctxt "RID_SUBSETMAP" msgid "Chakma" -msgstr "Chakma" +msgstr "chakmalainen" #. z3gG4 #: include/svx/strings.hrc:1658 @@ -9296,7 +9296,7 @@ #: include/svx/strings.hrc:1659 msgctxt "RID_SUBSETMAP" msgid "Meroitic Cursive" -msgstr "Meroiittinen kursiivi" +msgstr "meroiittinen kursiivikirjoitus" #. b5m8K #: include/svx/strings.hrc:1660 @@ -9314,7 +9314,7 @@ #: include/svx/strings.hrc:1662 msgctxt "RID_SUBSETMAP" msgid "Sharada" -msgstr "Sharada" +msgstr "šarada" #. rTKpL #: include/svx/strings.hrc:1663 @@ -9332,19 +9332,19 @@ #: include/svx/strings.hrc:1665 msgctxt "RID_SUBSETMAP" msgid "Takri" -msgstr "Takri" +msgstr "takri" #. HNCk9 #: include/svx/strings.hrc:1666 msgctxt "RID_SUBSETMAP" msgid "Bassa Vah" -msgstr "Bassa vah" +msgstr "bassa" #. GWufB #: include/svx/strings.hrc:1667 msgctxt "RID_SUBSETMAP" msgid "Caucasian Albanian" -msgstr "Kaukasian albania" +msgstr "kaukasianalbanialainen" #. t8Bfn #: include/svx/strings.hrc:1668 @@ -9368,7 +9368,7 @@ #: include/svx/strings.hrc:1671 msgctxt "RID_SUBSETMAP" msgid "Elbasan" -msgstr "Elbasan" +msgstr "elbasanilainen" #. QmkME #: include/svx/strings.hrc:1672 @@ -9380,13 +9380,13 @@ #: include/svx/strings.hrc:1673 msgctxt "RID_SUBSETMAP" msgid "Grantha" -msgstr "Grantha" +msgstr "grantha" #. tpSqU #: include/svx/strings.hrc:1674 msgctxt "RID_SUBSETMAP" msgid "Khojki" -msgstr "Khojki" +msgstr "khojki" #. 4pjBM #: include/svx/strings.hrc:1675 @@ -9410,13 +9410,13 @@ #: include/svx/strings.hrc:1678 msgctxt "RID_SUBSETMAP" msgid "Mahajani" -msgstr "Mahajani" +msgstr "mahajanilainen" #. CA7vw #: include/svx/strings.hrc:1679 msgctxt "RID_SUBSETMAP" msgid "Manichaean" -msgstr "Manikealainen" +msgstr "manikealainen" #. UUKC4 #: include/svx/strings.hrc:1680 @@ -9428,13 +9428,13 @@ #: include/svx/strings.hrc:1681 msgctxt "RID_SUBSETMAP" msgid "Modi" -msgstr "Modi" +msgstr "modi-aakkoset" #. jC4Ue #: include/svx/strings.hrc:1682 msgctxt "RID_SUBSETMAP" msgid "Mro" -msgstr "Mro" +msgstr "mro" #. TiWmd #: include/svx/strings.hrc:1683 @@ -9446,19 +9446,19 @@ #: include/svx/strings.hrc:1684 msgctxt "RID_SUBSETMAP" msgid "Nabataean" -msgstr "Nabatealainen" +msgstr "nabatealainen" #. T29Cw #: include/svx/strings.hrc:1685 msgctxt "RID_SUBSETMAP" msgid "Old North Arabian" -msgstr "Vanha pohjoisarabia" +msgstr "muinaispohjoisarabialainen" #. EZADa #: include/svx/strings.hrc:1686 msgctxt "RID_SUBSETMAP" msgid "Old Permic" -msgstr "Vanha permiläinen" +msgstr "muinaispermiläinen" #. 9oFL2 #: include/svx/strings.hrc:1687 @@ -9471,25 +9471,25 @@ #: include/svx/strings.hrc:1688 msgctxt "RID_SUBSETMAP" msgid "Pahawh Hmong" -msgstr "Pahawh Hmong" +msgstr "pahawh hmong" #. wd8bD #: include/svx/strings.hrc:1689 msgctxt "RID_SUBSETMAP" msgid "Palmyrene" -msgstr "Palmyralainen" +msgstr "palmyralainen" #. dkSnn #: include/svx/strings.hrc:1690 msgctxt "RID_SUBSETMAP" msgid "Pau Cin Hau" -msgstr "Pau Cin Hau" +msgstr "zotuallai" #. bts3U #: include/svx/strings.hrc:1691 msgctxt "RID_SUBSETMAP" msgid "Psalter Pahlavi" -msgstr "Psalttari-pahlavi" +msgstr "psalttaripahlavilainen" #. XSwsB #: include/svx/strings.hrc:1692 @@ -9501,7 +9501,7 @@ #: include/svx/strings.hrc:1693 msgctxt "RID_SUBSETMAP" msgid "Siddham" -msgstr "Siddham" +msgstr "siddham-tavukirjoitus" #. GwT8c #: include/svx/strings.hrc:1694 @@ -9519,7 +9519,7 @@ #: include/svx/strings.hrc:1696 msgctxt "RID_SUBSETMAP" msgid "Tirhuta" -msgstr "Tirhuta" +msgstr "tirhuta" #. HRBEN #: include/svx/strings.hrc:1697 @@ -9531,13 +9531,13 @@ #: include/svx/strings.hrc:1698 msgctxt "RID_SUBSETMAP" msgid "Ahom" -msgstr "Ahom" +msgstr "ahom" #. cPJhp #: include/svx/strings.hrc:1699 msgctxt "RID_SUBSETMAP" msgid "Anatolian Hieroglyphs" -msgstr "Anatolialaiset hieroglyfit" +msgstr "anatolialaiset hieroglyfit" #. GAd7H #: include/svx/strings.hrc:1700 @@ -9561,19 +9561,19 @@ #: include/svx/strings.hrc:1703 msgctxt "RID_SUBSETMAP" msgid "Hatran" -msgstr "Hatra" +msgstr "hatralainen" #. e3aXA #: include/svx/strings.hrc:1704 msgctxt "RID_SUBSETMAP" msgid "Multani" -msgstr "Multani" +msgstr "multanilainen" #. D6qsK #: include/svx/strings.hrc:1705 msgctxt "RID_SUBSETMAP" msgid "Old Hungarian" -msgstr "Unkarilaiset riimut" +msgstr "muinaisunkarilainen" #. aVhdm #: include/svx/strings.hrc:1706 @@ -9591,13 +9591,13 @@ #: include/svx/strings.hrc:1708 msgctxt "RID_SUBSETMAP" msgid "Adlam" -msgstr "Adlam" +msgstr "fulanin adlam-aakkosto" #. F2AJT #: include/svx/strings.hrc:1709 msgctxt "RID_SUBSETMAP" msgid "Bhaiksuki" -msgstr "Bhaiksuki" +msgstr "sanskritin bhaiksuki-aakkosto" #. zDLT2 #: include/svx/strings.hrc:1710 @@ -9621,7 +9621,7 @@ #: include/svx/strings.hrc:1713 msgctxt "RID_SUBSETMAP" msgid "Marchen" -msgstr "Marchen" +msgstr "tiibetiläinen marchan-kirjoitus" #. Mr7RB #: include/svx/strings.hrc:1714 @@ -9633,19 +9633,19 @@ #: include/svx/strings.hrc:1715 msgctxt "RID_SUBSETMAP" msgid "Newa" -msgstr "Newa" +msgstr "newarin newa-tavukirjoitus" #. JJrpR #: include/svx/strings.hrc:1716 msgctxt "RID_SUBSETMAP" msgid "Osage" -msgstr "Osage" +msgstr "osagen aakkosto" #. o3qMt #: include/svx/strings.hrc:1717 msgctxt "RID_SUBSETMAP" msgid "Tangut" -msgstr "Tanguutti" +msgstr "tangut" #. nRMFd #: include/svx/strings.hrc:1718 @@ -9681,7 +9681,7 @@ #: include/svx/strings.hrc:1723 msgctxt "RID_SUBSETMAP" msgid "Soyombo" -msgstr "Soyombo" +msgstr "soyombo-kirjaimisto" #. gPnhH #: include/svx/strings.hrc:1724 @@ -9693,7 +9693,7 @@ #: include/svx/strings.hrc:1725 msgctxt "RID_SUBSETMAP" msgid "Zanabazar Square" -msgstr "Zanabazar-neliökirjaimisto" +msgstr "zanabazar-neliökirjaimisto" #. i5evF #: include/svx/strings.hrc:1726 @@ -9705,19 +9705,19 @@ #: include/svx/strings.hrc:1727 msgctxt "RID_SUBSETMAP" msgid "Dogra" -msgstr "" +msgstr "dogri" #. xDvRL #: include/svx/strings.hrc:1728 msgctxt "RID_SUBSETMAP" msgid "Gunjala Gondi" -msgstr "" +msgstr "gondin gunjala" #. uzq7e #: include/svx/strings.hrc:1729 msgctxt "RID_SUBSETMAP" msgid "Hanifi Rohingya" -msgstr "" +msgstr "hanifilaisen rohingyan numerot" #. FAwvP #: include/svx/strings.hrc:1730 @@ -9747,13 +9747,13 @@ #: include/svx/strings.hrc:1734 msgctxt "RID_SUBSETMAP" msgid "Old Sogdian" -msgstr "vanha sogdi" +msgstr "muinaissogdialainen" #. rUG8e #: include/svx/strings.hrc:1735 msgctxt "RID_SUBSETMAP" msgid "Sogdian" -msgstr "sogdi" +msgstr "sogdialainen" #. B6UKP #: include/svx/strings.hrc:1736 @@ -9765,19 +9765,19 @@ #: include/svx/strings.hrc:1737 msgctxt "RID_SUBSETMAP" msgid "Elymaic" -msgstr "" +msgstr "elymealainen" #. ibmgu #: include/svx/strings.hrc:1738 msgctxt "RID_SUBSETMAP" msgid "Nandinagari" -msgstr "" +msgstr "nandinagari" #. 8A7FD #: include/svx/strings.hrc:1739 msgctxt "RID_SUBSETMAP" msgid "Nyiakeng Puachue Hmong" -msgstr "" +msgstr "hmongin nyiakeng puachue" #. DajDi #: include/svx/strings.hrc:1740 @@ -9807,13 +9807,13 @@ #: include/svx/strings.hrc:1744 msgctxt "RID_SUBSETMAP" msgid "Wancho" -msgstr "" +msgstr "wancholainen" #. EDpqy #: include/svx/strings.hrc:1745 msgctxt "RID_SUBSETMAP" msgid "Chorasmian" -msgstr "" +msgstr "horemzi" #. EH9Xf #: include/svx/strings.hrc:1746 @@ -9831,7 +9831,7 @@ #: include/svx/strings.hrc:1748 msgctxt "RID_SUBSETMAP" msgid "Khitan small script" -msgstr "" +msgstr "kitaanin pieni merkistö" #. onKAu #: include/svx/strings.hrc:1749 @@ -9855,7 +9855,7 @@ #: include/svx/strings.hrc:1752 msgctxt "RID_SUBSETMAP" msgid "Yezidi" -msgstr "" +msgstr "jesidi" #. 9UAmW #: include/svx/strings.hrc:1753 @@ -9867,7 +9867,7 @@ #: include/svx/strings.hrc:1754 msgctxt "RID_SUBSETMAP" msgid "Cypro-Minoan" -msgstr "" +msgstr "kypro-minolainen" #. CYEeS #: include/svx/strings.hrc:1755 @@ -9897,19 +9897,19 @@ #: include/svx/strings.hrc:1759 msgctxt "RID_SUBSETMAP" msgid "Old Uyghur" -msgstr "" +msgstr "vanha uiguurilainen" #. JGVtT #: include/svx/strings.hrc:1760 msgctxt "RID_SUBSETMAP" msgid "Tangsa" -msgstr "" +msgstr "tangsa" #. pkBYF #: include/svx/strings.hrc:1761 msgctxt "RID_SUBSETMAP" msgid "Toto" -msgstr "" +msgstr "toto" #. SEVKT #: include/svx/strings.hrc:1762 @@ -9921,7 +9921,7 @@ #: include/svx/strings.hrc:1763 msgctxt "RID_SUBSETMAP" msgid "Vithkuqi" -msgstr "" +msgstr "vithkuqi" #. ssh5F #: include/svx/strings.hrc:1764 @@ -15841,7 +15841,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:481 msgctxt "dockingfontwork|distancex|tooltip_text" msgid "Distance X" -msgstr "Etäisyys X" +msgstr "X-etäisyys" #. foUKw #: svx/uiconfig/ui/dockingfontwork.ui:488 @@ -15853,7 +15853,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:526 msgctxt "dockingfontwork|distancey|tooltip_text" msgid "Distance Y" -msgstr "Etäisyys Y" +msgstr "Y-etäisyys" #. WhqTH #: svx/uiconfig/ui/dockingfontwork.ui:533 @@ -19018,13 +19018,13 @@ #: svx/uiconfig/ui/sidebararea.ui:55 msgctxt "sidebararea|transparencyslider|tooltip_text" msgid "Specify 0% for fully opaque through 100% for fully transparent." -msgstr "Valitse arvo väliltä 0 % (täysin peittävä) - 100 % (täysin läpinäkyvä)." +msgstr "Valitse arvo väliltä 0 % (täysin peittävä) … 100 % (täysin läpinäkyvä)." #. RBwTW #: svx/uiconfig/ui/sidebararea.ui:71 msgctxt "sidebararea|settransparency|tooltip_text" msgid "Specify 0% for fully opaque through 100% for fully transparent." -msgstr "Valitse arvo väliltä 0 % (täysin peittävä) - 100 % (täysin läpinäkyvä)." +msgstr "Valitse arvo väliltä 0 % (täysin peittävä) … 100 % (täysin läpinäkyvä)." #. iA8W8 #: svx/uiconfig/ui/sidebararea.ui:76 @@ -19336,7 +19336,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:99 msgctxt "sidebargraphic|setcontrast|tooltip_text" msgid "Specify the degree of difference between the lightest and darkest parts of the graphic." -msgstr "Aseta kuvan vaaleiden ja tummien osien välinen kirkkausero." +msgstr "Aseta kuvan vaaleimpien ja tummimpien osien välinen kirkkausero." #. zJs2p #: svx/uiconfig/ui/sidebargraphic.ui:105 @@ -19486,7 +19486,7 @@ #: svx/uiconfig/ui/sidebarline.ui:278 msgctxt "sidebarline|caplabel" msgid "Ca_p style:" -msgstr "Viivanpään tyyli:" +msgstr "Viivanpäätyyli:" #. PbDF7 #: svx/uiconfig/ui/sidebarline.ui:292 @@ -19516,7 +19516,7 @@ #: svx/uiconfig/ui/sidebarline.ui:301 msgctxt "sidebarline|linecapstyle-atkobject" msgid "Cap Style" -msgstr "Viivanpäiden tyyli" +msgstr "Viivanpäätyyli" #. rmxCC #: svx/uiconfig/ui/sidebarlists.ui:23 @@ -19660,7 +19660,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:52 msgctxt "sidebarpossize|horizontallabel" msgid "Position _X:" -msgstr "Sijainti X:" +msgstr "X-sijainti:" #. DqemA #: svx/uiconfig/ui/sidebarpossize.ui:67 @@ -19678,7 +19678,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:86 msgctxt "sidebarpossize|verticallabel" msgid "Position _Y:" -msgstr "Sijainti Y:" +msgstr "Y-sijainti:" #. 8jhK2 #: svx/uiconfig/ui/sidebarpossize.ui:101 @@ -19702,7 +19702,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:134 msgctxt "sidebarpossize|selectwidth|tooltip_text" msgid "Enter a width for the selected object." -msgstr "Anna valitun objektin leveys." +msgstr "Anna valitulle objektille leveys." #. 9j3cM #: svx/uiconfig/ui/sidebarpossize.ui:140 @@ -19720,7 +19720,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:168 msgctxt "sidebarpossize|selectheight|tooltip_text" msgid "Enter a height for the selected object." -msgstr "Anna valitun objektin korkeus." +msgstr "Anna valitulle objektille korkeus." #. Z9wXF #: svx/uiconfig/ui/sidebarpossize.ui:174 diff -Nru libreoffice-7.3.4/translations/source/fi/sw/messages.po libreoffice-7.3.5/translations/source/fi/sw/messages.po --- libreoffice-7.3.4/translations/source/fi/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-22 12:53+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564952420.000000\n" #. v3oJv @@ -86,7 +86,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Vältä irrallista tekstiä." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 @@ -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 "Pidä otsikkotasot järjestyksessä. Otsikkotason %LEVEL_CURRENT% ei kuulu tulla tason %LEVEL_PREV% jälkeen." #. 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 "Vältä fonttipajaobjektien käyttöä. Varmista, että käytät fonttipajaa vain merkityksettömiin teksteihin." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -2913,7 +2913,7 @@ #: sw/inc/strings.hrc:137 msgctxt "STR_POOLCOLL_HEADER" msgid "Header and Footer" -msgstr "Ylätunniste ja alatunniste" +msgstr "Ylä- ja alatunniste" #. qfrao #: sw/inc/strings.hrc:138 @@ -3360,7 +3360,7 @@ #: sw/inc/strings.hrc:214 msgctxt "STR_POOLNUMRULE_NOLIST" msgid "No List" -msgstr "" +msgstr "Ei luetteloa" #. mGZHb #: sw/inc/strings.hrc:215 @@ -3917,10 +3917,9 @@ #. EGu2g #: sw/inc/strings.hrc:322 -#, fuzzy msgctxt "STR_DEL_AUTOFORMAT_MSG" msgid "The following AutoFormat entry will be deleted:" -msgstr "Seuraava taulukkotyyli poistetaan:" +msgstr "Seuraava automaattisen muotoilun merkintä poistetaan:" #. 7KuSQ #: sw/inc/strings.hrc:323 @@ -4989,13 +4988,13 @@ #: sw/inc/strings.hrc:502 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "Linkitä kehykset" #. XV4Ap #: sw/inc/strings.hrc:503 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "Pura kehysten linkitys" #. vUJG9 #: sw/inc/strings.hrc:504 @@ -5221,7 +5220,7 @@ #: sw/inc/strings.hrc:540 msgctxt "STR_UNDO_HEADER_FOOTER" msgid "Header/footer changed" -msgstr "Ylä-/alaotsikko muuttunut" +msgstr "Ylä-/alatunniste muuttunut" #. tGyeC #: sw/inc/strings.hrc:541 @@ -7387,7 +7386,7 @@ #: sw/inc/strings.hrc:931 msgctxt "STR_HIDDENTXTFLD" msgid "Hidden text" -msgstr "Piiloteksti" +msgstr "Piilotettu teksti" #. WvBF2 #. range user fields @@ -7845,7 +7844,7 @@ #: sw/inc/strings.hrc:1035 msgctxt "FMT_REF_PAGE" msgid "Page number (unstyled)" -msgstr "" +msgstr "Sivunumero (ilman tyyliä)" #. MaB3q #: sw/inc/strings.hrc:1036 @@ -7863,7 +7862,7 @@ #: sw/inc/strings.hrc:1038 msgctxt "FMT_REF_PAGE_PGDSC" msgid "Page number (styled)" -msgstr "" +msgstr "Sivunumero (tyylillä)" #. CQitd #: sw/inc/strings.hrc:1039 @@ -8278,7 +8277,7 @@ #: sw/inc/strings.hrc:1118 msgctxt "STR_FLY_AT_CHAR" msgid "to character" -msgstr "" +msgstr "merkkiin" #. hDUSa #: sw/inc/strings.hrc:1119 @@ -8596,7 +8595,7 @@ #: sw/inc/strings.hrc:1172 msgctxt "ST_FRM" msgid "Frame" -msgstr "" +msgstr "Kehys" #. Fsnm6 #: sw/inc/strings.hrc:1173 @@ -8698,7 +8697,7 @@ #: sw/inc/strings.hrc:1189 msgctxt "ST_RECENCY" msgid "Recency" -msgstr "" +msgstr "Tuoreus" #. pCp7u #: sw/inc/strings.hrc:1190 @@ -10024,7 +10023,7 @@ #: sw/inc/utlui.hrc:49 msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Transliterates RTL Hungarian text to Old Hungarian script" -msgstr "" +msgstr "Translitteroi oikealta vasemmalle kirjoitettavan unkarinkielisen tekstin muinaisunkarilaiseksi kirjoitukseksi" #. MEgcB #: sw/uiconfig/swriter/ui/abstractdialog.ui:22 @@ -10502,19 +10501,19 @@ msgstr "Siirtää valittua kappaletyyliä hakemistohierarkiassa yhden tason alemmaksi." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Tyyli" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Tyylit" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Luo hakemistomerkinnät määrätyistä kappaletyyleistä." @@ -10949,10 +10948,9 @@ #. kDwAj #: sw/uiconfig/swriter/ui/autotext.ui:186 -#, fuzzy msgctxt "autotext|extended_tip|autotext" msgid "Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document." -msgstr "Napsautetaan esille toiminnon lisäkomennot, esimerkiksi uuden tekstileikemerkinnän luomiseksi käsiteltävän asiakirjan tekstivalinnasta." +msgstr "Näytä napsauttamalla automaattisen tekstin lisäkomennot, kuten uuden automaattisen tekstin merkinnän luominen tekstivalinnasta käsiteltävässä asiakirjassa." #. hXXv3 #: sw/uiconfig/swriter/ui/autotext.ui:198 @@ -10988,7 +10986,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:312 msgctxt "autotext|relfile" msgid "_File system" -msgstr "Tiedostojärjestelmä" +msgstr "Tiedostojärjestelmään" #. UXSeo #: sw/uiconfig/swriter/ui/autotext.ui:320 @@ -11000,7 +10998,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:331 msgctxt "autotext|relnet" msgid "Inter_net" -msgstr "Internet" +msgstr "Internetiin" #. KnzU2 #: sw/uiconfig/swriter/ui/autotext.ui:339 @@ -11221,7 +11219,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:163 msgctxt "bulletsandnumbering|bullets" msgid "Select a bullet type for an unordered list." -msgstr "" +msgstr "Valitse järjestämättömän luettelon luettelomerkki." #. pHHPT #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:210 @@ -11233,7 +11231,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:211 msgctxt "bulletsandnumbering|singlenum" msgid "Select a numbering scheme for an ordered list." -msgstr "" +msgstr "Valitse järjestetyn luettelon numerointitapa." #. 8AADg #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:259 @@ -11257,7 +11255,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:309 msgctxt "bulletsandnumbering|graphics" msgid "Select a graphic bullet symbol for an unordered list." -msgstr "" +msgstr "Valitse graafinen luettelomerkki järjestämättömälle luettelolle." #. zVTFe #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:357 @@ -11269,7 +11267,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:358 msgctxt "bulletsandnumbering|position" msgid "Modify indent, spacing, and alignment options for ordered and unordered lists." -msgstr "" +msgstr "Muokkaa järjestettyjen ja järjestämättömien luetteloiden sisennys-, väli- ja tasausasetuksia." #. nFfDs #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:406 @@ -11461,7 +11459,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:475 msgctxt "businessdatapage|phone-atkobject" msgid "Title" -msgstr "Tehtävä" +msgstr "Titteli" #. Cbfw6 #: sw/uiconfig/swriter/ui/businessdatapage.ui:476 @@ -12418,61 +12416,61 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:243 msgctxt "conditionpage|filter" msgid " 1st List Level" -msgstr "" +msgstr " 1. luettelotaso" #. sGSZA #: sw/uiconfig/swriter/ui/conditionpage.ui:244 msgctxt "conditionpage|filter" msgid " 2nd List Level" -msgstr "" +msgstr " 2. luettelotaso" #. FGGC4 #: sw/uiconfig/swriter/ui/conditionpage.ui:245 msgctxt "conditionpage|filter" msgid " 3rd List Level" -msgstr "" +msgstr " 3. luettelotaso" #. kne44 #: sw/uiconfig/swriter/ui/conditionpage.ui:246 msgctxt "conditionpage|filter" msgid " 4th List Level" -msgstr "" +msgstr " 4. luettelotaso" #. Wjkzx #: sw/uiconfig/swriter/ui/conditionpage.ui:247 msgctxt "conditionpage|filter" msgid " 5th List Level" -msgstr "" +msgstr " 5. luettelotaso" #. R7zrU #: sw/uiconfig/swriter/ui/conditionpage.ui:248 msgctxt "conditionpage|filter" msgid " 6th List Level" -msgstr "" +msgstr " 6. luettelotaso" #. A4QuR #: sw/uiconfig/swriter/ui/conditionpage.ui:249 msgctxt "conditionpage|filter" msgid " 7th List Level" -msgstr "" +msgstr " 7. luettelotaso" #. RiFQb #: sw/uiconfig/swriter/ui/conditionpage.ui:250 msgctxt "conditionpage|filter" msgid " 8th List Level" -msgstr "" +msgstr " 8. luettelotaso" #. AoCPE #: sw/uiconfig/swriter/ui/conditionpage.ui:251 msgctxt "conditionpage|filter" msgid " 9th List Level" -msgstr "" +msgstr " 9. luettelotaso" #. gLAFZ #: sw/uiconfig/swriter/ui/conditionpage.ui:252 msgctxt "conditionpage|filter" msgid "10th List Level" -msgstr "" +msgstr "10. luettelotaso" #. AniaD #: sw/uiconfig/swriter/ui/conditionpage.ui:273 @@ -13976,37 +13974,37 @@ msgstr "Vaihda tietokantoja" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Määritä" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Käytössä olevat tietokannat" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Käytettävissä olevat tietokannat" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Selaa..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Avaa tiedostojen avaamisikkunan tietokantatiedoston (*.odb) valitsemiseksi. Valittu tiedosto lisätään Käytettävissä olevat tietokannat -luetteloon." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14016,31 +14014,31 @@ "Tietokantatiedosto valitaan Selaa-painikkeella." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Luettelee parhaillaan käytössä olevat tietokannat." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Luettelee %PRODUCTNAMEen rekisteröidyt tietokannat." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Vaihda tietokantoja" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Asiakirjassa käytetty tietokanta:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Vaihda käsiteltävän asiakirjan tietolähteitä." @@ -14599,7 +14597,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:249 msgctxt "fldrefpage|filter" msgid "Filter Selection" -msgstr "Suodattimen valinta" +msgstr "Suodata valikoimaa" #. DToph #: sw/uiconfig/swriter/ui/fldrefpage.ui:311 @@ -16697,7 +16695,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:100 msgctxt "inputwinmenu|eq" msgid "Equal" -msgstr "Yhtäsuuri" +msgstr "Yhtä suuri" #. Z6CEY #: sw/uiconfig/swriter/ui/inputwinmenu.ui:104 @@ -16721,7 +16719,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:126 msgctxt "inputwinmenu|leq" msgid "Less Than or Equal" -msgstr "Pienempi tai yhtäsuuri kuin" +msgstr "Pienempi tai yhtä suuri kuin" #. YGjJn #: sw/uiconfig/swriter/ui/inputwinmenu.ui:130 @@ -16733,7 +16731,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:139 msgctxt "inputwinmenu|geq" msgid "Greater Than or Equal" -msgstr "Suurempi tai yhtäsuuri kuin" +msgstr "Suurempi tai yhtä suuri kuin" #. BRptY #: sw/uiconfig/swriter/ui/inputwinmenu.ui:143 @@ -16769,7 +16767,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:184 msgctxt "inputwinmenu|or" msgid "Boolean Or" -msgstr "Boolen ehto TAI" +msgstr "Boolen TAI" #. mYhii #: sw/uiconfig/swriter/ui/inputwinmenu.ui:188 @@ -16781,7 +16779,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:197 msgctxt "inputwinmenu|xor" msgid "Boolean Xor" -msgstr "Boolen ehto XTAI" +msgstr "Boolen XTAI" #. CEcTo #: sw/uiconfig/swriter/ui/inputwinmenu.ui:201 @@ -16793,7 +16791,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:210 msgctxt "inputwinmenu|and" msgid "Boolean And" -msgstr "Boolen ehto JA" +msgstr "Boolen JA" #. DfomB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:214 @@ -16805,7 +16803,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:223 msgctxt "inputwinmenu|not" msgid "Boolean Not" -msgstr "Boolen ehto EI" +msgstr "Boolen EI" #. 2hhtQ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:227 @@ -16997,7 +16995,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:108 msgctxt "insertbookmark|extended_tip|name" msgid "Type the name of the bookmark that you want to create. Then press Insert." -msgstr "" +msgstr "Kirjoita luotavan kirjanmerkin nimi ja napsauta Lisää." #. zocpL #: sw/uiconfig/swriter/ui/insertbookmark.ui:119 @@ -17111,7 +17109,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:119 msgctxt "insertbreak|columnrb" msgid "Column break" -msgstr "Palstan vaihto" +msgstr "Palstanvaihto" #. poiJj #: sw/uiconfig/swriter/ui/insertbreak.ui:128 @@ -17154,7 +17152,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:197 msgctxt "insertbreak|pagenumcb" msgid "Change page number" -msgstr "Muuta sivunumero" +msgstr "Muuta sivunumeroa" #. cfsdj #: sw/uiconfig/swriter/ui/insertbreak.ui:206 @@ -18139,7 +18137,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:53 msgctxt "labeloptionspage|extended_tip|entirepage" msgid "Creates a full page of labels or business cards." -msgstr "" +msgstr "Luo koko sivullisen tarroja tai käyntikortteja." #. cDFub #: sw/uiconfig/swriter/ui/labeloptionspage.ui:65 @@ -18151,7 +18149,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:75 msgctxt "labeloptionspage|extended_tip|singlelabel" msgid "Prints a single label or business card on a page." -msgstr "" +msgstr "Tulostaa yksittäisen tarran tai käyntikortin sivulle." #. MfBnH #: sw/uiconfig/swriter/ui/labeloptionspage.ui:100 @@ -18187,7 +18185,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:194 msgctxt "labeloptionspage|extended_tip|synchronize" msgid "Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the Synchronize Labels button." -msgstr "" +msgstr "Antaa muokata yksittäistä tarraa tai käyntikorttia ja päivittää sivun muiden tarrojen tai käyntikorttien sisällön, kun painat Synkronoi osoitetarrat -painiketta." #. 97jZe #: sw/uiconfig/swriter/ui/labeloptionspage.ui:210 @@ -18277,13 +18275,13 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:217 msgctxt "linenumbering|extended_tip|styledropdown" msgid "Select the character style that you want to use for the line numbers." -msgstr "" +msgstr "Valitse rivinumeroille käytettävä merkkityyli." #. MBZ7K #: sw/uiconfig/swriter/ui/linenumbering.ui:233 msgctxt "linenumbering|extended_tip|formatdropdown" msgid "Select the numbering scheme that you want to use." -msgstr "" +msgstr "Valitse käytettävä numerointitapa." #. ntwJw #: sw/uiconfig/swriter/ui/linenumbering.ui:248 @@ -18403,7 +18401,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:527 msgctxt "linenumbering|showfooterheadernumbering" msgid "Include header and footer" -msgstr "Sisällytä ylä- ja alatunnisteet" +msgstr "Sisällytä ylä- ja alatunniste" #. FPgbW #: sw/uiconfig/swriter/ui/linenumbering.ui:542 @@ -19687,7 +19685,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:348 msgctxt "mmresultemaildialog|label2" msgid "Email Options" -msgstr "" +msgstr "Sähköpostiasetukset" #. kCBDz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:376 @@ -19789,7 +19787,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:163 msgctxt "mmresultprintdialog|label2" msgid "Printer Options" -msgstr "" +msgstr "Tulostinasetukset" #. VemES #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:191 @@ -19891,7 +19889,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157 msgctxt "mmresultsavedialog|label2" msgid "Save As Options" -msgstr "" +msgstr "Tallenna nimellä -asetukset" #. xRGbs #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191 @@ -20124,109 +20122,109 @@ msgstr "Käytä nykyistä asiakirjaa" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Käyttää käsiteltävää Writer-asiakirjaa joukkokirjeen pohjana." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Luo uusi asiakirja" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Luo uuden Writer-asiakirjan käytettäväksi joukkokirjeessä." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Aloita valmiista asiakirjasta" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Valitse olemassa oleva Writer-asiakirja käytettäväksi pohjana joukkokirjeasiakirjassa." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Aloita asiakirjan mallista" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Valitse malli, josta joukkokirjeasiakirja luodaan." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Aloita viimeksi tallennetusta asiakirjasta" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Käytä olemassa olevaa joukkokirjeasiakirjaa pohjana uudelle joukkokirjeasiakirjalle." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Valitse asiakirja." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Selaa..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Etsi Writer-asiakirja, jota aiot käyttää ja napsauta Avaa." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Selaa..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Vaihda tietokantoja..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Valitse asiakirja pohjaksi joukkokirjeeseen" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -20301,7 +20299,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20 msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY" msgid "Send Outline to Clipboard" -msgstr "" +msgstr "Lähetä jäsennys leikepöydälle" #. 7HC9V #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:34 @@ -20373,7 +20371,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128 msgctxt "navigatorcontextmenu|STR_READONLY_IDX" msgid "Read-_only" -msgstr "" +msgstr "Kirjoitussuojattu" #. BUQRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136 @@ -20385,7 +20383,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "_Rename..." -msgstr "" +msgstr "Nimeä uudelleen..." #. U5nAb #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153 @@ -20415,7 +20413,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203 msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "" +msgstr "Jäsennystaso" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217 @@ -21414,7 +21412,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8851 msgctxt "notebookbar_groupedbar_compact|ColorButton" msgid "Fi_lter" -msgstr "" +msgstr "Suodatus" #. 5a4zV #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9258 @@ -22372,49 +22370,49 @@ msgstr "Objekti" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tyyppi" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Asetukset" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Rivitys" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlinkki" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Reunat" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Alue" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Läpinäkyvyys" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -24287,7 +24285,7 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:109 msgctxt "PageHeaderPanel|footertoggle-atkobject" msgid "Enable footer" -msgstr "Käytä alatunnistetta" +msgstr "Ota alatunniste käyttöön" #. YXX8x #: sw/uiconfig/swriter/ui/pageformatpanel.ui:24 @@ -25906,13 +25904,13 @@ #: sw/uiconfig/swriter/ui/renameentrydialog.ui:8 msgctxt "renameentrydialog|RenameEntryDialog" msgid "Rename Element" -msgstr "Vaihda kentän nimi" +msgstr "Nimeä elementti uudelleen" #. E4Th3 #: sw/uiconfig/swriter/ui/renameentrydialog.ui:100 msgctxt "renameentrydialog|label1" msgid "Element Name" -msgstr "Kentän nimi" +msgstr "Elementin nimi" #. WTa6U #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:8 @@ -25930,7 +25928,7 @@ #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:127 msgctxt "renameobjectdialog|label1" msgid "Change Name" -msgstr "Muuta nimi" +msgstr "Muuta nimeä" #. NWjKW #: sw/uiconfig/swriter/ui/rowheight.ui:15 @@ -26962,7 +26960,7 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:55 msgctxt "spellmenu|correctmenu" msgid "Add selected correction as replacement for incorrect word in AutoCorrect replacement table." -msgstr "" +msgstr "Lisää valittu korjaus automaattisen korjauksen korvaustaulukkoon virheellisen sanan korvaajana." #. jDmAi #: sw/uiconfig/swriter/ui/spellmenu.ui:56 @@ -27133,7 +27131,7 @@ msgstr "Päivitä" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Näyttää tilastotietoja käsiteltävästä tiedostosta." @@ -27430,7 +27428,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224 msgctxt "tabletextflowpage|extended_tip|pagenonf" msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked." -msgstr "" +msgstr "Anna sivunumero vaihtoa seuraavalle sivulle. Mikäli haluat jatkaa nykyistä sivunumerointia, jätä valintaruutu merkitsemättä." #. 5oC83 #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242 @@ -29265,7 +29263,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:954 msgctxt "tocindexpage|useff" msgid "Combine identical entries with f. or _ff." -msgstr "" +msgstr "Yhdistä identtiset merkinnät lyhenteillä f. tai ff." #. VJ3ZQ #: sw/uiconfig/swriter/ui/tocindexpage.ui:963 @@ -29889,7 +29887,7 @@ #: sw/uiconfig/swriter/ui/wordcount.ui:98 msgctxt "wordcount|label2" msgid "Characters including spaces" -msgstr "Merkit (sis. välit)" +msgstr "Merkit (sisältäen välit)" #. cnynW #: sw/uiconfig/swriter/ui/wordcount.ui:110 diff -Nru libreoffice-7.3.4/translations/source/fi/vcl/messages.po libreoffice-7.3.5/translations/source/fi/vcl/messages.po --- libreoffice-7.3.4/translations/source/fi/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564249360.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Tulosta samalle arkille useita sivuja." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Mukautettu" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Valitse kuinka monta sivua tulostetaan arkille." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sivut:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Valitse rivien määrä." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "kertaa" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Valitse sarakkeiden määrä." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marginaali:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Valitse samalle arkille tulostettavien sivujen välinen marginaali." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "sivujen välillä" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Etäisyys:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Valitse tulostettavien sivujen ja paperin reunan välinen marginaali." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "arkin reunaan" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Järjestys:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "vasemmalta oikealle, sitten alaspäin" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "ylhäältä alas, sitten oikealle" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "ylhäältä alas, sitten vasemmalle" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "oikealta vasemmalle, sitten alaspäin" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Valitse sivujen tulostusjärjestys." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Piirrä reuna jokaisen sivun ympärille" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Jos asetus on käytössä, jokaisen sivun ympärille piirretään reuna." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Esite" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Lajittelun esikatselu" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Lisää" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sivun asettelu" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Yleiset" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Tulostaa käsiteltävän asiakirjan, valinnan tai määrätyt sivut. Käsiteltävän asiakirjan tulostusasetuksia voi myös säätää." diff -Nru libreoffice-7.3.4/translations/source/fi/wizards/source/resources.po libreoffice-7.3.5/translations/source/fi/wizards/source/resources.po --- libreoffice-7.3.4/translations/source/fi/wizards/source/resources.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fi/wizards/source/resources.po 2022-07-15 19:12:51.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: 2021-11-13 08:15+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563272856.000000\n" #. 8UKfi @@ -3903,7 +3903,7 @@ "STYLES_1\n" "property.text" msgid "Error while saving the document to the clipboard! The following action cannot be undone." -msgstr "On ilmennyt virhe tallennettaessa asiakirjaa leikepöydälle! Seuraavaa toimintoa ei voi kumota." +msgstr "Virhe tallennettaessa asiakirjaa leikepöydälle! Seuraavaa toimintoa ei voi kumota." #. LTS44 #: resources_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/fr/chart2/messages.po libreoffice-7.3.5/translations/source/fr/chart2/messages.po --- libreoffice-7.3.4/translations/source/fr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-05 04:42+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: French \n" @@ -3602,7 +3602,7 @@ msgstr "Définissez le nombre de lignes pour le type de diagramme Colonne et ligne." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Sélectionnez un type de diagramme de base." diff -Nru libreoffice-7.3.4/translations/source/fr/cui/messages.po libreoffice-7.3.5/translations/source/fr/cui/messages.po --- libreoffice-7.3.4/translations/source/fr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" -"Last-Translator: Jean-Baptiste Faure \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: serval2412 \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562576624.000000\n" #. GyY9M @@ -5201,7 +5201,7 @@ #: cui/uiconfig/ui/areatabpage.ui:142 msgctxt "areatabpage|btnhatch" msgid "Hatch" -msgstr "Hachures" +msgstr "Hachure" #. irCyE #: cui/uiconfig/ui/areatabpage.ui:148 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatique" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contraste élevé" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Spécifie le style des icônes des barres d'outils et des boîtes de dialogue." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tyle d'icône :" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Ajoutez d'autres thèmes d'icônes à l'aide d'extensions" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Style d'icônes" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Redémarrage nécessaire" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utiliser l'accélération _matérielle" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Permet d'accéder directement aux fonctions matérielles de l'adaptateur vidéo afin d'améliorer l'affichage à l'écran." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Utiliser le lissa_ge" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Lorsque pris en charge, vous pouvez activer ou désactiver le lissage des images. Avec le lissage activé, l'affichage de la plupart des objets graphiques parait plus lisse et avec moins d'artefacts." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Utiliser Skia pour tous les rendus" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forcer le rendu du logiciel avec Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Redémarrage nécessaire. L'activation de cette fonction empêchera l'utilisation de pilotes graphiques." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia est actuellement activé." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia est actuellement désactivé." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Rendu des images" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "_Afficher l'aperçu des polices" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Affiche les noms des polices sélectionnables dans la police correspondante, par exemple dans la zone Police de la barre de formatage." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Lisser la police d'écran" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Sélectionnez cette option pour lisser l'apparence du texte à l'écran." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "à _partir de :" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Saisissez la plus petite taille de police à laquelle appliquer l'anticrénelage." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listes des polices" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Exécuter les tests graphiques" diff -Nru libreoffice-7.3.4/translations/source/fr/dbaccess/messages.po libreoffice-7.3.5/translations/source/fr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/fr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-19 07:30+0000\n" "Last-Translator: Jean-Baptiste Faure \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562266832.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Créer une _nouvelle base de données" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Sélectionnez cette option pour créer une nouvelle base de données." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Base de données intégrée :" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Ouvrir un _fichier de base de données existant" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Sélectionnez cette option pour ouvrir un fichier de base de données à partir d'une liste de fichiers récemment utilisés ou d'une boîte de dialogue de sélection de fichiers." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Récemment utilisé :" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Sélectionnez un fichier de base de données à ouvrir dans la liste des fichiers récemment utilisés. Cliquez sur Terminer pour ouvrir le fichier immédiatement et pour quitter l'assistant." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ouvrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Ouvre une boîte de dialogue de sélection de fichier dans laquelle vous pouvez sélectionner un fichier de base de données. Cliquez sur Ouvrir ou OK dans la boîte de dialogue de sélection de fichier pour ouvrir le fichier immédiatement et pour quitter l'assistant." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connecter une base de données e_xistante" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Sélectionnez cette option pour créer un document de base de données pour une connexion de base de données existante." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Sélectionnez le type de base de données pour la connexion de base de données existante." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "ne sont disponibles dans cette installation." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "L'Assistant base de données crée un fichier de base de données qui contient des informations sur une base de données." diff -Nru libreoffice-7.3.4/translations/source/fr/extensions/messages.po libreoffice-7.3.5/translations/source/fr/extensions/messages.po --- libreoffice-7.3.4/translations/source/fr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-12-06 02:38+0000\n" "Last-Translator: Jean-Baptiste Faure \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557680922.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Rafraichir le formulaire" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Obtenir" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Envoyer" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texte" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (court)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (court YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (court YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (long)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "JJ/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/JJ/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/JJ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "JJ/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/JJ/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/JJ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-JJ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-JJ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Non sélectionné" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Sélectionné" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Non défini" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tous les enregistrements" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Enregistrement actif" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Page actuelle" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Non" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Oui" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulaire parent" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_vide" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_soi-même" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_haut" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Aucun" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Simple" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multiple" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Plage" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Par défaut" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Annuler" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Aide" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "L'entrée sélectionnée" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Position de l'entrée sélectionnée" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Mono-ligne" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multi-ligne" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multi-ligne avec formatage" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Aucun" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Les deux" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "À gauche en haut" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "À gauche centré" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "À gauche en bas" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "À droite en haut" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "À droite centré" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "À droite en bas" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Au dessus à gauche" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Au dessus centré" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Au dessus à droite" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Au dessous à gauche" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Au dessous centré" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Au dessous à droite" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centré" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Conserver" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Remplacer" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Tasser" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Non" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Conserver le ratio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajuster à la taille" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "De-gauche-à-droite" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De-droite-à-gauche" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utiliser les paramètres de l'objet supérieur" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Jamais" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Quand il a le focus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Toujours" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Au paragraphe" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Comme caractère" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "À la page" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Au cadre" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Au caractère" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "À la page" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "À la cellule" diff -Nru libreoffice-7.3.4/translations/source/fr/fpicker/messages.po libreoffice-7.3.5/translations/source/fr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/fr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-05-17 06:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" "Last-Translator: Jean-Baptiste Faure \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -189,7 +189,7 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:261 msgctxt "explorerfiledialog|places" msgid "Places" -msgstr "Emplacements" +msgstr "Favoris" #. Upnsg #: fpicker/uiconfig/ui/explorerfiledialog.ui:363 @@ -216,55 +216,55 @@ msgstr "Date de modification" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Ouvrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Jouer" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nom de fichier :" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Type de fichier :" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "En _lecture seule" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Enregistrer avec mot de passe" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Extension automatique du nom de fichier" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Éditer les _paramètres de filtre" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Chiffrer avec une clé GPG" diff -Nru libreoffice-7.3.4/translations/source/fr/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/fr/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/fr/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-01-01 10:38+0000\n" -"Last-Translator: sophie \n" -"Language-Team: French \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: French \n" "Language: fr\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1560351894.000000\n" @@ -285,7 +285,7 @@ "N0439\n" "help.text" msgid "Python scripts can be personal, shared, or embedded in documents. In order to execute them, %PRODUCTNAME Basic needs to be provided with Python script locations. Locating com.sun.star.script.provider.XScript interface compliant UNO objects allows the execution of Python scripts:" -msgstr "Les scripts Python peuvent être personnels, partagés ou intégrés aux documents. Afin de pouvoir les exécuter, %PRODUCTNAME Basic doit être fourni avec des emplacements de script Python. Localiser les objets UNO conformes à l'interface com.sun.star.script.provider.XScript permet l'exécution des scripts Python :" +msgstr "Les scripts Python peuvent être personnels, partagés ou intégrés aux documents. Afin de pouvoir les exécuter, %PRODUCTNAME Basic doit être fourni avec des emplacements de script Python. Localiser les objets UNO conformes à l'interface com.sun.star.script.provider.XScript permet l'exécution des scripts Python :" #. AZwVA #: basic_2_python.xhp diff -Nru libreoffice-7.3.4/translations/source/fr/nlpsolver/src/locale.po libreoffice-7.3.5/translations/source/fr/nlpsolver/src/locale.po --- libreoffice-7.3.4/translations/source/fr/nlpsolver/src/locale.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/nlpsolver/src/locale.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-11-01 22:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Jean-Baptiste Faure \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1369351570.000000\n" #. sv3GB @@ -23,7 +23,7 @@ "NLPSolverCommon.Properties.AssumeNonNegative\n" "property.text" msgid "Assume Non-Negative Variables" -msgstr "Assumer des variables non négatives" +msgstr "Présumer des variables non-négatives" #. 5jEje #: NLPSolverCommon_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/fr/sc/messages.po libreoffice-7.3.5/translations/source/fr/sc/messages.po --- libreoffice-7.3.4/translations/source/fr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-12 04:38+0000\n" "Last-Translator: Jean-Baptiste Faure \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562267285.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Affichage" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_age" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Dessine_r" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessiner" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objet" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Ob~jet" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Média" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimer" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Imprimer" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulaire" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulaire" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Outils" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Outils" @@ -25702,139 +25702,139 @@ msgstr "Im_age" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Organiser" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_ouleur" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grille" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Langue" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Révision" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Commentaires" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_parer" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Afficher" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Dessine_r" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "É_diter" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Organiser" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Afficher" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grou_per" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Police" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alignement" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Afficher" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insérer" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Média" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Cadre" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Organiser" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grille" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Afficher" diff -Nru libreoffice-7.3.4/translations/source/fr/sd/messages.po libreoffice-7.3.5/translations/source/fr/sd/messages.po --- libreoffice-7.3.4/translations/source/fr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-16 02:38+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: French \n" @@ -4173,109 +4173,109 @@ msgstr "~Tableau" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Image" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Dessine_r" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessiner" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objet" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objet" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Média" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulaire" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulaire" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Masque" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Masque" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Outils" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Outils" @@ -7062,109 +7062,109 @@ msgstr "~Tableau" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Image" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~ge" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Dessine_r" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessiner" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objet" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Ob~jet" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Média" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulaire" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulaire" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Masque" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Masque" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Outils" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Outils" diff -Nru libreoffice-7.3.4/translations/source/fr/svtools/messages.po libreoffice-7.3.5/translations/source/fr/svtools/messages.po --- libreoffice-7.3.4/translations/source/fr/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-19 07:30+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: French \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: French \n" "Language: fr\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559338263.000000\n" #. fLdeV @@ -2920,7 +2920,7 @@ #: svtools/inc/langtab.hrc:88 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Ireland)" -msgstr "Anglais (Irelande)" +msgstr "Anglais (Irlande)" #. RYtwA #: svtools/inc/langtab.hrc:89 diff -Nru libreoffice-7.3.4/translations/source/fr/sw/messages.po libreoffice-7.3.5/translations/source/fr/sw/messages.po --- libreoffice-7.3.4/translations/source/fr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-11 14:45+0000\n" "Last-Translator: sophie \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562266972.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Abaisse le style de paragraphe sélectionné d'un niveau dans la hiérarchie d'index." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Style" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Styles" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crée des entrées d'index à partir de styles de paragraphe spécifiques." @@ -13955,37 +13955,37 @@ msgstr "Changer de base de données" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Définir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de données utilisées" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Bases de données _disponibles" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Parcourir..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Ouvre une boîte de dialogue Ouvrir pour sélectionner un fichier de base de données (*.odb). Le fichier sélectionné est ajouté à la liste Bases de données disponibles." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Utilisez le bouton d'exploration pour sélectionner un fichier de base de données." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Liste toutes les bases de données actuellement utilisées." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Liste les bases de données qui sont enregistrées dans %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Changer de base de données" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de données attachée au document :" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Permet de changer les sources de données pour le document actif." @@ -20073,109 +20073,109 @@ msgstr "Utiliser le _document actif" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilise le document Writer existant comme base pour le document de mailing." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Créer un nou_veau document" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Crée un document Writer à utiliser pour le mailing." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Utiliser un document _existant" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Sélectionnez un document Writer existant comme base pour le document de mailing." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Partir d'un _modèle" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Sélectionnez le modèle à utiliser lors de la création du document de mailing." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Partir d'un document _récemment enregistré" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Créez un document de mailing à partir d'un document de mailing existant." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Sélectionnez le document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Pa_rcourir..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localisez le document Writer que vous souhaitez utiliser, puis cliquez sur Ouvrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pa_rcourir..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Ouvre une boîte de dialogue pour la sélection d'un modèle." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "La source de données du document actuel n'est pas enregistrée. Veuillez changer de base de données." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Changer de base de données..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Sélectionner le document de base pour le publipostage" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Spécifiez le document à utiliser comme base pour le document de mailing." @@ -22318,49 +22318,49 @@ msgstr "Objet" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Options" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Adapter" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlien" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordures" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Zone" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparence" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Actualiser" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Affiche les statistiques pour le fichier actif." diff -Nru libreoffice-7.3.4/translations/source/fr/vcl/messages.po libreoffice-7.3.5/translations/source/fr/vcl/messages.po --- libreoffice-7.3.4/translations/source/fr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-25 15:38+0000\n" "Last-Translator: Jean-Baptiste Faure \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562266983.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Imprimer plusieurs pages par feuille de papier." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personnaliser" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Sélectionnez le nombre de pages à imprimer par feuille de papier." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pages :" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Sélectionnez le nombre de lignes." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "par" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Sélectionnez le nombre de colonnes." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marge :" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Sélectionnez la marge entre les pages individuelles sur chaque feuille de papier." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre les pages" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distance :" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Sélectionnez la marge entre les pages imprimées et le bord du papier." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "du bord de la feuille" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordre :" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "De gauche à droite, puis vers le bas" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De haut en bas, puis vers la droite" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De haut en bas, puis vers la gauche" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De droite à gauche, puis vers le bas" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Sélectionnez l'ordre dans lequel les pages doivent être imprimées." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dessiner une bordure autour de chaque page" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Cochez pour dessiner une bordure autour de chaque page." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Sélectionnez pour imprimer le document en format brochure." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Aperçu de l'assemblage" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Modifiez la disposition des pages à imprimer sur chaque feuille de papier. L'aperçu affiche l'impression de la feuille finalisée." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Pl_us d'options" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Mise en page" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Standard" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprime le document actif, la sélection ou les pages que vous spécifiez. Vous pouvez également définir les options d'impression pour le document actif." diff -Nru libreoffice-7.3.4/translations/source/fur/chart2/messages.po libreoffice-7.3.5/translations/source/fur/chart2/messages.po --- libreoffice-7.3.4/translations/source/fur/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-07-01 16:17+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/cui/messages.po libreoffice-7.3.5/translations/source/fur/cui/messages.po --- libreoffice-7.3.4/translations/source/fur/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-05 11:21+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Automatic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galassie" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contrast alt" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Ossigjen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Brise" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/dbaccess/messages.po libreoffice-7.3.5/translations/source/fur/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/fur/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -3325,73 +3325,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vierç" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3399,7 +3399,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/extensions/messages.po libreoffice-7.3.5/translations/source/fur/extensions/messages.po --- libreoffice-7.3.4/translations/source/fur/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -291,537 +291,525 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(Selezionât)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Strenz" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/fpicker/messages.po libreoffice-7.3.5/translations/source/fur/fpicker/messages.po --- libreoffice-7.3.4/translations/source/fur/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -212,55 +212,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/sc/messages.po libreoffice-7.3.5/translations/source/fur/sc/messages.po --- libreoffice-7.3.4/translations/source/fur/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -25157,97 +25157,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25606,139 +25606,139 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/sd/messages.po libreoffice-7.3.5/translations/source/fur/sd/messages.po --- libreoffice-7.3.4/translations/source/fur/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -4159,109 +4159,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7049,109 +7049,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/sw/messages.po libreoffice-7.3.5/translations/source/fur/sw/messages.po --- libreoffice-7.3.4/translations/source/fur/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -10492,19 +10492,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13950,37 +13950,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13988,31 +13988,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20070,109 +20070,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22315,49 +22315,49 @@ msgstr "" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27047,7 +27047,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fur/vcl/messages.po libreoffice-7.3.5/translations/source/fur/vcl/messages.po --- libreoffice-7.3.4/translations/source/fur/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fur/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-07-01 16:16+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -2320,169 +2320,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fy/chart2/messages.po libreoffice-7.3.5/translations/source/fy/chart2/messages.po --- libreoffice-7.3.4/translations/source/fy/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-02-24 20:36+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -3602,7 +3602,7 @@ msgstr "Set it tal linen foar it diagram type Kolom en line." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Selektearje in basis diagram type." diff -Nru libreoffice-7.3.4/translations/source/fy/cui/messages.po libreoffice-7.3.5/translations/source/fy/cui/messages.po --- libreoffice-7.3.4/translations/source/fy/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-19 10:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563478856.000000\n" #. GyY9M @@ -17137,176 +17137,152 @@ msgid "Automatic" msgstr "Automatysk" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Heech kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassyk" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Sêfte wyn" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikoan s_tyl:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Fereasket in werstart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Hard_ware-fersnelling brûke" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Anti-a_liasing brûke" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia foar alle rendearring brûke" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia software rendearring forsearje" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Op 'e nij úteinsette is fereaske. It ynskeakeljen fan dit sil it brûkme fan Grafyske stjoerprogramma foarkomme." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia is no ynskeakele." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia is no útskeakele" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Werjefte fan ôfbyldingen" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Foa_rbyld fan lettertypen sjen litte" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Antyaliasin_g lettertype foar skerm" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "fa_n:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Lettertype list" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fy/dbaccess/messages.po libreoffice-7.3.5/translations/source/fy/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/fy/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-22 01:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562671484.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "In nij_e gegevensbank oanmeitsje" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Selektearje om in nije gegevensbank te meitsjen." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Ynbêde gegevensbank:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "In besteande gegevensbank _triem iepenje" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Selektearje om in gegevensbank te iepenjen fanút in list mei koartlyn brûkte triemmen of fanút in dialoochskerm foar triem seleksje." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Koartlyn brûkt:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Selektearje in te iepenjen gegevensbank triem út de list mei koartlyn brûkte triemmen. Klik op Foltôgje om de triem daliks te iepenjen en de assistint de ein berinne te litten." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Iepenje" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Iepenet in dialoochskerm foar triem seleksje wêryn in gegevensbank triem te selektearjen is. Klik op Iepenje of Okee yn it dialoochskerm foar triem seleksje om de triem daliks te iepenjen en de assistint de ein berinne te litten." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Mei in besteande gegevensbank _ferbine" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Selektearje om in gegevensbank dokumint te meitsjen foar in besteande gegevensbank ferbining." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Selektearje it gegevensbank type foar de besteande gegevensbank ferbining." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "It is net mooglik om in nije gegevensbank oan te meitsjen, omdat HSQLDB en Firebord net beskikber binne yn dizze opset." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "De Assistint gegevensbank makket in gegevensbank triem dat ynformaasje oer in gegevensbank befettet." diff -Nru libreoffice-7.3.4/translations/source/fy/extensions/messages.po libreoffice-7.3.5/translations/source/fy/extensions/messages.po --- libreoffice-7.3.4/translations/source/fy/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-20 18:53+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formulier fernije" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Krij" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Ferstjoere" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL-adres" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multypart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standert (koart)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standert (koart JJ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standert (koart JJJJ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standert (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/JJ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/JJ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "JJ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/JJJJ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/JJJJ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "JJJJ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "JJ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "JJJJ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 nm" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 nm" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Net selektearre" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selektearre" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Net fêststeld" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle records" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktyf record" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuele side" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nee" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Haad formulier" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_leech" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_haad" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_sels" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Gjint" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Inkel" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Meardere" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Berik" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontaal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Fertikaal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standert" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Okee" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Ofbrekke" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Help" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "It selektearre item" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posysje fan it selektearre item" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Inkele-rigel" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Meardere-rigels" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Meardere rigels mei yndieling" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Gjint" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontaal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Fertikaal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Beide" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Linksboppe" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Links sintrearre" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Linksûnder" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Rjochtsboppe" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Rjochts sintrearre" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Rjochtsûnder" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Linksboppe" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Boppe sintrearre" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Boppe rjochts" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Linksûnder" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Under sintrearre" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Under rjochts" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Sintrearre" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Behâlde" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ferfange" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Ynfâldzje" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nee" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Ferhâlding behâlde" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Oanpasse oan grutte" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Links nei rjochts" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Rjochts nei links" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "De ynstellingen fan it hegere objekt brûke" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nea" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "By fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Altyd" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Oan alinea" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "As teken" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Oan side" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Oan teken" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Oan teken" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Oan side" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Oan sel" diff -Nru libreoffice-7.3.4/translations/source/fy/fpicker/messages.po libreoffice-7.3.5/translations/source/fy/fpicker/messages.po --- libreoffice-7.3.4/translations/source/fy/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-28 07:36+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -216,55 +216,55 @@ msgstr "Oanpaste datum" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Iepenje" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Ofspylje" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Triem_namme:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Triem_type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Allinne-lêzen" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Mei wachtwurd bewarje" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatyske triem taheaksel" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Filter ynstellingen bewurkje" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Fersifere mei GPG kaai" diff -Nru libreoffice-7.3.4/translations/source/fy/sc/messages.po libreoffice-7.3.5/translations/source/fy/sc/messages.po --- libreoffice-7.3.4/translations/source/fy/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-19 08:37+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -25253,97 +25253,97 @@ msgstr "~Werjefte" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ofb_ylding" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ofbyldin~g" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenje" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenje" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Printsje" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Printsje" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulier" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ta_foeging" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ta~foeging" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ark" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "A~rk" @@ -25702,139 +25702,139 @@ msgstr "Ofb_ylding" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Skikke" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "K_leur" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Roaster" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Taal" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Resinsje" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Taljochtingen" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Fer_lykje" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Werjefte" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Te_kenje" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Bewurkje" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Skikke" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Werjefte" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Groe_pearje" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Le_ttertype" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Rjochting" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Werjefte" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Ynfoegje" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "R_amt" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Skikke" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Roaster" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Werjefte" diff -Nru libreoffice-7.3.4/translations/source/fy/sd/messages.po libreoffice-7.3.5/translations/source/fy/sd/messages.po --- libreoffice-7.3.4/translations/source/fy/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-02-11 05:36+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -4171,109 +4171,109 @@ msgstr "~Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Ofbylding" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ofbyldin~g" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenje" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenje" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulier" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Media" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Haad" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "T_afoeging" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ta~foeging" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ark" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "A~rk" @@ -7060,109 +7060,109 @@ msgstr "~Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Ofbylding" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ofbyldin~g" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenje" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenje" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulier" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Haad" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Haad" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "T_afoeging" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ta~foeging" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ark" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "A~rk" diff -Nru libreoffice-7.3.4/translations/source/fy/sw/messages.po libreoffice-7.3.5/translations/source/fy/sw/messages.po --- libreoffice-7.3.4/translations/source/fy/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-25 15:38+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -10499,19 +10499,19 @@ msgstr "Ferpleatst it selektearre alinea styl ien nivo leger yn de yndeks hierargy." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Styl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilen" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Makket yndeks items fan spesifike alinea stilen." @@ -13955,37 +13955,37 @@ msgstr "Gegevensbank útwikselje" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Fêststelle" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Brûkte gegevensbanken" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Beskikbere gegevensbanken" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Blêdzje..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Iepenet in dialoochskerm Triem iepenje wêryn jo in gegevensbank triem (*.odb) selektearje kinne. De selektearre triem wurdt oan de list Beskikbere gegevensbanken taheakke." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Brûk de knop blêdzje om in gegevensbank triem te selektearjen." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lit de gegevensbanken sjen dy op it stuit yn brûkme binne." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lit it list fan gegevensbanken sjen dy't registrearre binne yn %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Gegevensbank útwikselje" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Gegevensbank op dokumint tapast:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Feroaret de gegevensboarnen foar it aktive dokumint." @@ -20073,109 +20073,109 @@ msgstr "Brûk it aktuele _dokumint" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Brûkt it aktive Writer dokumint as de basis foar de standert brief." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "In n_ij dokumint oanmeitsje" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Makket in nij Writer dokumint dat foar de standert brief brûkt wurde kin." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Begjin fan út in best_eand dokumint" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Selektearje in besteand Writer dokumint dat as basis foar de standert brief brûkt wurde moat." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Begjin fan út in s_jabloan" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selektearje it sjabloan wêrmei jo de standertbrief meitsje wolle." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Begjin fan út in koartlyn bewarre start dokumint" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Brûk in besteand standertbrief as de basis foar in nije." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selektearje it dokumint." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "B_lêdzje..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Sykje it Writer dokumint dat jo brûke wolle en klik dan op Iepenje." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B_lêdzje..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Iepenet in dialoochskerm om in sjabloan te selektearjen." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "De gegevens boarnen fan it aktive dokumint binne net registrearre. Wikselje de gegevensbank." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Gegevensbank wikselje..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Begjin dokumint foar standertbrief selektearje" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "It dokumint dat jo as basis foar de standertbrief brûke wolle oantsjutte." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opsjes" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Omrinne" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ferwizing" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Rânen" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Gebiet" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Trochsichtich" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Fernije" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/fy/vcl/messages.po libreoffice-7.3.5/translations/source/fy/vcl/messages.po --- libreoffice-7.3.4/translations/source/fy/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/fy/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-06-18 21:47+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -2324,169 +2324,169 @@ msgstr "Printsje meardere siden op in fel papier." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Oanpast" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Selektearje hoefolle siden op ien fel papier printe moat wurde." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Siden:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selektearje it tal rigen." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "troch" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selektearje it tal kolommen." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marzje:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selektearje de marzje tusken yndividuele siden op elk blêd papier." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "tusken siden" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Ofstân:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selektearje de marzje tusken de te printsjen siden en papier râne." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "nei blêd râne" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Folchoarder:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Fan links nei rjochts, dan nei ûnderen" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Fan boppe nei ûnderen, dan nei rjochts" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Fan boppe nei ûnderen, dan nei links" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Fan rjochts nei links, dan nei ûnderen" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Selektearje de folchoarder wêryn de siden printe moatte wurde." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Teken in râne om elke side" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Ynstelle om in râne om elke side te tekenjen." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosjuere" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Selektearje om it dokumint yn brosjuere yndieling te printsjen." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Sortearring foarbyld" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Feroaret de yndieling fan de siden dy op elk blêd printe wurde. It foarbyld lit sjen hoe't elk blêd derút sil sjen." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_ear" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Side opmaak" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Algemien" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Printet it aktive dokumint, de aktive seleksje fan de oantsjutte siden. Jo kinne ek de print opsjes foar it aktive dokumint ynstelle." diff -Nru libreoffice-7.3.4/translations/source/ga/chart2/messages.po libreoffice-7.3.5/translations/source/ga/chart2/messages.po --- libreoffice-7.3.4/translations/source/ga/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-03-08 13:46+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ga/cui/messages.po libreoffice-7.3.5/translations/source/ga/cui/messages.po --- libreoffice-7.3.4/translations/source/ga/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-25 05:04+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Uathoibríoch" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Réaltra" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Ardchodarsnacht" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Ocsaigin" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clasaiceach" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Leoithne" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tíl na ndeilbhíní:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Teastaíonn atosú" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Úsáid luas_ghéarú crua-earraí" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Úsáid frithai_liasáil" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Aschur Grafaice" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Taispeáin _réamhamharc ar chlónna" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Frithailiasáil" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ó:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Liostaí na gClónna" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ga/dbaccess/messages.po libreoffice-7.3.5/translations/source/ga/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ga/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -3395,73 +3395,73 @@ msgstr "Cruthaigh bunachar sonraí _nua" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Bunachar sonraí l_eabaithe:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Oscail comhad bunachair _sonraí atá ann" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Úsáidte le _déanaí:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Oscail" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Ceangail le bunachar _sonraí atá ann" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ga/extensions/messages.po libreoffice-7.3.5/translations/source/ga/extensions/messages.po --- libreoffice-7.3.4/translations/source/ga/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Athnuaigh an fhoirm" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Faigh" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Postáil" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Ilpháirt" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Téacs" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Caighdeánach (gearr)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Caighdeánach (gearr: BB)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Caighdeánach (gearr: BBBB)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Caighdeánach (fada)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "LL/MM/BB" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/LL/BB" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "BB/MM/LL" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "LL/MM/BBBB" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/LL/BBBB" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "BBBB/MM/LL" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "BB-MM-LL" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "BBBB-MM-LL" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 IN" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 IN" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Gan Roghnú" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Roghnaithe" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Neamhshainithe" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Gach taifead" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "An taifead beo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "An leathanach reatha" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Níl" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Tá" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Máthairfhoirm" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_folamh" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Cineál ar bith" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Singil" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Iolraí" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Raon" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Cothrománach" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Ingearach" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Réamhshocrú" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cealaigh" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Cabhair" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "An iontráil roghnaithe" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Ionad na hiontrála roghnaithe" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Aon Líne" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Il-líne" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Il-líne le formáidiú" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Gan scrollbharraí" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Cothrománach" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Ingearach" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Iad araon" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3T" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Maol" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Barr ar chlé" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Barr sa lár" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Bun ar chlé" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Barr ar dheis" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Ar dheis agus i lár" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Bun ar dheis" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Thuas agus ar chlé" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Thuas agus i lár" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Thuas agus ar dheis" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Thíos agus ar chlé" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Thíos agus i lár" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Thíos agus ar dheis" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Láraithe" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Caomhnaigh" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ionadaigh" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Laghdaigh" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Níl" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Caomhnaigh an Cóimheas" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Oiriúnaigh go dtí an mhéid" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Clé-go-deas" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Deas-go-clé" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Úsáid na socruithe ón réad uachtarach" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Riamh" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Agus an fócas ann" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "I gCónaí" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Le hAlt" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Mar Charachtar" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Le Leathanach" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Le Fráma" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Le Carachtar" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Le Leathanach" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Le Cill" diff -Nru libreoffice-7.3.4/translations/source/ga/fpicker/messages.po libreoffice-7.3.5/translations/source/ga/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ga/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -216,55 +216,55 @@ msgstr "Dáta a mionathraíodh é" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Ai_nm comhaid:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Cineál _comhaid:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Inléite amháin" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Sábháil le focal faire" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Iarmhír u_athoibríoch ar ainm comhaid" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Cuir na socruithe _scagaire in eagar" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Criptigh le heochair GPG" diff -Nru libreoffice-7.3.4/translations/source/ga/sc/messages.po libreoffice-7.3.5/translations/source/ga/sc/messages.po --- libreoffice-7.3.4/translations/source/ga/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -25255,97 +25255,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Ta_rraing" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Réad" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Uirlisí" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25704,139 +25704,139 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Leag Amach" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "D_ath" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Greille" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Teanga" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Athbhreithnigh" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Nótaí" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Cuir i gCom_paráid" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Amharc" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Ta_rraing" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Eagar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Leag Amach" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Amharc" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grú_pa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_T" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Cló" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Ailíniú" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Amharc" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Ionsáigh" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Meáin" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "F_ráma" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Leag Amach" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Greille" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Amharc" diff -Nru libreoffice-7.3.4/translations/source/ga/sd/messages.po libreoffice-7.3.5/translations/source/ga/sd/messages.po --- libreoffice-7.3.4/translations/source/ga/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -4174,109 +4174,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7063,109 +7063,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ga/sw/messages.po libreoffice-7.3.5/translations/source/ga/sw/messages.po --- libreoffice-7.3.4/translations/source/ga/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -10518,19 +10518,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stíl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stíleanna" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13974,37 +13974,37 @@ msgstr "Malartaigh Bunachair Shonraí" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Sainigh" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bunachair Shonraí in Úsáid" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Bun_achair Shonraí Le Fáil" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Brabhsáil..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14014,31 +14014,31 @@ "Bain úsáid as an gcnaipe brabhsála chun comhad bunachair sonraí a roghnú." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Malartaigh Bunachair Shonraí" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Bunachar sonraí curtha i bhfeidhm ar cháipéis:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20092,109 +20092,109 @@ msgstr "Úsáid an _cháipéis reatha" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Cruthaigh cáipéis _nua" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Tosaigh le cáipéis atá _ann" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Tosaigh le t_eimpléad" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Tosaigh le cáipéis a _sábháladh le déanaí" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "B_rabhsáil..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B_rabhsáil..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Roghnaigh cáipéis tosaigh le haghaidh postchumaisc" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22337,49 +22337,49 @@ msgstr "Réad" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Cineál" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Roghanna" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Timfhill" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hipearnasc" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Imlínte" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Méid" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Trédhearcacht" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macra" @@ -27073,7 +27073,7 @@ msgstr "Nuashonraigh" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ga/vcl/messages.po libreoffice-7.3.5/translations/source/ga/vcl/messages.po --- libreoffice-7.3.4/translations/source/ga/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ga/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Saincheaptha" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Leathanaigh:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "le" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Imeall:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "idir leathanaigh" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Fad:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "go dtí imlíne na bileoige" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ord:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "clé go deas, ansin síos" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "barr go bun, ansin ar dheis" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "barr go bun, ansin ar chlé" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "deas go clé, ansin síos" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Tarraing imlíne timpeall gach leathanaigh" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Bróisiúr" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Leagan Amach an Leathanaigh" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Ginearálta" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gd/chart2/messages.po libreoffice-7.3.5/translations/source/gd/chart2/messages.po --- libreoffice-7.3.4/translations/source/gd/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-04-23 00:41+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gd/cui/messages.po libreoffice-7.3.5/translations/source/gd/cui/messages.po --- libreoffice-7.3.4/translations/source/gd/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-08-21 12:42+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -17131,176 +17131,152 @@ msgid "Automatic" msgstr "Fèin-obrachail" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Reul-chrios" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Iomsgaradh àrd" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clasaigeach" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Oiteag" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_toidhle na h-ìomhaigheige:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Feum air ath-thòiseachadh" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Cleachd luathachadh _bathar-cruaidh" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Cleachd _anti-aliasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Às-chur ghrafaigean" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Seall _ro-shealladh nan cruthan-clò" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Antialiasing cruth-clò na _sgrìn" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_o:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Liostaichean nan cruthan-clò" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gd/dbaccess/messages.po libreoffice-7.3.5/translations/source/gd/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/gd/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-08-21 09:15+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -3395,73 +3395,73 @@ msgstr "Cruthaich _stòr-dàta ùr" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Stòr-dàta l_eabaichte:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Fosgail _faidhle stòir-dhàta a tha ann mu thràth" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Air an cleachdadh o chionn ghoi_rid:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Fosgail" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Ceangail ri stòr-dàta a tha ann _mu thràth" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gd/extensions/messages.po libreoffice-7.3.5/translations/source/gd/extensions/messages.po --- libreoffice-7.3.4/translations/source/gd/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2019-04-23 00:43+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Ath-nuadhaich am foirm" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Faigh" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Postaich" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Ioma-phàirteach" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teacsa" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Stannardach (goirid)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Stannardach (goirid BB)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Stannardach (goirid BBBB)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Stannardach (fada)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "LL/MM/BB" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/LL/BB" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "BB/MM/LL" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "LL/MM/BBBB" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/LL/BBBB" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "BBBB/MM/LL" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "BB-MM-LL" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "BBBB-MM-LL" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 f" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 f" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Gun taghadh" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Air a thaghadh" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Gun deifinisean" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Gach reacord" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "An reacord beò" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "An duilleag làithreach" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Chan eil" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Tha" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Foirm pàraint" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Chan eil gin" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Singilte" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Iomadh" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Rainse" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Còmhnard" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Inghearach" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Bunaiteach" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Ceart ma-thà" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Sguir dheth" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Cobhair" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "An t-innteart a thagh thu" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Ionad an innteirt a thagh thu" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Aon loidhne" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Ioma-loidhne" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Ioma-loidhne le fòrmatadh" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Chan eil gin" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Còmhnard" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Inghearach" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "An dà chuid" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Rèidh" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Clì aig a’ bhàrr" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Clì sa mheadhan" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Clì aig a’ bhonn" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Deas aig a’ bhàrr" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Deas sa mheadhan" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Deas aig a’ bhonn" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Clì os a chionn" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Sa mheadhan os a chionn" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Deas os a chionn" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Clì foidhe" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Sa mheadhan foidhe" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Deas foidhe" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Meadhanaichte" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Glèidh" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Cuir ’na àite" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Co-theannaich" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Chan eil" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Glèidh an co-mheas" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Co-fhreagair ris a’ mheud" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Clì gu deas" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Deas gu clì" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Cleachd roghainnean an oibseict os-òrdanaichte" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Chan eil idir" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Ma bhios fòcas air" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "An-còmhnaidh" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ris a’ pharagraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Mar charactair" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ris an duilleag" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ris an fhrèam" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ris a’ charactar" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ris an duilleag" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Ris a’ chealla" diff -Nru libreoffice-7.3.4/translations/source/gd/fpicker/messages.po libreoffice-7.3.5/translations/source/gd/fpicker/messages.po --- libreoffice-7.3.4/translations/source/gd/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Ai_nm an fhaidhle:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Seòrsa an fhaidhle:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Ri leughadh a-mhàin" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Sàbhail le facal-faire" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Leudachan _ainm an fhaidhle gu fèin-obrachail" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Deasaich roghainnean na criathraige" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Crioptaich le iuchair GPG" diff -Nru libreoffice-7.3.4/translations/source/gd/sc/messages.po libreoffice-7.3.5/translations/source/gd/sc/messages.po --- libreoffice-7.3.4/translations/source/gd/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-08-21 09:49+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -25254,97 +25254,97 @@ msgstr "~Seall" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "De_albh" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "D~ealbh" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Tarraing" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Tarraing" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Oibseact" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Oibseact" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Meadhanan" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Meadhanan" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Clò-bhuail" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Clò-bh~uail" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Foi~rm" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Foi~rm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Innealan" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Innea~lan" @@ -25703,139 +25703,139 @@ msgstr "De_albh" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Socraich" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Dath" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Griod" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Cà_nan" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Lèi_rmheasan" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Beachdan" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Dèan c_oimeas" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Sealladh" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Tarraing" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Deasaich" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Socraich" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Sealladh" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Buidheann" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Cr_uth-clò" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Co-th_aobhadh" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Sealladh" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Cu_ir a-steach" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Meadhanan" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "F_rèama" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Socraich" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Griod" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Sealladh" diff -Nru libreoffice-7.3.4/translations/source/gd/sd/messages.po libreoffice-7.3.5/translations/source/gd/sd/messages.po --- libreoffice-7.3.4/translations/source/gd/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-08-21 09:58+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -4173,109 +4173,109 @@ msgstr "~Clàr" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Dealbh" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "D~ealbh" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Tarraing" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Tarraing" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Oibseact" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Oibseact" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Meadhanan" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Meadhanan" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Foi~rm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Foi~rm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Maighstir" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Maighstir" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Innealan" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Innea~lan" @@ -7062,109 +7062,109 @@ msgstr "~Clàr" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Dealbh" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "D~ealbh" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Tarraing" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Tarraing" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Oibseact" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Oibseact" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Meadhanan" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Meadhanan" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Foi~rm" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Foi~rm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Maighstir" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Maighstir" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Innealan" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Innea~lan" diff -Nru libreoffice-7.3.4/translations/source/gd/sw/messages.po libreoffice-7.3.5/translations/source/gd/sw/messages.po --- libreoffice-7.3.4/translations/source/gd/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-09 20:01+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Gaelic \n" @@ -10511,19 +10511,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stoidhle" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stoidhlean" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13967,37 +13967,37 @@ msgstr "Malairt na stòir-dhàta" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Mìnich" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Stòir-dhàta a tha 'gan cleachdadh" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Stòr-dàtannan _a tha ri fhaighinn" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Brabhsaich..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14007,31 +14007,31 @@ "Cleachd am putan brabhsaidh gus faidhle stòir-dhàta a lorg." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Malairt na stòir-dhàta" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "An stòr-dàta a chaidh a chur an sàs san sgrìobhainn:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20085,109 +20085,109 @@ msgstr "Cleachd an sgrìobhainn _làithreach" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Cruthaich sgrìobhainn ù_r" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "_Tòisich le sgrìobhainn a tha ann mu thràth" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Tòi_sich le teamplaid" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Tòisich le sgrì_obhainn tòiseachaidh a chaidh a shàbhaladh o chionn ghoirid" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Br_abhsaich..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Br_abhsaich..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Tagh an sgrìobhainn tòiseachaidh airson co-aonadh a' phuist" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22330,49 +22330,49 @@ msgstr "Oibseact" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Seòrsa" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Roghainnean" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Paisg" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ceangal-lìn" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Iomallan" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Raon" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Trìd-shoilleireachd" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27066,7 +27066,7 @@ msgstr "Ùraich" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gd/vcl/messages.po libreoffice-7.3.5/translations/source/gd/vcl/messages.po --- libreoffice-7.3.4/translations/source/gd/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gd/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2019-08-21 09:31+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Gnàthaichte" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Duilleagan:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "le" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marghan:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "eadar na duilleagan" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Astar:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ri iomall an t-siota" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Òrdugh:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "On taobh chlì gun taobh deas, sìos an uairsin" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "On bhàrr gun bhonn, deas an uairsin" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "On bhàrr gun bhonn, clì an uairsin" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Deas gu clì, sìos an uairsin" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Tarraing iomall mun cuairt air gach duilleag" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Leabhran-fiosrachaidh" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Co-dhealbhachd na duilleige" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Coitcheann" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gl/basctl/messages.po libreoffice-7.3.5/translations/source/gl/basctl/messages.po --- libreoffice-7.3.4/translations/source/gl/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2022-01-25 11:19+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554751866.000000\n" #. fniWp @@ -632,7 +632,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26 msgctxt "basicmacrodialog|BasicMacroDialog" msgid "Basic Macros" -msgstr "Macros básicas" +msgstr "Macros do BASIC" #. tFg7s #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:43 diff -Nru libreoffice-7.3.4/translations/source/gl/chart2/messages.po libreoffice-7.3.5/translations/source/gl/chart2/messages.po --- libreoffice-7.3.4/translations/source/gl/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-11-21 00:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547506915.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Definir o número de liñas para o tipo de gráfica de Columnas e liñas." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Seleccione un tipo de gráfica básico." @@ -5076,7 +5076,7 @@ #, fuzzy msgctxt "tp_Trendline|liststore_moving_type" msgid "Averaged Abscissa" -msgstr "Media da abscisa" +msgstr "Abscisa media" #. ptaCA #: chart2/uiconfig/ui/tp_Trendline.ui:379 diff -Nru libreoffice-7.3.4/translations/source/gl/cui/messages.po libreoffice-7.3.5/translations/source/gl/cui/messages.po --- libreoffice-7.3.4/translations/source/gl/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-22 12:53+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562229287.000000\n" #. GyY9M @@ -6075,7 +6075,7 @@ #: cui/uiconfig/ui/calloutpage.ui:45 msgctxt "calloutpage|extended_tip|valueset" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr " Prema no botón Chamadas estilo que quere aplicar ao texto explicativo seleccionado." +msgstr "Prema no estilo de texto explicativo que desexe aplicar ao texto explicativo seleccionado." #. cAZqx #: cui/uiconfig/ui/calloutpage.ui:76 @@ -6117,13 +6117,13 @@ #: cui/uiconfig/ui/calloutpage.ui:99 msgctxt "calloutpage|extended_tip|extension" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr " Seleccione onde desexa estender a liña de chamada de, en relación á caixa de chamada." +msgstr "Seleccione desde onde desexa estender a liña do texto explicativo en relación á caixa do texto explicativo." #. CGjKD #: cui/uiconfig/ui/calloutpage.ui:131 msgctxt "calloutpage|extended_tip|length" msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line." -msgstr " Introduza a lonxitude do segmento de liña de chamada que se estende desde a caixa de texto explicativo para o punto de inflexión da liña." +msgstr "Introduza a lonxitude do segmento de liña do texto explicativo que se estende desde a caixa de texto explicativo até o punto de inflexión da liña." #. SFvEw #: cui/uiconfig/ui/calloutpage.ui:144 @@ -6141,7 +6141,7 @@ #: cui/uiconfig/ui/calloutpage.ui:170 msgctxt "calloutpage|extended_tip|optimal" msgid "Click here to display a single-angled line in an optimal way." -msgstr " Prema aquí para ver unha soa liña en ángulo recto dun xeito optimizada." +msgstr "Prema aquí para ver unha soa liña en ángulo recto dun xeito óptimo." #. dD3os #: cui/uiconfig/ui/calloutpage.ui:190 @@ -6195,13 +6195,13 @@ #: cui/uiconfig/ui/calloutpage.ui:228 msgctxt "calloutpage|extended_tip|position" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr " Seleccione onde desexa estender a liña de chamada de, en relación á caixa de chamada." +msgstr "Seleccione desde onde desexa estender a liña do texto explicativo en relación á caixa do texto explicativo." #. rj7LU #: cui/uiconfig/ui/calloutpage.ui:248 msgctxt "calloutpage|extended_tip|by" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr " Seleccione onde desexa estender a liña de chamada de, en relación á caixa de chamada." +msgstr "Seleccione desde onde desexa estender a liña do texto explicativo en relación á caixa do texto explicativo." #. jG4AE #: cui/uiconfig/ui/calloutpage.ui:273 @@ -6213,7 +6213,7 @@ #: cui/uiconfig/ui/calloutpage.ui:294 msgctxt "calloutpage|extended_tip|spacing" msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box." -msgstr " caixa de chamada Introduza a cantidade de espazo que quere deixar entre o final da liña de chamada, e." +msgstr "Introduza a cantidade de espazo que quere deixar entre o final da liña do texto explicativo e a caixa do texto explicativo." #. wvzCN #: cui/uiconfig/ui/calloutpage.ui:314 @@ -6237,7 +6237,7 @@ #: cui/uiconfig/ui/calloutpage.ui:333 msgctxt "calloutpage|extended_tip|CalloutPage" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr " Prema no botón Chamadas estilo que quere aplicar ao texto explicativo seleccionado." +msgstr "Prema no estilo de texto explicativo que desexe aplicar ao texto explicativo seleccionado." #. vQp3A #: cui/uiconfig/ui/cellalignment.ui:49 @@ -7347,7 +7347,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:199 msgctxt "extended tip | colorField" msgid "Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog." -msgstr "Orema na grande área colirida da esqyerda oara seleccionar unha cor nova. Mediante este selectar pode modificar dous compoñentes da cor tal e como se representan noz modelos de cor RGB ou HSB. Teña en conta que estes son os compoñentes non sele cionados cos botóns de radio da parte dereita da caixa de diálogo." +msgstr "Prema na grande área colorida da esquerda para seleccionar unha cor nova. Mediante este selector pode modificar dous compoñentes da cor tal e como se representan nos modelos de cor RGB e HSB. Teña en conta que estes son os compoñentes non seleccionados cos botóns de radio da parte dereita da caixa de diálogo." #. N8gjc #: cui/uiconfig/ui/colorpickerdialog.ui:216 @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Automático" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alto contraste" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clásico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Indica o estilo de icona das iconas das barras de ferramentas e caixas de diálogo." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_tilo das iconas:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Engadir máis temas de iconas mediante extensións" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estilo das iconas" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Cómpre reiniciar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utilizar aceleración de hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accede directamente aos recursos de hardware do adaptador de visualización gráfica para mellorar a visualización da pantalla." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Empregar o suavizado da _letra" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Se for compatíbel, pode activar e desactivar o suavizado das gráficas. Co suavizado activado, a presentación da maioría dos obxectos gráficos ves mais fina e con menos artefactos." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Empregar Skia para toda a renderización" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Formzar a renderización por software de Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "É preciso reiniciar. Activar isto evita o uso de controladores gráficos." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia está activado." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia está desactivado." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Saída de imaxe" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Amosa_r a visualización dos tipos de letra" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra os nomes dos tipos de letra que se poden seleccionar no tipo de letra correspondente, por exemplo os tipos de letra na caixa Tipo de letra da barra de formato." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavizado dos tipos de letra da _pantalla" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Seleccione para suavizar a aparencia en pantalla do texto." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "d_e:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Introduza o tamaño de tipo de letra máis pequeno para aplicar a suavización." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas de tipos de letra" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Executar probas de gráficas" @@ -20630,7 +20606,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:123 msgctxt "textanimtabpage|extended_tip|BTN_UP" msgid "Scrolls text from bottom to top." -msgstr " texto Scrolls de abaixo cara arriba." +msgstr "Despraza o texto desde abaixo cara arriba." #. xD7QC #: cui/uiconfig/ui/textanimtabpage.ui:137 @@ -20684,7 +20660,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:189 msgctxt "textanimtabpage|extended_tip|BTN_DOWN" msgid "Scrolls text from top to bottom." -msgstr " texto Scrolls de arriba abaixo." +msgstr "Despraza o texto desde arriba cara abaixo." #. C8qts #: cui/uiconfig/ui/textanimtabpage.ui:233 diff -Nru libreoffice-7.3.4/translations/source/gl/dbaccess/messages.po libreoffice-7.3.5/translations/source/gl/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/gl/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-04 16:25+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562229307.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Cr_ear unha base de datos nova" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Seleccione para crear unha base de datos nova." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Base d_e datos incorporada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Abrir un _ficheiro de base de datos existente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Seleccione para abrir un ficheiro de base de datos dunha lista de ficheiros utilizados recentemente ou dunha caixa de diálogo de selección de ficheiro." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Utilizado _recentemente:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Seleccione un ficheiro de base de datos para o abrir da lista de ficheiros utilizados recentemente. Prema en Rematar para abrir o ficheiro inmediatamente e saír do asistente." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Abrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Abre unha caixa de diálogo de selección de ficheiro na que pode seleccionar un ficheiro de base de datos. Prema en Abrir ou en Aceptar para abrir o ficheiro inmediatamente e saír do asistente." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Conectarse a unha base de datos e_xistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Seleccione apra crear un documento de base de datos para unha conexión de base de datos existente." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Seleccione o tipo de base de datos da conexión de base de datos existente." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Non é posíbel crear unha base de datos nova porque nesta instalación non están dispoñíbeis nin HSQLDB nin Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "O Asistente de bases de datos crea un ficheiro de base de datos que contén información sobre unha base de datos." diff -Nru libreoffice-7.3.4/translations/source/gl/extensions/messages.po libreoffice-7.3.5/translations/source/gl/extensions/messages.po --- libreoffice-7.3.4/translations/source/gl/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-25 11:19+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1559593428.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Actualizar formulario" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Obter" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Publicar" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Varias partes" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estándar (curto)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estándar (AA curto)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estándar (AAAA curto)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estándar (longo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Non seleccionado" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleccionado" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Sen definir" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Todos os rexistros" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Rexistro activo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Páxina actual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Non" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Si" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulario pai" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "en _branco" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_pai" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_mesmo" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ningún" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Único" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Intervalo" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predeterminada" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Aceptar" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancelar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Axuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "A entrada seleccionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posición da entrada seleccionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Liña única" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multiliña" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multiliña con formato" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ningún" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambas" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plano" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Esquerda superior" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Esquerda centrada" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Esquerda inferior" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Dereita superior" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Dereita centrada" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Dereita inferior" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Arriba á esquerda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Arriba centrado" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Arriba á dereita" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Abaixo á esquerda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Abaixo centrado" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Abaixo á dereita" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrado" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Conservar" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Substituír" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Recoller" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Non" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Manter a proporción" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Axustar ao tamaño" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Da esquerda á dereita" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Da dereita á esquerda" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizar a configuración do obxecto superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nunca" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Cando estea enfocada" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ao parágrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Como carácter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Á páxina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ao marco" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ao carácter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Á páxina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Á cela" diff -Nru libreoffice-7.3.4/translations/source/gl/extras/source/autocorr/emoji.po libreoffice-7.3.5/translations/source/gl/extras/source/autocorr/emoji.po --- libreoffice-7.3.4/translations/source/gl/extras/source/autocorr/emoji.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/extras/source/autocorr/emoji.po 2022-07-15 19:12:51.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-15 22:35+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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: Weblate 4.1.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516659832.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -8294,7 +8294,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "chamada" +msgstr "chamando" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #. d3uys diff -Nru libreoffice-7.3.4/translations/source/gl/formula/messages.po libreoffice-7.3.5/translations/source/gl/formula/messages.po --- libreoffice-7.3.4/translations/source/gl/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2021-05-14 16:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:01+0200\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" @@ -1738,19 +1738,19 @@ #: formula/inc/core_resource.hrc:2568 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE" -msgstr "MODO" +msgstr "MODA" #. unFXZ #: formula/inc/core_resource.hrc:2569 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE.SNGL" -msgstr "MODO.UNICO" +msgstr "MODA.UNICA" #. MUvgH #: formula/inc/core_resource.hrc:2570 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE.MULT" -msgstr "MODO.MULT" +msgstr "MODA.MULT" #. DYFQo #: formula/inc/core_resource.hrc:2571 diff -Nru libreoffice-7.3.4/translations/source/gl/fpicker/messages.po libreoffice-7.3.5/translations/source/gl/fpicker/messages.po --- libreoffice-7.3.4/translations/source/gl/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-23 08:03+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" @@ -216,55 +216,55 @@ msgstr "Data de modificación" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Abrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Re_producir" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Nome do _ficheiro:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo de ficheiro:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Só lectura" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Gardar con contrasinal" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensión _automática do nome do ficheiro" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar configuración de _filtro" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Cifrar con chave GPG" diff -Nru libreoffice-7.3.4/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566398018.000000\n" #. W5ukN @@ -16404,7 +16404,7 @@ "ContextLabel\n" "value.text" msgid "~Block Arrows" -msgstr "Frechas de ~bloque" +msgstr "Frechas ~largas" #. Mzxkf #: GenericCommands.xcu @@ -16414,7 +16414,7 @@ "TooltipLabel\n" "value.text" msgid "Block Arrows" -msgstr "Frechas de bloque" +msgstr "Frechas largas" #. ma5HR #: GenericCommands.xcu @@ -19846,7 +19846,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "Formato do contorno" +msgstr "Formato do esquema" #. TSDD9 #: GenericCommands.xcu @@ -19856,7 +19856,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "F~ormato do contorno" +msgstr "F~ormato do esquema" #. RMCDt #: GenericCommands.xcu @@ -19866,7 +19866,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "Seleccionar formato do contorno" +msgstr "Seleccionar formato do esquema" #. uKMCr #: GenericCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/gl/sc/messages.po libreoffice-7.3.5/translations/source/gl/sc/messages.po --- libreoffice-7.3.4/translations/source/gl/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-22 12:53+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562229906.000000\n" #. kBovX @@ -2177,7 +2177,7 @@ #: sc/inc/globstr.hrc:375 msgctxt "STR_PIVOT_STYLE_CATEGORY" msgid "Pivot Table Category" -msgstr "Categoría dinámica" +msgstr "Categoría de táboa dinámica" #. bTwc9 #: sc/inc/globstr.hrc:376 @@ -14472,7 +14472,7 @@ #: sc/inc/scfuncs.hrc:3498 msgctxt "SC_OPCODE_GET_PIVOT_DATA" msgid "Data field" -msgstr "Capo de datos" +msgstr "Campo de datos" #. 3E4Np #: sc/inc/scfuncs.hrc:3499 @@ -25254,97 +25254,97 @@ msgstr "~Ver" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_axe" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~xe" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Debuxa_r" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Debuxar" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Obxecto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Obxecto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimir" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Im~primir" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulario" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulario" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ferramen~tas" @@ -25703,139 +25703,139 @@ msgstr "Im_axe" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Dispor" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_or" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grade" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Idioma" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisión" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentarios" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_parar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Ver" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Debuxa_r" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Dispor" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Ver" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_po" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Tip_o de letra" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Aliñamento" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Ver" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inserir" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimedia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ma_rco" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Dispor" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grade" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Ver" @@ -29510,7 +29510,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:73 msgctxt "sheetprintpage|radioBTN_TOPDOWN" msgid "_Top to bottom, then right" -msgstr "_De arriba a abaixo, despois á dereita" +msgstr "_De arriba para abaixo, despois para a dereita" #. Fjdpq #: sc/uiconfig/scalc/ui/sheetprintpage.ui:83 @@ -30824,7 +30824,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:361 msgctxt "sortoptionspage|topdown" msgid "_Top to bottom (sort rows)" -msgstr "De _arriba a abaixo (ordenar liñas)" +msgstr "De _arriba cara abaixo (ordenar liñas)" #. bSvKu #: sc/uiconfig/scalc/ui/sortoptionspage.ui:370 @@ -30908,13 +30908,13 @@ #: sc/uiconfig/scalc/ui/sortwarning.ui:83 msgctxt "sortwarning|sorttext" msgid "The cells next to the current selection also contain data. Do you want to extend the sort range to %1, or sort the currently selected range, %2?" -msgstr "As celas próximas á selección actual tamén conteñen datos. Quere estender o alcance da ordenación a %1, ou ordenar o intervalo seleccionado, %2?" +msgstr "As celas próximas á selección actual tamén conteñen datos. Quere estender o alcance da ordenación a %1 ou ordenar o intervalo seleccionado, %2?" #. Ny8FF #: sc/uiconfig/scalc/ui/sortwarning.ui:103 msgctxt "sortwarning|sorttip" msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted." -msgstr "Suxestión: O intervalo de ordenación pode detectarse automaticamente. Sitúe o cursor da cela dentro dunha lista e execute a ordenación. Ordenara o intervalo completo de celas veciñas non baleiras." +msgstr "Suxestión: O intervalo de ordenación pode detectarse automaticamente. Sitúe o cursor da cela dentro dunha lista e execute a ordenación. Ordenarase o intervalo completo de celas veciñas non baleiras." #. p9BBw #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29 diff -Nru libreoffice-7.3.4/translations/source/gl/sd/messages.po libreoffice-7.3.5/translations/source/gl/sd/messages.po --- libreoffice-7.3.4/translations/source/gl/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-11-05 04:42+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+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" @@ -92,7 +92,7 @@ #: sd/inc/DocumentRenderer.hrc:48 msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES" msgid "Top to bottom, then right" -msgstr "De arriba a abaixo, e despois á dereita" +msgstr "De arriba para abaixo, e despois para a dereita" #. peBEn #: sd/inc/DocumentRenderer.hrc:53 @@ -4173,109 +4173,109 @@ msgstr "~Táboa" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imaxe" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~xe" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Debuxa_r" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Debuxar" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Obxecto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Obxecto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulario" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulario" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Principal" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Principal" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Ferramentas" @@ -7062,109 +7062,109 @@ msgstr "~Táboa" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imaxe" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~xe" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Debuxa_r" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Debuxar" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Obxecto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Obxecto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulario" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulario" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Principal" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Principal" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensión" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensión" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Ferramen~tas" diff -Nru libreoffice-7.3.4/translations/source/gl/svx/messages.po libreoffice-7.3.5/translations/source/gl/svx/messages.po --- libreoffice-7.3.4/translations/source/gl/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-02-04 19:38+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559330444.000000\n" #. 3GkZj @@ -14411,7 +14411,7 @@ #: svx/uiconfig/ui/defaultshapespanel.ui:267 msgctxt "defaultshapespanel|label8" msgid "Callouts" -msgstr "Globos" +msgstr "Textos explicativos" #. ABCTr #: svx/uiconfig/ui/defaultshapespanel.ui:299 diff -Nru libreoffice-7.3.4/translations/source/gl/sw/messages.po libreoffice-7.3.5/translations/source/gl/sw/messages.po --- libreoffice-7.3.4/translations/source/gl/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562578065.000000\n" #. v3oJv @@ -710,25 +710,25 @@ #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "Distancia da liña" +msgstr "Liña: Distancia" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Style" -msgstr "Estilo de liña" +msgstr "Liña: Estilo" #. noNDX #: sw/inc/inspectorproperties.hrc:40 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Width" -msgstr "Largura da liña" +msgstr "Liña: Largura" #. MVL7X #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "Largura da liña exterior" +msgstr "Liña exterior: Largura" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 @@ -830,13 +830,13 @@ #: sw/inc/inspectorproperties.hrc:58 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Prefix" -msgstr "Car.: Prefixo de combinación" +msgstr "Car.: Prefixo de combinación" #. nq7ZN #: sw/inc/inspectorproperties.hrc:59 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Suffix" -msgstr "Car.: Sufixo de combinación" +msgstr "Car.: Sufixo de combinación" #. EYEqN #: sw/inc/inspectorproperties.hrc:60 @@ -1454,7 +1454,7 @@ #: sw/inc/inspectorproperties.hrc:162 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Follow Style" -msgstr "Estilo seguinte" +msgstr "Estilo: Seguir" #. 32Vgt #: sw/inc/inspectorproperties.hrc:163 @@ -1472,25 +1472,25 @@ #: sw/inc/inspectorproperties.hrc:165 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Events" -msgstr "Eventos de hiperligazóns" +msgstr "Hiperligazón: Eventos" #. XU6P3 #: sw/inc/inspectorproperties.hrc:166 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Name" -msgstr "Nome da hiperligazón" +msgstr "Hiperligazón: Nome" #. qRBxH #: sw/inc/inspectorproperties.hrc:167 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Target" -msgstr "Destino da hiperligazón" +msgstr "Hiperligazón: Destino" #. BoFLZ #: sw/inc/inspectorproperties.hrc:168 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink URL" -msgstr "URL da hiperligazón" +msgstr "Hiperligazón: URL" #. CbvLt #: sw/inc/inspectorproperties.hrc:169 @@ -1556,37 +1556,37 @@ #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Level" -msgstr "Nivel de numeración" +msgstr "Numeración: Nivel" #. CEkBY #: sw/inc/inspectorproperties.hrc:180 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "Regras de numeración" +msgstr "Numeración: Regras" #. nTMoh #: sw/inc/inspectorproperties.hrc:181 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Start Value" -msgstr "Valor inicial da numeración" +msgstr "Numeración: Valor inicial" #. tBVDF #: sw/inc/inspectorproperties.hrc:182 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Style Name" -msgstr "Nome do estilo de lista" +msgstr "Lista: Nome do estilo" #. zrVDM #: sw/inc/inspectorproperties.hrc:183 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Content Visible" -msgstr "Contido de esquema visíbel" +msgstr "Esquema: Contido visíbel" #. NNuo4 #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "Nivel de esquema" +msgstr "Esquema: Nivel" #. syTbJ #: sw/inc/inspectorproperties.hrc:185 @@ -1598,13 +1598,13 @@ #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "Desprazamento do número de páxina" +msgstr "Páx.: Desprazamento do número" #. ryHzy #: sw/inc/inspectorproperties.hrc:187 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Style Name" -msgstr "Nome do estilo de páxina" +msgstr "Páx.: Nome do estilo" #. UyyB6 #: sw/inc/inspectorproperties.hrc:188 @@ -1730,55 +1730,55 @@ #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Caps" -msgstr "Guionización de parágrafo sen maiúsculas" +msgstr "Par.: Guionización sen maiúsculas" #. 4bemD #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "Bolsa de recursos de interoperación de parágrafo" +msgstr "Par.: Bolsa de recursos de interoperabilidade" #. fCGA4 #: sw/inc/inspectorproperties.hrc:210 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "Parágrafo con sangrado automático na primeira liña" +msgstr "Par.: Sangrado automático na primeira liña" #. Q68Bx #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "Parágrafo a distancia de carácter" +msgstr "Par.: Distancia de carácter" #. FGVAd #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "Parágrafo conectado ao bordo" +msgstr "Par.: Conectado ao bordo" #. tBy9h #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "O parágrafo ten regras prohibidas" +msgstr "Par.: Regras prohibidas" #. yZZSA #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "O parágrafo ten puntuación colgante" +msgstr "Par.: Puntuación colgante" #. dDgrE #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "O parágrafo ten guionización" +msgstr "Par.: Ten guionización" #. mHDWE #: sw/inc/inspectorproperties.hrc:216 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "O parágrafo reinicia a numeración" +msgstr "Par.: Reinicio de numeración" #. Mnm2C #: sw/inc/inspectorproperties.hrc:217 @@ -1928,13 +1928,13 @@ #: sw/inc/inspectorproperties.hrc:241 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "Axuste de viñetas" +msgstr "Viñetas: Axuste" #. 3WwCU #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Char Style Name" -msgstr "Nome do estilo de caracter das viñetas" +msgstr "Viñetas: Nome do estilo de carácter" #. DqMAX #: sw/inc/inspectorproperties.hrc:243 @@ -1946,13 +1946,13 @@ #: sw/inc/inspectorproperties.hrc:244 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Position" -msgstr "Posición das viñetas" +msgstr "Viñetas: Posición" #. ZREEa #: sw/inc/inspectorproperties.hrc:245 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Text" -msgstr "Texto das viñetas" +msgstr "Viñetas: Texto" #. tJEtt #: sw/inc/inspectorproperties.hrc:246 @@ -7957,7 +7957,7 @@ #: sw/inc/strings.hrc:1060 msgctxt "STR_TEXT" msgid "Then, Else" -msgstr "Entón, se non" +msgstr "Entón, Se non" #. bo8yF #: sw/inc/strings.hrc:1061 @@ -10499,19 +10499,19 @@ msgstr "Baixa o estilo de parágrafo seleccionado a un nivel superior na xerarquía do índice." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estilo" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilos" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Crea entradas de índice a partir de estilos de parágrafo específicos." @@ -13952,40 +13952,40 @@ #: sw/uiconfig/swriter/ui/exchangedatabases.ui:28 msgctxt "exchangedatabases|ExchangeDatabasesDialog" msgid "Exchange Databases" -msgstr "Substituír bases de datos" +msgstr "Trocar bases de datos" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de datos en uso" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Bases de datos dispoñíbeis" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Explorar..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." -msgstr " Abre unha caixa de diálogo de abertura de ficheiros para seleccionar unficheiro de base de datos (* .odb). O ficheiro seleccionado engádese á listade bases de datos dispoñíbeis." +msgstr "Abre unha caixa de diálogo para abrir ficheiros para seleccionar un ficheiro de base de datos (* .odb). O ficheiro seleccionado engádese á listaxe de bases de datos dispoñíbeis." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Use o botón Explorar para seleccionar un ficheiro de base de datos." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lista as bases de datos que están actualmente en uso." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lista as bases de datos que están rexistradas no %PRODUCTNAME ." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" -msgstr "Substituír bases de datos" +msgstr "Trocar bases de datos" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de datos aplicada ao documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Cambiar as fontes de datos do documento actual." @@ -14448,19 +14448,19 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:359 msgctxt "fldfuncpage|cond1ft" msgid "Then" -msgstr "Despois" +msgstr "Entón" #. bByDc #: sw/uiconfig/swriter/ui/fldfuncpage.ui:378 msgctxt "fldfuncpage|extended_tip|cond1" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "Introduza o texto que queira mostrar cando se cumpra a condición na caixa Then e o texto que queira mostrar cando non se cumpra a condición na caixa Se non." +msgstr "Introduza o texto que queira mostrar cando se cumpra a condición na caixa Entón e o texto que queira mostrar cando non se cumpra a condición na caixa Se non." #. VjhuY #: sw/uiconfig/swriter/ui/fldfuncpage.ui:403 msgctxt "fldfuncpage|cond2ft" msgid "Else" -msgstr "Noutrocaso" +msgstr "Se non" #. EACKA #: sw/uiconfig/swriter/ui/fldfuncpage.ui:422 @@ -14502,7 +14502,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:588 msgctxt "fldfuncpage|extended_tip|remove" msgid "Removes the selected item from the list." -msgstr " Elimina oelemento seleccionado da lista." +msgstr "Elimina da lista o elemento seleccionado." #. 4oMDF #: sw/uiconfig/swriter/ui/fldfuncpage.ui:600 @@ -20073,109 +20073,109 @@ msgstr "Usar o _documento actual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Usa o documento de Writer actual como a base para o documento de combinación de correspondencia." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crear un documento _novo" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr " Crea un novo documento de Writer para usar para a combinación de correspondencia." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Comezar a partir dun documento _existente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Seleccione un documento de Writer existente para usar como base para o documento de combinación de correspondencia." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Comezar a partir dun _modelo" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Seleccione o modelo co que quere crear o seu documento de combinación de correspondencia." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Comezar a partir dun modelo inicial gardado recentemente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Use un documento de combinación de correspondencia existente como base para un novo documento de combinación de correspondencia." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr " Seleccione o documento." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "E_xplorar..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localice o documento de Writer que desexa utilizar e prema en Abrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "E_xplorar..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Abre un caixa de diálogo para seleccionar un modelo." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "A fonte de datos do documento actual non está rexistrada. Substitúa a base de datos." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Substituír base de datos..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleccione o documento inicial para a combinación de correspondencia" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Indique que documento desexa empregar como base para o documento de combinación de correspondencia." @@ -22318,49 +22318,49 @@ msgstr "Obxecto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcións" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Axustar" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperligazón" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordos" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparencia" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Actualizar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Mostra as estatísticas do ficheiro actual." diff -Nru libreoffice-7.3.4/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.3.5/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.3.4/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2022-07-15 19:12:51.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-03-05 18:15+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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: Weblate 3.10.3\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1450045687.000000\n" #. sc9Hg @@ -214,7 +214,7 @@ "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 "O artigo do wiki co título '$ARG1' aínda non existe. Quere crear un novo artigo con ese título?" +msgstr "O artigo do wiki co título «$ARG1» aínda non existe. Quere crear un novo artigo con ese título?" #. PiBrD #: WikiExtension.xcu diff -Nru libreoffice-7.3.4/translations/source/gl/vcl/messages.po libreoffice-7.3.5/translations/source/gl/vcl/messages.po --- libreoffice-7.3.4/translations/source/gl/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gl/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-09-27 17:20+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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" @@ -2324,169 +2324,169 @@ msgstr "Introducir nomes para as series de datos." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizado" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleccione un formato para mostrar a data." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Páxinas:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleccione o tipo de aparencia 3D." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "de" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Definir a resolución." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marxe:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Seleccione un subtipo do tipo de gráfica básico." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre páxinas" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distancia:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Prema para ir á páxina do asistente especificada." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ata o bordo da folla" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Orde:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Da esquerda para a dereita, e despois para abaixo" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" -msgstr "De arriba a abaixo, e despois á dereita" +msgstr "De arriba para abaixo, e despois para a dereita" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De arriba para abaixo, e despois para a dereita" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Da dereita para a esquerda, e despois para abaixo" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleccione un tipo de gráfica básico." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Deseñar un bordo arredor de cada páxina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Prema para ir á páxina do asistente especificada." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Folleto" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Seleccione para imprimir o documento no formato de folleto." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Vista previa do agrupamento" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Cambie a disposición das páxinas que se van imprimir en cada folla de papel. A vista previa mostra a aparencia final coa que ficará cada folla." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Máis" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Disposición da páxina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Xeral" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprime o documento ou selección actuais ou as páxinas que vostede indique. Tamén pode establecer as opcións de impresión do documento actual." diff -Nru libreoffice-7.3.4/translations/source/gu/chart2/messages.po libreoffice-7.3.5/translations/source/gu/chart2/messages.po --- libreoffice-7.3.4/translations/source/gu/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3654,7 +3654,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/cui/messages.po libreoffice-7.3.5/translations/source/gu/cui/messages.po --- libreoffice-7.3.4/translations/source/gu/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17506,180 +17506,155 @@ msgid "Automatic" msgstr "આપોઆપ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "આકાશગંગા" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ઊંચો તફાવત" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ઑક્સિજન" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ઉત્તમ" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "હાડૅવેર પ્રવેગકનો ઉપયોગ કરો (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Directly accesses hardware features of the graphical display adapter to improve the screen display." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ઉપનામથી ઊલટાને વાપરો (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ગ્રાફીકસ આઉટપુટ" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ફોન્ટનું પુવૅદશૅન દશાૅવો(_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "સ્ક્રીન ફોન્ટ એન્ટીઅલીઆસીંગ (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "માંથી (_m)" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ફોન્ટ યાદીઓ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/dbaccess/messages.po libreoffice-7.3.5/translations/source/gu/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/gu/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Gujarati \n" @@ -3464,74 +3464,74 @@ msgstr "નવો ડેટાબેઝ બનાવો (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "એમ્બેડેડ થયેલ ડેટાબેઝ (_E)" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "વર્તમાન ડેટાબેઝ ફાઈલ ખોલો (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "તાજેતરમાં વાપરેલ (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ખોલો" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "વર્તમાન ડેટાબેઝનું જોડાણ (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3539,7 +3539,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/extensions/messages.po libreoffice-7.3.5/translations/source/gu/extensions/messages.po --- libreoffice-7.3.4/translations/source/gu/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,600 +309,588 @@ msgid "Refresh form" msgstr "માંથી પુનઃતાજું કરો" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "મેળવો" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "પોસ્ટ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "મલ્ટીપાર્ટ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "લખાણ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "પ્રમાણભૂત (ટૂંકુ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "પ્રમાણભૂત (ટૂંકું YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "પ્રમાણભૂત (ટૂંકું YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "પ્રમાણભૂત (લાંબુ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "પસંદિત નથી" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "પસંદિત" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "વ્યાખ્યાયિત નથી" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "બધા રેકોર્ડો" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "સક્રિય રેકોર્ડ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "વર્તમાન પાનું" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ના" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "હા" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "પિતૃ ફોર્મ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "પ્રતિ (_T)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "કંઇ નહિં" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "એકજ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "વિવિધ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "વિસ્તાર" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "આડુ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ઉભુ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "મૂળભૂત" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "બરાબર" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "રદ કરો" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "મદદ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "પસંદિત પ્રવેશ" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "પસંદિત પ્રવેશનું સ્થાન" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "એક-લીટી" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ઘણી-લીટી" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "બંધારણ સાથેની ઘણી-લીટી" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "કંઇ નહિં" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "આડુ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ઉભુ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "બંને" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "૩D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "સપાટ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ઉપર ડાબે" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "વચ્ચે ડાબે" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "તળિયે ડાબે" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ઉપર જમણે" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "વચ્ચે જમણે" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "તળિયે જમણે" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ડાબેથી ઉપર" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "વચ્ચેથી ઉપર" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "જમણેથી ઉપર" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ડાબેથી નીચે" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "વચ્ચેથી નીચે" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "જમણેથી નીચે" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "મધ્યમાં" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "સાચવો" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "બદલો" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "પડી ભાંગવુ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ના" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "પ્રમાણ રાખો" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "માપ ને અનુરૂપ રાખો" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ડાબે-થી-જમણે" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "જમણે-થી-ડાબે" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "સુપરઓર્ડિનેટ ઓબ્જેક્ટ સુયોજનો ને વાપરો" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "કદી નહિં" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "જ્યારે પ્રકાશિત થયેલ" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "હંમેશા" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ફકરમાં" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "અક્ષર" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "પાનાંમાં" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ફ્રેમમાં" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "અક્ષર" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "પાનાંમાં" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/gu/fpicker/messages.po libreoffice-7.3.5/translations/source/gu/fpicker/messages.po --- libreoffice-7.3.4/translations/source/gu/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -221,61 +221,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ફાઇલ નામઃ" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ફાઈલ પ્રકાર (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "માત્ર-વાંચી શકાય (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "પાસવર્ડ સાથે સંગ્રહો (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "આપોઆપ ફાઈલ નામ એક્સટેન્સન (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ગાળક સુયોજનોમાં ફેરફાર કરો (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/sc/messages.po libreoffice-7.3.5/translations/source/gu/sc/messages.po --- libreoffice-7.3.4/translations/source/gu/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25755,97 +25755,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26231,153 +26231,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ગોઠવો" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "રંગ (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "જાળી (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ભાષા (_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "રીવ્યુ" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ટિપ્પણીઓ (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "સરખાવો (_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "દેખાવ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ફેરફાર (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ગોઠવો" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "દેખાવ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "જૂથ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ફોન્ટ (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ગોઠવણી" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "દેખાવ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "દાખલ કરો" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "મીડિયા" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ફ્રેમ (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ગોઠવો" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "જાળી (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/gu/sd/messages.po libreoffice-7.3.5/translations/source/gu/sd/messages.po --- libreoffice-7.3.4/translations/source/gu/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4221,109 +4221,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7185,109 +7185,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/sw/messages.po libreoffice-7.3.5/translations/source/gu/sw/messages.po --- libreoffice-7.3.4/translations/source/gu/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10736,19 +10736,19 @@ msgstr "Moves the selected paragraph style down one level in the index hierarchy." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "શૈલીઓ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creates index entries from specific paragraph styles." @@ -14250,37 +14250,37 @@ msgstr "ડેટાબેઝોની અદલાબદલી કરો" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "વ્યાખ્યા આપો" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ડેટાબેઝો વપરાશમાં છે" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "ઉપલબ્ધ ડેટાબેઝ (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "બ્રાઉઝ કરો..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14290,31 +14290,31 @@ "ડેટાબેઝ ફાઈલ પસંદ કરવા માટે બ્રાઉઝ બટન વાપરો." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lists the databases that are currently in use." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ડેટાબેઝોની અદલાબદલી કરો" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "દસ્તાવેજ પર અમલમાં મૂકાતો ડેટાબેઝઃ" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Change the data sources for the current document." @@ -20490,110 +20490,110 @@ msgstr "વર્તમાન દસ્તાવેજ વાપરો (_d)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Uses the current Writer document as the base for the mail merge document." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "નવું દસ્તાવેજ બનાવો (_w)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Creates a new Writer document to use for the mail merge." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "વર્તમાન દસ્તાવેજમાંથી શરૂ કરો (_e)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Select an existing Writer document to use as the base for the mail merge document." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ટેમ્પલેટમાંથી શરૂ કરો (_e)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Select the template that you want to create your mail merge document with." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "છેલ્લા સંગ્રહાયેલ શરૂઆતી દસ્તાવેજમાંથી શરૂ કરો (_m)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Use an existing mail merge document as the base for a new mail merge document." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Select the document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "બ્રાઉઝ કરો (_r)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "બ્રાઉઝ કરો (_r)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "મેઈલ મર્જ માટે શરૂઆતી દસ્તાવેજ પસંદ કરો" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22764,49 +22764,49 @@ msgstr "ઑબ્જેક્ટ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "પ્રકાર" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "વિકલ્પો" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "લપેટો" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "હાઇપરલિંક" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "કિનારીઓ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "વિસ્તાર" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "પારદર્શકતા" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "મેક્રો" @@ -27626,7 +27626,7 @@ msgstr "ફેરફાર" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gu/vcl/messages.po libreoffice-7.3.5/translations/source/gu/vcl/messages.po --- libreoffice-7.3.4/translations/source/gu/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gu/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2327,169 +2327,169 @@ msgstr "Creates a new master document." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "વૈવિધ્યપૂર્ણ" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Select this icon to browse through pages." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Inserts a row into the table." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "દ્રારા" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Inserts a row into the table." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Inserts a row into the table." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "પાનાંઓ વચ્ચે" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Inserts a row into the table." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "શીટ કિનારી માટે" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Inserts a row into the table." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "દરેક પાનાંની આસપાસ કિનારીને દોરો" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Inserts a row into the table." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "બ્રોશર" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." diff -Nru libreoffice-7.3.4/translations/source/gug/chart2/messages.po libreoffice-7.3.5/translations/source/gug/chart2/messages.po --- libreoffice-7.3.4/translations/source/gug/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-08-09 13:45+0000\n" "Last-Translator: pedrogimenez \n" "Language-Team: LANGUAGE \n" @@ -3652,7 +3652,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/cui/messages.po libreoffice-7.3.5/translations/source/gug/cui/messages.po --- libreoffice-7.3.4/translations/source/gug/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-09-01 16:20+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: Guarani (Paraguayan) \n" @@ -17155,176 +17155,152 @@ msgid "Automatic" msgstr "Automático" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Juavyreko Yvate" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clásico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Puru aceleración hard_ware rehe" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Puru bord_es-apesỹi" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Ñeseha Gráfica" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Techauka Mboyve Tipos de Letras" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Em_oapesỹi letra borde pantalla pe" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_guive:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas Letra Háicha" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/dbaccess/messages.po libreoffice-7.3.5/translations/source/gug/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/gug/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Guarani (Paraguayan) \n" @@ -3351,74 +3351,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ojepuru Ramo" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Eavri" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3426,7 +3426,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/extensions/messages.po libreoffice-7.3.5/translations/source/gug/extensions/messages.po --- libreoffice-7.3.4/translations/source/gug/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -301,582 +301,570 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Moñe'ẽrã" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estándar (mbyky)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estándar (mbyky YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estándar (mbyky YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estándar (puku)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Ojeporavo va'ekue" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Opavave registros" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registro kyre'ỹ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Rogue ko'ãgagua" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nahániri" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Héẽ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_Pyta" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Mavave" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Sencillo" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Hetaichagua" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Rango" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Oñenóva" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Oñembo'yva" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Oĩhaguéicha voi" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Eheja Rei" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pytyvõ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Peteĩ-línea" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Mavave" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Oñenóva" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Oñembo'yva" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Mokõive" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plano" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Asúpe ha yvate" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Línea mombyte" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Akatúa ha yvate" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "_Akatúa/Yvýpe" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Mongu'e asúpe" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Mongu'e akatúa" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Moñe'ẽrã guygui" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Mombyte" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Mbyekovia" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Michĩve" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nahániri" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantener proporción" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ojeahusta al Tamaño" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Asú akatúa gotyo" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Akatúa asu gotyo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Eipuru ojeguatyrõ va'ekue mba'e superiorgui" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Araka'eve" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Tapia" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "~Al Párrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Carácter icha" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Jeho Rogue" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Márcope" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al Carácter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Jeho Rogue" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/gug/fpicker/messages.po libreoffice-7.3.5/translations/source/gug/fpicker/messages.po --- libreoffice-7.3.4/translations/source/gug/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2020-02-10 17:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Guarani (Paraguayan) \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Téra Ñongatuha:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo Ñongatuhágui" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Moñe'ẽ-Año" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Ñongatu con password" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensión ñongatuhagui _automática" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar configuración _mboguágui" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/auxiliary.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/auxiliary.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/auxiliary.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/auxiliary.po 2022-07-15 19:12:51.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-11-25 19:33+0100\n" -"PO-Revision-Date: 2022-03-31 21:46+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562203919.000000\n" #. fEEXD @@ -536,7 +536,7 @@ "100501\n" "node.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. 6qzVL #: shared.tree @@ -545,7 +545,7 @@ "100502\n" "node.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. GMiKt #: shared.tree @@ -554,7 +554,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. gvsML #: shared.tree @@ -563,7 +563,7 @@ "100506\n" "node.text" msgid "HTML Export Wizard" -msgstr "Asistente de exportación a HTML" +msgstr "Asistente para exportación a HTML" #. 8tHJK #: shared.tree @@ -572,7 +572,7 @@ "100510\n" "node.text" msgid "Document Converter Wizard" -msgstr "Asistente de conversión de documentos" +msgstr "Asistente para conversión de documentos" #. zhnAF #: shared.tree diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-02-12 18:39+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565287211.000000\n" #. naSFZ @@ -2039,7 +2039,7 @@ "N0448\n" "help.text" msgid "def disposing(self, evt: EventObject): # mandatory routine" -msgstr "" +msgstr "def disposing(self, evt: EventObject): # rutina obligatoria" #. 9mtTR #: python_listener.xhp @@ -2219,7 +2219,7 @@ "par_id801636114808666\n" "help.text" msgid "Three library containers are shown in the Macro From list:" -msgstr "" +msgstr "Tres contenedores de bibliotecas figuran en la lista Macro de:" #. RnBRr #: python_locations.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2021-10-24 01:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -1499,7 +1499,7 @@ "par_id3150046\n" "help.text" msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date." -msgstr "Si se asigna la propiedad \"dropdown\" al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha." +msgstr "Si se asigna la propiedad «desplegable» al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha." #. Mofqo #: 20000000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548211825.000000\n" #. ViEWM @@ -6917,7 +6917,7 @@ "par_id301600788076785\n" "help.text" msgid "Access chart objects in Calc documents and manipulate their properties." -msgstr "" +msgstr "Acceder a los objetos de gráfico en los documentos de Calc y manipular sus propiedades." #. rzioM #: sf_chart.xhp @@ -9446,7 +9446,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies if a command button has or not the behaviour of a Cancel button." -msgstr "" +msgstr "Especifica si un botón de orden tiene o no el comportamiento de un botón Cancelar." #. Gft3Z #: sf_dialogcontrol.xhp @@ -9536,7 +9536,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default (OK) button." -msgstr "" +msgstr "Especifica si un botón de orden es el botón predeterminado (Aceptar)." #. GAdvJ #: sf_dialogcontrol.xhp @@ -13640,7 +13640,7 @@ "par_id271588334016191\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. Ggnnt #: sf_filesystem.xhp @@ -16448,7 +16448,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default OK button." -msgstr "" +msgstr "Especifica si un botón de orden es el botón Aceptar predeterminado." #. 2dP2A #: sf_formcontrol.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "«?» representa cualquier carácter único;" #. CFPcW #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: la cadena que se comprobará. Si está vacía, el método devuelve False." #. 7Ryzp #: sf_string.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2741,7 +2741,7 @@ "par_id3150693\n" "help.text" msgid "Date variables are assigned the value 0 internally; equivalent to converting the value to \"0\" with the Day, Month, Year or the Hour, Minute, Second function." -msgstr "A las variables de fecha se les asigna el valor 0 internamente; que equivale a convertir el valor a \"0\" con las funciones Day, Month, Year or the Hour, Minute, Second." +msgstr "A las variables de fecha se les asigna el valor 0 internamente, lo que equivale a convertir el valor a «0» con las funciones Day, Month, Year or the Hour, Minute o Second." #. WiXVw #: 01020100.xhp @@ -7232,7 +7232,7 @@ "hd_id543534\n" "help.text" msgid "Show handles" -msgstr "Muestra manillas" +msgstr "Mostrar agarraderas" #. wG6AD #: 01170101.xhp @@ -7241,7 +7241,7 @@ "par_id5060884\n" "help.text" msgid "Specifies whether the handles of the nodes should be displayed." -msgstr "Especifca si los manillas de los nodos deben ser mostrado." +msgstr "Especifica si se deben mostrar las agarraderas de los nodos." #. TC8mj #: 01170101.xhp @@ -7250,7 +7250,7 @@ "par_id4974822\n" "help.text" msgid "The handles are dotted lines that visualize the hierarchy of the tree control." -msgstr "Los manillas son líneas de puntos que visualiza la jerarquía del control de árbol." +msgstr "Las agarraderas son líneas punteadas que permiten visualizar la jerarquía del control en árbol." #. 55Gfe #: 01170101.xhp @@ -7268,7 +7268,7 @@ "hd_id4062013\n" "help.text" msgid "Show root handles" -msgstr "Muestra manillas de raíz" +msgstr "Mostrar agarraderas de raíz" #. nGccA #: 01170101.xhp @@ -7277,7 +7277,7 @@ "par_id3314004\n" "help.text" msgid "Specifies whether the handles of the nodes should also be displayed at root level." -msgstr "Especifica si los manillas de los nodos deben ser mostrado a nivel raíz." +msgstr "Especifica si las agarraderas de los nodos deben mostrarse al nivel de la raíz." #. GCfuF #: 01170101.xhp @@ -10256,7 +10256,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: una variable numérica o de cadena a la que se asignan los valores leídos desde el archivo abierto." #. 23Pzt #: 03020202.xhp @@ -32990,7 +32990,7 @@ "par_id3159201\n" "help.text" msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch." -msgstr "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación." +msgstr "Hace sonar un tono a través del altavoz del PC. El tono depende del sistema y no puede modificarse el volumen ni la modulación." #. JMATz #: 03130100.xhp @@ -34646,7 +34646,7 @@ "tit\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Objeto ThisComponent" #. AKrki #: 03132200.xhp @@ -34664,7 +34664,7 @@ "hd_id3155342\n" "help.text" msgid "ThisComponent Object" -msgstr "" +msgstr "Objeto ThisComponent" #. ECFFs #: 03132200.xhp @@ -34763,7 +34763,7 @@ "par_id105622646874083\n" "help.text" msgid "com.sun.star.formula.FormulaProperties API service" -msgstr "" +msgstr "Servicio de API com.sun.star.formula.FormulaProperties" #. FLbnX #: 03132200.xhp @@ -34772,7 +34772,7 @@ "par_id106622646874083\n" "help.text" msgid "com.sun.star.sdb.OfficeDatabaseDocument API service" -msgstr "" +msgstr "Servicio de API com.sun.star.sdb.OfficeDatabaseDocument" #. vZW9w #: 03132200.xhp @@ -34781,7 +34781,7 @@ "par_id581622646875379\n" "help.text" msgid "com.sun.star.document.OfficeDocument API service" -msgstr "" +msgstr "Servicio de API com.sun.star.document.OfficeDocument" #. QgZSF #: 03132300.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/00.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/00.po 2022-07-15 19:12:51.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-09-27 19:09+0200\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -473,7 +473,7 @@ "par_id3154370\n" "help.text" msgid "Function Wizard" -msgstr "Asistente de funciones" +msgstr "Asistente para funciones" #. CfMjV #: 00000404.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1517,7 +1517,7 @@ "par_id3150887\n" "help.text" msgid "Creates a date series using the defined increment and end date." -msgstr "Crea una serie de fechas utilizando el incremento y la fecha final definidos." +msgstr "Crea una serie de fechas utilizando el incremento y la fecha de finalización definidos." #. b7qsB #: 02140600.xhp @@ -3839,7 +3839,7 @@ "hd_id3147426\n" "help.text" msgid "Function" -msgstr "Función" +msgstr "Función" #. wjD4H #: 04060000.xhp @@ -3848,7 +3848,7 @@ "par_id3145271\n" "help.text" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "Abre el asistente de funciones, que le ayuda a crear fórmulas interactivamente." +msgstr "Abre el asistente para funciones, que le ayuda a crear fórmulas interactivamente." #. exDJs #: 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 "Le permite acceder a un subnivel del Asistente de funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." +msgstr "Le permite acceder a un subnivel del Asistente para funciones con el fin de anidar una función dentro de otra, en lugar de un valor o una referencia." #. GSRgn #: 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 "Finaliza el Asistente de funciones y transfiere la fórmula a la celda seleccionada." +msgstr "Finaliza el Asistente para funciones y transfiere la fórmula a la celda seleccionada." #. 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 "Si inicia el asistente de funciones mientras el cursor de celda esté posicionado en una celda que ya contiene una función, se abrirá la pestaña Estructura y se mostrará la composición de la fórmula actual." +msgstr "Si inicia el asistente para funciones mientras el cursor de celda esté posicionado en una celda que ya contiene una función, se abrirá la pestaña Estructura y se mostrará la composición de la fórmula actual." #. 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 "Esta sección describe las funciones de $[officename] Calc. Las distintas funciones se dividen en categorías en el Asistente de funciones." +msgstr "Esta sección describe las funciones de $[officename] Calc. Las distintas funciones se dividen en categorías en el Asistente para funciones." #. JJJ2y #: 04060100.xhp @@ -4487,7 +4487,7 @@ "par_id241615842810077\n" "help.text" msgid "All functions have the same outline concept of operation. The first logical step is to use the specified SearchCriteria to identify the subset of records in the Database that are to be used during subsequent calculations. The second step is to extract the data values and perform the calculations associated with the specific function (average, sum, product, and so on). The values processed are those in the DatabaseField column of the selected records." -msgstr "" +msgstr "Todas las funciones tienen el mismo concepto de funcionamiento. El primer paso lógico es utilizar el Criterio de Búsqueda para identificar el subconjunto de registros en la Base de datosque se utilizarán en los cálculos posteriores. El segundo paso consiste en extraer los valores de los datos y realizar los cálculos asociados a la función específica (media, suma, producto, etc.). Los valores que se procesan son los que están en el Campo de base de datos de los registros seleccionados." #. oErum #: 04060101.xhp @@ -4595,7 +4595,7 @@ "par_id981615889517841\n" "help.text" msgid "By entering a reference to a header cell within the Database area. Alternatively, if the cell has been given a meaningful name as a named range or database range, enter that name. If the name does not match the name of a defined range, Calc reports a #NAME? error. If the name is valid but does not correspond to one cell only, Calc reports Err:504 (error in parameter list)." -msgstr "" +msgstr "Al introducir una referencia a una celda de encabezado dentro del área Base de datos Alternativamente, si la celda ha recibido un nombre significativo como rango con nombre o rango de base de datos, introduzca ese nombre. Si el nombre no coincide con el nombre de un rango definido, Calc informa de un error #NOMBRE? Si el nombre es válido pero no corresponde a una sola celda, Calc informa de Err:504 (error en la lista de parámetros)." #. 6EGoq #: 04060101.xhp @@ -4604,7 +4604,7 @@ "par_id551615889661457\n" "help.text" msgid "By entering a number to specify the column within the Database area, starting with 1. For example, if a Database occupied the cell range D6:H123, then enter 3 to indicate the header cell at F6. Calc expects an integer value that lies between 1 and the number of columns defined within Database and ignores any digits after a decimal point. If the value is less than 1, Calc reports Err:504 (error in parameter list). If the value is greater than the number of columns in Database, Calc reports a #VALUE! error." -msgstr "" +msgstr "Ingresando un número para especificar la columna en el área Base de datos, comenzando con 1. Por ejemplo, si una Base de datos ocupaba el intervalo de celdas D6: H123, ingrese 3 para indicar la celda de encabezado en F6. Calc espera un valor entero que se encuentre entre 1 y el número de columnas definido en Base de datos e ignora cualquier dígito después de un punto decimal. Si el valor es inferior a 1, Calc informa Err:504 (error en la lista de parámetros). Si el valor es mayor que el número de columnas en Base de datos, Calc informa un error #¡VALOR!" #. qSkvo #: 04060101.xhp @@ -4613,7 +4613,7 @@ "par_id561615889738472\n" "help.text" msgid "By entering the literal column header name from the first row of the Database range, placing quotation marks around the header name. For example, “Distance to School”. If the string does not match one of the Database area’s column headings, Calc reports Err:504 (error in parameter list). You can also provide a reference to an arbitrary cell (not within the Database and SearchCriteria areas) that contains the required string." -msgstr "" +msgstr "Al introducir el nombre literal del encabezado de la columna desde la primera fila del intervalo Base de datos, entrecomillando el nombre del encabezado. Por ejemplo, \"Distancia a la escuela\". Si la cadena no coincide con uno de los encabezados de columna del área Base de datos, Calc informa Err:504 (error en la lista de parámetros). También puede proporcionar una referencia a una celda arbitraria (fuera de las áreas de Base de datos y Criterios de búsqueda) que contenga la cadena requerida." #. AUEy6 #: 04060101.xhp @@ -4622,7 +4622,7 @@ "par_id181615889841279\n" "help.text" msgid "The DatabaseField argument is optional for the DCOUNT and DCOUNTA functions but it is required for the other ten Database functions." -msgstr "" +msgstr "El argumento Campo de base de datos es opcional para las funciones DCONTAR y DCONTARA pero es necesario para las otras diez funciones de la base de datos." #. Af4va #: 04060101.xhp @@ -4631,7 +4631,7 @@ "par_id841615891322513\n" "help.text" msgid "SearchCriteria argument" -msgstr "" +msgstr "Argumento de los criterios de búsqueda" #. 9eBBv #: 04060101.xhp @@ -4640,7 +4640,7 @@ "par_id351615891337585\n" "help.text" msgid "SearchCriteria specifies the range of cells containing search criteria. Like Database, its first row is also field names, and subsequent rows are conditions for related fields. The Database and SearchCriteria areas need not be adjacent, or even on the same sheet." -msgstr "" +msgstr "Criterios de búsqueda especifica el rango de celdas que contienen los criterios de búsqueda. Al igual que Base de datos, su primera fila también son nombres de campo y las filas subsiguientes son condiciones para campos relacionados. Las áreas Base de datos y Criterios de búsqueda no necesitan estar adyacentes, ni siquiera en la misma hoja." #. iuFJF #: 04060101.xhp @@ -4649,7 +4649,7 @@ "par_id401615891342289\n" "help.text" msgid "One way of defining the range of cells is to enter the cell reference for the upper left-hand cell, followed by a colon (:), and then the lower right-hand cell reference. For example, A13:B14. The cell range may also be specified by passing the name of a defined named range or database range. If the name does not match the name of a defined range, Calc reports a #NAME? error." -msgstr "" +msgstr "Una forma de definir el intervalo de celdas es ingresando la referencia de la celda superior izquierda, seguida de dos puntos (:), y luego la referencia de la celda inferior derecha. Por ejemplo, A13:B14. El intervalo de celdas también puede especificarse pasando el nombre de un intervalo con nombre definido o un intervalo de base de datos. Si el nombre no coincide con el de un intervalo definido, Calc informa de un error #NAME?" #. 2BE4W #: 04060101.xhp @@ -4658,7 +4658,7 @@ "par_id861615891345281\n" "help.text" msgid "Err:504 (error in parameter list) may also be reported as a result of an invalid SearchCriteria argument." -msgstr "" +msgstr "El Err:504 (error en la lista de parámetros) también puede informarse como resultado de un argumento Criterio de búsqueda no válido" #. D6TBP #: 04060101.xhp @@ -4667,7 +4667,7 @@ "par_id901615891349688\n" "help.text" msgid "The contents of the SearchCriteria area are described in more detail in the next section." -msgstr "" +msgstr "El contenido del área Criterios de búsqueda se describe con más detalle en la siguiente sección." #. vj96q #: 04060101.xhp @@ -4685,7 +4685,7 @@ "par_id691615892329680\n" "help.text" msgid "The number of columns occupied by the SearchCriteria area need not be the same as the width of the Database area. All headings that appear in the first row of SearchCriteria must be identical to headings in the first row of Database. However, not all headings in Database need appear in the first row of SearchCriteria, while a heading in Database can appear multiple times in the first row of SearchCriteria." -msgstr "" +msgstr "El número de columnas ocupadas por el área Criterios de búsqueda no necesita ser el mismo ancho del área Base de datos. Todos los encabezados que aparecen en la primera fila deCriterios de búsqueda deben ser idénticos a los encabezados de la primera fila en la Base de datos. Sin embargo, no todos los encabezados en la Base de datos deben aparecer en la primera fila de Criterios de búsqueda, mientras que un encabezado en la Base de datos puede aparecer varias veces en la primera fila de Criterios de búsqueda." #. AeGHn #: 04060101.xhp @@ -4694,7 +4694,7 @@ "par_id541615892358897\n" "help.text" msgid "Search criteria are entered into the cells of the second and subsequent rows of the SearchCriteria area, below the row containing headings. Blank cells within the SearchCriteria area are ignored." -msgstr "" +msgstr "Los criterios de búsqueda se ingresan en las celdas de la segunda y siguientes filas del área Criterios de búsqueda, debajo de la fila que contiene a los encabezados. Las celdas en blanco dentro del área Criterios de búsqueda deben ser ignorados." #. MddCQ #: 04060101.xhp @@ -4730,7 +4730,7 @@ "par_id921615893158111\n" "help.text" msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the Enable regular expressions in formulas option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog." -msgstr "" +msgstr "Se pueden crear criterios aún más poderosos utilizando expresiones regulares, siempre que las expresiones regulares se hayan activado a través de la opción Activar expresiones regulares en las fórmulas en el diálogo %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - Calcularcuadro de dialogo." #. YkSzL #: 04060101.xhp @@ -4740,6 +4740,9 @@ "help.text" msgid "Another setting that affects how the search criteria are handled is the Search criteria = and <> must apply to whole cells option on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled." msgstr "" +"Otra configuración que afecta la forma en que se manejan los criterios de búsqueda es la opción Los criterios de búsqueda = y <> deben aplicarse a celdas enteras en el %PRODUCTNAME -\n" +"PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - cuadro de dialogo. Esta opción controla si los criterios de búsqueda que establece para las funciones de la base de datos deben hacer coincidir exactamente con toda la celda.\n" +"Cuando la interoperatividad con Microsoft Excel es importante para su hoja de cálculo, esta opción debe estar habilitada." #. 4sbmh #: 04060101.xhp @@ -4955,7 +4958,7 @@ "par_id451616246535763\n" "help.text" msgid "As in this simple example, it is sometimes desirable (but not essential) to place the search criteria area directly under the database table, with the columns of the two areas vertically aligned. Blank entries in the search criteria area are ignored. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:E14) into an empty cell elsewhere in the sheet to count how many of Joe’s guests travel further than 600 meters to school. The value 5 is returned (counting Betty, Daniel, Eva, Harry, and Irene)." -msgstr "" +msgstr "Como en este sencillo ejemplo, a veces es recomendable (pero no esencial) colocar el área de criterios de búsqueda directamente debajo de la tabla de la base de datos, con las columnas de las dos áreas alineadas verticalmente. Las entradas en blanco en el área de criterios de búsqueda se ignoran. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:E14) en una celda vacía en otra parte de la hoja para contar cuántos de los huéspedes de Joe viajan más de 600 metros a la escuela. Se devuelve el valor 5 (contando a Betty, Daniel, Eva, Harry e Irene)." #. bBHFr #: 04060101.xhp @@ -5000,7 +5003,7 @@ "par_id361616251794063\n" "help.text" msgid "In this example the search criteria area contains only two headings and these are not vertically aligned with the corresponding headings in the example database table. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;B12:C13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests are in grade 2 and greater than 7 years old. The value 2 is returned (counting Eva and Irene)." -msgstr "" +msgstr "En este ejemplo, el área de criterios de búsqueda contiene sólo dos encabezados y éstos no están alineados verticalmente con los encabezados correspondientes en la tabla de la base de datos de ejemplo. Como hay dos condiciones en la misma fila, éstas están conectadas por AND. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserta la fórmula =DCOUNT(A1:E10;;B12:C13) en una celda vacía en otro lugar de la hoja para contar cuántos de los invitados de Joe están en el grado 2 y tienen más de 7 años. Se devuelve el valor 2 (contando a Eva e Irene)." #. 6Tfyk #: 04060101.xhp @@ -5063,7 +5066,7 @@ "par_id991616252981928\n" "help.text" msgid "In this example the search criteria area contains two occurrences of the same heading. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;B12:C13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests are aged between 8 and 10 (inclusive). The value 6 is returned (counting Andy, Betty, Charles, Eva, Harry, and Irene)." -msgstr "" +msgstr "En este ejemplo, el área de criterios de búsqueda contiene dos apariciones del mismo título. Como hay dos condiciones en la misma fila, éstas están conectadas por AND. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserta la fórmula =DCOUNT(A1:E10;;B12:C13) en una celda vacía en otro lugar de la hoja para contar cuántos de los invitados de Joe tienen entre 8 y 10 años (inclusive). Se devuelve el valor 6 (contando a Andy, Betty, Charles, Eva, Harry e Irene)." #. vgeRe #: 04060101.xhp @@ -5090,7 +5093,7 @@ "par_id91616253394127\n" "help.text" msgid "This simple example shows the use of wildcards. For this example to work as intended, select to enable wildcards at %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:A13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letter “F”. The value 1 is returned (counting Frank)." -msgstr "" +msgstr "Este sencillo ejemplo muestra el uso de comodines. Para que este ejemplo funcione como se pretende, seleccione activar los comodines en %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME Calc - Calcular. Con la tabla de base de datos del ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:A13)en una celda vacía en cualquier lugar de la hoja para contar cuántos de los huéspedes de Joe tienen nombres que empiezan por la letra \"F\". Se devuelve el valor 1 (contando a Frank)." #. BAnVJ #: 04060101.xhp @@ -5117,7 +5120,7 @@ "par_id631616253692350\n" "help.text" msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate. With the above example database table and this search criteria area, insert the formula =DCOUNT(A1:E10;;A12:A13) into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)." -msgstr "" +msgstr "Este sencillo ejemplo muestra el uso de expresiones regulares. Para que este ejemplo funcione como se pretende, seleccione activar las expresiones regulares en%PRODUCTNAME - PreferenciasHerramienas - Opciones - %PRODUCTNAME Calc - Calcular. Con la tabla de base de datos de ejemplo anterior y esta área de criterios de búsqueda, inserte la fórmula =DCOUNT(A1:E10;;A12:A13) en una celda vacía en cualquier lugar de la hoja para contar cuántos de las visitas de Joe tienen nombres que empiezan por las letras \"A\", \"B\" o \"C\". Se devuelve el valor 3 (contando a Andy, Betty y Charles)." #. KBZPC #: 04060101.xhp @@ -5126,7 +5129,7 @@ "bm_id3150882\n" "help.text" msgid "DCOUNT functioncounting rows;with numeric values" -msgstr "" +msgstr "BDCONTAR funciónrecuento de filas;con valores numéricos" #. DLGGD #: 04060101.xhp @@ -5144,7 +5147,7 @@ "par_id3156133\n" "help.text" msgid "DCOUNT counts the number of cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. However, if no column is specified, DCOUNT returns the count of all records that match the specified search criteria irrespective of their contents." -msgstr "" +msgstr "BDCONTAR cuenta el número de celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Sin embargo, si no se especifica ninguna columna, BDCONTAR devuelve el recuento de todos los registros que coinciden con los criterios de búsqueda especificados, independientemente de su contenido." #. EetM7 #: 04060101.xhp @@ -5162,7 +5165,7 @@ "par_id3153623\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)." -msgstr "" +msgstr "La tabla de la base de datos del ejemplo que nos da información sobre los invitados a la fiesta de cumpleaños de Juan (descrita anteriormente) debería ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico a las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, a excepción de la celda D13 que debe contener \">600\" (este criterio de búsqueda coincidirá con los registros en la tabla de la base de datos que tengan un valor superior a 600 en la columna Distancia)." #. kVciZ #: 04060101.xhp @@ -5171,7 +5174,7 @@ "par_id441616368480646\n" "help.text" msgid "Insert the formula =DCOUNT(A1:E10;; A12:E13) into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned." -msgstr "" +msgstr "Añada la fórmula =BDCONTAR(A1:E10;; A12:E13) en una celda vacía en otra parte de la hoja para calcular cuántos de los invitados a la fiesta de Juan viajan más de 600 metros a la escuela. Arrojara el valor 5." #. UZFcp #: 04060101.xhp @@ -5180,7 +5183,7 @@ "par_id361616368488119\n" "help.text" msgid "The same result is obtained if you use the formula =DCOUNT(A1:E10; \"Distance\"; A12:E13), because all entries in the Distance column are numeric. However, if you use the formula =DCOUNT(A1:E10; \"Name\"; A12:E13), the value 0 is returned because all entries in the Name column are non-numeric." -msgstr "" +msgstr "Se obtiene el mismo resultado si usa la fórmula =BDCONTAR(A1:E10; \"Distancia\"; A12:E13), porque todas las entradas en la columna distancia son numéricas. Sin embargo, si se usa la fórmula =BDCONTAR(A1:E10; \"Nombre\"; A12:E13), devuelve el valor 0 porque todas las entradas en la columna nombre no son numéricas." #. tGFyD #: 04060101.xhp @@ -5189,7 +5192,7 @@ "bm_id3156123\n" "help.text" msgid "DCOUNTA functionrecords;counting in Calc databasescounting rows;with numeric or alphanumeric values" -msgstr "" +msgstr "Función BDCONTARAregistros; conteo en bases de datos Calccontar filas; con valores numéricos o alfanuméricos" #. aJdyL #: 04060101.xhp @@ -5207,7 +5210,7 @@ "par_id3156110\n" "help.text" msgid "DCOUNTA counts the number of cells (fields) of the specified column that are not blank, for all rows (database records) that match the specified search criteria. Blank cells of the specified column are not counted. However, if no column is specified, DCOUNTA returns the count of all records that match the specified search criteria irrespective of their contents." -msgstr "" +msgstr "BDCONTARA cuenta el número de celdas (campos) de la columna especificada que no están en blanco, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Las celdas en blanco de la columna especificada no se cuentan. Sin embargo, si no se especifica ninguna columna, BDCONTARA hace el recuento de todos los registros que coinciden con los criterios de búsqueda especificados, independientemente de su contenido." #. CxWGV #: 04060101.xhp @@ -5225,7 +5228,7 @@ "par_id3153982\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">600\" (este criterio de búsqueda coincidirá con los registros de la tabla de la base de datos que tengan un valor superior a 600 en la columna Distancia)." #. SSD7D #: 04060101.xhp @@ -5234,7 +5237,7 @@ "par_id61616368616093\n" "help.text" msgid "Insert the formula =DCOUNTA(A1:E10;; A12:E13) into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDCONTARA(A1:E10;; A12:E13) en una celda vacía de otro lugar de la hoja para calcular cuántos de los invitados a la fiesta de Joe viajan más de 600 metros hasta la escuela. Nos devolverá el valor 5." #. WyEGc #: 04060101.xhp @@ -5243,7 +5246,7 @@ "par_id841616368623207\n" "help.text" msgid "The same result is obtained if you use the formula =DCOUNTA(A1:E10; \"Distance\"; A12:E13) or the formula =DCOUNTA(A1:E10; \"Name\"; A12:E13). The latter case reflects that in contrast to DCOUNT, DCOUNTA counts both numeric and alphanumeric values in the column indicated by the DatabaseField argument." -msgstr "" +msgstr "Se obtiene el mismo resultado si utiliza la fórmula =DCONTARA(A1:E10; \"Distancia\"; A12:E13) o la fórmula =BDCONTARA(A1:E10; \"Nombre\"; A12 :E13). El último caso refleja que, a diferencia de BDCONTAR, BDCONTARA cuenta valores numéricos y alfanuméricos en la columna indicada por el argumento Campo de base de datosDGET functioncell contents;searching in Calc databasessearching;cell contents in Calc databases" -msgstr "" +msgstr "Función BDEXTRAERcontenido de las celdas; búsqueda en bases de datos Calcbúsqueda; contenido de las celdas en bases de datos Calc" #. wj7ck #: 04060101.xhp @@ -5279,7 +5282,7 @@ "par_id171616180137385\n" "help.text" msgid "Calc reports Err:502 (invalid argument) if multiple matches are found, or a #VALUE! error (wrong data type) if no matches are found. A #VALUE! error is also reported if a single match is found but the relevant cell is empty." -msgstr "Calc informa Err: 502 (argumento no válido) si se encuentran múltiples coincidencias, o un error #¡VALOR! (tipo de datos incorrecto) si no se encuentran coincidencias. También se devuelve un error #¡VALOR! si se encuentra una sola coincidencia pero la celda correspondiente está vacía." +msgstr "Calc emite el Err:502 (argumento no válido) si se encuentran varias coincidencias, o bien, un error #¡VALOR! (tipo de datos incorrecto) si no se encuentran coincidencias. También se devuelve un error #¡VALOR! si se encuentra una sola coincidencia pero la celda correspondiente está vacía." #. oFi8J #: 04060101.xhp @@ -5297,7 +5300,7 @@ "par_id3155388\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \"11\" (this search criterion will match records in the database table that have a value of 11 in the Age column)." -msgstr "" +msgstr "La tabla de base de datos de ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda C13 que debe contener \"11\" (este criterio de búsqueda coincidirá con los registros de la tabla de la base de datos que tengan un valor de 11 en la columna edad)." #. A942C #: 04060101.xhp @@ -5306,7 +5309,7 @@ "par_id3153096\n" "help.text" msgid "Insert the formula =DGET(A1:E10; \"Name\"; A12:E13) into an empty cell elsewhere in the sheet to find the name of Joe’s party guest who is age 11. The name Daniel is returned." -msgstr "" +msgstr "Inserta la fórmula =BDEXTRAER(A1:E10; \"Nombre\"; A12:E13) en una celda vacía en otro lugar de la hoja para encontrar el nombre del invitado a la fiesta de Joe que tiene 11 años. Nos devolverá el nombre de Daniel." #. 6AKoj #: 04060101.xhp @@ -5315,7 +5318,7 @@ "par_id3150524\n" "help.text" msgid "If you change the value in cell C13 to “10”, then the formula =DGET(A1:E10; \"Name\"; A12:E13) returns an invalid argument error (Err:502). The reflects that multiple records match the specified criterion (both Betty and Charles are age 10)." -msgstr "" +msgstr "Si cambia el valor de la celda C13 por \"10\", la fórmula =BDEXTRAER(A1:E10; \"Nombre\"; A12:E13) devuelve un error de argumento no válido (Err:502). Refleja que varios registros coinciden con el criterio especificado (tanto Betty como Carlos tienen 10 años)." #. rB9Ek #: 04060101.xhp @@ -5342,7 +5345,7 @@ "par_id3154903\n" "help.text" msgid "DMAX calculates the maximum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDMAX calcula el valor máximo en todas las celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. pUGwd #: 04060101.xhp @@ -5369,7 +5372,7 @@ "par_id3148442\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. Mqocw #: 04060101.xhp @@ -5378,7 +5381,7 @@ "par_id3148804\n" "help.text" msgid "Insert the formula =DMAX(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the maximum distance in meters that any of Joe’s party guests travel to school. The value 1200 is returned." -msgstr "" +msgstr "Inserte la fórmula =BDMAX(A1:E10; \"Distancia\"; A12:E13) en una celda vacía en otra parte de la hoja para encontrar la distancia máxima en metros que recorre cualquiera de los invitados a la fiesta de Juan hasta a la escuela. Devolverá el valor 1200." #. CnaXx #: 04060101.xhp @@ -5405,7 +5408,7 @@ "par_id3154261\n" "help.text" msgid "DMIN calculates the minimum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDMIN calcula el valor mínimo en todas las celdas (campos) de la columna especificada que contienen valores numéricos, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. yYJTa #: 04060101.xhp @@ -5432,7 +5435,7 @@ "par_id3148925\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. LrfjC #: 04060101.xhp @@ -5441,7 +5444,7 @@ "par_id3149161\n" "help.text" msgid "Insert the formula =DMIN(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the minimum distance in meters that any of Joe’s party guests travel to school. The value 150 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDMIN(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la distancia mínima en metros que recorre cualquiera de los invitados a la fiesta de Joe hasta la escuela. Nos devolverá el valor 150." #. XEu9j #: 04060101.xhp @@ -5450,7 +5453,7 @@ "bm_id3154274\n" "help.text" msgid "DAVERAGE functionaverages; in Calc databasescalculating;averages in Calc databases" -msgstr "" +msgstr "función BDPROMEDIOpromedios; en bases de datos Calccálculo; medias en bases de datos Calc" #. dQciw #: 04060101.xhp @@ -5468,7 +5471,7 @@ "par_id3166453\n" "help.text" msgid "DAVERAGE calculates the average of the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values in those cells are ignored." -msgstr "" +msgstr "BDPROMEDIO calcula la media de los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. Los valores no numéricos de esas celdas deben ser ignorados." #. 87qxe #: 04060101.xhp @@ -5477,7 +5480,7 @@ "par_id31615978739452\n" "help.text" msgid "Returns a #DIV/0! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #DIV/0! si ningún registro coincide con los criterios de búsqueda especificados, o si no hay valores numéricos en las celdas de la columna especificada para los registros coincidentes." #. PPkBD #: 04060101.xhp @@ -5495,7 +5498,7 @@ "par_id3149104\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos de ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende coincidir con todos los registros de la tabla de la base de datos)." #. CjTGB #: 04060101.xhp @@ -5504,7 +5507,7 @@ "par_id201616368312277\n" "help.text" msgid "Insert the formula =DAVERAGE(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the average distance in meters travelled to school by Joe’s party guests. The value 666.67 is returned." -msgstr "" +msgstr "Introduzca la fórmula =BDPROMEDIO(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para calcular la distancia media en metros recorrida hasta la escuela por los invitados a la fiesta de Joe. Se obtendrá el valor 666,67." #. 6fcFr #: 04060101.xhp @@ -5531,7 +5534,7 @@ "par_id3152879\n" "help.text" msgid "DPRODUCT calculates the product of all numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Blank cells or cells containing non-numeric characters are not included." -msgstr "" +msgstr "BDPRODUCTO calcula el producto de todos los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coinciden con los criterios de búsqueda especificados. No se incluyen las celdas en blanco ni las que contienen caracteres no numéricos." #. oUsZD #: 04060101.xhp @@ -5558,7 +5561,7 @@ "par_id3148986\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda C13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. iaoUA #: 04060101.xhp @@ -5567,7 +5570,7 @@ "par_id91616368981807\n" "help.text" msgid "Insert the formula =DPRODUCT(A1:E10; \"Age\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the product of the ages in years of Joe’s party guests. The value 279417600 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDPRODUCTO(A1:E10; \"Antigüedad\"; A12:E13) en una celda vacía de la hoja para calcular el producto de las edades en años de los invitados a la fiesta de Joe. Nos dará el valor 279417600." #. KsVCV #: 04060101.xhp @@ -5576,7 +5579,7 @@ "bm_id3148462\n" "help.text" msgid "DSTDEV functionstandard deviations in databases;based on a sample" -msgstr "" +msgstr "Función BDDESVESTdesviaciones estándar en bases de datos; basadas en una muestra" #. EvGNP #: 04060101.xhp @@ -5594,7 +5597,7 @@ "par_id3154605\n" "help.text" msgid "DSTDEV calculates the sample standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDDESVEST calcula la desviación estándar de la muestra basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos deben ignorarse." #. RACag #: 04060101.xhp @@ -5603,7 +5606,7 @@ "par_id121616181037440\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #NUM! si exactamente un registro coincide con los criterios de búsqueda especificados, o si sólo hay un valor numérico en las celdas de la columna especificada para los registros coincidentes." #. r6onB #: 04060101.xhp @@ -5630,7 +5633,7 @@ "par_id3149934\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegurarse que las celdas A13:D13 estén en blanco y que la celda E13 contenga \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. SXqfH #: 04060101.xhp @@ -5639,7 +5642,7 @@ "par_id3150630\n" "help.text" msgid "Insert the formula =DSTDEV(A1:E10; \"Weight\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the sample standard deviation of the weights in kg of Joe’s party guests. The value 5.5 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDDESVEST(A1:E10; \"Peso\"; A12:E13) en una celda vacía de otro lugar de la hoja para calcular la desviación estándar muestral de los pesos en kg de los invitados a la fiesta de Joe. Nos devolverá el valor 5,5." #. VRXXy #: 04060101.xhp @@ -5666,7 +5669,7 @@ "par_id3145598\n" "help.text" msgid "DSTDEVP calculates the population standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDDESVESTP calcula la desviación estándar de la población basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos se ignoran." #. TjThw #: 04060101.xhp @@ -5693,7 +5696,7 @@ "par_id3155431\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegurarse de que las celdas A13:D13 estén en blanco y que la celda E13 contenga \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. 6eisL #: 04060101.xhp @@ -5702,7 +5705,7 @@ "par_id3148411\n" "help.text" msgid "Insert the formula =DSTDEVP(A1:E10; \"Weight\"; A12:E13) into an empty cell elsewhere in the sheet to calculate the population standard deviation of the weights in kg of Joe’s party guests. The value 5.18545 is returned." -msgstr "" +msgstr "Inserta la fórmula =DBDDESVESTP(A1:E10; \"Peso\"; A12:E13) en una celda vacía en cualquier lugar de la hoja para calcular la desviación estándar de la población de los pesos en kg de los invitados a la fiesta de Joe. Nos devolverá el valor 5,18545." #. Z2CTY #: 04060101.xhp @@ -5756,7 +5759,7 @@ "par_id3152766\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da la información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. riVB4 #: 04060101.xhp @@ -5765,7 +5768,7 @@ "par_id3151312\n" "help.text" msgid "Insert the formula =DSUM(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the total distance in meters that all of Joe’s party guests travel to school. The value 6000 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDSUMA(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la distancia total en metros que recorren todos los invitados a la fiesta de Joe hasta la escuela. Nos devolverá el valor 6000." #. YBFb7 #: 04060101.xhp @@ -5774,7 +5777,7 @@ "bm_id3155614\n" "help.text" msgid "DVAR functionvariances;based on samples" -msgstr "" +msgstr "Función BDVARvarianzas; basadas en muestras" #. G6ZBW #: 04060101.xhp @@ -5801,7 +5804,7 @@ "par_id301616181465164\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "" +msgstr "Devuelve un error #NUM! si un registro coincide con los criterios de búsqueda especificados, o si sólo hay un valor numérico en las celdas de la columna especificada para los registros coincidentes." #. gW4LZ #: 04060101.xhp @@ -5828,7 +5831,7 @@ "par_id3153701\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Debe asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. bRDWF #: 04060101.xhp @@ -5837,7 +5840,7 @@ "par_id3153676\n" "help.text" msgid "Insert the formula =DVAR(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the sample variance of the distances in meters that Joe’s party guests travel to school. The value 193125 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDVAR(A1:E10; \"Distancia\"; A12:E13) en una celda vacía de otro lugar de la hoja para encontrar la varianza muestral de las distancias en metros que los invitados a la fiesta de Joe recorren hasta la escuela. Nos devolverá el valor 193125." #. 7FWS4 #: 04060101.xhp @@ -5864,7 +5867,7 @@ "par_id3155119\n" "help.text" msgid "DVARP calculates the population variation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria. Non-numeric values are ignored." -msgstr "" +msgstr "BDVARP calcula la variación de la población basándose en los valores numéricos de las celdas (campos) de la columna especificada, para todas las filas (registros de la base de datos) que coincidan con los criterios de búsqueda especificados. Los valores no numéricos deben ignorarse." #. ERRmG #: 04060101.xhp @@ -5891,7 +5894,7 @@ "par_id3147099\n" "help.text" msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)." -msgstr "" +msgstr "La tabla de base de datos del ejemplo que da información sobre los invitados a la fiesta de cumpleaños de Joe (descrita anteriormente) debe ocupar las celdas A1:E10. El contenido de las celdas A12:E12 debe ser idéntico al de las etiquetas de cabecera de la tabla de la base de datos en las celdas A1:E1. Asegúrese de que las celdas A13:E13 estén en blanco, excepto la celda D13, que debe contener \">0\" (este criterio de búsqueda pretende hacer coincidir con todos los registros de la tabla de la base de datos)." #. 8puR2 #: 04060101.xhp @@ -5900,7 +5903,7 @@ "par_id3147322\n" "help.text" msgid "Insert the formula =DVARP(A1:E10; \"Distance\"; A12:E13) into an empty cell elsewhere in the sheet to find the population variance of the distances in meters that Joe’s party guests travel to school. The value 171666.67 is returned." -msgstr "" +msgstr "Inserta la fórmula =BDVARP(A1:E10; \"Distancia\"; A12:E13) en una celda vacía en otra parte de la hoja para encontrar la varianza poblacional de las distancias en metros que los invitados a la fiesta de Joe recorren hasta la escuela. Obtenemos el valor 171666,67." #. n99gx #: 04060102.xhp @@ -5918,7 +5921,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "funciones de fecha y horafunciones; fecha y horaAsistente de funciones; fecha y hora" +msgstr "funciones de fecha y horafunciones; fecha y horaAsistente para funciones; fecha y hora" #. 4twnp #: 04060102.xhp @@ -6188,7 +6191,7 @@ "par_id3147427\n" "help.text" msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "" +msgstr "AMORTIZ.PROGRE(Costo; Fecha de compra; Primer periodo; Valor residual; Periodo; Tasa [; Base])" #. bA2pT #: 04060103.xhp @@ -6251,7 +6254,7 @@ "par_id421612299085248\n" "help.text" msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming degressive depreciation, what is the amount of depreciation in the fourth depreciation period?" -msgstr "" +msgstr "Se adquirió un activo el 1 de febrero de 2020 a un coste de 2000 unidades monetarias. La fecha de finalización del primer período de liquidación fue el 31 de diciembre de 2020. El valor residual del activo al final de su vida amortizable será de 10 unidades monetarias. La tasa de depreciación es de 0,1 (10 %) y el ejercicio se calcula utilizando el método estadounidense (base 0). Suponiendo una depreciación decreciente, ¿cuál es el importe de la depreciación en el cuarto período de amortización?" #. qyD4t #: 04060103.xhp @@ -6260,7 +6263,7 @@ "par_id901612299089478\n" "help.text" msgid "=AMORDEGRC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0) returns a depreciation amount of 163 currency units." -msgstr "" +msgstr "=AMORTIZ.PROGRE(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0,1; 0) devuelve una cantidad de amortización de 163 unidades monetarias." #. AvpDv #: 04060103.xhp @@ -6269,7 +6272,7 @@ "par_id851616615176815\n" "help.text" msgid "Beware that Basis 2 is not supported by Microsoft Excel. Hence, if you use Basis 2 and export your document to XLSX format, it will return an error when opened in Excel." -msgstr "" +msgstr "Tenga en cuenta que Microsoft Excel no acepta Base 2. Por lo tanto, si utiliza Base 2 y exporta el documento al formato XLSX, nos devolverá un error cuando se abra en Excel." #. UCPgp #: 04060103.xhp @@ -6305,7 +6308,7 @@ "par_id3147363\n" "help.text" msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "" +msgstr "AMORTIZ.LIN(Costo; Fecha de compra; Primer periodo; Valor residual; Periodo; Tasa [; Base])" #. PsFjE #: 04060103.xhp @@ -10967,7 +10970,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Esta categoría contiene las funciones matemáticas de Calc. Para abrir el Asistente de funciones, diríjase a Insertar ▸ Función." +msgstr "Esta categoría contiene las funciones matemáticas de Calc. Para abrir el Asistente para funciones, diríjase a Insertar ▸ Función." #. bWDf7 #: 04060106.xhp @@ -14936,7 +14939,7 @@ "par_id0908200902475431\n" "help.text" msgid "=CONVERT_OOO(100;\"EUR\";\"DEM\") converts 100 euros into German marks." -msgstr "" +msgstr "=CONVERT_OOO(100;\"EUR\";\"DEM\") convierte 100 euros en marcos alemanes." #. PRgAD #: 04060106.xhp @@ -15593,7 +15596,7 @@ "bm_id3147273\n" "help.text" msgid "matrices; functionsFunction Wizard; arraysarray formulasinline array constantsformulas; arraysfunctions; array functionsediting; array formulascopying; array formulasdeleting; array formulasadjusting array rangescalculating; conditional calculationsmatrices; calculationsconditional calculations with arraysimplicit array handlingforced array handling" -msgstr "matrices; funcionesAsistente de funciones; matricesfórmulas matricialesconstantes de matrices en líneafórmulas; matricesfunciones; funciones matricialesedición; fórmulas matricialescopiar; fórmulas matricialesborrar; fórmulas matricialesajustar un intervalo matricialcálculo; cálculos condicionalesmatrices; cálculoscálculos de matriz condicionalmanejo implícito de matricesmanejo forzado de matrices" +msgstr "matrices; funcionesAsistente para funciones; matricesfórmulas matricialesconstantes de matrices en líneafórmulas; matricesfunciones; funciones matricialesedición; fórmulas matricialescopiar; fórmulas matricialesborrar; fórmulas matricialesajustar un intervalo matricialcálculo; cálculos condicionalesmatrices; cálculoscálculos de matriz condicionalmanejo implícito de matricesmanejo forzado de matrices" #. ALUph #: 04060107.xhp @@ -15755,7 +15758,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 "Para crear una fórmula matricial mediante el Asistente de funciones, deberá seleccionar la casilla de verificación Matriz para que los resultados se devuelvan en una matriz. En caso contrario, solo se devolverá el valor correspondiente a la celda superior izquierda de la matriz." +msgstr "Para crear una fórmula matricial mediante el Asistente para funciones, deberá seleccionar la casilla de verificación Matriz para que los resultados se devuelvan en una matriz. En caso contrario, solo se devolverá el valor correspondiente a la celda superior izquierda de la matriz." #. G9EUo #: 04060107.xhp @@ -16448,7 +16451,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 "Seleccione un intervalo de una sola columna donde introducir la frecuencia según los límites de la clase. Debe seleccionar un campo más que el campo superior de la clase. En este ejemplo, seleccione el intervalo C1:C6. Active la función FRECUENCIA mediante el Asistente de funciones. Seleccione el intervalo Datos en (A1:A11) y, a continuación, el intervalo Clases en el que haya introducido los límites de la clase (B1:B6). Active la casilla Matriz y pulse en Aceptar. Aparecerá el conteo de la frecuencia en el intervalo C1:C6." +msgstr "Seleccione un intervalo de una sola columna donde introducir la frecuencia según los límites de la clase. Debe seleccionar un campo más que el campo superior de la clase. En este ejemplo, seleccione el intervalo C1:C6. Active la función FRECUENCIA mediante el Asistente para funciones. Seleccione el intervalo Datos en (A1:A11) y, a continuación, el intervalo Clases en el que haya introducido los límites de la clase (B1:B6). Active la casilla Matriz y pulse en Aceptar. Aparecerá el conteo de la frecuencia en el intervalo C1:C6." #. shMJG #: 04060107.xhp @@ -17006,7 +17009,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 "La columna A contiene diversos valores de X1, la columna B diversos valores de X2 y la columna C, los valores Y. Estos valores ya están en la hoja de cálculo. Ha configurado el intervalo E2:G6 en la hoja de cálculo y ha abierto el Asistente de funciones. Para que la función ESTIMACION.LINEAL funcione, deberá seleccionar la casilla de verificación Matriz en el Asistente de funciones. A continuación seleccione los siguientes valores en la hoja de cálculo (o escríbalos con el teclado):" +msgstr "La columna A contiene diversos valores de X1, la columna B diversos valores de X2 y la columna C, los valores Y. Estos valores ya están en la hoja de cálculo. Ha configurado el intervalo E2:G6 en la hoja de cálculo y ha abierto el Asistente para funciones. Para que la función ESTIMACION.LINEAL funcione, deberá seleccionar la casilla de verificación Matriz en el Asistente para funciones. A continuación seleccione los siguientes valores en la hoja de cálculo (o escríbalos con el teclado):" #. KgyyZ #: 04060107.xhp @@ -19229,7 +19232,7 @@ "par_id3154104\n" "help.text" msgid "LOOKUP(Lookup; SearchVector [; ResultVector])" -msgstr "" +msgstr "BUSCAR(CriteriodeBúsqueda; VectordeBúsqueda [; VectordeResultado])" #. yGLLE #: 04060109.xhp @@ -19238,7 +19241,7 @@ "par_id3150646\n" "help.text" msgid "Lookup is the value of any type to be looked for; entered either directly or as a reference." -msgstr "" +msgstr "CriteriodeBúsqueda es el valor de cualquier tipo a buscar; introducido directamente o como referencia." #. tFDBC #: 04060109.xhp @@ -19400,7 +19403,7 @@ "par_id3155425\n" "help.text" msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])" -msgstr "" +msgstr "ELEGIR(Índice; Valor 1 [; Valor 2 [; ... [; Valor 30]]])" #. CNK7e #: 04060109.xhp @@ -19418,7 +19421,7 @@ "par_id3149939\n" "help.text" msgid "Value 1, Value 2, ..., Value 30 is the list of values entered as a reference to a cell or as individual values." -msgstr "" +msgstr "Valor 1, Valor 2, ..., Valor 30 esta es la lista de valores introducidos como referencia a una celda o como valores individuales." #. s64Du #: 04060109.xhp @@ -19463,7 +19466,7 @@ "par_id3146070\n" "help.text" msgid "HLOOKUP(Lookup; Array; Index [; SortedRangeLookup])" -msgstr "" +msgstr "BUSCARH(Búsqueda; Intervalo; Índice [; Búsqueda por intervalos ordenados])" #. nhwwF #: 04060109.xhp @@ -19607,7 +19610,7 @@ "par_id3154564\n" "help.text" msgid "Returns the row number of a cell reference. If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column Array if the formula is entered as an array formula. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned." -msgstr "" +msgstr "Nos devuelve el número de fila de una referencia de celda. Si la referencia es una celda, devuelve el número de fila de la celda. Si la referencia es un intervalo de celdas, nos devuelve los números de fila correspondientes en una columna Matriz si la fórmula se ingresa como fórmula de la matriz. Si no se utiliza la función FILA con una referencia de intervalo en una fórmula de matriz, sólo nos devolverá el número de fila de la primera celda del intervalo." #. 97EEE #: 04060109.xhp @@ -19841,7 +19844,7 @@ "par_idN11827\n" "help.text" msgid "=HYPERLINK(\"http://www.example.org\") displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked." -msgstr "" +msgstr "=HIPERVINCULO(\"http://www.example.org\") muestra el texto «http://www.example.org» en la celda y ejecuta el hiperenlace http://www.example.org cuando se pulsa." #. wHG7A #: 04060109.xhp @@ -19850,7 +19853,7 @@ "par_idN1182A\n" "help.text" msgid "=HYPERLINK(\"http://www.example.org\";\"Click here\") displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked." -msgstr "" +msgstr "=HIPERVINCULO(\"http://www.example.org\"; \"Pulse aquí\") muestra el texto «Pulse aquí» en la celda y ejecuta el hiperenlace http://www.example.org cuando se pulse." #. jamR2 #: 04060109.xhp @@ -19976,7 +19979,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 "Se asume la segunda sintaxis si se proporcionan exactamente dos parámetros, el primero de los cuales es una celda o una referencia a un intervalo de celdas. En el resto de los casos se asume la primera sintaxis. El Asistente de funciones muestra la primera sintaxis." +msgstr "Se asume la segunda sintaxis si se proporcionan exactamente dos parámetros, el primero de los cuales es una celda o una referencia a un intervalo de celdas. En el resto de los casos se asume la primera sintaxis. El Asistente para funciones muestra la primera sintaxis." #. Cwsfn #: 04060109.xhp @@ -20120,7 +20123,7 @@ "bm_id3145389\n" "help.text" msgid "text in cells; functions functions; text functions Function Wizard;text" -msgstr "texto en celdas; funcionesfunciones; funciones de textoAsistente de funciones; texto" +msgstr "texto en celdas; funcionesfunciones; funciones de textoAsistente para funciones; texto" #. DEMF7 #: 04060110.xhp @@ -23189,7 +23192,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 puede ampliarse por medio de complementos, módulos de programación externos que brindan prestaciones adicionales para trabajar con hojas de cálculo. El asistente de funciones enumera estos en la categoría Complemento. Si quiere programar su propio complemento, aquí encontrará las funciones que deben exportarse a través de la biblioteca compartidaDLL externa para que el complemento pueda adjuntarse adecuadamente." +msgstr "$[officename] Calc puede ampliarse por medio de complementos, módulos de programación externos que brindan prestaciones adicionales para trabajar con hojas de cálculo. El asistente para funciones enumera estos en la categoría Complemento. Si quiere programar su propio complemento, aquí encontrará las funciones que deben exportarse a través de la biblioteca compartidaDLL externa para que el complemento pueda adjuntarse adecuadamente." #. qyzrA #: 04060112.xhp @@ -23459,7 +23462,7 @@ "hd_id3150653\n" "help.text" msgid "GetFunctionCount()" -msgstr "GetFunctionCount()" +msgstr "Obtenerelrecuentodefunciones()" #. Hs7Du #: 04060112.xhp @@ -27680,7 +27683,7 @@ "par_id3149708\n" "help.text" msgid "Guess (optional) is a guess that can be input for the internal rate of return. The default is 10%." -msgstr "Valor estimado (opcional) es un valor estimado que puede ser ingresado para la tasa interna de retorno. El valor predeterminado es 10%." +msgstr "Valor estimado (opcional) es una estimación que puede introducirse para la tasa interna de retorno. El valor predeterminado es 10 %." #. dZESY #: 04060118.xhp @@ -27698,7 +27701,7 @@ "par_id3146856\n" "help.text" msgid "Received" -msgstr "" +msgstr "Recibido" #. N2RNr #: 04060118.xhp @@ -27707,7 +27710,7 @@ "par_id3149985\n" "help.text" msgid "Deposited" -msgstr "" +msgstr "Depositado" #. FLNWb #: 04060118.xhp @@ -27788,7 +27791,7 @@ "par_id3150525\n" "help.text" msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%." -msgstr "" +msgstr "Cálculo del valor presente neto de los cinco pagos antes mencionados para una tasa interna de retorno nacional del 6 %." #. YFtiD #: 04060118.xhp @@ -30218,7 +30221,7 @@ "par_id3153321\n" "help.text" msgid "NPV(Rate; )" -msgstr "" +msgstr "VNA(Tasa; )" #. EEL34 #: 04060119.xhp @@ -30713,7 +30716,7 @@ "par_id3154194\n" "help.text" msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent." -msgstr "" +msgstr "=RENDTO(\"1999-02-15\"; \"2007-11-15\"; 0,0575 ;95,04287; 100; 2; 0) devuelve 0,065, o el 6,50 por ciento." #. AeJmf #: 04060119.xhp @@ -31730,7 +31733,7 @@ "par_id3148585\n" "help.text" msgid "COUNT()" -msgstr "" +msgstr "CONTAR()" #. VBCGA #: 04060181.xhp @@ -31784,7 +31787,7 @@ "par_id3153111\n" "help.text" msgid "COUNTA()" -msgstr "" +msgstr "CONTARA()" #. QKY5C #: 04060181.xhp @@ -31892,7 +31895,7 @@ "par_id3164967\n" "help.text" msgid "COUNTIF(Range; Criterion)" -msgstr "" +msgstr "CONTAR.SI(Rango; Criterio)" #. sxGvB #: 04060181.xhp @@ -32000,7 +32003,7 @@ "par_id3148392\n" "help.text" msgid "B(Trials; SP; T1 [; T2])" -msgstr "" +msgstr "B(Ensayos; SP; T1 [; T2])" #. 5gx3q #: 04060181.xhp @@ -32153,7 +32156,7 @@ "par_id3156300\n" "help.text" msgid "BETAINV(Number; Alpha; Beta [; Start [; End]])" -msgstr "" +msgstr "DISTR.BETA.INV(Número; Alfa; Beta [; Inicio [; Fin]])" #. nrAdm #: 04060181.xhp @@ -32243,7 +32246,7 @@ "par_id2956300\n" "help.text" msgid "BETA.INV(Number; Alpha; Beta [; Start [; End]])" -msgstr "" +msgstr "INV.BETA.N(Número; Alfa; Beta [; Inicio [; Fin]])" #. 2fKqs #: 04060181.xhp @@ -32333,7 +32336,7 @@ "par_id3147571\n" "help.text" msgid "BETADIST(Number; Alpha; Beta [; Start [; End [; Cumulative]]])" -msgstr "" +msgstr "DISTR.BETA(Número; Alfa; Beta [; Inicio [;Fin [; Acumulativo]]])" #. jfrX3 #: 04060181.xhp @@ -32432,7 +32435,7 @@ "par_id2947571\n" "help.text" msgid "BETA.DIST(Number; Alpha; Beta; Cumulative [; Start [; End]])" -msgstr "" +msgstr "DISTR.BETA.N(Número; Alfa; Beta; Acumulativa [; Inicio [; Fin]])" #. VV9bt #: 04060181.xhp @@ -32792,7 +32795,7 @@ "par_id21585771564740\n" "help.text" msgid "CHISQINV(Probability; Degrees of Freedom)" -msgstr "" +msgstr "CHISQINV(Probabilidad; Grados de libertad)" #. KibGe #: 04060181.xhp @@ -33755,7 +33758,7 @@ "par_id2745774\n" "help.text" msgid "=CHISQ.DIST(3; 2; 1) equals 0.7768698399, the cumulative chi-square distribution with 2 degrees of freedom, at the value x = 3." -msgstr "" +msgstr "=DISTR.CHICUAD(3; 2; 1) equivale a 0.7768698399, la distribución acumulada de chi-cuadrado con 2 grados de libertad, en el valor x = 3." #. NE9BQ #: 04060181.xhp @@ -33872,7 +33875,7 @@ "par_id0119200902395679\n" "help.text" msgid "CHISQDIST(Number; Degrees Of Freedom [; Cumulative])" -msgstr "" +msgstr "CHISQDIST(Número; Grados de libertad [; Acumulativo])" #. nLEaF #: 04060181.xhp @@ -34619,7 +34622,7 @@ "par_id2945826\n" "help.text" msgid "F.DIST(Number; DegreesFreedom1; DegreesFreedom2 [; Cumulative])" -msgstr "" +msgstr "DIST.F(Número; Grados de libertad 1; Grados de libertad 2 [; Acumulativo])" #. TeZSu #: 04060182.xhp @@ -34781,7 +34784,7 @@ "par_id211585771824267\n" "help.text" msgid "GAMMA(Number)" -msgstr "" +msgstr "GAMMA(Número)" #. 2DdQa #: 04060182.xhp @@ -35096,7 +35099,7 @@ "par_id3155436\n" "help.text" msgid "GAMMADIST(Number; Alpha; Beta [; C])" -msgstr "" +msgstr "DISTR.GAMMA(Número; Alfa; Beta [; C])" #. erGE4 #: 04060182.xhp @@ -35456,7 +35459,7 @@ "par_id3153274\n" "help.text" msgid "ZTEST(Data; mu [; Sigma])" -msgstr "" +msgstr "PRUEBA.Z(Datos; mu [; Sigma])" #. RKyE7 #: 04060182.xhp @@ -35492,7 +35495,7 @@ "par_id0305200911372999\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Véase también elPágina de la Wiki." #. BM9oD #: 04060182.xhp @@ -35528,7 +35531,7 @@ "par_id2953274\n" "help.text" msgid "Z.TEST(Data; mu [; Sigma])" -msgstr "" +msgstr "PRUEBA.Z(Datos; mu [; Sigma])" #. 2peSH #: 04060182.xhp @@ -35600,7 +35603,7 @@ "par_id3149287\n" "help.text" msgid "HARMEAN()" -msgstr "" +msgstr "MEDIA.ARMO()" #. DMCH7 #: 04060182.xhp @@ -35645,7 +35648,7 @@ "par_id3155388\n" "help.text" msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation [; Cumulative])" -msgstr "" +msgstr "DISTR.HIPERGEOM(X; Ejemplo N; ; Éxitos; Población N [; Acumulativa])" #. ingyW #: 04060182.xhp @@ -35690,7 +35693,7 @@ "par_id231585952506847\n" "help.text" msgid "Cumulative (optional) specifies whether to calculate the probability mass function (FALSE or 0) or the cumulative distribution function (any other value). The probability mass function is the default if no value is specified for this parameter." -msgstr "" +msgstr "Acumulativo(opcional) especifica si se debe calcular la función de mayor probabilidad (FALSO o 0) o la función de distribución acumulada (cualquier otro valor). La función de mayor probabilidad es la predeterminada si no se especifica ningún valor para este parámetro." #. WUiB6 #: 04060182.xhp @@ -35870,7 +35873,7 @@ "par_id3156448\n" "help.text" msgid "RankC is the ranking of the value. If RankC is an array, the function becomes an array function." -msgstr "" +msgstr "Posición Ces la clasificación del valor. Si Posición C es un array, la función se convierte en una función de matriz." #. 9gMJx #: 04060183.xhp @@ -35879,7 +35882,7 @@ "par_id3148702\n" "help.text" msgid "=LARGE(A1:C50;2) gives the second largest value in A1:C50." -msgstr "" +msgstr "=MAYOR(A1:C50;2) da el segundo valor mas grande en A1:C50." #. fdcAk #: 04060183.xhp @@ -35888,7 +35891,7 @@ "par_id3248702\n" "help.text" msgid "=LARGE(A1:C50;B1:B5) entered as an array function gives an array of the c-th largest value in A1:C50 with ranks defined in B1:B5." -msgstr "" +msgstr "=K.ESIMO.MAYOR(A1:C50;B1:B5) ingresado como una función de matriz da una matriz del c-ésimo valor más grande en A1:C50 con rangos definidos en B1:B5." #. p8pZc #: 04060183.xhp @@ -36536,7 +36539,7 @@ "par_id3154508\n" "help.text" msgid "KURT()" -msgstr "" +msgstr "CURTOSIS()" #. qFqj4 #: 04060183.xhp @@ -36590,7 +36593,7 @@ "par_id3153049\n" "help.text" msgid "LOGINV(Number [; Mean [; StDev]])" -msgstr "" +msgstr "INV.LOG(Número [; Media [; Desviación Estándar]])" #. vDVWm #: 04060183.xhp @@ -36599,7 +36602,7 @@ "par_id3148390\n" "help.text" msgid "Number (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated." -msgstr "" +msgstr "Número(requerido) es el valor de probabilidad para el que se va a calcular la distribución logarítmica estándar inversa." #. aJATB #: 04060183.xhp @@ -36608,7 +36611,7 @@ "par_id3149538\n" "help.text" msgid "Mean (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)." -msgstr "" +msgstr "Media (opcional) es la media aritmética de la distribución logarítmica estándar (el valor predeterminado es 0 si se omite)." #. PDJWU #: 04060183.xhp @@ -36617,7 +36620,7 @@ "par_id3145355\n" "help.text" msgid "StDev (optional) is the standard deviation of the standard logarithmic distribution (defaults to 1 if omitted)." -msgstr "" +msgstr "DESVEST(opcional) es la desviación estándar de la distribución logarítmica estándar (el valor por defecto es 1 si se omite)." #. Uh6oi #: 04060183.xhp @@ -36689,7 +36692,7 @@ "par_id2901538\n" "help.text" msgid "Mean (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)." -msgstr "" +msgstr "Media (opcional) es la media aritmética de la distribución logarítmica estándar (el valor predeterminado es 0 si se omite)." #. pPM9C #: 04060183.xhp @@ -36707,7 +36710,7 @@ "par_id2901623\n" "help.text" msgid "=LOGNORM.INV(0.05;0;1) returns 0.1930408167." -msgstr "=INV.LOGNORM(0.05;0;1) devuelve 0.1930408167." +msgstr "=INV.LOGNORM(0,05;0;1) devuelve 0,1930408167." #. spVtz #: 04060183.xhp @@ -36743,7 +36746,7 @@ "par_id3150686\n" "help.text" msgid "LOGNORMDIST(Number [; Mean [; StDev [; Cumulative]]])" -msgstr "" +msgstr "DIS.LOG.NORM(Número [; Media [; Desviación Estándar [; Acumulada]]])" #. BiGC6 #: 04060183.xhp @@ -36932,7 +36935,7 @@ "par_id3147340\n" "help.text" msgid "MAX()" -msgstr "" +msgstr "MAX()" #. giyJK #: 04060184.xhp @@ -36995,7 +36998,7 @@ "par_id3166431\n" "help.text" msgid "MAXA()" -msgstr "" +msgstr "MAXA()" #. ZxXLp #: 04060184.xhp @@ -37049,7 +37052,7 @@ "par_id3155264\n" "help.text" msgid "MEDIAN()" -msgstr "" +msgstr "MEDIANA" #. bDCXJ #: 04060184.xhp @@ -37112,7 +37115,7 @@ "par_id3146964\n" "help.text" msgid "MIN()" -msgstr "" +msgstr "MIN()" #. yutoe #: 04060184.xhp @@ -37166,7 +37169,7 @@ "par_id3153336\n" "help.text" msgid "MINA()" -msgstr "" +msgstr "MINA()" #. TrF9C #: 04060184.xhp @@ -37220,7 +37223,7 @@ "par_id3145636\n" "help.text" msgid "AVEDEV()" -msgstr "" +msgstr "DESVPROM()" #. UA5P6 #: 04060184.xhp @@ -37265,7 +37268,7 @@ "par_id3154679\n" "help.text" msgid "AVERAGE()" -msgstr "" +msgstr "PROMEDIO()" #. AjUyH #: 04060184.xhp @@ -37310,7 +37313,7 @@ "par_id3149734\n" "help.text" msgid "AVERAGEA()" -msgstr "" +msgstr "PROMEDIOA" #. sxYNi #: 04060184.xhp @@ -37328,7 +37331,7 @@ "hd_id110421803716508\n" "help.text" msgid "" -msgstr "" +msgstr "" #. K3rLb #: 04060184.xhp @@ -37337,7 +37340,7 @@ "hd_id5471656631510\n" "help.text" msgid "" -msgstr "" +msgstr "" #. hKE9h #: 04060184.xhp @@ -37373,7 +37376,7 @@ "par_id3155950\n" "help.text" msgid "MODE()" -msgstr "" +msgstr "MODO()" #. VYNy2 #: 04060184.xhp @@ -37418,7 +37421,7 @@ "par_id2955950\n" "help.text" msgid "MODE.SNGL()" -msgstr "" +msgstr "MODA.UNO()" #. BGawC #: 04060184.xhp @@ -37472,7 +37475,7 @@ "par_id2855950\n" "help.text" msgid "MODE.MULT()" -msgstr "" +msgstr "MODA.VARIOS()" #. nrjtV #: 04060184.xhp @@ -37832,7 +37835,7 @@ "par_id3150613\n" "help.text" msgid "NORMDIST(Number; Mean; StDev [; C])" -msgstr "" +msgstr "DISTR.NORM(Número; Media; Derivación Estándar[; C])" #. CoXtp #: 04060184.xhp @@ -38066,7 +38069,7 @@ "par_id3150254\n" "help.text" msgid "Returns the value of the probability density function for a given value considering the standard normal distribution." -msgstr "" +msgstr "Devuelve el valor de la función de densidad de probabilidad para un valor dado considerando la distribución normal estándar." #. oEGwC #: 04060184.xhp @@ -38075,7 +38078,7 @@ "par_id151629986285891\n" "help.text" msgid "PHI(Number)" -msgstr "" +msgstr "PHI(Número)" #. 4JwEu #: 04060184.xhp @@ -38084,7 +38087,7 @@ "par_id3156108\n" "help.text" msgid "Number is the value for which the probability density function is calculated." -msgstr "" +msgstr "Númeroes el valor que se calcula para la función de densidad de probabilidad." #. 92hiK #: 04060184.xhp @@ -38093,7 +38096,7 @@ "par_id3155849\n" "help.text" msgid "=PHI(2.25) returns 0.0317." -msgstr "" +msgstr "=FI(2.25)devuelve 0.0317." #. NsLhE #: 04060184.xhp @@ -38102,7 +38105,7 @@ "par_id3143236\n" "help.text" msgid "=PHI(-2.25) also returns 0.0317 because the normal distribution is symmetrical." -msgstr "" +msgstr "=FI(-2.25)también devuelve 0.0317 ya que la distribución normal es simétrica." #. NXho4 #: 04060184.xhp @@ -38111,7 +38114,7 @@ "par_id3149286\n" "help.text" msgid "=PHI(0) returns 0.3989." -msgstr "" +msgstr "=FI(0)devuelve 0.3989." #. GMDrd #: 04060184.xhp @@ -38120,7 +38123,7 @@ "par_id611629985664328\n" "help.text" msgid "Calling PHI(Number) is equivalent to calling NORMDIST(Number,0,1,FALSE()) or NORM.S.DIST(Number;FALSE()), hence using the standard normal distribution with mean equal to 0 and standard deviation equal to 1 with the Cumulative argument set to False." -msgstr "" +msgstr "Llamar a FI(Número) es equivalente a llamar a.NORMDIST(Número,0,1,FALSO()) o NORM.S.DIST(Número; FALSO()), por lo que se utiliza la distribución normal estándar con media igual a 0 y la desviación estándar igual a 1 con la Acumulada establecido en Falso ." #. vqBTN #: 04060184.xhp @@ -38156,7 +38159,7 @@ "par_id3146093\n" "help.text" msgid "POISSON(Number; Mean [; C])" -msgstr "" +msgstr "POISSON(Número; Media [; C])" #. mZnNF #: 04060184.xhp @@ -38228,7 +38231,7 @@ "par_id2946093\n" "help.text" msgid "POISSON.DIST(Number; Mean ; Cumulative)" -msgstr "" +msgstr "DISTRIBUCIÓN DE POISSON(Número; Media; Acumulado)" #. jnjk7 #: 04060184.xhp @@ -38255,7 +38258,7 @@ "par_id2949200\n" "help.text" msgid "Cumulative = 0 or False to calculate the probability mass function; Cumulative = 1, True, or any other non-zero value to calculate the cumulative distribution function." -msgstr "" +msgstr "Acumulativa= 0 o Falso para calcular la función de mayor probabilidad;Acumulativa= 1, Verdadero, o cualquier otro valor distinto de cero para calcular la función de distribución acumulativa." #. gXFJQ #: 04060184.xhp @@ -38372,7 +38375,7 @@ "par_id2653976\n" "help.text" msgid "The difference between PERCENTILE.INC and PERCENTILE.EXC is that, in the PERCENTILE.INC function the value of alpha is within the range 0 to 1 inclusive, and in the PERCENTILE.EXC function, the value of alpha is within the range 0 to 1 exclusive." -msgstr "" +msgstr "La diferencia entre PERCENTIL.INC y PERCENTIL.EXC es que, en la función PERCENTIL.INC el valor de alfa esta dentro del rango de 0 a 1 inclusive, y en la función PERCENTIL.EXC el valor de alfa esta dentro del rango de 0 a 1 exclusivamente." #. iu26H #: 04060184.xhp @@ -38444,7 +38447,7 @@ "par_id2753976\n" "help.text" msgid "The difference between PERCENTILE.INC and PERCENTILE.EXC is that, in the PERCENTILE.INC function the value of alpha is within the range 0 to 1 inclusive, and in the PERCENTILE.EXC function, the value of alpha is within the range 0 to 1 exclusive." -msgstr "" +msgstr "La diferencia entre PERCENTIL.INC y PERCENTIL.EXC es que, en la función PERCENTIL.INC el valor de alfa esta dentro del rango de 0 a 1 inclusive, y en la función PERCENTIL.EXC el valor de alfa esta dentro del rango de 0 a 1 exclusivamente." #. LYbqG #: 04060184.xhp @@ -38597,7 +38600,7 @@ "par_id2847238\n" "help.text" msgid "PERCENTRANK.EXC(Data; Value [; Significance])" -msgstr "" +msgstr "RANGO PORCENTUAL.EXC(Datos; Valor [; Significatividad])" #. paUED #: 04060184.xhp @@ -38678,7 +38681,7 @@ "par_id2947238\n" "help.text" msgid "PERCENTRANK.INC(Data; Value [; Significance])" -msgstr "" +msgstr "RANGO.PERCENTIL.INC(Datos; Valor [; Significatividad])" #. QmR4b #: 04060184.xhp @@ -38975,7 +38978,7 @@ "par_id3153250\n" "help.text" msgid "RANK(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN(Valor; Datos [; Tipo])" #. AzAQx #: 04060185.xhp @@ -39074,7 +39077,7 @@ "par_id2953250\n" "help.text" msgid "RANK.AVG(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN.MEDIA(Valor; Datos [; Tipo])" #. 9jn8F #: 04060185.xhp @@ -39173,7 +39176,7 @@ "par_id2853250\n" "help.text" msgid "RANK.EQ(Value; Data [; Type])" -msgstr "" +msgstr "POSICIÓN.EQ(Valor; Datos [; Tipo])" #. mncnk #: 04060185.xhp @@ -39263,7 +39266,7 @@ "par_id3151191\n" "help.text" msgid "SKEW()" -msgstr "" +msgstr "ASIMETRÍA " #. BmsyE #: 04060185.xhp @@ -39461,7 +39464,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR " #. H3V9F #: 04060185.xhp @@ -39479,7 +39482,7 @@ "par_id3149434\n" "help.text" msgid "=STDEV(A1:A50) returns the estimated standard deviation based on the data referenced." -msgstr "" +msgstr " = DESVIACIÓN ESTÁNDAR (A1:A50) devuelve la desviación estándar estimada en base a los datos referenciados." #. EaGD7 #: 04060185.xhp @@ -39515,7 +39518,7 @@ "par_id3147422\n" "help.text" msgid "STDEVA()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR A " #. iK7Ch #: 04060185.xhp @@ -39569,7 +39572,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR P" #. ADXhB #: 04060185.xhp @@ -39614,7 +39617,7 @@ "par_id2954392\n" "help.text" msgid "STDEV.P()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR.P" #. 9PAi8 #: 04060185.xhp @@ -39659,7 +39662,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "" +msgstr "DESVIACIÓN ESTÁNDAR.S" #. fPUck #: 04060185.xhp @@ -39713,7 +39716,7 @@ "par_id3146851\n" "help.text" msgid "STDEVPA()" -msgstr "" +msgstr "DESVESTPA()" #. DL6D2 #: 04060185.xhp @@ -39722,7 +39725,7 @@ "par_id961585163990543\n" "help.text" msgid "Text has the value 0." -msgstr "" +msgstr "El texto tiene un valor de 0." #. avUGE #: 04060185.xhp @@ -40208,7 +40211,7 @@ "par_id3146790\n" "help.text" msgid "DEVSQ()" -msgstr "" +msgstr "DESVIA2()" #. tETcx #: 04060185.xhp @@ -40874,7 +40877,7 @@ "par_id3153054\n" "help.text" msgid "VAR()" -msgstr "" +msgstr "VAR()" #. qsPg5 #: 04060185.xhp @@ -40928,7 +40931,7 @@ "par_id2953054\n" "help.text" msgid "VAR.S()" -msgstr "" +msgstr "VAR.S()" #. GGJFX #: 04060185.xhp @@ -40982,7 +40985,7 @@ "par_id3149999\n" "help.text" msgid "VARA()" -msgstr "" +msgstr "VARA()" #. KSAnB #: 04060185.xhp @@ -41036,7 +41039,7 @@ "par_id3147282\n" "help.text" msgid "VARP()" -msgstr "" +msgstr "VARP()" #. PGCgC #: 04060185.xhp @@ -41081,7 +41084,7 @@ "par_id2947282\n" "help.text" msgid "VAR.P()" -msgstr "" +msgstr "VAR.P()" #. zF5Ys #: 04060185.xhp @@ -41126,7 +41129,7 @@ "par_id3149967\n" "help.text" msgid "VARPA()" -msgstr "" +msgstr "VARPA()" #. Fa9Jj #: 04060185.xhp @@ -41315,7 +41318,7 @@ "par_id3147330\n" "help.text" msgid "PROB(Data; Probability; Start [; End])" -msgstr "" +msgstr "PROBABILIDAD (Datos; Probabilidad; Inicio [; Fin])" #. Reoxn #: 04060185.xhp @@ -41477,7 +41480,7 @@ "par_id0305200911372899\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Consulte también la página del wiki." #. AC9jG #: 04060185.xhp @@ -41486,7 +41489,7 @@ "bm_id2950941\n" "help.text" msgid "WEIBULL.DIST function" -msgstr "WEIBULL.DIST" +msgstr "función DISTR.WEIBULL" #. 7pk6M #: 04060185.xhp @@ -41495,7 +41498,7 @@ "hd_id2950941\n" "help.text" msgid "WEIBULL.DIST" -msgstr "WEIBULL.DIST" +msgstr "DISTR.WEIBULL" #. 6o2Cy #: 04060185.xhp @@ -41594,7 +41597,7 @@ "par_id2905200911372899\n" "help.text" msgid "See also the Wiki page." -msgstr "" +msgstr "Consulte también la página del wiki." #. ZC7eG #: 04060199.xhp @@ -42908,7 +42911,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 "Abre la sección «Lista de funciones» de la barra lateral, que muestra todas las funciones que se pueden insertar en el documento. La sección Lista de funciones es similar a la pestaña Funciones del Asistente de funciones. Las funciones se insertarán con sustitutivos que debe reemplazar con sus propios valores." +msgstr "Abre el grupo Lista de funciones de la barra lateral, que muestra todas las funciones que se pueden insertar en el documento. La sección Lista de funciones es similar a la pestaña Funciones del Asistente para funciones. Las funciones se insertarán con sustitutivos que debe reemplazar con sus propios valores." #. kJGdD #: 04080000.xhp @@ -42989,7 +42992,7 @@ "par_id3153192\n" "help.text" msgid "Open a file dialog to locate the file containing the data you want to insert." -msgstr "" +msgstr "Abra el cuadro de dialogo del archivo para localizar el archivo que contiene los datos que desea insertar." #. kcfuM #: 04090000.xhp @@ -43025,7 +43028,7 @@ "par_id3145366\n" "help.text" msgid "Enter the URL or the file name that contains the data that you want to insert, and then press Enter. Alternatively, click Browse button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system." -msgstr "" +msgstr " Introduce la URL o el nombre del archivo que contiene los datos que desea insertar y después presione introducir. Alternativamente, pulsarBuscar enpara seleccionar el nombre del archivo en un cuadro de diálogo que se abre. Sólo entonces se solicitará la URL a la red o al sistema de archivos." #. oomVx #: 04090000.xhp @@ -43052,7 +43055,7 @@ "par_id3147397\n" "help.text" msgid "Select the table or the data range that you want to insert. If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and OK button will remain inactive" -msgstr "" +msgstr "Seleccione la tabla o el rango de datos que desea introducir. Si el documento de Calc o Exel seleccionado no contiene ningún rango con nombre, no se puede insertar los datos de la hoja de cálculo y OKpermanecerá inactivo." #. PVMSv #: 04090000.xhp @@ -43322,7 +43325,7 @@ "par_id3154758\n" "help.text" msgid "Determines the optimal row height for the selected rows. The optimal row height depends on the font size of the largest character in the row. You can use various units of measure." -msgstr "" +msgstr "Determina la altura óptima de las filas seleccionadas.La altura óptima de la fila depende del tamaño del tipo de letra mas grande de la fila. Puede utilizar varias.unidades de medida." #. hCkvc #: 05030200.xhp @@ -43448,7 +43451,7 @@ "par_id5532090\n" "help.text" msgid "Choose Format - Rows/Columns - Show or Format - Sheet - Show." -msgstr "" +msgstr "ElijaFormato - Filas/Columnas - MostraroFormato - Hoja - Mostrar." #. cGFcB #: 05030400.xhp @@ -43628,7 +43631,7 @@ "par_id3146120\n" "help.text" msgid "Defines the optimal column width in order to display the entire contents of the column. The additional spacing for the optimal column width is preset to 2 mm." -msgstr "" +msgstr "Define la anchura optima de la columna para mostrar todo su contenido.El espacio adicional para el ancho óptimo de la columna está preestablecido en 2 mm." #. CYMhG #: 05050000.xhp @@ -43763,7 +43766,7 @@ "par_id3155131\n" "help.text" msgid "Enter a new name for the sheet here." -msgstr "Ingrese aquí un nuevo nombre par ala Hoja ." +msgstr "Introduzca aquí un nombre nuevo para la hoja." #. JF3vh #: 05050100.xhp @@ -43853,7 +43856,7 @@ "bm_id501632012952361\n" "help.text" msgid "toggle merge and center cells" -msgstr "" +msgstr " alternar, combinar y centrar celdas" #. CQ5ZE #: 05060000.xhp @@ -43871,7 +43874,7 @@ "par_id3151246\n" "help.text" msgid "This is a toggleable control that joins all cells in a rectangular selection into a single cell, or returns merged cells to the original individual cells. When merging it will format the merged cell as center aligned." -msgstr "" +msgstr "Este es un control conmutable que une todas las celdas de una selección rectangular en una sola celda o devuelve las celdas combinadas a las celdas individuales originales. Cuando se fusiona, se formatea la celda combinada y se alinea al centro." #. b63oA #: 05060000.xhp @@ -43898,7 +43901,7 @@ "par_id441632808439621\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Siga uno de estos procedimientos:" #. bnEwD #: 05060000.xhp @@ -43934,7 +43937,7 @@ "par_id3154020\n" "help.text" msgid "Or, choose Format - Merge and Unmerge Cells - Merge and Center Cells." -msgstr "" +msgstr "O bien, vaya a Formato ▸ Combinar y separar celdas ▸ Combinar y centrar celdas." #. 8zues #: 05060000.xhp @@ -43943,7 +43946,7 @@ "par_id3149665\n" "help.text" msgid "Cells cannot be merged again without first unmerging them." -msgstr "" +msgstr "No es posible combinar nuevamente las celdas sin primero separarlas." #. Dybs6 #: 05060000.xhp @@ -43952,7 +43955,7 @@ "par_id581632979766784\n" "help.text" msgid "Merging a cell selection that partially includes merged cells is generally possible with Unmerge Cells followed by Merge Cells, without altering the initial selection. The result will be largely depend on previous choices when merging cells made with the Merge Cells Dialog options described below." -msgstr "" +msgstr "La combinación de una selección de celdas que incluye parcialmente las celdas combinadas es generalmente posible conSeparar Celdasseguido porCombinar Celdassin alterar la selección inicial. El resultado dependerá en gran medida de las elecciones anteriores al combinar celdas realizadas por elCuadro de dialogo y Combinar Celdasopciones que se describen a continuación." #. wNBDD #: 05060000.xhp @@ -43961,7 +43964,7 @@ "par_id3148552\n" "help.text" msgid "Multiple selection is not supported, that is, the selection must be rectangular." -msgstr "" +msgstr "No se admite la selección múltiple, es decir, la selección debe ser rectangular." #. XB4aH #: 05060000.xhp @@ -43970,7 +43973,7 @@ "par_id211632985508898\n" "help.text" msgid "The merged cell receives the name and content of the first cell of the selection." -msgstr "" +msgstr "La celda combinada recibe el nombre y el contenido de la primera celda de selección." #. XRBDv #: 05060000.xhp @@ -43979,7 +43982,7 @@ "par_id271632985709781\n" "help.text" msgid "If more than one cell to be merged has content the Merge Cells dialog opens." -msgstr "" +msgstr "Si más de una celda a combinar tiene contenido, se abre el cuadro de diálogo Combinar celdas." #. QWjJw #: 05060000.xhp @@ -43988,7 +43991,7 @@ "par_id391632360383197\n" "help.text" msgid "Merge Cells Dialog Options" -msgstr "" +msgstr "Opciones para combinar celdas del cuadro de dialogo." #. LBMEE #: 05060000.xhp @@ -44042,7 +44045,7 @@ "bm_id651593596384469\n" "help.text" msgid "style;pagepage;styleformat;pageformatting;page" -msgstr "" +msgstr "estilo; paginapágina; estiloformatear; páginaformato; pagina." #. Rpt6B #: 05070000.xhp @@ -44654,7 +44657,7 @@ "par_id3159488\n" "help.text" msgid "Opens a dialog where you can specify the print range. You can also set the rows or columns which are to be repeated in every page." -msgstr "" +msgstr "Abre un cuadro de diálogo en el que se puede especificar la zona de impresión. También puede establecer las filas o columnas que deben repetirse en cada página." #. eja4j #: 05080300.xhp @@ -44789,7 +44792,7 @@ "bm_id3150447\n" "help.text" msgid "Stylist, see Styles windowStyles windowformats; Styles windowformatting; Styles windowpaint can for applying stylesstyles in spreadsheetsstyles; in Calc" -msgstr "" +msgstr "Lista de estilos, ver Ventana de estilosVentana de estilosformatos; Ventana de estilosformateo; Ventana de estiloscolores para aplicar los estilosestilos en las hojas de cálculoestilos; en Calc" #. eA3vo #: 05100000.xhp @@ -44807,7 +44810,7 @@ "par_id3147434\n" "help.text" msgid "Use the Styles deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles." -msgstr "Utilice la sección Estilos de la barra lateral para asignar estilos a las celdas y las páginas. Puede aplicar, actualizar y modificar estilos o crear nuevos." +msgstr "Utilice el grupo Estilos de la barra lateral para asignar estilos a las celdas y las páginas. Puede aplicar, actualizar y modificar estilos o crear nuevos." #. nTiyj #: 05100000.xhp @@ -45014,7 +45017,7 @@ "par_id3150050\n" "help.text" msgid "Icon New Style from Selection" -msgstr "" +msgstr "Estilo nuevo a partir de la selección" #. aE4gp #: 05100000.xhp @@ -45086,7 +45089,7 @@ "par_idN109D1\n" "help.text" msgid "In the context menu you can choose commands to create a new style, delete a user-defined style, or change the selected style." -msgstr "" +msgstr "En el menú contextual puede elegir los comandos para crear un nuevo estilo, eliminar un estilo definido por el usuario o cambiar el estilo seleccionado." #. zdEoY #: 05100000.xhp @@ -45419,7 +45422,7 @@ "hd_id41624649786605\n" "help.text" msgid "Up" -msgstr "" +msgstr "Arriba" #. xSGWr #: 05120000.xhp @@ -45437,7 +45440,7 @@ "hd_id861624649792266\n" "help.text" msgid "Down" -msgstr "" +msgstr "Abajo" #. BAEJK #: 05120000.xhp @@ -45527,7 +45530,7 @@ "par_id31494139\n" "help.text" msgid "If you select Formula is as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches." -msgstr "" +msgstr "Si seleccionala fórmula escomo referencia, introduzca una referencia de celda. Si la referencia de celda es un valor distinto de cero, la condición coincide." #. bErXu #: 05120000.xhp @@ -45581,7 +45584,7 @@ "par_id3155605\n" "help.text" msgid "For a detailed explanation and examples, please visit How to apply a Color Scale Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Para una explicación detallada y con ejemplos, por favor visite. Cómo aplicar una página de formato condicional de escala de color en TDF Wiki." #. dACxH #: 05120000.xhp @@ -45590,7 +45593,7 @@ "par_id991609782427459\n" "help.text" msgid "Data Bar" -msgstr "" +msgstr "Barra de datos" #. xapwr #: 05120000.xhp @@ -45599,7 +45602,7 @@ "par_id41609780964157\n" "help.text" msgid "Data bar option will fill the cell with solid or gradient color corresponding to the numeric value in the cell. Default is blue for positive and red for negative." -msgstr "" +msgstr "La opción de la barra de datos rellenará la celda con un color sólido o degradado correspondiente al valor numérico de la celda. De manera predeterminada es azul para los positivos y rojo para los negativos." #. AKYoW #: 05120000.xhp @@ -45608,7 +45611,7 @@ "par_id931609781970981\n" "help.text" msgid "The calculation of the area of fill is based on Min - Max - Percentile - Value - Percent - Formula." -msgstr "" +msgstr "El cálculo del área de relleno se basa en Mínimo - Máximo - Porcentual - Valor - Porcentaje - Fórmula." #. smxFL #: 05120000.xhp @@ -45617,7 +45620,7 @@ "par_id981609782003841\n" "help.text" msgid "The choices Min and Max are sufficient to themselves as found in the range. Other options need to be specified by a value (Percentile, Value, Percentage) or a cell reference or formula (Formula)." -msgstr "" +msgstr "Las opciones Mínima y Máxima se bastan a sí mismas tal y como se encuentran en el rango. Otras opciones deben especificarse mediante un valor (Porcentual, Valor, Porcentaje) o una referencia de celda o fórmula (Fórmula)." #. qBVjM #: 05120000.xhp @@ -45626,7 +45629,7 @@ "par_id281609781729359\n" "help.text" msgid "More Options... opens a dialog to:" -msgstr "" +msgstr "Más opciones... abre un cuadro de diálogo para:" #. saDJA #: 05120000.xhp @@ -45635,7 +45638,7 @@ "par_id271609781812913\n" "help.text" msgid "change colors" -msgstr "" +msgstr "cambiar los colores" #. uncF8 #: 05120000.xhp @@ -45644,7 +45647,7 @@ "par_id921609781838551\n" "help.text" msgid "change position of vertical axis within the cell" -msgstr "" +msgstr "cambiar la posición del eje vertical dentro de la celda" #. wJNxE #: 05120000.xhp @@ -45761,7 +45764,7 @@ "par_id3155606\n" "help.text" msgid "For a detailed explanation and examples, please visit How to use Icon Set Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Para obtener una explicación detallada y ejemplos, visite la página Cómo utilizar el formato condicional por conjunto de iconos en el wiki de la TDF." #. GJTU3 #: 05120000.xhp @@ -46031,7 +46034,7 @@ "par_id3150447\n" "help.text" msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace." -msgstr "Tras haber definido un rastro, el puntero del ratón se puede situar sobre él. El puntero del ratón modifica su forma. Con este puntero, haga doble clic en el rastro para seleccionar la celda referenciada al final del rastro." +msgstr "Tras haber definido un rastro, sitúe el puntero del ratón sobre él. El puntero del ratón cambia de forma. Con este puntero, pulse dos veces en el rastro para seleccionar la celda referenciada al final de este." #. eFaMR #: 06030100.xhp @@ -46814,7 +46817,7 @@ "bm_id141619439455954\n" "help.text" msgid "insert rows;protected sheetinsert columns;protected sheetdelete columns;protected sheetdelete rows;protected sheetprotected sheet;insert columnsprotected sheet;insert rowsprotected sheet;delete rowsprotected sheet;delete columnsprotect;sheetselection;in protected cells" -msgstr "" +msgstr "insertar filas; hoja protegidainsertar columnas; hoja protegidaeliminar columnas; hoja protegidaeliminar filas; hoja protegidahoja protegida; insertar columnashoja protegida; insertar filashoja protegida; eliminar filashoja protegida; eliminar columnasproteger; hojaselección; en celdas protegidas" #. ZFcP8 #: 06060100.xhp @@ -46823,7 +46826,7 @@ "hd_id3153087\n" "help.text" msgid "Protecting Sheet" -msgstr "" +msgstr "Protección de hojas" #. LcpD8 #: 06060100.xhp @@ -46841,7 +46844,7 @@ "par_id701619429750616\n" "help.text" msgid "Choose Tools - Protect Sheet to open the Protect Sheet dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect." -msgstr "" +msgstr "EligeHerramientas - Proteger hojapara abrir elProteger hojacuadro de dialogo en el que podrá especificar la protección de la hoja con o sin contraseña, y seleccionar los elementos de la hoja que desea proteger." #. vFHpY #: 06060100.xhp @@ -46859,7 +46862,7 @@ "hd_id901619431276995\n" "help.text" msgid "Protect this sheet and contents of the protected cells" -msgstr "" +msgstr "Proteger esta hoja y el contenido de las celdas protegidas" #. G5UKV #: 06060100.xhp @@ -46895,7 +46898,7 @@ "hd_id711619431316966\n" "help.text" msgid "Allow users of this sheet to" -msgstr "" +msgstr "Permitir a los usuarios ésta hoja" #. skcWB #: 06060100.xhp @@ -46913,7 +46916,7 @@ "par_id661619430257262\n" "help.text" msgid "Select protected cells: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range." -msgstr "" +msgstr "Seleccione las celdas protegidasmarque esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla no está marcada, no puede seleccionar celdas protegidas, el cursor no puede entrar en un rango protegido." #. UqBRQ #: 06060100.xhp @@ -46922,7 +46925,7 @@ "par_id921619430295947\n" "help.text" msgid "Select unprotected cells: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range." -msgstr "" +msgstr "Seleccionar celdas no protegidasmarque esta casilla para permitir al usuario seleccionar celdas no protegidas. Cuando la casilla no está marcada, el usuario no puede seleccionar celdas no protegidas, el cursor no puede entrar en una celda o rango no protegido." #. R6DuD #: 06060100.xhp @@ -46931,7 +46934,7 @@ "par_id101619430333784\n" "help.text" msgid "Insert columns: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected." -msgstr "" +msgstr "Insertar columnasPermitir insertar columnas incluso cuando la hoja está protegida. Tenga en cuenta que cuando las inserciones de columnas están activadas, puede insertar columnas incluso cuando el rango en el que se insertan las nuevas columnas contiene celdas protegidas que se desplazarán después de la inserción. Las celdas de las columnas recién insertadas heredan la propiedad de Protección del rango al que pertenecen: cuando la nueva celda está dentro de un rango protegido, la celda está protegida, y cuando está en un rango no protegido, la celda está desprotegida." #. 36hCi #: 06060100.xhp @@ -46940,7 +46943,7 @@ "par_id891619430338809\n" "help.text" msgid "Insert rows: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected." -msgstr "" +msgstr "Insertar filasPermitir insertar filas incluso cuando la hoja está protegida. Tenga en cuenta que cuando las inserciones de filas están activadas, puede insertar filas incluso cuando el rango en el que se insertan las nuevas filas contiene celdas protegidas que se desplazarán después de la inserción. Las celdas de las filas recién insertadas heredan la propiedad de Protección del rango al que pertenecen: Cuando la nueva celda está dentro de un rango protegido está protegida, y cuando está en un rango no protegido, la celda no está protegida." #. hGXEq #: 06060100.xhp @@ -46949,7 +46952,7 @@ "par_id311619430374686\n" "help.text" msgid "Delete columns: Allow column deletions. Note that column deletions are only allowed on unprotected cells." -msgstr "" +msgstr "Eliminar columnasPermitir eliminar las columnas. Tenga en cuenta que la eliminación de columnas sólo se permiten en las celdas no protegidas." #. ebwLU #: 06060100.xhp @@ -46958,7 +46961,7 @@ "par_id561619430376854\n" "help.text" msgid "Delete rows: Allow row deletions. Note that row deletions are only allowed on unprotected cells." -msgstr "" +msgstr "Eliminar filasPermitir eliminar las filas. Tenga en cuenta que la eliminación de filas sólo se permiten en las celdas no protegidas." #. cE3Ff #: 06060100.xhp @@ -47022,6 +47025,8 @@ "help.text" msgid "On the Format - Cells - Cell Protection tab page, check the Protected box." msgstr "" +"En la pestañaFormato - Celdas - Protección de celdas\n" +"tabulador, marque la opciónProtegidocuadro." #. EeKFF #: 06060100.xhp @@ -47057,7 +47062,7 @@ "par_id3154656\n" "help.text" msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialog. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialog opens, where you must enter the password." -msgstr "" +msgstr "Una hoja o un rango de celdas protegidas no pueden modificarse hasta que se desactive esta protección, con las excepciones de la configuración de las columnas y la fila delHerramientas - Proteger hojacuadro de dialogo. Para desactivar la protección, elija la opciónHerramientas - Proteger hojaorden. Si no se ha establecido ninguna contraseña, la protección de la hoja se desactiva inmediatamente. Si la hoja estaba protegida con contraseña, laquitar protecciónse abre el cuadro de dialogo, donde debe introducir la contraseña." #. scXrG #: 06060100.xhp @@ -47156,7 +47161,7 @@ "par_id3150717\n" "help.text" msgid "You can completely protect your work by combining the options Tools - Protect Sheet and Tools - Protect Spreadsheet Structure, including password entry. If you want to prevent the document from being opened by other users, select Save With Password and click the Save button. The Enter Password dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document." -msgstr "" +msgstr "Puede proteger completamente su trabajo combinando las opcionesHerramientas - Proteger la hojayHerramientas - Proteger la estructura de la hoja de cálculoincluyendo la introducción de la contraseña. Si quiere evitar que el documento sea abierto por otros usuarios, seleccioneGuardar con contraseñay pulse en elGuardarbotón. LosIntroducir la contraseñaaparece el cuadro de diálogo. Tenga cuidado al elegir una contraseña; si la olvida después de cerrar un documento, no podrá acceder al documento." #. rH4Zz #: 06070000.xhp @@ -47174,7 +47179,7 @@ "bm_id3145673\n" "help.text" msgid "calculating; auto calculating sheetsrecalculate;auto calculating sheetsrecalculating;auto calculating sheetsAutoCalculate function in sheetscorrecting sheets automaticallyformulas;AutoCalculate functioncell contents;AutoCalculate function" -msgstr "" +msgstr "calculador; hojas de cálculo automáticorecalcular; hojas de auto cálculorecalcular; hojas de cálculo automáticofunción de auto cálculo en las hojascorregir hojas automáticamentefórmulas; función Auto Calcularcontenido de las celdas; función Auto Calcular" #. aruTj #: 06070000.xhp @@ -47219,7 +47224,7 @@ "bm_id3157909\n" "help.text" msgid "recalculating;all formulas in sheetsrecalculate;all formulas in sheetsformulas; recalculating manuallycell contents; recalculating" -msgstr "" +msgstr "recalcular; todas las fórmulas en las hojasrecalcular; todas las fórmulas en las hojasfórmulas; recalculando manualmentecontenido de la celda; recalculando" #. eVjX4 #: 06080000.xhp @@ -47237,7 +47242,7 @@ "par_id951584669541929\n" "help.text" msgid "Recalculates formula cells." -msgstr "" +msgstr "Vuelve a calcular las celdas de la fórmula." #. tCCr5 #: 06080000.xhp @@ -47246,7 +47251,7 @@ "par_id3154758\n" "help.text" msgid "If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them." -msgstr "" +msgstr "Si el cálculo automático está desactivado, la orden Volver a Calcular vuelve a calcular todas las celdas de fórmula (denominadas sucias) que dependen del contenido de la celda modificada y sus dependientes, y las celdas de fórmula que contienen funciones volátiles como RAND() o NOW() y las celdas de fórmula que dependen de ellas." #. QcG4R #: 06080000.xhp @@ -47255,7 +47260,7 @@ "par_id3154759\n" "help.text" msgid "If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them." -msgstr "" +msgstr "Si el cálculo automático está activado, la orden Volver a Calcular se aplica sólo a las celdas de fórmula que contienen funciones volátiles como ALEATORIO() o AHORA() y a las celdas de fórmula que dependen de ellas." #. CXEtC #: 06080000.xhp @@ -47264,7 +47269,7 @@ "par_id3154753\n" "help.text" msgid "In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation." -msgstr "" +msgstr "En cualquiera modo, con la(s) celda(s) de fórmula seleccionada(s), al presionar F9 se vuelven a calcular las celdas actualmente seleccionadas y las celdas de fórmula que dependen de ellas. Esto puede ser útil después de leer documentos con el recálculo desactivado y las celdas individuales necesitan ser recalculadas." #. jVUni #: 06080000.xhp @@ -47471,7 +47476,7 @@ "hd_id3150517\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "" +msgstr "Congelar filas y columnas" #. XjvVY #: 07090000.xhp @@ -47489,7 +47494,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congelar celdas" #. U6FYG #: 07090100.xhp @@ -47498,7 +47503,7 @@ "bm_id821612315529410\n" "help.text" msgid "freezing;first row freezing;first column freezing;cells" -msgstr "" +msgstr "congelación; primera filacongelación; primera columnacongelación; celda" #. tTzNC #: 07090100.xhp @@ -47507,7 +47512,7 @@ "hd_id961612313262512\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congelar celdas" #. sWGWB #: 07090100.xhp @@ -47516,7 +47521,7 @@ "par_id481612313262514\n" "help.text" msgid "Freezes the first column or the first row of the current spreadsheet." -msgstr "" +msgstr "Congela la primera columna o la primera fila de la hoja de cálculo actual." #. ozNTG #: 12010000.xhp @@ -47534,7 +47539,7 @@ "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "" +msgstr "Definir el intervalo" #. 8zFH5 #: 12010000.xhp @@ -47597,7 +47602,7 @@ "hd_id3153188\n" "help.text" msgid "Add/Modify" -msgstr "Agregar/Modificar" +msgstr "Añadir/Modificar" #. VBDQA #: 12010000.xhp @@ -47777,7 +47782,7 @@ "hd_id3145068\n" "help.text" msgid "Select Range" -msgstr "" +msgstr "Seleccione el intervalo" #. DjALP #: 12020000.xhp @@ -47822,7 +47827,7 @@ "hd_id3150275\n" "help.text" msgid "Sort" -msgstr "" +msgstr "Ordenar" #. BHBgn #: 12030000.xhp @@ -47840,7 +47845,7 @@ "par_id3147428\n" "help.text" msgid "You cannot sort data if the Record changes options is enabled." -msgstr "No se pueden ordenar datos si las opciones de cambios de registros de datos están habilitadas." +msgstr "No se puede ordenar los datos si alguna opción de Grabar cambios está activada." #. yfaxr #: 12030100.xhp @@ -48011,7 +48016,7 @@ "par_id3158212\n" "help.text" msgid "Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "" +msgstr "Ordena la selección de mayor a menor valor, o de menor a mayor valor. Los campos numéricos se ordenan por tamaño y los campos de texto por el orden de los caracteres. Puede definir las reglas de ordenación en Datos - Ordenar - Opciones.El orden por defecto se define en%NOMBRE DEL PRODUCTO-PreferenciasHerramientas - OpcionesConfiguración del idioma - Idiomas." #. cAFdw #: 12030100.xhp @@ -48074,7 +48079,7 @@ "par_id3153091\n" "help.text" msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies." -msgstr "" +msgstr "Ordena primero por letra mayúsculas y luego por letras minúsculas. Para los idiomas asiáticos, se aplica un orden especial." #. QbcU3 #: 12030200.xhp @@ -48083,7 +48088,7 @@ "par_idN10637\n" "help.text" msgid "For Asian languages: Check Case Sensitive to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison." -msgstr "" +msgstr "Para las lenguas asiáticas: ConsulteDistingue mayúsculas y minúsculaspara aplicar intercalación multinivel. Con la intercalación multinivel, las entradas se comparan primero en sus formas primitivas con sus mayúsculas y minúsculas y se ignoran los signos diacríticos. Si se evalúan como iguales, sus signos diacríticos se tienen en cuenta para la comparación de segundo nivel. Si todavía se evalúan como iguales, sus letras mayúsculas y minúsculas, el ancho de los caracteres y la diferencia de Kana japonés se consideran para la comparación de tercer nivel." #. Z5MKw #: 12030200.xhp @@ -48092,7 +48097,7 @@ "hd_id3155856\n" "help.text" msgid "Range contains row/column labels" -msgstr "" +msgstr "El rango contiene etiquetas de fila/columna" #. dHpeV #: 12030200.xhp @@ -48146,7 +48151,7 @@ "hd_id71610757096466\n" "help.text" msgid "Include boundary column(s)/row(s) containing only comments" -msgstr "" +msgstr "Incluir columna(s)/fila(s) de límite que contengan solo comentarios" #. AKcgf #: 12030200.xhp @@ -48155,7 +48160,7 @@ "par_id431610757186031\n" "help.text" msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted." -msgstr "" +msgstr "Las columnas límite del rango (para ordenar las filas) o las filas límite (para ordenar las columnas) de un rango de ordenación no se ordenan por defecto si están vacías. Marque esta opción si las columnas o filas límite que contienen comentarios también deben ordenarse." #. zDzUQ #: 12030200.xhp @@ -48164,7 +48169,7 @@ "hd_id161610757296697\n" "help.text" msgid "Include boundary column(s)/row(s) containing only images" -msgstr "" +msgstr "Incluir columna(s)/fila(s) delimitadora(s) que contenga(n) sólo imágenes" #. QCvRo #: 12030200.xhp @@ -48173,7 +48178,7 @@ "par_id181610758875786\n" "help.text" msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted." -msgstr "" +msgstr "Las columnas límite (para clasificar filas) o las filas límite (para clasificar columnas) de un área de clasificación no se clasifican por defecto si están vacías. Marque esta opción si las columnas de los bordes o las filas de los bordes que contienen imágenes también deben clasificarse." #. LBnqi #: 12030200.xhp @@ -48200,7 +48205,7 @@ "hd_id3153418\n" "help.text" msgid "Sort results (named ranges list)" -msgstr "" +msgstr "Ordenar los resultados (lista de rangos con nombre)" #. JGhWC #: 12030200.xhp @@ -48209,7 +48214,7 @@ "par_id3155602\n" "help.text" msgid " Select a named cell range where you want to display the sorted list." -msgstr "" +msgstr "Seleccione un nombrerango de celdasdonde desea mostrar la lista ordenada." #. nxJWR #: 12030200.xhp @@ -48218,7 +48223,7 @@ "hd_id3153707\n" "help.text" msgid "Sort results (input box)" -msgstr "" +msgstr "Ordenar los resultados (cuadro de entrada)" #. BDJEH #: 12030200.xhp @@ -48227,7 +48232,7 @@ "par_id3145642\n" "help.text" msgid "Enter the cell range where you want to display the sorted list." -msgstr "" +msgstr "Ingrese el rango de celdas donde desea mostrar la lista ordenada." #. ZCoZV #: 12030200.xhp @@ -48254,7 +48259,7 @@ "hd_id3154704\n" "help.text" msgid "Custom sort order list" -msgstr "" +msgstr "Lista de orden de clasificación personalizada" #. hQE6m #: 12030200.xhp @@ -48263,7 +48268,7 @@ "par_id3155962\n" "help.text" msgid " Select the custom sort order that you want to apply. To define a custom sort order, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Seleccione el orden de clasificación personalizado que desea aplicar. Para definir un orden de clasificación personalizado, seleccione%NOMBRE DEL PRODUCTO - PreferenciasHerramientas - Opciones%NOMBRE DEL PRODUCTO Calc - Ordenar listas" #. vH2Uh #: 12030200.xhp @@ -48452,7 +48457,7 @@ "hd_id101621534096986\n" "help.text" msgid "Sort Ascending" -msgstr "" +msgstr "Orden ascendente" #. u7XHt #: 12040100.xhp @@ -48461,7 +48466,7 @@ "par_id31621544435954\n" "help.text" msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column." -msgstr "" +msgstr "Muestre las filas del rango de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." #. 6Q8nn #: 12040100.xhp @@ -48470,7 +48475,7 @@ "hd_id561621534101425\n" "help.text" msgid "Sort Descending" -msgstr "" +msgstr "Orden descendiente" #. CbVJm #: 12040100.xhp @@ -48479,7 +48484,7 @@ "par_id861621544431393\n" "help.text" msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column." -msgstr "" +msgstr "Muestra las filas del rango de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." #. sHhH3 #: 12040100.xhp @@ -48497,7 +48502,7 @@ "par_id341621544426925\n" "help.text" msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown." -msgstr "" +msgstr "Muestra las 10 filas del rango de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." #. 4oiCy #: 12040100.xhp @@ -48551,7 +48556,7 @@ "par_id691621544414646\n" "help.text" msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected." -msgstr "" +msgstr "Muestra sólo las filas del rango de celdas para las que el color del texto de la celda en la columna actual coincide con el color seleccionado." #. pdme8 #: 12040100.xhp @@ -48569,7 +48574,7 @@ "par_id491621544410605\n" "help.text" msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected." -msgstr "" +msgstr "Muestra solo las filas del rango de celdas para las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." #. wCDB5 #: 12040100.xhp @@ -48605,7 +48610,7 @@ "par_id421621544399700\n" "help.text" msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries." -msgstr "" +msgstr "Busque una entrada específica en la lista de valores que se encuentran en la columna actual. A medida que se escriben caracteres en el cuadro de texto, esta lista se actualiza para mostrar solo las entradas coincidentes." #. igezW #: 12040100.xhp @@ -48623,7 +48628,7 @@ "par_id641621544394836\n" "help.text" msgid "Click once to select to show all rows and click again to select to hide all rows." -msgstr "" +msgstr "Pulse una vez para seleccionar y mostrar todas las filas , pulse de nuevo para seleccionar y ocultar todas las filas." #. EADGt #: 12040100.xhp @@ -48632,7 +48637,7 @@ "hd_id731621534146408\n" "help.text" msgid "Show only current" -msgstr "" +msgstr "Mostrar sólo la versión actual" #. FURWe #: 12040100.xhp @@ -48641,7 +48646,7 @@ "par_id71621544390147\n" "help.text" msgid "Display only rows containing the value highlighted in the Value box." -msgstr "" +msgstr "Mostrar solo las filas que contienen el valor resaltado en elValorcuadro." #. ovQAm #: 12040100.xhp @@ -48650,7 +48655,7 @@ "hd_id11621534151081\n" "help.text" msgid "Hide only current" -msgstr "" +msgstr "Ocultar sólo lo actual" #. EJgvW #: 12040100.xhp @@ -48659,7 +48664,7 @@ "par_id491621544384770\n" "help.text" msgid "Hide all rows containing the value highlighted in the Value box and display all other rows." -msgstr "" +msgstr "Oculta todas las filas que contienen el valor resaltado en el cuadro Valor y en el cuadro muestra todas las demás filas." #. kVCCi #: 12040100.xhp @@ -48992,7 +48997,7 @@ "hd_id3153822\n" "help.text" msgid "Subtotals" -msgstr "" +msgstr "Subtotales" #. 2jiYA #: 12050000.xhp @@ -49244,7 +49249,7 @@ "par_id3149400\n" "help.text" msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Utiliza un orden de clasificación personalizado que ha definido en el cuadro de diálogo Opciones enPRODUCTNAME Calc - Ordenar listas" #. 5w6FV #: 12050200.xhp @@ -49280,7 +49285,7 @@ "par_id3153766\n" "help.text" msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "" +msgstr "Ordena comenzando con el valor más alto. Puede definir las reglas de ordenación en Datos - Ordenar - Opciones.El valor por defecto se define en%NOMBRE DEL PRODUCTO - PreferenciaOpciones de herramientas- Ajustes de idioma - Idiomas" #. qjwrH #: 12060000.xhp @@ -49298,7 +49303,7 @@ "hd_id3153381\n" "help.text" msgid "Multiple Operations" -msgstr "" +msgstr "Operaciones Múltiples " #. WJG7J #: 12060000.xhp @@ -49406,7 +49411,7 @@ "hd_id3148946\n" "help.text" msgid "Consolidate" -msgstr "" +msgstr "Consolidar" #. LGBKi #: 12070000.xhp @@ -49613,7 +49618,7 @@ "hd_id3159154\n" "help.text" msgid "Link to source data" -msgstr "Conectar con datos fuente" +msgstr "Enlazar a datos de origen" #. CG7Gn #: 12070100.xhp @@ -49622,7 +49627,7 @@ "par_id3146986\n" "help.text" msgid "Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed." -msgstr "Vincula los datos del área de consolidación con los datos fuente y actualiza automáticamente los resultados de la consolidación en caso de modificación de dichos datos fuente." +msgstr "Enlaza los datos del intervalo de consolidación con los datos de origen y actualiza automáticamente los resultados de la consolidación en caso de que dichos datos de origen se modifiquen." #. AetFo #: 12070100.xhp @@ -49685,7 +49690,7 @@ "hd_id3147229\n" "help.text" msgid "Group" -msgstr "Agrupar..." +msgstr "Agrupar" #. 3AEgr #: 12080000.xhp @@ -50810,7 +50815,7 @@ "par_idN108F1\n" "help.text" msgid "If you double-click a field which has adjacent fields at the same level, the Show Detail dialog opens:" -msgstr "Si hace doble clic en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo Mostrar detalle:" +msgstr "Si pulsa dos veces en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo Mostrar detalle:" #. qExkE #: 12090102.xhp @@ -55355,7 +55360,7 @@ "par_id2309201512011592\n" "help.text" msgid "Ignore only hidden rows" -msgstr "Ignorar solos filas ocultas" +msgstr "Ignorar solo filas ocultas" #. eDQoE #: func_aggregate.xhp @@ -55364,7 +55369,7 @@ "par_id230920151201150\n" "help.text" msgid "Ignore only errors" -msgstr "Ignorar solo los errores" +msgstr "Ignorar solo errores" #. AEVKM #: func_aggregate.xhp @@ -56327,7 +56332,7 @@ "par_id3155000\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Significatividad (opcional) es el valor, o una referencia a una celda que contiene el valor, a cuyo múltiplo Número se redondeará. Su valor predeterminado es +1 o −1, en función del signo de Número." #. AosjB #: func_ceiling.xhp @@ -56408,7 +56413,7 @@ "par_id2953422\n" "help.text" msgid "Rounds a number up to the nearest multiple of a significance value." -msgstr "Redondea al alza un número hacia el múltiplo de significación más próximo." +msgstr "Redondea al alza un número hacia el múltiplo de significatividad más próximo." #. BjuBa #: func_ceiling.xhp @@ -56435,7 +56440,7 @@ "par_id2953454\n" "help.text" msgid "CEILING.PRECISE(Number [; Significance])" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.EXACTO(Número [; Significatividad])" #. FaYeD #: func_ceiling.xhp @@ -56453,7 +56458,7 @@ "par_id201586213398634\n" "help.text" msgid "=CEILING.PRECISE(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.EXACTO(3.45) devuelve 4." #. KxeUC #: func_ceiling.xhp @@ -56462,7 +56467,7 @@ "par_id651586213406243\n" "help.text" msgid "=CEILING.PRECISE(-45.67; 2) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.EXACTO(-45.67; 2) devuelve -44." #. WV9bx #: func_ceiling.xhp @@ -56471,7 +56476,7 @@ "bm_id911516997198644\n" "help.text" msgid "CEILING.MATH function" -msgstr "" +msgstr "Función MULTIPLO.SUPERIOR.MAT" #. 7xeKu #: func_ceiling.xhp @@ -56480,7 +56485,7 @@ "hd_id91516997330445\n" "help.text" msgid "CEILING.MATH" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.MAT" #. AzJvD #: func_ceiling.xhp @@ -56507,7 +56512,7 @@ "par_id291516998575663\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Esta función existe por razones de interoperatividad con Microsoft Excel, versión 2013 o más reciente." #. pcXnS #: func_ceiling.xhp @@ -56543,7 +56548,7 @@ "par_id331586208590009\n" "help.text" msgid "=CEILING.MATH(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(3.45) devuelve 4." #. g5xAQ #: func_ceiling.xhp @@ -56552,7 +56557,7 @@ "par_id481586208595809\n" "help.text" msgid "=CEILING.MATH(3.45; -3) returns 6." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(3.45; -3) devuelve 6." #. Eby7i #: func_ceiling.xhp @@ -56561,7 +56566,7 @@ "par_id641586208600665\n" "help.text" msgid "=CEILING.MATH(-1.234) returns -1." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-1.234) devuelve -1." #. T4orc #: func_ceiling.xhp @@ -56570,7 +56575,7 @@ "par_id151586208604536\n" "help.text" msgid "=CEILING.MATH(-45.67; -2; 0) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-45,67; -2; 0) devuelve -44." #. opt6B #: func_ceiling.xhp @@ -56579,7 +56584,7 @@ "par_id971586208611345\n" "help.text" msgid "=CEILING.MATH(-45.67; +2; 1) returns -46." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.MAT(-45,67; +2; 1) devuelve -46." #. EzE9t #: func_ceiling.xhp @@ -56687,7 +56692,7 @@ "hd_id8952518\n" "help.text" msgid "ISO.CEILING" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.ISO" #. 5beBC #: func_ceiling.xhp @@ -56723,7 +56728,7 @@ "par_id8953454\n" "help.text" msgid "ISO.CEILING(Number [; Significance])" -msgstr "" +msgstr "MULTIPLO.SUPERIOR.ISO(Número [; Significatividad])" #. hwhCW #: func_ceiling.xhp @@ -56741,7 +56746,7 @@ "par_id801586214431463\n" "help.text" msgid "=ISO.CEILING(3.45) returns 4." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.ISO(3.45) devuelve 4." #. QHpJp #: func_ceiling.xhp @@ -56750,7 +56755,7 @@ "par_id181586214438808\n" "help.text" msgid "=ISO.CEILING(-45.67; 2) returns -44." -msgstr "" +msgstr "=MULTIPLO.SUPERIOR.ISO(-45.67; 2) devuelve -44." #. GuEcB #: func_color.xhp @@ -56858,7 +56863,7 @@ "tit\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "Función CONCAT" #. WEfAD #: func_concat.xhp @@ -56867,7 +56872,7 @@ "bm_id741556228031712\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "Función CONCAT" #. BCZMB #: func_concat.xhp @@ -56876,7 +56881,7 @@ "hd_id471556226436779\n" "help.text" msgid "CONCAT" -msgstr "" +msgstr "CONCAT" #. jUBjE #: func_concat.xhp @@ -56912,7 +56917,7 @@ "par_id911556226813412\n" "help.text" msgid "CONCAT( )" -msgstr "" +msgstr "CONCAT( )" #. aTwgH #: func_concat.xhp @@ -56975,7 +56980,7 @@ "par_id761620414839890\n" "help.text" msgid "The measurement units recognized by CONVERT fall into 13 groups, which are listed below. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups." -msgstr "" +msgstr "Las unidades de medida reconocidas por CONVERTIR se dividen en 13 grupos, que se enumeran a continuación. CONVERTIR realizará conversiones entre dos unidades dentro de un grupo, pero rechazará cualquier solicitud de conversión entre unidades en diferentes grupos." #. x6USE #: func_convert.xhp @@ -56984,7 +56989,7 @@ "par_id861620428840333\n" "help.text" msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown below." -msgstr "" +msgstr "También puede agregar prefijos binarios y decimales a las unidades de medida que los admitan. La lista de todos los prefijos y sus correspondientes multiplicadores se muestra abajo." #. GvB7m #: func_convert.xhp @@ -57002,7 +57007,7 @@ "par_id23219159944266\n" "help.text" msgid "CONVERT(Number; FromUnit; ToUnit)" -msgstr "" +msgstr "CONVERTIR(Número; DesdeUnidad; AUnidad)" #. RiLFj #: func_convert.xhp @@ -57020,7 +57025,7 @@ "par_id3154472\n" "help.text" msgid "FromUnit is the unit from which conversion is taking place." -msgstr "" +msgstr "DesdeUnidad es la unidad a partir de la cual se realiza la conversión." #. d2Hrk #: func_convert.xhp @@ -57029,7 +57034,7 @@ "par_id3153790\n" "help.text" msgid "ToUnit is the unit to which conversion is taking place. Both units must be of the same type." -msgstr "" +msgstr "AUnidad es la unidad a la que se realiza la conversión. Ambas unidades deben ser del mismo tipo." #. 7D2db #: func_convert.xhp @@ -57038,7 +57043,7 @@ "par_id541620414925560\n" "help.text" msgid "If FromUnit and ToUnit are not valid units from the same group, then CONVERT reports an invalid argument error (Err:502)." -msgstr "" +msgstr "Si DesdeUnidad y AUnidad no son unidades válidas del mismo grupo, entonces CONVERTIR informa un error de argumento no válido (Error:502)." #. gq5EJ #: func_convert.xhp @@ -57056,7 +57061,7 @@ "par_id951620413562988\n" "help.text" msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value." -msgstr "" +msgstr "Aquí la función convierte -10 grados Celsius a grados Fahrenheit, devolviendo el valor 14. No existe una relación multiplicativa simple entre las unidades de temperatura, ya que se utilizan diferentes puntos de referencia. Por lo tanto, como en este caso, un número negativo de entrada puede convertirse en un valor positivo." #. CQPne #: func_convert.xhp @@ -57065,7 +57070,7 @@ "par_id3154834\n" "help.text" msgid "=CONVERT(3.5; \"mi\"; \"yd\")" -msgstr "" +msgstr "=CONVERTIR(3.5; \"mi\"; \"yd\")" #. xaEX2 #: func_convert.xhp @@ -57074,7 +57079,7 @@ "par_id971620413678102\n" "help.text" msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group." -msgstr "" +msgstr "Aquí la función convierte 3,5 millas internacionales a yardas, devolviendo el valor 6160. Ambas unidades están en el grupo de longitud y distancia." #. 3GMEy #: func_convert.xhp @@ -57083,7 +57088,7 @@ "par_id741620413834726\n" "help.text" msgid "=CONVERT(256; \"Gibit\"; \"Mibyte\")" -msgstr "" +msgstr "=CONVERTIR(256; \"Gibit\"; \"Mibyte\")" #. pdEtf #: func_convert.xhp @@ -57092,7 +57097,7 @@ "par_id261620413900652\n" "help.text" msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes." -msgstr "" +msgstr "Aquí la función convierte 256 gigibits a mebibytes, devolviendo el valor 32768. Ambas unidades (bit y byte) están en el grupo Información y admiten prefijos binarios." #. cdqCp #: func_convert.xhp @@ -57101,7 +57106,7 @@ "par_id761620413966496\n" "help.text" msgid "=CONVERT(1; \"dyn\"; \"e\")" -msgstr "" +msgstr "=CONVERTIR(1; \"dyn\"; \"e\")" #. vDR5q #: func_convert.xhp @@ -57110,7 +57115,7 @@ "par_id531620414005955\n" "help.text" msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)." -msgstr "" +msgstr "Aquí la función devuelve un error de argumento no válido (Error:502) ya que las dos unidades (dina y ergio) están en grupos diferentes (Fuerza y Energía respectivamente)." #. DGVq5 #: func_convert.xhp @@ -57128,7 +57133,7 @@ "par_id481620428685029\n" "help.text" msgid "Below are the unit measurement groups supported by the CONVERT function. Beware that conversions can only happen between units that belong to the same group." -msgstr "" +msgstr "A continuación se muestran los grupos de unidades de medida admitidos por la función CONVERTIR. Tenga en cuenta que las conversiones solo pueden ocurrir entre unidades que pertenecen al mismo grupo." #. Rd9Fp #: func_convert.xhp @@ -57137,7 +57142,7 @@ "par_id461620429183259\n" "help.text" msgid "The column Prefix indicates whether or not a given unit of measurement supports prefixes." -msgstr "" +msgstr "La columna Prefijo indica si una determinada unidad de medida admite o no prefijos." #. ELyFm #: func_convert.xhp @@ -57254,7 +57259,7 @@ "par_id731620416024782\n" "help.text" msgid "Square international mile" -msgstr "" +msgstr "Milla internacional cuadrada" #. 4i4iC #: func_convert.xhp @@ -57272,7 +57277,7 @@ "par_id661620416251507\n" "help.text" msgid "Square nautical mile" -msgstr "" +msgstr "Milla náutica cuadrada" #. hCiCS #: func_convert.xhp @@ -57281,7 +57286,7 @@ "par_id791620416251948\n" "help.text" msgid "Square pica point" -msgstr "" +msgstr "Punto de pica cuadrado" #. ZfeRr #: func_convert.xhp @@ -57299,7 +57304,7 @@ "par_id621620416418311\n" "help.text" msgid "International acre" -msgstr "" +msgstr "Acre internacional." #. AsFDV #: func_convert.xhp @@ -57308,7 +57313,7 @@ "par_id71620416418768\n" "help.text" msgid "US survey acre" -msgstr "" +msgstr "Acre de agrimensura de EE. UU." #. vFpVJ #: func_convert.xhp @@ -57317,7 +57322,7 @@ "par_id71620416418025\n" "help.text" msgid "Square yard" -msgstr "" +msgstr "Yarda cuadrada" #. Y8KWb #: func_convert.xhp @@ -57362,7 +57367,7 @@ "par_id797688281572156\n" "help.text" msgid "British thermal unit" -msgstr "" +msgstr "Unidad Térmica Británica." #. nu34E #: func_convert.xhp @@ -57371,7 +57376,7 @@ "par_id844417659281393\n" "help.text" msgid "Thermochemical calorie" -msgstr "" +msgstr "Caloría termoquímica" #. DBTz9 #: func_convert.xhp @@ -57380,7 +57385,7 @@ "par_id672765982649722\n" "help.text" msgid "International Steam Table calorie" -msgstr "" +msgstr "Caloría de la Tabla Internacional del Vapor" #. uw6BK #: func_convert.xhp @@ -57389,7 +57394,7 @@ "par_id798492531882282\n" "help.text" msgid "erg" -msgstr "" +msgstr "Ergio" #. i9qGV #: func_convert.xhp @@ -57398,7 +57403,7 @@ "par_id547247548598782\n" "help.text" msgid "Electron volt" -msgstr "" +msgstr "Electronvoltio" #. sLtDD #: func_convert.xhp @@ -57407,7 +57412,7 @@ "par_id587393171297892\n" "help.text" msgid "Foot-pound" -msgstr "" +msgstr "Pie-libra" #. 2GjCu #: func_convert.xhp @@ -57416,7 +57421,7 @@ "par_id695171299238861\n" "help.text" msgid "Horsepower-hour" -msgstr "" +msgstr "Caballo de potencia por hora" #. ZPZRc #: func_convert.xhp @@ -57542,7 +57547,7 @@ "par_id297688664469184\n" "help.text" msgid "Newton" -msgstr "Newton" +msgstr "Neutonio" #. EEy3q #: func_convert.xhp @@ -57560,7 +57565,7 @@ "par_id472715992174398\n" "help.text" msgid "Pond" -msgstr "" +msgstr "Pondio" #. Z8snf #: func_convert.xhp @@ -57740,7 +57745,7 @@ "par_id343241931577938\n" "help.text" msgid "Pica point" -msgstr "" +msgstr "Punto de pica" #. J45F6 #: func_convert.xhp @@ -57758,7 +57763,7 @@ "par_id579641593251685\n" "help.text" msgid "US survey mile" -msgstr "" +msgstr "Milla topográfica de EE.UU." #. bHo6X #: func_convert.xhp @@ -57857,7 +57862,7 @@ "par_id613492674545171\n" "help.text" msgid "Pennyweight" -msgstr "" +msgstr "«Pennyweight»" #. BE88d #: func_convert.xhp @@ -57866,7 +57871,7 @@ "par_id566783887997575\n" "help.text" msgid "Slug" -msgstr "" +msgstr "«Slug»" #. VmfEH #: func_convert.xhp @@ -57875,7 +57880,7 @@ "par_id731498557457276\n" "help.text" msgid "Stone" -msgstr "" +msgstr "«Stone»" #. ZLyGB #: func_convert.xhp @@ -57956,7 +57961,7 @@ "par_id578436173796358\n" "help.text" msgid "Mechanical horsepower" -msgstr "" +msgstr "Caballo de potencia mecánico" #. M6req #: func_convert.xhp @@ -58100,7 +58105,7 @@ "par_id391572877557741\n" "help.text" msgid "Admiralty knot" -msgstr "" +msgstr "Nudo del Almirantazgo" #. X3yym #: func_convert.xhp @@ -58109,7 +58114,7 @@ "par_id152721538362456\n" "help.text" msgid "International knot" -msgstr "" +msgstr "Nudo internacional" #. KAWp4 #: func_convert.xhp @@ -58352,7 +58357,7 @@ "par_id545825775819166\n" "help.text" msgid "Oil barrel" -msgstr "" +msgstr "Barril de petróleo" #. a3nDk #: func_convert.xhp @@ -58361,7 +58366,7 @@ "par_id976829653577442\n" "help.text" msgid "US bushel" -msgstr "" +msgstr "Bushel de EE.UU." #. Fb3dj #: func_convert.xhp @@ -58370,7 +58375,7 @@ "par_id184258429676826\n" "help.text" msgid "US cup" -msgstr "" +msgstr "Taza de EE.UU." #. z98AU #: func_convert.xhp @@ -58397,7 +58402,7 @@ "par_id938562498562468\n" "help.text" msgid "Australian glass (200 milliliters)" -msgstr "" +msgstr "Vaso australiano (200 mililitros)" #. vFvu4 #: func_convert.xhp @@ -58406,7 +58411,7 @@ "par_id471177863127144\n" "help.text" msgid "Gross register tonnage" -msgstr "" +msgstr "Tonelaje de arqueo bruto" #. tM2GH #: func_convert.xhp @@ -58415,7 +58420,7 @@ "par_id347175644673122\n" "help.text" msgid "Humpen (500 milliliters)" -msgstr "" +msgstr "Humpen (500 mililitros)" #. 3jCKA #: func_convert.xhp @@ -58460,7 +58465,7 @@ "par_id463843338576911\n" "help.text" msgid "Cubic international mile" -msgstr "" +msgstr "Milla cúbica internacional" #. apJka #: func_convert.xhp @@ -58469,7 +58474,7 @@ "par_id995778363641811\n" "help.text" msgid "Australian middy (285 milliliters)" -msgstr "" +msgstr "Middy australiano (285 mililitros)" #. 5vKXB #: func_convert.xhp @@ -58478,7 +58483,7 @@ "par_id894695318848125\n" "help.text" msgid "Measurement ton" -msgstr "" +msgstr "Tonelada de medición" #. gAxRC #: func_convert.xhp @@ -58487,7 +58492,7 @@ "par_id392284181269245\n" "help.text" msgid "Cubic nautical mile" -msgstr "" +msgstr "Milla náutica cúbica" #. GLMFQ #: func_convert.xhp @@ -58496,7 +58501,7 @@ "par_id371262895179554\n" "help.text" msgid "US fluid ounce" -msgstr "" +msgstr "Onza líquida estadounidense" #. KdjB5 #: func_convert.xhp @@ -58505,7 +58510,7 @@ "par_id956867693183654\n" "help.text" msgid "Cubic pica" -msgstr "" +msgstr "Pica cúbica" #. wPWak #: func_convert.xhp @@ -58514,7 +58519,7 @@ "par_id698697624265559\n" "help.text" msgid "US pint" -msgstr "" +msgstr "Pinta estadounidense" #. oaVnc #: func_convert.xhp @@ -58523,7 +58528,7 @@ "par_id615917164511264\n" "help.text" msgid "US quart" -msgstr "" +msgstr "Cuarto de galón estadounidense" #. nFgfR #: func_convert.xhp @@ -58532,7 +58537,7 @@ "par_id653481929342877\n" "help.text" msgid "Australian schooner (425 milliliters)" -msgstr "" +msgstr "Goleta australiana (425 mililitros)" #. yumuN #: func_convert.xhp @@ -58541,7 +58546,7 @@ "par_id912821548196546\n" "help.text" msgid "Six pack (2 liters)" -msgstr "" +msgstr "Paquete de seis (2 litros)" #. GNQxR #: func_convert.xhp @@ -58550,7 +58555,7 @@ "par_id248216629889251\n" "help.text" msgid "US tablespoon" -msgstr "" +msgstr "Cucharada estadounidense" #. Bs5pc #: func_convert.xhp @@ -58559,7 +58564,7 @@ "par_id745625921159327\n" "help.text" msgid "US teaspoon" -msgstr "" +msgstr "Cucharadita estadounidense" #. oFoZf #: func_convert.xhp @@ -58568,7 +58573,7 @@ "par_id864223151994899\n" "help.text" msgid "Metric teaspoon" -msgstr "" +msgstr "Cucharadita métrica" #. 6eLBT #: func_convert.xhp @@ -58577,7 +58582,7 @@ "par_id311759289592485\n" "help.text" msgid "Imperial gallon" -msgstr "" +msgstr "Galón imperial" #. zJyLT #: func_convert.xhp @@ -58586,7 +58591,7 @@ "par_id673293916128784\n" "help.text" msgid "Imperial pint" -msgstr "" +msgstr "Pinta imperial" #. f9zhg #: func_convert.xhp @@ -58595,7 +58600,7 @@ "par_id213353742979736\n" "help.text" msgid "Imperial quart" -msgstr "" +msgstr "Cuarto de galón imperial" #. TGDmn #: func_convert.xhp @@ -58676,7 +58681,7 @@ "par_id871621424421294\n" "help.text" msgid "CONVERT Wiki page" -msgstr "" +msgstr "Página Wiki de CONVERTIR" #. JEUej #: func_countifs.xhp @@ -58703,7 +58708,7 @@ "hd_id456845684568\n" "help.text" msgid "COUNTIFS" -msgstr "" +msgstr "CONTAR.SI.CONJUNTO" #. pGTzr #: func_countifs.xhp @@ -58712,7 +58717,7 @@ "par_id462646264626\n" "help.text" msgid "Returns the count of cells that meet criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el recuento de celdas que cumplen los criterios en varios intervalos." #. jbwVT #: func_countifs.xhp @@ -58721,7 +58726,7 @@ "par_id27421466710275\n" "help.text" msgid "COUNTIFS(Range; Criterion[; Range2; Criterion2][; ... ; [Range127; Criterion127]])" -msgstr "" +msgstr "CONTAR.SI.CONJUNTO(Rango; Criterio[; Rango2; Criterio2][; ... ; [Rango127; Criterio127]])" #. KTAXW #: func_countifs.xhp @@ -58730,7 +58735,7 @@ "par_id14734320631377\n" "help.text" msgid "Range, Range2, ... and Criterion, Criterion2, ... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Rango, Rango2, ... y Criterio, Criterio2, ... deben tener el mismo tamaño, de lo contrario la función devuelve error:502 - Argumento no válido." #. ZuFZj #: func_countifs.xhp @@ -59081,7 +59086,7 @@ "par_id908841\n" "help.text" msgid "Number of whole days between Start date and End date." -msgstr "Número de días completos entre Fecha de inicio y Fecha de final." +msgstr "Número de días completos entre Fecha de inicio y Fecha de finalización." #. KTzdL #: func_datedif.xhp @@ -59090,7 +59095,7 @@ "par_id9841608\n" "help.text" msgid "Number of whole months between Start date and End date." -msgstr "Número de meses completos entre Fecha de inicio y Fecha de final." +msgstr "Número de meses completos entre Fecha de inicio y Fecha de finalización." #. jMGKG #: func_datedif.xhp @@ -59099,7 +59104,7 @@ "par_id2136295\n" "help.text" msgid "Number of whole years between Start date and End date." -msgstr "Número de años completos entre Fecha de inicio y Fecha de final." +msgstr "Número de años completos entre Fecha de inicio y Fecha de finalización." #. 8tDzh #: func_datedif.xhp @@ -59108,7 +59113,7 @@ "par_id4186223\n" "help.text" msgid "Number of whole months when subtracting years from the difference of Start date and End date." -msgstr "Número de meses completos al restar los años de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de meses completos al restar los años de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. jShMp #: func_datedif.xhp @@ -59117,7 +59122,7 @@ "par_id1491134\n" "help.text" msgid "Number of whole days when subtracting years and months from the difference of Start date and End date." -msgstr "Número de días completos al restar los años y los meses de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de días completos al restar los años y los meses de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. 9uGY2 #: func_datedif.xhp @@ -59126,7 +59131,7 @@ "par_id1591134\n" "help.text" msgid "Number of whole days when subtracting years from the difference of Start date and End date." -msgstr "Número de días completos al restar los años de la diferencia entre la Fecha inicial y la Fecha final." +msgstr "Número de días completos al restar los años de la diferencia entre la Fecha de inicio y la Fecha de finalización." #. Pc57T #: func_datedif.xhp @@ -59414,7 +59419,7 @@ "par_id3151376\n" "help.text" msgid "Date1 is the start date, Date2 is the end date. If Date2 is an earlier date than Date1 the result is a negative number." -msgstr "Datos1 es la fecha de inicio, Datos2 es la fecha final. Si Datos2 es una fecha anterior a Datos1 el resultado es un número negativo." +msgstr "Datos1 es la fecha de inicio, Datos2 es la fecha de finalización. Si Datos2 es una fecha anterior a Datos1 el resultado es un número negativo." #. hjctD #: func_days.xhp @@ -59423,7 +59428,7 @@ "par_id3159101\n" "help.text" msgid "=DAYS(NOW();\"2010-01-01\")) returns the number of days from January 1, 2010 until today." -msgstr "" +msgstr "=DIAS(AHORA();\"2010-01-01\")) devuelve el número de días desde el 1 de enero de 2010 hasta hoy." #. GwLS3 #: func_days.xhp @@ -59477,7 +59482,7 @@ "par_id3155313\n" "help.text" msgid "DAYS360(Date1; Date2[; Type])" -msgstr "" +msgstr "DIAS360(Fecha1; Fecha2[; Tipo])" #. 5qfGz #: func_days360.xhp @@ -59783,7 +59788,7 @@ "par_id3156144\n" "help.text" msgid "=EOMONTH(\"2001-09-14\";6) works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings." -msgstr "" +msgstr "=FIN.MES(\"2001-09-14\";6) también funciona. Si especifica la fecha directamente, le recomendamos que utilice el formato estándar ISO 8601, ya que debería ser independiente de la configuración regional seleccionada." #. Lu8Ng #: func_eomonth.xhp @@ -59792,7 +59797,7 @@ "par_id681621540307527\n" "help.text" msgid "EOMONTH wiki page" -msgstr "" +msgstr "Página wiki FIN.MES" #. BNTm6 #: func_error_type.xhp @@ -60026,7 +60031,7 @@ "par_id12475201719494\n" "help.text" msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned." -msgstr "La función ESERROR devuelve Verdadero o Falso dependiendo si hay un error o no. Si el error ocurre, la función SI direcciona al segundo argumento, si no hay error, devuelve el resultado de la división. El segundo argumento comprueba el número índice que representa un tipo de error específico y si es igual a 2 devuelve el texto \"el denominador no pude ser cero\" o 0 en cualquier otro caso. Así el texto en claro muestra la división por cero, el resultado de la división se muestra cuando la división es correcta o si hay, por ejemplo, un error de otro tipo, devuelve 0." +msgstr "La función ESERROR devuelve Verdadero o Falso en función de la existencia o no de un error. Si el error ocurre, la función SI responde al segundo argumento; si no hay error, devuelve el resultado de la división. El segundo argumento comprueba el número índice que representa un tipo de error específico y si es igual a 2 devuelve el texto «El denominador no puede ser cero» o 0 en cualquier otro caso. Así, el texto en claro muestra la división por cero, el resultado de la división se muestra cuando la división es correcta o si hay, por ejemplo, un error de otro tipo, devuelve 0." #. 8XdGp #: func_error_type.xhp @@ -60071,7 +60076,7 @@ "bm_id141573508995071\n" "help.text" msgid "FINDB Function find text;FINDB Function" -msgstr "" +msgstr "Función ENCONTRARB buscar texto;Función ENCONTRARB" #. WmZAa #: func_findb.xhp @@ -60080,7 +60085,7 @@ "hd_id771573508637966\n" "help.text" msgid "FINDB" -msgstr "" +msgstr "ENCONTRARB" #. iW2EE #: func_findb.xhp @@ -60089,7 +60094,7 @@ "par_id831573508637970\n" "help.text" msgid "Returns the starting position of a given text, using byte positions. FINDB is case sensitive." -msgstr "" +msgstr "Devuelve la posición inicial de un texto dado, usando posiciones de bytes. ENCONTRARB distingue entre mayúsculas y minúsculas." #. 4ztby #: func_findb.xhp @@ -60098,7 +60103,7 @@ "par_id221573517641172\n" "help.text" msgid "FINDB(Find Text ; Text [; Position])" -msgstr "" +msgstr "ENCONTRARB(Buscar texto; Texto [; Posición])" #. puQAw #: func_findb.xhp @@ -60107,7 +60112,7 @@ "par_id241573517292388\n" "help.text" msgid "Find Text: The text or text expression to be found." -msgstr "" +msgstr "Buscar texto: el texto o la expresión de texto que se buscará." #. YgyTW #: func_findb.xhp @@ -60116,7 +60121,7 @@ "par_id991573517299918\n" "help.text" msgid "Text: the text in which the search is to be made." -msgstr "" +msgstr "Texto: el texto en el que se va a realizar la búsqueda." #. pfYPq #: func_findb.xhp @@ -60125,7 +60130,7 @@ "par_id521573517305077\n" "help.text" msgid "Position: The position in the text where the search starts." -msgstr "" +msgstr "Posición: la posición en el texto donde comienza la búsqueda." #. okEBS #: func_findb.xhp @@ -60134,7 +60139,7 @@ "par_id481573517830373\n" "help.text" msgid "=FINDB(\"a\"; \"LibreOffice Calc\") returns 15. The Find Text argument is a text string that comprises a full-width, double-byte \"a\" character, while the Text argument comprises 12 single-byte characters followed by four full-width, double-byte characters." -msgstr "" +msgstr "=ENCONTRARB(\"a\"; \"LibreOffice Calc\") devuelve 15. El argumento Buscar texto es una cadena de texto que comprende una \"a\" de doble byte de ancho completo carácter, mientras que el argumento Texto consta de 12 caracteres de un solo byte seguidos de cuatro caracteres de doble byte de ancho completo." #. aACGP #: func_floor.xhp @@ -60143,7 +60148,7 @@ "tit\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "Funciones MULTIPLO.INFERIOR" #. RuCRw #: func_floor.xhp @@ -60152,7 +60157,7 @@ "hd_id391586285373874\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "Funciones MULTIPLO.INFERIOR" #. hkrkw #: func_floor.xhp @@ -60161,7 +60166,7 @@ "bm_id3157404\n" "help.text" msgid "FLOOR functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "función MULTIPLO.INFERIORredondear;a la baja al múltiplo de significatividad más cercano" #. KoqGL #: func_floor.xhp @@ -60170,7 +60175,7 @@ "hd_id3157404\n" "help.text" msgid "FLOOR" -msgstr "" +msgstr "MULTIPLO.INFERIOR" #. VSV8H #: func_floor.xhp @@ -60179,7 +60184,7 @@ "par_id3157432\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. 345Fr #: func_floor.xhp @@ -60188,7 +60193,7 @@ "par_id661586285977707\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs." -msgstr "" +msgstr "Para un número positivo y un valor de significatividad positivo, la función redondea hacia abajo (hacia cero). Para un número negativo y un valor de significatividad negativo, la dirección del redondeo está determinada por el valor de un parámetro de modo. La función devuelve un error si el número y los valores de significatividad tienen signos opuestos." #. 5kHtR #: func_floor.xhp @@ -60206,7 +60211,7 @@ "par_id3157464\n" "help.text" msgid "FLOOR(Number[; Significance[; Mode]])" -msgstr "" +msgstr "MULTIPLO.INFERIOR(Número[; Significatividad[; Modo]])" #. ERf3D #: func_floor.xhp @@ -60215,7 +60220,7 @@ "par_id3153467\n" "help.text" msgid "Number is the number that is to be rounded, or a reference to a cell containing the number." -msgstr "" +msgstr "Número es el número que se va a redondear o una referencia a una celda que contiene el número." #. 8w8tL #: func_floor.xhp @@ -60224,7 +60229,7 @@ "par_id3157497\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Significatividad (opcional) es el valor, o una referencia a una celda que contiene el valor, a cuyo múltiplo Número se redondeará. Su valor predeterminado es +1 o −1, en función del signo de Número." #. qCpHR #: func_floor.xhp @@ -60233,7 +60238,7 @@ "par_id3157517\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. The function only uses Mode if both Number and Significance are negative. Then if Mode is given and not equal to zero, numbers are rounded up (towards zero); if Mode is equal to zero or not given, negative numbers are rounded down (away from zero)." -msgstr "" +msgstr "Modo (opcional) es un número o una referencia a una celda que contiene un número. La función solo usa Modo si tanto Número como Significatividad son negativos. Entonces, si se da Modo y no es igual a cero, los números se redondean hacia arriba (hacia cero); si Modo es igual a cero o no se proporciona, los números negativos se redondean hacia abajo (lejos de cero)." #. EU85r #: func_floor.xhp @@ -60242,7 +60247,7 @@ "par_id761586287595376\n" "help.text" msgid "=FLOOR(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(3,45) devuelve 3." #. vuJc5 #: func_floor.xhp @@ -60251,7 +60256,7 @@ "par_id311586287600048\n" "help.text" msgid "=FLOOR(3.45, 3) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(3,45; 3) devuelve 3." #. uTWTb #: func_floor.xhp @@ -60260,7 +60265,7 @@ "par_id661586287604519\n" "help.text" msgid "=FLOOR(-1.234) returns -2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-1,234) devuelve −2." #. 8ZGDc #: func_floor.xhp @@ -60269,7 +60274,7 @@ "par_id741586287608968\n" "help.text" msgid "=FLOOR(-45.67, -2, 0) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-45,67; -2; 0) devuelve −46." #. gXsTm #: func_floor.xhp @@ -60278,7 +60283,7 @@ "par_id431586287616089\n" "help.text" msgid "=FLOOR(-45.67, -2, 1) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR(-45,67; -2; 1) devuelve −44." #. zzTLr #: func_floor.xhp @@ -60287,7 +60292,7 @@ "bm_id811586290952465\n" "help.text" msgid "FLOOR.MATH function" -msgstr "" +msgstr "función MULTIPLO.INFERIOR.MAT" #. rEELD #: func_floor.xhp @@ -60296,7 +60301,7 @@ "hd_id1001586287279297\n" "help.text" msgid "FLOOR.MATH" -msgstr "" +msgstr "MULTIPLO.INFERIOR.MAT" #. BBjwd #: func_floor.xhp @@ -60305,7 +60310,7 @@ "par_id721586287302689\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. UJLZc #: func_floor.xhp @@ -60314,7 +60319,7 @@ "par_id311586287323417\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored." -msgstr "" +msgstr "Para un número positivo, la función se redondea hacia abajo (hacia cero). Para un número negativo, la dirección del redondeo está determinada por el valor de un parámetro de modo. Se ignora el signo del valor de significatividad." #. 4weAd #: func_floor.xhp @@ -60323,7 +60328,7 @@ "par_id851586287535879\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Esta función existe por razones de interoperatividad con Microsoft Excel, versión 2013 o más reciente." #. 4DFyG #: func_floor.xhp @@ -60332,7 +60337,7 @@ "par_id161586287421523\n" "help.text" msgid "FLOOR.MATH(Number[; Significance[; Mode]])" -msgstr "" +msgstr "MULTIPLO.INFERIOR.MAT(Número[; Significatividad[; Modo]])" #. Un6FB #: func_floor.xhp @@ -60350,7 +60355,7 @@ "par_id261586287494401\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. If Mode is given and not equal to zero, a negative Number is rounded up (towards zero). If Mode is equal to zero or is not given, a negative Number is rounded down (away from zero)." -msgstr "" +msgstr "Modo (opcional) es un número o una referencia a una celda que contiene un número. Si se proporciona Modo y no es igual a cero, un Número negativo se redondea hacia arriba (hacia cero). Si Modo es igual a cero o no se proporciona, un Número negativo se redondea hacia abajo (lejos de cero)." #. wCd8C #: func_floor.xhp @@ -60359,7 +60364,7 @@ "par_id101586287621816\n" "help.text" msgid "=FLOOR.MATH(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(3,45) devuelve 3." #. p27MD #: func_floor.xhp @@ -60368,7 +60373,7 @@ "par_id771586287627784\n" "help.text" msgid "=FLOOR.MATH(3.45,-3) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(3,45;-3) devuelve 3." #. Fehfx #: func_floor.xhp @@ -60377,7 +60382,7 @@ "par_id981586287632392\n" "help.text" msgid "=FLOOR.MATH(-1.234) returns -2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-1,234) devuelve −2." #. eQfea #: func_floor.xhp @@ -60386,7 +60391,7 @@ "par_id631586287637256\n" "help.text" msgid "=FLOOR.MATH(-45.67,-2, 0) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-45,67;-2; 0) devuelve −46." #. XXqpS #: func_floor.xhp @@ -60395,7 +60400,7 @@ "par_id371586287641888\n" "help.text" msgid "=FLOOR.MATH(-45.67,+2, 1) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.MAT(-45,67;+2; 1) devuelve −44." #. 9MJem #: func_floor.xhp @@ -60404,7 +60409,7 @@ "bm_id2957404\n" "help.text" msgid "FLOOR.PRECISE functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "FUNCIÓN MULTIPLO.INFERIOR.EXACTOredondeo;hacia abajo al múltiplo de significatividad más cercano" #. niyQj #: func_floor.xhp @@ -60413,7 +60418,7 @@ "hd_id2957404\n" "help.text" msgid "FLOOR.PRECISE" -msgstr "" +msgstr "MULTIPLO.INFERIOR.EXACTO" #. DgQBx #: func_floor.xhp @@ -60422,7 +60427,7 @@ "par_id2957432\n" "help.text" msgid "Rounds a number down to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número hacia abajo al múltiplo más cercano de un valor de significatividad." #. NHMnz #: func_floor.xhp @@ -60431,7 +60436,7 @@ "par_id261586641501175\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the function rounds down (away form zero). The sign of the significance value is ignored." -msgstr "" +msgstr "Para un número positivo, la función se redondea hacia abajo (hacia cero). Para un número negativo, la función redondea hacia abajo (lejos de cero). Se ignora el signo del valor de significatividad." #. ni9y2 #: func_floor.xhp @@ -60440,7 +60445,7 @@ "par_id2957464\n" "help.text" msgid "FLOOR.PRECISE(Number[; Significance])" -msgstr "" +msgstr "MULTIPLO.INFERIOR.EXACTO(Número[; Significatividad])" #. pirHp #: func_floor.xhp @@ -60458,7 +60463,7 @@ "par_id981586291388900\n" "help.text" msgid "=FLOOR.PRECISE(3.45) returns 3." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.EXACTO(3,45) devuelve 3." #. Q9vnd #: func_floor.xhp @@ -60467,7 +60472,7 @@ "par_id831586291395477\n" "help.text" msgid "=FLOOR.PRECISE(-45.67,2) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.EXACTO(-45,67;2) devuelve −46." #. HnS5F #: func_floor.xhp @@ -60476,7 +60481,7 @@ "bm_id171586291849333\n" "help.text" msgid "FLOOR.XCL function" -msgstr "" +msgstr "función MULTIPLO.INFERIOR.XCL" #. LMEET #: func_floor.xhp @@ -60485,7 +60490,7 @@ "hd_id791586291468176\n" "help.text" msgid "FLOOR.XCL" -msgstr "" +msgstr "MULTIPLO.INFERIOR.XCL" #. WMsAT #: func_floor.xhp @@ -60494,7 +60499,7 @@ "par_id521586291476023\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Redondea un número al múltiplo más cercano de un valor de significatividad." #. jrymG #: func_floor.xhp @@ -60503,7 +60508,7 @@ "par_id401586291488768\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a positive significance value, the function rounds down (away from zero). For a negative number and a negative significance value, the function rounds up (towards zero). The function returns an error if the number is positive and the significance value is negative." -msgstr "" +msgstr "Para un número positivo y un valor de significatividad positivo, la función redondea hacia abajo (hacia cero). Para un número negativo y un valor de significatividad positivo, la función redondea hacia abajo (lejos de cero). Para un número negativo y un valor de significatividad negativo, la función redondea hacia arriba (hacia cero). La función devuelve un error si el número es positivo y el valor de significatividad es negativo." #. BFXRR #: func_floor.xhp @@ -60512,7 +60517,7 @@ "par_id231586291503319\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s FLOOR.XCL function are exported as references to Excel’s FLOOR function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s FLOOR function are imported as references to Calc’s FLOOR.XCL function." -msgstr "" +msgstr "Esta función existe para la interoperatividad con Microsoft Excel 2007 o anterior. Si una hoja de cálculo de Calc se exporta a Microsoft Excel, las referencias a la función MULTIPLO.INFERIOR.XCL de Calc se exportan como referencias a la función MULTIPLO.INFERIOR de Excel, que es compatible con todas las versiones de Excel. Si se importa una hoja de cálculo de Microsoft Excel a Calc, las referencias a la función MULTIPLO.INFERIOR de Excel se importan como referencias a la función MULTIPLO.INFERIOR.XCL de Calc." #. WA7uC #: func_floor.xhp @@ -60521,7 +60526,7 @@ "par_id491586291532177\n" "help.text" msgid "FLOOR.XCL(Number; Significance)" -msgstr "" +msgstr "MULTIPLO.INFERIOR.XCL(Número; Significatividad)" #. aRww7 #: func_floor.xhp @@ -60539,7 +60544,7 @@ "par_id531586291622306\n" "help.text" msgid "=FLOOR.XCL(3.45,2) returns 2." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(3,45;2) devuelve 2." #. gFyGC #: func_floor.xhp @@ -60548,7 +60553,7 @@ "par_id361586291628003\n" "help.text" msgid "=FLOOR.XCL(-45.67,2) returns -46." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(-45,67;2) devuelve −46." #. EU7xy #: func_floor.xhp @@ -60557,7 +60562,7 @@ "par_id801586291641099\n" "help.text" msgid "=FLOOR.XCL(-45.67,-2) returns -44." -msgstr "" +msgstr "=MULTIPLO.INFERIOR.XCL(-45,67;-2) devuelve −44." #. 2YcR7 #: func_forecastetsadd.xhp @@ -60791,7 +60796,7 @@ "par_id0603201617141750\n" "help.text" msgid "Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Calcula los intervalos de predicción para el pronóstico aditivo en función de los datos históricos usando algoritmos ETS o EDS. EDS se usa cuando el argumento duración_período es 0, de lo contrario se utiliza ETS." #. ZnBVX #: func_forecastetspiadd.xhp @@ -61322,7 +61327,7 @@ "par_id121556227727948\n" "help.text" msgid "Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms. The function is an array formula." -msgstr "" +msgstr "Calcula la transformada discreta de Fourier [DFT] de una matriz de entrada de números complejos usando un par de algoritmos de transformada rápida de Fourier (FFT). La función es una fórmula de matriz." #. xGHaG #: func_fourier.xhp @@ -61331,7 +61336,7 @@ "par_id541556228253979\n" "help.text" msgid "FOURIER(Array; GroupedByColumns [; Inverse [; Polar [; MinimumMagnitude]]])" -msgstr "" +msgstr "FOURIER(Matriz; AgrupadasPorColumnas [; Inversa [; Polar [; MagnitudMínima]]])" #. ELSK7 #: func_fourier.xhp @@ -61340,7 +61345,7 @@ "par_id741556228390897\n" "help.text" msgid "Array is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "" +msgstr "Matriz es un rango de 2 x N o N x 2 que representa una matriz de números complejos a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." #. xTPa5 #: func_fourier.xhp @@ -61349,7 +61354,7 @@ "par_id621556228397269\n" "help.text" msgid "GroupedByColumns is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE the array is grouped by columns where the first column contains the real part of the complex number and the second columns contains the imaginary part of the complex number. When FALSE, the first row contains the real part of the complex number and the second row contains the imaginary part of the complex number. If there is only 1 column (row), the input sequence is treated as purely real." -msgstr "" +msgstr " AgrupadoPorColumnas es un argumento lógico (VERDADERO o FALSO, 1 o 0). Cuando es VERDADERO, la matriz se agrupa por columnas, donde la primera columna contiene la parte real del número complejo y la segunda columna contiene la parte imaginaria del número complejo. Cuando es FALSO, la primera fila contiene la parte real del número complejo y la segunda fila contiene la parte imaginaria del número complejo. Si solo hay 1 columna (fila), la secuencia de entrada se trata como puramente real." #. tbzAA #: func_fourier.xhp @@ -61358,7 +61363,7 @@ "par_id631556228516997\n" "help.text" msgid "Inverse is an optional logical (TRUE or FALSE, 1 or 0) argument. When TRUE, calculates the inverse Discrete Fourier Transform. The default value is FALSE." -msgstr "" +msgstr " Inversa es un argumento lógico opcional (VERDADERO o FALSO, 1 o 0). Cuando es VERDADERO, calcula la transformada de Fourier discreta inversa. El valor predeterminado es FALSO." #. N6enC #: func_fourier.xhp @@ -61367,7 +61372,7 @@ "par_id811561732287508\n" "help.text" msgid "Polar: is an optional logical (TRUE or FALSE, 1 or 0) argument. Indicates whether the final output is in polar coordinates (magnitude, phase). This argument is optional and the default value is FALSE." -msgstr "" +msgstr "Polar: es un argumento lógico opcional (VERDADERO o FALSO, 1 o 0). Indica si la salida final está en coordenadas polares (magnitud, fase). Este argumento es opcional y el valor predeterminado es FALSO." #. qBBZd #: func_fourier.xhp @@ -61376,7 +61381,7 @@ "par_id661561732521977\n" "help.text" msgid "MinimumMagnitude: used only if Polar=TRUE. All frequency components with magnitude less than MinimumMagnitude will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed. By default the value of MinimumMagnitude is 0.0, and no suppression is done by default." -msgstr "" +msgstr "MagnitudMínima: se utiliza sólo si Polar=VERDADERO. Todos los componentes de frecuencia con una magnitud inferior a MagnitudMínima se suprimirán con una entrada de magnitud-fase cero. Esto es muy útil cuando se mira el espectro de magnitud-fase de una señal porque siempre hay una cantidad muy pequeña de error de redondeo cuando se hacen algoritmos FFT y resulta en una fase incorrecta no nula para frecuencias inexistentes. Proporcionando un valor adecuado a este parámetro, se pueden suprimir estos componentes de frecuencia inexistentes. Por defecto el valor de MagnitudMínima es 0.0, y no se realiza ninguna supresión por defecto." #. P2z9v #: func_hour.xhp @@ -61457,7 +61462,7 @@ "tit\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "función SI.CONJUNTO" #. XMPcD #: func_ifs.xhp @@ -61466,7 +61471,7 @@ "bm_id901556242230198\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "función SI.CONJUNTO" #. u33ve #: func_ifs.xhp @@ -61475,7 +61480,7 @@ "hd_id271556234923654\n" "help.text" msgid "IFS" -msgstr "" +msgstr "SI.CONJUNTO" #. iANFF #: func_ifs.xhp @@ -61484,7 +61489,7 @@ "par_id171556234923655\n" "help.text" msgid "IFS is a multiple IF-function." -msgstr "" +msgstr "SI.CONJUNTO es una función SI múltiple." #. WxB3F #: func_ifs.xhp @@ -61493,7 +61498,7 @@ "par_id271556235333493\n" "help.text" msgid "IFS(expression1; result1[; expression2; result2][; ... ; [expression127; result127]])" -msgstr "" +msgstr "SI.CONJUNTO(expresión1; resultado1[; expresión2; resultado2][; ... ; [expresión127; resultado127]])" #. 3KbKX #: func_ifs.xhp @@ -61502,7 +61507,7 @@ "par_id31556235655212\n" "help.text" msgid "expression1, expression2, ... are any boolean values or expressions that can be TRUE or FALSE" -msgstr "" +msgstr "expresión1, expresión2, ... son valores booleanos o expresiones que pueden ser VERDADERO o FALSO" #. 8qEKq #: func_ifs.xhp @@ -61511,7 +61516,7 @@ "par_id441556235649549\n" "help.text" msgid "result1, result2, ... are the values that are returned if the logical test is TRUE" -msgstr "" +msgstr "resultado1, resultado2, ... son los valores que se devuelven si la prueba lógica es VERDADERO" #. qgtwA #: func_ifs.xhp @@ -61520,7 +61525,7 @@ "par_id641556235704257\n" "help.text" msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as" -msgstr "" +msgstr "SI.CONJUNTO( expresión1, resultado1, expresión2, resultado2, expresión3, resultado3 ) se ejecuta como" #. NriAd #: func_ifs.xhp @@ -61529,7 +61534,7 @@ "par_id551556235712759\n" "help.text" msgid "IF expression1 is TRUE" -msgstr "" +msgstr "SI expresión1 es VERDADERO" #. tRdjB #: func_ifs.xhp @@ -61538,7 +61543,7 @@ "par_id1001556235718948\n" "help.text" msgid "THEN result1" -msgstr "" +msgstr "ENTONCES resultado1" #. 2DYMn #: func_ifs.xhp @@ -61547,7 +61552,7 @@ "par_id571556235725969\n" "help.text" msgid "ELSE IF expression2 is TRUE" -msgstr "" +msgstr "DE LO CONTRARIO SI expresión2 es VERDADERO" #. QZSge #: func_ifs.xhp @@ -61556,7 +61561,7 @@ "par_id581556235731982\n" "help.text" msgid "THEN result2" -msgstr "" +msgstr "ENTONCES resultado2" #. H5BJe #: func_ifs.xhp @@ -61565,7 +61570,7 @@ "par_id961556235738258\n" "help.text" msgid "ELSE IF expression3 is TRUE" -msgstr "" +msgstr "DE LO CONTRARIO SI expresión3 es VERDADERO" #. LpUGo #: func_ifs.xhp @@ -61574,7 +61579,7 @@ "par_id951556235743954\n" "help.text" msgid "THEN result3" -msgstr "" +msgstr "ENTONCES reultado3" #. QCFfF #: func_ifs.xhp @@ -61583,7 +61588,7 @@ "par_id671556235758504\n" "help.text" msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result." -msgstr "" +msgstr "Para obtener un resultado predeterminado si ninguna expresión es VERDADERA, añade una última expresión que siempre sea VERDADERA, como VERDADERO o 1=1, seguida del resultado predeterminado." #. mkt7F #: func_ifs.xhp @@ -61592,7 +61597,7 @@ "par_id541556235771022\n" "help.text" msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned." -msgstr "" +msgstr "Si falta un resultado para una expresión o si ninguna expresión es VERDADERA, se devuelve un error #N/A." #. 8sMKs #: func_ifs.xhp @@ -61601,7 +61606,7 @@ "par_id181556235788473\n" "help.text" msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned." -msgstr "" +msgstr "Si la expresión no es VERDADERA ni FALSA, se devuelve un error #VALOR." #. smDfE #: func_ifs.xhp @@ -61610,7 +61615,7 @@ "par_id781556244709752\n" "help.text" msgid "IF" -msgstr "" +msgstr "SI" #. vaiXE #: func_imcos.xhp @@ -61727,7 +61732,7 @@ "par_id24939266285933\n" "help.text" msgid "IMCOSH equation" -msgstr "" +msgstr "ecuación IM.COSH" #. neXB8 #: func_imcosh.xhp @@ -61808,7 +61813,7 @@ "par_id311713256011430\n" "help.text" msgid "IMCOT equation" -msgstr "" +msgstr "ecuación IM.COT" #. z7EtV #: func_imcot.xhp @@ -61889,7 +61894,7 @@ "par_id13510198901485\n" "help.text" msgid "IMCSC equation" -msgstr "" +msgstr "ecuación IM.CSC" #. jBzZA #: func_imcsc.xhp @@ -61970,7 +61975,7 @@ "par_id195151657917534\n" "help.text" msgid "IMCSCH equation" -msgstr "" +msgstr "ecuación IM.CSCH" #. ndjhY #: func_imcsch.xhp @@ -62051,7 +62056,7 @@ "par_id17543461310594\n" "help.text" msgid "IMSEC equation" -msgstr "" +msgstr "ecuación IM.SEC" #. CEucF #: func_imsec.xhp @@ -62132,7 +62137,7 @@ "par_id74572850718840\n" "help.text" msgid "IMSECH equation" -msgstr "" +msgstr "ecuación IM.SECH" #. Rqker #: func_imsech.xhp @@ -62213,7 +62218,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSIN equation" -msgstr "" +msgstr "ecuación IM.SENO" #. tcmGA #: func_imsin.xhp @@ -62294,7 +62299,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSINH equation" -msgstr "" +msgstr "ecuación IM.SENOH" #. CM4Gy #: func_imsinh.xhp @@ -62501,7 +62506,7 @@ "tit\n" "help.text" msgid "JIS Function" -msgstr "" +msgstr "Función JIS" #. 5Qavf #: func_jis.xhp @@ -62510,7 +62515,7 @@ "bm_id831542233029549\n" "help.text" msgid "JIS function" -msgstr "" +msgstr "Función JIS" #. MEYJo #: func_jis.xhp @@ -62519,7 +62524,7 @@ "hd_id881628776094597\n" "help.text" msgid "JIS" -msgstr "" +msgstr "JIS" #. 3XKQ3 #: func_jis.xhp @@ -62528,7 +62533,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts single-byte (half-width) ASCII or katakana characters to double-byte (full-width) characters." -msgstr "" +msgstr "Convierte caracteres ASCII o katakana de un byte (medio ancho) en caracteres de doble byte (ancho completo)." #. UdHVW #: func_jis.xhp @@ -62537,7 +62542,7 @@ "par_id151634221012221\n" "help.text" msgid "See https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for a conversion table." -msgstr "" +msgstr "Consulte https://wiki.documentfoundation.org/ Calc/Features/JIS_and_ASC_functions para una tabla de conversión." #. AjjnX #: func_jis.xhp @@ -62546,7 +62551,7 @@ "par_id701542231253817\n" "help.text" msgid "JIS(Text)" -msgstr "" +msgstr "JIS(Texto)" #. f9YAh #: func_jis.xhp @@ -62564,7 +62569,7 @@ "par_id481637763523789\n" "help.text" msgid "Applying the JIS function to a string composed of double-byte characters will return the input string without any modifications." -msgstr "" +msgstr "La aplicación de la función JIS a una cadena compuesta por caracteres de doble byte devolverá la cadena de entrada sin ninguna modificación." #. BBEVj #: func_jis.xhp @@ -62573,7 +62578,7 @@ "par_id451628776707264\n" "help.text" msgid "=JIS(\"LibreOffice\") returns the string \"LibreOffice\". Note that the returned string uses double-byte characters." -msgstr "" +msgstr "=JIS(\"LibreOffice\") devuelve la cadena \"LibreOffice\". Tenga en cuenta que la cadena devuelta utiliza caracteres de doble byte." #. fEFNT #: func_jis.xhp @@ -62582,7 +62587,7 @@ "par_id101628778036375\n" "help.text" msgid "=JIS(\"ライト\") returns the string \"ライト\", which is composed of double-byte characters." -msgstr "" +msgstr " = JIS (\"luz\") devuelve la cadena \"luz\", que se compone de caracteres de doble byte." #. Cauxq #: func_maxifs.xhp @@ -62591,7 +62596,7 @@ "tit\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "Función MAX.SI.CONJUNTO" #. 8HdEW #: func_maxifs.xhp @@ -62600,7 +62605,7 @@ "bm_id658066580665806\n" "help.text" msgid "MAXIFS function maximum;satisfying conditions" -msgstr "" +msgstr "Función MAX.SI.CONJUNTO máximo;satisfaciendo condiciones" #. kKHTn #: func_maxifs.xhp @@ -62609,7 +62614,7 @@ "hd_id658866588665886\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "MAX.SI.CONJUNTO función" #. DXshy #: func_maxifs.xhp @@ -62618,7 +62623,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the maximum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el máximo de los valores de las celdas en un rango que cumple varios criterios en varios rangos." #. PKmRh #: func_maxifs.xhp @@ -62627,7 +62632,7 @@ "par_id11655988824213\n" "help.text" msgid "MAXIFS()" -msgstr "" +msgstr "MAX.SI.CONJUNTO()" #. UrwgE #: func_maxifs.xhp @@ -62636,7 +62641,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the maximum." -msgstr "" +msgstr "Función_Rango – argumento requerido. Un rango de celdas, un nombre de un rango con nombre o una etiqueta de una columna o una fila que contiene valores para calcular el máximo." #. BUavo #: func_maxifs.xhp @@ -62654,7 +62659,7 @@ "par_id94321051525036\n" "help.text" msgid "=MAXIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(B2:B6;B2:B6;\"<35\")" #. j2PKY #: func_maxifs.xhp @@ -62663,7 +62668,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the maximum of values of the range B2:B6 that are greater than or equal to 20. Returns 35. The fifth row does not meet the criterion." -msgstr "" +msgstr "Calcula el máximo de valores del rango B2:B6 que son mayores o iguales a 20. Devuelve 35. La quinta fila no cumple el criterio." #. c6yAQ #: func_maxifs.xhp @@ -62672,7 +62677,7 @@ "par_id36952767622741\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" #. nGj4o #: func_maxifs.xhp @@ -62681,7 +62686,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 85, because the fourth and fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Calcula el máximo de valores del rango C2:C6 que son inferiores a 90 y corresponden a celdas del rango B2:B6 con valores mayores o iguales a 20. Devuelve 85, porque la cuarta y quinta fila no cumplen al menos un criterio." #. 9Ayop #: func_maxifs.xhp @@ -62699,7 +62704,7 @@ "par_id307691022525348\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;B2:B6;\">\"&MÍNIMO(B2:B6);B2:B6;\"<\"&MÁXIMO(B2:B6))" #. CR2To #: func_maxifs.xhp @@ -62708,7 +62713,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 190, because only the fourth row meet the criteria." -msgstr "" +msgstr "Calcula el máximo de valores del intervalo C2:C6 que corresponden a todos los valores del intervalo B2:B6 salvo su mínimo y máximo. Devuelve 190, porque solo la cuarta fila cumple los criterios." #. xriFt #: func_maxifs.xhp @@ -62717,7 +62722,7 @@ "par_id220502883332563\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<=\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;A2:A6;\"pluma.*\";B2:B6;\"<=\"&MÁXIMO(B2:B6))" #. FQicN #: func_maxifs.xhp @@ -62726,7 +62731,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 85, because only the third row meets all criteria." -msgstr "" +msgstr "Calcula el máximo de valores del rango C2:C6 que corresponden a todas las celdas del rango A2:A6 comenzando con \"pluma\" y a todas las celdas del rango B2:B6 excepto su máximo. Devuelve 85, porque solo la tercera fila cumple todos los criterios." #. DwLDF #: func_maxifs.xhp @@ -62744,7 +62749,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MAXIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Si necesita cambiar un criterio fácilmente, puede especificarlo en una celda separada y usar una referencia a esta celda en la condición de la función MAX.SI.CONJUNTO. Por ejemplo, la función anterior se puede reescribir de la siguiente manera:" #. gcYDr #: func_maxifs.xhp @@ -62753,7 +62758,7 @@ "par_id135761606425300\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAX.SI.CONJUNTO(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MÁXIMO(B2:B6))" #. wHPFq #: func_maxifs.xhp @@ -62762,7 +62767,7 @@ "par_id30574750215839\n" "help.text" msgid "If E2 = \"pen\", the function returns 65, because the reference to the cell is substituted with its content." -msgstr "" +msgstr "Si E2 = \"pluma\", la función devuelve 65, porque la referencia a la celda se sustituye por su contenido." #. zGQnQ #: func_minifs.xhp @@ -62771,7 +62776,7 @@ "tit\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "Función MIN.SI.CONJUNTO" #. V8Fu7 #: func_minifs.xhp @@ -62780,7 +62785,7 @@ "bm_id658066580665806\n" "help.text" msgid "MINIFS function minimum;satisfying conditions" -msgstr "" +msgstr "Función MIN.SI.CONJUNTO mínimo;satisfaciendo condiciones" #. vnegG #: func_minifs.xhp @@ -62789,7 +62794,7 @@ "hd_id658866588665886\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "MIN.SI.CONJUNTO función" #. PmaDA #: func_minifs.xhp @@ -62798,7 +62803,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the minimum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Devuelve el mínimo de los valores de las celdas en un intervalo que cumple varios criterios en múltiples intervalos." #. yekSJ #: func_minifs.xhp @@ -62807,7 +62812,7 @@ "par_id11655988824213\n" "help.text" msgid "MINIFS()" -msgstr "" +msgstr "MIN.SI.CONJUNTO()" #. Gf5P2 #: func_minifs.xhp @@ -62816,7 +62821,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the minimum." -msgstr "" +msgstr "Función_Rango – argumento requerido. Un rango de celdas, un nombre de un rango con nombre o una etiqueta de una columna o una fila que contiene valores para calcular el mínimo." #. KkDwL #: func_minifs.xhp @@ -62834,7 +62839,7 @@ "par_id94321051525036\n" "help.text" msgid "=MINIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(B2:B6;B2:B6;\"<35\")" #. eRNbh #: func_minifs.xhp @@ -62843,7 +62848,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the minimum of values of the range B2:B6 that are lower than or equal to 20. Returns 17." -msgstr "" +msgstr "Calcula el mínimo de valores del rango B2:B6 que son menores o iguales a 20. Devuelve 17." #. zufoC #: func_minifs.xhp @@ -62852,7 +62857,7 @@ "par_id36952767622741\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" #. iCk4M #: func_minifs.xhp @@ -62861,7 +62866,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 190." -msgstr "" +msgstr "Calcula el mínimo de valores del rango C2:C6 que son menores a 90 y corresponden a celdas del rango B2:B6 con valores mayores o iguales a 20. Devuelve 190." #. iqFXq #: func_minifs.xhp @@ -62879,7 +62884,7 @@ "par_id307691022525348\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;B2:B6;\">\"&MÍNIMO(B2:B6);B2:B6;\"<\"&MÁXIMO(B2:B6))" #. Dp4Sx #: func_minifs.xhp @@ -62888,7 +62893,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 65." -msgstr "" +msgstr "Calcula el mínimo de valores del rango C2:C6 que corresponden a todos los valores del rango B2:B6 excepto su mínimo y máximo. Devuelve 65." #. 7S443 #: func_minifs.xhp @@ -62897,7 +62902,7 @@ "par_id220502883332563\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*book\";B2:B6;\">\"&MIN(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;A2:A6;\".*libro\";B2:B6;\">\"&MÍNIMO(B2:B6))" #. gNhzJ #: func_minifs.xhp @@ -62906,7 +62911,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all cells of the A2:A6 range ending with \"book\" and to all cells of the B2:B6 range except its minimum. Returns 190." -msgstr "" +msgstr "Calcula el mínimo de valores del intervalo C2:C6 que corresponden a todas las celdas del intervalo A2:A6 que terminan en «libro» y a todas las celdas del intervalo B2:B6 salvo su mínimo. Devuelve 190." #. uz4wr #: func_minifs.xhp @@ -62924,7 +62929,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MINIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Si necesita cambiar un criterio fácilmente, puede especificarlo en una celda separada y usar una referencia a esta celda en la condición de la función MIN.SI.CONJUNTO. Por ejemplo, la función anterior se puede reescribir de la siguiente manera:" #. EcoDf #: func_minifs.xhp @@ -62933,7 +62938,7 @@ "par_id135761606425300\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MIN.SI.CONJUNTO(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MÁXIMO(B2:B6))" #. cxmqK #: func_minifs.xhp @@ -63131,7 +63136,7 @@ "par_id231020162213393086\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days." -msgstr "Devuelve el número de días laborables que hay entre una fecha inicial y una final. Existen opciones para definir los días feriados y los correspondientes a los fines de semana. Se puede utilizar el parámetro (o cadena) opcional de fin de semana para definir los días de fin de semana (o los días no laborables de cada semana). Asimismo, de manera opcional, puede definirse una lista de feriados. Los días de fin de semana y los feriados definidos por el usuario no se cuentan como días laborables." +msgstr "Devuelve el número de días laborables que hay entre una fecha de inicio y una de finalización. Existen opciones para definir los días feriados y los correspondientes a los fines de semana. Se puede utilizar el parámetro (o cadena) opcional de fin de semana para definir los días de fin de semana (o los días no laborables de cada semana). Asimismo, de manera opcional, puede definirse una lista de feriados. Los días de fin de semana y los feriados definidos por el usuario no se cuentan como días laborables." #. 53kNC #: func_networkdays.intl.xhp @@ -63140,7 +63145,7 @@ "par_id231020162249539143\n" "help.text" msgid "NETWORKDAYS.INTL(StartDate; EndDate [; [ Weekend ] [; Holidays ] ])" -msgstr "" +msgstr "DIAS.LAB.INTL(FechaInicial; FechaFinal [; [ Fin de semana] [; Feriados ] ])" #. D8jig #: func_networkdays.intl.xhp @@ -63158,7 +63163,7 @@ "par_id231020162249536398\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "FechaFinal es la fecha de término del cálculo. Si la fecha final es un día laborable, el día se incluye en el cálculo." +msgstr "FechaFinal es la fecha de término del cálculo. Si la fecha de finalización es un día laborable, el día se incluye en el cálculo." #. Yhepz #: func_networkdays.intl.xhp @@ -63239,7 +63244,7 @@ "bm_id3151254\n" "help.text" msgid "NETWORKDAYS function NETWORKDAYS_EXCEL2003 function" -msgstr "" +msgstr "función DIAS.LABfunción DIAS.LAB_EXCEL2003" #. HzF8v #: func_networkdays.xhp @@ -63257,7 +63262,7 @@ "par_id3153788\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. Holidays can be deducted." -msgstr "" +msgstr "Devuelve el número de días laborables entre una fecha de inicio y una fecha de finalización. Los días feriados se pueden deducir." #. AME9S #: func_networkdays.xhp @@ -63266,7 +63271,7 @@ "par_id3145775\n" "help.text" msgid "NETWORKDAYS(StartDate; EndDate [; [ Holidays ] [; Workdays ] ])" -msgstr "" +msgstr "DIAS.LAB(FechaInicial; FechaFinal [; [ Feriados ] [; Días laborales] ])" #. BEtbU #: func_networkdays.xhp @@ -63302,7 +63307,7 @@ "par_id160920161749585013\n" "help.text" msgid "Workdays is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value." -msgstr "" +msgstr "Días laborables es una lista opcional de valores numéricos que definen la semana laborable estándar. Esta lista comienza el domingo, los días laborables se indican con cero y los días no laborables con un valor distinto de cero." #. yTEUA #: func_networkdays.xhp @@ -63437,7 +63442,7 @@ "par_id3145087\n" "help.text" msgid "Converts the string representation of a number into a locale-independent numeric value." -msgstr "" +msgstr "Convierte la representación de cadena de un número en un valor numérico independiente de la configuración regional." #. xfP9G #: func_numbervalue.xhp @@ -63446,7 +63451,7 @@ "par_id3149281\n" "help.text" msgid "The input text may be in a locale-dependent or other bespoke format." -msgstr "" +msgstr "El texto de entrada puede estar en un formato dependiente de la configuración regional o uno personalizado." #. vVK9p #: func_numbervalue.xhp @@ -63455,7 +63460,7 @@ "par_id381625600941159\n" "help.text" msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format." -msgstr "" +msgstr "El número de salida se formatea como un valor de coma flotante válido y se muestra con el formato numérico de la celda actual." #. CdgXz #: func_numbervalue.xhp @@ -63473,7 +63478,7 @@ "par_id721625602228575\n" "help.text" msgid "NUMBERVALUE(Text[; Decimal Separator[; Group Separator]])" -msgstr "" +msgstr "VALOR.NUMERO(Texto[; Separador decimal[; Separador de grupos]])" #. Y3A9n #: func_numbervalue.xhp @@ -63491,7 +63496,7 @@ "par_id3154820\n" "help.text" msgid "Decimal Separator is a single character that specifies the decimal separator in Text. It can be omitted if Text does not include any decimal or group separators." -msgstr "" +msgstr "Separador decimal es un solo carácter que especifica el separador decimal en Texto. Se puede omitir si Texto no incluye ningún separador decimal o de grupo." #. KJ6WA #: func_numbervalue.xhp @@ -63500,7 +63505,7 @@ "par_id3154821\n" "help.text" msgid "Group Separator is a string that specifies the character(s) used as the group separator in Text. It can be omitted if Text does not include any group separators. The Decimal Separator character should not be used in Group Separator." -msgstr "" +msgstr "Separador de grupo es una cadena que especifica los caracteres utilizados como separador de grupo en Texto. Se puede omitir si Texto no incluye ningún separador de grupo. El carácter Separador decimal no debe usarse en Separador de grupo." #. yptHN #: func_numbervalue.xhp @@ -63509,7 +63514,7 @@ "par_id3155841\n" "help.text" msgid "=NUMBERVALUE(\"1.234.567,89\"; \",\"; \".\") returns 1234567.89 (considering en-US locale). The function removes the two group separators and changes the decimal separator from a comma to a full stop." -msgstr "" +msgstr "=VALOR.NUMERO(\"1.234.567,89\"; \",\"; \".\") devuelve 1234567.89 (considerando la configuración regional en EE. UU.). La función elimina los dos separadores de grupo y cambia el separador decimal de una coma a un punto." #. UNiLM #: func_numbervalue.xhp @@ -63518,7 +63523,7 @@ "par_id721625603302860\n" "help.text" msgid "=NUMBERVALUE(\"123·4\"; \"·\") returns 123.4 (considering en-US locale). The function changes the decimal separator from a \"·\" to a full stop. No group separator is used in the supplied number and so the Group Separator argument is omitted." -msgstr "" +msgstr "=VALOR.NUMERO(\"123·4\"; \"·\") devuelve 123.4 (considerando la configuración regional en-US). La función cambia el separador decimal de \"·\" a un punto. No se utiliza ningún separador de grupo en el número proporcionado, por lo que se omite el argumento Separador de grupo." #. iGGwj #: func_numbervalue.xhp @@ -63527,7 +63532,7 @@ "par_id491625603415715\n" "help.text" msgid "=NUMBERVALUE(\"123e12\") returns 1.23E+14 (considering en-US locale). No decimal or group separators are used in the supplied number and so the Decimal Separator and Group Separator arguments are omitted." -msgstr "" +msgstr "=VALOR.NUMERO(\"123e12\") devuelve 1.23E+14 (considerando la configuración regional en EE. UU.). No se utilizan separadores decimales ni de grupo en el número proporcionado, por lo que se omiten los argumentos Separador decimal y Separador de grupo." #. vTYDd #: func_numbervalue.xhp @@ -63536,7 +63541,7 @@ "par_id801625603497421\n" "help.text" msgid "=NUMBERVALUE(\"1#!234#!567\"; \".\"; \"#!\") returns 1234567 (considering en-US locale). Note that in this case the group separator is specified as a two-character string." -msgstr "" +msgstr "=VALOR.NUMERO(\"1#!234#!567\"; \".\"; \"¡#!\") devuelve 1234567 (considerando la configuración regional en EE. UU.). Tenga en cuenta que, en este caso, el separador de grupo se especifica como una cadena de dos caracteres." #. 4sMd6 #: func_numbervalue.xhp @@ -63545,7 +63550,7 @@ "par_id451626100385699\n" "help.text" msgid "Refer to the NUMBERVALUE wiki page for more details about this function." -msgstr "" +msgstr "Consulte la página wiki VALOR.NUMERO para obtener más detalles sobre esta función." #. EJhfD #: func_opt_barrier.xhp @@ -63554,7 +63559,7 @@ "tit\n" "help.text" msgid "Function OPT_BARRIER" -msgstr "" +msgstr "Función OPT_BARRIER" #. 4HRGX #: func_opt_barrier.xhp @@ -63563,7 +63568,7 @@ "bm_id511575065323638\n" "help.text" msgid "OPT_BARRIER function" -msgstr "" +msgstr "Función OPT_BARRIER" #. KrCYn #: func_opt_barrier.xhp @@ -63572,7 +63577,7 @@ "hd_id241575063871994\n" "help.text" msgid "OPT_BARRIER" -msgstr "" +msgstr "OPT_BARRIER" #. uFKBs #: func_opt_barrier.xhp @@ -63581,7 +63586,7 @@ "par_id121575063871995\n" "help.text" msgid "Returns the pricing for a barrier option, calculated using the Black-Scholes option pricing model." -msgstr "" +msgstr "Devuelve el precio de una opción de barrera, calculado utilizando el modelo de precios de opciones de Black-Scholes." #. 3ky3t #: func_opt_barrier.xhp @@ -63590,7 +63595,7 @@ "par_id371575067051846\n" "help.text" msgid "OPT_BARRIER(Spot; Volatility; Rate; Foreign Rate; Maturity; Strike; LowerBarrier; UpperBarrier; Rebate; PutCall; InOut; BarrierMonitoring [; Greek])" -msgstr "" +msgstr "OPT_BARRIER(Anuncio; Volatilidad; Tasa; Tasa extranjera; Vencimiento; Ejercicio; Barrera inferior; Barrera superior; Reembolso; Llamada externa; Entrada; Supervisión de barrera [; Griego])" #. XEMff #: func_opt_barrier.xhp @@ -63599,7 +63604,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Ejercicio es el precio de ejercicio de la opción y no debe ser negativo." #. 8tgWG #: func_opt_barrier.xhp @@ -63608,7 +63613,7 @@ "par_id671575073495724\n" "help.text" msgid "Rebate is the amount of money to be paid at maturity if the barrier is hit." -msgstr "" +msgstr "Reembolso es la cantidad de dinero que se pagará al vencimiento si se supera la barrera." #. uAzky #: func_opt_barrier.xhp @@ -63617,7 +63622,7 @@ "par_id691575073511191\n" "help.text" msgid "Put or Call is a string that defines whether the option is a put (“p”) or a call (“c”)." -msgstr "" +msgstr "Venta o Compra es una cadena que define si la opción es venta(\"p\") o compra (\"c\")." #. PdCJb #: func_opt_barrier.xhp @@ -63626,7 +63631,7 @@ "par_id651575073773761\n" "help.text" msgid "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") returns the value 0.4243." -msgstr "" +msgstr "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") devuelve el valor 0.4243." #. ABVQH #: func_opt_barrier.xhp @@ -63635,7 +63640,7 @@ "par_id401575073777593\n" "help.text" msgid "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") returns the value 10.1585." -msgstr "" +msgstr "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") devuelve el valor 10.1585." #. HWhRY #: func_opt_prob_hit.xhp @@ -63644,7 +63649,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_HIT" -msgstr "" +msgstr "Función OPT_PROB_HIT" #. 5Naq2 #: func_opt_prob_hit.xhp @@ -63653,7 +63658,7 @@ "bm_id961575074485125\n" "help.text" msgid "OPT_PROB_HIT function" -msgstr "" +msgstr "Función OPT_PROB_HIT" #. jn8fF #: func_opt_prob_hit.xhp @@ -63662,7 +63667,7 @@ "hd_id71575063908363\n" "help.text" msgid "OPT_PROB_HIT" -msgstr "" +msgstr "OPT_PROB_HIT" #. fWecm #: func_opt_prob_hit.xhp @@ -63671,7 +63676,7 @@ "par_id591575063908364\n" "help.text" msgid "Returns the probability that an asset hits a predetermined barrier price, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Devuelve la probabilidad de que un activo alcance un precio de barrera predeterminado, suponiendo que el precio de la acción se puede modelar como un proceso S que sigue la ecuación diferencial estocástica, de la siguiente manera." #. ZJBj2 #: func_opt_prob_hit.xhp @@ -63680,7 +63685,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_HIT equation" -msgstr "" +msgstr "Ecuación OPT_PROB_HIT" #. FnaCP #: func_opt_prob_hit.xhp @@ -63689,7 +63694,7 @@ "par_id821575074114118\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ es la deriva porcentual del activo, vol es la volatilidad porcentual de la acción y dW es una muestra aleatoria extraída de una distribución normal con una media cero. W es un proceso de Wiener o movimiento browniano." #. 9NRxu #: func_opt_prob_hit.xhp @@ -63698,7 +63703,7 @@ "par_id211575074192954\n" "help.text" msgid "OPT_PROB_HIT(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier)" -msgstr "" +msgstr "OPT_PROB_HIT(Anuncio; Volatilidad; Deriva; Vencimiento; Barrera Inferior; Barrera Superior)" #. XaA8K #: func_opt_prob_hit.xhp @@ -63707,7 +63712,7 @@ "par_id901575074339820\n" "help.text" msgid "Drift is the annual stock price percentage drift rate (µ in the above formula). The value is expressed as a decimal (for example, enter 15% as 0.15)." -msgstr "" +msgstr "Deriva es la tasa de variación porcentual anual del precio de las acciones (µ en la fórmula anterior). El valor se expresa como un decimal (por ejemplo, ingrese 15% como 0.15)." #. 6yrWk #: func_opt_prob_hit.xhp @@ -63716,7 +63721,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Ejercicio es el precio de ejercicio de la opción y no debe ser negativo." #. mHW3F #: func_opt_prob_hit.xhp @@ -63725,7 +63730,7 @@ "par_id971575074431070\n" "help.text" msgid "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) returns the value 0.6119." -msgstr "" +msgstr "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) devuelve el valor 0.6119." #. 3EshE #: func_opt_prob_hit.xhp @@ -63734,7 +63739,7 @@ "par_id171575074434932\n" "help.text" msgid "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) returns the value 0.4239." -msgstr "" +msgstr "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) devuelve el valor 0.4239." #. RFprF #: func_opt_prob_inmoney.xhp @@ -63743,7 +63748,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_INMONEY" -msgstr "" +msgstr "Función OPT_PROB_INMONEY" #. QQBrZ #: func_opt_prob_inmoney.xhp @@ -63752,7 +63757,7 @@ "bm_id961575065633373\n" "help.text" msgid "OPT_PROB_INMONEY function" -msgstr "" +msgstr "Función OPT_PROB_INMONEY" #. kMBbw #: func_opt_prob_inmoney.xhp @@ -63761,7 +63766,7 @@ "hd_id941575063929082\n" "help.text" msgid "OPT_PROB_INMONEY" -msgstr "" +msgstr "OPT_PROB_INMONEY" #. QDryb #: func_opt_prob_inmoney.xhp @@ -63770,7 +63775,7 @@ "par_id941575063929083\n" "help.text" msgid "Returns the probability that an asset will end up between two barrier levels at maturity, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Devuelve la probabilidad de que un activo termine entre dos niveles de barrera al vencimiento, suponiendo que el precio de la acción se puede modelar como un proceso S que sigue el diferencial estocástico ecuación, de la siguiente manera." #. 2GJsA #: func_opt_prob_inmoney.xhp @@ -63779,7 +63784,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_INMONEY equation" -msgstr "" +msgstr "Ecuación OPT_PROB_INMONEY" #. 7ja6D #: func_opt_prob_inmoney.xhp @@ -63788,7 +63793,7 @@ "par_id941575074893788\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ es la deriva porcentual del activo, vol es la volatilidad porcentual de la acción y dW es una muestra aleatoria extraída de una distribución normal con una media cero. W es un proceso de Wiener o movimiento browniano." #. pMCin #: func_opt_prob_inmoney.xhp @@ -64724,7 +64729,7 @@ "par_id51519156941987\n" "help.text" msgid "See also ROUND, MROUND, ROUNDUP, ROUNDDOWN." -msgstr "Véase también: REDONDEAR, REDOND.MULT, REDONDEAR.MAS, REDONDEAR.MENOS." +msgstr "Consulte también: REDONDEAR, REDOND.MULT, REDONDEAR.MAS, REDONDEAR.MENOS." #. hkbrZ #: func_searchb.xhp @@ -64967,7 +64972,7 @@ "tit\n" "help.text" msgid "SUM Function" -msgstr "" +msgstr "Función SUMA" #. fLyVA #: func_sum.xhp @@ -64976,7 +64981,7 @@ "id431636401649762\n" "help.text" msgid "SUM function adding;numbers in cell ranges" -msgstr "" +msgstr "función SUMAsumar;números en intervalos de celdas" #. AE4pM #: func_sum.xhp @@ -64985,7 +64990,7 @@ "hd_id121636398275790\n" "help.text" msgid "SUM" -msgstr "" +msgstr "SUMA" #. c32xJ #: func_sum.xhp @@ -64994,7 +64999,7 @@ "par_id491636401806866\n" "help.text" msgid "Adds a set of numbers." -msgstr "" +msgstr "Suma un conjunto de números." #. vfwu7 #: func_sum.xhp @@ -65012,7 +65017,7 @@ "par_id3163704\n" "help.text" msgid "=SUM(2;3;4) returns 9." -msgstr "" +msgstr "=SUMA(2;3;4) devuelve 9." #. 6ohPR #: func_sum.xhp @@ -65021,7 +65026,7 @@ "par_id3151740\n" "help.text" msgid "=SUM(A1;A3;B5) calculates the sum of the three cells." -msgstr "" +msgstr "=SUMA(A1;A3;B5) calcula la suma de las tres celdas." #. FbQ6a #: func_sum.xhp @@ -65696,7 +65701,7 @@ "par_id3153759\n" "help.text" msgid "Returns the current computer system date. The value is updated when you reopen the document or modify the values of the document." -msgstr "Devuelve la fecha actual del sistema. El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de éste." +msgstr "Devuelve la fecha actual del sistema. El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de este." #. ABDRC #: func_today.xhp @@ -66848,7 +66853,7 @@ "par_id23102016234837285\n" "help.text" msgid "Returns the date calculated from a start date with a specific number of work days, before or after the start date. The calculation can include week-ends and holidays as non-working days." -msgstr "" +msgstr "Devuelve la fecha calculada a partir de una fecha de inicio con un número específico de días laborables, antes o después de la fecha de inicio. El cálculo puede incluir fines de semana y días festivos como días no laborables." #. 9r2Ns #: func_workday.intl.xhp @@ -66857,7 +66862,7 @@ "par_id241020160008306838\n" "help.text" msgid "WORKDAY.INTL(StartDate; Days [; Weekend [; Holidays]])" -msgstr "" +msgstr "DIA.LAB.INTL (Fecha de inicio; Días [; Fin de semana [; Días festivos]])" #. gJg5G #: func_workday.intl.xhp @@ -66866,7 +66871,7 @@ "par_id241020160008308885\n" "help.text" msgid "StartDate: is the date from when the calculation is carried out." -msgstr "" +msgstr "Fecha de inicio: es la fecha desde que se realiza el cálculo." #. CVBCb #: func_workday.intl.xhp @@ -66911,7 +66916,7 @@ "par_id241020160012177923\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;;F3:J3) returns January 11, 2017 in the result cell, say D6 (use date format for the cell)." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;;F3:J3) devuelve el 11 de enero de 2017 en la celda de resultados, digamos D6 (use el formato de fecha para la celda)." #. LGcmi #: func_workday.intl.xhp @@ -66929,7 +66934,7 @@ "par_id241020160012178562\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;7;F3:J3) returns January 15, 2017 with weekend parameter 7." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;7;F3:J3)devuelve el 15 de enero de 2017 con el parámetro de fin de semana 7." #. gdAdN #: func_workday.intl.xhp @@ -66947,7 +66952,7 @@ "par_id241020160012181455\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;11;F3:J3) returns January 9, 2017." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;11;F3:J3)regresa el 9 de enero de 2017." #. ySGjs #: func_workday.intl.xhp @@ -66965,7 +66970,7 @@ "par_id241020160012183680\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3) returns January 9, 2017." -msgstr "" +msgstr "= DIA.LAB.INTL(C3;D3;\"0000001\";F3:J3)regresa el 9 de enero de 2017." #. 3Xzsr #: func_workday.intl.xhp @@ -66983,7 +66988,7 @@ "par_id241020160012182048\n" "help.text" msgid "=WORKDAY.INTL(C3;D3) gives the result: January 10, 2017." -msgstr "" +msgstr "= DIA.LAB.INTLC3;D3) da el resultado: 10 de enero de 2017." #. 5dvmu #: func_workday.xhp @@ -67028,7 +67033,7 @@ "par_id3154844\n" "help.text" msgid "WORKDAY(StartDate; Days [; Holidays])" -msgstr "" +msgstr "DIA.LAB(Fecha de inicio; Días [; Días festivos])" #. 35EG5 #: func_workday.xhp @@ -67073,7 +67078,7 @@ "par_id3146142\n" "help.text" msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD." -msgstr "" +msgstr "=DIA.LABDIA.(C3;D3;F3:J3)devuelve 2001-12-28. Formatee el número de fecha de serie como una fecha, por ejemplo, en el formato AAAA-MM-DD." #. tHNNK #: func_workday.xhp @@ -67118,7 +67123,7 @@ "par_id3147496\n" "help.text" msgid "Returns the year as a number according to the internal calculation rules." -msgstr "" +msgstr "Devuelve el año como un número de acuerdo con elreglas internas de cálculo" #. 3SfLe #: func_year.xhp @@ -67172,7 +67177,7 @@ "par_id141577548861101\n" "help.text" msgid "=YEAR(DATEVALUE('2010-09-28')) returns 2010." -msgstr "" +msgstr "=AÑO(VALOR DE LA FECHA('2010-09-28')devuelve 2010." #. kAjPe #: func_yearfrac.xhp @@ -67595,7 +67600,7 @@ "par_id2423780\n" "help.text" msgid "Opens the Solver Options dialog." -msgstr "" +msgstr "Abre el cuadro de diálogo Opciones de Solver." #. jDGPG #: solver.xhp @@ -67604,7 +67609,7 @@ "par_id221589917833431\n" "help.text" msgid "The Solver Options dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." -msgstr "" +msgstr "El cuadro de diálogo Opciones de Solver le permite seleccionar diferentes algoritmos para resolver problemas lineales y no lineales y establecer los parámetros de resolución." #. 8YGDA #: solver.xhp @@ -67640,7 +67645,7 @@ "par_id2216559\n" "help.text" msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the target cell, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value." -msgstr "El objetivo del proceso solucionador es encontrar estos valores variables de una ecuación que el resultado en un valor optimizado en la celda objetvo. Usted puede elegir si el valor en la celda objetivo debe ser el máximo, mínimo, o acercarse a un determinado valor." +msgstr "El objetivo del proceso del Solver es encontrar aquellos valores variables de una ecuación que resulten en un valor optimizado en la celda de destino u «objetivo». Puede elegir si el valor en la celda de destino debe ser un máximo, un mínimo o una aproximación a un valor determinado." #. tPUFj #: solver.xhp @@ -67667,7 +67672,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Using Non-Linear solvers" -msgstr "" +msgstr "Uso de solucionadores no lineales" #. UTzzV #: solver.xhp @@ -67676,7 +67681,7 @@ "par_id0603200910430845\n" "help.text" 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 "" +msgstr "Independientemente de si utiliza DEPS o SCO, comience yendo a Herramientas ▸ Solver e indique la celda que se debe optimizar, la dirección de avance (minimización, maximización) y las celdas que se deben modificar para alcanzar el objetivo. Luego vaya a las Opciones, especifique el tipo de Solver que se usará y, finalmente, ajuste los parámetros, si fuera necesario." #. gJGz2 #: solver.xhp @@ -67721,7 +67726,7 @@ "bm_id291590166034871\n" "help.text" msgid "solver for Calc;options" -msgstr "" +msgstr "Solver para Calc;opciones" #. vZkr3 #: solver_options.xhp @@ -67730,7 +67735,7 @@ "hd_id2794274\n" "help.text" msgid "Solver Options" -msgstr "" +msgstr "Opciones de Solver" #. LHgS8 #: solver_options.xhp @@ -67739,7 +67744,7 @@ "par_id3163853\n" "help.text" msgid "Use the Options dialog to configure the solver engine." -msgstr "" +msgstr "Utilice el cuadro de diálogo Opciones para configurar el motor del Solver." #. mFtPo #: solver_options.xhp @@ -67757,7 +67762,7 @@ "hd_id581589922716672\n" "help.text" msgid "Solver engine" -msgstr "Motor de Solver" +msgstr "Algoritmo de Solver" #. A7MrG #: solver_options.xhp @@ -67829,7 +67834,7 @@ "par_id3912778\n" "help.text" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Introduzca o cambie el valor de la configuración seleccionada" #. cYCVf #: solver_options.xhp @@ -67865,7 +67870,7 @@ "hd_id0503200917103593\n" "help.text" msgid "Solver Algorithms Options" -msgstr "" +msgstr "Opciones de algoritmos para Solver" #. RjM8p #: solver_options_algo.xhp @@ -71627,4 +71632,4 @@ "par_id240920171007419799\n" "help.text" msgid "Wiki page on XML Source" -msgstr "" +msgstr "Página wiki sobre fuente XML" diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/02.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/02.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/02.po 2022-07-15 19:12:51.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-29 13:08+0200\n" -"PO-Revision-Date: 2021-05-27 20:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548569336.000000\n" #. aSE5T @@ -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 "Escriba la fórmula que desee incorporar a la celda actual. También puede pulsar en el icono Asistente de funciones para insertar una función predefinida en la fórmula." +msgstr "Escriba la fórmula que desee incorporar a la celda actual. También puede pulsar en el icono Asistente para funciones para insertar una función predefinida en la fórmula." #. pBxxB #: 06060000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1778,7 +1778,7 @@ "tit\n" "help.text" msgid "Entering Values" -msgstr "Ingresar valores" +msgstr "Introducir valores" #. 2aSdr #: cell_enter.xhp @@ -1931,7 +1931,7 @@ "bm_id3146119\n" "help.text" msgid "protecting;cells and sheets cells; protecting cell protection; enabling sheets; protecting documents; protecting cells; hiding for printing changing; sheet protection hiding;formulas formulas;hiding" -msgstr "proteger;celdas y hojas celdas; proteger proteger celdas; habilitar hojas; proteger documentos; proteger celdas; ocultar para imprimir cambiar; protección de hojas ocultar;fórmulas fórmulas;ocultar" +msgstr "proteger;celdas y hojasceldas; protegerproteger celdas; activarhojas; protegerdocumentos; protegerceldas; ocultar para imprimircambiar; protección de hojasocultar;fórmulasfórmulas;ocultar" #. DDnnF #: cell_protect.xhp @@ -2291,7 +2291,7 @@ "tit\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referencia a celdas mediante arrastrar y soltar" +msgstr "Referencia a celdas mediante arrastrar y colocar" #. DN7Zz #: cellreference_dragdrop.xhp @@ -3020,7 +3020,7 @@ "par_id3154484\n" "help.text" msgid "In the Styles deck of the Sidebar, click the New Style from Selection icon. Enter the name of the new style. For this example, name the style \"Above\"." -msgstr "En la sección Estilos de la barra lateral, pulse en el icono Estilo nuevo desde selección. Escriba el nombre del estilo nuevo. En este ejemplo, llámelo «Mayor que»." +msgstr "En el grupo Estilos de la barra lateral, pulse en el icono Estilo nuevo desde selección. Escriba el nombre del estilo nuevo. En este ejemplo, llámelo «Mayor que»." #. 4bRZa #: cellstyle_conditional.xhp @@ -3074,7 +3074,7 @@ "par_id3153246\n" "help.text" msgid "Close the Function Wizard with OK." -msgstr "Pulse en Aceptar para cerrar el Asistente de funciones." +msgstr "Pulse en Aceptar para cerrar el Asistente para funciones." #. 75WFf #: cellstyle_conditional.xhp @@ -3452,7 +3452,7 @@ "par_id3153816\n" "help.text" msgid "Select additional ranges and click Add after each selection." -msgstr "A continuación seleccione las demás áreas siguiendo uno de los procedimientos indicados, y después de cada área pulse Agregar." +msgstr "A continuación, seleccione las demás áreas siguiendo uno de los procedimientos indicados y, después de cada área, pulse en Añadir." #. 85CXx #: consolidate.xhp @@ -4298,7 +4298,7 @@ "par_id3145069\n" "help.text" msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells." -msgstr "Puede usar varios filtros para filtrar los rangos de celdas en hojas de cálculo. Un filtro estándar utiliza las opciones especificadas para filtrar los datos. Un filtro automático filtra los datos de acuerdo con una cadena o un valor especificados. Un filtro avanzado utiliza criterios de filtrado de celdas específicas." +msgstr "Puede usar varios filtros para filtrar los intervalos de celdas en las hojas de cálculo. Un filtro estándar utiliza las opciones especificadas para filtrar los datos. Un filtro automático filtra los datos de acuerdo con una cadena o un valor que se especifique. Un filtro avanzado utiliza los criterios de filtrado de celdas específicas." #. e7DZH #: database_filter.xhp @@ -4676,7 +4676,7 @@ "par_id3146974\n" "help.text" msgid "By double-clicking on one of the fields in the Data Fields area you can call up the Data Field dialog." -msgstr "Al hacer doble clic en uno de los campos del área Campos de datos puede abrir el diálogo Campo de datos." +msgstr "Si pulsa dos veces en uno de los campos del apartado Campos de datos, se abrirá el cuadro de diálogo Campo de datos." #. PAuDC #: datapilot_createtable.xhp @@ -5333,7 +5333,7 @@ "par_idN1079A\n" "help.text" msgid "In the Database type box of the Database Properties dialog, select \"dBASE\"." -msgstr "En el cuadro Tipo de base de datos del diálogo Propiedades de la base de datos, seleccione \"dBASE\"." +msgstr "En el cuadro Tipo de base de datos del diálogo Propiedades de la base de datos, seleccione «dBASE»." #. HjBBj #: dbase_files.xhp @@ -5360,7 +5360,7 @@ "par_idN107B6\n" "help.text" msgid "Locate the directory that contains the dBASE file, and click OK." -msgstr "Ubique el directorio que contiene el archivo dBASE, y pulse en Aceptar." +msgstr "Ubique el directorio que contiene el archivo dBASE y pulse en Aceptar." #. 5kG55 #: dbase_files.xhp @@ -6557,7 +6557,7 @@ "hd_id3150868\n" "help.text" msgid "Entering Formulas" -msgstr "Ingresar fórmulas" +msgstr "Introducir fórmulas" #. H3w2m #: formula_enter.xhp @@ -7205,7 +7205,7 @@ "par_id3145785\n" "help.text" msgid "%PRODUCTNAME Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document." -msgstr "%PRODUCTNAME Calc guarda todas las hojas de un documento de Calc en un único documento HTML. Al principio de dicho documento se agregan un encabezado y una lista de hipervínculos a cada una de las hojas individuales del documento." +msgstr "%PRODUCTNAME Calc guarda todas las hojas de un documento de Calc en un único documento HTML. Al principio de dicho documento se añaden un título y una lista de hiperenlaces a cada una de las hojas del documento." #. mtAQs #: html_doc.xhp @@ -9455,7 +9455,7 @@ "par_id151525140367370\n" "help.text" msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard." -msgstr "%PRODUCTNAME Calc detecta automáticamente la tabla dinámica y abre el asistente de gráficos dinámicos." +msgstr "%PRODUCTNAME Calc detecta automáticamente la tabla dinámica y abre el asistente para gráficos dinámicos." #. q3cHS #: pivotchart_create.xhp @@ -9473,7 +9473,7 @@ "par_id41525141917275\n" "help.text" msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table." -msgstr "No se activan las páginas del intervalo de datos y de la serie de datos del asistente de gráficos, dado que ambos elementos son controlados por la tabla dinámica." +msgstr "No se activan las páginas del intervalo de datos y de la serie de datos del asistente para gráficos, dado que ambos elementos son controlados por la tabla dinámica." #. 6tkMF #: pivotchart_create.xhp @@ -11813,7 +11813,7 @@ "par_id3147372\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view." -msgstr "" +msgstr "Diríjase a Datos ▸ Más filtros ▸ Filtro avanzado y, acto seguido, seleccione el intervalo A20:E22. Luego de que pulse en Aceptar, se mostrarán solamente las filas filtradas; el resto estará oculto a la vista." #. jQ6bn #: subtotaltool.xhp @@ -12137,7 +12137,7 @@ "par_id3154351\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Merge Cells.
    If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further." -msgstr "" +msgstr "O bien, pulse con el botón secundario del ratón sobre la selección para abrir el menú contextual y seleccione Combinar celdas.
    Si en su lugar ve Separar celdas, la selección contiene celdas combinadas que no pueden combinarse más." #. uH6dA #: table_cellmerge.xhp @@ -13253,7 +13253,7 @@ "par_id5774101\n" "help.text" msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells." -msgstr "También puede asignar nombres a otros rangos de celdas en este diálogo. Para ello, escriba el nombre en el campo y, a continuación, seleccione las celdas correspondientes." +msgstr "También puede asignar nombres a otros intervalos de celdas en este cuadro de diálogo. Para ello, escriba el nombre en el campo y, a continuación, seleccione las celdas correspondientes." #. 3sCdF #: value_with_name.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/schart/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/schart/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/schart/01.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-09 19:38+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550207897.000000\n" #. DsZFP @@ -2948,7 +2948,7 @@ "par_id3145750\n" "help.text" msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose Format - Format Selection. Some of the menu entries are only available for 2D or 3D charts." -msgstr "Permite modificar las propiedades de una serie de datos seleccionada. Este diálogo se muestra si al activar el comando de menú Formato - Formato de selección, se ha seleccionado una serie de datos. Algunas entradas del menú están disponibles sólo para gráficos 2D y 3D." +msgstr "Permite modificar las propiedades de una serie de datos seleccionada. Este cuadro de diálogo se muestra si, al activar la orden de menú Formato ▸ Formato de selección, se ha seleccionado una serie de datos. Algunas entradas del menú están disponibles solo para gráficos 2D y 3D." #. 9jEEq #: 05010200.xhp @@ -4649,7 +4649,7 @@ "par_id7085787\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. NSMjA #: choose_chart_type.xhp @@ -5090,7 +5090,7 @@ "par_id6998809\n" "help.text" msgid "On the first page of the Chart Wizard or in the context menu of a chart you can choose a chart type. Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines." -msgstr "En la primera página del Asistente de gráficos o en el menú contextual puede escoger el tipo de gráfico. Abre un cuadro de diálogo que permite editar las propiedades de una vista tridimensional en gráficos de columnas, barras, circulares y de área. En el caso de los gráficos de líneas y XY, podrá ver líneas en 3D." +msgstr "En la primera página del Asistente para gráficos o en el menú contextual puede escoger el tipo de gráfico. Abre un cuadro de diálogo que permite editar las propiedades de una vista tridimensional en gráficos de columnas, barras, circulares y de área. En el caso de los gráficos de líneas y XY, podrá ver líneas en 3D." #. FJdFw #: three_d_view.xhp @@ -5225,7 +5225,7 @@ "par_id3791924\n" "help.text" msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version." -msgstr "Viejas versiones de %PRODUCTNAME no pueden mostrar el porcentaje de perspectiva de la misma manera que la versión actual." +msgstr "Las versiones anteriores de %PRODUCTNAME no pueden mostrar el porcentaje de perspectiva de la misma manera que la versión actual." #. SY4DN #: three_d_view.xhp @@ -5243,7 +5243,7 @@ "par_id4721823\n" "help.text" msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje X. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje X. La previsualización responde a las configuraciones nuevas." #. r68Bu #: three_d_view.xhp @@ -5252,7 +5252,7 @@ "par_id5806756\n" "help.text" msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje Y. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Y. La previsualización responde a las configuraciones nuevas." #. HG7NF #: three_d_view.xhp @@ -5261,7 +5261,7 @@ "par_id8915372\n" "help.text" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Fija la rotación del gráfico sobre el eje Z. La vista previa responde a las nuevas configuraciones." +msgstr "Fija el giro del gráfico sobre el eje Z. La previsualización responde a las configuraciones nuevas." #. P3E59 #: three_d_view.xhp @@ -5576,7 +5576,7 @@ "par_id916776\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. AXGaZ #: type_area.xhp @@ -5657,7 +5657,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. fPDAo #: type_bubble.xhp @@ -5720,7 +5720,7 @@ "par_id3430585\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. 2AjSb #: type_column_bar.xhp @@ -5846,7 +5846,7 @@ "par_id4818567\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. p8vzY #: type_column_line.xhp @@ -6116,7 +6116,7 @@ "par_id5729544\n" "help.text" msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:" -msgstr "Sírvase de la página Elementos de gráfico del Asistente de gráficos para insertar cualquiera de los elementos siguientes:" +msgstr "Sírvase de la página Elementos de gráfico del Asistente para gráficos para insertar cualquiera de los elementos siguientes:" #. ZC2FB #: type_column_line.xhp @@ -6233,7 +6233,7 @@ "par_id389721\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. a3Zmw #: type_line.xhp @@ -6341,7 +6341,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. MWv9D #: type_net.xhp @@ -6404,7 +6404,7 @@ "par_id245979\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. XGE3t #: type_pie.xhp @@ -6494,7 +6494,7 @@ "par_id3516953\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede seleccionar un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede seleccionar un tipo de gráfico." #. CZZei #: type_stock.xhp @@ -7241,7 +7241,7 @@ "par_id3486434\n" "help.text" msgid "You can organize data series and edit the source for parts of single data series on the third page of the Chart Wizard or on the page Data Series in the Data Range dialog." -msgstr "Puede organizar las series de datos y editar el origen para partes de series de datos únicas en la tercera página del Asistente de gráficos o en la página Serie de datos del cuadro de diálogo Intervalo de datos." +msgstr "Puede organizar las series de datos y editar el origen para partes de series de datos únicas en la tercera página del Asistente para gráficos o en la página Serie de datos del cuadro de diálogo Intervalo de datos." #. zSfXf #: type_stock.xhp @@ -7403,7 +7403,7 @@ "par_id2003845\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del Asistente de gráficos puede elegir un tipo de gráfico." +msgstr "En la primera página del Asistente para gráficos puede elegir un tipo de gráfico." #. EHrHp #: type_xy.xhp @@ -7493,7 +7493,7 @@ "par_id8919339\n" "help.text" msgid "You can choose an XY chart variant on the first page of the Chart Wizard, or by choosing Format - Chart Type for a chart in edit mode." -msgstr "Puede escoger una variante de gráfico XY en la primera página del asistente de gráficos, o bien seleccionando Formato ▸ Tipo de gráfico para pasar al modo de edición." +msgstr "Puede escoger una variante de gráfico XY en la primera página del asistente para gráficos, o bien seleccionando Formato ▸ Tipo de gráfico para pasar al modo de edición." #. azkUx #: type_xy.xhp @@ -7790,7 +7790,7 @@ "hd_id70802\n" "help.text" msgid "Chart Wizard - Chart Elements" -msgstr "Asistente de gráficos. Elementos del gráfico" +msgstr "Asistente para gráficos. Elementos del gráfico" #. GPTJT #: wiz_chart_elements.xhp @@ -7943,7 +7943,7 @@ "hd_id4411145\n" "help.text" msgid "To enter chart elements" -msgstr "Para ingresar los elementos del gráfico" +msgstr "Para introducir elementos del gráfico" #. X4ABG #: wiz_chart_elements.xhp @@ -7979,7 +7979,7 @@ "par_id156865\n" "help.text" msgid "It is not possible to link the title text to a cell. You must enter the text directly." -msgstr "No es posible para ligar el titulo de texto a la celda. Debes ingresar el texto directamente." +msgstr "No es posible enlazar el texto de título a una celda. Debe introducir el texto directamente." #. 5W5Ld #: wiz_chart_elements.xhp @@ -8123,7 +8123,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Chart Type" -msgstr "Asistente de gráficos. Tipo de gráfico" +msgstr "Asistente para gráficos. Tipo de gráfico" #. LZdZA #: wiz_chart_type.xhp @@ -8141,7 +8141,7 @@ "hd_id1536606\n" "help.text" msgid "Chart Wizard - Chart Type" -msgstr "Asistente de gráficos. Tipo de gráfico" +msgstr "Asistente para gráficos. Tipo de gráfico" #. D8wP7 #: wiz_chart_type.xhp @@ -8150,7 +8150,7 @@ "par_id6006958\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "En la primera página del asistente de gráficos puede escoger un tipo de gráfico." +msgstr "En la primera página del asistente para gráficos puede escoger un tipo de gráfico." #. MD2Pv #: wiz_chart_type.xhp @@ -8366,7 +8366,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Data Range" -msgstr "Asistente de gráficos. Intervalo de datos" +msgstr "Asistente para gráficos. Intervalo de datos" #. JGeZD #: wiz_data_range.xhp @@ -8384,7 +8384,7 @@ "hd_id8313852\n" "help.text" msgid "Chart Wizard - Data Range" -msgstr "Asistente de gráficos. Intervalo de datos" +msgstr "Asistente para gráficos. Intervalo de datos" #. nqjuD #: wiz_data_range.xhp @@ -8555,7 +8555,7 @@ "tit\n" "help.text" msgid "Chart Wizard - Data Series" -msgstr "Asistente de gráficos. Series de datos" +msgstr "Asistente para gráficos. Series de datos" #. DDAu9 #: wiz_data_series.xhp @@ -8573,7 +8573,7 @@ "hd_id6124149\n" "help.text" msgid "Chart Wizard - Data Series" -msgstr "Asistente de gráficos. Series de datos" +msgstr "Asistente para gráficos. Series de datos" #. WZBBV #: wiz_data_series.xhp @@ -8591,7 +8591,7 @@ "par_id6326487\n" "help.text" msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page." -msgstr "Si le abruma la cantidad de opciones de esta página, puede pasarla por alto y definir el intervalo de datos mediante Asistente de gráficos ▸ Intervalo de datos." +msgstr "Si le abruma la cantidad de opciones de esta página, puede pasarla por alto y definir el intervalo de datos mediante Asistente para gráficos ▸ Intervalo de datos." #. o74Mn #: wiz_data_series.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" #. ugSgG #: 02000000.xhp @@ -2335,7 +2335,7 @@ "par_id3149523\n" "help.text" msgid "To query Yes/No fields, use the following syntax for dBASE tables:" -msgstr "" +msgstr "Para efectuar consultas en campos sí/no, utilice esta sintaxis para archivos dBASE:" #. A4Uh7 #: 02010100.xhp @@ -2839,7 +2839,7 @@ "hd_id3157910\n" "help.text" msgid "FormWizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. GDZow #: 04000000.xhp @@ -5422,7 +5422,7 @@ "par_id3151245\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database. Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "Seleccione la conversión de código que quiera utilizar para ver la base de datos en $[officename]. Esto no afecta la base de datos en sí. Elija «Sistema» para utilizar el conjunto de caracteres predeterminado del sistema operativo. Las bases de datos de texto y dBASE están restringidas a una longitud de carácter fija, en la cual todos los caracteres están codificados con la misma cantidad de bytes." #. xBEZv #: 11020000.xhp @@ -5620,7 +5620,7 @@ "par_id3153823\n" "help.text" msgid "Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records." -msgstr "" +msgstr "Muestra todos los registros de un archivo, incluidos los marcados como eliminados. Si selecciona esta opción, no podrá eliminar registros." #. 7vpRc #: 11030000.xhp @@ -5638,7 +5638,7 @@ "par_id3151384\n" "help.text" msgid "To view any changes that you make to the database, close the connection to the database, and then reconnect the database." -msgstr "" +msgstr "Para ver las modificaciones efectuadas en la base de datos, cierre la conexión a esta y establezca una conexión nueva." #. 5LBSi #: 11030000.xhp @@ -5647,7 +5647,7 @@ "par_id0904200811094971\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database." -msgstr "" +msgstr "Seleccione la conversión de código que quiera utilizar para ver la base de datos en $[officename]. Esto no afecta la base de datos en sí." #. Gmun9 #: 11030000.xhp @@ -7078,7 +7078,7 @@ "tit\n" "help.text" msgid "Connection Type Wizard" -msgstr "Asistente de tipos de conexión" +msgstr "Asistente para tipos de conexión" #. tR5Cs #: dabapropcon.xhp @@ -7087,7 +7087,7 @@ "par_idN1054D\n" "help.text" msgid "Connection Type Wizard" -msgstr "Asistente de tipos de conexión" +msgstr "Asistente para tipos de conexión" #. cnXMD #: dabapropcon.xhp @@ -7114,7 +7114,7 @@ "par_idN10569\n" "help.text" msgid "The Connection Type Wizard consists of three pages. You cannot transfer all settings from one database type to another." -msgstr "El asistente de tipos de conexión se compone de tres páginas. No es posible transferir todos los parámetros de un tipo de base de datos a otro." +msgstr "El asistente para tipos de conexión se compone de tres páginas. No es posible transferir todos los parámetros de un tipo de base de datos a otro." #. htEBY #: dabapropcon.xhp @@ -7510,7 +7510,7 @@ "tit\n" "help.text" msgid "Database Wizard" -msgstr "Asistente de bases de datos" +msgstr "Asistente para bases de datos" #. dYT7e #: dabawiz00.xhp @@ -7519,7 +7519,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)jdbc; database settings (Base)odbc; database settings (Base)spreadsheets;as databases (base)" -msgstr "asistentes;bases de datos (Base)Asistente de bases de datos (Base)bases de datos; formatos (Base)MySQL databases (Base)bases de datos MariaDB (Base)dBASE; configuración de base de datos (Base)jdbc; configuración de base de datos (Base)odbc; configuración de base de datos (Base)hojas de cálculo;como bases de datos (Base)" +msgstr "asistentes;bases de datos (Base)Asistente para bases de datos (Base)bases de datos; formatos (Base)MySQL databases (Base)bases de datos MariaDB (Base)dBASE; configuración de base de datos (Base)jdbc; configuración de base de datos (Base)odbc; configuración de base de datos (Base)hojas de cálculo;como bases de datos (Base)" #. 5pnX6 #: dabawiz00.xhp @@ -7528,7 +7528,7 @@ "par_idN105B4\n" "help.text" msgid "Database Wizard" -msgstr "Asistente de base de dados" +msgstr "Asistente para base de dados" #. 4L7fe #: dabawiz00.xhp @@ -7537,7 +7537,7 @@ "par_id9856563\n" "help.text" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "El Asistente de bases de datos crea un archivo que contiene información sobre una base de datos." +msgstr "El Asistente para bases de datos crea un archivo que contiene información sobre una base de datos." #. MP58w #: dabawiz00.xhp @@ -7546,7 +7546,7 @@ "par_idN105D5\n" "help.text" msgid "Depending on the type of operation and the type of database, the Database Wizard consists of a varying number of steps." -msgstr "Los pasos del Asistente de bases de datos dependen del tipo de operación y del tipo de base de datos." +msgstr "Los pasos del Asistente para bases de datos dependen del tipo de operación y del tipo de base de datos." #. BvAbd #: dabawiz00.xhp @@ -7564,7 +7564,7 @@ "par_idN105DF\n" "help.text" msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more." -msgstr "Si abre el Asistente de bases de datos para crear un archivo de base de datos para una conexión existente, puede que haya más pasos para especificar las rutas, la información de autenticación, etcétera." +msgstr "Si abre el Asistente para bases de datos para crear un archivo de base de datos para una conexión existente, puede que haya más pasos para especificar las rutas, la información de autenticación, etcétera." #. A9JMA #: dabawiz00.xhp @@ -9535,7 +9535,7 @@ "par_idN1083B\n" "help.text" msgid "The Database Wizard helps you to create a database file and to register a new database within %PRODUCTNAME." -msgstr "El asistente de bases de datos le ayuda a crear un archivo de base de datos y registrar una base de datos nueva en %PRODUCTNAME." +msgstr "El asistente para bases de datos le ayuda a crear un archivo de base de datos y registrar una base de datos nueva en %PRODUCTNAME." #. 2jPWg #: main.xhp @@ -9796,7 +9796,7 @@ "par_idN105AD\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. LZsjA #: menuedit.xhp @@ -9814,7 +9814,7 @@ "par_idN105C2\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. U7xE3 #: menuedit.xhp @@ -10714,7 +10714,7 @@ "tit\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. CU3Fy #: tablewizard00.xhp @@ -10723,7 +10723,7 @@ "bm_id6009094\n" "help.text" msgid "wizards;database tables (Base)Table Wizard (Base)" -msgstr "" +msgstr "asistentes;tablas de base de datos (Base)Asistente para tablas (Base)" #. TStMh #: tablewizard00.xhp @@ -10732,7 +10732,7 @@ "par_idN1054C\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. rBE4D #: tablewizard00.xhp @@ -10741,7 +10741,7 @@ "par_idN1055C\n" "help.text" msgid "The Table Wizard helps you to create a database table." -msgstr "El asistente de tablas le ayuda a crear una tabla en una base de datos." +msgstr "El asistente para tablas le ayuda a crear una tabla en una base de datos." #. UBG57 #: tablewizard00.xhp @@ -10876,7 +10876,7 @@ "par_idN10552\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "Asistente de tablas. Establecer tipos y formatos" +msgstr "Asistente para tablas. Establecer tipos y formatos" #. r3sex #: tablewizard02.xhp @@ -11443,7 +11443,7 @@ "par_idN10580\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. PAxTq #: toolbars.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2660,7 +2660,7 @@ "par_id3149021\n" "help.text" msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object." -msgstr "Mueva el puntero a una manilla de esquina para que el puntero se convierta en un icono de giro. Arrastre la manilla para girar un objeto." +msgstr "Mueva el puntero a una agarradera de esquina para que el puntero se convierta en un icono de giro. Arrastre la agarradera para girar el objeto." #. TrVS9 #: rotate_object.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 "Para sesgar el objeto verticalmente u horizontalmente, arrastralo de las manillas laterales." +msgstr "Para torcer el objeto vertical u horizontalmente, arrastre una de las agarraderas laterales." #. SFGmo #: text_enter.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2516,7 +2516,7 @@ "par_id3150092\n" "help.text" msgid "The Links to External Files command is found in the Edit menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link." -msgstr "" +msgstr "La orden Enlaces a archivos externos se encuentra en el menú Editar. La orden puede activarse solo si existe al menos un enlace en el documento actual. Cuando inserte, por ejemplo, una imagen, puede hacerlo directamente en el documento o en forma de enlace." #. ePu6N #: 00000005.xhp @@ -3578,7 +3578,7 @@ "par_id3150129\n" "help.text" msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off." -msgstr "\"Fuente: 10pt\" pasa a una fuente con 10pt y al mismo tiempo negrita, cursiva y versalita." +msgstr "«Font: 10pt» selecciona un tipo de letra de 10 pt, sin negritas, itálicas ni versalitas." #. sx5EP #: 00000020.xhp @@ -4640,7 +4640,7 @@ "par_idN10AC5\n" "help.text" msgid "Document Converter Wizard" -msgstr "Asistente de conversión de documentos" +msgstr "Asistente para conversión de documentos" #. 6sL4z #: 00000099.xhp @@ -4676,7 +4676,7 @@ "par_id3156069\n" "help.text" msgid "On the help page for $[officename] general you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop." -msgstr "En la página de ayuda general de $[officename] encontrará instrucciones aplicables a todos los módulos, como el trabajo con ventanas y menús, la personalización de $[officename], fuentes de datos, de galería y arrastrar y colocar." +msgstr "En la página de ayuda general de $[officename] encontrará instrucciones aplicables a todos los módulos, como el trabajo con ventanas y menús, la personalización de $[officename], los orígenes de datos, la galería y la técnica de arrastrar y colocar." #. v53RG #: 00000099.xhp @@ -4982,7 +4982,7 @@ "par_id15\n" "help.text" msgid "For EPS files you can set the preview, the color format, the compression, and the version." -msgstr "Para archivos EPS puede establecer la vista previa, el formato de color, la compresión y la versión." +msgstr "Para archivos EPS puede establecer la previsualización, el formato de color, la compresión y la versión." #. hCFBd #: 00000200.xhp @@ -5441,7 +5441,7 @@ "par_id3150247\n" "help.text" msgid "Specifies the row where you want to start the import. The rows are visible in the preview window at the bottom of the dialog." -msgstr "Especifica la fila en la que se desee insertar el contenido importado. Las filas se pueden ver en la ventana de vista previa, en la parte inferior del diálogo." +msgstr "Especifica la fila en la que se desee insertar el contenido importado. Las filas se pueden ver en la ventana de previsualización, en la parte inferior del diálogo." #. MHZFB #: 00000208.xhp @@ -14513,7 +14513,7 @@ "par_id3152791\n" "help.text" msgid "Choose Edit - Paste Special - Paste Special." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegado especial." #. CFGeE #: edit_menu.xhp @@ -14531,7 +14531,7 @@ "par_id731584805182269\n" "help.text" msgid "Choose Edit - Paste Special - Paste Unformatted Text." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegar texto sin formato." #. BUPSo #: edit_menu.xhp @@ -14558,7 +14558,7 @@ "par_id531584805456716\n" "help.text" msgid "Choose Edit - Paste Special - Paste Nested Table." -msgstr "" +msgstr "Vaya a Editar ▸ Pegado especial ▸ Pegar tabla anidada." #. AWiCd #: edit_menu.xhp @@ -14612,7 +14612,7 @@ "par_id3148555\n" "help.text" msgid "Choose Edit - Select All." -msgstr "" +msgstr "Vaya a Editar ▸ Seleccionar todo." #. mia2c #: edit_menu.xhp @@ -14630,7 +14630,7 @@ "par_id3145748\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icono" #. 8xMiC #: edit_menu.xhp @@ -14648,7 +14648,7 @@ "par_id3145251\n" "help.text" msgid "Choose Edit - Track Changes." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios." #. FtngJ #: edit_menu.xhp @@ -14657,7 +14657,7 @@ "par_id3153336\n" "help.text" msgid "Choose Edit - Track Changes - Record." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Grabar." #. eaiZ6 #: edit_menu.xhp @@ -14675,7 +14675,7 @@ "par_id3153845\n" "help.text" msgid "Choose Edit - Track Changes - Manage." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Gestionar." #. RLwDH #: edit_menu.xhp @@ -14684,7 +14684,7 @@ "par_id3148587\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab." -msgstr "" +msgstr "Vaya a Editar ▸ Control de cambios ▸ Gestionar ▸ pestaña Lista." #. KKGxQ #: edit_menu.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -230,7 +230,7 @@ "par_idN108D0\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "Abre el Asistente de base de datos para crear un archivo de base de datos." +msgstr "Abre el Asistente para base de datos para crear un archivo de base de datos." #. 9nYdo #: 01010000.xhp @@ -473,7 +473,7 @@ "par_idN10A43\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "Abre el asistente de bases de datos para crear una base de datos." +msgstr "Abre el asistente para bases de datos para crear una base de datos." #. 8qFCs #: 01010000.xhp @@ -2534,7 +2534,7 @@ "par_id3159201\n" "help.text" msgid "When you close the last open document window, you see the Start Center." -msgstr "Tras cerrar la última ventana de documento aparece el Centro de inicio." +msgstr "Tras cerrar la última ventana de documento aparece el centro de bienvenida." #. 638RE #: 01050000.xhp @@ -3983,7 +3983,7 @@ "par_idN106AE\n" "help.text" msgid "Select to allow this document to be opened in read-only mode only." -msgstr "Seleccione esta opción para permitir que este documento sólo pueda abrirse en modo de lectura." +msgstr "Seleccione esta opción para permitir que este documento solo pueda abrirse en modo de lectura." #. uhvBT #: 01100600.xhp @@ -12614,7 +12614,7 @@ "par_id3155356\n" "help.text" msgid "When you rest the mouse pointer over a change markup in the document, a Tip displays the author and the date and time that the change was made. If the Extended Tips are activated, the type of change and any attached comments are also displayed." -msgstr "Cuando se coloca el puntero del ratón sobre un marcador de cambios del documento, unaSugerencia muestra el autor y la fecha y hora en la que se ha efectuado el cambio. Si están activadas las Sugerencias extendidas, también se muestra el tipo de cambio y cualquier otro comentario adjunto." +msgstr "Cuando se coloca el puntero del ratón sobre un marcador de cambios del documento, una descripción emergente muestra el autor y la fecha y hora en la que se ha efectuado el cambio. Si están activadas las descripciones emergentes ampliadas, también se muestra el tipo de cambio y cualquier otro comentario adjunto." #. WQNSX #: 02230200.xhp @@ -22523,7 +22523,7 @@ "par_id3152360\n" "help.text" msgid "Click the border style that you want to apply. The style is applied to the borders selected in the preview." -msgstr "Pulse el estilo de borde que desee aplicar. El borde se aplica a los bordes seleccionados en la vista previa." +msgstr "Pulse el estilo de borde que desee aplicar. El borde se aplica a los bordes seleccionados en la previsualización." #. TDfwQ #: 05030500.xhp @@ -24953,7 +24953,7 @@ "par_id3149202\n" "help.text" msgid "Opens the Styles deck of the SidebarStyles deck of the Sidebar where you can select a character style for the ruby text." -msgstr "Abre la sección Estilos de la barra lateralEstilos de la barra lateral, en la que puede seleccionar un estilo de caracteres para el texto ágata." +msgstr "Abre el grupo Estilos de la barra lateralEstilos de la barra lateral, en el que puede seleccionar un estilo de caracteres para el texto ágata." #. MD7GR #: 05070000.xhp @@ -25520,7 +25520,7 @@ "par_id3154351\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Merge Cells. If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further." -msgstr "" +msgstr "O bien, pulse con el botón secundario del ratón sobre la selección para abrir el menú contextual y seleccione Combinar celdas. Si en su lugar ve Separar celdas, la selección contiene celdas combinadas que no pueden combinarse más." #. Fz6u9 #: 05100100.xhp @@ -29390,7 +29390,7 @@ "par_idN10709\n" "help.text" msgid "Wraps the text that you add after double-clicking a custom shape to fit inside the shape." -msgstr "Ajusta el texto que desea agregar después de hacer doble clic en una forma personalizada para que quepa dentro de la forma." +msgstr "Ajusta el texto que se añada después de pulsar dos veces en una forma personalizada de modo que quepa dentro de la forma." #. C9z8b #: 05220000.xhp @@ -32171,7 +32171,7 @@ "par_id3155388\n" "help.text" msgid "Scrolls text from top to bottom." -msgstr "Desplaza el texto de arriba a abajo." +msgstr "Desplaza el texto de arriba abajo." #. TGcQ5 #: 05320000.xhp @@ -32918,7 +32918,7 @@ "par_id3153194\n" "help.text" msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)." -msgstr "" +msgstr "Introduzca el ángulo de giro de 0 a 360 para el texto en las celdas seleccionadas." #. XJAyp #: 05340300.xhp @@ -34754,7 +34754,7 @@ "par_id3151056\n" "help.text" msgid "Displays a preview of the light source changes." -msgstr "Muestra una vista previa de los cambios en las fuentes de luz." +msgstr "Muestra una previsualización de los cambios en las fuentes de luz." #. uRKAW #: 05350500.xhp @@ -38939,7 +38939,7 @@ "par_idN106F8\n" "help.text" msgid "Press Esc to decline the word completion." -msgstr "Pulse Esc para que las palabras no se completen automáticamente." +msgstr "Presione Esc para que las palabras no se completen automáticamente." #. aZdst #: 06040600.xhp @@ -38984,7 +38984,7 @@ "hd_id3147265\n" "help.text" msgid "Word Completion list" -msgstr "Lista de palabras" +msgstr "Lista de compleción de palabras" #. uBqx9 #: 06040600.xhp @@ -40235,7 +40235,7 @@ "par_id6081728\n" "help.text" msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line." -msgstr "Ingrese la distancia desde el margen izquierdo de la página desde el cual inicia todas la líneas de un párrafo numerado a partir de la primera línea." +msgstr "Introduzca la distancia desde el margen izquierdo de la página hasta el comienzo de todos los renglones del párrafo numerado que siguen al primero." #. B9fGG #: 06050600.xhp @@ -46355,7 +46355,7 @@ "par_id3150789\n" "help.text" msgid "Opens the Gallery deck of the Sidebar, where you can select images and audio clips to insert into your document." -msgstr "Abre la sección «Galería» de la barra lateral, en la que puede seleccionar imágenes y sonidos para insertarlos en el documento." +msgstr "Abre el grupo Galería de la barra lateral, en el que puede seleccionar imágenes y sonidos para insertarlos en el documento." #. EWyc5 #: gallery.xhp @@ -47345,7 +47345,7 @@ "par_id10272015084124198\n" "help.text" msgid "The sidebar is docked on the right or left side of the document view area and contains a tab bar with tab buttons, that when clicked show a different tab deck." -msgstr "La barra lateral se encuentra acoplada en el lado derecho o izquierdo del área de visualización del documento y contiene una barra de pestañas cuyos botones muestran una sección distinta al ser pulsados." +msgstr "La barra lateral se encuentra acoplada en el lado derecho o izquierdo del área de visualización del documento y contiene una barra de pestañas cuyos botones muestran un grupo distinto al ser pulsados." #. EbTSQ #: menu_view_sidebar.xhp @@ -47930,7 +47930,7 @@ "par_id702230\n" "help.text" msgid "You can disable or enable the automatic check in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Puede habilitar o deshabilitar la actualización automática en %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME - Actualización en línea." +msgstr "Puede activar o desactivar la actualización automática en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Actualización en línea." #. AJBeB #: online_update.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -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 "Dibuja una línea que acaba en un cuadro de leyenda rectangular con dirección de texto horizontal desde el lugar del que se arrastra en el documento actual. Para cambiar el tamaño de la llamada arrastre una de sus manillas. Para agregar texto pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la manilla de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano." +msgstr "Dibuja una línea que acaba en un cuadro de leyenda rectangular, con dirección de escritura horizontal a partir del lugar del que se arrastra, en el documento actual. Para cambiar el tamaño de la llamada, arrastre una de sus agarraderas. Para añadir texto, pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la agarradera de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano." #. 3wvLq #: 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 "Dibuja una línea que acaba en un cuadro de llamada rectangular con dirección de escritura vertical desde el lugar del que se arrastra en el documento actual. Para cambiar el tamaño de la llamada arrastre una de sus manillas. Para agregar texto pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la manilla de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano. Sólo disponible cuando la compatibilidad con idiomas asiáticos está activada." +msgstr "Dibuja una línea que acaba en un cuadro de llamada rectangular, con dirección de escritura vertical a partir del lugar del que se arrastra, en el documento actual. Para cambiar el tamaño de la llamada, tire de una de sus agarraderas. Para añadir texto, pulse sobre el borde de la llamada y escriba o pegue el texto. Para cambiar una llamada rectangular por una redondeada, arrastre la agarradera de la esquina de mayor tamaño cuando el puntero adquiera la forma de una mano. La opción solo está disponible cuando se activa la compatibilidad con idiomas asiáticos." #. JJWjC #: 01140000.xhp @@ -1013,7 +1013,7 @@ "par_id3166428\n" "help.text" msgid "Creates a list box. A list box lets users select an entry from a list. If the form is linked to a database and the database connection is active, the List Box Wizard will automatically appear after the list box is inserted in the document. This wizard helps you create the list box." -msgstr "Crea un cuadro de lista. El cuadro de lista permite a los usuarios seleccionar una entrada de una lista. Si el formulario se enlaza con una base de datos y la conexión con la base está activa, aparecerá automáticamente el Asistente de cuadro de lista tras insertar el cuadro de lista en el documento. Este asistente le ayuda a configurar el cuadro." +msgstr "Crea un cuadro de lista. El cuadro de lista permite a los usuarios seleccionar una entrada de una lista. Si el formulario se enlaza con una base de datos y la conexión con la base está activa, aparecerá automáticamente el Asistente para cuadro de lista tras insertar el cuadro de lista en el documento. Este asistente le ayuda a configurar el cuadro." #. T6y5B #: 01170000.xhp @@ -1040,7 +1040,7 @@ "par_id3149407\n" "help.text" msgid "Creates a combo box. A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the Combo Box Wizard will automatically appear after you insert the combo box in the document." -msgstr "Crea un cuadro combinado. Un cuadro combinado es un listado de un solo renglón con una lista desplegable en la que los usuarios pueden elegir una opción. Puede asignar al cuadro combinado la propiedad «solo lectura» para que los usuarios no puedan escribir entradas distintas de las que aparecen en la lista. Si el formulario está relacionado con una base de datos y la conexión con ella está activa, el asistente de cuadros combinados se abre de forma automática después de insertar el cuadro combinado en el documento." +msgstr "Crea un cuadro combinado. Un cuadro combinado es un listado de un solo renglón con una lista desplegable en la que los usuarios pueden elegir una opción. Puede asignar al cuadro combinado la propiedad «solo lectura» para que los usuarios no puedan escribir entradas distintas de las que aparecen en la lista. Si el formulario está relacionado con una base de datos y la conexión con ella está activa, el asistente para cuadros combinados se abre de forma automática después de insertar el cuadro combinado en el documento." #. yDFji #: 01170000.xhp @@ -1706,7 +1706,7 @@ "par_id3148394\n" "help.text" msgid "If you insert a group frame into the document, the Group Element Wizard starts, which allows you to easily create an option group." -msgstr "Si se inserta un marco de grupo en el documento, se inicia el asistente de agrupación de elementos, que permite crear con facilidad un grupo de opciones." +msgstr "Si se inserta un marco de grupo en el documento, se inicia el asistente para agrupación de elementos, que permite crear con facilidad un grupo de opciones." #. YPpYV #: 01170000.xhp @@ -3821,7 +3821,7 @@ "par_id3153287\n" "help.text" msgid "For URL type buttons, the help text appears as the extended tip instead of the URL address entered under URL." -msgstr "" +msgstr "En el caso de los botones de tipo URL, el texto de ayuda aparece como la descripción emergente ampliada, en lugar de la dirección URL introducida en URL." #. 75FBj #: 01170101.xhp @@ -9896,7 +9896,7 @@ "bm_id3159233\n" "help.text" msgid "forms; Combo Box/List Box Wizard" -msgstr "formularios;Asistente de cuadro combinado / cuadro de lista" +msgstr "formularios;Asistente para cuadro combinado / cuadro de lista" #. ZvjMo #: 01170900.xhp @@ -11012,7 +11012,7 @@ "par_id3149827\n" "help.text" msgid "Text direction from top to bottom" -msgstr "Dirección de escritura de arriba a abajo" +msgstr "Dirección de escritura de arriba abajo" #. RBXPc #: 02130000.xhp @@ -12893,7 +12893,7 @@ "par_id3153683\n" "help.text" msgid "Opens the hyperlink in your default web browser." -msgstr "Abre el hipervínculo en su navegador Web predeterminado." +msgstr "Abre el hiperenlace en su navegador Web predeterminado." #. yM32z #: 09070000.xhp @@ -12920,7 +12920,7 @@ "par_id0122200902231630\n" "help.text" msgid "Removes the hyperlink, leaving plain text." -msgstr "Elimina el hipervínculo, dejando texto sin formato." +msgstr "Elimina el hiperenlace, dejando texto sin formato." #. uzB6R #: 09070000.xhp @@ -19211,7 +19211,7 @@ "par_id0514200804261097\n" "help.text" msgid "In Impress and Draw no dialog is shown when you click the icon, but you see eight cropping handles. Open the context menu of a selected picture and choose Crop Image, if you want to use the dialog for cropping." -msgstr "En Impress y Draw no se muestra ningún cuadro de diálogo al pulsar en el icono, sino que verá ocho manijas de recorte. Abra el menú contextual de la imagen y elija Recortar imagen si prefiere usar el cuadro de diálogo para recortar." +msgstr "En Impress y Draw no se muestra ningún cuadro de diálogo al pulsar en el icono, sino que verá ocho agarraderas de recorte. Abra el menú contextual de la imagen y elija Recortar imagen si prefiere usar el cuadro de diálogo para recortar." #. CSAFE #: 24100000.xhp @@ -19220,7 +19220,7 @@ "par_id0514200804261043\n" "help.text" msgid "Drag any of the eight cropping handles to crop the picture." -msgstr "Arrastre cualquiera de las ocho manijas para recortar la imagen." +msgstr "Arrastre cualquiera de las ocho agarraderas para recortar la imagen." #. SdwAf #: 24100000.xhp @@ -19283,7 +19283,7 @@ "par_idN10594\n" "help.text" msgid "Some shapes have a handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. dU82R #: blockarrows.xhp @@ -19328,7 +19328,7 @@ "par_idN1059D\n" "help.text" msgid "Some shapes have a special handle which you can drag to change properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. Ssw34 #: callouts.xhp @@ -19382,7 +19382,7 @@ "par_idN10597\n" "help.text" msgid "Some shapes have a special handle which you can drag to change properties of the shape. The mouse pointer changes to a hand symbol over these special handles." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. TMQDK #: colortoolbar.xhp @@ -19598,7 +19598,7 @@ "par_idN1057A\n" "help.text" msgid "First select some text or an object, then click this icon. Then click on or drag across other text or click an object to apply the same formatting." -msgstr "Primero seleccionar algún texto u objeto, luego dar clic en este icono. Luego para aplicar el mismo formato, dar un clic o arrastrar a través de otro texto o clic en otro objeto." +msgstr "Primero seleccione algún texto u objeto; luego, pulse en este icono. Acto seguido, para aplicar el mismo formato, pulse o arrastre sobre otro texto u objeto." #. FsDda #: paintbrush.xhp @@ -19769,7 +19769,7 @@ "par_idN10597\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." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. SNjA5 #: symbolshapes.xhp @@ -19814,7 +19814,7 @@ "par_idN1059D\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." -msgstr "Algunas formas cuentan con una manilla especial que puede arrastrar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas manillas especiales." +msgstr "Algunas formas cuentan con una agarradera especial que puede tirar para modificar las propiedades de la forma. El puntero del ratón se convierte en un símbolo de mano con estas agarraderas especiales." #. Ju4Wr #: symbolshapes.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/05.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/05.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/05.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/05.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -725,7 +725,7 @@ "tit\n" "help.text" msgid "Tips and Extended Tips" -msgstr "Consejos y consejos extendidos" +msgstr "Descripciones emergentes y descripciones ampliadas" #. YfEyC #: 00000120.xhp @@ -743,7 +743,7 @@ "hd_id3155599\n" "help.text" msgid "Tips and Extended Tips" -msgstr "Consejos y consejos extendidos" +msgstr "Descripciones emergentes y descripciones ampliadas" #. UWpFA #: 00000120.xhp @@ -752,7 +752,7 @@ "par_id3148520\n" "help.text" msgid "Tips and Extended Tips provide help while you work." -msgstr "Los consejos y los consejos extendidos le proporcionan ayuda mientras trabaja." +msgstr "Las descripciones emergentes y las versiones ampliadas de las mismas le proporcionan ayuda mientras trabaja." #. U4ku2 #: 00000120.xhp @@ -770,7 +770,7 @@ "par_id3157896\n" "help.text" msgid "Tips provide you with the names of toolbar buttons. To display a tip, rest the pointer over a toolbar button until the name of the button appears." -msgstr "" +msgstr "Las descripciones emergentes informan de los nombres de los botones de las barras de herramientas. Para mostrar una, deje el puntero del ratón sobre un botón hasta que aparezca el nombre de este." #. phMKm #: 00000120.xhp @@ -779,7 +779,7 @@ "par_id3153910\n" "help.text" msgid "Tips are also displayed for some elements in a document, such as chapter names when you scroll through a long document." -msgstr "" +msgstr "También se muestran descripciones emergentes para determinados elementos del documento, como los nombres de los capítulos, cuando se desplaza por un documento extenso." #. uGgBR #: 00000120.xhp @@ -806,7 +806,7 @@ "par_id3149346\n" "help.text" msgid "Extended Tips provide a brief description about buttons and commands. To display an extended tip, press Shift+F1, then point to a button or command." -msgstr "" +msgstr "Las descripciones emergentes ampliadas brindan información concisa sobre los botones y las órdenes. Para que se muestre una descripción amplada, presione Mayús + F1 y, a continuación, apunte con el ratón a un botón o a una orden." #. KZ5SB #: 00000120.xhp @@ -815,7 +815,7 @@ "par_idN10666\n" "help.text" msgid "If you always want extended tips instead of tips, enable the extended tips on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General." -msgstr "Si quiere usar los consejos extendidos en lugar de los normales, actívelos en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General." +msgstr "Si quiere usar las descripciones ampliadas en lugar de las normales, actívelas en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General." #. RXCzT #: 00000130.xhp @@ -1103,7 +1103,7 @@ "par_id3145345\n" "help.text" msgid "Double-clicking a bookmark or pressing the Return key opens the assigned page in Help. A right-click opens the context menu." -msgstr "" +msgstr "Pulsar dos veces sobre un marcador u oprimir la tecla Intro abrirá la página correspondiente de la Ayuda. Para abrir un menú contextual, pulse con el botón secundario del ratón." #. qqCBe #: 00000150.xhp @@ -1148,7 +1148,7 @@ "par_id3153087\n" "help.text" msgid "Delete - deletes the selected bookmark." -msgstr "" +msgstr "Eliminar: suprime el marcador seleccionado." #. VqaZD #: 00000160.xhp @@ -1238,7 +1238,7 @@ "par_id3152909\n" "help.text" msgid "Double-click a document icon to display the corresponding Help page." -msgstr "Pulse dos veces el símbolo de un documento para abrir la página de ayuda correspondiente." +msgstr "Pulse dos veces en el icono de un documento para abrir la página de ayuda correspondiente." #. yFLEy #: 00000160.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2022-07-15 19:12:51.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 18:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -104,7 +104,7 @@ "tit\n" "help.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. PFxuA #: 01010000.xhp @@ -113,7 +113,7 @@ "bm_id3151100\n" "help.text" msgid "wizards; lettersLetter Wizardtemplates;letters" -msgstr "asistentes; cartasAsistente de cartasplantillas;cartas" +msgstr "asistentes; cartasAsistente para cartasplantillas;cartas" #. 96DDV #: 01010000.xhp @@ -122,7 +122,7 @@ "hd_id3151100\n" "help.text" msgid "Letter Wizard" -msgstr "Asistente de cartas" +msgstr "Asistente para cartas" #. 6BFCi #: 01010000.xhp @@ -230,7 +230,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Page design" -msgstr "Asistente de cartas. Diseño de página" +msgstr "Asistente para cartas. Diseño de página" #. HhQdD #: 01010100.xhp @@ -239,7 +239,7 @@ "hd_id3147102\n" "help.text" msgid "Letter Wizard - Page design" -msgstr "Asistente de cartas. Diseño de página" +msgstr "Asistente para cartas. Diseño de página" #. jBVzZ #: 01010100.xhp @@ -365,7 +365,7 @@ "par_id3150254\n" "help.text" msgid "Go to Letter Wizard - Letterhead layout" -msgstr "Avanzar a Asistente de cartas ▸ Disposición de membrete" +msgstr "Avanzar a Asistente para cartas ▸ Disposición de membrete" #. ma7Nd #: 01010200.xhp @@ -374,7 +374,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Letterhead layout" -msgstr "Asistente de cartas. Disposición de membrete" +msgstr "Asistente para cartas. Disposición de membrete" #. Amg7R #: 01010200.xhp @@ -383,7 +383,7 @@ "hd_id3155354\n" "help.text" msgid "Letter Wizard - Letterhead layout" -msgstr "Asistente de cartas. Disposición de membrete" +msgstr "Asistente para cartas. Disposición de membrete" #. 9ZLVJ #: 01010200.xhp @@ -572,7 +572,7 @@ "par_id3153367\n" "help.text" msgid "Go to Letter Wizard - Printed items" -msgstr "Avanzar a Asistente de cartas ▸ Elementos impresos" +msgstr "Avanzar a Asistente para cartas ▸ Elementos impresos" #. hPVFU #: 01010300.xhp @@ -581,7 +581,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Printed items" -msgstr "Asistente de cartas. Elementos impresos" +msgstr "Asistente para cartas. Elementos impresos" #. Syz7w #: 01010300.xhp @@ -590,7 +590,7 @@ "hd_id3148520\n" "help.text" msgid "Letter Wizard - Printed items" -msgstr "Asistente de cartas: elementos impresos" +msgstr "Asistente para cartas: elementos impresos" #. wnxmZ #: 01010300.xhp @@ -752,7 +752,7 @@ "par_id3149666\n" "help.text" msgid "Go to Letter Wizard - Recipient and sender" -msgstr "Avanzar a Asistente de cartas ▸ Destinatario y remitente" +msgstr "Avanzar a Asistente para cartas ▸ Destinatario y remitente" #. EYFFV #: 01010400.xhp @@ -761,7 +761,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Recipient and sender" -msgstr "Asistente de cartas. Destinatario y remitente" +msgstr "Asistente para cartas. Destinatario y remitente" #. Fg4tq #: 01010400.xhp @@ -770,7 +770,7 @@ "hd_id3154288\n" "help.text" msgid "Letter Wizard - Recipient and sender" -msgstr "Asistente de cartas. Destinatario y remitente" +msgstr "Asistente para cartas. Destinatario y remitente" #. ZFzrE #: 01010400.xhp @@ -950,7 +950,7 @@ "par_id3154365\n" "help.text" msgid "Go to Letter Wizard - Footer" -msgstr "Avanzar a Asistente de cartas ▸ Pie" +msgstr "Avanzar a Asistente para cartas ▸ Pie" #. P7eTT #: 01010500.xhp @@ -959,7 +959,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Footer" -msgstr "Asistente de cartas. Pie" +msgstr "Asistente para cartas. Pie" #. WCeEp #: 01010500.xhp @@ -968,7 +968,7 @@ "hd_id3143281\n" "help.text" msgid "Letter Wizard - Footer" -msgstr "Asistente de cartas. Pie" +msgstr "Asistente para cartas. Pie" #. kNGXK #: 01010500.xhp @@ -1040,7 +1040,7 @@ "par_id3154988\n" "help.text" msgid "Go to Letter Wizard - Name and location" -msgstr "Avanzar a Asistente de cartas ▸ Nombre y ubicación" +msgstr "Avanzar a Asistente para cartas ▸ Nombre y ubicación" #. sbinu #: 01010600.xhp @@ -1049,7 +1049,7 @@ "tit\n" "help.text" msgid "Letter Wizard - Name and Location" -msgstr "Asistente de cartas: nombre y ubicación" +msgstr "Asistente para cartas: nombre y ubicación" #. EtxLp #: 01010600.xhp @@ -1058,7 +1058,7 @@ "hd_id3150355\n" "help.text" msgid "Letter Wizard - Name and Location" -msgstr "Asistente de cartas: nombre y ubicación" +msgstr "Asistente para cartas: nombre y ubicación" #. Bf2pC #: 01010600.xhp @@ -1148,7 +1148,7 @@ "par_idN10665\n" "help.text" msgid "Letter Wizard overview" -msgstr "Información general sobre el Asistente de cartas" +msgstr "Información general sobre el Asistente para cartas" #. Fdhin #: 01020000.xhp @@ -1157,7 +1157,7 @@ "tit\n" "help.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. Le26A #: 01020000.xhp @@ -1175,7 +1175,7 @@ "hd_id3150445\n" "help.text" msgid "Fax Wizard" -msgstr "Asistente de faxes" +msgstr "Asistente para faxes" #. mZvnG #: 01020000.xhp @@ -1184,7 +1184,7 @@ "par_id3153394\n" "help.text" msgid "Opens the wizard for faxes. The wizard can help you create document templates for fax documents. You can then print the fax documents to a printer or to a fax machine, if fax driver software is available. " -msgstr "Abre el Asistente de faxes. El asistente ayuda a crear plantillas de documento para faxes. Luego podrá imprimir los faxes o, si dispone de una máquina de fax con su controlador, enviarlos directamente a través de él." +msgstr "Abre el Asistente para faxes. El asistente ayuda a crear plantillas de documento para faxes. Luego podrá imprimir los faxes o, si dispone de una máquina de fax con su controlador, enviarlos directamente a través de él." #. TiVAB #: 01020000.xhp @@ -1265,7 +1265,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Page Design" -msgstr "Asistente de faxes: diseño de página" +msgstr "Asistente para faxes: diseño de página" #. PxSiA #: 01020100.xhp @@ -1274,7 +1274,7 @@ "hd_id3109850\n" "help.text" msgid "Fax Wizard - Page Design" -msgstr "Asistente de faxes: diseño de página" +msgstr "Asistente para faxes. Diseño de página" #. hNAfN #: 01020100.xhp @@ -1373,7 +1373,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Items to include" -msgstr "Asistente de faxes: elementos que incluir" +msgstr "Asistente para faxes. Elementos que incluir" #. 4nzcG #: 01020200.xhp @@ -1382,7 +1382,7 @@ "hd_id3157898\n" "help.text" msgid "Fax Wizard - Items to include" -msgstr "Asistente de faxes: elementos que incluir" +msgstr "Asistente para faxes. Elementos que incluir" #. gA627 #: 01020200.xhp @@ -1526,7 +1526,7 @@ "par_id3148491\n" "help.text" msgid "Go to Fax Wizard - Sender and Recipient" -msgstr "Ir a Asistente de faxes. Remitente y destinatario" +msgstr "Ir a Asistente para faxes. Remitente y destinatario" #. KqE4C #: 01020300.xhp @@ -1535,7 +1535,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Sender and Recipient" -msgstr "Asistente de faxes. Remitente y destinatario" +msgstr "Asistente para faxes. Remitente y destinatario" #. DFEty #: 01020300.xhp @@ -1544,7 +1544,7 @@ "hd_id3155934\n" "help.text" msgid "Fax Wizard - Sender and Recipient" -msgstr "Asistente de faxes. Remitente y destinatario" +msgstr "Asistente para faxes. Remitente y destinatario" #. 9wCnR #: 01020300.xhp @@ -1661,7 +1661,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Footer" -msgstr "Asistente de faxes: pie de página" +msgstr "Asistente para faxes: pie de página" #. GBKcG #: 01020400.xhp @@ -1670,7 +1670,7 @@ "hd_id3147143\n" "help.text" msgid "Fax Wizard - Footer" -msgstr "Asistente de faxes: pie de página" +msgstr "Asistente para faxes: pie de página" #. moG7a #: 01020400.xhp @@ -1751,7 +1751,7 @@ "tit\n" "help.text" msgid "Fax Wizard - Name and location" -msgstr "Asistente de faxes: nombre y ubicación" +msgstr "Asistente para faxes: nombre y ubicación" #. 4u9br #: 01020500.xhp @@ -1760,7 +1760,7 @@ "hd_id3150247\n" "help.text" msgid "Fax Wizard - Name and location" -msgstr "Asistente de faxes: nombre y ubicación" +msgstr "Asistente para faxes: nombre y ubicación" #. 9MJNj #: 01020500.xhp @@ -1859,7 +1859,7 @@ "tit\n" "help.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. D3wGn #: 01040000.xhp @@ -1868,7 +1868,7 @@ "bm_id3149031\n" "help.text" msgid "wizards;agendasAgenda Wizardtemplates;agendas" -msgstr "asistentes;órdenes del díaAsistente de órdenes del díaplantillas;órdenes del día" +msgstr "asistentes;órdenes del díaAsistente para órdenes del díaplantillas;órdenes del día" #. s5qJR #: 01040000.xhp @@ -1877,7 +1877,7 @@ "hd_id3149031\n" "help.text" msgid "Agenda Wizard" -msgstr "Asistente de órdenes del día" +msgstr "Asistente para órdenes del día" #. rVtcF #: 01040000.xhp @@ -1886,7 +1886,7 @@ "par_id3147102\n" "help.text" msgid "Starts the wizard to help you create an agenda template. You can use an agenda to specify discussion topics for conferences and meetings." -msgstr "Inicia el asistente de creación de plantillas para órdenes del día. Puede utilizar las órdenes del día para especificar los temas que se debatirán en conferencias y reuniones." +msgstr "Inicia el asistente para creación de plantillas para órdenes del día. Puede utilizar las órdenes del día para especificar los temas que se debatirán en conferencias y reuniones." #. HJ9w2 #: 01040000.xhp @@ -1976,7 +1976,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Asistente de órdenes del día: diseño de página" +msgstr "Asistente para órdenes del día: diseño de página" #. bBzNB #: 01040100.xhp @@ -1985,7 +1985,7 @@ "hd_id3151100\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Asistente de órdenes del día: diseño de página" +msgstr "Asistente para órdenes del día: diseño de página" #. fPTHx #: 01040100.xhp @@ -2039,7 +2039,7 @@ "par_id3153087\n" "help.text" msgid "Go to Agenda Wizard - General information" -msgstr "Vaya al Asistente de órdenes del día ▸ Información general" +msgstr "Vaya al Asistente para órdenes del día ▸ Información general" #. WGmzy #: 01040200.xhp @@ -2048,7 +2048,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Asistente de órdenes del día: información general" +msgstr "Asistente para órdenes del día: información general" #. d4naA #: 01040200.xhp @@ -2057,7 +2057,7 @@ "hd_id3150247\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Asistente de órdenes del día: información general" +msgstr "Asistente para órdenes del día: información general" #. eLECH #: 01040200.xhp @@ -2147,7 +2147,7 @@ "par_id3148946\n" "help.text" msgid "Go to Agenda Wizard - Headings to include" -msgstr "Vaya al Asistente de órdenes del día ▸ Títulos que incluir" +msgstr "Vaya al Asistente para órdenes del día ▸ Títulos que incluir" #. Q5JDB #: 01040300.xhp @@ -2156,7 +2156,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Asistente de órdenes del día: títulos que incluir" +msgstr "Asistente para órdenes del día: títulos que incluir" #. ipAGt #: 01040300.xhp @@ -2165,7 +2165,7 @@ "hd_id3109850\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Asistente de órdenes del día: títulos que incluir" +msgstr "Asistente para órdenes del día: títulos que incluir" #. yBn6A #: 01040300.xhp @@ -2255,7 +2255,7 @@ "par_id3163802\n" "help.text" msgid "Go to Agenda Wizard - Names" -msgstr "Vaya al Asistente de órdenes del día ▸ Nombres" +msgstr "Vaya al Asistente para órdenes del día ▸ Nombres" #. zECC7 #: 01040400.xhp @@ -2264,7 +2264,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Asistente de órdenes del día: nombres" +msgstr "Asistente para órdenes del día: nombres" #. FmZNr #: 01040400.xhp @@ -2273,7 +2273,7 @@ "hd_id3143284\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Asistente de órdenes del día: nombres" +msgstr "Asistente para órdenes del día: nombres" #. emLhT #: 01040400.xhp @@ -2417,7 +2417,7 @@ "par_id3150275\n" "help.text" msgid "Go to Agenda Wizard - Agenda Items" -msgstr "Vaya al Asistente de órdenes del día ▸ Temas del orden del día" +msgstr "Vaya al Asistente para órdenes del día ▸ Temas del orden del día" #. STCc4 #: 01040500.xhp @@ -2426,7 +2426,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Asistente de órdenes del día: temas del orden del día" +msgstr "Asistente para órdenes del día: temas del orden del día" #. Gj4D2 #: 01040500.xhp @@ -2435,7 +2435,7 @@ "hd_id3159224\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Asistente de órdenes del día: temas del orden del día" +msgstr "Asistente para órdenes del día: temas del orden del día" #. BDRvF #: 01040500.xhp @@ -2543,7 +2543,7 @@ "par_id3146798\n" "help.text" msgid "Go to Agenda Wizard - Name and location" -msgstr "Vaya al Asistente de órdenes del día ▸ Nombre y ubicación" +msgstr "Vaya al Asistente para órdenes del día ▸ Nombre y ubicación" #. H9Wbq #: 01040600.xhp @@ -2552,7 +2552,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Asistente de órdenes del día: nombre y ubicación" +msgstr "Asistente para órdenes del día: nombre y ubicación" #. VcrH9 #: 01040600.xhp @@ -2561,7 +2561,7 @@ "hd_id3144740\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Asistente de órdenes del día: nombre y ubicación" +msgstr "Asistente para órdenes del día: nombre y ubicación" #. viGf3 #: 01040600.xhp @@ -2651,7 +2651,7 @@ "par_idN105F6\n" "help.text" msgid "Go to Agenda Wizard" -msgstr "Vaya al Asistente de órdenes del día" +msgstr "Vaya al Asistente para órdenes del día" #. 4DsCG #: 01090000.xhp @@ -2660,7 +2660,7 @@ "tit\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. XGnsy #: 01090000.xhp @@ -2678,7 +2678,7 @@ "hd_id3109850\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. xPnbC #: 01090000.xhp @@ -2714,7 +2714,7 @@ "tit\n" "help.text" msgid "Form Wizard - Field Selection" -msgstr "Asistente de formularios: selección de campos" +msgstr "Asistente para formularios: selección de campos" #. vKHEZ #: 01090100.xhp @@ -2723,7 +2723,7 @@ "hd_id3155599\n" "help.text" msgid "Form Wizard - Field Selection" -msgstr "Asistente de formularios: selección de campos" +msgstr "Asistente para formularios: selección de campos" #. q2PHa #: 01090100.xhp @@ -2732,7 +2732,7 @@ "par_id3150445\n" "help.text" msgid "On this page of the Form Wizard, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form." -msgstr "En esta página del Asistente de formularios puede especificar la tabla o consulta que debe crear el formulario, así como los campos que este debe tener." +msgstr "En esta página del Asistente para formularios puede especificar la tabla o consulta que debe crear el formulario, así como los campos que este debe tener." #. yohes #: 01090100.xhp @@ -3263,7 +3263,7 @@ "par_idN105F8\n" "help.text" msgid "Form Wizard - Arrange controls" -msgstr "Asistente de formularios ▸ Organizar controles" +msgstr "Asistente para formularios ▸ Organizar controles" #. oKc93 #: 01090300.xhp @@ -3641,7 +3641,7 @@ "tit\n" "help.text" msgid "Form Wizard - Apply Styles" -msgstr "Asistente de formularios: aplicar estilos" +msgstr "Asistente para formularios: aplicar estilos" #. r5BGE #: 01090500.xhp @@ -3650,7 +3650,7 @@ "par_idN10543\n" "help.text" msgid "Form Wizard - Apply Styles" -msgstr "Asistente de formularios: aplicar estilos" +msgstr "Asistente para formularios: aplicar estilos" #. gfLGt #: 01090500.xhp @@ -3758,7 +3758,7 @@ "par_idN10579\n" "help.text" msgid "Form Wizard - Set name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. kFiaa #: 01090600.xhp @@ -3767,7 +3767,7 @@ "tit\n" "help.text" msgid "Form Wizard - Set Name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. 83jJk #: 01090600.xhp @@ -3776,7 +3776,7 @@ "par_idN10543\n" "help.text" msgid "Form Wizard - Set Name" -msgstr "Asistente de formularios. Establecer nombre" +msgstr "Asistente para formularios. Establecer nombre" #. kuq7q #: 01090600.xhp @@ -3848,7 +3848,7 @@ "par_idN10569\n" "help.text" msgid "Form Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. 9GEmD #: 01100000.xhp @@ -3857,7 +3857,7 @@ "tit\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. Ljpsw #: 01100000.xhp @@ -3866,7 +3866,7 @@ "hd_id3150499\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. Wxizv #: 01100000.xhp @@ -3875,7 +3875,7 @@ "par_id3145071\n" "help.text" msgid "Activates the wizard for creating reports." -msgstr "Activa el asistente de creación de informes." +msgstr "Activa el asistente para creación de informes." #. JBzBF #: 01100000.xhp @@ -4217,7 +4217,7 @@ "tit\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Asistente para informe - Opciones de ordenación" +msgstr "Asistente para informes. Opciones de clasificación" #. 5icZB #: 01100300.xhp @@ -4226,7 +4226,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Asistente para informes - Opciones de ordenación" +msgstr "Asistente para informes. Opciones de clasificación" #. RSArv #: 01100300.xhp @@ -4325,7 +4325,7 @@ "tit\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Asistente de informes: elija una disposición" +msgstr "Asistente para informes: elija una disposición" #. GCkoV #: 01100400.xhp @@ -4334,7 +4334,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Asistente de informes: elija una disposición" +msgstr "Asistente para informes: elija una disposición" #. aPVFq #: 01100400.xhp @@ -4442,7 +4442,7 @@ "par_id3148491\n" "help.text" msgid "More about Report Wizard - Create Report" -msgstr "Más acerca de Asistente de informes - Crear informe" +msgstr "Más acerca de Asistente para informes - Crear informe" #. KwNon #: 01100500.xhp @@ -4451,7 +4451,7 @@ "tit\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Asistente de informes: crear informe" +msgstr "Asistente para informes: crear informe" #. gKZbX #: 01100500.xhp @@ -4460,7 +4460,7 @@ "hd_id3156211\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Asistente de informes: crear informe" +msgstr "Asistente para informes: crear informe" #. G5N3i #: 01100500.xhp @@ -5315,7 +5315,7 @@ "par_id3148432\n" "help.text" msgid "In the second page of the HTML Export, select WebCast as the publication type." -msgstr "Elija en la segunda página del asistente de exportación a HTML WebCast como tipo de publicación." +msgstr "Elija en la segunda página del asistente para exportación a HTML WebCast como tipo de publicación." #. Fd3Tc #: 01110200.xhp @@ -6629,7 +6629,7 @@ "par_id3156410\n" "help.text" msgid "The Document Converter Wizard contains the following pages:" -msgstr "El Asistente de conversión de documentos contiene las páginas siguientes:" +msgstr "El Asistente para conversión de documentos contiene las páginas siguientes:" #. 9CQNJ #: 01130000.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 "Aquí puede regresar a la página principal del Asistente de conversión de documentos." +msgstr "Aquí puede regresar a la página principal del Asistente para conversión de documentos." #. ELq8D #: 01150000.xhp @@ -6980,7 +6980,7 @@ "tit\n" "help.text" msgid "Euro Converter Wizard" -msgstr "Asistente de conversión de euros" +msgstr "Asistente para conversión de euros" #. EKHAB #: 01150000.xhp @@ -6989,7 +6989,7 @@ "bm_id3154840\n" "help.text" msgid "Euro; Euro Converter Wizardwizards; Euro Converterconverters; Euro convertercurrencies; converters" -msgstr "euro;Asistente de conversión de eurosasistentes;Conversor de eurosconversores;Conversor de eurosmonedas;conversores" +msgstr "euro;Asistente para conversión de eurosasistentes;Conversor de eurosconversores;Conversor de eurosmonedas;conversores" #. ERtPD #: 01150000.xhp @@ -6998,7 +6998,7 @@ "hd_id3154840\n" "help.text" msgid "Euro Converter Wizard" -msgstr "Asistente de conversión de euros" +msgstr "Asistente para conversión de euros" #. uwNbS #: 01150000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-01-20 17:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550598512.000000\n" #. kyYMn @@ -1886,7 +1886,7 @@ "par_id7588732\n" "help.text" msgid "In the Groups box, open the Group Header list box and select to show a group header." -msgstr "En la sección Agrupar, abra el Encabezado de grupo y marque mostrar encabezado de grupo." +msgstr "En el apartado Grupos, abra el cuadro de lista Cabecera de grupo y seleccione que se muestre este elemento mencionado." #. AAvAB #: rep_main.xhp @@ -2120,7 +2120,7 @@ "par_id1565904\n" "help.text" msgid "In the initial value enter 0." -msgstr "Como valor inicial ingrese 0." +msgstr "Como valor inicial introduzca 0." #. RkdrZ #: rep_navigator.xhp @@ -2741,7 +2741,7 @@ "par_id5833307\n" "help.text" msgid "Select to show or hide the Group Header." -msgstr "Seleccione mostrar u ocultar el encabezado de grupo." +msgstr "Seleccione esta opción para mostrar u ocultar la cabecera de grupo." #. tN76n #: rep_sort.xhp @@ -2750,7 +2750,7 @@ "par_id7726676\n" "help.text" msgid "Select to show or hide the Group Footer." -msgstr "Seleccione mostrar u ocultar el pie de página del grupo." +msgstr "Seleccione esta opción para mostrar u ocultar el pie de grupo." #. Ez4dt #: rep_sort.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -275,7 +275,7 @@ "tit\n" "help.text" msgid "Turning Extended Tips On and Off" -msgstr "Activar o desactivar la ayuda emergente" +msgstr "Activar o desactivar las descripciones emergentes ampliadas" #. 2AGQZ #: active_help_on_off.xhp @@ -293,7 +293,7 @@ "hd_id3156414\n" "help.text" msgid "Turning Extended Tips On and Off" -msgstr "Activar y desactivar la ayuda emergente" +msgstr "Activar y desactivar las descripciones emergentes ampliadas" #. Q57zF #: active_help_on_off.xhp @@ -329,7 +329,7 @@ "par_id3149398\n" "help.text" msgid "A check mark indicates that the extended tips are activated." -msgstr "Una marca de verificación indica que la ayuda emergente está activada." +msgstr "Una marca de comprobación indica que las descripciones emergentes ampliadas están activadas." #. KaXUm #: active_help_on_off.xhp @@ -2048,7 +2048,7 @@ "par_id7549363\n" "help.text" msgid "You see a chart preview and the Chart Wizard." -msgstr "Verá una previsualización del gráfico y el Asistente de gráficos." +msgstr "Verá una previsualización del gráfico y el Asistente para gráficos." #. 5yB5v #: chart_insert.xhp @@ -2057,7 +2057,7 @@ "par_id9091769\n" "help.text" msgid "Follow the instructions in the Chart Wizard to create the chart." -msgstr "Siga las instrucciones del Asistente de gráficos para crear el gráfico." +msgstr "Siga las instrucciones del Asistente para gráficos para crear el gráfico." #. beBWD #: chart_insert.xhp @@ -2102,7 +2102,7 @@ "par_id6171452\n" "help.text" msgid "You see a chart preview and the Chart Wizard." -msgstr "Verá una previsualización del gráfico y el Asistente de gráficos." +msgstr "Verá una previsualización del gráfico y el Asistente para gráficos." #. E525o #: chart_insert.xhp @@ -2111,7 +2111,7 @@ "par_id3145419\n" "help.text" msgid "Follow the instructions in the Chart Wizard to create the chart." -msgstr "Siga las instrucciones del Asistente de gráficos para crear el gráfico." +msgstr "Siga las instrucciones del Asistente para gráficos para crear el gráfico." #. jP5b5 #: chart_insert.xhp @@ -2606,7 +2606,7 @@ "hd_id030820161747134459\n" "help.text" msgid "Customizing classification levels." -msgstr "" +msgstr "Personalizar los niveles de clasificación" #. DCBYu #: classification.xhp @@ -2615,7 +2615,7 @@ "bm_id030820161851045883\n" "help.text" msgid "custom;classification levels classification levels;customizing" -msgstr "" +msgstr "personalizados;niveles de clasificación niveles de clasificación;personalizar" #. 3wmPg #: classification.xhp @@ -2633,7 +2633,7 @@ "par_id03082016174713477\n" "help.text" msgid "Use the file with your %PRODUCTNAME locale in the name as example." -msgstr "" +msgstr "Utilice como punto de partida el archivo que corresponda con la configuración regional de %PRODUCTNAME." #. YhBEK #: classification.xhp @@ -2642,7 +2642,7 @@ "par_id030820161747137522\n" "help.text" msgid "Save the file and make the adequate changes to the classification path above to access the file." -msgstr "" +msgstr "Guarde el archivo y realice las modificaciones adecuadas a la ruta de clasificación anterior para acceder al archivo." #. kzkkC #: classification.xhp @@ -2651,7 +2651,7 @@ "par_id030820161747135133\n" "help.text" msgid "Your system administrator can place the file in a network folder and make all users access the classification settings file." -msgstr "" +msgstr "Su administrador de sistemas puede colocar el archivo de configuración de clasificación en una carpeta de la red para que todos los usuarios puedan acceder a él." #. AnzFS #: classification.xhp @@ -2660,7 +2660,7 @@ "hd_id03082016174713354\n" "help.text" msgid "Pasting contents in documents with different levels of classification." -msgstr "" +msgstr "Pegar contenido en documentos con niveles distintos de clasificación" #. z5iqF #: classification.xhp @@ -2669,7 +2669,7 @@ "bm_id030820161851512902\n" "help.text" msgid "document classification;pasting contents" -msgstr "" +msgstr "clasificación de documentos;pegado de contenido" #. KSkfc #: classification.xhp @@ -2678,7 +2678,7 @@ "par_id030820161747134188\n" "help.text" msgid "To prevent a breach in the security policy, contents with high classification level pasted to documents with lower classification level are not allowed. %PRODUCTNAME will display a warning message wherever it detects that the contents of the clipboard have higher security classification than the target document." -msgstr "" +msgstr "Para evitar violaciones a la normativa de seguridad, no se permite pegar contenidos con niveles de clasificación elevados en documentos con niveles de clasificación inferiores. %PRODUCTNAME mostrará una alerta siempre que detecte que el contenido del portapapeles tiene una clasificación de seguridad más elevada que la del documento de destino." #. GCqDL #: classification.xhp @@ -2687,7 +2687,7 @@ "par_id030820161818081317\n" "help.text" msgid "TSCP (Transglobal Secure Collaboration Participation, Inc.) website." -msgstr "" +msgstr "Sitio web de TSCP (Transglobal Secure Collaboration Participation, Inc.) (en inglés)." #. gpp8Q #: classification.xhp @@ -2696,7 +2696,7 @@ "par_id030820161818082152\n" "help.text" msgid "Business Authentication Framework (BAF) document (PDF)" -msgstr "" +msgstr "Documento sobre el Marco de Autenticación Empresarial (BAF) (PDF, en inglés)" #. svkxK #: classification.xhp @@ -2705,7 +2705,7 @@ "par_id030820161818085901\n" "help.text" msgid "Business Authorization Identification and Labeling Scheme (BAILS) document (PDF)" -msgstr "" +msgstr "Documento sobre el Esquema de Identificación y Etiquetado de Autorizaciones Empresariales (BAILS) (PDF, en inglés)" #. TT796 #: cmis-remote-files-setup.xhp @@ -3497,7 +3497,7 @@ "par_id2519913\n" "help.text" msgid "Enable to share the current document with other users. Disable to use the document unshared. This will invalidate the not yet saved edits that other users applied in the time since you last opened or saved this document." -msgstr "Habilitar para compartir el documento actual con otros usuarios. Inhabilitar para usar el documento no compartido. Esto invalidará las ediciones aún no guardadas por otros usuarios, aplicado desde la última vez que se abrió o se guardado este documento." +msgstr "Active esta opción para compartir el documento actual con otras personas. Desactívela para utilizar el documento sin compartirlo. Se anularán todas aquellas ediciones aún no guardadas que otros hayan hecho desde el momento en que Ud. abrió o guardó el documento por última vez." #. yLhB5 #: collab.xhp @@ -3794,7 +3794,7 @@ "par_id2675862\n" "help.text" msgid "For all modules Writer, Impress, Draw, and for Calc when document sharing is not enabled, a file locking is possible. This file locking is available even when accessing the same document from different operating systems:" -msgstr "Para todos los módulos de Writer, Impress, Draw y Calc cuando el documento compartido no esta habilitado, un bloqueo de archivo es posible. Este bloqueo de archivo esta habilitado incluso cuando el acceso al mismo documento se hace desde diferentes sistemas operativos:" +msgstr "En Writer, Impress, Draw y Calc (este último, cuando no se activa la compartición de documentos), es posible efectuar bloqueos de archivos. Este bloqueo estará disponible incluso si se accede al mismo documento desde sistemas operativos diferentes:" #. 2AFCR #: collab.xhp @@ -4334,7 +4334,7 @@ "FilterName_writer_MIZI_Hwp_97\n" "help.text" msgid "Hangul WP 97" -msgstr "" +msgstr "Hangul WP 97" #. zZWv7 #: convertfilters.xhp @@ -4910,7 +4910,7 @@ "FilterName_Microsoft_Multiplan\n" "help.text" msgid "Microsoft Multiplan" -msgstr "" +msgstr "Microsoft Multiplan" #. EGUxE #: convertfilters.xhp @@ -6728,7 +6728,7 @@ "par_id3147008\n" "help.text" msgid "To call the Address Data Source wizard, choose File - Wizards - Address Data Source." -msgstr "Para ejecutar el Asistente de origen de datos de direcciones, seleccione Archivo ▸ Asistentes ▸ Origen de datos de direcciones." +msgstr "Para ejecutar el Asistente para origen de datos de direcciones, seleccione Archivo ▸ Asistentes ▸ Origen de datos de direcciones." #. KtvnA #: data_addressbook.xhp @@ -6764,7 +6764,7 @@ "par_id3149669\n" "help.text" msgid "If you have not yet registered the system address book in %PRODUCTNAME as the data source, click the Address Data Source ... button. This takes you to the Address Book Data Source Wizard, in which you can register your address book as a new data source in %PRODUCTNAME." -msgstr "Si todavía no ha registrado la libreta de direcciones del sistema en %PRODUCTNAME como origen de datos, pulse en el botón Origen de datos de direcciones. De esta forma, se accede al Asistente de Origen de datos de libreta de direcciones, para poder registrar la libreta de direcciones como nuevo origen de datos en %PRODUCTNAME." +msgstr "Si todavía no ha registrado la libreta de direcciones del sistema en %PRODUCTNAME como origen de datos, pulse en el botón Origen de datos de direcciones. De esta forma, se accede al Asistente para Origen de datos de libreta de direcciones, para poder registrar la libreta de direcciones como nuevo origen de datos en %PRODUCTNAME." #. otNu9 #: data_addressbook.xhp @@ -7502,7 +7502,7 @@ "par_idN105DD\n" "help.text" msgid "In the Database Wizard, select the type of database, and select the option to open the Table Wizard as the next wizard." -msgstr "En el Asistente de bases de datos, seleccione el tipo de base de datos y marque la opción para abrir el Asistente de tablas como el próximo asistente." +msgstr "En el Asistente para bases de datos, seleccione el tipo de base de datos y marque la opción para abrir el Asistente para tablas como el próximo asistente." #. wiuwa #: data_new.xhp @@ -7808,7 +7808,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 "Estos enlaces se añaden automáticamente cuando crea un informe nuevo mediante el Asistente de informes o el Generador de informes." +msgstr "Estos enlaces se añaden automáticamente cuando crea un informe nuevo mediante el Asistente para informes o el Generador de informes." #. rECmE #: data_report.xhp @@ -7862,7 +7862,7 @@ "hd_id3153104\n" "help.text" msgid "Editing a Report Created by the Report Wizard" -msgstr "Editar un informe creado por el Asistente de informes" +msgstr "Editar un informe creado por el Asistente para informes" #. PcBjS #: data_report.xhp @@ -7925,7 +7925,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 "Un informe es un documento de texto de Writer en el cual se muestran los datos organizados con formato y orden. En %PRODUCTNAME Base tiene la opción de crear un informe manualmente mediante la técnica de arrastrar y colocar en la ventana del Generador de informes, o semiautomáticamente utilizando el Asistente de informes." +msgstr "Un informe es un documento de texto de Writer en el cual se muestran los datos organizados con formato y orden. En %PRODUCTNAME Base tiene la opción de crear un informe manualmente mediante la técnica de arrastrar y colocar en la ventana del Generador de informes, o semiautomáticamente utilizando el Asistente para informes." #. G4j7Y #: data_reports.xhp @@ -7952,7 +7952,7 @@ "par_id9764091\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. GjNKw #: data_reports.xhp @@ -8132,7 +8132,7 @@ "par_idN105C4\n" "help.text" msgid "Creating a New Report With the Report Wizard" -msgstr "Crear un informe con el Asistente de informes" +msgstr "Crear un informe con el Asistente para informes" #. XSaQ9 #: data_reports.xhp @@ -8168,7 +8168,7 @@ "par_id8032166\n" "help.text" msgid "Follow the steps of the Report Wizard to create the report." -msgstr "Siga los pasos del Asistente de Informes para crear un informe." +msgstr "Siga los pasos del Asistente para Informes para crear un informe." #. TKDmA #: data_search.xhp @@ -8933,7 +8933,7 @@ "par_idN1078F\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. x7kax #: database_main.xhp @@ -11183,7 +11183,7 @@ "par_id3153665\n" "help.text" msgid "If you copy the graphic (drag it while holding down the CommandCtrl key, in which case a plus sign appears next to the mouse pointer), the graphic will be inserted as an object." -msgstr "Si se copia el gráfico (arrastrar mientras se mantiene presionada la tecla ComandoCtrl, en dicho caso aparecerá un signo mas al lado del puntero del mouse), el gráfico se insertara como un objeto." +msgstr "Si se copia la imagen (arrastre mientras mantiene presionada la tecla Ctrl, en cuyo caso aparecerá un signo de suma al lado del puntero del ratón), esta se insertará como un objeto." #. bppRZ #: dragdrop_fromgallery.xhp @@ -11192,7 +11192,7 @@ "par_id3154514\n" "help.text" msgid "If you create a hyperlink (drag while holding down Shift and CommandCtrl, in which case a linking arrow appears next to the mouse pointer), the drawing object is replaced by the graphic from the Gallery, but the position and size of the replaced draw object are retained." -msgstr "Si se crea un hipervínculo (arrastrando mientras se mantiene presionada Shift y ComandoControl, en este caso aparecerá una flecha de enlace al lado del puntero del ratón), el objeto de dibujo es reemplazado por el gráfico de la Galería, pero la posición y tamaño del objeto de dibujo reemplazado se mantiene." +msgstr "Si se crea un hiperenlace (arrastrando mientras se mantiene presionada Mayús y Ctrl, en este caso aparecerá una flecha de enlace al lado del puntero del ratón), el objeto de dibujo se reemplaza por la imagen de la Galería, pero la posición y el tamaño del objeto de dibujo reemplazado se mantienen." #. 6HANC #: dragdrop_gallery.xhp @@ -11345,7 +11345,7 @@ "par_id3149182\n" "help.text" msgid "Click the graphic while pressing the OptionAlt key, to select it without executing any hyperlinks it may refer to." -msgstr "Pulse en el gráfico mientras pulsa la tecla OpciónAlt para seleccionarlo sin ejecutar ningún hipervínculo al que enlace." +msgstr "Pulse en el gráfico mientras presiona la tecla Alt para seleccionarlo sin ejecutar ningún hiperenlace que contenga." #. GAFBF #: dragdrop_graphic.xhp @@ -12641,7 +12641,7 @@ "bm_id3696707\n" "help.text" msgid "graphical text art designing; fonts TextArt, see Fontwork WordArt, see Fontwork Fontwork text effects effects; Fontwork icons text; Fontwork icons 3D text creation rotating;3D text editing;Fontwork objects inserting;Fontwork objects" -msgstr "arte con textos gráficos diseño; fuentes TextArt, consulte Fontwork WordArt, consulte Fontwork Fontwork efectos de texto efectos; íconos de Fontwork texto; íconos de Fontwork creación de texto 3D rotación;texto 3D editar;objetos de Fontwork insertar;objetos de Fontwork" +msgstr "arte con textos gráficosdiseño; tipos de letra TextArt, consulte FontworkWordArt, consulte FontworkFontworkefectos de textoefectos; iconos de Fontworktexto; iconos de Fontworkcreación de texto 3Dgiro;texto 3Deditar;objetos de Fontworkinsertar;objetos de Fontwork" #. wjc2i #: fontwork.xhp @@ -12884,7 +12884,7 @@ "bm_id3149798\n" "help.text" msgid "command buttons, see push buttons controls;adding to documents inserting;push buttons keys;adding push buttons buttons;adding push buttons press buttons, see push buttons push buttons;adding to documents" -msgstr "botones de comando, véase botones controles;agregarlos a documentos insertar;botones teclas;agregar botones botones;agregar botones presionar botones, ver botones botones; agregarlos a documentos" +msgstr "botones de orden, véase botonescontroles;añadirlos a documentosinsertar;botonesteclas;añadir botonesbotones;añadir botonesbotones accionables, véase botonesbotones; añadirlos a documentos" #. xrBhy #: formfields.xhp @@ -12893,7 +12893,7 @@ "hd_id3149798\n" "help.text" msgid "Adding a Command Button to a Document" -msgstr "Agregar un botón de comando a un documento" +msgstr "Añadir un botón de orden a un documento" #. CjP4o #: formfields.xhp @@ -13523,7 +13523,7 @@ "bm_id3153910\n" "help.text" msgid "hyperlinks; editinglinks; editing hyperlinksediting; hyperlinkstext attributes; hyperlinksbuttons;editing hyperlink buttonsURL;changing hyperlink URLs" -msgstr "hipervínculos; editarvínculos; editar hipervínculoseditar; hipervínculosatributos del texto; hipervínculosbotones;editar botones de hipervínculoURL;cambiar hipervínculo URLs" +msgstr "hiperenlaces; editarvínculos; editar hiperenlaceseditar; hiperenlacesatributos del texto; hiperenlacesbotones;editar botones de hiperenlaceURL;cambiar hiperenlace URLs" #. V6ywk #: hyperlink_edit.xhp @@ -13712,7 +13712,7 @@ "bm_id3150789\n" "help.text" msgid "hyperlinks; insertinglinks; insertinginserting; hyperlinks" -msgstr "hipervínculos;insertarvínculos;insertarinsertar;hipervínculos" +msgstr "hiperenlaces;insertarvínculos;insertarinsertar;hiperenlaces" #. 6hGVf #: hyperlink_insert.xhp @@ -14045,7 +14045,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;abrir documentos de Microsoftdocumentos; importarimportar; documentos en otros formatosabrir; documentos de otros formatoscargar; documentos de otros formatosconvertir;documentos de Microsoftguardar; formatos de archivo predeterminadosvalores predeterminados;formatos de documento en cuadros de diálogo de selección de archivosformatos de archivo; guardar siempre en otros formatosMicrosoft Office; como formato de archivo predeterminadoarchivos;importarconversores XMLconversores; XMLAsistente de conversión de documentosasistentes; conversor de documentos conversores; conversor de documentosarchivos, véase también Documentos" +msgstr "Microsoft Office;abrir documentos de Microsoftdocumentos; importarimportar; documentos en otros formatosabrir; documentos de otros formatoscargar; documentos de otros formatosconvertir;documentos de Microsoftguardar; formatos de archivo predeterminadosvalores predeterminados;formatos de documento en cuadros de diálogo de selección de archivosformatos de archivo; guardar siempre en otros formatosMicrosoft Office; como formato de archivo predeterminadoarchivos;importarconversores XMLconversores; XMLAsistente para conversión de documentosasistentes; conversor de documentos conversores; conversor de documentosarchivos, véase también Documentos" #. 2SFQD #: import_ms.xhp @@ -14603,7 +14603,7 @@ "par_id224616\n" "help.text" msgid "To scale a draw object using the keyboard, first select the object, then press CommandCtrl+Tab repeatedly to highlight one of the handles. Then press an arrow key. To scale in smaller steps, hold down the OptionAlt key while pressing an arrow key. Press Esc to leave the point edit mode." -msgstr "Para escalar un objeto de dibujo usando el teclado, primero se selecciona el objeto, luego se presiona Command Ctrl+Tab repetidamente para resaltar una de las manijas. Luego presionar una tecla de cursor. Para escalar en menos pasos, mantener presionada la tecla Opción Alt mientras se presiona una tecla de cursor. Presionar Esc para dejar el modo de edicion de punto." +msgstr "Para escalar un objeto de dibujo usando el teclado, primero seleccione el objeto; luego, presione Ctrl + Tab repetidamente para resaltar una de las agarraderas. Luego, presione una tecla de flecha. Para escalar en menos pasos, mantenga presionada la tecla Alt mientras presiona una tecla de flecha. Presione Esc para dejar el modo de edición de puntos." #. fEEBG #: insert_graphic_drawit.xhp @@ -14711,7 +14711,7 @@ "par_id3153031\n" "help.text" msgid "In any text input field (such as the input fields in the Find & Replace dialog) you can press Shift+CommandCtrl+S to open the Special Characters dialog." -msgstr "En cualquier campo de entrada de texto (como los campos de entrada del diálogo Buscar y reemplazar), puede pulsar Shift + ComandoControl + S para abrir el diálogo Caracteres especiales." +msgstr "En cualquier campo de entrada de texto (como los campos del cuadro de diálogo Buscar y reemplazar), puede presionar Mayús + Ctrl + S para abrir el cuadro de diálogo Caracteres especiales." #. yrs8i #: insert_specialchar.xhp @@ -15071,7 +15071,7 @@ "par_id3153968\n" "help.text" msgid "Pressing CommandCtrl+Enter on an icon for creating a draw object. A draw object will be placed into the middle of the view, with a predefined size." -msgstr "Presionar ComandoCtrl+Enter o un icono para crear un objeto de dibujo. Un objeto de dibujo será ubicado en la mitad de la vista, con un tamaño predefinido." +msgstr "Presione Ctrl + Intro sobre un icono para crear un objeto de dibujo. Se colocará un objeto de dibujo en la mitad de la vista, con un tamaño predefinido." #. 3DcDc #: keyboard.xhp @@ -15197,7 +15197,7 @@ "par_id3147396\n" "help.text" msgid "CommandCtrl+spacebar: switches between selection of the current row and cancellation of this selection." -msgstr "Comando Ctrl+barra espaciadora: permite cambiar entre la selección de la fila actual y la cancelación de esta selección." +msgstr "Ctrl + barra espaciadora: permite cambiar entre la selección de la fila actual y la cancelación de esta selección." #. GXFNH #: keyboard.xhp @@ -15206,7 +15206,7 @@ "par_id3149488\n" "help.text" msgid "CommandCtrl+Shift+spacebar: switches between selection of the current column and cancellation of this selection." -msgstr "Comando Ctrl+Mayús.+barra espaciadora: permite cambiar entre la selección de la columna actual y la cancelación de esta selección." +msgstr "Ctrl +Mayús + barra espaciadora: permite cambiar entre la selección de la columna actual y la cancelación de esta selección." #. EgAEL #: keyboard.xhp @@ -15224,7 +15224,7 @@ "par_id3145251\n" "help.text" msgid "In a table control or in the data source view, the Tab key moves to the next column. To move to the next control, press CommandCtrl+Tab. To move to the previous control, press Shift+CommandCtrl+Tab." -msgstr "En un control de tabla o en la vista de fuente de datos, la tecla Tab mueve hacia la siguiente columna. Para mover al siguiente control, presionar ComandoCtrl+Tab. Para mover al control anterior, presionar Shift + ComandoCtrl+Tab." +msgstr "En un control de tabla o en la vista de origen de datos, la tecla Tab desplaza a la columna siguiente. Para moverse al control siguiente, presione Ctrl + Tab. Para moverse al control anterior, presione Mayús + Ctrl + Tab." #. dE4w5 #: keyboard.xhp @@ -15386,7 +15386,7 @@ "par_id3147345\n" "help.text" msgid "Use CommandCtrl+Tab to enter the handle edit mode. The upper left handle is the active handle, it starts blinking. Use CommandCtrl+Tab to select the next handle. Press Escape to exit the handle edit mode." -msgstr "Usar ComandoCtrl+Tab para ingresar en el modo de edición de manijas. La manija superior izquierda es la manija activa, esta empieza a parpadear. Usar ComandoCtrl+Tab para seleccionar la siguiente manija. Presionar Escape para salir del modo de edición de manijas." +msgstr "Utilice Ctrl + Tab para entrar en el modo de edición de agarraderas. La agarradera superior izquierda es la activa; esta empieza a parpadear. Presione Ctrl + Tab para seleccionar la agarradera siguiente. Presione Escape para salir del modo de edición de agarraderas." #. Js3F6 #: keyboard.xhp @@ -15431,7 +15431,7 @@ "par_id3150646\n" "help.text" msgid "Enter the handle edit mode with CommandCtrl+Tab." -msgstr "Ingresar al modo de edición de manijas con ComandoCtrl+Tab." +msgstr "Ingrese al modo de edición de agarraderas con Ctrl + Tab." #. dyTrD #: keyboard.xhp @@ -18752,7 +18752,7 @@ "par_idN10841\n" "help.text" msgid "Table Wizard" -msgstr "Asistente de tablas" +msgstr "Asistente para tablas" #. fLi53 #: main.xhp @@ -18770,7 +18770,7 @@ "par_idN10875\n" "help.text" msgid "Forms Wizard" -msgstr "Asistente de formularios" +msgstr "Asistente para formularios" #. p2gFB #: main.xhp @@ -18779,7 +18779,7 @@ "par_id3154011\n" "help.text" msgid "Report Wizard" -msgstr "Asistente de informes" +msgstr "Asistente para informes" #. CZZjV #: main.xhp @@ -20426,7 +20426,7 @@ "par_id3146986\n" "help.text" msgid "The Document Converter Wizard will copy and convert all Microsoft Office files in a folder into $[officename] documents in the OpenDocument file format. You can specify the folder to be read, and the folder where the converted files are to be saved." -msgstr "El Asistente de conversión de documentos copia y convierte todos los archivos de Microsoft Office de una carpeta en documentos de $[officename] en el formato de archivo OpenDocument. Puede especificar la carpeta que se debe leer y la carpeta donde se deben guardar los archivos convertidos." +msgstr "El Asistente para conversión de documentos copia y convierte todos los archivos de Microsoft Office de una carpeta en documentos de $[officename] en el formato de archivo OpenDocument. Puede especificar la carpeta que se debe leer y la carpeta donde se deben guardar los archivos convertidos." #. DnGoX #: ms_user.xhp @@ -20570,7 +20570,7 @@ "par_id3166461\n" "help.text" msgid "You may dock the Navigator to any document border or turn it back into a free window (double click on the gray area). You can change the size of the Navigator when it is a free window." -msgstr "Puede acoplar el Navegador al borde de cualquier documento o volver a convertirlo en una ventana libre (haciendo doble clic en el área gris). Cuando el Navegador es una ventana libre, puede cambiar su tamaño." +msgstr "Puede acoplar el Navegador al borde de cualquier documento o volver a convertirlo en una ventana libre (pulsando dos veces en el área gris). Cuando el Navegador es una ventana libre, puede cambiar su tamaño." #. sBSUi #: navigator_setcursor.xhp @@ -22667,7 +22667,7 @@ "par_id731562796423552\n" "help.text" msgid "The Rectangle Redaction tool is used to mark the content for redaction by drawing transparent rectangles covering the content. Use the handles to resize the redaction rectangle." -msgstr "" +msgstr "La herramienta Censura con rectángulos sirve para marcar el contenido que debe testarse, cubriéndolo con rectángulos semitransparentes. Sírvase de las agarraderas para cambiar las dimensiones del rectángulo de censura." #. jEFws #: redaction.xhp @@ -22793,7 +22793,7 @@ "par_id3147008\n" "help.text" msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document." -msgstr "Por ejemplo: usted es un editor y va a entregar el último informe. Pero antes de publicar el informe debe leerlo un editor jefe y un corrector de pruebas, y ambos añadirán sus cambios. El editor jefe escribe \"aclarar\" después de un párrafo y tacha otro completamente. El corrector de pruebas revisa la ortografía del documento y anota dos ejemplos donde las referencias concretas al sexo de una persona imaginaria se podrían cambiar para evitarlas completamente." +msgstr "Por ejemplo: usted es un editor y va a entregar el último informe. Pero antes de publicar el informe debe leerlo un editor jefe y una correctora de pruebas, y ambos añadirán sus cambios. El editor jefe escribe «aclarar» después de un párrafo y tacha otro completamente. La correctora de pruebas revisa la ortografía del documento." #. sZdoa #: redlining.xhp @@ -23135,7 +23135,7 @@ "tit\n" "help.text" msgid "Recording Changes" -msgstr "Registrar cambios" +msgstr "Grabar cambios" #. V8ATh #: redlining_enter.xhp @@ -23153,7 +23153,7 @@ "hd_id3155364\n" "help.text" msgid "Recording Changes" -msgstr "Registrar cambios" +msgstr "Grabar cambios" #. VBpWf #: redlining_enter.xhp @@ -23171,7 +23171,7 @@ "par_id3145669\n" "help.text" msgid "Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting." -msgstr "No se registran todos los cambios. Por ejemplo, si se cambia la alineación de un tabulador de izquierda a derecha, el cambio no se registra. Aunque todos los cambios comunes que se realizan al revisar un texto sí se registran, como adiciones, eliminaciones, cambios del texto y cambios de formato comunes." +msgstr "No todos los cambios se graban. Por ejemplo, si se cambia la alineación de un tabulador de izquierda a derecha, el cambio no se registra. No obstante, todos los cambios comunes que realizan los correctores de pruebas sí que se registran, como las adiciones, las eliminaciones, los cambios en el texto y los cambios de formato habituales." #. FHNi5 #: redlining_enter.xhp @@ -23495,7 +23495,7 @@ "par_id3156136\n" "help.text" msgid "When you insert a rectangle or a callout box using the drawing functions and activate the Points icon on the Drawing toolbar, you see a small frame at the upper left corner of the object. The frame indicates the amount by which the corners are rounded. When the frame is positioned at the top left corner, no rounding occurs. When the frame is positioned on the handle centered at the top of the object, the corners are rounded as much as possible. You adjust the degree of rounding by moving the frame between these two positions." -msgstr "Al insertar un rectángulo o un cuadro de llamada mediante las funciones de dibujo y activar el icono Puntos de la barra de herramientas Dibujo, en la esquina superior izquierda del objeto se muestra un pequeño marco. El marco indica la cantidad de redondeo que se aplica a las esquinas. Si el marco se coloca en la esquina superior izquierda, no hay redondeo. Si el marco se ubica en la manilla que está en el centro de la parte superior del objeto, las esquinas se redondean al máximo. El grado de redondeo se ajusta desplazando el marco entre estas dos posiciones." +msgstr "Al insertar un rectángulo o un cuadro de llamada mediante las funciones de dibujo y activar el icono Puntos de la barra de herramientas Dibujo, en la esquina superior izquierda del objeto se muestra un pequeño marco. El marco indica la cantidad de redondeo que se aplica a las esquinas. Si el marco se coloca en la esquina superior izquierda, no hay redondeo. Si el marco se ubica en la agarradera que está en el centro de la parte superior del objeto, las esquinas se redondean al máximo. La cantidad de redondeo se ajusta desplazando el control entre estas dos posiciones." #. 9KxkW #: round_corner.xhp @@ -25565,7 +25565,7 @@ "tit\n" "help.text" msgid "Start Center" -msgstr "Centro de inicio" +msgstr "Centro de bienvenida" #. BezyC #: startcenter.xhp @@ -25574,7 +25574,7 @@ "bm_id0820200802500562\n" "help.text" msgid "backing window start center" -msgstr "ventana principalcentro de inicio" +msgstr "ventana principalcentro de bienvenida" #. VxGgY #: startcenter.xhp @@ -25583,7 +25583,7 @@ "hd_id0820200802524447\n" "help.text" msgid "Start Center" -msgstr "Centro de inicio" +msgstr "Centro de bienvenida" #. e3XEA #: startcenter.xhp @@ -25592,7 +25592,7 @@ "par_id0820200803204063\n" "help.text" msgid "Welcome to %PRODUCTNAME. Thank you for using the %PRODUCTNAME application help. Press F1 whenever you need help using %PRODUCTNAME." -msgstr "" +msgstr "Le damos la bienvenida a %PRODUCTNAME. Gracias por utilizar la ayuda de la aplicación %PRODUCTNAME. Presione F1 siempre que necesite una guía al utilizar %PRODUCTNAME." #. mg9A4 #: startcenter.xhp @@ -25601,7 +25601,7 @@ "par_id0820200802524413\n" "help.text" msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. Click a button on the left pane to open a new document or a file dialog." -msgstr "Cuando no hay ningún documento abierto en %PRODUCTNAME se muestra el Centro de inicio. Está dividido en dos paneles. Pulse en un botón del panel izquierdo para abrir un documento nuevo o un cuadro de diálogo de apertura de archivos." +msgstr "Cuando no hay ningún documento abierto en %PRODUCTNAME se muestra el centro de bienvenida. Está dividido en dos paneles. Pulse en un botón del panel izquierdo para abrir un documento nuevo o un cuadro de diálogo de apertura de archivos." #. mWB6t #: startcenter.xhp @@ -25754,7 +25754,7 @@ "par_id0820200803105089\n" "help.text" msgid "Base Database opens %PRODUCTNAME Base" -msgstr "" +msgstr "Base de datos de Base abre %PRODUCTNAME Base" #. MvEcH #: startcenter.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -4721,7 +4721,7 @@ "par_id3146923\n" "help.text" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "Aplica la configuración de contraste elevado del sistema operativo en la vista previa de las páginas." +msgstr "Aplica la configuración de contraste alto del sistema operativo en la previsualización de las páginas." #. 3Terk #: 01020000.xhp @@ -7349,7 +7349,7 @@ "par_id3149020\n" "help.text" msgid "Defines the insert options for the direct cursor. If you click at any position in your document, a new paragraph can be written or inserted exactly at this position. The properties of this paragraph depend on the selected option. You can select from the following options:" -msgstr "Define las propiedades de inserción del cursor directo. Si hace clic en cualquier posición del documento podrá escribir o insertar un párrafo nuevo exactamente en esa posición. Las propiedades de este párrafo dependen de la opción seleccionada. Puede seleccionar las opciones siguientes:" +msgstr "Define las propiedades de inserción del cursor directo. Si pulsa en cualquier posición del documento podrá escribir o insertar un párrafo nuevo exactamente en esa posición. Las propiedades de este párrafo dependen de la opción seleccionada. Puede seleccionar las opciones siguientes:" #. arLP9 #: 01040600.xhp @@ -8753,7 +8753,7 @@ "par_idN10588\n" "help.text" msgid "Add captions automatically when inserting" -msgstr "Agregar títulos automáticamente al insertar" +msgstr "Añadir leyendas automáticamente al insertar" #. Fa42d #: 01041100.xhp @@ -9743,7 +9743,7 @@ "par_id3149816\n" "help.text" msgid "Specifies whether to display row and column headers." -msgstr "Especifica si se debe mostrar encabezados de fila y columna." +msgstr "Especifica si se debe mostrar cabeceras de fila y columna." #. d5GAX #: 01060100.xhp @@ -11561,7 +11561,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 "En %PRODUCTNAME Calc, los nombres de las funciones pueden traducirse. Normalmente esta casilla está desactivada, lo que significa que los nombres de las fórmulas estarán traducidos. Si activa esta casilla se utilizarán los nombres de las fórmulas en inglés. Este cambio afectará las áreas siguientes: entrada y visualización de fórmulas, asistente de fórmulas y mensajes emergentes de fórmulas. Puede desmarcar la opción en cualquier momento para volver a utilizar los nombres traducidos." +msgstr "En %PRODUCTNAME Calc, los nombres de las funciones pueden traducirse. Normalmente esta casilla está desactivada, lo que significa que los nombres de las fórmulas estarán traducidos. Si activa esta casilla se utilizarán los nombres de las fórmulas en inglés. Este cambio afectará las áreas siguientes: entrada y visualización de fórmulas, asistente para fórmulas y mensajes emergentes de fórmulas. Puede desmarcar la opción en cualquier momento para volver a utilizar los nombres traducidos." #. DtrRf #: 01060900.xhp @@ -14873,7 +14873,7 @@ "par_id3147571\n" "help.text" msgid "Defines how the connections to data sources are pooled." -msgstr "Define cómo se conservan las conexiones de las fuentes de datos." +msgstr "Define cómo se conservan las conexiones de los orígenes de datos." #. KG6qY #: 01160100.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/shared.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1548070165.000000\n" #. DBz3U @@ -896,7 +896,7 @@ "par_idN1078F\n" "help.text" msgid "Starts the Mail Merge Wizard to create form letters." -msgstr "Inicia el asistente de combinación de correspondencia para crear cartas modelo." +msgstr "Inicia el asistente para combinación de correspondencia para crear cartas modelo." #. 7wCKo #: main0213.xhp @@ -1661,7 +1661,7 @@ "hd_id3150345\n" "help.text" msgid "Convert To Curve" -msgstr "Transformar en curva" +msgstr "Convertir en curva" #. DNKmR #: main0227.xhp @@ -1697,7 +1697,7 @@ "par_id3158445\n" "help.text" msgid "Convert To Curve" -msgstr "Transformar en curva" +msgstr "Convertir en curva" #. GJN2S #: main0227.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/00.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/00.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2021-11-16 11:21+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1560857928.000000\n" #. sqmGT @@ -50,7 +50,7 @@ "par_id5316324\n" "help.text" msgid "Opens the Custom Animation sidebar deck." -msgstr "Abre la sección Animación personalizada de la barra lateral." +msgstr "Abre el grupo Animación personalizada de la barra lateral." #. AgwPX #: 00000004.xhp @@ -212,7 +212,7 @@ "par_id3149263\n" "help.text" msgid "Choose Shape - Cross-fading (%PRODUCTNAME Draw only)" -msgstr "" +msgstr "Vaya a Forma ▸ Disolvencia (solo en %PRODUCTNAME Draw)" #. k3XUS #: 00000402.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1544632647.000000\n" #. mu9aV @@ -1751,7 +1751,7 @@ "par_id110120150547279702\n" "help.text" msgid "To modify the number of slides you can print on a page, open the Properties sidebar deck and double-click a layout on the Layout content panel." -msgstr "Para cambiar la cantidad de diapositivas que puede imprimir en una página, abra la sección Propiedades de la barra lateral y pulse dos veces en una disposición del panel Disposición." +msgstr "Para cambiar la cantidad de diapositivas que puede imprimir en una página, abra el grupo Propiedades de la barra lateral y pulse dos veces en una disposición del panel Disposición." #. Tbjmu #: 03130000.xhp @@ -3614,7 +3614,7 @@ "par_id3150398\n" "help.text" msgid "Opens the Styles deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing." -msgstr "Abre la sección Estilos de la barra lateral, que proporciona los estilos gráficos y de presentación disponibles para su aplicación y edición." +msgstr "Abre el grupo Estilos de la barra lateral, que proporciona los estilos gráficos y de presentación disponibles para su aplicación y edición." #. CFqVN #: 05100000.xhp @@ -5090,7 +5090,7 @@ "par_idN1076B\n" "help.text" msgid "Shows the current slide transition as a preview." -msgstr "Muestra una vista previa de la transición de diapositiva actual." +msgstr "Muestra una previsualización de la transición de diapositiva actual." #. BGuDQ #: 06040000.xhp @@ -5972,7 +5972,7 @@ "par_idN10840\n" "help.text" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "Seleccione para obtener una vista previa de los efectos nuevos o editados en la diapositiva mientras los asigna." +msgstr "Seleccione para obtener una previsualización de los efectos nuevos o editados en la diapositiva mientras los asigna." #. SXDka #: 06060000.xhp @@ -7475,7 +7475,7 @@ "par_id3150046\n" "help.text" msgid "Previews the converted image without applying the changes." -msgstr "Ofrece una vista previa de la imagen convertida sin aplicar los cambios." +msgstr "Ofrece una previsualización de la imagen convertida sin aplicar los cambios." #. aocCm #: 13050300.xhp @@ -8249,7 +8249,7 @@ "par_id321623291834607\n" "help.text" msgid "Enter the height of the graphic bullet character." -msgstr "" +msgstr "Introduzca la altura del carácter del bolo gráfico." #. SjRNb #: bulletandposition.xhp @@ -8852,7 +8852,7 @@ "par_idN105E7\n" "help.text" msgid "As one object - all paragraphs are animated as one object." -msgstr "Como un objeto: todos los párrafos son animados como un objeto." +msgstr "Como un solo objeto: todos los párrafos se animan como si fuesen un único objeto." #. iFEvf #: effectoptionstext.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-05-22 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534121568.000000\n" #. AiACn @@ -482,7 +482,7 @@ "par_id3152926\n" "help.text" msgid "Returns the display of the slide to the previous zoom factor you applied. You can also press CommandCtrl+Comma(,)." -msgstr "Vuelve al factor de escala usado anteriormente en la visualización de la diapositiva. También puede pulsar Comando Ctrl+Coma(,)." +msgstr "Vuelve al factor de escala usado anteriormente en la visualización de la diapositiva. También puede presionar Ctrl + coma (,)." #. gpa4k #: 10020000.xhp @@ -518,7 +518,7 @@ "par_id3143228\n" "help.text" msgid "Undoes the action of the Previous Zoom command. You can also press CommandCtrl+Period(.)." -msgstr "Deshace la acción del comando Factor de escala anterior. También puede pulsar Comando Ctrl+punto(.)." +msgstr "Deshace la acción de la orden Escala anterior. También puede presionar Ctrl + punto (.)." #. 7dCrD #: 10020000.xhp @@ -914,7 +914,7 @@ "par_id3150928\n" "help.text" msgid "Icon In 3D rotation object" -msgstr "" +msgstr "Icono En cuerpo de giro 3D" #. vCf5c #: 10030000.xhp @@ -5405,7 +5405,7 @@ "bm_id3149666\n" "help.text" msgid "allowing; effectseffects; preview" -msgstr "permitir;efectosefectos;vista previas" +msgstr "permitir;efectosefectos;previsualización" #. voBzV #: 13030000.xhp @@ -5459,7 +5459,7 @@ "bm_id3148386\n" "help.text" msgid "interactions; previewallowing; interaction" -msgstr "interacciones;vista previapermitir;interacción" +msgstr "interacciones;previsualizaciónpermitir;interacción" #. ACcu9 #: 13040000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -671,7 +671,7 @@ "par_id4396801\n" "help.text" msgid "A motion path can be selected by clicking on the path. A selected path will support handles, it can be moved and resized like a shape. A double click on a path starts the point edit mode. The point edit mode can also be started by Edit - Points or by pressing F8." -msgstr "Puede seleccionar una trayectoria si pulsa en ella con el ratón. Las trayectorias seleccionadas pueden redimensionarse y desplazarse como las formas, a través de sus asas. Si se pulsa dos veces en la trayectoria, se activará el modo de edición de puntos. El modo de edición de puntos también puede iniciarse a través del menú Editar ▸ Puntos u oprimiendo F8." +msgstr "Puede seleccionar una trayectoria si pulsa en ella con el ratón. Las trayectorias seleccionadas pueden redimensionarse y desplazarse como las formas, a través de sus agarraderas. Si se pulsa dos veces en la trayectoria, se activará el modo de edición de puntos. El modo de edición de puntos también puede iniciarse a través del menú Editar ▸ Puntos u oprimiendo F8." #. Bx46G #: animated_objects.xhp @@ -995,7 +995,7 @@ "par_id3155067\n" "help.text" msgid "You can change the background color or the background fill of the current slide or all of the slides in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Se puede cambiar el color o el relleno del fondo de la diapositiva actual o de todas las diapositivas del documento. Como relleno de fondo se puede emplear una trama, un degradado o una imagen de mapa de bits." #. SEPCz #: background.xhp @@ -1022,7 +1022,7 @@ "par_id4155067\n" "help.text" msgid "You can change the background color or the background fill of the current page or all of the pages in your document. For a background fill, you can use hatching, a gradient, or an image." -msgstr "" +msgstr "Puede cambiar el color o el relleno de fondo de la página actual o de todas las páginas del documento. Como relleno de fondo puede utilizar motivos, degradados o imágenes de mapa de bits." #. BUHu6 #: background.xhp @@ -3146,7 +3146,7 @@ "par_id3148868\n" "help.text" msgid "The Curve icon Icon on the Drawing toolbar opens a toolbar to draw Bézier curves. Bézier curves are defined by a start point and an end point, which are called \"anchors\". The curvature of the Bézier curve is defined by control points (\"handles\"). Moving a control point changes the shape of the Bézier curve." -msgstr "El icono CurvaIcono de la barra de herramientas Dibujo abre una barra que incluye herramientas para trazar curvas de Bézier. Las curvas de Bézier se definen mediante un punto inicial y uno final, llamados «anclas». La curvatura de la curva de Bézier se establece mediante puntos de control («manillas»). Si se mueve un punto de control se cambia la forma de la curva de Bézier." +msgstr "El icono CurvaIcono de la barra de herramientas Dibujo abre una barra que incluye herramientas para trazar curvas de Bézier. Las curvas de Bézier se definen mediante un punto inicial y uno final, llamados «anclas». La curvatura de la curva de Bézier se establece mediante puntos de control («agarraderas»). Si se mueve un punto de control se cambia la forma de la curva de Bézier." #. o9cHX #: line_draw.xhp @@ -5685,7 +5685,7 @@ "par_id2361522\n" "help.text" msgid "Open the Slide Transition sidebar deck." -msgstr "Abra la sección Transición de diapositivas de la barra lateral." +msgstr "Abra el grupo Transición entre diapositivas de la barra lateral." #. 9CjNM #: show.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/smath/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/smath/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/smath/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/smath/01.po 2022-07-15 19:12:51.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-05-14 14:16+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5189,7 +5189,7 @@ "par_id3149645\n" "help.text" msgid "If a line or an expression begins with text, it is aligned on the left by default. You can change this with any of the align commands. An example is stack{a+b-c*d#alignr \"text\"}, where \"text\" appears aligned to the right. Note that text must always be surrounded by quotation marks." -msgstr "Si una línea o expresión comienza con texto, la opción predeterminada es la alineación a la izquierda. Puede modificar esta opción con cualquiera de los comandos de alineación. Un ejemplo puede ser stack{a+b-c*d#alignr \"text\"}, donde \"text\" aparece alineado a la derecha. El texto siempre debe ir entre comillas." +msgstr "Si un renglón o expresión comienza por texto, la opción predeterminada es la alineación a la izquierda. Puede modificar esta opción con cualquiera de las órdenes de alineación. Un ejemplo puede ser stack{a+b-c*d#alignr \"texto\"}, donde «texto» aparece alineado a la derecha. El texto siempre debe ir entrecomillado." #. KwFtM #: 03090700.xhp @@ -6737,7 +6737,7 @@ "par_id3158437\n" "help.text" msgid "Using the \"csub\" and \"csup\" commands, you can write super- and subscripts directly above or below a character. An example is \"a csub y csup x\". Combinations of indexes and exponents together are also possible: \"abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666\"." -msgstr "Con los comandos \"csub\" y \"csup\" es posible colocar superíndices o subíndices directamente encima o debajo de un carácter; véase \"a csub y csup x\". Asimismo, es posible introducir índices y exponentes de todo tipo, a la vez. \"abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666\"." +msgstr "Con las órdenes «csub» y «csup» es posible colocar superíndices o subíndices directamente encima o debajo de un carácter; un ejemplo es «a csub y csup x». Asimismo, es posible introducir índices y exponentes de todo tipo, a la vez. «abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666»." #. KsCCv #: 03091200.xhp @@ -12200,7 +12200,7 @@ "par_id3148839\n" "help.text" msgid "Check this box to assign the bold attribute to the font." -msgstr "Si activa esta casilla de verificación, el tipo de letra se representará en negrita." +msgstr "Active esta casilla para aplicar el atributo negrita al tipo de letra." #. 3wvxW #: 05010100.xhp @@ -12218,7 +12218,7 @@ "par_id3149126\n" "help.text" msgid "Check this box to assign the italic attribute to the font." -msgstr "Si pulsa esta casilla de verificación, el tipo de letra se representará en cursiva." +msgstr "Active esta casilla para aplicar el atributo itálica al tipo de letra." #. GVz9x #: 05020000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/smath/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/smath/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/smath/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/smath/guide.po 2022-07-15 19:12:51.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: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -527,7 +527,7 @@ "par_id759300\n" "help.text" msgid "Press F4 to advance to the next marker, and enter the summand:" -msgstr "Presione F4 para avanzar al próximo marcador, e ingrese el sumando:" +msgstr "Presione F4 para avanzar al próximo marcador e introduzca el sumando:" #. dJvvn #: limits.xhp @@ -734,7 +734,7 @@ "tit\n" "help.text" msgid "Entering Text" -msgstr "Ingresando texto" +msgstr "Introducir texto" #. FGbj6 #: text.xhp @@ -752,7 +752,7 @@ "hd_id5676442\n" "help.text" msgid "Entering Text" -msgstr "Ingresar texto" +msgstr "Introducir texto" #. FGjG4 #: text.xhp @@ -761,7 +761,7 @@ "hd_id8509170\n" "help.text" msgid "How to enter direct text strings that do not get interpreted?" -msgstr "¿Cómo ingresar directamente cadenas de texto que no sean interpretadas?" +msgstr "¿Cómo introducir directamente cadenas de texto que no sean interpretadas?" #. 8AWkB #: text.xhp @@ -815,7 +815,7 @@ "par_id4941557\n" "help.text" msgid "You can also use W^\"*\" to enter the character as direct text." -msgstr "Tambien puede usar W^\"*\" para ingresar el carácter como texto directo." +msgstr "Tambien puede usar W^\"*\" para introducir el carácter como texto directo." #. qELLZ #: text.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-03-31 21:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563615688.000000\n" #. E9tti @@ -1760,7 +1760,7 @@ "par_id61610557667046\n" "help.text" msgid "Click on the Character Style icon at top of the deck, then select a character style." -msgstr "Pulse en el icono Estilo de carácter en la parte superior del panel y, acto seguido, seleccione un estilo de carácter." +msgstr "Pulse en el icono Estilo de carácter en la parte superior del grupo y, acto seguido, seleccione un estilo de carácter." #. j5skL #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -698,7 +698,7 @@ "par_id3149802\n" "help.text" msgid "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." -msgstr "Muestra u oculta la ventana Navegador, donde puede saltar rápidamente entre diferentes partes del documento. El Navegador también está disponible como un icono en la barra lateral. Puede usar también el Navegador para insertar elementos desde el documento actual u otro documento abierto y organizar patrones de documentos. Para editar un punto en el Navegador, pulse con el botón secundario del ratón sobre el punto y elija una orden del menú contextual. Si lo desea, puede acoplar el Navegador en el borde de su espacio de trabajo." +msgstr "Muestra u oculta la ventana Navegador, donde puede saltar rápidamente entre diferentes partes del documento. El Navegador también está disponible como un grupo de la barra lateral. Puede usar también el Navegador para insertar elementos desde el documento actual u otro documento abierto y organizar patrones de documentos. Para editar un punto en el Navegador, pulse con el botón secundario del ratón sobre el punto y elija una orden del menú contextual. Si lo desea, puede acoplar el Navegador en el borde de su espacio de trabajo." #. 3Bt3V #: 02110000.xhp @@ -5891,7 +5891,7 @@ "par_id5187536\n" "help.text" msgid "Choose the \"Default\" page style from the submenu." -msgstr "Elija el estilo de página predeterminado usando el submenú." +msgstr "Elija el estilo de página «Predeterminado» usando el submenú." #. JyxEQ #: 04070000.xhp @@ -5900,7 +5900,7 @@ "par_id6952726\n" "help.text" msgid "This removes the special \"Envelope\" page formatting." -msgstr "Esto elimina el formato especial del \"Sobre\"." +msgstr "Esto elimina el formato especial del «Sobre»." #. 3iAPy #: 04070000.xhp @@ -9383,7 +9383,7 @@ "par_id0902200804391084\n" "help.text" msgid "For fields linked to a condition, enter the criteria here." -msgstr "Para campos enlazados a una condición, ingrese aquí los criterios." +msgstr "Para campos enlazados a una condición, introduzca aquí los criterios." #. cUbyM #: 04090006.xhp @@ -18888,7 +18888,7 @@ "par_id3150558\n" "help.text" msgid "Draws an oval contour where you drag in the object preview. To draw a circle, hold down shift while you drag." -msgstr "Dibuja un contorno ovalado donde puede arrastrar la vista previa del objeto. Para dibujar un círculo, mantenga pulsada la tecla Mayús mientras dibuja." +msgstr "Dibuja un contorno ovalado donde puede arrastrar la previsualización del objeto. Para dibujar un círculo, mantenga presionada la tecla Mayús mientras arrastra." #. brcFj #: 05060201.xhp @@ -19932,7 +19932,7 @@ "bm_id3150980\n" "help.text" msgid "objects; defining hyperlinks frames; defining hyperlinks pictures; defining hyperlinks hyperlinks; for objects" -msgstr "objetos;definir hipervínculos marcos;definir hipervínculos imágenes;definir hipervínculos hipervínculos;para objetos" +msgstr "objetos;definir hiperenlaces marcos;definir hiperenlaces imágenes;definir hiperenlaces hiperenlaces;para objetos" #. xQRVz #: 05060800.xhp @@ -20022,7 +20022,7 @@ "par_id3147217\n" "help.text" msgid "Enter a name for the hyperlink." -msgstr "Escriba un nombre para el hipervínculo." +msgstr "Escriba un nombre para el hiperenlace." #. 7kyXD #: 05060800.xhp @@ -20085,7 +20085,7 @@ "hd_id3156278\n" "help.text" msgid "Client-side image map" -msgstr "Image map del sitio del cliente" +msgstr "Mapa de imagen del lado cliente" #. tGhmQ #: 05060800.xhp @@ -22164,7 +22164,7 @@ "par_id3149052\n" "help.text" msgid "The following information concerns Writer styles that you can apply using the Styles deck of the Sidebar." -msgstr "La información siguiente se refiere a los estilos de Writer que puede aplicar a través de la sección Estilos de la barra lateral." +msgstr "La información siguiente se refiere a los estilos de Writer que puede aplicar a través del grupo Estilos de la barra lateral." #. g2Dm2 #: 05130000.xhp @@ -22632,7 +22632,7 @@ "hd_id3155961\n" "help.text" msgid "List Style" -msgstr "Estilo de lista" +msgstr "Estilo de lista" #. 3zB3P #: 05130004.xhp @@ -22758,7 +22758,7 @@ "par_id3150760\n" "help.text" msgid "You can apply the Paragraph Style to the context by double-clicking the selected entry in the Paragraph Styles list box or by using Apply." -msgstr "Puede aplicar el Estilo de párrafo al contexto haciendo doble clic en la entrada seleccionada en el cuadro de lista Estilos de párrafo o utilizando Aplicar." +msgstr "Puede aplicar el estilo de párrafo al contexto si pulsa dos veces en la entrada seleccionada en el cuadro de lista Estilos de párrafo o si utiliza Aplicar." #. ZFDp8 #: 05130100.xhp @@ -22938,7 +22938,7 @@ "par_id3148391\n" "help.text" msgid "Use the Styles deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style." -msgstr "Utilice la sección «Estilos» de la barra lateral para aplicar, crear, editar, añadir y quitar estilos de formato. Pulse dos veces en una entrada para aplicar el estilo." +msgstr "Utilice el grupo Estilos de la barra lateral para aplicar, crear, editar, añadir y quitar estilos de formato. Pulse dos veces en una entrada para aplicar el estilo." #. 3LCgW #: 05140000.xhp @@ -22965,7 +22965,7 @@ "par_id270120161717298895\n" "help.text" msgid "By default, the Styles deck displays a preview of the available styles. The previews can be disabled by unchecking the Show Previews box below the list of styles." -msgstr "De manera predeterminada, la sección Estilos de la barra lateral muestra previsualizaciones de los estilos disponibles. Puede desactivarlas mediante la casilla Mostrar previsualizaciones que está situada debajo de la lista de estilos." +msgstr "De manera predeterminada, el grupo Estilos de la barra lateral muestra previsualizaciones de los estilos disponibles. Puede desactivarlas mediante la casilla Mostrar previsualizaciones que está situada debajo de la lista de estilos." #. LBEgn #: 05140000.xhp @@ -27231,7 +27231,7 @@ "par_id521630941308319\n" "help.text" msgid "Select File - Export as PDF - General - Universal Accessibility (PDF/UA) and click OK." -msgstr "" +msgstr "Seleccione Archivo ▸ Exportar a PDF ▸ General ▸ Accesibilidad universal (PDF/UA) y pulse en Aceptar." #. FvnEV #: accessibility_check.xhp @@ -28122,7 +28122,7 @@ "par_id7805417\n" "help.text" msgid "Unless all address elements are matched with a column header, you cannot finish the Mail Merge wizard with the Finish button or continue to the fourth step of the wizard." -msgstr "No es posible terminar el asistente de combinación de correspondencia con el botón Finalizar ni continuar con el cuarto paso de este a menos que haya relacionado todos los elementos de las direcciones con una cabecera de columna." +msgstr "No es posible terminar el asistente para combinación de correspondencia con el botón Finalizar ni continuar con el cuarto paso de este a menos que haya relacionado todos los elementos de las direcciones con una cabecera de columna." #. wcCUR #: mailmerge03.xhp @@ -28149,7 +28149,7 @@ "par_idN105B5\n" "help.text" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. YXk87 #: mailmerge03.xhp @@ -28419,7 +28419,7 @@ "par_idN105D1\n" "help.text" msgid "Use the browse buttons to preview the information from the previous or next data record." -msgstr "Utilice los botones de navegación para obtener una vista previa de la información del registro de datos anterior o siguiente." +msgstr "Utilice los botones de navegación para obtener una previsualización de la información del registro de datos anterior o siguiente." #. jbNCg #: mailmerge04.xhp @@ -28617,7 +28617,7 @@ "par_idN1057D\n" "help.text" msgid "Select a magnification for the print preview." -msgstr "Seleccione una ampliación para la vista previa de impresión." +msgstr "Seleccione un aumento para la previsualización de la impresión." #. SnhQw #: mailmerge05.xhp @@ -28941,7 +28941,7 @@ "par_idN10578\n" "help.text" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "Muestra una vista previa del primer registro de la base de datos con el diseño de saludo actual." +msgstr "Muestra una previsualización del primer registro de la base de datos con la disposición de saludo actual." #. Exjps #: mm_cusgrelin.xhp @@ -29688,7 +29688,7 @@ "par_idN10589\n" "help.text" msgid "Displays a preview of the first database record with the current address block layout." -msgstr "Muestra una vista previa del primer registro de la base de datos con el diseño de bloque de direcciones actual." +msgstr "Muestra una previsualización del primer registro de la base de datos con la disposición de bloque de direcciones actual." #. 6DCtx #: mm_newaddblo.xhp @@ -31416,7 +31416,7 @@ "par_id501516905708560\n" "help.text" msgid "The values entered applies to the actual page style." -msgstr "Los valores ingresados se aplican al estilo actual de la página." +msgstr "Los valores introducidos se aplican al estilo actual de la página." #. a3iUA #: watermark.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/02.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/02.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -653,7 +653,7 @@ "tit\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. dFea2 #: 06090000.xhp @@ -662,7 +662,7 @@ "hd_id3154505\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. WX5QJ #: 06090000.xhp @@ -689,7 +689,7 @@ "par_id3156381\n" "help.text" msgid "Insert Unnumbered Entry" -msgstr "Insertar entrada sin número" +msgstr "Insertar entrada no numerada" #. bWtAw #: 06120000.xhp @@ -1076,7 +1076,7 @@ "tit\n" "help.text" msgid "Preview Zoom" -msgstr "Escala de la vista previa" +msgstr "Escala de la previsualización" #. LNQGR #: 10030000.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -896,7 +896,7 @@ "par_id3144875\n" "help.text" msgid "To quickly undo an AutoCorrect replacement, press Command Ctrl+Z. This also adds the word or abbreviation that you typed to the AutoCorrect exceptions list." -msgstr "Para deshacer rápidamente una sustitución de Corrección automática, pulse Comando Control +Z. De este modo también se añade la palabra o abreviatura que escribió en la lista de excepciones de Corrección automática." +msgstr "Para deshacer rápidamente una sustitución de Corrección automática, presione Ctrl + Z. De este modo también se añade la palabra o abreviatura que escribió en la lista de excepciones de Corrección automática." #. L4Z3h #: autotext.xhp @@ -6026,7 +6026,7 @@ "par_idN10653\n" "help.text" msgid "The Mail Merge Wizard helps you to create form letters." -msgstr "El asistente de combinación de correspondencia le ayuda a crear cartas modelo." +msgstr "El asistente para combinación de correspondencia le ayuda a crear cartas modelo." #. M5tkD #: form_letters_main.xhp @@ -6116,7 +6116,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 "Si quiere ubicar campos de combinación de correspondencia en cualquier otro lugar del documento, seleccione la columna correspondiente en su origen de datos de direcciones y luego arrastre y suelte el encabezado de la columna en la parte del documento donde quiere que esté el campo. Asegúrese de seleccionar la columna completa." +msgstr "Si quiere ubicar campos de combinación de correspondencia en cualquier otro lugar del documento, seleccione la columna correspondiente en su origen de datos de direcciones y luego arrastre y coloque la cabecera de la columna en la parte del documento donde quiere que esté el campo. Asegúrese de seleccionar la columna completa." #. xbE3K #: form_letters_main.xhp @@ -6791,7 +6791,7 @@ "par_id3150946\n" "help.text" msgid "Choose View - Styles and click the Page Styles icon in the Styles sidebar deck." -msgstr "Vaya a Ver ▸ Estilos y pulse en el icono Estilos de página de la sección «Estilos» de la barra lateral." +msgstr "Vaya a Ver ▸ Estilos y pulse en el icono Estilos de página del grupo Estilos de la barra lateral." #. u8FFH #: header_pagestyles.xhp @@ -7016,7 +7016,7 @@ "par_id3150527\n" "help.text" msgid "Apply the paragraph style that you defined for chapter titles to the chapter headings in your document." -msgstr "Aplique el estilo de párrafo que definió en los títulos de los capítulos a los encabezados de los capítulos del documento." +msgstr "Aplique el estilo de párrafo que definió a los títulos de los capítulos del documento." #. ovYTz #: header_with_chapter.xhp @@ -8276,7 +8276,7 @@ "bm_id3155855\n" "help.text" msgid "indexes; formatting editing; index format tables of contents; formatting entries; in tables of contents, as hyperlinks tables of contents; hyperlinks as entries hyperlinks; in tables of contents and indexes formatting;indexes and tables of contents" -msgstr "índices;dar formato editar;formato del índice índices de materias;dar formato entradas;en índices de materias, como hipervínculos índices de materias;hipervínculos como entradas hipervínculos;en índices de materias e índices dar formato;índices e índices de materias" +msgstr "índices;dar formato editar;formato del índice índices de materias;dar formato entradas;en índices de materias, como hiperenlaces índices de materias;hiperenlaces como entradas hiperenlaces;en índices de materias e índices dar formato;índices e índices de materias" #. NaZ57 #: indices_form.xhp @@ -8429,7 +8429,7 @@ "par_id3147060\n" "help.text" msgid "Repeat for each heading level that you want to create hyperlinks for, or click the All button to apply the formatting to all levels." -msgstr "Repita el proceso para cada nivel de encabezado para el que desee crear hipervínculos o pulse en el botón Todos para aplicar el formato a todos los niveles." +msgstr "Repita el proceso para cada nivel de título para el que desee crear hiperenlaces, o bien, pulse en el botón Todos para aplicar el formato a todos los niveles." #. BiZ3o #: indices_index.xhp @@ -10193,7 +10193,7 @@ "bm_id3154897\n" "help.text" msgid "Navigator; overview in texts hyperlinks;jumping to objects;quickly moving to, within text frames;jumping to tables;jumping to headings;jumping to pages;jumping to jumping;to text elements overviews;Navigator in text documents" -msgstr "Navegador; visión general en los textos hipervínculos;saltar a objetos;moverse rápidamente por, en texto marcos;saltar a tablas;saltar a encabezados;saltar a páginas;saltar a saltar a;a elementos de texto visiones generales;Navegador en documentos de texto" +msgstr "Navegador; visión general en los textos hiperenlaces;saltar a objetos;moverse rápidamente por, en texto marcos;saltar a tablas;saltar a encabezados;saltar a páginas;saltar a saltar a;a elementos de texto visiones generales;Navegador en documentos de texto" #. RLvQ6 #: navigator.xhp @@ -12335,7 +12335,7 @@ "par_id601615419994433\n" "help.text" msgid "Place cursor between the page with the page style and the page with the style specified in Next style." -msgstr "" +msgstr "Coloque el cursor entre la página con el estilo de página y la página con el estilo especificado en Estilo siguiente." #. V4dVd #: pagestyles.xhp @@ -15089,7 +15089,7 @@ "par_id3156112\n" "help.text" msgid "You can also press Command Ctrl+B, type the text that you want to format in bold, and then press Command Ctrl+B when you are finished." -msgstr "También se puede pulsar Comando Control + B, escribir el texto al que se desea aplicar negrita y, a continuación, pulsar Comando Control+B cuando se haya concluido." +msgstr "También se puede presionar ⌘BCtrl + N, escribir el texto al que se desea aplicar negrita y, a continuación, presionar ⌘BCtrl + Z cuando se haya concluido." #. ExVea #: shortcut_writing.xhp @@ -15125,7 +15125,7 @@ "par_id3151112\n" "help.text" msgid "You can also press CommandCtrl+I, type the text that you want to format in italic, and then press CommandCtrl+I when you are finished." -msgstr "También puede presionar ComandoCtrl+K, escriba el texto que quiere formatear en cursiva, y luego presione ComandoCtrl+K cuando termine." +msgstr "También puede presionar ⌘ICtrl + K, escribir el texto al que quiera dar formato de itálica y, por último, presionar ⌘ICtrl + K cuando termine." #. 5WmCk #: shortcut_writing.xhp @@ -15296,7 +15296,7 @@ "par_id1998962\n" "help.text" msgid "In the Smart Tags menu you see the available actions that are defined for this Smart Tag. Choose an option from the menu. The Smart Tags Options command opens the Smart Tags page of Tools - Autocorrect Options." -msgstr "Dentro de un menú de etiqueta inteligente ves las acciones disponibles que estan definidos para esta etiqueta inteligente. Seleccione una opcion desde el menú. El comando de opciones de etiquetas inteligentes abre la pagina de etiquetas inteligentes dentro de Herramientas - Corrección automática de opción." +msgstr "En el menú Etiquetas inteligentes radican las acciones disponibles que se han definido para cada etiqueta inteligente. Elija una opción del menú. La orden Opciones de etiquetas inteligentes abre la pestaña Etiquetas inteligentes de Herramientas ▸ Opciones de corrección automática." #. bWm2N #: smarttags.xhp @@ -15584,7 +15584,7 @@ "par_id3156097\n" "help.text" msgid "Choose View - Styles to open the Styles deck in the Sidebar." -msgstr "" +msgstr "Vaya a Ver ▸ Estilos para abrir el grupo Estilos de la barra lateral." #. rKRNy #: stylist_fromselect.xhp @@ -15593,7 +15593,7 @@ "par_id3153402\n" "help.text" msgid "Click the icon at the top of the Styles deck for the style category of the new style." -msgstr "" +msgstr "Pulse en el icono situado en la parte superior del grupo Estilos para elegir la categoría del estilo nuevo." #. tQGu2 #: stylist_fromselect.xhp @@ -15674,7 +15674,7 @@ "par_idN107B2\n" "help.text" msgid "Alternatively, you can drag-and-drop the selection onto the respective icon at the top of the Styles deck. You do not need to open that style category in advance." -msgstr "" +msgstr "Como alternativa, puede arrastrar y colocar la selección sobre el icono respectivo en la parte superior del grupo Estilos. No es necesario abrir esa categoría de estilos anticipadamente." #. Asyoi #: stylist_fromselect.xhp @@ -15863,7 +15863,7 @@ "par_id3149205\n" "help.text" msgid "In the Properties deck of the sidebar, go to the Character area and click the Superscript or Subscript buttons." -msgstr "En la sección Propiedades de la barra lateral, vaya al apartado Carácter y utilice los botones Superíndice o Subíndice." +msgstr "En el grupo Propiedades de la barra lateral, vaya al apartado Carácter y utilice los botones Superíndice o Subíndice." #. VwZA6 #: subscript.xhp @@ -16763,7 +16763,7 @@ "par_id5009308\n" "help.text" msgid "To wrap text to the sides of a table, and to arrange two tables next to another, you must insert the tables into a frame. Click inside the table, press Command Ctrl+A twice to select the whole table, then choose Insert - Frame." -msgstr "Para ajustar el texto a los lados de la tabla y para colocar dos tablas una junto a la otra, deberá insertar las tablas en un marco. Pulse dentro de la tabla, oprima Comando Ctrl+A dos veces para seleccionar la tabla completa, y luego elija Insertar ▸ Marco." +msgstr "Para ajustar el texto a los lados de la tabla y para colocar dos tablas una junto a la otra, deberá insertar las tablas en un marco. Pulse dentro de la tabla, oprima ⌘ACtrl + E dos veces para seleccionar la tabla completa, y luego elija Insertar ▸ Marco." #. 4LuFp #: table_sizing.xhp @@ -17816,7 +17816,7 @@ "par_id3149972\n" "help.text" msgid "(Command+OptionCtrl+Alt) Moves the current paragraph up or down." -msgstr "(Comando+OpciónCtrl+Alt) Hace mover el párrafo actual hacia arriba o hacia abajo." +msgstr "(⌘⌥Ctrl + Alt) Mueve el párrafo actual hacia arriba o hacia abajo." #. D5ECG #: text_nav_keyb.xhp @@ -18086,7 +18086,7 @@ "par_id3154252\n" "help.text" msgid "Drag one of the corner handles of the text object." -msgstr "Arrastre una de las asas en las esquinas del objeto de texto." +msgstr "Tire de una de las agarraderas en las esquinas del objeto de texto." #. XEKCo #: text_rotate.xhp @@ -19229,7 +19229,7 @@ "hd_id4745017\n" "help.text" msgid "Fine-Tuning the Word Completion for Text Documents" -msgstr "Poner a punto el completado de palabras para documentos de texto" +msgstr "Poner a punto la compleción de palabras para documentos de texto" #. P8C3U #: word_completion_adjust.xhp @@ -19436,7 +19436,7 @@ "par_idN10809\n" "help.text" msgid "Word Completion" -msgstr "Completado de palabras" +msgstr "Compleción de palabras" #. QETHk #: word_completion_adjust.xhp @@ -19445,7 +19445,7 @@ "par_id5458845\n" "help.text" msgid "Using Word Completion" -msgstr "Usando completar palabra" +msgstr "Utilizar la compleción de palabras" #. GGZk7 #: words_count.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter.po libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter.po --- libreoffice-7.3.4/translations/source/gug/helpcontent2/source/text/swriter.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/helpcontent2/source/text/swriter.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1310,7 +1310,7 @@ "par_idN10706\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "Distribuir filas equitativamente" +msgstr "Distribuir filas uniformemente" #. pTncP #: main0110.xhp @@ -1481,7 +1481,7 @@ "par_id841630938899606\n" "help.text" msgid "Allows a page break or column break inside a row of the table. This option is not applied to the first row in a table if the Repeat Heading option is selected." -msgstr "" +msgstr "Permite un salto de página o de columna dentro de una fila de la tabla. Esta opción no se aplica a la primera fila de la tabla si se selecciona la opción Repetir cabecera." #. kwKdS #: main0110.xhp @@ -1706,7 +1706,7 @@ "par_id901529883673111\n" "help.text" msgid "Opens the Styles deck in the sidebar." -msgstr "Abre la sección Estilos de la barra lateral." +msgstr "Abre la página Estilos de la barra lateral." #. VmXct #: main0120.xhp diff -Nru libreoffice-7.3.4/translations/source/gug/sc/messages.po libreoffice-7.3.5/translations/source/gug/sc/messages.po --- libreoffice-7.3.4/translations/source/gug/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-08-16 15:23+0000\n" "Last-Translator: Porfiria Orrego \n" "Language-Team: LANGUAGE \n" @@ -25593,97 +25593,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26062,149 +26062,149 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Myatyrõ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Sa'y" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Cuadrícula" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Ñe'ẽ:" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Jehechajey" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Oje'éva" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Mbojoja" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Hecha" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Myatyrõ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Hecha" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Aty" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Letra Háicha" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Alineación" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Hecha" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Moinge" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimedia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ma_rco" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Myatyrõ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Cuadrícula" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/gug/sd/messages.po libreoffice-7.3.5/translations/source/gug/sd/messages.po --- libreoffice-7.3.4/translations/source/gug/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-08-02 16:44+0000\n" "Last-Translator: Porfiria Orrego \n" "Language-Team: LANGUAGE \n" @@ -4175,109 +4175,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_raw" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "-Mbyte" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Mombyteha" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7092,109 +7092,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/sw/messages.po libreoffice-7.3.5/translations/source/gug/sw/messages.po --- libreoffice-7.3.4/translations/source/gug/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-08-19 12:02+0200\n" "Last-Translator: pastora \n" "Language-Team: LANGUAGE \n" @@ -10544,20 +10544,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilo" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14004,37 +14004,37 @@ msgstr "Ñomoambue base de datos" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Myesakã" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Ojepuru ko'ãnga base de datos" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Base de datos jehupytyhaguã" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Kundaha..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14044,31 +14044,31 @@ "Eipuru votõ kundaha reiporavo haguã peteĩ ñongatuha de base de datos." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Ñomoambue base de datos" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de datos oñemoĩ documentope:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20139,109 +20139,109 @@ msgstr "Puru _documento ko'ãgagua" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Japo peteĩ documento _pyahu" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Ñepyrũ peteĩ documento _oĩhágui" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Ñepyrũ peteĩ _plantillagui" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Ñepyrũ peteĩ documento _oñeñongatu ramóva" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "K_undaha..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "K_undaha..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Eiporavo documento oñepyrũha mbojoaju pareha guarã" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22385,49 +22385,49 @@ msgstr "Mba'e" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcionáke" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Ojeahusta" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperenlace" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordes" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Tesakã" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27142,7 +27142,7 @@ msgstr "Oñemoĩ al día" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/gug/vcl/messages.po libreoffice-7.3.5/translations/source/gug/vcl/messages.po --- libreoffice-7.3.4/translations/source/gug/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/gug/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2324,169 +2324,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Myatyrõ Ndegustaháicha" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "por" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Emoĩ peteĩ borde ijerére mayma rogue" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Folleto" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/chart2/messages.po libreoffice-7.3.5/translations/source/he/chart2/messages.po --- libreoffice-7.3.4/translations/source/he/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-03-12 13:12+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/cui/messages.po libreoffice-7.3.5/translations/source/he/cui/messages.po --- libreoffice-7.3.4/translations/source/he/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -17413,176 +17413,152 @@ msgid "Automatic" msgstr "אוטומטי" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "גלקסי" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ניגודיות גבוהה" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "חמצן" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "קלסי" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "אפס" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "משב רוח" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "סגנון _סמלים:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "דורש הפעלה מחדש" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "להשתמש בה_אצת חומרה" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "להשתמש בהחלקת _קצוות גופנים" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "להשתמש ב־Skia לכל עיבוד התצוגה" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "לאלץ עיבוד תצוגה תכנתי עם Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "דורש הפעלה מחדש. הפעלת האפשרות הזאת תמנע שימוש במנהלי התקן גרפיים." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia מופעלת כרגע." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia מושבתת כרגע." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "פלט גרפי" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "הצגה מ_קדימה של הגופנים" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "ה_חלקת קצוות גופני מסך" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_מ־:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "רשימות גופנים" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/dbaccess/messages.po libreoffice-7.3.5/translations/source/he/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/he/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-01-28 07:37+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -3422,74 +3422,74 @@ msgstr "יצירת מסד נתונים חדש" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "מסד נתונים מו_טמע:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "פתיחת קובץ מסד נתונים חדש" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ב_שימוש לאחרונה:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "פתיחה" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "התחברות למסד נתונים _קיים" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3497,7 +3497,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/extensions/messages.po libreoffice-7.3.5/translations/source/he/extensions/messages.po --- libreoffice-7.3.4/translations/source/he/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-05-18 15:37+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "רענון טופס" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "כתובת" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ריבוי חלקים" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "טקסט" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "סטנדרטי (קצר)‏" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "תבנית רגילה (YY קצר)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "תבנית רגילה (YYYY קצרה)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "סטנדרטי (ארוך)‏" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 אחה\"צ" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 אחה\"צ" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "לא נבחר" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "נבחר" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "לא הוגדר" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "כל הרשומות" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "הרשומה הפעילה" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "העמוד הנוכחי" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "לא" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "כן" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "טופס הורה" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_ריק" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_הורה" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_עצמי" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_למעלה" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ללא" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "בודד" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ריבוי" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "טווח" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "אופקי" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "אנכי" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "בררת מחדל" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "אישור" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ביטול" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "עזרה" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "הרשומה הנבחרת" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "מיקום הרשומה הנבחרת" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "שורה יחידה" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ריבוי שורות" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ריבוי שורות מפורמט" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ללא" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "אופקי" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "אנכי" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "שניהם" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "תלת־ממד" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "שטוח" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "שמאל עליון" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ממורכז שמאל" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "שמאל תחתון" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ימין עליון" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ממורכז ימין" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "למטה ימין" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "שמאל למעלה" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ממורכז למעלה" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ימין למעלה" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "שמאל למטה" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ממורכז למטה" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ימין למטה" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ממורכז" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "שימור" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "החלפה" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "כיווץ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "לא" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "שמירת יחס" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "התאמה לגודל" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "משמאל לימין" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "מימין לשמאל" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "שימוש בהגדרות אובייקט ברמת העל" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "אף פעם" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "כאשר יש מיקוד" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "תמיד" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "לפסקה" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "כתו" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "לעמוד" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "למסגרת" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "לתו" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "לעמוד" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "לתא" diff -Nru libreoffice-7.3.4/translations/source/he/fpicker/messages.po libreoffice-7.3.5/translations/source/he/fpicker/messages.po --- libreoffice-7.3.4/translations/source/he/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-26 09:36+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -216,55 +216,55 @@ msgstr "מועד השינוי" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_פתיחה" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_נגינה" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_שם קובץ:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_סוג קובץ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ל_קריאה בלבד" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "שמירה עם ססמה" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_סיומת אוטומטית לשם קובץ" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "עריכת ה_גדרות מסנן" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "הצפנה עם מפתח GPG" diff -Nru libreoffice-7.3.4/translations/source/he/sc/messages.po libreoffice-7.3.5/translations/source/he/sc/messages.po --- libreoffice-7.3.4/translations/source/he/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-16 04:37+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -25719,97 +25719,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26196,154 +26196,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "סידור" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "צבע" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "רשת" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "שפה" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "סקירה" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_הערות" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "ה_שוואה" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "תצוגה" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_עריכה" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "סידור" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "תצוגה" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "קיבוץ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "גופן" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "יישור" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "תצוגה" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "הוספה" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "מדיה" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "מ_סגרת" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "סידור" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "רשת" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/he/sd/messages.po libreoffice-7.3.5/translations/source/he/sd/messages.po --- libreoffice-7.3.4/translations/source/he/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-14 21:37+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -4222,119 +4222,119 @@ msgstr "~טבלה" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 #, fuzzy msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "תמונה" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 #, fuzzy msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~תמונה" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_ציור" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 #, fuzzy msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~ציור" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "אובייקט" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~אובייקט" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 #, fuzzy msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_מדיה" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 #, fuzzy msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~מדיה" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 #, fuzzy msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_טופס" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 #, fuzzy msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~טופס" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 #, fuzzy msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "הר_חבה" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 #, fuzzy msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "הר~חבה" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 #, fuzzy msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_כלים" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 #, fuzzy msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" @@ -7195,109 +7195,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/sw/messages.po libreoffice-7.3.5/translations/source/he/sw/messages.po --- libreoffice-7.3.4/translations/source/he/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-06 09:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565194319.000000\n" #. v3oJv @@ -10636,19 +10636,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "סגנונות" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14162,37 +14162,37 @@ msgstr "החלפת מסדי נתונים" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "הגדרה" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "מסדי נתונים בשימוש" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "מסדי נתונים _זמינים" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "דפדוף...‏" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14202,31 +14202,31 @@ "השתמש בכפתור הדפדוף כדי לבחור קובץ מסד נתונים.‏" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "החלפת מסדי נתונים" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "מסד הנתונים הנגיש מהמסמך:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20406,111 +20406,111 @@ msgstr "להשתמש במסמך ה_נוכחי" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "יצירת מסמך ח_דש" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "יוצר מסמך Writer חדש לשימוש עבור מיזוג הדואר." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "התחלה ממסמך _קיים" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "נא לבחור מסמך Writer קיים כדי להשתמש בו כבסיס למסמך מיזוג הדואר." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "התחלה מ_תבנית" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "נא לבחור את התבנית ממנה ברצונך ליצור את מסמך מיזוג הדואר שלך." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "דפדוף...‏" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "דפדוף...‏" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22678,50 +22678,50 @@ msgstr "עצם" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "סוג" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "אפשרויות" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "גלישה" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "קישור" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "גבולות" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "שטח" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "שקיפות" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27561,7 +27561,7 @@ msgstr "עדכון" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/he/vcl/messages.po libreoffice-7.3.5/translations/source/he/vcl/messages.po --- libreoffice-7.3.4/translations/source/he/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/he/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-03-08 08:36+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "בהתאמה אישית" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "עמודים:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "לפי" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "גבול:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "בין עמודים" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "מרחק:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "לגבול הגיליון" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "סדר:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "משמאל לימין ואז למטה" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "מלמעלה למטה ואז ימינה" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "מלמעלה למטה ואז שמאלה" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "מימין לשמאל ואז למטה" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ציור מסגרת סביב כל עמוד" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "עלון" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "תצוגה מקדימה לאוסף" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "פריסת עמוד" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "כללי" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/chart2/messages.po libreoffice-7.3.5/translations/source/hi/chart2/messages.po --- libreoffice-7.3.4/translations/source/hi/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3701,7 +3701,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/cui/messages.po libreoffice-7.3.5/translations/source/hi/cui/messages.po --- libreoffice-7.3.4/translations/source/hi/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17549,179 +17549,153 @@ msgid "Automatic" msgstr "स्वचालित" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "अधिक विरोध" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "आक्सीजन" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "क्लासिक" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "आलेखी आउटपुट" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "फ़ॉन्ट पूर्वावलोकन दिखाएँ (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "फ़ॉन्ट सूची" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/dbaccess/messages.po libreoffice-7.3.5/translations/source/hi/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/hi/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Hindi \n" @@ -3476,74 +3476,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "अंतस्थापित डेटाबेस" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "हाल ही में प्रयुक्त (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "खोलें" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3551,7 +3551,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/extensions/messages.po libreoffice-7.3.5/translations/source/hi/extensions/messages.po --- libreoffice-7.3.4/translations/source/hi/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,593 +309,579 @@ msgid "Refresh form" msgstr "फार्म ताज़ा करें" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "पाएं" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "प्रेषित करें" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "बहुलपार्ट" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "पाठ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "मानक (छोटा)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "मानक (छोटा YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "मानक (छोटा YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "मानक (बड़ा)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 पूर्वाह्न" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 पूर्वाह्न" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "कोई नहीं चुना गया" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "चयनित" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "परिभाषित नहीं" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सभी रिकार्ड" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "सक्रिय रिकार्ड" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "मौजूदा पृष्ठ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "नहीं" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "हाँ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "जनक फार्म" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "प्रति: (_T)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "कोई नहीं" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "अकेला" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "बहुल" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "दायरा" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "क्षैतिज" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "लम्बवत" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "तयशुदा" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ठीक" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द करें" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदद" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "चुनी हुई प्रविष्टि" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "चुनी हुई प्रविष्टि की स्थिति" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "एकल पंक्ति" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "बहु पंक्ति" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "प्रारूपण के साथ बहुल पंक्ति" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (यूनिक्स)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (विंडोज़)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "कोई नहीं" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "क्षैतिज" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "लम्बवत" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दोनों" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "समतल" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ऊपरी बायां" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "बायां केंद्रित" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "निचला बायां" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ऊपरी दायाँ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "दायां केंद्रित" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "निचला दायाँ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ऊपर बायां" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ऊपर केन्द्रित" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ऊपर दायां" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "नीचे बायां" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "नीचे केन्द्रित" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "नीचे दायां" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केन्द्रित" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "संरक्षित करें" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "बदलें" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ऊपर लपेटें" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "नहीं" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "अनुपात बनाए रखें" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "आकार में सीट" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "बायाँ से दाहिना" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "दाहिना से बायाँ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "शीर्षस्थ वस्तु सेटिंग प्रयोग करें" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "कभी नहीं" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "जब केंद्रीकृत हो" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "हमेशा" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "अनुच्छेद में" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "बतौर वर्ण" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठ में" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ढाँचा में" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "वर्ण में" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठ में" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/hi/fpicker/messages.po libreoffice-7.3.5/translations/source/hi/fpicker/messages.po --- libreoffice-7.3.4/translations/source/hi/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फ़ाइल का नाम (~n):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फ़ाइल वर्ग (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "केवल पढ़ने योग्य (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "कूटशब्द के साथ सहेजें (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वचालित फ़ाइल नाम विस्तार (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "फ़िल्टर सेटिंग संपादित करें (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/sc/messages.po libreoffice-7.3.5/translations/source/hi/sc/messages.po --- libreoffice-7.3.4/translations/source/hi/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25732,97 +25732,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26209,153 +26209,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "क्रमबद्ध रखें" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "रंग (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "जाली (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाषा (_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "समीक्षा" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "टिप्पणी (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्य" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "संपादन (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "क्रमबद्ध रखें" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्य" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "समूह" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फ़ॉन्ट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "संरेखण" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्य" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "जोड़ें" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "मीडिया" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ढ़ाचां" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "क्रमबद्ध रखें" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "जाली (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/hi/sd/messages.po libreoffice-7.3.5/translations/source/hi/sd/messages.po --- libreoffice-7.3.4/translations/source/hi/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4239,109 +4239,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7213,109 +7213,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/sw/messages.po libreoffice-7.3.5/translations/source/hi/sw/messages.po --- libreoffice-7.3.4/translations/source/hi/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:00+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10737,19 +10737,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैली" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14259,37 +14259,37 @@ msgstr "डेटाबेस विनिमय करें" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाषित करें" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "डेटाबेस उपयोग में है" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "उपलब्ध डेटाबेस: (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्राउज़ करें..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14299,31 +14299,31 @@ "डेटाबेस फ़ाइल चुनने के लिए ब्राउज़ बटन का प्रयोग करें." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "डेटाबेस विनिमय करें" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "दस्तावेज़ में लागू डेटाबेस:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20527,110 +20527,110 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्रॉउज करें (_r)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्रॉउज करें (_r)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "डाक मिलान के लिए आंरभिक दस्तावेज़ चुनें" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22793,49 +22793,49 @@ msgstr "वस्तु" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकार" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "विकल्प" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "लपेटें" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपरलिंक" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "किनारा" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शिता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मैक्रो" @@ -27665,7 +27665,7 @@ msgstr "अद्यतन करें" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hi/vcl/messages.po libreoffice-7.3.5/translations/source/hi/vcl/messages.po --- libreoffice-7.3.4/translations/source/hi/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hi/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2335,169 +2335,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "मनपसंद" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "द्वारा" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "पृष्ठों के बीच में" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "शीट बॉर्डर में" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "हर पृष्ठ के गिर्द एक बॉर्डर खींचें" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ब्रोशर" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/accessibility/messages.po libreoffice-7.3.5/translations/source/hr/accessibility/messages.po --- libreoffice-7.3.4/translations/source/hr/accessibility/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/accessibility/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2021-04-13 12:38+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563276818.000000\n" #. be4e7 @@ -129,12 +129,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/avmedia/messages.po libreoffice-7.3.5/translations/source/hr/avmedia/messages.po --- libreoffice-7.3.4/translations/source/hr/avmedia/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/avmedia/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563288571.000000\n" #. FaxGP @@ -201,12 +201,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/basctl/messages.po libreoffice-7.3.5/translations/source/hr/basctl/messages.po --- libreoffice-7.3.4/translations/source/hr/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562147386.000000\n" #. fniWp @@ -616,12 +616,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/basic/messages.po libreoffice-7.3.5/translations/source/hr/basic/messages.po --- libreoffice-7.3.4/translations/source/hr/basic/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/basic/messages.po 2022-07-15 19:12:51.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-09-20 13:02+0200\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" -"Last-Translator: Kruno \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563292626.000000\n" #. CacXi @@ -832,12 +832,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/chart2/messages.po libreoffice-7.3.5/translations/source/hr/chart2/messages.po --- libreoffice-7.3.4/translations/source/hr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,12 +93,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/connectivity/messages.po libreoffice-7.3.5/translations/source/hr/connectivity/messages.po --- libreoffice-7.3.4/translations/source/hr/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563309493.000000\n" #. 9KHB8 @@ -659,12 +659,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/cui/messages.po libreoffice-7.3.5/translations/source/hr/cui/messages.po --- libreoffice-7.3.4/translations/source/hr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,12 +135,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -15984,7 +15984,7 @@ #: cui/uiconfig/ui/optproxypage.ui:240 msgctxt "optproxypage|ftpft" msgid "_FTP proxy:" -msgstr "_FTP proxy:" +msgstr "_FTP proksi:" #. ZaUmG #: cui/uiconfig/ui/optproxypage.ui:254 @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Automatski" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaksija" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Visoki kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Kisik" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasičan" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Povjetarac" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_til ikona:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Zahtijeva ponovno pokretanje" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Koristi _hardversko ubrzanje" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Koristi zag_lađivanje" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Koristi Skia za sva iscrtavanja" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Prisili iscrtavanje upotrebom Skia softvera" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Zahtijeva ponovno pokretanje. Aktiviranjem ove postavke spriječit će se upotreba grafičkih upravljačkih programa." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia je trenutačno aktiviran." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia je trenutačno deaktiviran." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafički ispis" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Prikaži p_regled fontova" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Za_glađivanje fontova na ekranu" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "o_d:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Popisi fontova" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/dbaccess/messages.po libreoffice-7.3.5/translations/source/hr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/hr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,12 +87,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -3395,73 +3395,73 @@ msgstr "Stvori _novu bazu podataka" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Ugrađena baza podataka:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Otvori postojeću datoteku baze po_dataka" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Nedavno ko_rišteno:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otvori" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Spoji se na postojeću bazu poda_taka" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/desktop/messages.po libreoffice-7.3.5/translations/source/hr/desktop/messages.po --- libreoffice-7.3.4/translations/source/hr/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563445670.000000\n" #. v2iwK @@ -50,13 +50,13 @@ #: desktop/inc/strings.hrc:29 msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY" msgid "Synchronizing repository for %NAME extensions" -msgstr "Sinkroniziranje spremišta za %NAME dodatke" +msgstr "Sinkronizira se repozitorij za %NAME dodatke" #. dp8bf #: desktop/inc/strings.hrc:31 msgctxt "RID_STR_REGISTERING_PACKAGE" msgid "Enabling: " -msgstr "Omogućavanje: " +msgstr "Uključivanje: " #. xBysg #: desktop/inc/strings.hrc:32 @@ -74,7 +74,7 @@ #: desktop/inc/strings.hrc:34 msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE" msgid "This media-type is not supported: " -msgstr "Vrsta medija nije podržana: " +msgstr "Ova vrsta medija nije podržana: " #. VHcMc #: desktop/inc/strings.hrc:35 @@ -92,13 +92,13 @@ #: desktop/inc/strings.hrc:38 msgctxt "RID_STR_CONF_SCHEMA" msgid "Configuration Schema" -msgstr "Schema postavki" +msgstr "Schema konfiguracije" #. cL9MC #: desktop/inc/strings.hrc:39 msgctxt "RID_STR_CONF_DATA" msgid "Configuration Data" -msgstr "Konfiguraciski Podatci" +msgstr "Podaci konfiguracije" #. S8Pj8 #: desktop/inc/strings.hrc:41 @@ -116,7 +116,7 @@ #: desktop/inc/strings.hrc:43 msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME" msgid "The library name could not be determined." -msgstr "Ime biblioteke se ne može odrediti." +msgstr "Ime biblioteke se nije moglo odrediti." #. G6SqW #: desktop/inc/strings.hrc:45 @@ -134,7 +134,7 @@ #: desktop/inc/strings.hrc:48 msgctxt "RID_STR_DYN_COMPONENT" msgid "UNO Dynamic Library Component" -msgstr "UNO element dinamičke biblioteke" +msgstr "UNO komponenta dinamičke biblioteke" #. SK5Ay #: desktop/inc/strings.hrc:49 @@ -152,19 +152,19 @@ #: desktop/inc/strings.hrc:51 msgctxt "RID_STR_COMPONENTS" msgid "UNO Components" -msgstr "Komponente UNO" +msgstr "UNO komponente" #. G6LCn #: desktop/inc/strings.hrc:52 msgctxt "RID_STR_RDB_TYPELIB" msgid "UNO RDB Type Library" -msgstr "UNO RDB Klasa Biblioteke" +msgstr "UNO biblioteka RDB vrste" #. KcXfh #: desktop/inc/strings.hrc:53 msgctxt "RID_STR_JAVA_TYPELIB" msgid "UNO Java Type Library" -msgstr "UNO Java biblioteka oznaka" +msgstr "UNO biblioteka Java vrste" #. wBhDU #: desktop/inc/strings.hrc:55 @@ -188,7 +188,7 @@ #: desktop/inc/strings.hrc:59 msgctxt "RID_STR_HELPPROCESSING_XMLPARSING_ERROR" msgid "The extension will not be installed because an error occurred in the Help files:\n" -msgstr "Nadogradnja neće biti instalirana zbog greške koja se dogodila u datotekama sustava pomoći:\n" +msgstr "Dodatak se neće instalirati zbog greške koja se dogodila u datotekama pomoći:\n" #. u3kcb #: desktop/inc/strings.hrc:61 @@ -200,19 +200,19 @@ #: desktop/inc/strings.hrc:62 msgctxt "RID_CTX_ITEM_REMOVE" msgid "~Remove" -msgstr "~Ukloni" +msgstr "U~kloni" #. s6iho #: desktop/inc/strings.hrc:63 msgctxt "RID_CTX_ITEM_ENABLE" msgid "~Enable" -msgstr "~Omogući" +msgstr "~Uključi" #. CeKUw #: desktop/inc/strings.hrc:64 msgctxt "RID_CTX_ITEM_DISABLE" msgid "~Disable" -msgstr "~Onemogući" +msgstr "~Isključi" #. Z7G4r #: desktop/inc/strings.hrc:65 @@ -224,25 +224,25 @@ #: desktop/inc/strings.hrc:66 msgctxt "RID_STR_ADDING_PACKAGES" msgid "Adding %EXTENSION_NAME" -msgstr "Dodajem %EXTENSION_NAME" +msgstr "Dodaje se %EXTENSION_NAME" #. J5KAU #: desktop/inc/strings.hrc:67 msgctxt "RID_STR_REMOVING_PACKAGES" msgid "Removing %EXTENSION_NAME" -msgstr "Uklanjanje %EXTENSION_NAME" +msgstr "Uklanja se %EXTENSION_NAME" #. A6AzC #: desktop/inc/strings.hrc:68 msgctxt "RID_STR_ENABLING_PACKAGES" msgid "Enabling %EXTENSION_NAME" -msgstr "Omogućujem %EXTENSION_NAME" +msgstr "Uključuje se %EXTENSION_NAME" #. Mh7ag #: desktop/inc/strings.hrc:69 msgctxt "RID_STR_DISABLING_PACKAGES" msgid "Disabling %EXTENSION_NAME" -msgstr "Isključujem %EXTENSION_NAME" +msgstr "Isključuje se %EXTENSION_NAME" #. GjgyB #: desktop/inc/strings.hrc:70 @@ -266,7 +266,7 @@ #: desktop/inc/strings.hrc:73 msgctxt "RID_STR_EXIT_BTN" msgid "Quit" -msgstr "Izlaz" +msgstr "Prekini" #. AEv5h #: desktop/inc/strings.hrc:74 @@ -284,13 +284,13 @@ #: desktop/inc/strings.hrc:77 msgctxt "RID_STR_ERROR_MISSING_DEPENDENCIES" msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:" -msgstr "Dodatak ne može biti uključen ukoliko nisu zadovoljene sljedeće ovisnosti sustava:" +msgstr "Dodatak se ne može uključiti jer sljedeće sustavske ovisnosti nisu zadovoljene:" #. X4uSy #: desktop/inc/strings.hrc:78 msgctxt "RID_STR_ERROR_MISSING_LICENSE" msgid "This extension is disabled because you haven't accepted the license yet.\n" -msgstr "Ovaj dodatak je onemogućen jer još niste prihvatili licenciju.\n" +msgstr "Ovaj dodatak je isključen jer još nisi prihvatio/la licenciju.\n" #. ky6LA #: desktop/inc/strings.hrc:79 @@ -306,21 +306,21 @@ "Click 'OK' to proceed with the installation.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirat ćete dodatak '%NAME'.\n" -"Za nastavak instalacije odaberite 'U redu'.\n" -"Za prekid instalacije odaberite 'Odustani'." +"Instalirat ćeš dodatak „%NAME”.\n" +"Za nastavak instalacije odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. Y4EHy #: desktop/inc/strings.hrc:83 msgctxt "RID_STR_WARNING_INSTALL_EXTENSION_DISABLED" msgid "Extension installation is currently disabled. Please consult your system administrator for more information." -msgstr "Instaliranje dodataka je trenutačno onemogućeno. Obratite se administratoru sustava za daljnje informacije." +msgstr "Instaliranje dodataka je trenutačno isključeno. Obrati se administratoru sustava za daljnje informacije." #. JiEFG #: desktop/inc/strings.hrc:85 msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED" msgid "Extension removal is currently disabled. Please consult your system administrator for more information." -msgstr "Uklanjanje dodataka je trenutačno onemogućeno. Obratite se administratoru sustava za daljnje informacije." +msgstr "Uklanjanje dodataka je trenutačno isključeno. Obrati se administratoru sustava za daljnje informacije." #. LncbY #: desktop/inc/strings.hrc:87 @@ -330,9 +330,9 @@ "Click 'OK' to remove the extension.\n" "Click 'Cancel' to stop removing the extension." msgstr "" -"Obrisat ćete dodatak '%NAME'.\n" -"Odaberite 'U redu' kako biste uklonili dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Izbrisat ćeš dodatak „%NAME”.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. fiYMH #: desktop/inc/strings.hrc:90 @@ -342,9 +342,9 @@ "Click 'OK' to remove the extension.\n" "Click 'Cancel' to stop removing the extension." msgstr "" -"Provjerite da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, ukoliko mijenjate dijeljene dodatke u višekorisničkom okruženju.\n" -"Odaberite 'U redu' kako biste uklonili dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Provjeri da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, kad mijenjaš dijeljene dodatke u višekorisničkom okruženju.\n" +"Odaberi „U redu” za uklanjanje dodatka.\n" +"Za prekid uklanjanja dodatka odaberi „Odustani”." #. bQ675 #: desktop/inc/strings.hrc:94 @@ -354,9 +354,9 @@ "Click 'OK' to enable the extension.\n" "Click 'Cancel' to stop enabling the extension." msgstr "" -"Provjerite da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, ukoliko mijenjate dijeljene dodatke u višekorisničkom okruženju.\n" -"Odaberite 'U redu' kako biste omogućili dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Provjeri da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, kad mijenjaš dijeljene dodatke u višekorisničkom okruženju.\n" +"Odaberi „U redu” za uključivanje dodatka.\n" +"Za prekid uključivanja dodatka odaberi „Odustani”." #. zEGzE #: desktop/inc/strings.hrc:98 @@ -366,21 +366,21 @@ "Click 'OK' to disable the extension.\n" "Click 'Cancel' to stop disabling the extension." msgstr "" -"Provjerite da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, ukoliko mijenjate dijeljene dodatke u višekorisničkom okruženju.\n" -"Odaberite 'U redu' kako biste onemogućili dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Provjeri da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, kad mijenjaš dijeljene dodatke u višekorisničkom okruženju.\n" +"Odaberi „U redu” za isključivanje dodatka.\n" +"Za prekid isključivanja dodatka odaberi „Odustani”." #. bfdYH #: desktop/inc/strings.hrc:102 msgctxt "RID_STR_UNSUPPORTED_PLATFORM" msgid "The extension '%Name' does not work on this computer." -msgstr "Dodatak '%Name' nemože raditi s ovim računalom." +msgstr "Dodatak „%Name” ne radi na ovom računalu." #. cGEv7 #: desktop/inc/strings.hrc:104 msgctxt "RID_DLG_UPDATE_INSTALL_INSTALLING" msgid "Installing extensions..." -msgstr "Instaliram dodatke..." +msgstr "Instaliranje dodataka…" #. TP9Jx #: desktop/inc/strings.hrc:105 @@ -422,7 +422,7 @@ #: desktop/inc/strings.hrc:111 msgctxt "RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL" msgid "The extension will not be installed." -msgstr "Dodatak neće biti instaliran." +msgstr "Dodatak se neće instalirati." #. 2yEGV #: desktop/inc/strings.hrc:113 @@ -434,25 +434,25 @@ #: desktop/inc/strings.hrc:114 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN" msgid "Extension requires at least OpenOffice.org reference version %VERSION" -msgstr "Dodatak zahtjeva barem referentnu inačicu OpenOffice.org %VERSION" +msgstr "Dodatak zahtijeva barem OpenOffice.org verziju %VERSION" #. rcfFe #: desktop/inc/strings.hrc:115 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX" msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION" -msgstr "Dodatak ne podržava referentnu inačicu OpenOffice.org veću od %VERSION" +msgstr "Dodatak ne podržava OpenOffice.org verzije veće od %VERSION" #. 776kM #: desktop/inc/strings.hrc:116 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN" msgid "Extension requires at least %PRODUCTNAME version %VERSION" -msgstr "Dodatak zahtjeva barem %PRODUCTNAME inačicu %VERSION" +msgstr "Dodatak zahtijeva barem %PRODUCTNAME verzije %VERSION" #. P4pgb #: desktop/inc/strings.hrc:117 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MAX" msgid "Extension does not support %PRODUCTNAME versions greater than %VERSION" -msgstr "Dodatak ne podržava %PRODUCTNAME inačicu veću od %VERSION" +msgstr "Dodatak ne podržava %PRODUCTNAME verzije veće od %VERSION" #. dNBtG #: desktop/inc/strings.hrc:119 @@ -463,10 +463,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Novija inačica $DEPLOYED, je već instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Novija verzija $DEPLOYED je već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. TmQCx #: desktop/inc/strings.hrc:123 @@ -477,10 +477,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Novija inačica $DEPLOYED, imena '$OLDNAME', već je instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid instalacije, odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Novija verzija $DEPLOYED, „$OLDNAME’”, je već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. AMTBi #: desktop/inc/strings.hrc:127 @@ -491,10 +491,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Ova inačica je već instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Ova je verzija već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. 5TDnT #: desktop/inc/strings.hrc:131 @@ -505,10 +505,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Ta inačica, imena '$OLDNAME', već je instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid instalacije, odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Ta verzija, „$OLDNAME”, je već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. 9wcAB #: desktop/inc/strings.hrc:135 @@ -519,10 +519,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Starija inačica $DEPLOYED, je već instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Starija verzija $DEPLOYED je već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. 2WQJk #: desktop/inc/strings.hrc:139 @@ -533,22 +533,22 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Instalirate inačicu $NEW dodatka '$NAME'.\n" -"Starija inačica $DEPLOYED imena '$OLDNAME', već je instalirana.\n" -"Odaberite 'U redu' kako biste zamijenili instalirani dodatak.\n" -"Za prekid instalacije, odaberite 'Odustani'." +"Instalirat ćeš verziju $NEW dodatka „$NAME”.\n" +"Starija verzija $DEPLOYED, „$OLDNAME”, je već instalirana.\n" +"Za zamjenjivanje instaliranog dodatka odaberi „U redu”.\n" +"Za prekid instalacije odaberi „Odustani”." #. J2X2b #: desktop/inc/strings.hrc:144 msgctxt "RID_DLG_UPDATE_NONE" msgid "No new updates are available." -msgstr "Nisu dostupna nova ažuriranja." +msgstr "Nema novih ažuriranja." #. y7gVg #: desktop/inc/strings.hrc:145 msgctxt "RID_DLG_UPDATE_NOINSTALLABLE" msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'." -msgstr "Nema dostupnih nadogradnji, koje bi se mogle instalirati. Ukoliko želite vidjeti zanemarene ili onemogućene nadogradnje, potvrdite „Prikaži sve nadogradnje”." +msgstr "Nema dostupnih nadogradnji koje bi se mogle instalirati. Ukoliko želiš vidjeti zanemarene ili isključene nadogradnje, označi okvir „Prikaži sve nadogradnje”." #. rq2Co #: desktop/inc/strings.hrc:146 @@ -566,25 +566,25 @@ #: desktop/inc/strings.hrc:148 msgctxt "RID_DLG_UPDATE_NODESCRIPTION" msgid "No more details are available for this update." -msgstr "Nema više dostupni detalja za ovu nadogradnju." +msgstr "Za ovu nadogradnju nema daljnjih informacija." #. NECjC #: desktop/inc/strings.hrc:149 msgctxt "RID_DLG_UPDATE_NOINSTALL" msgid "The extension cannot be updated because:" -msgstr "Dodatak ne može biti nadograđen zbog:" +msgstr "Dodatak se ne može nadograditi zbog:" #. BstEF #: desktop/inc/strings.hrc:150 msgctxt "RID_DLG_UPDATE_NODEPENDENCY" msgid "Required %PRODUCTNAME version doesn't match:" -msgstr "Ne podudara se obvezna inačica %PRODUCTNAME:" +msgstr "Potrebna %PRODUCTNAME verzija se ne podudara:" #. fz5C3 #: desktop/inc/strings.hrc:151 msgctxt "RID_DLG_UPDATE_NODEPENDENCY_CUR_VER" msgid "You have %PRODUCTNAME %VERSION" -msgstr "Vi imate %PRODUCTNAME %VERSION" +msgstr "Ti imaš %PRODUCTNAME %VERSION" #. ofeoD #: desktop/inc/strings.hrc:152 @@ -596,13 +596,13 @@ #: desktop/inc/strings.hrc:153 msgctxt "RID_DLG_UPDATE_VERSION" msgid "Version" -msgstr "Inačica" +msgstr "Verzija" #. JRSnS #: desktop/inc/strings.hrc:154 msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE" msgid "This update will be ignored.\n" -msgstr "Ova nadogradnja će biti zanemarena.\n" +msgstr "Ova nadogradnja će se zanemariti.\n" #. Ea8Mi #: desktop/inc/strings.hrc:156 @@ -644,7 +644,7 @@ #: desktop/inc/strings.hrc:162 msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT" msgid "The configuration file \"$1\" does not support the current version." -msgstr "Konfiguracijska datoteka „$1” ne podržava trenutačnu inačicu." +msgstr "Konfiguracijska datoteka „$1” ne podržava trenutačnu verziju." #. q2F59 #: desktop/inc/strings.hrc:163 @@ -656,19 +656,19 @@ #: desktop/inc/strings.hrc:164 msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED" msgid "User installation could not be completed. " -msgstr "Korisnička instalacija ne može biti dovršena. " +msgstr "Korisnička instalacija se ne može dovršiti. " #. dgxZP #: desktop/inc/strings.hrc:165 msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE" msgid "The configuration service is not available." -msgstr "Servis postavki nije dostupan." +msgstr "Usluga za konfiguriranje nije dostupna." #. 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 "Za popravak instalacije pokrenite instalacijski program s CD-a ili iz mape koja sadrži instalacijske pakete." +msgstr "Za ispravljanje instalacije pokreni instalacijski program sa CD-a ili iz mape koja sadrži instalacijske pakete." #. d3or5 #: desktop/inc/strings.hrc:167 @@ -706,13 +706,13 @@ #: desktop/inc/strings.hrc:171 msgctxt "STR_ERR_PRINTDISABLED" msgid "Printing is disabled. No documents can be printed." -msgstr "Ispisivanje je isključeno. Dokumenti ne mogu biti ispisani." +msgstr "Ispisivanje je isključeno. Dokumenti se ne mogu ispisati." #. VxBTE #: desktop/inc/strings.hrc:172 msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE" msgid "The path manager is not available.\n" -msgstr "Upravljač za putanje nije dostupan.\n" +msgstr "Upravljač putanja nije dostupan.\n" #. Cy4Wz #: desktop/inc/strings.hrc:173 @@ -738,13 +738,13 @@ #: desktop/inc/strings.hrc:176 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1" msgid "Extension Software License Agreement of $NAME:" -msgstr "Licencijski ugovor dodatka programu $NAME:" +msgstr "Ugovor o licenziranju softverskog dodatka $NAME:" #. DEkAo #: desktop/inc/strings.hrc:177 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2" msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup." -msgstr "Pročitajte cijeli licencijski ugovor, prikazan je iznad. Licencijski ugovor prihvaćate ispisivanjem riječi „yes” u konzoli i pritiskom tipke Enter. Želite li prekinuti instalaciju dodatka, upišite riječ „no”." +msgstr "Pročitaj cijeli gore prikazani licencijski ugovor. Licencijski ugovor prihvaćaš upisom riječi „yes” u konzoli i pritiskom tipke „Enter”. Za odbijanje i prekidanje postavljanja dodatka, upiši riječ „no”." #. wANiC #: desktop/inc/strings.hrc:181 @@ -756,7 +756,7 @@ #: desktop/inc/strings.hrc:182 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4" msgid "Your input was not correct. Please enter \"yes\" or \"no\":" -msgstr "Vaš upis nije ispravan. Upišite „da” ili „ne”:" +msgstr "Tvoj unos nije ispravan. Upiši „da” ili „ne”:" #. A9CdG #: desktop/inc/strings.hrc:183 @@ -786,7 +786,7 @@ #: desktop/inc/strings.hrc:187 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 "unopkg se ne može pokrenuti. Datoteka zaključavanja označava da je već pokrenut. Ako to ipak nije slučaj, obrišite datoteku zaključavanja:" +msgstr "unopkg se ne može pokrenuti. Datoteka zaključavanja označava da je već pokrenut. Ako to ipak nije slučaj, izbriši datoteku zaključavanja:" #. MLhHo #: desktop/inc/strings.hrc:189 @@ -847,12 +847,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -863,43 +863,43 @@ #: desktop/uiconfig/ui/dependenciesdialog.ui:18 msgctxt "dependenciesdialog|Dependencies" msgid "System dependencies check" -msgstr "Provjera sistemskih međuovisnosti" +msgstr "Provjera sustavskih ovisnosti" #. JNnsh #: desktop/uiconfig/ui/dependenciesdialog.ui:73 msgctxt "dependenciesdialog|label1" msgid "The extension cannot be installed as the following system dependencies are not fulfilled:" -msgstr "Dodatak ne može biti instaliran jer sljedeće sistemske međuovisnosti nisu zadovoljene:" +msgstr "Dodatak se ne može instalirati jer sljedeće sustavske ovisnosti nisu zadovoljene:" #. FfYDj #: desktop/uiconfig/ui/extensionmanager.ui:8 msgctxt "extensionmanager|ExtensionManagerDialog" msgid "Extension Manager" -msgstr "Upravljač za dodatke" +msgstr "Upravljač dodataka" #. gjCkd #: desktop/uiconfig/ui/extensionmanager.ui:80 msgctxt "extensionmanager|shared" msgid "Installed for all users" -msgstr "Instaliran za sve korisnike" +msgstr "Instalirano za sve korisnike" #. pnXoG #: desktop/uiconfig/ui/extensionmanager.ui:89 msgctxt "extensionmanager|extended_tip|shared" msgid "Filter extensions available for all users of this computer." -msgstr "" +msgstr "Filterski dodaci dostupni su za sve korisnike ovog računala." #. zhqZT #: desktop/uiconfig/ui/extensionmanager.ui:100 msgctxt "extensionmanager|user" msgid "Installed for current user" -msgstr "Instalirano za trenutačnog korisnika" +msgstr "Instalirano za aktualnog korisnika" #. QbHCi #: desktop/uiconfig/ui/extensionmanager.ui:109 msgctxt "extensionmanager|extended_tip|user" msgid "Filter extensions only available for the currently logged in user." -msgstr "" +msgstr "Filterski dodaci dostupni su samo za aktualno prijavljenog korisnika." #. 6wBVk #: desktop/uiconfig/ui/extensionmanager.ui:120 @@ -911,7 +911,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:129 msgctxt "extensionmanager|extended_tip|bundled" msgid "Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here." -msgstr "" +msgstr "Dodaci u paketu instalira administrator sustava pomoću instalacijskih paketa specifičnih za operacijski sustav. Ovdje se ne mogu instalirati, ažurirati ili ukloniti." #. T8BGR #: desktop/uiconfig/ui/extensionmanager.ui:144 @@ -923,7 +923,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:178 msgctxt "extensionmanager|extended_tip|extensions" msgid "Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog." -msgstr "" +msgstr "Odaberi dodatak koji želiš ukloniti, uključiti ili isključiti. Za neke dodatke možeš otvoriti i dijaloški okvir „Mogućnosti”." #. DLME5 #: desktop/uiconfig/ui/extensionmanager.ui:200 @@ -935,19 +935,19 @@ #: desktop/uiconfig/ui/extensionmanager.ui:207 msgctxt "extensionmanager|extended_tip|optionsbtn" msgid "Select an installed extension, then click to open the Options dialog for the extension." -msgstr "" +msgstr "Odaberi instalirani dodatak, a zatim ga klikni za otvaranje dijaloškog okvira „Mogućnosti” za dodatak." #. ieiF4 #: desktop/uiconfig/ui/extensionmanager.ui:219 msgctxt "extensionmanager|updatebtn" msgid "Check for _Updates" -msgstr "Provjera až_uriranja" +msgstr "Provjeri až_uriranja" #. rirpA #: desktop/uiconfig/ui/extensionmanager.ui:226 msgctxt "extensionmanager|extended_tip|updatebtn" msgid "Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately." -msgstr "" +msgstr "Pritisni za provjeravanje ažuriranja na internetu za sve instalirane dodatke. Za provjeravanje ažuriranja samo za odabrani dodatak, odaberi naredbu „Ažuriraj” u kontekstnom izborniku. Provjera dostupnosti ažuriranja počinje odmah." #. GehiB #: desktop/uiconfig/ui/extensionmanager.ui:239 @@ -959,7 +959,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:248 msgctxt "extensionmanager|extended_tip|addbtn" msgid "Click Add to add an extension." -msgstr "" +msgstr "Pritisni „Dodaj” za dodavanje dodatka." #. wNCAw #: desktop/uiconfig/ui/extensionmanager.ui:261 @@ -971,49 +971,49 @@ #: desktop/uiconfig/ui/extensionmanager.ui:268 msgctxt "extensionmanager|extended_tip|removebtn" msgid "Select the extension that you want to remove, and then click Remove." -msgstr "" +msgstr "Odaberi dodatak koji želiš ukloniti i zatim klikni „Ukloni”." #. qHMdq #: desktop/uiconfig/ui/extensionmanager.ui:281 msgctxt "extensionmanager|enablebtn" msgid "_Enable" -msgstr "O_mogući" +msgstr "_Uključi" #. vz3Ti #: desktop/uiconfig/ui/extensionmanager.ui:311 msgctxt "extensionmanager|progressft" msgid "Adding %EXTENSION_NAME" -msgstr "Dodajem %EXTENSION_NAME" +msgstr "Dodaje se %EXTENSION_NAME" #. A33SB #: desktop/uiconfig/ui/extensionmanager.ui:346 msgctxt "extensionmanager|getextensions" msgid "Get more extensions online..." -msgstr "Preuzmite i druge dodatke s interneta..." +msgstr "Preuzmi i druge dodatke s interneta..." #. FBvRd #: desktop/uiconfig/ui/extensionmanager.ui:354 msgctxt "extensionmanager|extended_tip|getextensions" msgid "You can find a collection of extensions on the Web." -msgstr "" +msgstr "Zbirku dodataka možeš pronaći na webu." #. vSiEz #: desktop/uiconfig/ui/extensionmanager.ui:389 msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog" msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions." -msgstr "" +msgstr "Upravljač dodataka dodaje, uklanja, isključuje, uključuje i ažurira %PRODUCTNAME dodatke." #. EGwkP #: desktop/uiconfig/ui/installforalldialog.ui:12 msgctxt "installforalldialog|InstallForAllDialog" msgid "For whom do you want to install the extension?" -msgstr "Za koga želite instalirati dodatak?" +msgstr "Za koga želiš instalirati dodatak?" #. bFbLc #: desktop/uiconfig/ui/installforalldialog.ui:13 msgctxt "installforalldialog|InstallForAllDialog" msgid "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment." -msgstr "Provjerite da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, ukoliko instalirate dodatke u višekorisničkom okruženju." +msgstr "Provjeri da drugi korisnici ne rade sa istom %PRODUCTNAME instalacijom, kad instaliraš dodatak za sve korisnike u višekorisničkom okruženju." #. urmUy #: desktop/uiconfig/ui/installforalldialog.ui:24 @@ -1031,7 +1031,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:8 msgctxt "licensedialog|LicenseDialog" msgid "Extension Software License Agreement" -msgstr "Licencijski ugovor programskog dodatka" +msgstr "Ugovor o licenziranju softverskog dodatka" #. Q6dKY #: desktop/uiconfig/ui/licensedialog.ui:24 @@ -1049,7 +1049,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:70 msgctxt "licensedialog|head" msgid "Please follow these steps to proceed with the installation of the extension:" -msgstr "Pratite ove korake za nastavak instalacije dodatka:" +msgstr "Prati ove korake za nastavljanje s instalacijom dodatka:" #. tEDSx #: desktop/uiconfig/ui/licensedialog.ui:92 @@ -1067,13 +1067,13 @@ #: desktop/uiconfig/ui/licensedialog.ui:143 msgctxt "licensedialog|label4" msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text." -msgstr "Pročitajte cijeli licencijski ugovor. Koristite se klizačem ili tipkom 'Scroll Down' kako biste vidjeli cijeli tekst u ovom dijaloškom okviru." +msgstr "Pročitaj cijeli licencijski ugovor. Koristi klizač ili gumb „Kliži prema dolje” za prikaz cijelog teksta u ovom dijaloškom okviru." #. oyoCK #: desktop/uiconfig/ui/licensedialog.ui:160 msgctxt "licensedialog|label5" msgid "Accept the License Agreement for the extension by pressing the 'Accept' button." -msgstr "Prihvatite licencijski ugovor dodatka pritiskom na 'Prihvati'." +msgstr "Prihvatite licencijski ugovor dodatka pritiskom na „Prihvati”." #. ydBcE #: desktop/uiconfig/ui/licensedialog.ui:173 @@ -1085,19 +1085,19 @@ #: desktop/uiconfig/ui/showlicensedialog.ui:8 msgctxt "showlicensedialog|extended_tip|ShowLicenseDialog" msgid "Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension." -msgstr "" +msgstr "Pročitaj licenciju. Po poterbi klikni gumb „Kliži prema dolje” za klizanje. Klikni „Prihvati” za nastavljanje s instalacijom dodatka." #. qquCs #: desktop/uiconfig/ui/showlicensedialog.ui:13 msgctxt "showlicensedialog|ShowLicenseDialog" msgid "Extension Software License Agreement" -msgstr "Licencijski ugovor softverskih dodataka" +msgstr "Ugovor o licenziranju softverskog dodatka" #. GX3k2 #: desktop/uiconfig/ui/updatedialog.ui:24 msgctxt "updatedialog|UpdateDialog" msgid "Extension Update" -msgstr "Ažuriranje dodataka" +msgstr "Ažuriranje dodatka" #. DmHy5 #: desktop/uiconfig/ui/updatedialog.ui:55 @@ -1115,7 +1115,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:135 msgctxt "updatedialog|UPDATE_CHECKING" msgid "Checking..." -msgstr "Provjeravanje ..." +msgstr "Provjeravanje..." #. WkYgi #: desktop/uiconfig/ui/updatedialog.ui:219 @@ -1127,7 +1127,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:228 msgctxt "updatedialog|extended_tip|UPDATE_ALL" msgid "By default, only the downloadable extensions are shown in the dialog. Mark Show all Updates to see also other extensions and error messages." -msgstr "" +msgstr "U dijaloškom okviru se standardno prikazuju samo dodaci koji se mogu preuzeti. Označi „Prikaži sva ažuriranja” za prikaz drugih dodataka i poruka o greškama." #. BriDD #: desktop/uiconfig/ui/updatedialog.ui:257 @@ -1145,7 +1145,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:287 msgctxt "updatedialog|PUBLISHER_LINK" msgid "button" -msgstr "dugme" +msgstr "gumb" #. kgLHP #: desktop/uiconfig/ui/updatedialog.ui:303 @@ -1163,13 +1163,13 @@ #: desktop/uiconfig/ui/updatedialog.ui:352 msgctxt "updatedialog|extended_tip|DESCRIPTIONS" msgid "While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check." -msgstr "" +msgstr "Tijekom provjeravanja ažuriranja, prikazuje se indikator napretka. Pričekaj da se neke poruke prikažu u dijaloškom okviru ili klikni „Odustani” za prekidanje provjere ažuriranja." #. c5FG9 #: desktop/uiconfig/ui/updatedialog.ui:389 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 "" +msgstr "Pritisni gumb „Provjeri ažuriranja” u upravljaču dodataka za provjeravanje novih verzija na internetu za sve instalirane dodatke. Za provjeravanje ažuriranja na internetu samo za odabrani dodatak, desnom tipkom miša otvori kontekstni izbornik, a zatim odaberi „Ažuriraj”." #. YEhMN #: desktop/uiconfig/ui/updateinstalldialog.ui:8 @@ -1193,7 +1193,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 "" +msgstr "Pritisni gumb „Provjeri ažuriranja” u upravljaču dodataka za provjeravanje novih verzija na internetu za sve instalirane dodatke. Za provjeravanje ažuriranja na internetu samo za odabrani dodatak, desnom tipkom miša otvori kontekstni izbornik, a zatim odaberi „Ažuriraj”." #. Kfhc4 #: desktop/uiconfig/ui/updaterequireddialog.ui:8 @@ -1211,7 +1211,7 @@ #: desktop/uiconfig/ui/updaterequireddialog.ui:43 msgctxt "updaterequireddialog|disable" msgid "Disable all" -msgstr "Onemogući sve" +msgstr "Isključi sve" #. VYnoR #: desktop/uiconfig/ui/updaterequireddialog.ui:102 @@ -1223,4 +1223,4 @@ #: desktop/uiconfig/ui/updaterequireddialog.ui:153 msgctxt "updaterequireddialog|progresslabel" msgid "Adding %EXTENSION_NAME" -msgstr "Dodajem %EXTENSION_NAME" +msgstr "Dodaje se %EXTENSION_NAME" diff -Nru libreoffice-7.3.4/translations/source/hr/editeng/messages.po libreoffice-7.3.5/translations/source/hr/editeng/messages.po --- libreoffice-7.3.4/translations/source/hr/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-04-13 12:38+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563324248.000000\n" #. BHYB4 @@ -150,12 +150,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -951,7 +951,7 @@ #: include/editeng/editrids.hrc:169 msgctxt "RID_SVXITEMS_METRIC_TWIP" msgid "twip" -msgstr "twip" +msgstr "tvip" #. vUHdC #: include/editeng/editrids.hrc:170 diff -Nru libreoffice-7.3.4/translations/source/hr/extensions/messages.po libreoffice-7.3.5/translations/source/hr/extensions/messages.po --- libreoffice-7.3.4/translations/source/hr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,12 +87,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Osvježi obrazac" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Višedijelno" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standardno (kratko)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardno (kratko YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardno (kratko YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standardno (dugo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nije odabrano" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Odabrano" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nije definirano" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Svi zapisi" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktivni zapis" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Otvorena stranica" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Da" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Nadređeni obrazac" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nijedno" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jednostruko" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Višestruko" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Raspon" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vodoravno" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Okomito" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Uobičajeno" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "U redu" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Odustani" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoć" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Odabrani zapis" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Položaj odabranoga zapisa" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jednolinijski" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Višelinijski" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Višelinijski s oblikovanjem" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Niti jedan" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vodoravno" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Okomito" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Oboje" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Ravan" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Lijevo gore" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Lijevo centrirano" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Lijevo dolje" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Desno gore" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Desno centrirano" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Desno dolje" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Iznad lijevo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Iznad centrirano" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Iznad desno" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ispod lijevo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ispod centrirano" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ispod desno" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrirano" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Sačuvaj" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zamijeni" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Sklopi" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Zadrži omjer" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Prilagodi na veličinu" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Slijeva nadesno" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Zdesna nalijevo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Koristi postavke nadređenog objekta" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nikada" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kad je odabran" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Uvijek" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Na odlomak" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kao znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranicu" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Na okvir" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Na znak" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranicu" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Na ćeliju" @@ -3190,7 +3178,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:181 msgctxt "datasourcepage|extended_tip|name" msgid "Specifies the data source name." -msgstr "" +msgstr "Određuje naziv izvora podataka." #. iHrkL #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:200 diff -Nru libreoffice-7.3.4/translations/source/hr/filter/messages.po libreoffice-7.3.5/translations/source/hr/filter/messages.po --- libreoffice-7.3.4/translations/source/hr/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563278627.000000\n" #. 5AQgJ @@ -342,12 +342,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/forms/messages.po libreoffice-7.3.5/translations/source/hr/forms/messages.po --- libreoffice-7.3.4/translations/source/hr/forms/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/forms/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563540631.000000\n" #. naBgZ @@ -421,12 +421,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/formula/messages.po libreoffice-7.3.5/translations/source/hr/formula/messages.po --- libreoffice-7.3.4/translations/source/hr/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2022-03-31 21:50+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563309700.000000\n" #. YfKFn @@ -2572,12 +2572,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/fpicker/messages.po libreoffice-7.3.5/translations/source/hr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/hr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562428129.000000\n" #. SJGCw @@ -143,12 +143,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -216,55 +216,55 @@ msgstr "Datum promjene" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Otvori" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Pokreni" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Naziv datoteke:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Vrs_ta datoteke:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Samo za č_itanje" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Spremi s lozinkom" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatska ekstenzija datoteke" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Uredi postavke _filtra" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Šifriraj s GPG ključem" diff -Nru libreoffice-7.3.4/translations/source/hr/framework/messages.po libreoffice-7.3.5/translations/source/hr/framework/messages.po --- libreoffice-7.3.4/translations/source/hr/framework/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/framework/messages.po 2022-07-15 19:12:51.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-06-11 17:08+0200\n" -"PO-Revision-Date: 2022-04-05 10:47+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563445506.000000\n" #. 5dTDC @@ -44,7 +44,7 @@ #: framework/inc/strings.hrc:28 msgctxt "STR_TOOLBAR_CUSTOMIZE_TOOLBAR" msgid "~Customize Toolbar..." -msgstr "~Uredi alatne trake..." +msgstr "~Uredi alatnu traku…" #. DhTM2 #: framework/inc/strings.hrc:29 @@ -92,13 +92,13 @@ #: framework/inc/strings.hrc:36 msgctxt "STR_CLEAR_RECENT_FILES" msgid "Clear List" -msgstr "Očisti popis" +msgstr "Izbriši popis" #. y5BFt #: framework/inc/strings.hrc:37 msgctxt "STR_CLEAR_RECENT_FILES_HELP" msgid "Clears the list with the most recently opened files. This action can not be undone." -msgstr "Čisti popis sa zadnje otvaranim datotekama. Ova radnja se ne može poništiti." +msgstr "Briše popis sa zadnje otvaranim datotekama. Ova radnja se ne može poništiti." #. JDATD #: framework/inc/strings.hrc:38 @@ -122,7 +122,7 @@ #: framework/inc/strings.hrc:41 msgctxt "STR_FULL_DISC_RETRY_BUTTON" msgid "Retry" -msgstr "Ponovi" +msgstr "Pokušaj ponovo" #. Cu3Ch #: framework/inc/strings.hrc:42 @@ -136,19 +136,19 @@ "Press the 'Retry' button after you have allocated more free disk space to retry saving the data.\n" "\n" msgstr "" -"%PRODUCTNAME nije mogao spremiti važne interne informacije zbog nedostatka slobodnog prostora na sljedećoj lokaciji:\n" +"%PRODUCTNAME nije mogao spremiti važne interne informacije zbog nedostatka slobodne memorije na sljedećoj lokaciji:\n" "%PATH\n" "\n" -"Nećete moći nastaviti rad s programom %PRODUCTNAME bez oslobađanja dovoljno slobodnog prostora na toj lokaciji.\n" +"Nećeš moći nastaviti rad s programom %PRODUCTNAME bez oslobađanja dovoljno slobodne memorije na toj lokaciji.\n" "\n" -"Za ponovni pokušaj spremanja podataka, pritisnite tipku Pokušaj ponovno nakon što oslobodite dovoljno slobodnog prostora.\n" +"Za ponovni pokušaj spremanja podataka, pritisni gumb „Pokušaj ponovo” nakon što oslobodiš dovoljno slobodnog memorije.\n" "\n" #. oPFZY #: framework/inc/strings.hrc:43 msgctxt "STR_RESTORE_TOOLBARS" msgid "~Reset" -msgstr "~Vrati izvorno" +msgstr "~Vrati na zadano" #. zHwpD #: framework/inc/strings.hrc:44 @@ -164,7 +164,7 @@ "Please try to reinstall the application." msgstr "" "Došlo je do greške prilikom učitavanja postavki korisničkoga sučelja. Prekinut će se izvršavanje programa.\n" -"Pokušajte pokušajte ga ponovno instalirati." +"Pokušaj ponovo instalirati program." #. grsAx #: framework/inc/strings.hrc:46 @@ -174,7 +174,7 @@ "Please try to remove your user profile for the application." msgstr "" "Došlo je do greške prilikom učitavanja postavki korisničkoga sučelja. Prekinut će se izvršavanje programa.\n" -"Pokušajte izbrisati korisnički profil koji program koristi." +"Pokušaj ukloniti svoj korisnički profil za program." #. qMSRF #: framework/inc/strings.hrc:47 @@ -184,7 +184,7 @@ "Please try to remove your user profile for the application first or try to reinstall the application." msgstr "" "Došlo je do greške prilikom učitavanja postavki korisničkoga sučelja. Prekinut će se izvršavanje programa.\n" -"Prvo pokušajte obrisati korisnički profil koji program koristi i potom pokušajte ponovno instalirati program." +"Najprije pokušaj ukloniti svoj korisnički profil za program ili pokušaj ponovo instalirati program." #. 9FEe5 #: framework/inc/strings.hrc:48 @@ -209,7 +209,7 @@ #: framework/inc/strings.hrc:52 msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE" msgid "Reset to Default Language" -msgstr "Postavi na zadani jezik" +msgstr "Vrati na zadani jezik" #. YEXdS #: framework/inc/strings.hrc:53 @@ -227,7 +227,7 @@ #: framework/inc/strings.hrc:55 msgctxt "STR_LANGSTATUS_HINT" msgid "Text Language. Right-click to set character or paragraph language" -msgstr "Jezik teksta. Desni klik za postavljanje jezika znaka ili odlomka." +msgstr "Jezik teksta. Desni klik za postavljanje jezika znaka ili odlomka" #. ZGDAr #: framework/inc/strings.hrc:57 @@ -287,43 +287,43 @@ #: framework/inc/strings.hrc:66 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "" +msgstr "Formatirano polje" #. V4iMu #: framework/inc/strings.hrc:68 msgctxt "RID_STR_PROPTITLE_PUSHBUTTON" msgid "Push Button" -msgstr "" +msgstr "Gumb „Pritisni”" #. TreFC #: framework/inc/strings.hrc:69 msgctxt "RID_STR_PROPTITLE_RADIOBUTTON" msgid "Option Button" -msgstr "" +msgstr "Gumb opcija" #. NFysA #: framework/inc/strings.hrc:70 msgctxt "RID_STR_PROPTITLE_FIXEDTEXT" msgid "Label Field" -msgstr "" +msgstr "Polje oznake" #. E5mMK #: framework/inc/strings.hrc:71 msgctxt "RID_STR_PROPTITLE_GROUPBOX" msgid "Group Box" -msgstr "" +msgstr "Okvir grupe" #. 5474w #: framework/inc/strings.hrc:72 msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON" msgid "Image Button" -msgstr "" +msgstr "Gumb za sliku" #. qT2Ed #: framework/inc/strings.hrc:73 msgctxt "RID_STR_PROPTITLE_IMAGECONTROL" msgid "Image Control" -msgstr "" +msgstr "Upravljanje slikom" #. 6Qvho #: framework/inc/strings.hrc:74 @@ -335,19 +335,19 @@ #: framework/inc/strings.hrc:75 msgctxt "RID_STR_PROPTITLE_SCROLLBAR" msgid "Scrollbar" -msgstr "" +msgstr "Klizna traka" #. VtEN6 #: framework/inc/strings.hrc:76 msgctxt "RID_STR_PROPTITLE_SPINBUTTON" msgid "Spin Button" -msgstr "" +msgstr "Gumb za okretanje" #. eGgm4 #: framework/inc/strings.hrc:77 msgctxt "RID_STR_PROPTITLE_NAVBAR" msgid "Navigation Bar" -msgstr "" +msgstr "Navigacijska traka" #. wH3TZ msgctxt "stock" @@ -402,12 +402,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.5/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.4/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-07-15 19:12:51.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-31 10:35+0200\n" -"PO-Revision-Date: 2021-07-20 08:21+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563540765.000000\n" #. tBfTE @@ -3119,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 "Sljedeći programi koriste datoteke koje se s ovom instalacijom moraju ažurirati.Možete dozvoliti instalacijskom čarobnjaku da ih zatvori i pokuša ponovo pokrenuti, ili ponovo pokrenite sustav za dovršenje instalacije." +msgstr "Sljedeći programi koriste datoteke koje se s ovom instalacijom moraju ažurirati. Možete dozvoliti instalacijskom čarobnjaku da ih zatvori i pokuša ponovo pokrenuti, ili ponovo pokrenite sustav za dovršenje instalacije." #. qDAnG #: Control.ulf @@ -4613,7 +4613,7 @@ "OOO_RADIOBUTTON_11\n" "LngText.text" msgid "&Do not close applications. A reboot will be required to complete the setup." -msgstr "&Nemoj zatvoriti programe. Za dovršenje instalacije bit će potrebno ponovno pokretanje." +msgstr "&Nemoj zatvoriti programe. Za završavanje postavljanja bit će potrebno ponovno pokretanje." #. 94ZFb #: UIText.ulf diff -Nru libreoffice-7.3.4/translations/source/hr/oox/messages.po libreoffice-7.3.5/translations/source/hr/oox/messages.po --- libreoffice-7.3.4/translations/source/hr/oox/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/oox/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-04-13 12:38+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" #. C5e9E #: oox/inc/strings.hrc:15 @@ -80,12 +80,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/reportdesign/messages.po libreoffice-7.3.5/translations/source/hr/reportdesign/messages.po --- libreoffice-7.3.4/translations/source/hr/reportdesign/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/reportdesign/messages.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563323779.000000\n" #. FBVr9 @@ -225,12 +225,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/sc/messages.po libreoffice-7.3.5/translations/source/hr/sc/messages.po --- libreoffice-7.3.4/translations/source/hr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,12 +135,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -25250,97 +25250,97 @@ msgstr "~Pogled" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Slik_a" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Sli~ka" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Crtaj" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Crtaj" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Mediji" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Mediji" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Ispis" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Ispis" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Ob_razac" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Ob~razac" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Pr_oširenje" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Pr~oširenje" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Alati" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Alati" @@ -25699,139 +25699,139 @@ msgstr "Slik_a" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Rasporedi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Boja" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Mreža" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Jezik" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Provjera" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Komentari" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Us_poredi" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Pogled" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "C_rtaj" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Uredi" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Rasporedi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Pogled" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_pa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "F_ont" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Poravnanje" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Pogled" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Umetni" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medij" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Okvi_r" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Rasporedi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Mreža" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Pogled" diff -Nru libreoffice-7.3.4/translations/source/hr/scaddins/messages.po libreoffice-7.3.5/translations/source/hr/scaddins/messages.po --- libreoffice-7.3.4/translations/source/hr/scaddins/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/scaddins/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563540866.000000\n" #. i8Y7Z @@ -4117,12 +4117,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -4367,19 +4367,19 @@ #: scaddins/inc/pricing.hrc:32 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Volatility" -msgstr "" +msgstr "Volatilnost" #. mkRVX #: scaddins/inc/pricing.hrc:33 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Annual volatility of the underlying asset" -msgstr "Godišnja promjenjivost dotične imovine" +msgstr "Godišnja volatilnost imovine" #. 3T6eG #: scaddins/inc/pricing.hrc:34 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Rate" -msgstr "" +msgstr "Stopa" #. 5ycmU #: scaddins/inc/pricing.hrc:35 @@ -4391,7 +4391,7 @@ #: scaddins/inc/pricing.hrc:36 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Foreign rate" -msgstr "" +msgstr "Inozemna stopa" #. PKubC #: scaddins/inc/pricing.hrc:37 @@ -4427,25 +4427,25 @@ #: scaddins/inc/pricing.hrc:42 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Lower barrier" -msgstr "" +msgstr "Donja granica" #. yDAAU #: scaddins/inc/pricing.hrc:43 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Lower barrier (set to 0 for no lower barrier)" -msgstr "Donja granica (unesite 0 ako je nema)" +msgstr "Donja granica (postavi na 0, ako je ne želiš koristiti)" #. zR6Gm #: scaddins/inc/pricing.hrc:44 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Upper barrier" -msgstr "" +msgstr "Gornja granica" #. BucTp #: scaddins/inc/pricing.hrc:45 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Upper barrier (set to 0 for no upper barrier)" -msgstr "Gornja granica (unesite 0 ako je nema)" +msgstr "Gornja granica (postavi na 0, ako je ne želiš koristiti)" #. yXusB #: scaddins/inc/pricing.hrc:46 @@ -4529,13 +4529,13 @@ #: scaddins/inc/pricing.hrc:63 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Volatility" -msgstr "" +msgstr "Volatilnost" #. XzXoA #: scaddins/inc/pricing.hrc:64 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Annual volatility of the underlying asset" -msgstr "Godišnja promjenjivost dotične imovine" +msgstr "Godišnja volatilnost imovine" #. McMgB #: scaddins/inc/pricing.hrc:65 @@ -4577,25 +4577,25 @@ #: scaddins/inc/pricing.hrc:71 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Lower barrier" -msgstr "" +msgstr "Donja granica" #. zmuoi #: scaddins/inc/pricing.hrc:72 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Lower barrier (set to 0 for no lower barrier)" -msgstr "Donja granica (upiši 0, ako je nema)" +msgstr "Donja granica (postavi na 0, ako je ne želiš koristiti)" #. dCZwY #: scaddins/inc/pricing.hrc:73 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Upper barrier" -msgstr "" +msgstr "Gornja granica" #. o525W #: scaddins/inc/pricing.hrc:74 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Upper barrier (set to 0 for no upper barrier)" -msgstr "Gornja granica (upiši 0, ako je nema)" +msgstr "Gornja granica (postavi na 0, ako je ne želiš koristiti)" #. G5wMT #: scaddins/inc/pricing.hrc:75 @@ -4625,7 +4625,7 @@ #: scaddins/inc/pricing.hrc:79 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Barrier type" -msgstr "" +msgstr "Vrsta granice" #. mAcT6 #: scaddins/inc/pricing.hrc:80 @@ -4703,25 +4703,25 @@ #: scaddins/inc/pricing.hrc:96 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Lower barrier" -msgstr "" +msgstr "Donja granica" #. CfPbF #: scaddins/inc/pricing.hrc:97 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Lower barrier (set to 0 for no lower barrier)" -msgstr "Donja granica (unesite 0 ako je nema)" +msgstr "Donja granica (postavi na 0, ako je ne želiš koristiti)" #. iDBso #: scaddins/inc/pricing.hrc:98 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Upper barrier" -msgstr "" +msgstr "Gornja granica" #. xLZJL #: scaddins/inc/pricing.hrc:99 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Upper barrier (set to 0 for no upper barrier)" -msgstr "Gornja granica (unesite 0 ako je nema)" +msgstr "Gornja granica (postavi na 0, ako je ne želiš koristiti)" #. N84Tp #: scaddins/inc/pricing.hrc:104 @@ -4745,7 +4745,7 @@ #: scaddins/inc/pricing.hrc:107 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Volatility" -msgstr "" +msgstr "Volatilnost" #. LS34G #: scaddins/inc/pricing.hrc:108 @@ -4781,25 +4781,25 @@ #: scaddins/inc/pricing.hrc:113 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Lower barrier" -msgstr "" +msgstr "Donja granica" #. AMhM4 #: scaddins/inc/pricing.hrc:114 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Lower barrier (set to 0 for no lower barrier)" -msgstr "Donja granica (unesite 0 ako je nema)" +msgstr "Donja granica (postavi na 0, ako je ne želiš koristiti)" #. 9eXqo #: scaddins/inc/pricing.hrc:115 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Upper barrier" -msgstr "" +msgstr "Gornja granica" #. XeFcH #: scaddins/inc/pricing.hrc:116 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Upper barrier (set to 0 for no upper barrier)" -msgstr "Gornja granica (unesite 0 ako je nema)" +msgstr "Gornja granica (postavi na 0, ako je ne želiš koristiti)" #. yGuzF #: scaddins/inc/pricing.hrc:117 diff -Nru libreoffice-7.3.4/translations/source/hr/sccomp/messages.po libreoffice-7.3.5/translations/source/hr/sccomp/messages.po --- libreoffice-7.3.4/translations/source/hr/sccomp/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/sccomp/messages.po 2022-07-15 19:12:51.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-29 16:03+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1513335578.000000\n" #. whDxm @@ -153,12 +153,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/sd/messages.po libreoffice-7.3.5/translations/source/hr/sd/messages.po --- libreoffice-7.3.4/translations/source/hr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -267,12 +267,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -4172,109 +4172,109 @@ msgstr "~Tablica" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Slika" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Sli~ka" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "C_rtanje" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Crtanje" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medijska datoteka" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Medijska datoteka" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Ob_rasci" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Ob~razac" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Glavni" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Glav~ni" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Pr_oširenje" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Pr~oširenje" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ala_ti" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Ala~ti" @@ -7061,109 +7061,109 @@ msgstr "~Tablica" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Slika" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Sli~ka" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "C_rtanje" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Crtanje" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Mediji" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Mediji" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Ob_razac" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Ob~razac" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Glavni" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Glavni" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Pr_oširenje" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Pr~oširenje" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Alati" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Alati" @@ -8755,7 +8755,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:335 msgctxt "publishingdialog|ASPRadiobutton" msgid "_Active Server Pages (ASP)" -msgstr "_Active Server Pages (ASP)" +msgstr "_Aktivne stranice poslužitelja (ASP)" #. D4oV4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:344 diff -Nru libreoffice-7.3.4/translations/source/hr/sfx2/messages.po libreoffice-7.3.5/translations/source/hr/sfx2/messages.po --- libreoffice-7.3.4/translations/source/hr/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-03-31 21:50+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.12.2\n" "X-POOTLE-MTIME: 1563540915.000000\n" #. bHbFE @@ -2056,12 +2056,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/shell/messages.po libreoffice-7.3.5/translations/source/hr/shell/messages.po --- libreoffice-7.3.4/translations/source/hr/shell/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/shell/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561722507.000000\n" #. 9taro @@ -109,12 +109,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/starmath/messages.po libreoffice-7.3.5/translations/source/hr/starmath/messages.po --- libreoffice-7.3.4/translations/source/hr/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563324412.000000\n" #. GrDhX @@ -260,7 +260,7 @@ #: starmath/inc/smmod.hrc:60 msgctxt "RID_UI_SYMBOL_NAMES" msgid "upsilon" -msgstr "upsilon" +msgstr "ipsilon" #. ymFBb #: starmath/inc/smmod.hrc:61 @@ -477,12 +477,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/svl/messages.po libreoffice-7.3.5/translations/source/hr/svl/messages.po --- libreoffice-7.3.4/translations/source/hr/svl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/svl/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1519742661.000000\n" #. PDMJD @@ -82,12 +82,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/svtools/messages.po libreoffice-7.3.5/translations/source/hr/svtools/messages.po --- libreoffice-7.3.4/translations/source/hr/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563541785.000000\n" #. fLdeV @@ -651,7 +651,7 @@ #: include/svtools/strings.hrc:152 msgctxt "STR_SVT_STYLE_LIGHT" msgid "Light" -msgstr "Svjetli" +msgstr "Svijetli" #. mZkDz #: include/svtools/strings.hrc:153 @@ -675,13 +675,13 @@ #: include/svtools/strings.hrc:156 msgctxt "STR_SVT_STYLE_BOLD" msgid "Bold" -msgstr "Podebljano" +msgstr "Podebljani" #. cbXrP #: include/svtools/strings.hrc:157 msgctxt "STR_SVT_STYLE_BOLD_ITALIC" msgid "Bold Italic" -msgstr "Debeli kurziv" +msgstr "Podebljani kurziv" #. yHZD2 #: include/svtools/strings.hrc:158 @@ -699,13 +699,13 @@ #: include/svtools/strings.hrc:160 msgctxt "STR_SVT_STYLE_BOOK" msgid "Book" -msgstr "Book" +msgstr "Knjižni" #. sqXRb #: include/svtools/strings.hrc:161 msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE" msgid "Bold Oblique" -msgstr "Podebljano nakošeno" +msgstr "Podebljani ukošeni" #. QUBiF #: include/svtools/strings.hrc:162 @@ -729,7 +729,7 @@ #: include/svtools/strings.hrc:165 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE" msgid "Condensed Bold Oblique" -msgstr "Uski debeli nakošeni" +msgstr "Uski debeli ukošeni" #. bpDXQ #: include/svtools/strings.hrc:166 @@ -741,7 +741,7 @@ #: include/svtools/strings.hrc:167 msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE" msgid "Condensed Oblique" -msgstr "Uski nakošeni" +msgstr "Uski ukošeni" #. MouF8 #: include/svtools/strings.hrc:168 @@ -759,13 +759,13 @@ #: include/svtools/strings.hrc:170 msgctxt "STR_SVT_STYLE_OBLIQUE" msgid "Oblique" -msgstr "Nakošeno" +msgstr "Ukošeni" #. TJsAw #: include/svtools/strings.hrc:171 msgctxt "STR_SVT_STYLE_SEMIBOLD" msgid "Semibold" -msgstr "Djelomično podebljano" +msgstr "Polu-debeli" #. LRtri #: include/svtools/strings.hrc:172 @@ -1786,12 +1786,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -3796,7 +3796,7 @@ #: svtools/inc/langtab.hrc:234 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Swazi" -msgstr "Swazi" +msgstr "Svazi" #. GFCYC #: svtools/inc/langtab.hrc:235 diff -Nru libreoffice-7.3.4/translations/source/hr/svx/messages.po libreoffice-7.3.5/translations/source/hr/svx/messages.po --- libreoffice-7.3.4/translations/source/hr/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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.12.2\n" "X-POOTLE-MTIME: 1563541940.000000\n" #. 3GkZj @@ -10160,12 +10160,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/sw/messages.po libreoffice-7.3.5/translations/source/hr/sw/messages.po --- libreoffice-7.3.4/translations/source/hr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,10 +30,9 @@ #. idEDM #: sw/inc/AccessibilityCheckStrings.hrc:18 -#, fuzzy msgctxt "STR_FAKE_NUMBERING" msgid "Fake numbering '%NUMBERING%'" -msgstr "Lažno obrojčavanje '%NUMBERING%'" +msgstr "Lažno brojenje '%NUMBERING%'" #. zE4PU #: sw/inc/AccessibilityCheckStrings.hrc:19 @@ -178,12 +177,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -10507,19 +10506,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilovi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13963,37 +13962,37 @@ msgstr "Zamjena baze podataka" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Odredi" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Korištene baze podataka" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Dostupne b_aze podataka" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Pretraživanje..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14003,31 +14002,31 @@ "Koristite gumb Pretraži za odabir baze podataka." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Zamjena baze podataka" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Baza podataka primijenjena na dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20081,109 +20080,109 @@ msgstr "Koristi ovaj _dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Stvori no_vi dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Započni iz postoj_ećeg dokumenta" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Započni _iz predloška" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Započni iz nedavno spre_mljenog početnog dokumenta" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Pot_raži..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pot_raži..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Odaberite početni dokument za cirkularnu poštu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22326,49 +22325,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Vrsta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Mogućnosti" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Omatanje" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Poveznica" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Obrub" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Područje" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Prozirnost" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makronaredba" @@ -27062,7 +27061,7 @@ msgstr "Ažuriraj" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/uui/messages.po libreoffice-7.3.5/translations/source/hr/uui/messages.po --- libreoffice-7.3.4/translations/source/hr/uui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/uui/messages.po 2022-07-15 19:12:51.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-11-19 15:45+0100\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -13,20 +13,20 @@ "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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563542024.000000\n" #. DLY8p #: uui/inc/ids.hrc:32 msgctxt "RID_UUI_ERRHDL" msgid "The operation executed on $(ARG1) was aborted." -msgstr "Operacija izvršavana nad $(ARG1) je prekinuta." +msgstr "Operacija koja je izvršena na $(ARG1) je prekinuta." #. Q448y #: uui/inc/ids.hrc:34 msgctxt "RID_UUI_ERRHDL" msgid "Access to $(ARG1) was denied." -msgstr "Odbijen je pristup $(ARG1)." +msgstr "Odbijen je pristup na $(ARG1)." #. w6rpp #: uui/inc/ids.hrc:36 @@ -38,7 +38,7 @@ #: uui/inc/ids.hrc:38 msgctxt "RID_UUI_ERRHDL" msgid "Target already exists." -msgstr "Cij već postoji." +msgstr "Cilj već postoji." #. KgnBz #: uui/inc/ids.hrc:40 @@ -48,9 +48,9 @@ "$(ARG1)\n" "which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?" msgstr "" -"Namjeravate spremiti/izvesti lozinkom zaštićenu osnovnu biblioteku koja sadrži modul(e) \n" +"Spremit/izvest ćeš lozinkom zaštićenu osnovnu biblioteku koja sadrži modul(e) \n" "$(ARG1)\n" -"a koji su preveliki za zapisivanje u binarnom obliku. Ukoliko želite da korisnici, koji nemaju pristup lozinki biblioteke, mogu pokrenuti makronaredbe u tom modulu ili modulima morate razlomiti te module u više manjih modula. Želite li nastaviti sa spremanjem/izvozom ove biblioteke?" +"koji su preveliki za zapisivanje u binarnom obliku. Ukoliko želiš da korisnici, koji nemaju pristup lozinki biblioteke mogu pokrenuti makronaredbe u tom modulu ili modulima, moraš podijeliti te module u više manjih modula. Želiš li nastaviti sa spremanjem/izvozom ove biblioteke?" #. 3rNDF #: uui/inc/ids.hrc:42 @@ -66,17 +66,17 @@ msgstr "" "Upozorenje!\n" "\n" -"Pokušavate učitati neobičan tip datoteke ($(ARG2)) sa URL-a:\n" +"Pokušavaš učitati neobičnu vrstu datoteke ($(ARG2)) s URL-a:\n" "\n" "$(ARG1)\n" "\n" -"Jeste li sigurni da se radi o starom datotečnome formatu datoteke izrađene pred mnogo godina?" +"Jesi li siguran/na da se radi o starom datotečnome formatu datoteke izrađene prije mnogo godina?" #. v6bPE #: uui/inc/ids.hrc:44 msgctxt "RID_UUI_ERRHDL" msgid "The data from $(ARG1) has an incorrect checksum." -msgstr "Podaci iz $(ARG1) imaju neispravni kontrolni broj." +msgstr "Podaci iz $(ARG1) imaju neispravni kontrolni zbroj." #. AGF5W #: uui/inc/ids.hrc:46 @@ -94,13 +94,13 @@ #: uui/inc/ids.hrc:50 msgctxt "RID_UUI_ERRHDL" msgid "The seek operation on $(ARG1) could not be performed." -msgstr "Ne može se izvršiti operacija pretrage nad $(ARG1)." +msgstr "Operacija pretrage na $(ARG1) se ne može izvršiti." #. CD7zU #: uui/inc/ids.hrc:52 msgctxt "RID_UUI_ERRHDL" msgid "The tell operation on $(ARG1) could not be performed." -msgstr "Radnja tell ne može se izvršiti nad $(ARG1)." +msgstr "Operacija tell na $(ARG1) se ne može izvršiti." #. AkGXL #: uui/inc/ids.hrc:54 @@ -112,7 +112,7 @@ #: uui/inc/ids.hrc:56 msgctxt "RID_UUI_ERRHDL" msgid "Action impossible: $(ARG1) is the current directory." -msgstr "Nemoguće djelovanje: $(ARG1) je trenutačna mapa." +msgstr "Nemoguća radnja: $(ARG1) je trenutačna mapa." #. wWVF2 #: uui/inc/ids.hrc:58 @@ -124,7 +124,7 @@ #: uui/inc/ids.hrc:60 msgctxt "RID_UUI_ERRHDL" msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)." -msgstr "Nemoguća aktivnost: $(ARG1) i $(ARG2) su različiti uređaji (diskovi)." +msgstr "Nemoguća radnja: $(ARG1) i $(ARG2) su različiti uređaji (diskovi)." #. ic2pB #: uui/inc/ids.hrc:62 @@ -136,13 +136,13 @@ #: uui/inc/ids.hrc:64 msgctxt "RID_UUI_ERRHDL" msgid "An attempt was made to access $(ARG1) in an invalid way." -msgstr "Pokušan je pristup prema $(ARG1) na krivi način." +msgstr "Pokušan je pristup na $(ARG1) na krivi način." #. Y6bwq #: uui/inc/ids.hrc:66 msgctxt "RID_UUI_ERRHDL" msgid "$(ARG1) contains invalid characters." -msgstr "$(ARG1) sadrži nedozvoljene znakove." +msgstr "$(ARG1) sadrži nevaljane znakove." #. 5HEak #: uui/inc/ids.hrc:68 @@ -160,7 +160,7 @@ #: uui/inc/ids.hrc:72 msgctxt "RID_UUI_ERRHDL" msgid "The operation on $(ARG1) was started with an invalid parameter." -msgstr "Aktivnost na $(ARG1) je pokrenuta s nedozvoljenim parametrom." +msgstr "Operacija na $(ARG1) je pokrenuta s nevaljanim parametrom." #. fEQmj #: uui/inc/ids.hrc:74 @@ -202,7 +202,7 @@ #: uui/inc/ids.hrc:86 msgctxt "RID_UUI_ERRHDL" msgid "The operation on $(ARG1) is not supported on this operating system." -msgstr "Djelovanje na $(ARG1) nije podržano na ovom operativnom sustavu." +msgstr "Operacija na $(ARG1) nije podržana na ovom operacijskom sustavu." #. zzACo #: uui/inc/ids.hrc:88 @@ -220,25 +220,25 @@ #: uui/inc/ids.hrc:92 msgctxt "RID_UUI_ERRHDL" msgid "There is no space left on device $(ARG1)." -msgstr "Nema više slobodnog mjesta na uređaju $(ARG1)." +msgstr "Na uređaju $(ARG1) više nema slobodne memorije." #. zehX6 #: uui/inc/ids.hrc:94 msgctxt "RID_UUI_ERRHDL" msgid "The operation on $(ARG1) cannot be performed because too many files are already open." -msgstr "Ne može se izvršiti djelovanje na $(ARG1) zbog previše već otvorenih datoteka." +msgstr "Operacija na $(ARG1) se ne može izvršiti jer su već previše datoteka otvorene." #. ctFbB #: uui/inc/ids.hrc:96 msgctxt "RID_UUI_ERRHDL" msgid "The operation on $(ARG1) cannot be performed because there is no more memory available." -msgstr "Djelovanje na $(ARG1) se ne može izvršiti zbog nedostatka slobodne memorije." +msgstr "Operacija na $(ARG1) se ne može izvršiti jer nedostaje slobodne memorije." #. jpzJG #: uui/inc/ids.hrc:98 msgctxt "RID_UUI_ERRHDL" msgid "The operation on $(ARG1) cannot continue because more data is pending." -msgstr "Djelovanje na $(ARG1) se ne može nastaviti zbog podataka koji čekaju." +msgstr "Operacija na $(ARG1) se ne može nastaviti jer daljnji podaci čekaju." #. 6DVTU #: uui/inc/ids.hrc:100 @@ -250,7 +250,7 @@ #: uui/inc/ids.hrc:102 msgctxt "RID_UUI_ERRHDL" msgid "Unknown input/output error while accessing $(ARG1)." -msgstr "Nepoznata ulazno/izlazna greška tijekom pristupa $(ARG1)." +msgstr "Nepoznata greška unosa/rezultata tijekom pristupanja $(ARG1)." #. cVa9F #: uui/inc/ids.hrc:104 @@ -262,25 +262,25 @@ #: uui/inc/ids.hrc:106 msgctxt "RID_UUI_ERRHDL" msgid "$(ARG1) is not in the correct format." -msgstr "$(ARG1) nje u ispravnom obliku." +msgstr "$(ARG1) nje u ispravnom formatu." #. NJNyn #: uui/inc/ids.hrc:108 msgctxt "RID_UUI_ERRHDL" msgid "The version of $(ARG1) is not correct." -msgstr "Neispravna inačica od $(ARG1)." +msgstr "$(ARG1) verzija je neispravna." #. uBqiR #: uui/inc/ids.hrc:110 msgctxt "RID_UUI_ERRHDL" msgid "Drive $(ARG1) does not exist." -msgstr "Ne postoji disk $(ARG1)." +msgstr "Disk $(ARG1) ne postoji." #. zemAv #: uui/inc/ids.hrc:112 msgctxt "RID_UUI_ERRHDL" msgid "Folder $(ARG1) does not exist." -msgstr "Ne postoji mapa $(ARG1)." +msgstr "Mapa $(ARG1) ne postoji." #. aRCFc #: uui/inc/ids.hrc:114 @@ -328,19 +328,19 @@ #: uui/inc/ids.hrc:128 msgctxt "RID_UUI_ERRHDL" msgid "$(ARG1) is not ready; please insert a storage medium." -msgstr "$(ARG1) nije spreman; umetnite medij za pohranu podataka." +msgstr "$(ARG1) nije spreman; umetni medij za spremanje podataka." #. RogFv #: uui/inc/ids.hrc:130 msgctxt "RID_UUI_ERRHDL" msgid "Volume $(ARG1) is not ready; please insert a storage medium." -msgstr "Disk $(ARG1) nije spreman; umetnite medij za pohranu podataka." +msgstr "Disk $(ARG1) nije spreman; umetni medij za spremanje podataka." #. AqFh4 #: uui/inc/ids.hrc:132 msgctxt "RID_UUI_ERRHDL" msgid "Please insert disk $(ARG1)." -msgstr "Umetnite disk $(ARG1)." +msgstr "Umetni disk $(ARG1)." #. WbB7f #: uui/inc/ids.hrc:134 @@ -352,7 +352,7 @@ #: uui/inc/ids.hrc:136 msgctxt "RID_UUI_ERRHDL" msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?" -msgstr "%PRODUCTNAME ne može zaštiti datoteke od pisanja preko njih dok se koristi ovaj prijenosni protokol. Želite li svejedno nastaviti?" +msgstr "%PRODUCTNAME ne može zaštiti prepisivanje datoteka kad se koristi ovaj prijenosni protokol. Želiü li svejedno nastaviti?" #. CUbSR #: uui/inc/ids.hrc:138 @@ -367,20 +367,20 @@ "\n" "Should %PRODUCTNAME repair the file?\n" msgstr "" -"Datoteka je '$(ARG1)' oštećena i zato se ne može otvoriti. %PRODUCTNAME može pokušati obnoviti datoteku.\n" +"Datoteka „$(ARG1)” je oštećena i stoga se ne može otvoriti. %PRODUCTNAME može pokušati obnoviti datoteku.\n" "\n" "Oštećenje može biti rezultat rukovanjem dokumentom ili strukturnim oštećenjem tijekom prijenosa datoteke.\n" "\n" -"Preporuka je da ne vjerujete sadržaju obnovljene datoteke.\n" -"Izvršavanje je makronaredbi isključeno.\n" +"Preporučujemo da ne vjeruješ sadržaju obnovljene datoteke.\n" +"Izvršavanje makronaredbi je isključeno.\n" "\n" -"Želite li da %PRODUCTNAME obnovi datoteku?\n" +"Želiš li da %PRODUCTNAME obnovi datoteku?\n" #. KeFss #: uui/inc/ids.hrc:140 msgctxt "RID_UUI_ERRHDL" msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened." -msgstr "Datoteka '$(ARG1)' ne može biti popravljena i stoga ne može biti otvorena." +msgstr "Datoteka „$(ARG1)” se ne može popraviti i stoga se ne može otvoriti." #. JCpTn #: uui/inc/ids.hrc:142 @@ -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 "" -"Osobna konfiguracijska datoteka '$(ARG1)' je oštećena. Bez tih podataka neke vunkcije neće ispravno raditi.\n" -" Želite li nastaviti pokretanje %PRODUCTNAME bez nepostojećih konfiguracijskih podataka?" +"Konfiguracijska datoteka „$(ARG1)” je oštećena. Bez tih podataka neke funkcije neće ispravno raditi.\n" +"Želiš li nastaviti pokretanje %PRODUCTNAME-a bez oštećenih konfiguracijskih podataka?" #. QCACp #: uui/inc/ids.hrc:144 @@ -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 "" -"Osobna konfiguracijska datoteka '$(ARG1)' je oštećena i za nastavak se mora obrisati. Postoji mogućnost da će neke vaše osobne postavke biti izgubljene.\n" -" Želite li nastaviti pokretanje %PRODUCTNAME bez nepostojećih konfiguracijskih podataka?" +"Osobna konfiguracijska datoteka „$(ARG1)” je oštećena i za nastavak se mora izbrisati. Neke tvoje osobne postavke će se možda izgubiti.\n" +"Želiš li nastaviti pokretanje %PRODUCTNAME-a bez oštećenih konfiguracijskih podataka?" #. e5Rft #: uui/inc/ids.hrc:146 msgctxt "RID_UUI_ERRHDL" msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly." -msgstr "Izvor konfiguracijskih podataka '$(ARG1)' je nedostupan. Bez tih podataka neke vunkcije neće ispravno raditi." +msgstr "Izvor konfiguracijskih podataka „$(ARG1)” je nedostupan. Bez tih podataka neke funkcije neće ispravno raditi." #. 4gRCA #: uui/inc/ids.hrc:148 @@ -415,32 +415,32 @@ "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 "" -"Izvor konfiguracijskih podataka '$(ARG1)' je nedostupan. Bez tih podataka neke funkcije se neće ispravno izvoditi.\n" -" Želite li nastaviti pokretanje %PRODUCTNAME bez nepostojećih konfiguracijskih podataka?" +"Izvor konfiguracijskih podataka „$(ARG1)” je nedostupan. Bez tih podataka neke funkcije neće ispravno raditi.\n" +"Želiš li nastaviti pokretanje %PRODUCTNAME-a bez nedostajućih konfiguracijskih podataka?" #. DAUhe #: uui/inc/ids.hrc:150 msgctxt "RID_UUI_ERRHDL" msgid "The form contains invalid data. Do you still want to continue?" -msgstr "Obrazac sadrži neispravne podatke. Stvarno želite nastaviti?" +msgstr "Obrazac sadrži neispravne podatke. Stvarno želiš nastaviti?" #. DSoD4 #: uui/inc/ids.hrc:152 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted." -msgstr "Drugi korisnik je zaključao datoteku $(ARG1). Trenutačno je dozvoljen drugi pristup zapisivanja u datoteku." +msgstr "Jedan drugi korisnik je zaključao datoteku $(ARG1). Trenutačno nije moguće dozvoliti jedan drugi pristup za zapisivanje u datoteku." #. k6aHT #: uui/inc/ids.hrc:154 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted." -msgstr "Niste zaključali datoteku $(ARG1). Trenutačno može biti dozvoljen drugi pristup zapisivanja u datoteku." +msgstr "Datoteka $(ARG1) je zaključana s tvoje strane. Trenutačno nije moguće dozvoliti jedan drugi pristup za zapisivanje u datoteku." #. ZoUzb #: uui/inc/ids.hrc:156 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is currently not locked by yourself." -msgstr "Trenutačno niste zaključali datoteku $(ARG1)." +msgstr "Datoteka $(ARG1) trenutačno nije zaključana s tvoje strane." #. L9PCQ #: uui/inc/ids.hrc:158 @@ -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 "" -"Prethodno je zaključavanje datoteke $(ARG1) nevažeće.\n" -"Ovo se može dogoditi zbog problema na poslužitelju koji upravlja zaključavanjem datoteka. To ne može jamčiti da operacije zapisivanja na ovoj datoteci neće prepisati promjene ostalih korisnika!" +"Prethodno zaključavanje datoteke $(ARG1) je isteklo.\n" +"Ovo se može dogoditi zbog problema na poslužitelju koji upravlja zaključavanjem datoteka. Nije moguće jamčiti da operacije zapisivanja u ovu datoteku neće prepisati promjene ostalih korisnika!" #. gZzEy #: uui/inc/ids.hrc:160 @@ -474,9 +474,9 @@ "\n" "Before accepting this certificate, you should examine this site's certificate carefully. Are you willing to accept this certificate for the purpose of identifying the Web site $(ARG1)?" msgstr "" -"Ne mogu provjeriti identitet $(ARG1).\n" +"Nije moguće provjeriti identitet $(ARG1) stranice.\n" "\n" -"Prije prihvaćanja certifikata, trebali biste pažljivo provjeriti certifikat stranice. Želite li prihvatiti navedeni certifikat kao identifikaciju internetske stranice $(ARG1)?" +"Prije prihvaćanja certifikata, provjeri certifikat stranice. Želiš li prihvatiti navedeni certifikat za identificiranje web-stranice $(ARG1)?" #. kBZVn #: uui/inc/ids.hrc:166 @@ -488,7 +488,7 @@ msgstr "" "$(ARG1) je internetska stranica koja koristi sigurnosne certifikate radi šifriranja podataka tijekom prijenosa, ali certifikat je istekao $(ARG2).\n" "\n" -"Provjerite je li vrijeme na vašemu računalu pravilno postavljeno." +"Provjeri, je li vrijeme na tvom računalu pravilno postavljeno." #. 8GuAn #: uui/inc/ids.hrc:167 @@ -506,17 +506,17 @@ "\n" "Would you like to continue anyway?" msgstr "" -"Pokušali ste uspostaviti vezu sa $(ARG1). Međutim, prikazani sigurnosni certifikat pripada $(ARG2). Moguće je, iako malo vjerojatno, da netko pokušava presresti vašu vezu s internetskom stranicom.\n" +"Pokušao/la si uspostaviti vezu sa $(ARG1). Međutim, prikazani sigurnosni certifikat pripada $(ARG2). Moguće je, iako malo vjerojatno, da netko pokušava presresti tvoju vezu s internetskom stranicom.\n" "\n" -"Sumnjate li da certifikat ne pripada $(ARG1), odustanite od povezivanja i obavijestite administratora stranice.\n" +"Ako misliš da certifikat ne pripada $(ARG1), prekini vezu i obavijesti administratora stranice.\n" "\n" -"Želite li nastaviti?" +"Želiš li nastaviti?" #. q6DM2 #: uui/inc/ids.hrc:169 msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE" msgid "Security Warning: Server Certificate Expired" -msgstr "Sigurnosno upozorenje: certifikat poslužitelja je istekao" +msgstr "Sigurnosno upozorenje: istekao certifikat poslužitelja" #. zd5oX #: uui/inc/ids.hrc:170 @@ -526,15 +526,15 @@ "\n" "If you suspect the certificate shown, please cancel the connection and notify the site administrator." msgstr "" -"Certifikat nije moguće provjeriti. Pažljivo provjerite certifikat internetske stranice.\n" +"Certifikat nije moguće provjeriti. Pažljivo provjeri certifikat internetske stranice.\n" "\n" -"Ako sumnjate u prikazani certifikat, odustanite od povezivanja i obavijestite administratora stranice." +"Ako sumnjaš u prikazani certifikat, prekini povezivanje i obavijesti administratora stranice." #. Aj227 #: uui/inc/ids.hrc:171 msgctxt "STR_UUI_SSLWARN_INVALID_TITLE" msgid "Security Warning: Domain Name Mismatch" -msgstr "Sigurnosno upozorenje: imena na domeni ne odgovaraju" +msgstr "Sigurnosno upozorenje: nepoklapanje imena domene" #. wH3TZ msgctxt "stock" @@ -589,12 +589,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -605,25 +605,25 @@ #: uui/inc/strings.hrc:24 msgctxt "STR_ENTER_PASSWORD_TO_OPEN" msgid "Enter password to open file: \n" -msgstr "Za otvaranje datoteke upišite lozinku: \n" +msgstr "Za otvaranje datoteke upiši lozinku: \n" #. rmDwa #: uui/inc/strings.hrc:25 msgctxt "STR_ENTER_PASSWORD_TO_MODIFY" msgid "Enter password to modify file: \n" -msgstr "Za izmjenu datoteke upišite lozinku: \n" +msgstr "Za izmjenu datoteke upiši lozinku: \n" #. BVofP #: uui/inc/strings.hrc:26 msgctxt "STR_ENTER_SIMPLE_PASSWORD" msgid "Enter password: " -msgstr "Upišite lozinku: " +msgstr "Upiši lozinku: " #. UTuR2 #: uui/inc/strings.hrc:27 msgctxt "STR_CONFIRM_SIMPLE_PASSWORD" msgid "Confirm password: " -msgstr "Potvrdite lozinku: " +msgstr "Potvrdi lozinku: " #. wydLC #: uui/inc/strings.hrc:28 @@ -635,19 +635,19 @@ #: uui/inc/strings.hrc:29 msgctxt "STR_TITLE_ENTER_PASSWORD" msgid "Enter Password" -msgstr "Upišite lozinku" +msgstr "Upiši lozinku" #. hggFL #: uui/inc/strings.hrc:30 msgctxt "STR_PASSWORD_MISMATCH" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "Potvrđujuća lozinka ne odgovara lozinki. Ponovno postavite lozinku upisujući istu lozinku u oba polja." +msgstr "Potvrđujuća lozinka ne odgovara lozinki. Ponovo postavi lozinku upisom iste lozinke u oba polja." #. sdbEf #: uui/inc/strings.hrc:32 msgctxt "STR_ALREADYOPEN_TITLE" msgid "Document in Use" -msgstr "Dokument se već koristi" +msgstr "Korišteni dokument" #. QU4jD #: uui/inc/strings.hrc:33 @@ -658,7 +658,7 @@ "Open document read-only, or ignore own file locking and open the document for editing.\n" "Select Notify to open read-only and get notified when the document becomes editable." msgstr "" -"Datoteka dokumenta „$(ARG1)” zaključana je za uređivanje na jednom drugom sustavu $(ARG2)\n" +"Datoteka dokumenta „$(ARG1)” je zaključana za uređivanje od tebe na jednom drugom sustavu $(ARG2)\n" "\n" "Otvori dokument samo-za-čitanje ili zanemari zaključavanje vlastite datoteke i otvori dokument za uređivanje.\n" "Odaberi „Obavijesti” za otvaranje samo-za-čitanje i primi obavijesti kad se dokument može uređivati." @@ -689,9 +689,9 @@ "\n" "Close document on other system and retry saving or ignore own file locking and save current document." msgstr "" -"Zaključali ste datoteku '$(ARG1)' na drugom sustavu od $(ARG2).\n" +"Zaključao/la si datoteku „$(ARG1)” na drugom sustavu $(ARG2).\n" "\n" -"Zatvorite dokument na drugom sustavi i pokušajte ga ponovno spremiti ili zanemarite vlastito zaključavanje i spremite sadašnji dokument." +"Zatvori dokument na drugom sustavu i pokušaj ga ponovo spremiti ili zanemari vlastito zaključavanje i spremi sadašnji dokument." #. ZCJGW #: uui/inc/strings.hrc:38 @@ -757,7 +757,7 @@ #: uui/inc/strings.hrc:50 msgctxt "STR_OPENLOCKED_TITLE" msgid "Document in Use" -msgstr "Dokument se već koristi" +msgstr "Korišteni dokument" #. qcayz #: uui/inc/strings.hrc:51 @@ -770,7 +770,7 @@ "Open document read-only or open a copy of the document for editing.\n" "Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)" msgstr "" -"Datoteka dokumenta „$(ARG1)” zaključana je za uređivanje od:\n" +"Datoteka dokumenta „$(ARG1)” je zaključana za uređivanje od tebe na jednom drugom sustavu $(ARG2)\n" "\n" "$(ARG2)\n" "\n" @@ -785,7 +785,7 @@ "You may also ignore the file locking and open the document for editing." msgstr "" "\n" -"Možete i zanemariti zaključavanje dokumenta i otvoriti dokument za uređivanje." +"Također mođeš zanemariti zaključavanje dokumenta i otvoriti dokument za uređivanje." #. tc7YZ #: uui/inc/strings.hrc:53 @@ -815,7 +815,7 @@ #: uui/inc/strings.hrc:58 msgctxt "STR_FILECHANGED_TITLE" msgid "Document Has Been Changed by Others" -msgstr "Netko od korisnika je već izmijenio dokument" +msgstr "Drugi korisnici su izmijenili dokument" #. umCKE #: uui/inc/strings.hrc:59 @@ -825,21 +825,21 @@ "\n" "Do you want to save anyway?" msgstr "" -"Datoteka je bila mijenjana od kad je bila otvorena za uređivanje u %PRODUCTNAME. Spremanje vaše inačice dokumenta će poništiti tuđe izmjene.\n" +"Datoteka je promijenjena od kad je bila otvorena za uređivanje u %PRODUCTNAME. Spremanje tvoje verzije dokumenta će poništiti tuđe izmjene.\n" "\n" -"Želite li svejedno spremiti?" +"Želiš li svejedno spremiti?" #. DGYmK #: uui/inc/strings.hrc:60 msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN" msgid "~Save Anyway" -msgstr "~Ipak Spremi" +msgstr "~Svejedno spremi" #. YBz5F #: uui/inc/strings.hrc:62 msgctxt "STR_TRYLATER_TITLE" msgid "Document in Use" -msgstr "Dokument se već koristi" +msgstr "Korišteni dokument" #. 4Fimj #: uui/inc/strings.hrc:63 @@ -851,11 +851,11 @@ "\n" "Try again later to save document or save a copy of that document." msgstr "" -"Datoteka dokumenta '$(ARG1)' je zaključana za uređivanje od strane:\n" +"Datoteku dokumenta „$(ARG1)” je zaključao/la za uređivanje:\n" "\n" "$(ARG2)\n" "\n" -"Pokušajte kasnije ponovno spremiti dokument ili spremite kopiju tog dokumenta." +"Pokušaj kasnije spremiti dokument ili spremi kopiju tog dokumenta." #. b3UBG #: uui/inc/strings.hrc:64 @@ -867,11 +867,11 @@ "\n" "You may try to ignore the file locking and overwrite the existing document." msgstr "" -"Datoteku dokumenta '$(ARG1)' je zaključao:\n" +"Datoteku dokumenta „$(ARG1)” je zaključao/la za uređivanje:\n" "\n" "$(ARG2)\n" "\n" -"Možete pokušati zanemariti zaključavanje i prepisati postojeći dokument novim sadržajem." +"Možeš pokušati zanemariti zaključavanje i prepisati postojeći dokument novim sadržajem." #. 8JFLZ #: uui/inc/strings.hrc:65 @@ -892,8 +892,8 @@ "A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n" "Choose Replace to overwrite the existing file or provide a new name." msgstr "" -"Već postoji datoteka s nazivom \"%NAME\" na lokaciji \"%FOLDER\".\n" -"Odaberite Zamijeni kako biste pisali preko postojeće datoteke ili odaberite novi naziv." +"Datoteka s nazivom „%NAME” već postoji na lokaciji „%FOLDER”.\n" +"Odaberi „Zamijeni” za prepisivanje postojeće datoteke ili odaberi novi naziv." #. 3bJvA #: uui/inc/strings.hrc:69 @@ -902,20 +902,20 @@ "A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n" "Please enter a new name." msgstr "" -"Već postoji datoteka s nazivom \"%NAME\" na lokaciji \"%FOLDER\".\n" -"Unesite novi naziv." +"Datoteka s nazivom „%NAME” već postoji na lokaciji „%FOLDER”.\n" +"Upiši novi naziv." #. Bapqc #: uui/inc/strings.hrc:70 msgctxt "STR_SAME_NAME_USED" msgid "Please provide a different file name!" -msgstr "Upišite drugačiji naziv datoteke!" +msgstr "Upiši drugačiji naziv datoteke!" #. BsaWY #: uui/inc/strings.hrc:72 msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG" msgid "The password is incorrect. The file cannot be opened." -msgstr "Lozinka nije ispravna. Datoteka se ne može otvoriti." +msgstr "Lozinka je neispravna. Datoteka se ne može otvoriti." #. WQbYF #: uui/inc/strings.hrc:73 @@ -933,13 +933,13 @@ #: uui/inc/strings.hrc:75 msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG" msgid "The password is incorrect." -msgstr "Lozinka nije ispravna." +msgstr "Lozinka je neispravna." #. DwdJn #: uui/inc/strings.hrc:76 msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL" msgid "The password confirmation does not match." -msgstr "Unešene zaporke se ne podudaraju." +msgstr "Potvrda lozinke se ne poklapa." #. dwGow #: uui/inc/strings.hrc:78 @@ -987,7 +987,7 @@ msgstr "" "Datoteka dokumenta „$(ARG1)” se sada može urediti \n" "\n" -"Ponovno učitati ovaj dokument za uređivanje?" +"Ponovo učitati ovaj dokument za uređivanje?" #. vynDE #: uui/inc/strings.hrc:85 @@ -999,13 +999,13 @@ #: uui/uiconfig/ui/authfallback.ui:8 msgctxt "authfallback|AuthFallbackDlg" msgid "Authentication Code" -msgstr "Autorizacijski kȏd" +msgstr "Kȏd autentifikacije" #. oHHac #: uui/uiconfig/ui/authfallback.ui:116 msgctxt "authfallback|label1" msgid "Enter the 6 digit PIN:" -msgstr "Unesite šesteroznamenkasti PIN:" +msgstr "Upiši šesteroznamenkasti PIN:" #. vkXiS #: uui/uiconfig/ui/filterselect.ui:16 @@ -1017,19 +1017,19 @@ #: 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 "Odaberite filtar za uvoz datoteke koju želite otvoriti." +msgstr "Odaberi filtar za uvoz datoteke koju želiš otvoriti." #. 8o9Bq #: uui/uiconfig/ui/logindialog.ui:8 msgctxt "logindialog|LoginDialog" msgid "Authentication Required" -msgstr "Provjera autentičnosti" +msgstr "Obavezna autentifikacija" #. SjxPP #: uui/uiconfig/ui/logindialog.ui:84 msgctxt "logindialog|syscreds" msgid "_Use system credentials" -msgstr "Koristi vjerodajnice s_ustava" +msgstr "Koristi s_ustavske podatke za prijavu" #. J7CWF #: uui/uiconfig/ui/logindialog.ui:99 @@ -1062,8 +1062,8 @@ "Enter user name and password for:\n" "“%2” on %1" msgstr "" -"Upišite korisničko ime i lozinku za:\n" -"“%2” na %1" +"Upiši korisničko ime i lozinku za:\n" +"„%2” na %1" #. kRDiF #: uui/uiconfig/ui/logindialog.ui:212 @@ -1073,7 +1073,7 @@ "“%2” on %1" msgstr "" "Pogrešno korisničko ime i lozinka za:\n" -"“%2” na %1" +"„%2” na %1" #. ARsSU #: uui/uiconfig/ui/logindialog.ui:226 @@ -1092,20 +1092,20 @@ "Enter user name and password for:\n" "%1" msgstr "" -"Upišite korisničko ime i lozinku za:\n" +"Upiši korisničko ime i lozinku za:\n" "%1" #. FGAvy #: uui/uiconfig/ui/logindialog.ui:254 msgctxt "logindialog|errorft" msgid "Message from server:" -msgstr "Poruka sa poslužitelja:" +msgstr "Poruka poslužitelja:" #. Q7Cb9 #: uui/uiconfig/ui/macrowarnmedium.ui:7 msgctxt "macrowarnmedium|MacroWarnMedium" msgid "%PRODUCTNAME - Security Warning" -msgstr "%PRODUCTNAME - Sigurnosno upozorenje" +msgstr "%PRODUCTNAME – Sigurnosno upozorenje" #. xCZst #: uui/uiconfig/ui/macrowarnmedium.ui:13 @@ -1117,19 +1117,19 @@ msgstr "" "Dokument sadržava makronaredbe\n" "\n" -"Makronaredbe mogu sadržavati viruse. Isključivanje makronaredbi za dokumente je uvijek sigurno napraviti. Isključivanjem makronaredbi možete izgubiti funkcionalnosti koju pružaju." +"Makronaredbe mogu sadržavati viruse. Isključivanje makronaredbi za dokumente je uvijek sigurno napraviti. Isključivanjem makronaredbi možeš izgubiti funkcionalnosti koju pružaju." #. svTn6 #: uui/uiconfig/ui/macrowarnmedium.ui:27 msgctxt "macrowarnmedium|cancel" msgid "_Disable Macros" -msgstr "O_nemogući makronaredbe" +msgstr "_Isključi makronaredbe" #. o4c9e #: uui/uiconfig/ui/macrowarnmedium.ui:43 msgctxt "macrowarnmedium|ok" msgid "_Enable Macros" -msgstr "_Omogući makronaredbe" +msgstr "_Uključi makronaredbe" #. tYAFs #: uui/uiconfig/ui/macrowarnmedium.ui:89 @@ -1153,25 +1153,25 @@ #: uui/uiconfig/ui/masterpassworddlg.ui:8 msgctxt "masterpassworddlg|MasterPasswordDialog" msgid "Enter Master Password" -msgstr "Upišite glavnu lozinku" +msgstr "Upiši glavnu lozinku" #. REFvG #: uui/uiconfig/ui/masterpassworddlg.ui:87 msgctxt "masterpassworddlg|label1" msgid "_Enter password:" -msgstr "_Upišite lozinku:" +msgstr "_Upiši lozinku:" #. bRcP4 #: uui/uiconfig/ui/masterpassworddlg.ui:110 msgctxt "masterpassworddlg|extended_tip|password" msgid "Type a password. A password is case sensitive." -msgstr "Unesite lozinku. Lozinke razlikuju velika i mala slova." +msgstr "Upiši lozinku. Lozinka razlikuje velika i mala slova." #. Twvfe #: uui/uiconfig/ui/masterpassworddlg.ui:139 msgctxt "extended_tip|MasterPasswordDialog" msgid "Enter the master password to continue." -msgstr "Za nastavak unesite glavnu lozinku." +msgstr "Za nastavak upiši glavnu lozinku." #. qAMT2 #: uui/uiconfig/ui/password.ui:8 @@ -1183,61 +1183,61 @@ #: uui/uiconfig/ui/password.ui:120 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "Unesite lozinku. Lozinka razlikuje velika i mala slova." +msgstr "Upiši 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 "Ponovo unesite lozinku." +msgstr "Ponovo upiši lozinku." #. ioiyr #: uui/uiconfig/ui/setmasterpassworddlg.ui:8 msgctxt "setmasterpassworddlg|SetMasterPasswordDialog" msgid "Set Master Password" -msgstr "Postavite glavnu lozinku" +msgstr "Postavi glavnu lozinku" #. eBpmB #: 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 "Lozinke su za mrežna povezivanja zaštićene glavnom lozinkom i tražit će se od vas da je unesete jednom po sesiji ako %PRODUCTNAME preuzima lozinku iz zaštićenog popisa lozinki." +msgstr "Lozinke za mrežna povezivanja su zaštićene glavnom lozinkom. Morat ćeš je upisati za svaku sesiju, ako %PRODUCTNAME pronađe lozinku iz zaštićenog popisa lozinki." #. G2dce #: uui/uiconfig/ui/setmasterpassworddlg.ui:102 msgctxt "setmasterpassworddlg|label2" msgid "_Enter password:" -msgstr "_Upišite lozinku:" +msgstr "_Upiši lozinku:" #. AG7BG #: uui/uiconfig/ui/setmasterpassworddlg.ui:122 msgctxt "extended_tip|password1" msgid "Enter the master password." -msgstr "Unesite glavnu lozinku." +msgstr "Upiši glavnu lozinku." #. yaAhh #: uui/uiconfig/ui/setmasterpassworddlg.ui:136 msgctxt "setmasterpassworddlg|label3" msgid "_Reenter password:" -msgstr "_Ponovo upišite lozinku:" +msgstr "_Ponovo upiši lozinku:" #. HjihJ #: uui/uiconfig/ui/setmasterpassworddlg.ui:157 msgctxt "extended_tip|password2" msgid "Enter the master password again." -msgstr "Ponovno unesite glavnu lozinku." +msgstr "Ponovo upiši glavnu lozinku." #. aNzdJ #: uui/uiconfig/ui/setmasterpassworddlg.ui:172 msgctxt "setmasterpassworddlg|label4" msgid "Caution: If you forget the master password, you will be unable to access any of the information protected by it. Passwords are case sensitive." -msgstr "Oprez: Ukoliko zaboravite glavnu lozinku, nećete moći pristupiti informacijama koje štiti. Lozinke razlikuju velika i mala slova." +msgstr "Oprez: Ukoliko zaboraviš glavnu lozinku, nećeš moći pristupiti informacijama koje štiti. Lozinke razlikuju velika i mala slova." #. BHvee #: 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 "Dodijelite glavnu lozinku kako biste zaštitili pristup spremljenoj lozinci." +msgstr "Dodijeli glavnu lozinku kao zaštitu za pristupanje spremljenoj lozinci." #. dAeLu #: uui/uiconfig/ui/simplenameclash.ui:8 @@ -1285,7 +1285,7 @@ #: uui/uiconfig/ui/unknownauthdialog.ui:8 msgctxt "unknownauthdialog|UnknownAuthDialog" msgid "Website Certified by an Unknown Authority" -msgstr "Web stranice su certificirane s nepoznatom mjerodavnom organizacijom" +msgstr "Web-stranice certificirane od nepoznate mjerodavne organizacije" #. incLD #: uui/uiconfig/ui/unknownauthdialog.ui:82 diff -Nru libreoffice-7.3.4/translations/source/hr/vcl/messages.po libreoffice-7.3.5/translations/source/hr/vcl/messages.po --- libreoffice-7.3.4/translations/source/hr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -588,12 +588,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" @@ -1238,7 +1238,7 @@ #: vcl/inc/units.hrc:33 msgctxt "SV_FUNIT_STRINGS" msgid "twip" -msgstr "twip" +msgstr "tvip" #. Rk9tP #: vcl/inc/units.hrc:34 @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Prilagođeno" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Stranice:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "od" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margina:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "između stranica" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Razmak:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "od ruba lista" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Redoslijed:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Slijeva nadesno, zatim dolje" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Odozgo prema dolje, zatim desno" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Odozgo prema dolje, zatim lijevo" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Zdesna nalijevo, zatim dolje" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Iscrtaj okvir oko svake stranice" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Predprikaz sakupljanja" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Raspored stranice" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Općenito" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/hr/wizards/messages.po libreoffice-7.3.5/translations/source/hr/wizards/messages.po --- libreoffice-7.3.4/translations/source/hr/wizards/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/wizards/messages.po 2022-07-15 19:12:51.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-19 13:14+0100\n" -"PO-Revision-Date: 2021-04-13 12:37+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563442906.000000\n" #. gbiMx @@ -1665,12 +1665,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/writerperfect/messages.po libreoffice-7.3.5/translations/source/hr/writerperfect/messages.po --- libreoffice-7.3.4/translations/source/hr/writerperfect/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/writerperfect/messages.po 2022-07-15 19:12:51.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-23 11:46+0100\n" -"PO-Revision-Date: 2021-04-13 12:38+0000\n" -"Last-Translator: Kruno \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Milo Ivir \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561906039.000000\n" #. DXXuk @@ -117,12 +117,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hr/xmlsecurity/messages.po libreoffice-7.3.5/translations/source/hr/xmlsecurity/messages.po --- libreoffice-7.3.4/translations/source/hr/xmlsecurity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hr/xmlsecurity/messages.po 2022-07-15 19:12:51.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-29 16:04+0200\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563304702.000000\n" #. EyJrF @@ -281,12 +281,12 @@ #. VtJS9 msgctxt "stock" msgid "_Remove" -msgstr "_Ukloni" +msgstr "U_kloni" #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "V_rati na zadane postavke" +msgstr "_Vrati na zadano" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/hsb/chart2/messages.po libreoffice-7.3.5/translations/source/hsb/chart2/messages.po --- libreoffice-7.3.4/translations/source/hsb/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547328704.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Postaja ličbu linijow za špaltowe a linijowe diagramy." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Wubjerće zakładny diagramowy typ." diff -Nru libreoffice-7.3.4/translations/source/hsb/cui/messages.po libreoffice-7.3.5/translations/source/hsb/cui/messages.po --- libreoffice-7.3.4/translations/source/hsb/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562261725.000000\n" #. GyY9M @@ -16185,7 +16185,7 @@ #: cui/uiconfig/ui/optsavepage.ui:355 msgctxt "optsavepage|odfversion" msgid "1.2 Extended" -msgstr "1.2 Extended" +msgstr "1.2 rozšěrjeny" #. vLmeZ #: cui/uiconfig/ui/optsavepage.ui:356 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Awtomatiski" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Wysoki kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasiski" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Podawa symbolowy stil za symbole w symbolowych lajstach a dialogach." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Sy_mbolowy stil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Přidajće dalše symbolowe drasty přez rozšěrjenja" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Symbolowy stil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Wužaduje sej nowy start" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Hard_warowe pospěšenje wužiwać" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Direktny přistup k funkcijam hardwary grafiskeho wozjewjenskeho adaptera, zo by so zwobraznjenje na wobrazowce polěpšiło." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Wu_hładźenje kromow wužiwać" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Hdyž so podpěruje, móžeće antialiasing grafiki zmóžnić abo znjemóžnić. Ze zmóžnjenym antialiasingom, zwobraznjenje najwjace grafiskich objektow hładše wupada, a z mjenje artefaktami." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia za rysowanje wužiwać" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia za rysowanje softwary wunuzować" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Wužaduje sej nowy start. To móže wužiwanju grafikowych ćěrjakow zadźěwać." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia je tuchwilu znjemóžnjena." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia je tuchwilu znjemóžnjena." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Wudaće grafiki" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Přeh_lad pismow pokazać" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Pokazuje mjena wuběrajomnych pismow we wotpowědnym pismje, na přikład pisma w polu „Pismo“ w lajsće „Formatowanje“." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Wu_hładźenje pismow wobrazowki" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Wubjerće tute nastajenje, zo by tekst na wobrazowce hładši wupadał." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "w_ot:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Zapodajće najmjeńšu pismowu wulkosć, na kotruž so ma antialiasing nałožić." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Lisćina pismow" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafikowe testy přewjesć" diff -Nru libreoffice-7.3.4/translations/source/hsb/dbaccess/messages.po libreoffice-7.3.5/translations/source/hsb/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/hsb/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562190673.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "_Nowu datowu banku wutworić" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Wubjerće tute nastajenje, zo byšće nowu datowu banku załožił." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Zasadźena datowa banka:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Eksistowacu _dataju datoweje banki wočinić" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Wubjerće, zo byšće dataju datoweje banki z lisćiny njedawno wužitych datajow wočinił abo z dialoga datajoweho wuběranja." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Njedawno wužity:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Wubjerće dataju datoweje banki z lisćiny njedawno wužitych datajow. Klikńće na Dokónčić, zo byšće dataju hnydom wočinił a asistent wopušćił." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Wočinić" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Wočinja dialog wuběranja datajow, hdźež móžeće dataju datoweje banki wubrać. Klikńće na „Öffnen“ abo na „OK“ w dialogu wuběranja datajow, zo byšće dataju hnydom wočinił a asistent wopušćił." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Z e_ksistowacej datowej banku zwjazać" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Wubjerće, zo byšće dokument datoweje banki za eksistowacy zwisk datoweje banki wutworił." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Wubjerće typ datoweje banki za eksistowacy zwisk datoweje banki." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "ani HSQLDB ani Firebird k dispoziciji njeje." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Asistent datoweje banki dataju datoweje banki wutwori, kotraž informacije wo datowej bance wobsahuje." @@ -3786,7 +3786,7 @@ #: dbaccess/uiconfig/ui/ldappage.ui:44 msgctxt "ldappage|label1" msgid "_Base DN:" -msgstr "_Base DN:" +msgstr "_BaseDN:" #. iAAWx #: dbaccess/uiconfig/ui/ldappage.ui:69 diff -Nru libreoffice-7.3.4/translations/source/hsb/extensions/messages.po libreoffice-7.3.5/translations/source/hsb/extensions/messages.po --- libreoffice-7.3.4/translations/source/hsb/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554730645.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formular aktualizować" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Wobstarać" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Pósłać" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Wjacedźělny" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (krótki)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (krótki LL)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (krótki LLLL)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (dołhi)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/LL" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/LL" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "LL/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/LLLL" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/LLLL" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "LLLL/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "LL-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "LLLL-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Njewubrany" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Wubrany" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Njedefinowany" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Wšě datowe sadźby" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktualna datowa sadźba" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktualna strona" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ně" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Haj" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Nadrjadowany formular" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Žadyn" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jednory" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Wjacory" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Wobłuk" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horicontalne" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Wertikalne" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "W porjadku" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Přetorhnyć" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoc" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Wubrany zapisk" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozicija wubraneho zapiska" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jednolinkowy" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Wjacelinkowy" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Wjacelinkowy z formatowanjom" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Žadyn" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horicontalny" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Wertikalny" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Wobě" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Płony" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Nalěwo horjeka" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Nalěwo wosrjedźa" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Nalěwo deleka" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Naprawo horjeka" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Naprawo wosrjedźa" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Naprawo deleka" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Horjeka nalěwo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Horjeka wosrjedźa" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Horjeka naprawo" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Deleka nalěwo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Deleka wosrjedźa" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Deleka naprawo" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Wosrjedźa" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Wobchować" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Wuměnić" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Schować" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ně" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Wulkosćowy poměr wobchować" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Wulkosći přiměrić" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Wotlěwa doprawa" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Wotprawa dolěwa" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Nastajenja nadrjadowaneho objekta wužiwać" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ženje" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Hdyž je wubrany" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Přeco" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "K wotstawkej" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Jako znamješko" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "K stronje" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "K wobłukej" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "K znamješku" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "K stronje" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "K celi" diff -Nru libreoffice-7.3.4/translations/source/hsb/extras/source/autocorr/emoji.po libreoffice-7.3.5/translations/source/hsb/extras/source/autocorr/emoji.po --- libreoffice-7.3.4/translations/source/hsb/extras/source/autocorr/emoji.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/extras/source/autocorr/emoji.po 2022-07-15 19:12:51.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: 2022-04-05 10:46+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559503499.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -744,7 +744,7 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "cól, sekundowe znamješko" +msgstr "cól" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji #. yALTE @@ -2174,7 +2174,7 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "Farsi" +msgstr "Persišćina" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji #. n8fgp @@ -5124,7 +5124,7 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "cocktail" +msgstr "cocktailowa škleńca" #. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji #. sdBze @@ -6564,7 +6564,7 @@ "PANDA_FACE\n" "LngText.text" msgid "panda" -msgstr "wobličko pandy" +msgstr "panda" #. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji #. U4cLM @@ -9964,7 +9964,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "minibus" +msgstr "mały bus" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #. UjeDu @@ -11934,7 +11934,7 @@ "MUSICAL_KEYBOARD_WITH_JACKS\n" "LngText.text" msgid "synthesizer" -msgstr "keyboard" +msgstr "synthesizer" #. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji #. KpEFc diff -Nru libreoffice-7.3.4/translations/source/hsb/formula/messages.po libreoffice-7.3.5/translations/source/hsb/formula/messages.po --- libreoffice-7.3.4/translations/source/hsb/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1560767171.000000\n" #. YfKFn @@ -73,7 +73,7 @@ #: formula/inc/core_resource.hrc:2290 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "#This Row" -msgstr "#This Row" +msgstr "#Tuta linka" #. kHXXq #: formula/inc/core_resource.hrc:2291 diff -Nru libreoffice-7.3.4/translations/source/hsb/fpicker/messages.po libreoffice-7.3.5/translations/source/hsb/fpicker/messages.po --- libreoffice-7.3.4/translations/source/hsb/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-28 07:36+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -216,55 +216,55 @@ msgstr "Poslednja změna" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "W_očinić" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Wot_hrać" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Datajowe_mjeno:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Datajowy_typ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Přećiwo pisanju škitany" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Z hesłom składować" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Awtomatiska datajowa_kóncowka" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Filtrowe nastajenja wob_dźěłać" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Z GPG-klučom zaklučować" diff -Nru libreoffice-7.3.4/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2022-03-31 21:50+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547329320.000000\n" #. HhMVS @@ -784,7 +784,7 @@ "DisplayName\n" "value.text" msgid "Report Builder" -msgstr "Report Builder" +msgstr "Designer rozprawow" #. iE8oL #: ExtendedColorScheme.xcu @@ -1004,7 +1004,7 @@ "STR_SUN_OPTIMIZATION_WIZARD2\n" "value.text" msgid "Presentation Minimizer" -msgstr "Presentation Minimizer" +msgstr "Miniměrowak prezentacijow" #. sH2AP #: PresentationMinimizer.xcu diff -Nru libreoffice-7.3.4/translations/source/hsb/officecfg/registry/data/org/openoffice.po libreoffice-7.3.5/translations/source/hsb/officecfg/registry/data/org/openoffice.po --- libreoffice-7.3.4/translations/source/hsb/officecfg/registry/data/org/openoffice.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/officecfg/registry/data/org/openoffice.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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: 2018-03-04 20:42+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1520196130.000000\n" #. foAxC @@ -103,4 +104,4 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Builder" -msgstr "Base: Report Builder" +msgstr "Base: Designer rozprawow" diff -Nru libreoffice-7.3.4/translations/source/hsb/sc/messages.po libreoffice-7.3.5/translations/source/hsb/sc/messages.po --- libreoffice-7.3.4/translations/source/hsb/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-31 21:49+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562190965.000000\n" #. kBovX @@ -25261,97 +25261,97 @@ msgstr "~Napohlad" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Wobr_az" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysować" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysować" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Ćišćeć" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Ć~išćeć" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšěrjenje" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšěrjenje" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nastroje" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Nastroje" @@ -25710,139 +25710,139 @@ msgstr "Wobr_az" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Rjadować" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Ba_rba" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Lěsyca" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Rěč" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Přepruwowanje" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentary" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Při_runać" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Napohlad" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Rysować" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Wo_bdźěłać" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Rjadować" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Napohlad" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Zes_kupić" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Pismo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "W_usměrjenje" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Napohlad" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Zasadźić" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medije" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Wobłu_k" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Rjadować" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Lěsyca" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Napohlad" diff -Nru libreoffice-7.3.4/translations/source/hsb/sccomp/messages.po libreoffice-7.3.5/translations/source/hsb/sccomp/messages.po --- libreoffice-7.3.4/translations/source/hsb/sccomp/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/sccomp/messages.po 2022-07-15 19:12:51.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-29 16:03+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1516033083.000000\n" #. whDxm @@ -26,13 +26,13 @@ #: sccomp/inc/strings.hrc:25 msgctxt "RID_COINMP_SOLVER_COMPONENT" msgid "%PRODUCTNAME CoinMP Linear Solver" -msgstr "%PRODUCTNAME CoinMP Linear Solver" +msgstr "%PRODUCTNAME CoinMP Linearny solver" #. 22ZBP #: sccomp/inc/strings.hrc:26 msgctxt "RID_SWARM_SOLVER_COMPONENT" msgid "%PRODUCTNAME Swarm Non-Linear Solver (experimental)" -msgstr "Njelinearny solwer %PRODUCTNAME z rojom (eksperimentelny)" +msgstr "Njelinearny solver %PRODUCTNAME z rojom (eksperimentelny)" #. 8TGKo #: sccomp/inc/strings.hrc:27 diff -Nru libreoffice-7.3.4/translations/source/hsb/scp2/source/base.po libreoffice-7.3.5/translations/source/hsb/scp2/source/base.po --- libreoffice-7.3.4/translations/source/hsb/scp2/source/base.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/scp2/source/base.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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: 2018-08-22 20:55+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1534971320.000000\n" #. cbtbu @@ -85,7 +86,7 @@ "STR_NAME_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n" "LngText.text" msgid "PostgreSQL Connector" -msgstr "PostgreSQL Connector" +msgstr "Zwjazowak PostgreSQL" #. Kfv2H #: postgresqlsdbc.ulf @@ -94,7 +95,7 @@ "STR_DESC_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n" "LngText.text" msgid "PostgreSQL Connector" -msgstr "PostgreSQL Connector" +msgstr "Zwjazowak PostgreSQL" #. DXpPd #: registryitem_base.ulf diff -Nru libreoffice-7.3.4/translations/source/hsb/sd/messages.po libreoffice-7.3.5/translations/source/hsb/sd/messages.po --- libreoffice-7.3.4/translations/source/hsb/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562191169.000000\n" #. WDjkB @@ -4175,109 +4175,109 @@ msgstr "~Tabela" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Wobraz" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysować" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysować" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Globalny dokument" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Předłoha" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšěrjenje" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšěrjenje" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nastroje" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Nastroje" @@ -7064,109 +7064,109 @@ msgstr "~Tabela" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Wobraz" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Wob~raz" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysować" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysować" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Medije" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Medije" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Globalny dokument" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Předłoha" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ro_zšěrjenje" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ro~zšěrjenje" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nastroje" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Nastroje" diff -Nru libreoffice-7.3.4/translations/source/hsb/starmath/messages.po libreoffice-7.3.5/translations/source/hsb/starmath/messages.po --- libreoffice-7.3.4/translations/source/hsb/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-10-10 10:10+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562190787.000000\n" #. GrDhX @@ -2330,7 +2330,7 @@ #: starmath/inc/strings.hrc:340 msgctxt "STR_AQUA" msgid "aqua" -msgstr "aqua" +msgstr "tirkis" #. GLy7q #: starmath/inc/strings.hrc:341 diff -Nru libreoffice-7.3.4/translations/source/hsb/sw/messages.po libreoffice-7.3.5/translations/source/hsb/sw/messages.po --- libreoffice-7.3.4/translations/source/hsb/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562190634.000000\n" #. v3oJv @@ -10513,19 +10513,19 @@ msgstr "Přesunje wubranu wotstawkowu předłohu wo jednu runinu w zapisowej hierarchiji dele." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Předłoha" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Předłohi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Wutwori zapisowe zapiski z wěstych wotstawkowych předłohow." @@ -13969,37 +13969,37 @@ msgstr "Datowe banki wuměnić" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definować" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Wužiwane datowe banki" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "K _dispoziciji stejace datowe banki" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Přepytać..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Wočinja dialog „Öffnen/Wočinić“, zo byšće dataju datoweje banki (*.odb) wubrał. Wubrana dataja so lisćinje k dispoziciji stejacych datowych bankow přidawa." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14009,31 +14009,31 @@ "Wužiwajće tłóčatko přepytać, zo byšće dataju datoweje banki wubrał." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Nalistuje datowe banki, kotrež so tuchwilu wužiwaja." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Nalistuje datowe banki, kotrež su w %PRODUCTNAME zregistrowane." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Datowe banki wuměnić" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Datowa banka nałožena na dokument:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Změńće datowe žórła za aktualny dokument." @@ -20087,109 +20087,109 @@ msgstr "Aktualny dokument wužiwać" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Wužiwa aktualny dokument Writer jako zakład za dokument serijoweho lista." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "No_wy dokument wutworić" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Wutwori nowy dokument Writer, zo by so za serijowy list wužiwał." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Z eksistowacym dokumentom započeć" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Wubjerće eksistowacy dokument Writer, kotryž so ma jako zakład za dokument serijoweho lista wužiwać." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Z předło_hu započeć" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Wubjerće předłohu, z kotrejž so ma dokument serijoweho lista wutworić." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Njedawno składowany startowy dokument wužiwać" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Wužiwajće eksistowacy dokument serijoweho lista jako zakład za nowy dokument serijoweho lista." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Wubjerće dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Přepytać..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Pytajće za dokumentom Writer, kotryž chceće wužiwać a klikńće potom na „Wočinić“." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Přepy_tać..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Wočinja dialog za wuběranje předłohow." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datowe žórło aktualneho dokumenta zregistrowane njeje. Prošu wuměńće datowu banku." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Datowu banku wuměnić…" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Wubjerće startowy dokument za serijowy list" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Podajće dokument, kotryž chceće jako zakład za dokument serijoweho lista wužiwać." @@ -22332,49 +22332,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Nastajenja" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Wobběh" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperwotkaz" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ramiki" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Płonina" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparenca" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27070,7 +27070,7 @@ msgstr "Aktualizować" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Pokazuje statistiku za aktualnu dataju." diff -Nru libreoffice-7.3.4/translations/source/hsb/vcl/messages.po libreoffice-7.3.5/translations/source/hsb/vcl/messages.po --- libreoffice-7.3.4/translations/source/hsb/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hsb/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-10-09 20:01+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ #: vcl/inc/print.hrc:41 msgctxt "RID_STR_PAPERNAMES" msgid "Letter" -msgstr "Letter" +msgstr "List" #. GJoaX #: vcl/inc/print.hrc:42 @@ -166,7 +166,7 @@ #: vcl/inc/print.hrc:57 msgctxt "RID_STR_PAPERNAMES" msgid "German Legal Fanfold" -msgstr "German Legal Fanfold" +msgstr "Němska legalna bjezkónčna papjera" #. A48FP #: vcl/inc/print.hrc:58 @@ -244,7 +244,7 @@ #: vcl/inc/print.hrc:70 msgctxt "RID_STR_PAPERNAMES" msgid "Ledger" -msgstr "Ledger" +msgstr "Hłowna kniha" #. nD5vU #: vcl/inc/print.hrc:71 @@ -286,13 +286,13 @@ #: vcl/inc/print.hrc:77 msgctxt "RID_STR_PAPERNAMES" msgid "U.S. Standard Fanfold" -msgstr "U.S. Standard Fanfold" +msgstr "U.S. standardna bjezkónčna papjera" #. EnDDT #: vcl/inc/print.hrc:78 msgctxt "RID_STR_PAPERNAMES" msgid "German Standard Fanfold" -msgstr "German Standard Fanfold" +msgstr "Němska standardna bjezkónčna papjera" #. PbPaG #: vcl/inc/print.hrc:79 @@ -322,7 +322,7 @@ #: vcl/inc/print.hrc:83 msgctxt "RID_STR_PAPERNAMES" msgid "Invitation Envelope" -msgstr "Invitation Envelope" +msgstr "Přeprošenska wobalka" #. P9Ams #: vcl/inc/print.hrc:84 @@ -352,7 +352,7 @@ #: vcl/inc/print.hrc:88 msgctxt "RID_STR_PAPERNAMES" msgid "Double Postcard" -msgstr "Double Postcard" +msgstr "Dwójna dopisnica" #. ZidKk #: vcl/inc/print.hrc:89 @@ -1280,7 +1280,7 @@ #: vcl/inc/units.hrc:40 msgctxt "SV_FUNIT_STRINGS" msgid "inch" -msgstr "inch" +msgstr "cól" #. 4AEJE #. To translators: prime symbol for foot @@ -2324,169 +2324,169 @@ msgstr "Wjacore strony na jedne łopjeno papjery ćišćeć." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Swójski" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Wubjerće, kelko stronow so ma na łopjeno papjery ćišćeć." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Strony:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Wubjerće ličbu linkow." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "wot" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Wubjerće ličbu špaltow." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Kroma:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Wubjerće kromu mjez jednotliwymi stronami na kóždym łopjenje papjery." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mjez stronami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Wotstup:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Wubjerće kromu mjez wućišćanymi stronami a kromu papjery." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "k łopjenowej kromje" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Porjad:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Wotlěwa doprawa, potom dele" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Wot horjeka do deleka, potom naprawo" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Wot horjeka dele, potom nalěwo" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Wotprawa dolěwa, potom dele" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Wubjerće porjad, w kotrymž so maja strony wućišćeć." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ramik wokoło kóždeje strony rysować" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Ramik wokoło kóždeje strony rysować." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Wubjerće tute nastajenje, zo byšće dokument w brošurowym formaće ćišćał." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Zestajenski přehlad" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Změńće porjad stronow, kotrež so maja na kóždym łopjenje papjery ćišćeć. Přehlad pokazuje, kak kóžde kónčne łopjeno papjery wupada." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Wj_ace" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Wuhotowanje strony" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Powšitkowne" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Ćišći aktualny dokument, wuběr abo strony, kotrež podawaće. Móžeće tež ćišćerske nastajenja za aktualny dokument nastajić." diff -Nru libreoffice-7.3.4/translations/source/hu/chart2/messages.po libreoffice-7.3.5/translations/source/hu/chart2/messages.po --- libreoffice-7.3.4/translations/source/hu/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-03 07:39+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563972858.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Állítsa be a vonalak számát az oszlop és vonal diagramtípushoz." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Válasszon az alapvető diagramtípusok közül." diff -Nru libreoffice-7.3.4/translations/source/hu/cui/messages.po libreoffice-7.3.5/translations/source/hu/cui/messages.po --- libreoffice-7.3.4/translations/source/hu/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-03 07:38+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" @@ -17138,176 +17138,152 @@ msgid "Automatic" msgstr "Automatikus" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Kontrasztos" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasszikus" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Megadja az ikonstílust az eszköztárakon és párbeszédablakokban megjelenő ikonokhoz." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Ikonstílus:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "További ikonok hozzáadása kiterjesztésből" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikonstílus" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Újraindítást igényel" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "_Hardveres gyorsítás alkalmazása" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Közvetlenül kihasználja a grafikus kártya hardverében rejlő lehetőségeket a jobb megjelenítés érdekében." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Élsimítás _használata" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Ha támogatott, engedélyezheti és letilthatja a képek élsimítását. Ha az élsimítás engedélyezett, a legtöbb grafikai objektum megjelenítése simábbnak és kevesebb hibát tartalmazónak tűnik." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia használata mindenhez" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia szoftveres megjelenítés kényszerítése" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Újraindítást igényel. Ennek engedélyezése megakadályozza a grafikus illesztőprogramok használatát." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "A Skia jelenleg be van kapcsolva." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "A Skia jelenleg ki van kapcsolva." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafikus kimenet" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Betűkészletek _előnézete" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "A kiválasztható betűkészletek nevét a megfelelő betűkészlettel jeleníti meg például a Betűkészlet mezőben a Formázás eszköztáron." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Be_tűk élsimítása a képernyőn" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Jelölje be a szöveg képernyőn való megjelenésének simává tételéhez." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_ettől:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Adja meg a legkisebb betűméretet, amelyre alkalmazni kell az élsimítást." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Betűkészlet-listák" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafikus tesztek futtatása" diff -Nru libreoffice-7.3.4/translations/source/hu/dbaccess/messages.po libreoffice-7.3.5/translations/source/hu/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/hu/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-03 07:39+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563099629.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Új _adatbázis létrehozása" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Válassza ezt új adatbázis létrehozásához" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Beágyazott _adatbázis:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "_Létező adatbázisfájl megnyitása" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Válassza ki a megnyitandó adatbázisfájlt az utoljára megnyitott fájlok listájából vagy a fájlkiválasztó párbeszédablak segítségével." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Nemrég használt" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Válassza ki a megnyitandó adatbázisfájlt az utoljára megnyitott fájlok listájából. Kattintson a Befejezés gombra a fájl azonnali megnyitásához és a tündérből való kilépéshez." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Megnyitás" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Egy fájlkiválasztó párbeszédablakot nyit meg, amelyben kiválaszthat egy adatbázisfájlt. Kattintson a fájlkiválasztó párbeszédablak Megnyitás vagy az OK gombjára a fájl azonnali megnyitásához és a tündérből való kilépéshez." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "_Kapcsolódás létező adatbázishoz" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Válassza ezt egy meglévő adatbázis-kapcsolaton alapuló adatbázis-dokumentum létrehozásához." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Kiválasztja az adatbázis típusát a meglévő adatbázis-kapcsolathoz." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Nem lehet új adatbázist létrehozni, mert sem a HSQLDB, sem a Firebird nem érhető el." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Az Adatbázistündér létrehoz egy adatbázisfájlt, amely az adatbázisról tartalmaz információkat." diff -Nru libreoffice-7.3.4/translations/source/hu/extensions/messages.po libreoffice-7.3.5/translations/source/hu/extensions/messages.po --- libreoffice-7.3.4/translations/source/hu/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-03 07:39+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1560255539.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Űrlap frissítése" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Lekérés" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Küldés" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Több részes" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Szöveg" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (rövid)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (rövid ÉÉ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (rövid ÉÉÉÉ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (hosszú)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "NN/HH/ÉÉ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "HH/NN/ÉÉ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ÉÉ/HH/NN" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "NN/HH/ÉÉÉÉ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "HH/NN/ÉÉÉÉ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ÉÉÉÉ/HH/NN" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ÉÉ-HH-NN" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ÉÉÉÉ-HH-NN" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 DU" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 DU" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nincs kijelölve" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Kijelölve" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nincs megadva" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Összes rekord" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktív rekord" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuális lap" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nem" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Igen" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Szülőűrlap" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nincs" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Egyszeres" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Többszörös" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Tartomány" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vízszintes" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Függőleges" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Alapértelmezett" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Mégse" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Súgó" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Kijelölt bejegyzés" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Kijelölt bejegyzés pozíciója" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Egysoros" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Többsoros" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Többsoros formázással" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nincs" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vízszintes" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Függőleges" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Mindkettő" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Lapos" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Balra fent" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Balra középen" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Balra lent" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Jobbra fent" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Jobbra középen" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Jobbra lent" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Felette balra" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Felette középen" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Felette jobbra" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Alatta balra" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Alatta középen" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Alatta jobbra" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Középre" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Megőrzés" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Csere" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Összecsukás" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nem" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Rögzített méretarány" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Méretre igazítás" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Balról jobbra" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Jobbról balra" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Szülőobjektum beállításainak használata" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Soha" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Ha fókuszban van" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Mindig" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Bekezdésre" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Karakterként" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Oldalra" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Keretre" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Karakterre" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Oldalra" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Cellára" diff -Nru libreoffice-7.3.4/translations/source/hu/fpicker/messages.po libreoffice-7.3.5/translations/source/hu/fpicker/messages.po --- libreoffice-7.3.4/translations/source/hu/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-08-25 05:04+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" @@ -216,55 +216,55 @@ msgstr "Módosítás dátuma" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Megnyitás" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Lejátszás" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fájl_név:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Fájl_típus:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Csak _olvasható" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Mentés jelszóval" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatikus fájlnévkiterjesztés" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Szűrő_beállítások szerkesztése" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Titkosítás GPG kulccsal" diff -Nru libreoffice-7.3.4/translations/source/hu/helpcontent2/source/text/scalc/00.po libreoffice-7.3.5/translations/source/hu/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.4/translations/source/hu/helpcontent2/source/text/scalc/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/helpcontent2/source/text/scalc/00.po 2022-07-15 19:12:51.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-09-27 19:09+0200\n" -"PO-Revision-Date: 2022-04-26 12:55+0000\n" -"Last-Translator: Armin Timar \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: Andras Timar \n" "Language-Team: Hungarian \n" "Language: hu\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542196886.000000\n" #. E9tti @@ -95,7 +95,7 @@ "par_id3159233\n" "help.text" msgid "Choose Insert - Headers and Footers - Header and Footer tabs." -msgstr "Válassza a Beszúrás - Élőfej és élőláb - Élőfej és élőláb tabulátorokat." +msgstr "Válassza a Beszúrás - Élőfej és élőláb - Élőfej és élőláb lapokat." #. swD6H #: 00000402.xhp @@ -891,7 +891,6 @@ #. ABeaN #: 00000405.xhp -#, fuzzy msgctxt "" "00000405.xhp\n" "par_id3154532\n" @@ -1585,7 +1584,6 @@ #. ntpHG #: 00000412.xhp -#, fuzzy msgctxt "" "00000412.xhp\n" "par_id3146870\n" diff -Nru libreoffice-7.3.4/translations/source/hu/sc/messages.po libreoffice-7.3.5/translations/source/hu/sc/messages.po --- libreoffice-7.3.4/translations/source/hu/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-04 15:38+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563099940.000000\n" #. kBovX @@ -25252,97 +25252,97 @@ msgstr "~Nézet" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Kép" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ké~p" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rajzolás" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Rajzolás" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objektum" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "O~bjektum" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Méd_ia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Nyomtatás" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Nyo~mtatás" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Ű~rlap" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Ű~rlap" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ki_terjesztés" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ki~terjesztés" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eszközök" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Eszközök" @@ -25701,139 +25701,139 @@ msgstr "_Kép" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Elrendezés" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "S_zín" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Rács" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Nyelv" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Véleményezés" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Megjegyzések" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Össze_hasonlítás" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Nézet" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Rajzolás" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "S_zerkesztés" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Elrendezés" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Nézet" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Csoportosítás" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "B_etűkészlet…" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Igazítás" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Nézet" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Beszúrás" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Méd_ia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ke_ret" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Elrendezés" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Rács" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Nézet" diff -Nru libreoffice-7.3.4/translations/source/hu/sd/messages.po libreoffice-7.3.5/translations/source/hu/sd/messages.po --- libreoffice-7.3.4/translations/source/hu/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-03 07:38+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563101856.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "Tá~blázat" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Kép" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ké~p" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Ra_jzolás" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Ra_jzolás" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objektum" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objektum" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Méd_ia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Ű_rlap" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Ű~rlap" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Sablon" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Sablon" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ki_terjesztés" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ki~terjesztés" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eszközök" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Eszközök" @@ -7062,109 +7062,109 @@ msgstr "~Táblázat" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Kép" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ké~p" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rajzolás" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Rajzolás" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objektum" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "O~bjektum" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Méd_ia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Média" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Ű_rlap" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Ű~rlap" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Sablon" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Sablo~n" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ki_terjesztés" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ki~terjesztés" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Eszközök" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Eszközök" diff -Nru libreoffice-7.3.4/translations/source/hu/sw/messages.po libreoffice-7.3.5/translations/source/hu/sw/messages.po --- libreoffice-7.3.4/translations/source/hu/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-03 07:39+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" @@ -10499,19 +10499,19 @@ msgstr "A kijelölt bekezdésstílust egy szinttel lejjebb helyezi a jegyzékhierarchiában." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stílus" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stílusok" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Jegyzékbejegyzéseket hoz létre adott bekezdésstílusokból" @@ -13955,37 +13955,37 @@ msgstr "Adatbázisok kicserélése" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "OK" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Használt adatbázisok" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Elérhető adatbázisok" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Tallózás..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Egy fájlmegnyitási párbeszédablakot nyit meg, amelyben kiválaszthat egy adatbázisfájlt (*.odb). A kiválasztott fájl felkerül az Elérhető adatbázisok listára." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "A Tallózás gombbal választhatja ki az adatbázisfájlt." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Felsorolja a jelenleg használt adatbázisokat." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "A %PRODUCTNAME programban regisztrált adatbázisokat sorolja fel." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Adatbázisok kicserélése" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "A dokumentumban használt adatbázis:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Módosítja az aktuális dokumentum adatforrásait." @@ -20073,109 +20073,109 @@ msgstr "_Aktuális dokumentum használata" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Az aktuális Writer-dokumentumot használja alapként a körlevélhez." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Ú_j dokumentum létrehozása" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Egy új Writer-dokumentumot hoz létre körlevélhez való használathoz." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "_Létező dokumentum használata" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Válasszon ki egy meglévő Writer-dokumentumot, amelyet a körlevél alapjaként kíván használni." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Új dokumentum létrehozása sa_blonból" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Válassza ki azt a sablont, amelynek alapján létre kívánja hozni a körlevelet." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Ne_mrég mentett dokumentum használata" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Az új körlevélhez használjon egy meglévő körlevél-dokumentumot." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Válassza ki a dokumentumot." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Tallózás..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Keresse meg a használni kívánt Writer-dokumentumot, majd kattintson a Megnyitás gombra." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Tallózás..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Megnyit egy sablonválasztó ablakot." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Az aktuális dokumentum adatforrása nincs regisztrálva. Cserélje ki az adatbázist." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Adatbázis kicserélése..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Kiindulási dokumentum a körlevél számára" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Adja meg azt a dokumentumot, amelyet alapként kíván használni a körlevél-dokumentumhoz." @@ -22318,49 +22318,49 @@ msgstr "Objektum" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Típus" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Beállítások" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Körbefuttatás" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperhivatkozás" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Szegélyek" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Terület" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Átlátszóság" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makró" @@ -27056,7 +27056,7 @@ msgstr "Frissítés" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Megjeleníti az aktuális fájl statisztikáját." diff -Nru libreoffice-7.3.4/translations/source/hu/vcl/messages.po libreoffice-7.3.5/translations/source/hu/vcl/messages.po --- libreoffice-7.3.4/translations/source/hu/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/hu/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-01-03 07:38+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563101872.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Több oldal nyomtatása egy lapra" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Egyéni" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Válassza ki, hogy laponként hány oldalt szeretne kinyomtatni." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Oldalak:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Válassza ki a sorok számát." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "mérték" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Válassza ki az oszlopok számát." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margó:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Adja meg a lapon az egyes oldalak közötti margók nagyságát." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "oldalak között" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Távolság:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Adja meg a nyomtatott lapok és a papír széle közötti margó nagyságát." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "lap széléig" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Rendezés:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Balról jobbra, majd le" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Fentről lefelé, majd jobbra" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Fentről lefelé, majd balra" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Jobbról balra, majd le" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Megadja az oldalak nyomtatási sorrendjét." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Szegély rajzolása minden oldal köré" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Jelölje be, ha szegélyt akar rajzolni minden oldal köré." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosúra" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Jelölje be a dokumentum brosúra formátumban való nyomtatásához." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Szétválogatás előnézete" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Módosítsa a nyomtatandó oldalak elrendezését az egyes papírlapokon. Az előnézet megmutatja, hogy hogyan fognak kinézni az egyes papírlapok." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "To_vábbi" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Oldalbeállítás" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Általános" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Az aktuális dokumentumot, kijelölést vagy a megadott oldalakat nyomtatja. Módosíthatók az aktuális dokumentum nyomtatási beállításai is." diff -Nru libreoffice-7.3.4/translations/source/id/accessibility/messages.po libreoffice-7.3.5/translations/source/id/accessibility/messages.po --- libreoffice-7.3.4/translations/source/id/accessibility/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/accessibility/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2021-05-08 19:34+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Rizal Muttaqin \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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507241845.000000\n" #. be4e7 @@ -38,13 +38,13 @@ #: accessibility/inc/strings.hrc:27 msgctxt "RID_STR_ACC_ACTION_CHECK" msgid "Check" -msgstr "Contreng" +msgstr "Centang" #. Kva49 #: accessibility/inc/strings.hrc:28 msgctxt "RID_STR_ACC_ACTION_UNCHECK" msgid "Uncheck" -msgstr "Tak Dicontreng" +msgstr "Tak Dicentang" #. nk4DD #: accessibility/inc/strings.hrc:29 diff -Nru libreoffice-7.3.4/translations/source/id/chart2/messages.po libreoffice-7.3.5/translations/source/id/chart2/messages.po --- libreoffice-7.3.4/translations/source/id/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-12-09 14:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Rizal Muttaqin \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: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550758914.000000\n" #. NCRDD @@ -2909,7 +2909,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 "Memilih sebuah skema dari kotak senarai, atau klik di mana saja pada kotak cek di bawah." +msgstr "Memilih sebuah skema dari kotak senarai, atau klik di mana saja pada kotak centang di bawah." #. EyGsf #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78 @@ -3602,7 +3602,7 @@ msgstr "Mengatur banyaknya garis pada jenis bagan Kolom dan Baris." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Memilih jenis bagan dasar." @@ -4391,7 +4391,7 @@ #: chart2/uiconfig/ui/tp_PolarOptions.ui:34 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 "Arah bawaan pengurutan potongan dari diagram kue adalah berlawanan dengan arah jarum jam. Aktifkan kotak contreng Arah putaran jarum jam untuk menggambar potongan pada arah sebaliknya." +msgstr "Arah bawaan pengurutan potongan dari diagram kue adalah berlawanan dengan arah jarum jam. Aktifkan kotak centang Arah putaran jarum jam untuk menggambar potongan pada arah sebaliknya." #. ATHCu #: chart2/uiconfig/ui/tp_PolarOptions.ui:43 @@ -4505,7 +4505,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:153 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 "Bagi seri data di dalam kolom: Baris pertama pada rentang dipakai sebagai nama seri data. Bagi seri data di dalam baris: Baris pertama pada rentang dipakai sebagai kategori. Sementara baris-baris sisanya dipakai oleh seri data. Apabila kotak cek tidak dipilih, semua baris adalah seri data." +msgstr "Bagi seri data di dalam kolom: Baris pertama pada rentang dipakai sebagai nama seri data. Bagi seri data di dalam baris: Baris pertama pada rentang dipakai sebagai kategori. Sementara baris-baris sisanya dipakai oleh seri data. Apabila kotak centang tidak dipilih, semua baris adalah seri data." #. ER2D7 #: chart2/uiconfig/ui/tp_RangeChooser.ui:164 @@ -4517,7 +4517,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:172 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 "Bagi seri data di dalam kolom: Baris pertama pada rentang dipakai sebagai nama seri data. Bagi seri data di dalam baris: Baris pertama pada rentang dipakai sebagai kategori. Sementara baris-baris sisanya dipakai oleh seri data. Apabila kotak cek tidak dipilih, semua baris adalah seri data." +msgstr "Bagi seri data di dalam kolom: Baris pertama pada rentang dipakai sebagai nama seri data. Bagi seri data di dalam baris: Baris pertama pada rentang dipakai sebagai kategori. Sementara baris-baris sisanya dipakai oleh seri data. Apabila kotak centang tidak dipilih, semua baris adalah seri data." #. k9TMD #: chart2/uiconfig/ui/tp_RangeChooser.ui:193 @@ -4553,7 +4553,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:63 msgctxt "tp_Scale|extended_tip|CBX_REVERSE" msgid "Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction." -msgstr "Menentukan letak nilai terendah dan nilai tertinggi saat ditampilkan pada sumbu. Keadaan yang tidak dicontreng adalah arah matematisnya." +msgstr "Menentukan letak nilai terendah dan nilai tertinggi saat ditampilkan pada sumbu. Keadaan yang tidak dicentang adalah arah matematisnya." #. qBbBL #: chart2/uiconfig/ui/tp_Scale.ui:75 @@ -4853,7 +4853,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:218 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 "Bagi bagan kolom \"bertumpuk\" dan \"persen\" (balok vertikal), tandai kotak cek ini untuk menghubungkan lapisan kolom dengan garis." +msgstr "Bagi bagan kolom \"bertumpuk\" dan \"persen\" (balok vertikal), tandai kotak centang ini untuk menghubungkan lapisan kolom dengan garis." #. VHcU3 #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:234 @@ -4913,7 +4913,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:364 msgctxt "tp_SeriesToAxis|extended_tip|CB_INCLUDE_HIDDEN_CELLS" msgid "Check to also show values of currently hidden cells within the source cell range." -msgstr "Contreng agar juga menampilkan nilai dari sel yang kini tersembunyi dalam rentang sel sumber." +msgstr "Centang agar juga menampilkan nilai dari sel yang kini tersembunyi dalam rentang sel sumber." #. LvZ8x #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:380 diff -Nru libreoffice-7.3.4/translations/source/id/cui/messages.po libreoffice-7.3.5/translations/source/id/cui/messages.po --- libreoffice-7.3.4/translations/source/id/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Rizal Muttaqin \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564987944.000000\n" #. GyY9M @@ -1219,7 +1219,7 @@ #: cui/inc/strings.hrc:215 msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON" msgid "Please enter a password to open or to modify, or check the open read-only option to continue." -msgstr "Harap masukkan kata sandi untuk membuka atau mengubah, atau contreng pilihan hanya-baca untuk melanjutkan." +msgstr "Harap masukkan kata sandi untuk membuka atau mengubah, atau centang pilihan hanya-baca untuk melanjutkan." #. aAbAN #: cui/inc/strings.hrc:216 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Otomatis" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaksi" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Kontras Tinggi" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oksigen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasik" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Angin Sepoi" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Menentukan gaya ikon untuk ikon di bilah alat dan dialog." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Gaya i_kon:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Tambah lebih banyak tema ikon melalui ekstensi" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Gaya Ikon" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Memerlukan pemulaian ulang" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Pakai akselerasi perangkat _keras" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Langsung mengakses fitur perangkat keras dari tampilan adaptor grafis untuk meningkatkan tampilan layar." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Pakai anti-a_lias" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Ketika didukung, Anda dapat mengaktifkan dan menonaktifkan anti-aliasing grafis. Dengan anti-aliasing diaktifkan, tampilan sebagian besar objek grafis terlihat lebih halus dan dengan artefak yang lebih sedikit." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Gunakan Skia untuk semua proses render" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Paksa perangkat lunak Skia memproses render" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Perlu dijalankan ulang. Mengaktifkan ini akan mencegah penggunaan penggerak grafis." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia saat ini sedang diaktifkan." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia saat ini sedang dinonaktifkan" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Keluaran Grafis" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Tampilkan p_ratinjau huruf" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Menampilkan nama-nama fon yang dapat dipilih dalam fon yang sesuai, misalnya, fon di kotak Fon pada Pemformattan bilah." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Antialias fonta layar" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Pilih untuk memperhalus tampilan layar teks." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_dari:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Masukkan ukuran fonta terkecil untuk menerapkan antialiasing." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Senarai Fonta" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Jalankan Pengujian Grafik" diff -Nru libreoffice-7.3.4/translations/source/id/dbaccess/messages.po libreoffice-7.3.5/translations/source/id/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/id/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-17 05:09+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563272963.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "_Buat basis data baru" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Pilihlah untuk membuat basis data baru." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Basis data t_ertanam:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Buka berkas basis data yang t_elah ada" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Pilih untuk membuka berkas basis data dari senarai berkas yang baru saja digunakan atau dari dialog pemilihan berkas." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ba_ru-baru ini dipakai:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Pilih sebuah berkas basis data untuk dibuka dari senarai berkas yang baru saja digunakan. Klik Selesai untuk segera membuka berkas dan keluar dari wisaya." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Buka" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Membuka dialog pemilihan berkas tempat Anda dapat memilih berkas basis data. Klik Buka atau OK dalam dialog pemilihan berkas untuk segera membuka berkas dan keluar dari wisaya." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Men_yambung ke basis data yang ada" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Pilihlah untuk membuat dokumen basis data untuk sambungan basis data yang sudah ada." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Pilih jenis basis data untuk sambungan basis data yang ada." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "Firebird tidak tersedia dalam pengaturan ini." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Wisaya Basis Data membuat berkas basis data yang berisi informasi tentang basis data." diff -Nru libreoffice-7.3.4/translations/source/id/desktop/messages.po libreoffice-7.3.5/translations/source/id/desktop/messages.po --- libreoffice-7.3.4/translations/source/id/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-06 20:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Rizal Muttaqin \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1536928910.000000\n" #. v2iwK @@ -548,7 +548,7 @@ #: desktop/inc/strings.hrc:145 msgctxt "RID_DLG_UPDATE_NOINSTALLABLE" msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'." -msgstr "Tak ada pemutakhiran yang dapat dipasang. Untuk melihat pemutakhiran yang diabaikan atau dimatikan, tandai kotak contreng 'Tampilkan semua pemutakhiran'." +msgstr "Tak ada pemutakhiran yang dapat dipasang. Untuk melihat pemutakhiran yang diabaikan atau dimatikan, tandai kotak centang 'Tampilkan semua pemutakhiran'." #. rq2Co #: desktop/inc/strings.hrc:146 diff -Nru libreoffice-7.3.4/translations/source/id/extensions/messages.po libreoffice-7.3.5/translations/source/id/extensions/messages.po --- libreoffice-7.3.4/translations/source/id/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-01-29 04:39+0000\n" -"Last-Translator: Andika Triwidada \n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557389916.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Muat ulang formulir" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teks" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standar (pendek)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standar (TT pendek)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standar (TTTT pendek)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standar (panjang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "HH/BB/TT" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "BB/HH/TT" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "TT/BB/HH" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "HH/BB/TTTT" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "BB/HH/TTTT" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "TTTT/BB/HH" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "TT-BB-HH" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "TTTT-BB-HH" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Tidak Dipilih" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Dipilih" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Tidak Ditentukan" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Semua rekaman" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Rekaman aktif" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Halaman kini" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Tidak" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ya" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulir Induk" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nihil" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Tunggal" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Rentang" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Baku" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Batal" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Bantuan" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Entri yang dipilih" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posisi entri yang dipilih" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Satu baris" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Banyak baris" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multibaris dengan pemformatan" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nihil" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Keduanya" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Rata" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Kiri atas" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Kiri tengah" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Kiri bawah" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Kanan atas" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Kanan tengah" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Kanan bawah" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Di atas kiri" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Di atas tengah" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Di atas kanan" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Di bawah kiri" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Di bawah tengah" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Di bawah kanan" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Rata tengah" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Pertahankan" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ganti" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Kuncupkan" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Tidak" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Jaga Rasio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Paskan Ukuran" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Kiri ke kanan" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Kanan ke kiri" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Pakai pengaturan objek superordinat" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Tak pernah" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Saat fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Selalu" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ke Paragraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Sebagai Karakter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ke Halaman" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ke Bingkai" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ke Karakter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ke Halaman" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Ke Sel" @@ -2253,7 +2241,7 @@ #: extensions/inc/strings.hrc:269 msgctxt "RID_STR_PROPTITLE_CHECKBOX" msgid "Check Box" -msgstr "Kotak cek" +msgstr "Kotak Centang" #. NFysA #: extensions/inc/strings.hrc:270 diff -Nru libreoffice-7.3.4/translations/source/id/fpicker/messages.po libreoffice-7.3.5/translations/source/id/fpicker/messages.po --- libreoffice-7.3.4/translations/source/id/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-05-16 05:37+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" @@ -216,55 +216,55 @@ msgstr "Tanggal diubah" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Buka" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Putar" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nama berkas:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Jenis berkas:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Baca-saja" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Simpan dengan sandi" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Ekstensi n_ama berkas otomatis" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Sunting pengaturan _penyaring" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Enkripsikan dengan kunci GPG" diff -Nru libreoffice-7.3.4/translations/source/id/framework/messages.po libreoffice-7.3.5/translations/source/id/framework/messages.po --- libreoffice-7.3.4/translations/source/id/framework/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/framework/messages.po 2022-07-15 19:12:51.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-06-11 17:08+0200\n" -"PO-Revision-Date: 2021-07-30 15:38+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2022-07-01 09:59+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 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507241879.000000\n" #. 5dTDC @@ -239,7 +239,7 @@ #: framework/inc/strings.hrc:58 msgctxt "RID_STR_PROPTITLE_CHECKBOX" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. xwuJF #: framework/inc/strings.hrc:59 diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2021-05-15 20:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Rizal Muttaqin \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.12.2\n" "X-POOTLE-MTIME: 1564640096.000000\n" #. WcTKB @@ -1625,7 +1625,7 @@ "par_id3153031\n" "help.text" msgid "The following examples are for a new dialog called \"Dialog1\". Use the tools on the Toolbox bar in the dialog editor to create the dialog and add the following controls: a Check Box called \"CheckBox1\", a Label Field called \"Label1\", a Button called \"CommandButton1\", and a List Box called \"ListBox1\"." -msgstr "Contoh-contoh berikut ditujukan bagi sebuah dialog yang diberi nama \"Dialog1\". Gunakanlah perkakas pada bilah Kotak Alat pada penyunting dialog untuk membuat dialog dan menambahkan kontrol-kontrol berikut: sebuah Kotak Cek bernama \"CheckBox1\", sebuah Bidang Label bernama \"Label1\", sebuah Tombol bernama \"CommandButton1\", dan sebuah Kotak Daftar bernama \"ListBox1\"." +msgstr "Contoh-contoh berikut ditujukan bagi sebuah dialog yang diberi nama \"Dialog1\". Gunakanlah perkakas pada bilah Kotak Alat pada penyunting dialog untuk membuat dialog dan menambahkan kontrol-kontrol berikut: sebuah Kotak Centang bernama \"CheckBox1\", sebuah Bidang Label bernama \"Label1\", sebuah Tombol bernama \"CommandButton1\", dan sebuah Kotak Daftar bernama \"ListBox1\"." #. bfDTG #: sample_code.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2021-09-27 17:24+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Rizal Muttaqin \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.12.2\n" "X-POOTLE-MTIME: 1550990224.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 "kontrol; dalam penyunting dialogkontrol tombol tekan dalam penyunting dialogkontrol ikontombol; kontrolkontrol citrakontrol kotak cekkontrol tombol radiokontrol tombol pilihankontrol teks tetapkontrol ruas labelpenyuntingan; kontrolkotak teks; kontrolkotak daftar; kontrolkontrol kotak kombokontrol bilah gulirkontrol bilah gulir horizontalkontrol bilah gulir vertikalkontrol kotak kelompokkontrol bilah kemajuankontrol garis tetapkontrol garis horisontalkontrol gariskontrol garis vertikalkontrol ruas tanggalkontrol ruas waktukontrol ruas numerikkontrol ruas mata uangkontrol ruas isian berformatkontrol ruas polakontrol ruas isian bermaskerkontrol pemilihan berkaspilihan pemilihan untuk kontrolkontrol mode tes" +msgstr "kontrol; dalam penyunting dialogkontrol tombol tekan dalam penyunting dialogkontrol ikontombol; kontrolkontrol citrakendali kotak centangkontrol tombol radiokontrol tombol pilihankontrol teks tetapkontrol ruas labelpenyuntingan; kontrolkotak teks; kontrolkotak daftar; kontrolkontrol kotak kombokontrol bilah gulirkontrol bilah gulir horizontalkontrol bilah gulir vertikalkontrol kotak kelompokkontrol bilah kemajuankontrol garis tetapkontrol garis horisontalkontrol gariskontrol garis vertikalkontrol ruas tanggalkontrol ruas waktukontrol ruas numerikkontrol ruas mata uangkontrol ruas isian berformatkontrol ruas polakontrol ruas isian bermaskerkontrol pemilihan berkaspilihan pemilihan untuk kontrolkontrol mode tes" #. YL3Za #: 20000000.xhp @@ -1139,7 +1139,7 @@ "hd_id3150447\n" "help.text" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. mDDYe #: 20000000.xhp @@ -1157,7 +1157,7 @@ "par_id3147317\n" "help.text" msgid "Adds a check box that you can use to turn a function on or off." -msgstr "Menambah kotak cek dan Anda dapat mengaktifkan atau mematikan fungsinya." +msgstr "Menambah kotak centang dan Anda dapat mengaktifkan atau mematikan fungsinya." #. gG6kh #: 20000000.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2021-05-21 20:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Rizal Muttaqin \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=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" #. ugSgG #: 02000000.xhp @@ -5611,7 +5611,7 @@ "hd_id3149233\n" "help.text" msgid "Display inactive records" -msgstr "" +msgstr "Tampilkan rekaman tak aktif" #. Y4AnV #: 11030000.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-10 10:40+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2022-07-01 10:09+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550993114.000000\n" #. cZbDh @@ -1166,7 +1166,7 @@ "par_id3152985\n" "help.text" msgid "Click the color in the image. The color appears in the first Source color box and the check box next to the color is selected." -msgstr "Klik warna citra tersebut. Warnanya akan muncul di kotak pertama Warna sumber dan kotak cek di sebelah warna itu akan terpilih." +msgstr "Klik warna citra tersebut. Warnanya akan muncul di kotak pertama Warna sumber dan kotak centang di sebelah warna itu akan terpilih." #. ZKeEk #: eyedropper.xhp @@ -1193,7 +1193,7 @@ "par_id3151191\n" "help.text" msgid "If you want to replace another color while the dialog is open, select the check box in front of Source color in the next row and repeat steps 3 to 5." -msgstr "Apabila Anda hendak mengganti warna lainnya sembari dialog itu terbuka, pilih kotak cek di depan Warna sumber di baris selanjutnya dan ulangi langkah 3 sampai 5." +msgstr "Apabila Anda hendak mengganti warna lainnya sembari dialog itu terbuka, pilih kotak centang di depan Warna sumber di baris selanjutnya dan ulangi langkah 3 sampai 5." #. um4MR #: eyedropper.xhp @@ -2867,7 +2867,7 @@ "par_idN108AF\n" "help.text" msgid "On the Text tab page, clear the Fit height to text checkbox, then select the Fit to frame checkbox. Click OK." -msgstr "Pada tabulasi Teks, hilangkan tanda cek pada Sesuaikan tinggi pada teks, lalu pilih kotak cek Sesuaikan ke bingkai. Klik Oke." +msgstr "Pada tabulasi Teks, hilangkan tanda centang pada Sesuaikan tinggi pada teks, lalu pilih kotak F Sesuaikan ke bingkai. Klik Oke." #. j28Ed #: text_enter.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-09-27 17:24+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Rizal Muttaqin \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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1551151136.000000\n" #. Edm6o @@ -842,7 +842,7 @@ "hd_id3146914\n" "help.text" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. xGAoN #: 01170000.xhp @@ -1949,7 +1949,7 @@ "hd_id3149810\n" "help.text" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. z6wfL #: 01170001.xhp @@ -1958,7 +1958,7 @@ "par_id3145581\n" "help.text" msgid "The selected control is transformed into a check box." -msgstr "Kendali yang dipilih ditransformasikan menjadi sebuah kotak contreng." +msgstr "Kendali yang dipilih ditransformasikan menjadi sebuah kotak centang." #. qRJCE #: 01170001.xhp @@ -2309,7 +2309,7 @@ "par_id3152372\n" "help.text" msgid "The following fields are possible in a table control: text, date, time and currency field, numeric field, pattern field, check box and combo box. In the case of combined date/time fields, two columns are created automatically." -msgstr "Bidang berikut ini mungkin terdapat dalam kendali tabel: teks, tanggal, waktu dan bidang mata uang, bidang numerik, bidang pola, kotak cek dan kotak kombo. Dalam kasus bidang tanggal / waktu gabungan, dua kolom dibuat secara otomatis." +msgstr "Bidang berikut ini mungkin terdapat dalam kendali tabel: teks, tanggal, waktu dan ruas mata uang, bidang numerik, ruas pola, kotak centang dan kotak kombo. Dalam kasus ruas tanggal / waktu gabungan, dua kolom dibuat secara otomatis." #. YhmM5 #: 01170004.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/shared/04.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/shared/04.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/shared/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/shared/04.po 2022-07-15 19:12:51.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-19 17:31+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2022-07-01 10:09+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564162250.000000\n" #. GEuoc @@ -383,7 +383,7 @@ "par_id3147435\n" "help.text" msgid "Toggles the focused check box in a dialog." -msgstr "Menceklis kotak cek yang menjadi fokus pada dialog." +msgstr "Mencentang kotak centang yang menjadi fokus pada dialog." #. qHKoT #: 01010000.xhp diff -Nru libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/id/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: libo help simpress guide lo-4.2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-10-25 12:49+0200\n" -"PO-Revision-Date: 2021-09-27 17:24+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: Rizal Muttaqin \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.12.2\n" "X-POOTLE-MTIME: 1550989078.000000\n" #. S83CC @@ -518,7 +518,7 @@ "par_id3153963\n" "help.text" msgid "Click the Selection check box to export the selected object, and not the entire slide." -msgstr "Klik kotak cek Pemilihan untuk mengekspor objek yang dipilih, bukan keseluruhan salindia." +msgstr "Klik kotak centang Pemilihan untuk mengekspor objek yang dipilih, bukan keseluruhan salindia." #. 4zELb #: animated_gif_save.xhp @@ -1472,7 +1472,7 @@ "par_id4101077\n" "help.text" msgid "By default, the Date and Time checkbox is enabled, but the format is set to Fixed and the text input box is empty, so no date and time is visible on the slides." -msgstr "Secara setingan dasar, kotak cek Tanggal dan Waktu sudah diberi ceklis, tetapi formatnya diset sebagai Tetap dan kotak masukan teksnya pun kosong, sehingga tidak ada tanggal dan waktu yang tampil pada salindia." +msgstr "Secara setingan dasar, kotak centang Tanggal dan Waktu sudah diberi ceklis, tetapi formatnya diatur sebagai Tetap dan kotak masukan teksnya pun kosong, sehingga tidak ada tanggal dan waktu yang tampil pada salindia." #. nfX2N #: footer.xhp @@ -1481,7 +1481,7 @@ "par_id204779\n" "help.text" msgid "By default, the Footer checkbox is enabled, but the text input box is empty, so no footer is visible on the slides." -msgstr "Secara setingan dasar, kotak cek Kaki sudah diberi ceklis, tetapi kotak masukan teksnya masih kosong, sehingga tidak akan ada kaki yang terlihat pada salindia." +msgstr "Secara setingan dasar, kotak centang Kaki sudah diberi centang, tetapi kotak masukan teksnya masih kosong, sehingga tidak akan ada kaki yang terlihat pada salindia." #. 28hEh #: footer.xhp @@ -1490,7 +1490,7 @@ "par_id1453901\n" "help.text" msgid "By default, the Slide number checkbox is cleared, so no slide numbers are visible." -msgstr "Untuk setingan dasar, kotak cek Nomor salindia tidak terpilih, sehingga tidak ada nomor salindia yang terlihat." +msgstr "Untuk pengaturan dasar, kotak centang Nomor salindia tidak terpilih, sehingga tidak ada nomor salindia yang terlihat." #. F95mw #: footer.xhp @@ -2606,7 +2606,7 @@ "par_id3155932\n" "help.text" msgid "In the Start presentation area, select the Always with current page check box." -msgstr "Pada wilayah Memulai presentasi, pilih kotak cek Selalu dengan halaman bersangkutan." +msgstr "Pada wilayah Memulai presentasi, pilih kotak centang Selalu dengan halaman bersangkutan." #. sbqC6 #: individual.xhp diff -Nru libreoffice-7.3.4/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2022-07-01 09:58+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564751755.000000\n" #. W5ukN @@ -124,7 +124,7 @@ "Label\n" "value.text" msgid "Form Check Box" -msgstr "Kotak Contreng Formulir" +msgstr "Kotak Centang Formulir" #. RDGEE #: BasicIDECommands.xcu @@ -20116,7 +20116,7 @@ "Label\n" "value.text" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. thnJP #: GenericCommands.xcu @@ -24146,7 +24146,7 @@ "Label\n" "value.text" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. HvCBn #: GenericCommands.xcu @@ -24966,7 +24966,7 @@ "Label\n" "value.text" msgid "Replace with Check Box" -msgstr "Ganti dengan Kotak Cek" +msgstr "Ganti dengan Kotak Centang" #. 6LZBU #: GenericCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/id/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/id/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2022-03-12 20:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Rizal Muttaqin \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550758945.000000\n" #. HhMVS @@ -334,7 +334,7 @@ "DisplayName\n" "value.text" msgid "Display Name" -msgstr "Nama yang Ditampilkan" +msgstr "Nama Tampilan" #. mTT2H #: DataAccess.xcu diff -Nru libreoffice-7.3.4/translations/source/id/sc/messages.po libreoffice-7.3.5/translations/source/id/sc/messages.po --- libreoffice-7.3.4/translations/source/id/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-02-06 20:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Rizal Muttaqin \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550908361.000000\n" #. kBovX @@ -2535,7 +2535,7 @@ #: sc/inc/globstr.hrc:427 msgctxt "STR_FORM_CHECKBOX" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. iivnN #: sc/inc/globstr.hrc:428 @@ -23765,7 +23765,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:152 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 "Difungsikan secara baku, data akan disimpan seperti yang ditampilkan, termasuk format angka yang diterapkan. Bila kotak contreng ini tak ditandai, isi data mentah yang akan disimpan, seperti pada versi perangkat lunak yang lebih lama." +msgstr "Difungsikan secara baku, data akan disimpan seperti yang ditampilkan, termasuk format angka yang diterapkan. Bila kotak centang ini tak ditandai, isi data mentah yang akan disimpan, seperti pada versi perangkat lunak yang lebih lama." #. Fn8ts #: sc/uiconfig/scalc/ui/imoptdialog.ui:164 @@ -23783,7 +23783,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Ekspor semua sel teks dengan karakter kutip di awal dan akhir sebagaimana diatur dalam kotak Pembatas teks. Bila tak dicontreng, hanya sel teks yang memuat karakter Pembatas ruas yang diapit tanda kutip." +msgstr "Ekspor semua sel teks dengan karakter kutip di awal dan akhir sebagaimana diatur dalam kotak Pembatas teks. Bila tak dicentang, hanya sel teks yang memuat karakter Pembatas ruas yang diapit tanda kutip." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -25253,97 +25253,97 @@ msgstr "~Tampilan" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Citr_a" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Citra" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Gamba_r" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Gam~bar" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objek" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Cetak" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Ce~tak" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulir" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulir" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_kstensi" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~kstensi" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Per_kakas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ala~t" @@ -25702,139 +25702,139 @@ msgstr "Citr_a" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Susun" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Wa_rna" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Kisi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Bahasa" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Ulasan" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentar" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Ban_dingkan" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Ta_mpilan" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Gamba_r" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Sunting" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Susun" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Ta_mpilan" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Kelom_pok" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "F_onta" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Per_ataan" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Ta_mpilan" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "S_isip" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Bing_kai" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Susun" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Kisi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Ta_mpilan" diff -Nru libreoffice-7.3.4/translations/source/id/sd/messages.po libreoffice-7.3.5/translations/source/id/sd/messages.po --- libreoffice-7.3.4/translations/source/id/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-01-29 04:39+0000\n" -"Last-Translator: Andika Triwidada \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565578255.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Citra" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Citra" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Gamba_r" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Gam~bar" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objek" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulir" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulir" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "I_nduk" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "I~nduk" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_kstensi" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~kstensi" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Per_kakas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Perala~tan" @@ -5089,7 +5089,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:435 msgctxt "customanimationspanel|effect_label" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. GDYfC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:452 @@ -7062,109 +7062,109 @@ msgstr "~Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Citra" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "~Citra" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Gamba_r" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Gam~bar" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objek" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objek" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulir" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulir" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "I_nduk" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "I~nduk" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_kstensi" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~kstensi" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Per_kakas" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Ala~t" diff -Nru libreoffice-7.3.4/translations/source/id/svtools/messages.po libreoffice-7.3.5/translations/source/id/svtools/messages.po --- libreoffice-7.3.4/translations/source/id/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-26 12:32+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563273342.000000\n" #. fLdeV @@ -5242,7 +5242,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:348 msgctxt "graphicexport|extended_tip|colordepthlb" msgid "Select the color depth from 8 bit grayscale or 24 bit true color." -msgstr "Memilih kedalaman warna dari skala kelabu 8 bit atau true color 24 bit." +msgstr "Memilih kedalaman warna dari skala abu-abu 8-bit atau true color 24 bit." #. hFaPC #: svtools/uiconfig/ui/graphicexport.ui:357 diff -Nru libreoffice-7.3.4/translations/source/id/svx/messages.po libreoffice-7.3.5/translations/source/id/svx/messages.po --- libreoffice-7.3.4/translations/source/id/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-01-29 04:39+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565578186.000000\n" #. 3GkZj @@ -6652,7 +6652,7 @@ #: include/svx/strings.hrc:1199 msgctxt "RID_STR_PROPTITLE_CHECKBOX" msgid "Check Box" -msgstr "Kotak Cek" +msgstr "Kotak Centang" #. xwuJF #: include/svx/strings.hrc:1200 diff -Nru libreoffice-7.3.4/translations/source/id/sw/messages.po libreoffice-7.3.5/translations/source/id/sw/messages.po --- libreoffice-7.3.4/translations/source/id/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-02-06 20:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Rizal Muttaqin \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565578102.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Memindahkan gaya paragraf yang dipilih ke satu tingkat dalam hierarki indeks." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Gaya" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Gaya" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Menciptakan entri indeks dari gaya paragraf tertentu." @@ -13226,7 +13226,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:289 msgctxt "editsectiondialog|extended_tip|dde" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "Membuat sebuah taut DDE. Pilih kotak contreng ini, lalu masukkan perintah DDE yang ingin Anda pakai. Pilihan DDE hanya tersedia bila kotak contreng Taut dipilih." +msgstr "Membuat sebuah taut DDE. Pilih kotak centang ini, lalu masukkan perintah DDE yang ingin Anda pakai. Pilihan DDE hanya tersedia bila kotak centang Taut dipilih." #. kuxD5 #: sw/uiconfig/swriter/ui/editsectiondialog.ui:309 @@ -13955,37 +13955,37 @@ msgstr "Pertukarkan Basis Data" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Tentukan" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Basis Data yang Dipakai" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "B_asis Data yang Ada" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Telusur..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Membuka dialog buka berkas untuk memilih berkas basis data (* .odb). Berkas yang dipilih ditambahkan ke dalam senarai Basis Data yang Tersedia." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Gunakan tombol telusur untuk memilih berkas basis data." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Menampilkan senarai basis data yang saat ini digunakan." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Menampilkan senarai basis data yang terdaftar di %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Pertukarkan Basis Data" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Basis data yang diterapkan ke dokumen:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Ubah sumber data untuk dokumen saat ini." @@ -19446,7 +19446,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:426 msgctxt "mmmailbody|extended_tip|personalized" msgid "Adds a personalized salutation. To use the default salutation, clear this check box." -msgstr "Menambahkan sebuah sapaan pribadi. Untuk memakai sapaan baku, kosongkan kotak contreng ini." +msgstr "Menambahkan sebuah sapaan pribadi. Untuk memakai sapaan baku, kosongkan kotak centang ini." #. 4GXww #: sw/uiconfig/swriter/ui/mmmailbody.ui:472 @@ -20052,7 +20052,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:494 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 "Menambahkan sapaan pribadi ke dokumen surat massal. Untuk memakai sapaan baku, kosongkan kotak contreng ini." +msgstr "Menambahkan sapaan pribadi ke dokumen surat massal. Untuk memakai sapaan baku, kosongkan kotak centang ini." #. nbXMj #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:527 @@ -20073,109 +20073,109 @@ msgstr "Pakai _dokumen saat ini" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Menggunakan dokumen Writer saat ini sebagai basis untuk dokumen surat massal." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Buat _dokumen baru" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Membuat dokumen Writer baru untuk digunakan surat massal." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Mulai dari dokum_en yang ada" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Memilih dokumen Writer yang sudah ada untuk digunakan sebagai basis untuk dokumen surat massal." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Mulai dari suatu t_emplat" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Pilih Templat yang Anda inginkan untuk membuat dokumen surat massal Anda." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "_Mulai dari dokumen awal yang baru-baru ini disimpan" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Gunakan dokumen surat massal yang ada untuk digunakan sebagai basis untuk dokumen surat massal." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Menyimpan dokumen." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Telusu_r..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Tentukan berkas Penulis yang ingin anda gunakan, dan kemudian klik Buka." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Telusu_r..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Membuka dialog pemilih templat." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Sumber data dokumen saat ini belum terdaftar. Mohon pertukarkan basis data" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Pertukarkan Basis Data..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Pilih Dokumen Awal Bagi Surat Masal" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Menentukan dokumen yang ingin Anda gunakan sebagai basis untuk dokumen surat massal." @@ -22318,49 +22318,49 @@ msgstr "Objek" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Jenis" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Pilihan" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Lipat" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Garis Batas" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Wilayah" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparansi" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -26003,7 +26003,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:168 msgctxt "sectionpage|extended_tip|dde" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "Membuat sebuah taut DDE. Pilih kotak contreng ini, lalu masukkan perintah DDE yang ingin Anda pakai. Pilihan DDE hanya tersedia bila kotak contreng Taut dipilih." +msgstr "Membuat sebuah taut DDE. Pilih kotak centang ini, lalu masukkan perintah DDE yang ingin Anda pakai. Pilihan DDE hanya tersedia bila kotak centang Taut dipilih." #. KGrwG #: sw/uiconfig/swriter/ui/sectionpage.ui:195 @@ -27056,7 +27056,7 @@ msgstr "Perbarui" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Menampilkan statistik untuk berkas saat ini." diff -Nru libreoffice-7.3.4/translations/source/id/swext/mediawiki/help.po libreoffice-7.3.5/translations/source/id/swext/mediawiki/help.po --- libreoffice-7.3.4/translations/source/id/swext/mediawiki/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/swext/mediawiki/help.po 2022-07-15 19:12:51.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: 2021-06-18 21:48+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Rizal Muttaqin \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: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542467008.000000\n" #. 7EFBE @@ -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 "Bila Anda telah mengaktifkan kata sandi induk pada halaman tab Keamanan dari dialog Perkakas - Pilihan - %PRODUCTNAME, maka perangkat lunak dapat menyimpan kata sandi Anda dan secara otomatis menyisipkan data ketika diperlukan. Aktifkan kotak contreng Simpan kata sandi untuk menyimpan kata sandi Anda." +msgstr "Bila Anda telah mengaktifkan kata sandi induk pada halaman tab Keamanan dari dialog Perkakas - Pilihan - %PRODUCTNAME, maka perangkat lunak dapat menyimpan kata sandi Anda dan secara otomatis menyisipkan data ketika diperlukan. Aktifkan kotak centang Simpan kata sandi untuk menyimpan kata sandi Anda." #. TpaPN #: wikiformats.xhp diff -Nru libreoffice-7.3.4/translations/source/id/vcl/messages.po libreoffice-7.3.5/translations/source/id/vcl/messages.po --- libreoffice-7.3.4/translations/source/id/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/id/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-01-07 03:38+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564211137.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Memasukkan nama untuk seri data." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ubahan" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Memilih bentuk dasar bagan." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Halaman:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Pilih format berkas." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "oleh" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Pilih format berkas." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Tepi:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Pilih tepi antara halaman satuan pada masing-masing lembar kertas." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "di antara halaman" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Jarak:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Klik untuk pergi ke halaman pemandu nama." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "pada garis batas lembar" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Urutan:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Kiri ke kanan, lalu turun" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Atas ke bawah, lalu ke kanan" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Atas ke bawah, lalu ke kiri" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Kiri ke kanan, lalu turun" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Memilih bentuk dasar bagan." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Gambar garis batas di tiap halaman" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Klik untuk pergi ke halaman pemandu nama." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosur" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Pilih untuk mencetak dokumen dalam format brosur." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Pratinjau kolasi" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Mengubah susunan halaman untuk penceta yang akan dicetak pada setiap lembar kertas. Pratinjau menunjukkan bagaimana setiap kertas terakhir akan terlihat" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "L_ebih" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Tata Letak Halaman" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Umum" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Mencetak dokumen saat ini, pemilihan, atau halaman yang Anda tentukan. Anda juga dapat mengatur pilihan cetak untuk dokumen saat ini." diff -Nru libreoffice-7.3.4/translations/source/is/chart2/messages.po libreoffice-7.3.5/translations/source/is/chart2/messages.po --- libreoffice-7.3.4/translations/source/is/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-01 07:43+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550482181.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Veldu grunngerð grafs." diff -Nru libreoffice-7.3.4/translations/source/is/cui/messages.po libreoffice-7.3.5/translations/source/is/cui/messages.po --- libreoffice-7.3.4/translations/source/is/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2021-12-07 11:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-02-01 07:43+0000\n" "Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Sjálfvirkt" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Háskerpa" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Hefðbundið" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tíll táknmynda:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Stíll táknmynda" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Krefst endurræsingar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Nota _vélbúnaðarhröðun" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Nota afstö_llun" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Nota Skia til allrar myndgerðar" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Þvinga Skia til myndgerðar á hugbúnaði" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Krefst endurræsingar. Virkjun á þessu gæti leitt í ljós galla í rekli." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia er virkt." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia er óvirkt." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafískt úttak" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Fo_rsýna letur" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Afstalla letur á skjá" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "f_rá:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Leturlistar" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/is/dbaccess/messages.po libreoffice-7.3.5/translations/source/is/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/is/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-12-01 20:27+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-02-01 07:43+0000\n" "Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic \n" +"Language-Team: Icelandic \n" "Language: is\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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563517570.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "_Búa til nýjan gagnagrunn" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Veldu þetta til að búa til nýjan gagnagrunn." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Ív_afinn gagnagrunnur:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Opna tilbúna _gagnagrunnsskrá" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Nýlega notað:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Opna" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "_Tengjast við tilbúinn gagnagrunn" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/is/extensions/messages.po libreoffice-7.3.5/translations/source/is/extensions/messages.po --- libreoffice-7.3.4/translations/source/is/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-02-01 07:43+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563517775.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Endurlesa innfyllingarform" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL-slóð" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Marghluta" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texti" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Venjulegt (stutt)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Venjulegt (stutt ÁÁ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Venjulegt (stutt ÁÁÁÁ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Staðlað (langt)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/ÁÁ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/ÁÁ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ÁÁ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/ÁÁÁÁ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/ÁÁÁÁ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ÁÁÁÁ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ÁÁ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ÁÁÁÁ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 EH" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 EH" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ekki valið" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Valið" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ekki skilgreint" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Allar færslur" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Virk færsla" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Núverandi síða" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nei" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Já" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Forverandi innfyllingarform" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ekkert" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Einfalt" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Fjöl" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Svið" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Lárétt" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Lóðrétt" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Sjálfgefið" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Í lagi" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Hætta við" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hjálp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Valda færslan" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Staðsetning valdrar færslu" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Einlínu" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Marglínu" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Marglínu með sniðum" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ekkert" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Lárétt" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Lóðrétt" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Bæði" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flatt" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Vinstri efst" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Vinstri miðjað" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Vinstri neðst" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Hægri efst" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Hægri miðjað" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Hægri neðst" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ofan við til vinstri" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ofan við miðjað" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ofan við til hægri" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Neðan við til vinstri" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Neðan við miðjað" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Neðan við til hægri" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Miðjað" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Varðveita" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Skipta út" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Fella saman" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nei" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Halda hlutföllum" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Laga að stærð" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Vinstri til hægri" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Hægri til vinstri" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Nota víðari/æðri stillingar hluta" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Aldrei" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Þegar er virkt" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Alltaf" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Við málsgrein" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Sem stafur" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Við síðu" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Að ramma" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Við staf" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Við síðu" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Við reit" diff -Nru libreoffice-7.3.4/translations/source/is/fpicker/messages.po libreoffice-7.3.5/translations/source/is/fpicker/messages.po --- libreoffice-7.3.4/translations/source/is/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-12-01 13:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-02-01 07:43+0000\n" "Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic \n" +"Language-Team: Icelandic \n" "Language: is\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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538497488.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Breytingardagsetning" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Opna" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "S_pila" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Skráar_heiti:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Skráar_tegund:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Skrifvarið" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Vista með lykilorði" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Sjálfvirk _ending skráaheita" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Breyta stillingum síu" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Dulrita með GPG-lykli" diff -Nru libreoffice-7.3.4/translations/source/is/sc/messages.po libreoffice-7.3.5/translations/source/is/sc/messages.po --- libreoffice-7.3.4/translations/source/is/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-03 18:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550485051.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "S~koða" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Myn_d" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "M~ynd" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Teikna" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Tei~kna" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Hlutur" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Hlutur" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Gagna_miðlar" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Margmiðlun" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Prenta" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Prenta" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Innfyllinga_rform" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Innfyllingarfo~rm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Við_bót" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Við~bót" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Verkfæri" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Verkfæri" @@ -25702,139 +25702,139 @@ msgstr "Myn_d" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "R_aða upp" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Litur" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Hnitanet" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Tungumá_l" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Yfi_rfara" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Athugasemdir" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Bera saman" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "S_koða" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Teikna" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Br_eyta" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "R_aða upp" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "S_koða" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Hó_pa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "Þríví_dd" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Letur" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Jöfnun" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "S_koða" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Setja _inn" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Gagna_miðlar" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Rammi" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "R_aða upp" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Hnitanet" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "S_koða" diff -Nru libreoffice-7.3.4/translations/source/is/sd/messages.po libreoffice-7.3.5/translations/source/is/sd/messages.po --- libreoffice-7.3.4/translations/source/is/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-01 07:43+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542023664.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tafla" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Mynd" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "M~ynd" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Tei_kna" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Tei~kna" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Hlutur" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Hlutur" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Margmiðlun" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Myndefni" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Innfyllinga_rform" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Innfyllingarfo~rm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Yfirsíða" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Yfirsíða" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "Þríví_dd" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "Þríví~dd" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Við_bót" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Við~bót" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Verkfæri" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Verkfæri" @@ -7062,109 +7062,109 @@ msgstr "Ta~fla" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Mynd" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "M~ynd" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Tei_kna" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Tei~kna" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Hlutur" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Hlutur" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Margmiðlun" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Margmiðlun" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Innfyllinga_rform" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Innfyllingarfo~rm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Yfirsíða" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Yfirsíða" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "Þríví_dd" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "Þríví~dd" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Við_bót" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Við~bót" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Verkfæri" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Verkfæri" diff -Nru libreoffice-7.3.4/translations/source/is/sw/messages.po libreoffice-7.3.5/translations/source/is/sw/messages.po --- libreoffice-7.3.4/translations/source/is/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2021-12-07 11:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-02-01 07:43+0000\n" "Last-Translator: Sveinn í Felli \n" -"Language-Team: Icelandic \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10499,19 +10499,19 @@ msgstr "Færir valinn málsgreinastíl niður um eitt stig í efnisskipan." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stíll" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stílar" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Býr til atriðaskrárfærslur út frá tilteknum málsgreinarstílum." @@ -13955,37 +13955,37 @@ msgstr "Skipta um gagnagrunn" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Skilgreina" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Gagnagrunnar í notkun" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Tiltækir _gagnagrunnar:" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Velja..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Notaðu 'Velja...' hnappinn til að velja gagnagrunnsskrá." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Skipta um gagnagrunn" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Gagnagrunnur tengdur skjalinu:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20073,109 +20073,109 @@ msgstr "_Nota núverandi skjal" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "_Búa til nýtt skjal" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Byrja m_eð skjali sem þegar er til" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Byrja með sniðmá_ti" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Byrja með nýlega _vistuðu upphafsskjali" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vista núverandi skjal." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Velja..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Velja..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Skipta um gagnagrunn..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Veldu byrjunarskjal fyrir póstsameiningu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22318,49 +22318,49 @@ msgstr "Hlutur" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tegund" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Valkostir" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Textaskrið" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Tengill" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Jaðrar" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Flötur" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Gegnsæi" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Fjölvi" @@ -27056,7 +27056,7 @@ msgstr "Uppfærslur" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Birtir tölfræði fyrir þetta skjal." diff -Nru libreoffice-7.3.4/translations/source/is/vcl/messages.po libreoffice-7.3.5/translations/source/is/vcl/messages.po --- libreoffice-7.3.4/translations/source/is/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/is/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-02-02 09:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550486743.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Prenta margar síður á hvert blað." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Sérsnið" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Veldu hve margar síður eigi að prenta á hvert pappírsblað." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Síður:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Veldu fjölda raða." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "eftir" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Veldu fjölda dálka." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Spássía:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Veldu spássíu milli einstakra síðna á hverju pappírsblaði." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "milli síðna" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Fjarlægð:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Veldu spássíu milli prentaðra síðna og jaðars pappírsins." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "að jaðri blaðs" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Uppröðun:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Vinstri til hægri, síðan niður" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Ofan og niður, síðan til hægri" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Ofan og niður, síðan til vinstri" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Hægri til vinstri, síðan niður" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Veldu í hvaða röð á að prenta síður." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Teikna ramma í kringum hverja síðu" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Virkjaðu þennan valkost til að teikna jaðar utan um hverja síðu." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Bæklingur" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Veldu þetta til að prenta skjalið á bæklingsformi." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Forskoðun á samhangandi síðum" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Breyttu uppröðun síðna sem á að prenta á hvert pappírsblað. Forskoðunin sýnir hvernig hvert prentað blað muni líta út." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Me_ira" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Framsetning síðu" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Almennt" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prentar fyrirliggjandi skjal, val eða síðurnar sem þú tilgreinir. Þú getur einnig ákvarðað prentstillingar fyrir fyrirliggjandi skjal." diff -Nru libreoffice-7.3.4/translations/source/it/chart2/messages.po libreoffice-7.3.5/translations/source/it/chart2/messages.po --- libreoffice-7.3.4/translations/source/it/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-12 19:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562267072.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Imposta il numero di linee per il tipo di grafico a linee e colonne." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Seleziona un tipo di grafico di base." diff -Nru libreoffice-7.3.4/translations/source/it/connectivity/messages.po libreoffice-7.3.5/translations/source/it/connectivity/messages.po --- libreoffice-7.3.4/translations/source/it/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2021-06-26 11:02+0000\n" -"Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: Elisabetta Manuele \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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542741889.000000\n" #. 9KHB8 @@ -51,7 +51,7 @@ #: connectivity/inc/strings.hrc:30 msgctxt "STR_PRIVILEGE_NOT_GRANTED" msgid "Privilege not granted: Only table privileges can be granted." -msgstr "Privilegio non consentito: solo i privilegi di tabella possono essere consentiti." +msgstr "Privilegio non concesso: possono essere concessi solo privilegi di tabella." #. DZf3v #: connectivity/inc/strings.hrc:31 @@ -63,7 +63,7 @@ #: connectivity/inc/strings.hrc:32 msgctxt "STR_ERRORMSG_SEQUENCE" msgid "Function sequence error." -msgstr "Errore di sequenza della funzione." +msgstr "Errore nella sequenza della funzione." #. scUDb #: connectivity/inc/strings.hrc:33 diff -Nru libreoffice-7.3.4/translations/source/it/cui/messages.po libreoffice-7.3.5/translations/source/it/cui/messages.po --- libreoffice-7.3.4/translations/source/it/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-01-05 19:38+0000\n" -"Last-Translator: Marco Marega \n" -"Language-Team: Italian \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: Valter Mura \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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564768476.000000\n" #. GyY9M @@ -2957,7 +2957,7 @@ #: cui/inc/tipoftheday.hrc:186 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?" +msgstr "La Console del relatore è un ottimo strumento quando si lavora con %PRODUCTNAME Impress. L'hai provata?" #. PFGhM #. local help missing @@ -11878,7 +11878,7 @@ #: cui/uiconfig/ui/lineendstabpage.ui:80 msgctxt "lineendstabpage|FT_LINE_END_STYLE" msgid "Arrow _style:" -msgstr "_Stile freccia:" +msgstr "E_stremità linea:" #. y6SSb #: cui/uiconfig/ui/lineendstabpage.ui:130 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatico" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contrasto elevato" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Specifica lo stile delle icone per le icone presenti nelle barre degli strumenti e nelle finestre." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tile icone:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Aggiungi ulteriori temi di icone tramite estensione" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Stile icone" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Richiede riavvio" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Usa accelerazione hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accede direttamente alle funzioni hardware della scheda grafica per migliorare la visualizzazione." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Usa antia_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Se supportato, puoi abilitare o disabilitare l'antialiasing nelle immagini. Con l'antialiasing abilitato, la maggior parte degli oggetti grafici appare più smorzata nei contorni." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Usa Skia per tutti i rendering" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forza il rendering del software Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Riavvio necessario. L'attivazione di questa opzione impedirà l'uso di driver di grafica." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia è attualmente attivato." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia è attualmente disattivato." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Risultato immagine" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Mostra antep_rima dei caratteri" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra i nomi e l'aspetto dei tipi di carattere selezionabili, ad esempio quelli della casella \"Tipo di carattere\" nella barra \"Formattazione\"." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Antialiasin_g dei caratteri a schermo" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Selezionalo per rendere più uniforme l'aspetto del testo sullo schermo." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_da:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Digita la dimensione del carattere più piccola a cui applicare l'antialiasing." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Elenchi di caratteri" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Esegui test grafici" diff -Nru libreoffice-7.3.4/translations/source/it/dbaccess/messages.po libreoffice-7.3.5/translations/source/it/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/it/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-04 15:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562265369.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Crea un n_uovo database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Seleziona per creare un nuovo database." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Database _incorporato:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Apri un _file di database esistente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Seleziona questa voce per aprire un file di database da un elenco di file usati recentemente o dalla finestra di dialogo di selezione dei file." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Usato di _recente:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Seleziona un file di database da aprire dall'elenco dei file usati recentemente. Fai clic su Fine per aprire il file immediatamente e uscire dalla procedura guidata." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Apri" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Apre una finestra di dialogo di selezione dei file da cui puoi selezionare un file di database. Scegli Apri o OK nella finestra di dialogo per aprire il file immediatamente e uscire dalla procedura guidata." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Collega a un database e_sistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Seleziona questa opzione per creare un documento di database per una connessione a un database esistente." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Seleziona il tipo di database per la connessione al database esistente." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "disponibili nell'installazione." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "La creazione guidata database crea un file database che contiene le informazioni del database." diff -Nru libreoffice-7.3.4/translations/source/it/editeng/messages.po libreoffice-7.3.5/translations/source/it/editeng/messages.po --- libreoffice-7.3.4/translations/source/it/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-06-26 11:02+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1546988050.000000\n" #. BHYB4 @@ -1732,7 +1732,7 @@ #: include/editeng/editrids.hrc:307 msgctxt "RID_OUTLUNDO_EXPAND" msgid "Show subpoints" -msgstr "Mostra i sotto-paragrafi" +msgstr "Mostra i sottoparagrafi" #. egnVC #: include/editeng/editrids.hrc:308 diff -Nru libreoffice-7.3.4/translations/source/it/extensions/messages.po libreoffice-7.3.5/translations/source/it/extensions/messages.po --- libreoffice-7.3.4/translations/source/it/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-04 15:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564768483.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Aggiorna formulario" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testo" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (breve)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (breve AA)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (breve AAAA)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (esteso)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "GG/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/GG/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/GG" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "GG/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/GG/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/GG" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-GG" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-GG" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Non selezionato" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selezionato" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Non definito" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tutti i record" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Record attivo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pagina corrente" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sì" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulario padre" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nessuno" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Singolo" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multiplo" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Area" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Orizzontale" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Verticale" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predefinito" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Annulla" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Guida" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "La voce selezionata" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posizione della voce selezionata" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Riga singola" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Più righe" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Più righe con formattazione" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nessuno" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Orizzontale" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Verticale" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Entrambi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Piatto" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "In alto a sinistra" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centrato a sinistra" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "In basso a sinistra" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "In alto a destra" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centrato a destra" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "In basso a destra" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Sopra a sinistra" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Sopra centrato" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Sopra a destra" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Sotto a sinistra" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Sotto centrato" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Sotto a destra" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrato" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preserva" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Sostituisci" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Contrai" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantieni rapporto" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Adatta alla dimensione" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Da sinistra a destra" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Da destra a sinistra" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Usa le impostazioni dell'oggetto superiore" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Mai" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Quando selezionato" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al paragrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Come carattere" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Alla pagina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Alla cornice" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al carattere" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Alla pagina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Alla cella" diff -Nru libreoffice-7.3.4/translations/source/it/filter/messages.po libreoffice-7.3.5/translations/source/it/filter/messages.po --- libreoffice-7.3.4/translations/source/it/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-01-04 15:38+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562540720.000000\n" #. 5AQgJ @@ -448,7 +448,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:245 msgctxt "pdfgeneralpage|extended_tip|reduceresolution" msgid "Select to resample or down-size the images to a lower number of pixels per inch." -msgstr "Impostare il ricampionamento o il ridimensionamento delle immagini con un minor numero di pixel per pollice." +msgstr "Imposta il ricampionamento o il ridimensionamento delle immagini con un minor numero di pixel per pollice." #. XHeTx #: filter/uiconfig/ui/pdfgeneralpage.ui:260 @@ -490,13 +490,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:279 msgctxt "pdfgeneralpage|extended_tip|resolution" msgid "Select the target resolution for the images." -msgstr "Selezionare la risoluzione finale per le immagini." +msgstr "Seleziona la risoluzione finale per le immagini." #. mEbKx #: filter/uiconfig/ui/pdfgeneralpage.ui:303 msgctxt "pdfgeneralpage|extended_tip|quality" msgid "Enter the quality level for JPEG compression." -msgstr "Selezionare il livello di qualità per la compressione JPEG." +msgstr "Seleziona il livello di qualità per la compressione JPEG." #. FP56V #: filter/uiconfig/ui/pdfgeneralpage.ui:325 @@ -508,7 +508,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:335 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 "Selezionare un livello di compressione JPEG. Con un livello di qualità alto quasi tutti i pixel saranno conservati. Con un livello di qualità basso, alcuni pixel andranno persi e si formeranno artefatti, sebbene la dimensione dei file verrà ridotta." +msgstr "Seleziona un livello di compressione JPEG. Con un livello di qualità alto quasi tutti i pixel saranno conservati. Con un livello di qualità basso, alcuni pixel andranno persi e si formeranno artefatti, sebbene la dimensione dei file verrà ridotta." #. ST3Rc #: filter/uiconfig/ui/pdfgeneralpage.ui:349 @@ -586,7 +586,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:531 msgctxt "pdfgeneralpage|extended_tip|tagged" msgid "Select to write PDF tags. This can increase file size by huge amounts." -msgstr "Impostare la scrittura di tag PDF. Questa impostazione può aumentare considerevolmente la dimensione del file." +msgstr "Imposta la scrittura di tag PDF. Questa impostazione può aumentare considerevolmente la dimensione del file." #. 6sDFd #: filter/uiconfig/ui/pdfgeneralpage.ui:542 @@ -604,7 +604,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:552 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 "Scegliere di creare un formulario PDF. Questo può essere completato e stampato dall'utilizzatore del documento PDF." +msgstr "Scegli di creare un formulario PDF. Questo può essere completato e stampato dall'utilizzatore del documento PDF." #. B7zan #: filter/uiconfig/ui/pdfgeneralpage.ui:572 @@ -646,7 +646,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:604 msgctxt "pdfgeneralpage|extended_tip|format" msgid "Select the format of submitting forms from within the PDF file." -msgstr "Selezionare il formato per l'invio dei formulari dall'interno del file PDF." +msgstr "Seleziona il formato per l'invio dei formulari dall'interno del file PDF." #. ECLBB #: filter/uiconfig/ui/pdfgeneralpage.ui:626 @@ -712,7 +712,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:811 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 "Impostare l'esportazione in segnalibri PDF di segnalibri dei documenti Writer. I segnalibri sono creati per tutti i paragrafi della struttura (Strumenti - Numerazione capitolo) e per tutte le voci di indice cui si sono assegnati collegamenti ipertestuali nel documento originale." +msgstr "Imposta l'esportazione in segnalibri PDF di segnalibri dei documenti Writer. I segnalibri sono creati per tutti i paragrafi della struttura (Strumenti - Numerazione capitolo) e per tutte le voci di indice cui si sono assegnati collegamenti ipertestuali nel documento originale." #. kQbPh #: filter/uiconfig/ui/pdfgeneralpage.ui:822 @@ -736,7 +736,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:851 msgctxt "pdfgeneralpage|extended_tip|comments" msgid "Select to export comments of Writer and Calc documents as PDF annotations." -msgstr "Impostare l'esportazione in annotazioni PDF dei commenti contenuti nei documenti di Writer e Calc." +msgstr "Imposta l'esportazione in annotazioni PDF dei commenti contenuti nei documenti di Writer e Calc." #. y9evS #: filter/uiconfig/ui/pdfgeneralpage.ui:862 @@ -838,7 +838,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:56 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 "Selezionare questa casella per convertire gli URL che fanno riferimento ad altri file ODF in riferimenti a file PDF con lo stesso nome. Nell'URL del riferimento le estensioni .odt, .odp, .ods, .odg, e .odm sono convertite all'estensione .pdf." +msgstr "Seleziona questa casella per convertire gli URL che fanno riferimento ad altri file ODF in riferimenti a file PDF con lo stesso nome. Nell'URL del riferimento le estensioni .odt, .odp, .ods, .odg, e .odm sono convertite all'estensione .pdf." #. 6Lyp3 #: filter/uiconfig/ui/pdflinkspage.ui:67 @@ -850,7 +850,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:75 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 "Selezionare questa casella per esportare gli URL ad altri documenti come URL relativi al file system. Si veda \"collegamenti ipertestuali relativi\" nella Guida." +msgstr "Seleziona questa casella per esportare gli URL ad altri documenti come URL relativi al file system. Si veda \"collegamenti ipertestuali relativi\" nella Guida." #. biumY #: filter/uiconfig/ui/pdflinkspage.ui:90 @@ -958,7 +958,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:36 msgctxt "pdfsecuritypage|extended_tip|setpassword" msgid "Click to open a dialog where you enter the passwords." -msgstr "Fare clic per aprire una finestra in cui digitare le password." +msgstr "Fai clic per aprire una finestra in cui digitare le password." #. 63szB #: filter/uiconfig/ui/pdfsecuritypage.ui:55 @@ -1150,7 +1150,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:529 msgctxt "pdfsecuritypage|extended_tip|enablecopy" msgid "Select to enable copying of content to the clipboard." -msgstr "Selezionare la voce per abilitare la copia del contenuto negli appunti." +msgstr "Seleziona la voce per abilitare la copia del contenuto negli appunti." #. 2EMgQ #: filter/uiconfig/ui/pdfsecuritypage.ui:540 @@ -1162,7 +1162,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:549 msgctxt "pdfsecuritypage|extended_tip|enablea11y" msgid "Select to enable text access for accessibility tools." -msgstr "Selezionare la voce per abilitare l'accesso al testo del documento da parte di strumenti di accesso facilitato." +msgstr "Seleziona la voce per abilitare l'accesso al testo del documento da parte di strumenti di accesso facilitato." #. 2hi53 #: filter/uiconfig/ui/pdfsecuritypage.ui:564 @@ -1204,25 +1204,25 @@ #: filter/uiconfig/ui/pdfsignpage.ui:131 msgctxt "pdfsignpage|extended_tip|password" msgid "Enter the password used for protecting the private key associated with the selected certificate." -msgstr "Digitare la password utilizzata per proteggere la chiave privata associata al certificato selezionato." +msgstr "Digita la password utilizzata per proteggere la chiave privata associata al certificato selezionato." #. 9NEtS #: filter/uiconfig/ui/pdfsignpage.ui:149 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 "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, e esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." +msgstr "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, ed esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." #. uVShK #: filter/uiconfig/ui/pdfsignpage.ui:167 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 "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, e esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." +msgstr "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, ed esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." #. 5QBRv #: filter/uiconfig/ui/pdfsignpage.ui:185 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 "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, e esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." +msgstr "Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, ed esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti." #. wHqcD #: filter/uiconfig/ui/pdfsignpage.ui:200 @@ -1276,7 +1276,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:51 msgctxt "pdfuserinterfacepage|extended_tip|center" msgid "Select to generate a PDF file that is shown in a reader window centered on screen." -msgstr "Selezionare questa opzione per generare un file PDF mostrato in una finestra del lettore come centrato sullo schermo." +msgstr "Seleziona questa opzione per generare un file PDF mostrato in una finestra del lettore come centrato sullo schermo." #. ZEPFF #: filter/uiconfig/ui/pdfuserinterfacepage.ui:62 @@ -1288,7 +1288,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:70 msgctxt "pdfuserinterfacepage|extended_tip|resize" msgid "Select to generate a PDF file that is shown in a window displaying the whole initial page." -msgstr ">Selezionare questa opzione per generare un file PDF mostrato in una finestra che visualizza l'intera pagina iniziale." +msgstr "Seleziona questa opzione per generare un file PDF mostrato in una finestra che visualizza l'intera pagina iniziale." #. crBwn #: filter/uiconfig/ui/pdfuserinterfacepage.ui:81 @@ -1300,7 +1300,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:89 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 "Selezionare questa opzione per generare un file PDF mostrato in una finestra del lettore a schermo intero davanti a tutte le altre finestre." +msgstr "Seleziona questa opzione per generare un file PDF mostrato in una finestra del lettore a schermo intero davanti a tutte le altre finestre." #. Cvzzi #: filter/uiconfig/ui/pdfuserinterfacepage.ui:100 @@ -1312,7 +1312,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:108 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 "Selezionare questa opzione per generare un file PDF che mostri il titolo del documento nella barra del titolo del lettore." +msgstr "Seleziona questa opzione per generare un file PDF che mostri il titolo del documento nella barra del titolo del lettore." #. BtMjV #: filter/uiconfig/ui/pdfuserinterfacepage.ui:123 @@ -1330,7 +1330,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:159 msgctxt "pdfuserinterfacepage|extended_tip|toolbar" msgid "Select to hide the reader's toolbar when the document is active." -msgstr "Selezionare questa opzione per nascondere la barra degli strumenti del lettore quando il documento è attivo." +msgstr "Seleziona questa opzione per nascondere la barra degli strumenti del lettore quando il documento è attivo." #. YLEgH #: filter/uiconfig/ui/pdfuserinterfacepage.ui:170 @@ -1342,7 +1342,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:178 msgctxt "pdfuserinterfacepage|extended_tip|menubar" msgid "Select to hide the reader's menu bar when the document is active." -msgstr "Selezionare questa opzione per nascondere la barra dei menu del lettore quando il documento è attivo." +msgstr "Seleziona questa opzione per nascondere la barra dei menu del lettore quando il documento è attivo." #. Aw2aq #: filter/uiconfig/ui/pdfuserinterfacepage.ui:189 @@ -1354,7 +1354,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:197 msgctxt "pdfuserinterfacepage|extended_tip|window" msgid "Select to hide the reader's controls when the document is active." -msgstr "Selezionare questa opzione per nascondere i campi di controllo del lettore quando il documento è attivo." +msgstr "Seleziona questa opzione per nascondere i campi di controllo del lettore quando il documento è attivo." #. xm2Lh #: filter/uiconfig/ui/pdfuserinterfacepage.ui:212 @@ -1372,7 +1372,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:247 msgctxt "pdfuserinterfacepage|extended_tip|effects" msgid "Select to export Impress slide transition effects to respective PDF effects." -msgstr "Impostare l'esportazione in effetti PDF degli effetti di transizione delle diapositive Impress." +msgstr "Imposta l'esportazione in effetti PDF degli effetti di transizione delle diapositive Impress." #. JgwC9 #: filter/uiconfig/ui/pdfuserinterfacepage.ui:262 @@ -1390,7 +1390,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:300 msgctxt "pdfuserinterfacepage|extended_tip|allbookmarks" msgid "Select to show all bookmark levels when the reader opens the PDF file." -msgstr "Selezionare questa opzione per visualizzare i segnalibri di tutti i livelli all'apertura del file PDF." +msgstr "Seleziona questa opzione per visualizzare i segnalibri di tutti i livelli all'apertura del file PDF." #. WzoF3 #: filter/uiconfig/ui/pdfuserinterfacepage.ui:311 @@ -1402,13 +1402,13 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:323 msgctxt "pdfuserinterfacepage|extended_tip|visiblebookmark" msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file." -msgstr "Selezionare questa opzione per visualizzare i segnalibri sottostanti il livello selezionato all'apertura del file PDF." +msgstr "Seleziona questa opzione per visualizzare i segnalibri sottostanti il livello selezionato all'apertura del file PDF." #. NEDWP #: filter/uiconfig/ui/pdfuserinterfacepage.ui:343 msgctxt "pdfuserinterfacepage|extended_tip|visiblelevel" msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file." -msgstr "Selezionare questa opzione per visualizzare i segnalibri sottostanti il livello selezionato all'apertura del file PDF." +msgstr "Seleziona questa opzione per visualizzare i segnalibri sottostanti il livello selezionato all'apertura del file PDF." #. x4kjV #: filter/uiconfig/ui/pdfuserinterfacepage.ui:361 @@ -1426,7 +1426,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:57 msgctxt "pdfviewpage|extended_tip|pageonly" msgid "Select to generate a PDF file that shows only the page contents." -msgstr "Selezionare questa opzione per generare un file PDF che mostri solo il contenuto della pagina." +msgstr "Seleziona questa opzione per generare un file PDF che mostri solo il contenuto della pagina." #. d2FAh #: filter/uiconfig/ui/pdfviewpage.ui:68 @@ -1438,7 +1438,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:77 msgctxt "pdfviewpage|extended_tip|outline" msgid "Select to generate a PDF file that shows a bookmarks palette and the page contents." -msgstr "Selezionare questa opzione per generare un file PDF che mostri una tavola di segnalibri e il contenuto della pagina." +msgstr "Seleziona questa opzione per generare un file PDF che mostri una tavola di segnalibri e il contenuto della pagina." #. rT8gQ #: filter/uiconfig/ui/pdfviewpage.ui:88 @@ -1450,7 +1450,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:97 msgctxt "pdfviewpage|extended_tip|thumbs" msgid "Select to generate a PDF file that shows a thumbnails palette and the page contents." -msgstr "Selezionare questa opzione per generare un file PDF che mostri una tavola di miniature e il contenuto della pagina." +msgstr "Seleziona questa opzione per generare un file PDF che mostri una tavola di miniature e il contenuto della pagina." #. EgKos #: filter/uiconfig/ui/pdfviewpage.ui:116 @@ -1462,7 +1462,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:135 msgctxt "pdfviewpage|extended_tip|page" msgid "Select to show the given page when the reader opens the PDF file." -msgstr "Selezionando l'opzione si potrà scegliere la pagina da visualizzare all'apertura del file PDF." +msgstr "Seleziona questa opzione per scegliere la pagina da visualizzare all'apertura del file PDF." #. MxznY #: filter/uiconfig/ui/pdfviewpage.ui:156 @@ -1480,7 +1480,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:194 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 "Selezionare questa opzione per generare un file PDF che mostri il contenuto della pagina senza zoom. Se il software del lettore è configurato per utilizzare un fattore di zoom predefinito, la pagina sarà mostrata con tale fattore di zoom." +msgstr "Seleziona questa opzione per generare un file PDF che mostri il contenuto della pagina senza zoom. Se il software del lettore è configurato per utilizzare un fattore di zoom predefinito, la pagina sarà mostrata con tale fattore di zoom." #. kqho7 #: filter/uiconfig/ui/pdfviewpage.ui:205 @@ -1492,7 +1492,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:214 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 "Selezionare questa opzione per generare un file PDF che mostri la pagina ingrandita in modo da occupare l'intera finestra del lettore." +msgstr "Seleziona questa opzione per generare un file PDF che mostri la pagina ingrandita in modo da occupare l'intera finestra del lettore." #. gcStc #: filter/uiconfig/ui/pdfviewpage.ui:225 @@ -1504,7 +1504,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:234 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 "Selezionare questa opzione per generare un file PDF che mostri la pagina ingrandita in modo da adattarla alla larghezza della finestra del lettore." +msgstr "Seleziona questa opzione per generare un file PDF che mostri la pagina ingrandita in modo da adattarla alla larghezza della finestra del lettore." #. V6kwp #: filter/uiconfig/ui/pdfviewpage.ui:245 @@ -1516,7 +1516,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:254 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 "Selezionare questa opzione per generare un file PDF che mostri il testo e le immagini contenuti nella pagina ingranditi in modo da adattarli alla larghezza della finestra del lettore." +msgstr "Seleziona questa opzione per generare un file PDF che mostri il testo e le immagini contenuti nella pagina ingranditi in modo da adattarli alla larghezza della finestra del lettore." #. NGpWy #: filter/uiconfig/ui/pdfviewpage.ui:271 @@ -1528,13 +1528,13 @@ #: filter/uiconfig/ui/pdfviewpage.ui:283 msgctxt "pdfviewpage|extended_tip|fitzoom" msgid "Select a given zoom factor when the reader opens the PDF file." -msgstr "Selezionare il livello di zoom con cui il lettore visualizzerà il file PDF." +msgstr "Seleziona il livello di zoom con cui il lettore visualizzerà il file PDF." #. BBoAW #: filter/uiconfig/ui/pdfviewpage.ui:304 msgctxt "pdfviewpage|extended_tip|zoom" msgid "Select a given zoom factor when the reader opens the PDF file." -msgstr "Selezionare il livello di zoom con cui il lettore visualizzerà il file PDF." +msgstr "Seleziona il livello di zoom con cui il lettore visualizzerà il file PDF." #. LQKDP #: filter/uiconfig/ui/pdfviewpage.ui:325 @@ -1552,7 +1552,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:370 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 "Selezionare questa opzione per generare un file PDF che mostri le pagine in base alle impostazioni di impaginazione del software del lettore." +msgstr "Seleziona questa opzione per generare un file PDF che mostri le pagine in base alle impostazioni di impaginazione del software del lettore." #. QBpan #: filter/uiconfig/ui/pdfviewpage.ui:381 @@ -1564,7 +1564,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:390 msgctxt "pdfviewpage|extended_tip|singlelayout" msgid "Select to generate a PDF file that shows one page at a time." -msgstr "Selezionare questa opzione per generare un file PDF che mostri una pagina alla volta." +msgstr "Seleziona questa opzione per generare un file PDF che mostri una pagina alla volta." #. whE6p #: filter/uiconfig/ui/pdfviewpage.ui:401 @@ -1576,7 +1576,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:410 msgctxt "pdfviewpage|extended_tip|contlayout" msgid "Select to generate a PDF file that shows pages in a continuous vertical column." -msgstr "Selezionare questa opzione per generare un file PDF che mostri le pagine in una colonna verticale continua." +msgstr "Seleziona questa opzione per generare un file PDF che mostri le pagine in una colonna verticale continua." #. ALQRE #: filter/uiconfig/ui/pdfviewpage.ui:421 @@ -1588,7 +1588,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:430 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 "Selezionare questa opzione per generare un file PDF che mostri le pagine l'una accanto all'altra in una colonna continua. Per più di due pagine, la prima pagina viene visualizzata a destra." +msgstr "Seleziona questa opzione per generare un file PDF che mostri le pagine l'una accanto all'altra in una colonna continua. Per più di due pagine, la prima pagina viene visualizzata a destra." #. 4DFBW #: filter/uiconfig/ui/pdfviewpage.ui:441 @@ -1600,7 +1600,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:450 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 "Selezionare questa opzione per generare un file PDF che mostri le pagine l'una accanto all'altra in una colonna continua. Per più di due pagine, la prima pagina viene visualizzata a sinistra. È necessario abilitare il supporto dei testi con disposizione complessa in Impostazioni della lingua - Lingue, nella finestra di dialogo Opzioni." +msgstr "Seleziona questa opzione per generare un file PDF che mostri le pagine l'una accanto all'altra in una colonna continua. Per più di due pagine, la prima pagina viene visualizzata a sinistra. È necessario abilitare il supporto dei testi con disposizione complessa in Impostazioni della lingua - Lingue, nella finestra di dialogo Opzioni." #. sYKod #: filter/uiconfig/ui/pdfviewpage.ui:465 @@ -1636,7 +1636,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:117 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 "Individuare il file a cui applicare il filtro di esportazione XML. Il codice XML del file verrà aperto nell'editor XML predefinito dopo la trasformazione." +msgstr "Individua il file a cui applicare il filtro di esportazione XML. Il codice XML del file verrà aperto nell'editor XML predefinito dopo la trasformazione." #. F8CJd #: filter/uiconfig/ui/testxmlfilter.ui:128 @@ -1798,7 +1798,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:134 msgctxt "xmlfiltersettings|extended_tip|filterlist" msgid "Select one or more filters, then click one of the buttons." -msgstr "Selezionare uno o più filtri, poi premere uno dei pulsanti." +msgstr "Seleziona uno o più filtri, poi premi uno dei pulsanti." #. VcMQo #: filter/uiconfig/ui/xmlfiltersettings.ui:156 @@ -1858,7 +1858,7 @@ #: 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 "Mostra una finestra di dialogo Salva come che consente di salvare il file selezionato come pacchetto di filtro XSLT (*.jar)." +msgstr "Mostra una finestra di dialogo \"Salva come\" che consente di salvare il file selezionato come pacchetto di filtro XSLT (*.jar)." #. CuahL #: filter/uiconfig/ui/xmlfiltersettings.ui:251 @@ -1870,13 +1870,13 @@ #: 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 "Mostra una finestra di dialogo Apri che consente di aprire un filtro come pacchetto di filtro XSLT (*.jar)." +msgstr "Mostra una finestra di dialogo \"Apri\" che consente di aprire un filtro come pacchetto di filtro XSLT (*.jar)." #. bC6ha #: filter/uiconfig/ui/xmlfiltersettings.ui:290 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 "Apre la finestra di dialogo Impostazioni filtro XML, in cui si possono creare, modificare, eliminare e sperimentare i filtri per l'importazione e l'esportazione dei file XML." +msgstr "Apre la finestra di dialogo Impostazioni filtro XML, in cui puoi creare, modificare, eliminare e sperimentare i filtri per l'importazione e l'esportazione dei file XML." #. rLZ5z #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:23 @@ -1912,7 +1912,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:100 msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername" msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog." -msgstr "Inserire il nome da visualizzare nella casella di riepilogo del dialogo Impostazioni filtro XML." +msgstr "Inserisci il nome da visualizzare nella casella di riepilogo del dialogo Impostazioni filtro XML." #. yTwyU #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119 @@ -1924,25 +1924,25 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:138 msgctxt "xmlfiltertabpagegeneral|extended_tip|interfacename" msgid "Enter the name that you want to display in the File type box in file dialogs." -msgstr "Inserire il nome da visualizzare nella casella Tipo file nelle finestre di dialogo dei file." +msgstr "Inserisci il nome da visualizzare nella casella \"Tipo file\" nelle finestre di dialogo dei file." #. BFUsA #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:162 msgctxt "xmlfiltertabpagegeneral|extended_tip|application" msgid "Select the application that you want to use with the filter." -msgstr "Selezionare l'applicazione da utilizzare con il filtro." +msgstr "Seleziona l'applicazione da utilizzare con il filtro." #. Gfrm2 #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:186 msgctxt "xmlfiltertabpagegeneral|extended_tip|description" msgid "Enter a comment (optional)." -msgstr "Inserire un commento (facoltativo)." +msgstr "Inserisci un commento (facoltativo)." #. G632R #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:206 msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral" msgid "Enter or edit general information for an XML filter." -msgstr "Inserire o modificare le informazioni generali per un filtro XML." +msgstr "Inserisci o modifica le informazioni generali per un filtro XML." #. FhD2n #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:24 @@ -1954,7 +1954,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:44 msgctxt "xmlfiltertabpagetransformation|extended_tip|doc" msgid "Enter the DOCTYPE of the XML file." -msgstr "Inserire il DOCTYPE per il file XML." +msgstr "Inserisci il DOCTYPE per il file XML." #. J5c8A #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:57 @@ -2014,19 +2014,19 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:162 msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltexport" msgid "If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting." -msgstr "Se si tratta di un filtro di esportazione, inserire il nome del foglio stile XSLT da usare per l'esportazione." +msgstr "Se si tratta di un filtro di esportazione, inserisci il nome del foglio stile XSLT da usare per l'esportazione." #. Xgroa #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:185 msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltimport" msgid "If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing." -msgstr "Se si tratta di un filtro di importazione, inserire il nome del foglio stile XSLT da usare per l'importazione." +msgstr "Se si tratta di un filtro di importazione, inserisci il nome del foglio stile XSLT da usare per l'importazione." #. wRFNU #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:208 msgctxt "xmlfiltertabpagetransformation|extended_tip|tempimport" msgid "Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags." -msgstr "Inserire il nome del modello di documento da usare per l'importazione. Nel modello di documento, sono definiti gli stili di formato usati per visualizzare i tag XML." +msgstr "Inserisci il nome del modello di documento da usare per l'importazione. Nel modello di documento, sono definiti gli stili di formato usati per visualizzare i tag XML." #. XTDex #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:229 @@ -2038,7 +2038,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:244 msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation" msgid "Enter or edit file information for an XML filter." -msgstr "Inserire o modificare le informazioni del file per un filtro XML." +msgstr "Inserisci o modifica le informazioni del file per un filtro XML." #. MCfGg #: filter/uiconfig/ui/xsltfilterdialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/it/fpicker/messages.po libreoffice-7.3.5/translations/source/it/fpicker/messages.po --- libreoffice-7.3.4/translations/source/it/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-07-28 09:58+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -216,55 +216,55 @@ msgstr "Data di modifica" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Apri" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Esegui" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nome file:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo di file:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Sola lettura" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Salva con password" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Estensione _automatica del nome del file" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Modifica impostazioni _filtro" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Cifra con chiave GPG" diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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: 2021-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-01-09 15:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564773131.000000\n" #. 3B8ZN @@ -2660,7 +2660,7 @@ "par_id3157840\n" "help.text" msgid "Object Linking and Embedding (OLE) objects can be linked to a target document or may also be embedded. Embedding inserts a copy of the object and details of the source program in the target document. If you want to edit the object, simply activate the source program by double-clicking on the object." -msgstr "Gli oggetti OLE (Object Linking and Embedding) possono essere collegati a un documento di destinazione oppure incorporati. Quando incorporate un oggetto in un documento, inserite nel documento di destinazione una copia dell'oggetto e informazioni dettagliate sul programma sorgente. Per modificare l'oggetto, è sufficiente che attiviate il programma sorgente facendovi doppio clic." +msgstr "Gli oggetti OLE (Object Linking and Embedding) sono collegabili o incorporabili a un documento di destinazione. Quando si incorpora un oggetto in un documento, inserire nel documento di destinazione una copia dell'oggetto e informazioni dettagliate sul programma sorgente. Per modificare l'oggetto, è sufficiente che attiviate il programma sorgente facendovi doppio clic." #. 3YbnY #: 00000005.xhp @@ -7034,7 +7034,7 @@ "par_id181526424294565\n" "help.text" msgid "Choose File - Digital Signatures - Sign Existing PDF." -msgstr "Scegliete File - Firme digitali - Firma PDF esistente." +msgstr "Scegliere File - Firme digitali - Firma PDF esistente." #. BT3B5 #: 00000401.xhp @@ -7934,7 +7934,7 @@ "par_id3146806\n" "help.text" msgid "On the Insert bar, click" -msgstr "Nella barra Inserisci, fate clic su" +msgstr "Nella barra Inserisci, fare clic su" #. gjoUP #: 00000404.xhp @@ -7970,7 +7970,7 @@ "par_id3153056\n" "help.text" msgid "On the Insert bar, click" -msgstr "Nella barra Inserisci, fate clic su" +msgstr "Nella barra Inserisci, fare clic su" #. 8stDh #: 00000404.xhp @@ -7997,7 +7997,7 @@ "par_id3153144\n" "help.text" msgid "Choose Format - Chart Type." -msgstr "Scegliete Formato - Tipo di grafico." +msgstr "Scegliere Formato - Tipo di grafico." #. Vfm3s #: 00000404.xhp @@ -8015,7 +8015,7 @@ "par_id3154011\n" "help.text" msgid "Choose Format - Chart Type." -msgstr "Scegliete Formato - Tipo di grafico." +msgstr "Scegliere Formato - Tipo di grafico." #. S7Tqw #: 00000404.xhp @@ -12398,7 +12398,7 @@ "par_id3156023\n" "help.text" msgid "Choose Format - Title - Borders tab (charts)." -msgstr "Scegliete Formato - Titolo, scheda Bordi (grafici)." +msgstr "Scegliere Formato - Titolo, scheda Bordi (grafici)." #. knxFR #: 00040502.xhp @@ -12479,7 +12479,7 @@ "par_id3156082\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area." -msgstr "Scegliete la scheda Formato - Casella di testo e forma - >Oggetto - Area." +msgstr "Scegliere la scheda Formato - Casella di testo e forma - >Oggetto - Area." #. EAChU #: 00040502.xhp @@ -12488,7 +12488,7 @@ "par_id3148922\n" "help.text" msgid "On Line and Filling bar, click" -msgstr "Nella barra Stile e riempimento, fate clic su" +msgstr "Nella barra Stile e riempimento, fare clic su" #. HBmFB #: 00040502.xhp @@ -12515,7 +12515,7 @@ "par_id511592159765396\n" "help.text" msgid "Choose View - Styles (Command+TF11) - choose Paragraph, Frame or Page style - open context menu - choose Modify/New - Area tab." -msgstr "Scegliete Visualizza - Stili (Cmd+TF11) poi lo stile diparagrafo, cornice o pagina; aprite il menu di contesto e scegliete Cambia/Nuovo, poi la scheda Area." +msgstr "Scegliete Visualizza - Stili (Cmd+TF11) poi lo stile di paragrafo, cornice o pagina; aprite il menu di contesto e scegliete Cambia/Nuovo, poi la scheda Area." #. sV6fD #: 00040502.xhp @@ -12974,7 +12974,7 @@ "par_id3148833\n" "help.text" msgid "Open the context menu for the object - choose Name." -msgstr "Aprite il menu di contesto associato all'oggetto e scegliete Nome." +msgstr "Aprire il menu di contesto associato all'oggetto e scegliere Nome." #. xBha8 #: 00040502.xhp @@ -14729,7 +14729,7 @@ "par_id3148773\n" "help.text" msgid "Choose Edit - Track Changes - Comment." -msgstr "Scegliete Modifica - Revisioni - Commento." +msgstr "Scegliere Modifica - Revisioni - Commento." #. BuLKS #: edit_menu.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-01-25 11:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565337097.000000\n" #. 3u8hR @@ -11111,7 +11111,7 @@ "bm_id3145138\n" "help.text" msgid "objects; editingediting; objects" -msgstr "Oggetto;modificareModifica;oggetto" +msgstr "Oggetto;modificareModificare;oggetti" #. Yqvzi #: 02200100.xhp @@ -27806,7 +27806,7 @@ "par_id641578758985603\n" "help.text" msgid "Click Add to open a dialog to set a name for the custom color. The palette changes to \"custom\"." -msgstr "Fate clic su Aggiungi per aprire una finestra di dialogo e impostare il nome per il colore personalizzato. La tavolozza cambia in \"personalizzata\"." +msgstr "Fare clic su Aggiungi per aprire una finestra di dialogo e impostare il nome per il colore personalizzato. La tavolozza cambia in \"personalizzata\"." #. 5Br7h #: 05210200.xhp @@ -27815,7 +27815,7 @@ "par_id191578758991563\n" "help.text" msgid "Click Delete to delete the color from the custom palette." -msgstr "Fate clic su Elimina per eliminare il colore dalla tavolozza personalizzata." +msgstr "Fare clic su Elimina per eliminare il colore dalla tavolozza personalizzata." #. ECZqn #: 05210200.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-31 19:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564770238.000000\n" #. iharT @@ -17249,7 +17249,7 @@ "bm_id3146117\n" "help.text" msgid "defining; arrowheads and other line endsarrows; defining arrow headslines;defining ends" -msgstr "Definizione; estremità di lineaFreccia; definire punte di frecciaLinea; definire estremità" +msgstr "Definizione; estremità freccia e altri terminali di lineaFreccia; definire punte di frecciaLinea; definire estremità" #. QCVYS #: lineend_define.xhp @@ -25079,7 +25079,7 @@ "par_id3150530\n" "help.text" msgid "Starts in \"headless mode\" which allows using the application without user interface." -msgstr "Avvia il software in \"modo headless\", che consente di utilizzare l'applicazione senza interfaccia utente." +msgstr "Avvia il software in \"modalità headless\", che consente di utilizzare l'applicazione senza interfaccia utente." #. eeqxp #: start_parameters.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/help.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/help.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/help.po 2022-07-15 19:12:51.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: 2021-01-08 13:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564174239.000000\n" #. jdDhb @@ -140,7 +140,7 @@ "par_id211591971675557\n" "help.text" msgid "Enable JavaScript in the browser to display %PRODUCTNAME Help pages." -msgstr "Abilitate JavaScript nel browser per visualizzare le pagine della Guida di %PRODUCTNAME." +msgstr "Abilitare JavaScript nel browser per visualizzare le pagine della Guida di %PRODUCTNAME." #. DXqYQ #: browserhelp.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/menu.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/menu.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/menu.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/menu.po 2022-07-15 19:12:51.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: 2021-01-12 10:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1485123932.000000\n" #. EEMss @@ -212,7 +212,7 @@ "par_id291566144541584\n" "help.text" msgid "Opens the Export Image dialog to save the background image of the current slidepage. Select the image file format in the Filter box, enter a file name for the image and click Save." -msgstr "Apre la finestra di dialogo Esporta immagine per salvare l'immagine di sfondo della diapositivapagina attiva. Selezionate il formato del file nel riquadro Filtro, digitate un nome per l'immagine e fate clic su Salva." +msgstr "Apre la finestra di dialogo Esporta immagine per salvare l'immagine di sfondo della diapositivapagina attiva. Selezionare il formato del file nel riquadro Filtro, digitare un nome per l'immagine e fare clic su Salva." #. LJVBr #: save_image.xhp @@ -266,7 +266,7 @@ "par_id91566150694760\n" "help.text" msgid "Choose SlidePage - Set Background Image." -msgstr "Scegliete DiapositivaPagina - Imposta immagine di sfondo." +msgstr "Scegliere DiapositivaPagina - Imposta immagine di sfondo." #. DU4B8 #: set_image_background.xhp @@ -275,4 +275,4 @@ "par_id291566144541584\n" "help.text" msgid "Opens the Set Image Background dialog to set the background image of the current slidepage. Select image file and press Open." -msgstr "Apre la finestra di dialogo Imposta immagine di sfondo che serve per impostare l'immagine di sfondo della diapositivapagina attiva. Selezionate il file immagine e premete Apri." +msgstr "Apre la finestra di dialogo Imposta immagine di sfondo che serve per impostare l'immagine di sfondo della diapositivapagina attiva. Selezionare il file immagine e premere Apri." diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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: 2021-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-01-13 19:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564770651.000000\n" #. PzSYs @@ -12875,7 +12875,7 @@ "hd_id3155904\n" "help.text" msgid "Enable Presenter Console" -msgstr "Abilita la Presenter Console" +msgstr "Attiva la Console del relatore" #. uBhWx #: 01070500.xhp @@ -12884,7 +12884,7 @@ "par_id3155964\n" "help.text" msgid "Specifies that you want to enable the Presenter Console during slideshows." -msgstr "Specifica che si vuole abilitare la Presenter Console durante le presentazioni." +msgstr "Specifica che si vuole attiva la Console del relatore durante le presentazioni." #. 7btTx #: 01070500.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/shared.po 2022-07-15 19:12:51.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: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-01-09 15:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561913682.000000\n" #. DBz3U @@ -122,7 +122,7 @@ "par_idN105DC\n" "help.text" msgid "Click to apply the alignment to the selected Fontwork objects." -msgstr "Fate clic per applicare l'allineamento agli oggetti fontwork selezionati." +msgstr "Fare clic per applicare l'allineamento agli oggetti fontwork selezionati." #. NSmjx #: fontwork_toolbar.xhp @@ -230,7 +230,7 @@ "par_id3153990\n" "help.text" msgid "The Help menu allows you to start and control the $[officename] Help system." -msgstr "Il menu Aiuto vi permette di avviare e controllare il sistema della Guida di $[officename]." +msgstr "Il menu Aiuto permette di avviare e controllare il sistema della Guida di $[officename]." #. qpCaX #: main0108.xhp @@ -248,7 +248,7 @@ "par_id3147576\n" "help.text" msgid "Opens the main page of the $[officename] Help for the current application. You can scroll through the Help pages and you can search for index terms or any text." -msgstr "Apre la pagina principale della Guida di $[officename] relativa all'applicazione attiva. Potete scorrere le pagine della Guida e ricercare i termini elencati nell'indice o qualsiasi altra stringa di testo." +msgstr "Apre la pagina principale della Guida di $[officename] relativa all'applicazione attiva. È possibile scorrere le pagine della Guida e ricercare i termini elencati nell'indice o qualsiasi altra stringa di testo." #. SPpw7 #: main0108.xhp @@ -302,7 +302,7 @@ "par_id230120170827196850\n" "help.text" msgid "Opens the community support page in the web browser. Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the page of professional %PRODUCTNAME support." -msgstr "Apre la pagina di supporto della comunità nel browser web. Usate questa pagina per formulare domande sull'uso di %PRODUCTNAME. Per un supporto professionale con contratti di servizio, fate riferimento alla pagina del supporto professionale di %PRODUCTNAME (in inglese)." +msgstr "Apre la pagina di supporto della comunità nel browser web. Usare questa pagina per formulare domande sull'uso di %PRODUCTNAME. Per un supporto professionale con contratti di servizio, fare riferimento alla pagina del supporto professionale di %PRODUCTNAME (in inglese)." #. mTBuv #: main0108.xhp @@ -383,7 +383,7 @@ "par_id651629934878405\n" "help.text" msgid "Your donation, which is purely optional, supports our worldwide community." -msgstr "La vostra donazione, che è esclusivamente opzionale, supporta la nostra comunità mondiale." +msgstr "La donazione, che è esclusivamente opzionale, supporta la nostra comunità mondiale." #. gGbbH #: main0108.xhp @@ -392,7 +392,7 @@ "par_id611629934882669\n" "help.text" msgid "If you like the software, please consider a donation." -msgstr "Se il software vi piace, vi invitiamo a prendere in considerazione una donazione." +msgstr "Se il software è di vostro gradimento, vi invitiamo a prendere in considerazione una donazione." #. sWFkG #: main0108.xhp @@ -824,7 +824,7 @@ "par_id3149346\n" "help.text" msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the Apply Filter icon on the Table Data bar is activated." -msgstr "La vista dati filtrata rimane attiva finché non scegliete di cambiare o annullare i criteri di ordinamento o di filtro. Se attivate un filtro, viene attivata l'icona Record di dati filtrati nella barra Dati tabella." +msgstr "La vista dati filtrata rimane attiva finché non si sceglie di cambiare o annullare i criteri di ordinamento o di filtro. Se si attiva un filtro, viene attivata l'icona Record di dati filtrati nella barra Dati tabella." #. CcwiY #: main0212.xhp @@ -941,7 +941,7 @@ "par_id3157958\n" "help.text" msgid "You can use the Form Navigation bar to move within records as well as to insert and to delete records. If data is saved in a form, the changes are transferred to the database. The Form Navigation bar also contains sort, filter, and search functions for data records." -msgstr "Potete utilizzare la barra di navigazione per spostarvi tra i record, nonché per inserire ed eliminare dei record. Se i dati sono salvati in un formulario, le modifiche vengono trasferite al database. La barra di navigazione contiene inoltre funzioni per ordinare, filtrare e cercare i record." +msgstr "È possibile utilizzare la barra di navigazione per spostarsi tra i record, nonché per inserire ed eliminare dei record. Se i dati sono salvati in un formulario, le modifiche vengono trasferite al database. La barra di navigazione contiene inoltre funzioni per ordinare, filtrare e cercare i record." #. nLEDn #: main0213.xhp @@ -977,7 +977,7 @@ "par_id3153062\n" "help.text" msgid "The current sort order or filter is saved with the current document. If a filter is set, the Apply Filter icon on the Navigation bar is activated. Sorting and filtering features in the document can also be configured in the Form Properties dialog. (Choose Form Properties - Data - properties Sort and Filter)." -msgstr "L'ordinamento o il filtro attivo viene salvato con il documento. Se è impostato un filtro, nella barra di navigazione è attivata l'icona Applica filtro. Le opzioni di ordinamento e filtro nel documento possono essere configurate anche nella finestra di dialogo Proprietà formulario (scegliete Proprietà formulario - Dati - proprietà Ordina e Filtro)." +msgstr "L'ordinamento o il filtro attivo viene salvato con il documento. Se è impostato un filtro, nella barra di navigazione è attivata l'icona Applica filtro. È possibile configurare le opzioni di ordinamento e filtro nel documento anche nella finestra di dialogo Proprietà formulario (scegliere Proprietà formulario - Dati - proprietà Ordina e Filtro)." #. XXEDY #: main0213.xhp @@ -1274,7 +1274,7 @@ "par_id3150276\n" "help.text" msgid "Depending on whether you have created the query or view in the Design or SQL tab page, the following icons appear:" -msgstr "A seconda che abbiate creato la ricerca o la vista nella scheda Struttura o SQL, compaiono le seguenti icone:" +msgstr "A seconda che si sia creata la ricerca o la vista nella scheda Struttura o SQL, compaiono le seguenti icone:" #. KJCRF #: main0214.xhp @@ -1445,7 +1445,7 @@ "par_id3144762\n" "help.text" msgid "The functions provided allow you to edit the points of a curve or an object converted to a curve. The following icons are available:" -msgstr "Le funzioni disponibili vi permettono di modificare i punti di una curva o di un oggetto convertito in curva. Sono disponibili le icone seguenti:" +msgstr "Le funzioni disponibili permettono di modificare i punti di una curva o di un oggetto convertito in curva. Sono disponibili le icone seguenti:" #. EBpiU #: main0227.xhp @@ -1463,7 +1463,7 @@ "par_id3159151\n" "help.text" msgid "The Edit Points icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected." -msgstr "Con l'icona Modifica punti attivate o disattivate il modo di modifica degli oggetti di Bézier. Nel modo modifica potete selezionare singoli punti dell'oggetto di disegno." +msgstr "Con l'icona Modifica punti si attiva o disattiva il modo di modifica degli oggetti di Bézier. Nel modo modifica è possibile selezionare singoli punti dell'oggetto di disegno." #. 9CP8C #: main0227.xhp @@ -1499,7 +1499,7 @@ "par_id3147435\n" "help.text" msgid "Activates a mode in which you can move points. The mouse pointer displays a small empty square when resting on a point. Drag that point to another location. The curve on both sides of the point follows the movement; the section of the curve between the next points changes shape." -msgstr "Attiva un modo in cui è abilitato lo spostamento dei punti. Il puntatore del mouse, quando viene posizionato su un punto, mostra un piccolo quadrato vuoto. Trascinate il punto in un'altra posizione. La curva ai due lati del punto segue lo spostamento; la parte della curva situata tra i punti successivi cambia forma." +msgstr "Attiva un modo in cui è abilitato lo spostamento dei punti. Il puntatore del mouse, quando viene posizionato su un punto, mostra un piccolo quadrato vuoto. Trascinare il punto in un'altra posizione. La curva ai due lati del punto segue lo spostamento; la parte della curva situata tra i punti successivi cambia forma." #. aAAN6 #: main0227.xhp @@ -1508,7 +1508,7 @@ "par_id3149481\n" "help.text" msgid "Point at the curve between two points or within a closed curve and drag the mouse to shift the entire curve without distorting the form." -msgstr "Se puntate sulla curva tra due punti oppure nell'area di una curva chiusa e trascinate col pulsante del mouse premuto, spostate l'intera curva senza deformarla." +msgstr "Se si punta sulla curva tra due punti oppure nell'area di una curva chiusa e si trascina col pulsante del mouse premuto, si sposta l'intera curva senza deformarla." #. 3TVgA #: main0227.xhp @@ -1544,7 +1544,7 @@ "par_id3160478\n" "help.text" msgid "Activates the insert mode. This mode allows you to insert points. You can also move points, just as in the move mode. If, however, you click at the curve between two points and move the mouse a little while holding down the mouse button you insert a new point. The point is a smooth point, and the lines to the control points are parallel and remain so when moved." -msgstr "Attiva il modo inserimento. Questo modo permette di inserire nuovi punti. Potete inoltre spostare i punti esistenti, come nel modo spostamento. Se fate clic nella curva tra due punti e spostate il mouse tenendo premuto il pulsante, inserite un nuovo punto. Il punto inserito è un punto di smorzamento lieve e le linee che lo collegano ai punti di controllo sono parallele e rimangono tali anche in caso di spostamento." +msgstr "Attiva il modo inserimento. Questo modo permette di inserire nuovi punti. È possibile inoltre spostare i punti esistenti, come nel modo spostamento. Facendo clic nella curva tra due punti e spostando il mouse tenendo premuto il pulsante, si inserisce un nuovo punto. Il punto inserito è un punto di smorzamento lieve e le linee che lo collegano ai punti di controllo sono parallele e rimangono tali anche in caso di spostamento." #. xbFcA #: main0227.xhp @@ -1553,7 +1553,7 @@ "par_id3157846\n" "help.text" msgid "If you wish to create a corner point you must first insert either a smooth or a symmetrical point which is then converted to a corner point by using Corner Point." -msgstr "Se desiderate creare un punto angolare, dovete prima inserire un punto di smorzamento lieve o un punto di transizione simmetrica e quindi convertirlo usando l'icona Imposta angolo." +msgstr "Per creare un punto angolare, bisogna prima inserire un punto di smorzamento lieve o un punto di transizione simmetrica e quindi convertirlo usando l'icona Imposta angolo." #. wFzbF #: main0227.xhp @@ -1589,7 +1589,7 @@ "par_id3148917\n" "help.text" msgid "Use the Delete Points icon to delete one or several selected points. If you wish to select several points click the appropriate points while holding down the Shift key." -msgstr "Con l'icona Elimina punti si possono eliminare uno o più punti selezionati. Per selezionare più punti, farvi clic sopra tenendo premuto il tasto Maiusc." +msgstr "Con l'icona Elimina punti è possibile eliminare uno o più punti selezionati. Per selezionare più punti, farci clic sopra tenendo premuto il tasto Maiusc." #. tWtYC #: main0227.xhp @@ -1598,7 +1598,7 @@ "par_id3153766\n" "help.text" msgid "First select the points to be deleted, and then click this icon, or press Del." -msgstr "Selezionate innanzitutto i punti, quindi fate clic su questa icona. Per eliminare i punti potete anche premere il tasto Canc." +msgstr "Selezionare innanzitutto i punti, quindi fare clic su questa icona. Per eliminare i punti è possibile anche premere il tasto Canc." #. 7E9oE #: main0227.xhp @@ -1787,7 +1787,7 @@ "par_id3155812\n" "help.text" msgid "This icon converts a corner point or a smooth point into a symmetrical point. Both control points of the corner point are aligned in parallel and have the same length. They can only be moved simultaneously and the degree of curvature is the same in both directions." -msgstr "Converte un angolo in un punto di smorzamento lieve o in un punto di transito simmetrico. I due punti di controllo dell'angolo sono allineati in parallelo e hanno la stessa lunghezza. Possono essere spostati solo simultaneamente e con un grado di curvatura uguale in entrambe le direzioni." +msgstr "Converte un angolo in un punto di smorzamento lieve o in un punto di transito simmetrico. I due punti di controllo dell'angolo sono allineati in parallelo e hanno la stessa lunghezza, e possono essere spostati solo simultaneamente e con un grado di curvatura uguale in entrambe le direzioni." #. 4obZh #: main0227.xhp @@ -1859,7 +1859,7 @@ "par_id3149441\n" "help.text" msgid "Marks the current point or the selected points for deletion. This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the Convert to Curve icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place can be set by choosing %PRODUCTNAME Draw - Grid in the Options dialog boxcan be set by choosing %PRODUCTNAME Impress - Grid in the Options dialog boxis 15° by default." -msgstr "Contrassegna il punto attivo o i punti selezionati per l'eliminazione. Questa marcatura viene eseguita se il punto si trova su una linea retta. Se convertite una curva o un poligono in una retta usando l'icona Converti in curva, o se modificate una curva con il mouse in modo che un punto si trovi sulla retta, il punto viene rimosso. L'angolo a partire dal quale dovrà avvenire la riduzione del punto può essere impostato scegliendo %PRODUCTNAME Draw - Griglia nella finestra di dialogo Opzionipuò essere impostato scegliendo %PRODUCTNAME Impress - Griglia nella finestra di dialogo Opzioniha la misura predefinita di 15°." +msgstr "Contrassegna il punto attivo o i punti selezionati per l'eliminazione. Questa marcatura viene eseguita se il punto si trova su una linea retta. Se si converte una curva o un poligono in una retta usando l'icona Converti in curva, o si modifica una curva con il mouse in modo che un punto si trovi sulla retta, il punto viene rimosso. L'angolo a partire dal quale dovrà avvenire la riduzione del punto può essere impostato scegliendo %PRODUCTNAME Draw - Griglia nella finestra di dialogo Opzionipuò essere impostato scegliendo %PRODUCTNAME Impress - Griglia nella finestra di dialogo Opzioniha la misura predefinita di 15°." #. ACe6t #: main0227.xhp @@ -1967,7 +1967,7 @@ "par_id3154751\n" "help.text" msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required." -msgstr "Affinché $[officename] supporti la piattaforma Java, dovete installare il software Java 2 Runtime Environment. Se i relativi file non sono già installati, viene offerta automaticamente la possibilità di installarli durante l'installazione di $[officename]. L'installazione può tuttavia essere eseguita anche in seguito." +msgstr "Affinché $[officename] supporti la piattaforma Java, è necessario installare il software Java 2 Runtime Environment. Se i relativi file non sono già installati, viene offerta automaticamente la possibilità di installarli durante l'installazione di $[officename]. L'installazione può tuttavia essere eseguita anche in seguito." #. wFYWg #: main0650.xhp @@ -1976,7 +1976,7 @@ "par_id3155338\n" "help.text" msgid "The Java platform support needs to be activated under $[officename] to run Java applications." -msgstr "Per eseguire le applicazioni Java dovete prima attivare il supporto della piattaforma Java in $[officename]." +msgstr "Per eseguire le applicazioni Java è necessario prima attivare il supporto della piattaforma Java in $[officename]." #. KmhjC #: main0650.xhp @@ -1985,7 +1985,7 @@ "par_id3155892\n" "help.text" msgid "Enable Java platform support by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." -msgstr "Per attivare il supporto della piattaforma Java, scegliete %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Avanzate." +msgstr "Per attivare il supporto della piattaforma Java, scegliere %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Avanzate." #. NcDL4 #: main0650.xhp @@ -1994,7 +1994,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 "Prima di utilizzare un driver JDBC, dovete aggiungere il percorso della classe. Scegliete %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Avanzate, quindi fate clic sul pulsante Percorso classe. Una volta aggiunte le informazioni sul percorso, riavviate %PRODUCTNAME." +msgstr "Prima di utilizzare un driver JDBC, è necessario aggiungere il percorso della classe. Scegliere %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Avanzate, quindi fare clic sul pulsante Percorso classe. Una volta aggiunte le informazioni sul percorso, riavviare %PRODUCTNAME." #. ApwuB #: main0650.xhp @@ -2003,7 +2003,7 @@ "par_id3153822\n" "help.text" msgid "Your modifications at the %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced tab page will be used even if the Java Virtual Machine (JVM) has been started already. After any modifications to the ClassPath you must restart $[officename]. The same is true for modifications under %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy. Only the boxes \"HTTP Proxy\" and \"FTP Proxy\" and their ports do not require a restart—they will be evaluated when you click OK." -msgstr "Le modifiche apportate nella scheda %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Avanzate verranno applicate anche se la Java Virtual Machine (JVM, una macchina virtuale per la piattaforma Java) è già stata avviata. Per applicare le modifiche al campo Percorso classe dovete riavviare $[officename]. Lo stesso vale per le modifiche apportate in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet - Proxy. Le modifiche alle opzioni \"Proxy HTTP\" e \"Proxy FTP\" e ai relativi campi \"Porta\" non richiedono il riavvio del sistema: vengono applicate facendo clic su OK." +msgstr "Le modifiche apportate nella scheda %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Avanzate verranno applicate anche se la Java Virtual Machine (JVM, una macchina virtuale per la piattaforma Java) è già stata avviata. Per applicare le modifiche al campo Percorso classe è necessario riavviare $[officename]. Lo stesso vale per le modifiche apportate in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet - Proxy. Le modifiche alle opzioni \"Proxy HTTP\" e \"Proxy FTP\" e ai relativi campi \"Porta\" non richiedono il riavvio del sistema: vengono applicate facendo clic su OK." #. rFknA #: main0800.xhp @@ -2075,7 +2075,7 @@ "par_id398855439580084\n" "help.text" msgid "Opens a submenu where you can choose text spacing commands." -msgstr "Apre un sottomenu in cui si possono scegliere comandi per la spaziatura del testo." +msgstr "Apre un sottomenu in cui è possibile scegliere comandi per la spaziatura del testo." #. 7Sh42 #: submenu_spacing.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/02.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/02.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/02.po 2022-07-15 19:12:51.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: 2021-09-20 13:03+0200\n" -"PO-Revision-Date: 2022-01-22 19:38+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563483805.000000\n" #. AiACn @@ -5081,7 +5081,7 @@ "tit\n" "help.text" msgid "Hide Subpoints" -msgstr "Nascondi i sotto-paragrafi" +msgstr "Nascondi i sottoparagrafi" #. 9fBuY #: 11080000.xhp @@ -5090,7 +5090,7 @@ "bm_id3146119\n" "help.text" msgid "subpoints; hidinghiding; subpoints" -msgstr "Sotto-paragrafo;nascondereVisualizzazione;nascondere i sotto-paragrafi" +msgstr "Sottoparagrafo;nascondereNascondere; sottoparagrafi" #. mQSE7 #: 11080000.xhp @@ -5099,7 +5099,7 @@ "hd_id3146119\n" "help.text" msgid "Hide Subpoints" -msgstr "Nascondere i sotto-paragrafi" +msgstr "Nascondere i sottoparagrafi" #. VozPE #: 11080000.xhp @@ -5108,7 +5108,7 @@ "par_id3154490\n" "help.text" msgid "Hides the subheadings of a selected heading. Hidden subheadings are indicated by a black line in front of a heading. To show the lower level headings, click the Show Subpoints icon." -msgstr "Nasconde le intestazioni secondarie dell'intestazione selezionata. La presenza di intestazioni secondarie nascoste è indicata da una linea nera davanti all'intestazione. Per visualizzare le intestazioni di livello inferiore, fare clic sull'icona Mostra sotto-paragrafi." +msgstr "Nasconde le intestazioni secondarie dell'intestazione selezionata. La presenza di intestazioni secondarie nascoste è indicata da una linea nera davanti all'intestazione. Per visualizzare le intestazioni di livello inferiore, fare clic sull'icona Mostra sottoparagrafi." #. 49fKD #: 11080000.xhp @@ -5117,7 +5117,7 @@ "par_id3155961\n" "help.text" msgid "Icon Hide Subpoints" -msgstr "Icona Nascondi i sotto-paragrafi" +msgstr "Icona Nascondi i sottoparagrafi" #. YhA3W #: 11080000.xhp @@ -5126,7 +5126,7 @@ "par_id3148489\n" "help.text" msgid "Hide Subpoints" -msgstr "Nascondi i sotto-paragrafi" +msgstr "Nascondi i sottoparagrafi" #. ZBeW9 #: 11090000.xhp @@ -5135,7 +5135,7 @@ "tit\n" "help.text" msgid "Show Subpoints" -msgstr "Mostra sotto-paragrafi" +msgstr "Mostra sottoparagrafi" #. hFhsv #: 11090000.xhp @@ -5144,7 +5144,7 @@ "bm_id3153144\n" "help.text" msgid "subpoints; showingshowing; subpoints" -msgstr "Sotto-paragrafo;mostrareVisualizzazione;sotto-paragrafi" +msgstr "Sottoparagrafo;mostrareMostrare; sottoparagrafi" #. bYKYY #: 11090000.xhp @@ -5153,7 +5153,7 @@ "hd_id3153144\n" "help.text" msgid "Show Subpoints" -msgstr "Mostra sotto-paragrafi" +msgstr "Mostra sottoparagrafi" #. raCNx #: 11090000.xhp @@ -5162,7 +5162,7 @@ "par_id3154510\n" "help.text" msgid "Displays the hidden subheadings of a selected heading. To hide the subheadings of a selected heading, click Hide Subpoints icon." -msgstr "Mostra le intestazioni secondarie nascoste dell'intestazione selezionata. Per nascondere le intestazioni secondarie di un'intestazione selezionata, fate clic sull'icona Nascondi i sotto-paragrafi." +msgstr "Mostra le intestazioni secondarie nascoste dell'intestazione selezionata. Per nascondere le intestazioni secondarie di un'intestazione selezionata, fate clic sull'icona Nascondi i sottoparagrafi." #. a3dwN #: 11090000.xhp @@ -5171,7 +5171,7 @@ "par_id3155959\n" "help.text" msgid "Icon Show Subpoints" -msgstr "Icona Mostra sotto-paragrafi" +msgstr "Icona Mostra sottoparagrafi" #. CYjYo #: 11090000.xhp @@ -5180,7 +5180,7 @@ "par_id3146314\n" "help.text" msgid "Show Subpoints" -msgstr "Mostra sotto-paragrafi" +msgstr "Mostra sottoparagrafi" #. a7gEB #: 11100000.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/04.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/04.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/04.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/04.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: libreoffice\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 18:09+0100\n" -"PO-Revision-Date: 2021-08-08 17:10+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563483822.000000\n" #. mYCYv @@ -1832,7 +1832,7 @@ "tit\n" "help.text" msgid "Presenter Console Keyboard Shortcuts" -msgstr "Tasti di scelta rapida di Presenter Console" +msgstr "Tasti di scelta rapida della Console del relatore" #. 7nDJu #: presenter.xhp @@ -1841,7 +1841,7 @@ "bm_id0921200912285678\n" "help.text" msgid "Presenter Console shortcuts" -msgstr "Presenter Console, tasti di scelta rapida" +msgstr "Console del relatore, tasti di scelta rapida" #. wYw58 #: presenter.xhp @@ -1850,7 +1850,7 @@ "hd_id0921201912165661\n" "help.text" msgid "Presenter Console Keyboard Shortcuts" -msgstr "Tasti di scelta rapida di Presenter Console" +msgstr "Tasti di scelta rapida della Console del relatore" #. 7Qknz #: presenter.xhp @@ -1859,7 +1859,7 @@ "par_id0921201912165656\n" "help.text" msgid "When running a slide show using the Presenter Console, you can use the following keys:" -msgstr "Quando avviate una presentazione tramite Presenter Console potete utilizzare i seguenti tasti:" +msgstr "Quando avviate una presentazione tramite la Console del relatore potete utilizzare i seguenti tasti:" #. upQFL #: presenter.xhp @@ -2120,7 +2120,7 @@ "par_id0921200901104566\n" "help.text" msgid "Show the Presenter Console" -msgstr "Mostra la Presenter Console" +msgstr "Mostra la Console del relatore" #. Rb4AZ #: presenter.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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: 2021-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-01-22 19:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563483927.000000\n" #. S83CC @@ -617,7 +617,7 @@ "par_id3148826123\n" "help.text" msgid "On Slide Pane an icon appears next to the preview of those slides, which have one or more objects with custom animation. When you present the slide show with the Presenter Console, icon indicates that the next slide has custom animation." -msgstr "Nel pannello Diapositive, un'icona appare vicino all'anteprima di tali diapositive, che contengono uno o più oggetti con animazione personalizzata. Se mostrate la presentazione tramite la Presenter Console, l'icona indica che la diapositiva successiva contiene un'animazione personalizzata." +msgstr "Nel pannello Diapositive, un'icona appare vicino all'anteprima di tali diapositive, che contengono uno o più oggetti con animazione personalizzata. Se mostrate la presentazione tramite la Console del relatore, l'icona indica che la diapositiva successiva contiene un'animazione personalizzata." #. Dd9pi #: animated_objects.xhp @@ -797,7 +797,7 @@ "par_id3148826234\n" "help.text" msgid "On Slide Pane an icon appears next to the preview of those slides, which have slide transition. When you present the slide show with the Presenter Console, icon indicates that the next slide has slide transition." -msgstr "Nel pannello Diapositive, un'icona appare vicino all'anteprima di tali diapositive, che contengono una transizione. Se mostrate la presentazione tramite la Presenter Console, l'icona indica che la diapositiva successiva contiene una transizione." +msgstr "Nel pannello Diapositive, un'icona appare vicino all'anteprima di tali diapositive, che contengono una transizione. Se mostrate la presentazione tramite la Console del relatore, l'icona indica che la diapositiva successiva contiene una transizione." #. c3Czx #: animated_slidechange.xhp @@ -2444,7 +2444,7 @@ "par_id631512838846263\n" "help.text" msgid "The Presenter Console" -msgstr "La Presenter Console" +msgstr "La Console del relatore" #. ztdND #: individual.xhp @@ -4757,7 +4757,7 @@ "tit\n" "help.text" msgid "Using the Presenter Console" -msgstr "Usare la Presenter Console" +msgstr "Usare la Console del relatore" #. AaT4t #: presenter_console.xhp @@ -4766,7 +4766,7 @@ "hd_id190820172252141064\n" "help.text" msgid "Using the Presenter Console" -msgstr "Usare la Presenter Console" +msgstr "Usare la Console del relatore" #. BBPMC #: presenter_console.xhp @@ -4775,7 +4775,7 @@ "par_id190820172252291885\n" "help.text" msgid "The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen." -msgstr "La Presenter Console mostra la presentazione su uno schermo esterno (un proiettore o un grande monitor), mentre sul video del computer compaiono i comandi per controllarla." +msgstr "La Console del relatore mostra la presentazione su uno schermo esterno (un proiettore o un grande monitor), mentre sul video del computer compaiono i comandi per controllarla." #. p2PGF #: presenter_console.xhp @@ -4784,7 +4784,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 "La Presenter Console fornisce controlli aggiuntivi della presentazione mostrando due visualizzazioni diverse sul vostro computer e sullo schermo per il pubblico. La visualizzazione sul vostro schermo include la diapositiva corrente, quella successiva, facoltativamente le note, e un timer della presentazione." +msgstr "La Console del relatore fornisce controlli aggiuntivi della presentazione mostrando due visualizzazioni diverse sul vostro computer e sullo schermo per il pubblico. La visualizzazione sul vostro schermo include la diapositiva corrente, quella successiva, facoltativamente le note, e un timer della presentazione." #. wz2dB #: presenter_console.xhp @@ -4793,7 +4793,7 @@ "par_id91512579485395\n" "help.text" msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)." -msgstr "La Presenter Console funziona solo con sistemi operativi che supportano schemi multipli e solo quando due schermi sono collegati tra loro (uno potrebbe essere lo schermo del computer portatile)." +msgstr "La Console del relatore funziona solo con sistemi operativi che supportano schemi multipli e solo quando due schermi sono collegati tra loro (uno potrebbe essere lo schermo del computer portatile)." #. BpyKy #: presenter_console.xhp @@ -4802,7 +4802,7 @@ "hd_id391512577186778\n" "help.text" msgid "Presenter console activation" -msgstr "Attivazione della Presenter Console" +msgstr "Attivazione della Console del relatore" #. cGATE #: presenter_console.xhp @@ -4811,7 +4811,7 @@ "par_id21512577205388\n" "help.text" msgid "To enable the Presenter Console:" -msgstr "Per abilitare la Presenter console:" +msgstr "Per abilitare la Console del relatore:" #. 5rxMR #: presenter_console.xhp @@ -4829,7 +4829,7 @@ "par_id411512577389978\n" "help.text" msgid "Select Enable Presenter Console in the Presentation area." -msgstr "Selezionate Abilita la Presenter Console nella sezione Presentazione." +msgstr "Selezionate Attiva la Console del relatore nella sezione Presentazione." #. uvjdu #: presenter_console.xhp @@ -4838,7 +4838,7 @@ "par_id371512836579028\n" "help.text" msgid "To activate the Presenter Console:" -msgstr "Per attivare la Presenter Console:" +msgstr "Per attivare la Console del relatore:" #. efYXk #: presenter_console.xhp @@ -4847,7 +4847,7 @@ "par_id101512577717469\n" "help.text" msgid "Connect an auxiliary display to your computer," -msgstr "Collegate al computer un schermo ausiliario," +msgstr "Collegate al computer uno schermo ausiliario," #. nVBX5 #: presenter_console.xhp @@ -4865,7 +4865,7 @@ "hd_id911512577777440\n" "help.text" msgid "Presenter console controls" -msgstr "Controlli della Presenter Console" +msgstr "Controlli della Console del relatore" #. gqJpQ #: presenter_console.xhp @@ -4874,7 +4874,7 @@ "par_id721512827886185\n" "help.text" msgid "Presenter Console Controls" -msgstr "Controlli della Presenter Console" +msgstr "Controlli della Console del relatore" #. 3ojGd #: presenter_console.xhp @@ -4901,7 +4901,7 @@ "par_id981512828129990\n" "help.text" msgid "Notes: display the Presenter Console Notes mode." -msgstr "Note: mostra il modo Note della Presenter Console." +msgstr "Note: mostra il modo Note della Console del relatore." #. Ym6Ja #: presenter_console.xhp @@ -4910,7 +4910,7 @@ "par_id101512828220096\n" "help.text" msgid "Slide: display the Presenter Console Slide sorter mode." -msgstr "Diapositive: mostra il modo Ordine diapositive della Presenter Console." +msgstr "Diapositive: mostra il modo Ordine diapositive della Console del relatore." #. nFMaF #: presenter_console.xhp @@ -4946,7 +4946,7 @@ "hd_id281512836182615\n" "help.text" msgid "Presenter Console Keyboard Shortcuts" -msgstr "Tasti di scelta rapida della Presenter Console" +msgstr "Tasti di scelta rapida della Console del relatore" #. a38t5 #: presenter_console.xhp @@ -4955,7 +4955,7 @@ "hd_id791512827206666\n" "help.text" msgid "Presenter Console modes" -msgstr "Modi della Presenter Console" +msgstr "Modi della Console del relatore" #. yVhhn #: presenter_console.xhp @@ -4982,7 +4982,7 @@ "par_id311512825411947\n" "help.text" msgid "Presenter console normal mode" -msgstr "Modo normale della Presenter Console" +msgstr "Modo normale della Console del relatore" #. bkgnr #: presenter_console.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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: 2021-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-01-24 12:46+0000\n" -"Last-Translator: Elisabetta Manuele \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: Valter Mura \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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564773315.000000\n" #. E9tti @@ -2471,7 +2471,7 @@ "par_id3151364\n" "help.text" msgid "Space Columns Equally" -msgstr "Distribuisci colonne uniformemente" +msgstr "Distribuisci uniformemente colonne" #. zEgss #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/it/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-01-31 19:38+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1564771908.000000\n" @@ -510,7 +510,7 @@ "par_id3149804\n" "help.text" msgid "Enter the extent of the outline levels to be copied to the new document. For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in Subpoints per Level." -msgstr "Indicare il numero dei livelli da copiare nel nuovo documento. Se ad esempio selezionate 4 livelli verranno trasferiti i paragrafi formattati con le intestazioni da 1 a 4, e per ognuno di questi i successivi paragrafi nel campo Paragrafi per capitolo." +msgstr "Indicare il numero dei livelli da copiare nel nuovo documento. Se ad esempio selezionate 4 livelli verranno trasferiti i paragrafi formattati con le intestazioni da 1 a 4, e per ognuno di questi i successivi paragrafi nel campo Sottoparagrafi per capitolo." #. YaC9i #: 01160300.xhp @@ -519,7 +519,7 @@ "hd_id3151316\n" "help.text" msgid "Subpoints per Level" -msgstr "Paragrafi per capitolo" +msgstr "Sottoparagrafi per capitolo" #. G8e7a #: 01160300.xhp @@ -582,7 +582,7 @@ "hd_id3154478\n" "help.text" msgid "Subpoints per Level" -msgstr "Paragrafi per capitolo" +msgstr "Sottoparagrafi per capitolo" #. ok5os #: 01160400.xhp diff -Nru libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" -"Last-Translator: Valter Mura \n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: Italian \n" "Language: it\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564768553.000000\n" #. W5ukN @@ -2824,7 +2824,7 @@ "Label\n" "value.text" msgid "~Insert Named Range or Expression..." -msgstr "~Inserisci area con nome o espressione..." +msgstr "~Inserisci area o espressione con nome..." #. FyB4n #: CalcCommands.xcu @@ -2834,7 +2834,7 @@ "ContextLabel\n" "value.text" msgid "~Named Range or Expression..." -msgstr "Area con ~nome o espressione..." +msgstr "Area o espressione con ~nome..." #. N5F33 #: CalcCommands.xcu @@ -4254,7 +4254,7 @@ "Label\n" "value.text" msgid "~Named Ranges and Expressions" -msgstr "Aree con ~nome ed espressioni" +msgstr "Aree ed espressioni con ~nome" #. BFRiL #: CalcCommands.xcu @@ -21166,7 +21166,7 @@ "Label\n" "value.text" msgid "Hide Subpoints" -msgstr "Nascondi i sotto-paragrafi" +msgstr "Nascondi i sottoparagrafi" #. F3rQp #: GenericCommands.xcu @@ -21186,7 +21186,7 @@ "Label\n" "value.text" msgid "Show Subpoints" -msgstr "Mostra i sotto-paragrafi" +msgstr "Mostra i sottoparagrafi" #. UNMEA #: GenericCommands.xcu @@ -21346,7 +21346,7 @@ "Label\n" "value.text" msgid "St~yles" -msgstr "St~ili" +msgstr "~Stili" #. 7NEEL #: GenericCommands.xcu @@ -23736,7 +23736,7 @@ "TooltipLabel\n" "value.text" msgid "Auto-Redact Document" -msgstr "Oscura in automatico il documento" +msgstr "Oscura automaticamente il documento" #. zvurM #: GenericCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice/Office.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice/Office.po 2022-07-15 19:12:51.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: 2021-02-05 18:59+0100\n" -"PO-Revision-Date: 2021-07-28 09:58+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563043614.000000\n" #. HhMVS @@ -2124,7 +2124,7 @@ "Right\n" "value.text" msgid "Shows the Presenter Console" -msgstr "Mostra la Presenter Console" +msgstr "Mostra la Console del relatore" #. F3M5L #: PresenterScreen.xcu @@ -2274,7 +2274,7 @@ "String\n" "value.text" msgid "Presenter Console" -msgstr "Presenter Console" +msgstr "Console del relatore" #. Cw6nE #: PresenterScreen.xcu diff -Nru libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice.po libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice.po --- libreoffice-7.3.4/translations/source/it/officecfg/registry/data/org/openoffice.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/officecfg/registry/data/org/openoffice.po 2022-07-15 19:12:51.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: 2018-05-01 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1525166280.000000\n" #. foAxC @@ -24,7 +24,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Database Form" -msgstr "Base: Modulo database" +msgstr "Base: Formulario database" #. YAxMS #: Setup.xcu diff -Nru libreoffice-7.3.4/translations/source/it/sc/messages.po libreoffice-7.3.5/translations/source/it/sc/messages.po --- libreoffice-7.3.4/translations/source/it/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-27 17:40+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564768644.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Visualizza" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Imm_agine" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Imma~gine" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "D_isegna" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Disegna" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Oggetto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Oggetto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Stampa" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Stampa" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Formu_lario" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Formu~lario" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stensione" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stensione" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "S_trumenti" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Strumenti" @@ -25702,139 +25702,139 @@ msgstr "Imm_agine" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Disponi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olore" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Griglia" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Lingua" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisione" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Commenti" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Con_fronta" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Visualizza" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "D_isegna" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Modifica" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Disponi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Visualizza" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Raggru_ppa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Carattere" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Allineamento" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Visualizza" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inserisci" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Co_rnice" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Disponi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Griglia" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Visualizza" diff -Nru libreoffice-7.3.4/translations/source/it/sd/messages.po libreoffice-7.3.5/translations/source/it/sd/messages.po --- libreoffice-7.3.4/translations/source/it/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-01-05 19:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564768685.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabella" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Immagine" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Imma~gine" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_isegna" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Disegno" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Oggetto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Oggetto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulario" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulario" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Schema" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Sche~ma" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stensione" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stensione" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "S_trumenti" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "S~trumenti" @@ -7062,109 +7062,109 @@ msgstr "~Tabella" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Immagine" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Imma~gine" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "D_isegna" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Disegna" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Oggetto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Oggetto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulario" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulario" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Schema" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Sche~ma" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stensione" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stensione" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "St_rumenti" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "S~trumenti" @@ -7886,13 +7886,13 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:110 msgctxt "optimpressgeneralpage|enprsntcons" msgid "Enable Presenter Console" -msgstr "Abilita la Presenter Console" +msgstr "Attiva la Console del relatore" #. dAFGz #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:118 msgctxt "extended_tip|enprsntcons" msgid "Specifies that you want to enable the Presenter Console during slideshows." -msgstr "Abilita la Presenter Console durante le presentazioni." +msgstr "Specifica se attivare la Console del relatore durante le presentazioni." #. qimBE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:129 diff -Nru libreoffice-7.3.4/translations/source/it/sfx2/messages.po libreoffice-7.3.5/translations/source/it/sfx2/messages.po --- libreoffice-7.3.4/translations/source/it/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564768694.000000\n" #. bHbFE @@ -68,7 +68,7 @@ #: include/sfx2/strings.hrc:33 msgctxt "STR_RESET_DEFAULT" msgid "Reset De~fault" -msgstr "Azzera prede~finito" +msgstr "Ripristina prede~finito" #. oRvm4 #: include/sfx2/strings.hrc:34 @@ -1005,7 +1005,7 @@ #: include/sfx2/strings.hrc:179 msgctxt "STR_MODULENOTINSTALLED" msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed." -msgstr "Impossibile eseguire l'azione. Il modulo di programma di %PRODUCTNAME necessario per l'azione non è attualmente installato." +msgstr "Impossibile eseguire l'azione. Il modulo del programma di %PRODUCTNAME necessario per l'azione non è attualmente installato." #. TXAV5 #: include/sfx2/strings.hrc:181 diff -Nru libreoffice-7.3.4/translations/source/it/svtools/messages.po libreoffice-7.3.5/translations/source/it/svtools/messages.po --- libreoffice-7.3.4/translations/source/it/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-01-05 19:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564773529.000000\n" #. fLdeV @@ -1814,7 +1814,7 @@ #: svtools/inc/borderline.hrc:19 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Dotted" -msgstr "Punto" +msgstr "Punteggiato" #. Bucas #: svtools/inc/borderline.hrc:20 diff -Nru libreoffice-7.3.4/translations/source/it/svx/messages.po libreoffice-7.3.5/translations/source/it/svx/messages.po --- libreoffice-7.3.4/translations/source/it/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-01-05 19:38+0000\n" -"Last-Translator: Elisabetta Manuele \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: Valter Mura \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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564768774.000000\n" #. 3GkZj @@ -5578,14 +5578,14 @@ #: include/svx/strings.hrc:999 msgctxt "RID_SVXSTR_LEND29" msgid "CF Many One" -msgstr "Molti uno" +msgstr "CF Uno o molti" #. JzCsB #. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation #: include/svx/strings.hrc:1001 msgctxt "RID_SVXSTR_LEND30" msgid "CF Zero One" -msgstr "Zero uno" +msgstr "CF Zero o uno" #. SBCut #. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation @@ -9911,7 +9911,7 @@ #: include/svx/strings.hrc:1764 msgctxt "RID_SUBSETMAP" msgid "Znamenny Musical Notation" -msgstr "Notazione musicale Znamenny" +msgstr "Notazione musicale “Znamenny”" #. BGGvD #: include/svx/strings.hrc:1766 @@ -11188,14 +11188,14 @@ #: svx/inc/numberingtype.hrc:57 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "Α, Β, Γ, ... (Greek)" -msgstr "Α, Β, Γ, ... (greco)" +msgstr "Α, Β, Γ, ... (greco maiuscolo)" #. CMFjw #. CHARS_GREEK_LOWER_LETTER #: svx/inc/numberingtype.hrc:58 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "α, β, γ, ... (Greek)" -msgstr "α, β, γ, ... (greco)" +msgstr "α, β, γ, ... (greco minuscolo)" #. 8Cxkk #. NUMBER_HEBREW diff -Nru libreoffice-7.3.4/translations/source/it/sw/messages.po libreoffice-7.3.5/translations/source/it/sw/messages.po --- libreoffice-7.3.4/translations/source/it/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-01-23 17:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+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" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564337991.000000\n" #. v3oJv @@ -7617,7 +7617,7 @@ #: sw/inc/strings.hrc:979 msgctxt "FLD_PAGEREF_ON" msgid "on" -msgstr "on" +msgstr "attivo" #. diGwR #. -------------------------------------------------------------------- @@ -9027,7 +9027,7 @@ #: sw/inc/strings.hrc:1246 msgctxt "STR_REDLINE_INSERT_MOVED" msgid "Moved (insertion)" -msgstr "Spostato ( per inserimento)" +msgstr "Spostato (per inserimento)" #. o39AA #: sw/inc/strings.hrc:1247 @@ -10388,7 +10388,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291 msgctxt "asciifilterdialog|extended_tip|includebom" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." -msgstr "Solo per l'insieme di caratteri Unicode, un indicatore di ordine dei byte (BOM) è una sequenza di byte che indica la codifica Unicode di un file di testo." +msgstr "Solo per l'insieme dei caratteri Unicode, un indicatore di ordine dei byte (BOM) è una sequenza di byte che indica la codifica Unicode di un file di testo." #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309 @@ -10499,19 +10499,19 @@ msgstr "Sposta lo stile di paragrafo selezionato un livello più in basso nella gerarchia dell'indice." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stile" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stili" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Permette di creare le voci di indice da specifici stili di paragrafo." @@ -10904,7 +10904,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:103 msgctxt "autotext|extended_tip|edit" msgid "Opens the selected AutoText entry for editing in a separate document. Make the changes that you want, choose File - Save AutoText, and then choose File - Close." -msgstr "Apre il testo automatico selezionato in un documento separato per consentire di modificarlo. Apportate le modifiche desiderate, scegliere File - Salva modulo di testo e quindi File - Chiudi." +msgstr "Apre il testo automatico selezionato in un documento separato per consentire di modificarlo. Apporta le modifiche desiderate, scegli File - Salva modulo di testo e quindi File - Chiudi." #. Kg5xa #: sw/uiconfig/swriter/ui/autotext.ui:118 @@ -10946,7 +10946,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:186 msgctxt "autotext|extended_tip|autotext" msgid "Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document." -msgstr "Fare clic qui per visualizzare altri comandi per il testo automatico, ad esempio il comando per creare una nuova voce di testo automatico da un testo selezionato nel documento attivo." +msgstr "Fai clic qui per visualizzare altri comandi per il testo automatico, ad esempio il comando per creare una nuova voce di testo automatico da un testo selezionato nel documento attivo." #. hXXv3 #: sw/uiconfig/swriter/ui/autotext.ui:198 @@ -12230,13 +12230,13 @@ #: sw/uiconfig/swriter/ui/columnwidth.ui:135 msgctxt "columnwidth|extended_tip|column" msgid "Enter the column number of the column you want to change the width of." -msgstr "Specificare il numero della colonna di cui si vuole modificare la larghezza." +msgstr "Specifica il numero della colonna di cui vuoi modificare la larghezza." #. mATJY #: sw/uiconfig/swriter/ui/columnwidth.ui:153 msgctxt "columnwidth|extended_tip|width" msgid "Enter the width that you want for the selected column(s)." -msgstr "Digitare la larghezza desiderata per le colonne selezionate." +msgstr "Digita la larghezza desiderata per le colonne selezionate." #. A9Zr4 #: sw/uiconfig/swriter/ui/columnwidth.ui:168 @@ -13955,37 +13955,37 @@ msgstr "Scambia database" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definisci" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Database in uso" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Database _disponibili" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Sfoglia..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Apre una finestra di dialogo da cui si può selezionare un file di database (*.odb). Il file selezionato è aggiunto all'elenco dei database disponibili." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Usa il pulsante Sfoglia per selezionare un file di database." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Elenca i database attualmente in uso." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Elenca i database attualmente registrati in %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Scambia database" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database applicato a documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Permette di cambiare le sorgenti di dati per il documento attivo." @@ -14562,7 +14562,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:180 msgctxt "fldrefpage|label3" msgid "_Refer using:" -msgstr "_Riferimento tramite:" +msgstr "_Riferimento con:" #. bjLoy #: sw/uiconfig/swriter/ui/fldrefpage.ui:225 @@ -15132,7 +15132,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:161 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 "Inserire il numero per la prima nota a piè di pagina del documento. Questa opzione è disponibile solo selezionando \"Per documento\" nella casella Conteggio." +msgstr "Inserisci il numero per la prima nota a piè di pagina del documento. Questa opzione è disponibile solo selezionando \"Per documento\" nella casella \"Conteggio\"." #. RWgzD #: sw/uiconfig/swriter/ui/footnotepage.ui:175 @@ -15156,19 +15156,19 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:181 msgctxt "footnotepage|extended_tip|countinglb" msgid "Select the numbering option for the footnotes." -msgstr "Selezionare l'opzione di numerazione per le note a piè di pagina." +msgstr "Seleziona l'opzione di numerazione per le note a piè di pagina." #. 7GqFA #: sw/uiconfig/swriter/ui/footnotepage.ui:198 msgctxt "footnotepage|extended_tip|prefix" msgid "Enter the text that you want to display in front of the footnote number in the note text." -msgstr "Inserire il testo da visualizzare davanti al numero della nota a piè di pagina nel testo della nota." +msgstr "Inserisci il testo da visualizzare davanti al numero della nota a piè di pagina nel testo della nota." #. 7rE4w #: sw/uiconfig/swriter/ui/footnotepage.ui:215 msgctxt "footnotepage|extended_tip|suffix" msgid "Enter the text that you want to display after the footnote number in the note text." -msgstr "Inserire il testo da visualizzare dopo il numero della nota a piè di pagina nel testo della nota." +msgstr "Inserisci il testo da visualizzare dopo il numero della nota a piè di pagina nel testo della nota." #. YAUrj #: sw/uiconfig/swriter/ui/footnotepage.ui:230 @@ -15882,7 +15882,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:407 msgctxt "frmaddpage|extended_tip|editinreadonly" msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)." -msgstr "Permette di modificare il contenuto di un frame in un documento di sola lettura (protetto in scrittura)." +msgstr "Permette di modificare il contenuto di una cornice in un documento di sola lettura (protetto da scrittura)." #. vmiHE #: sw/uiconfig/swriter/ui/frmaddpage.ui:419 @@ -20073,109 +20073,109 @@ msgstr "Usa il _documento attivo" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utilizza il documento di Writer selezionato come base per la stampa in serie." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crea un nuo_vo documento" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Crea un nuovo documento di Writer da utilizzare per la stampa in serie." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Inizia dal documento _esistente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Selezionare un documento di Writer esistente da usare come base per la stampa in serie." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Inizia da un _modello" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selezionare il modello da utilizzare per la creazione della stampa in serie." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Inizia da un documento salvato _recentemente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "È possibile usare un documento già esistente come base per una nuova stampa in serie." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selezionare il documento." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Sfoglia..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Individuare il documento di Writer da utilizzare e fare clic su Apri." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Sfoglia..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Apre una finestra di dialogo per la selezione del modello." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "L'origine dati del documento corrente non è registrata. Effettua uno scambio del database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Scambia database..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleziona il documento iniziale per la stampa in serie" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Specificate il documento da utilizzare come base per la stampa in serie." @@ -22318,49 +22318,49 @@ msgstr "Oggetto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opzioni" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Scorrimento" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Collegamento ipertestuale" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordi" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Trasparenza" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -23025,7 +23025,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:437 msgctxt "optformataidspage|fillmargin" msgid "Paragraph alignment" -msgstr "Allineamento del paragrafo" +msgstr "Allineamento paragrafo" #. zGjgi #: sw/uiconfig/swriter/ui/optformataidspage.ui:458 @@ -27056,7 +27056,7 @@ msgstr "Aggiorna" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Visualizza le statistiche relative al file." @@ -27923,7 +27923,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:24 msgctxt "testmailsettings|stop" msgid "_Stop" -msgstr "_Stop" +msgstr "_Ferma" #. pBore #: sw/uiconfig/swriter/ui/testmailsettings.ui:33 @@ -28247,7 +28247,7 @@ #: sw/uiconfig/swriter/ui/tocdialog.ui:8 msgctxt "tocdialog|TocDialog" msgid "Table of Contents, Index or Bibliography" -msgstr "Indice generale, indice o bibliografia" +msgstr "Indice generale, indice analitico o bibliografia" #. 49G83 #: sw/uiconfig/swriter/ui/tocdialog.ui:86 diff -Nru libreoffice-7.3.4/translations/source/it/vcl/messages.po libreoffice-7.3.5/translations/source/it/vcl/messages.po --- libreoffice-7.3.4/translations/source/it/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/it/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-01-05 19:38+0000\n" "Last-Translator: Paolo Pelloni \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563226053.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Stampa più pagine per foglio." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizzato" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleziona quante pagine stampare per foglio." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pagine:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleziona il numero di righe." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "da" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Seleziona il numero di colonne." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margine:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Seleziona il margine tra le singole pagine su ciascun foglio di carta." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "tra le pagine" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distanza:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Seleziona il margine tra le pagine stampate e il bordo del foglio." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "a bordo pagina" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordine:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Da sinistra a destra, poi in basso" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Dall'alto in basso, poi a destra" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Dall'alto in basso, poi a sinistra" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Da destra a sinistra, poi in basso" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleziona l'ordine in cui le pagine devono essere stampate." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Traccia un bordo attorno a ogni pagina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Spunta l'opzione per disegnare un bordo intorno a ogni pagina." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Dépliant" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Seleziona per stampare il documento in formato dépliant." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Anteprima fascicolatura" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "È possibile cambiare la disposizione delle pagine da stampare in ogni foglio. L'anteprima mostra come appariranno i fogli." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Altr_o" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Layout di pagina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Generale" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Stampa il documento attivo, la selezione o le pagine specificate. È inoltre possibile impostare le opzioni di stampa per il documento attivo." diff -Nru libreoffice-7.3.4/translations/source/ja/chart2/messages.po libreoffice-7.3.5/translations/source/ja/chart2/messages.po --- libreoffice-7.3.4/translations/source/ja/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: JO3EMC \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1560941067.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "縦棒と折れ線グラフの線の数を設定します。" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "基本的なグラフの種類を選択します。" diff -Nru libreoffice-7.3.4/translations/source/ja/cui/messages.po libreoffice-7.3.5/translations/source/ja/cui/messages.po --- libreoffice-7.3.4/translations/source/ja/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: jun meguro \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563975021.000000\n" #. GyY9M @@ -9876,7 +9876,7 @@ #: cui/uiconfig/ui/graphictestentry.ui:31 msgctxt "graphictestentry|gptestbutton" msgid "button" -msgstr "" +msgstr "ボタン" #. 26WXC #: cui/uiconfig/ui/hangulhanjaadddialog.ui:8 @@ -16329,7 +16329,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:122 msgctxt "extended_tip|cert" msgid "Opens the Certificate Path dialog." -msgstr "" +msgstr "[証明書パス]ダイアログを開きます。" #. UCYi2 #: cui/uiconfig/ui/optsecuritypage.ui:137 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "自動" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High Contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "ツールバーやダイアログに表示されるアイコンのスタイルを指定します。" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "アイコンスタイル(_T):" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "拡張機能サイトからアイコンテーマを追加する" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "アイコンスタイル" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "再起動が必要です" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "ハードウェアアクセラレーションの使用(_W)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "グラフィカルディスプレイアダプタのハードウェア機能に直接アクセスし、画面表示を向上させます。" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "アンチエイリアシングを使用(_L)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "サポートされている場合、グラフィックスのアンチエイリアシングを有効、または無効にすることができます。アンチエイリアシングを有効にすると、ほとんどのグラフィックオブジェクトは、アーティファクトが減少しより滑らかな感じに見えます。" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "すべてのレンダリングにSkiaを使用" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skiaソフトウェアレンダリングを強制的に使用する" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "再起動が必要です。これを有効にするとグラフィックドライバーを使用しません。" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skiaは現在有効です。" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skiaは現在無効です。" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "グラフィック出力" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "フォントのプレビューを表示(_R)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "書式設定バーのフォントボックス内フォントなどに、対応している選択可能なフォントを表示します。" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "表示フォントにアンチエイリアシングをかける(_G)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "画面のテキストをなめらかに表示したい場合に選択します。" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "最小サイズ(_M):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "フォントリスト" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "グラフィックテストの実行" @@ -18402,7 +18378,7 @@ #: cui/uiconfig/ui/positionsizedialog.ui:282 msgctxt "positionsizedialog|RID_SVXPAGE_SLANT" msgid "Slant & Corner Radius" -msgstr "傾斜角度 / 角の半径" +msgstr "傾斜角度と角の半径" #. kSZwJ #: cui/uiconfig/ui/possizetabpage.ui:58 @@ -21850,7 +21826,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:19 msgctxt "zoomdialog|ZoomDialog" msgid "Zoom & View Layout" -msgstr "ズーム / 表示レイアウト" +msgstr "ズームと表示レイアウト" #. JSuui #: cui/uiconfig/ui/zoomdialog.ui:108 diff -Nru libreoffice-7.3.4/translations/source/ja/dbaccess/messages.po libreoffice-7.3.5/translations/source/ja/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ja/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: JO3EMC \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1561811264.000000\n" #. BiN6g @@ -1935,7 +1935,7 @@ #: dbaccess/inc/strings.hrc:339 msgctxt "STR_COMMONURL" msgid "Enter the DBMS/driver-specific connection string here" -msgstr "" +msgstr "ここにDBMSまたはドライバー固有の接続文字列を入力します" #. rKH3t #: dbaccess/inc/strings.hrc:340 @@ -3395,73 +3395,73 @@ msgstr "新規データベースの作成(_E)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "埋め込みデータベース(_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "既存のデータベースファイルを開く(_F)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "最近使用されたもの(_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "開く" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "既存のデータベースに接続(_X)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "この設定ではHSQLDBおよびFirebirdが利用できないため、新しいデータベースを作成することはできません。" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ja/extensions/messages.po libreoffice-7.3.5/translations/source/ja/extensions/messages.po --- libreoffice-7.3.4/translations/source/ja/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: JO3EMC \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565257803.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "フォームの更新" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart(マルチパート)" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "テキスト" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "標準(短い)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "標準(短い YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "標準(短い YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "標準(長い)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "未選択" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "選択" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "未定義" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "すべてのレコード" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "有効なレコード" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "現在のページ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "いいえ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "はい" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "親フォーム" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "なし" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "1個だけ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "複数" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "範囲" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "水平" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "垂直" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "デフォルト" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "キャンセル" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ヘルプ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "選択した項目" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "選択した項目の位置" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "1行" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "複数行" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "フォーマット付きの複数行" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Microsoft Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "なし" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "水平" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "垂直" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "両方" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "フラット" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "左上" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "左中央" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "左下" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "右上" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "右中央" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "右下" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "上左" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "上中央" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "上右" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "下左" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "下中央" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "下右" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "中央" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "保存" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "置換" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "折りたたむ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "いいえ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "比率を保つ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "サイズに合わせる" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "左から右へ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "右から左へ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "上位レベルのオブジェクト設定を使用" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "しない" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "フォーカスがあるとき" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "常に" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "段落に" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "文字として" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ページに" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "フレームに" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "文字に" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ページに" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "セルに" diff -Nru libreoffice-7.3.4/translations/source/ja/fpicker/messages.po libreoffice-7.3.5/translations/source/ja/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ja/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-01-23 08:03+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"Last-Translator: JO3EMC \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -216,55 +216,55 @@ msgstr "編集された日付" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "開く(_O)" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "再生(_P)" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ファイル名(_N):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ファイルの種類(_T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "読み取り専用(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "パスワード付きで保存する" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ファイル名に拡張子を付ける(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "フィルター設定を編集する(_F)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG キーで暗号化する" diff -Nru libreoffice-7.3.4/translations/source/ja/sc/messages.po libreoffice-7.3.5/translations/source/ja/sc/messages.po --- libreoffice-7.3.4/translations/source/ja/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: jun meguro \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563888415.000000\n" #. kBovX @@ -22015,7 +22015,7 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:29 msgctxt "deletecolumnentry|name" msgid "Delete Columns" -msgstr "" +msgstr "列の削除" #. QFtCG #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:46 @@ -25250,97 +25250,97 @@ msgstr "表示(~V)" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "画像(_A)" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "画像(~G)" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "図形(_R)" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "図形(~D)" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "オブジェクト" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "オブジェクト(~O)" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "メディア(_M)" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "メディア(~M)" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "印刷" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "印刷(~P)" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "フォーム(_R)" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "フォーム(~R)" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "拡張機能(_X)" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "拡張機能(~X)" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "ツール(_T)" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "ツール(~T)" @@ -25699,139 +25699,139 @@ msgstr "画像(_A)" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "配置(_A)" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "色(_O)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "グリッド線(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "言語(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "レビュー(_R)" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "コメント(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "比較(_P)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "表示(_V)" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "図形描画(_R)" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "編集(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "配置(_A)" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "表示(_V)" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "グループ化(_P)" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "フォント(_O)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "整列(_A)" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "表示(_V)" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "挿入(_I)" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "メディア(_M)" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "枠(_R)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "配置(_A)" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "グリッド線(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "表示(_V)" diff -Nru libreoffice-7.3.4/translations/source/ja/sd/messages.po libreoffice-7.3.5/translations/source/ja/sd/messages.po --- libreoffice-7.3.4/translations/source/ja/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-18 09:17+0000\n" "Last-Translator: JO3EMC \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562492439.000000\n" #. WDjkB @@ -4172,109 +4172,109 @@ msgstr "表(~T)" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "画像" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "画像(~G)" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "図形描画(_R)" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "図形描画(~D)" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "オブジェクト" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "オブジェクト(~O)" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "メディア(_M)" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "メディア(~M)" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "フォーム(_R)" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "フォーム(~R)" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "マスター(_M)" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "マスター(~M)" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "拡張機能(_X)" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "拡張機能(~X)" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "ツール(_T)" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "ツール(~T)" @@ -7061,109 +7061,109 @@ msgstr "表(~T)" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "画像" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "画像(~G)" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "図形描画(_R)" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "図形描画(~D)" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "オブジェクト" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "オブジェクト(~O)" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "メディア(_M)" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "メディア(~M)" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "フォーム(_R)" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "フォーム(~R)" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "マスター(_M)" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "マスター(~M)" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "拡張機能(_X)" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "拡張機能(~X)" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "ツール(_T)" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "ツール(~T)" diff -Nru libreoffice-7.3.4/translations/source/ja/svx/messages.po libreoffice-7.3.5/translations/source/ja/svx/messages.po --- libreoffice-7.3.4/translations/source/ja/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" -"Last-Translator: So \n" +"PO-Revision-Date: 2022-06-15 20:56+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550994318.000000\n" #. 3GkZj @@ -14471,7 +14471,7 @@ #: svx/uiconfig/ui/depthwindow.ui:151 msgctxt "depthwindow|RID_SVXSTR_CUSTOM" msgid "_Custom..." -msgstr "" +msgstr "カスタム(_C)..." #. sgwXf #: svx/uiconfig/ui/directionwindow.ui:59 diff -Nru libreoffice-7.3.4/translations/source/ja/sw/messages.po libreoffice-7.3.5/translations/source/ja/sw/messages.po --- libreoffice-7.3.4/translations/source/ja/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: JO3EMC \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563165692.000000\n" #. v3oJv @@ -8094,7 +8094,7 @@ #: sw/inc/strings.hrc:1087 msgctxt "STR_BOOKCTRL_HINT_EXTENDED" msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog." -msgstr "" +msgstr "ドキュメントのページ番号(印刷されたドキュメントのページ番号)。クリックして[ページに移動]ダイアログを開きます。" #. EWtd2 #: sw/inc/strings.hrc:1088 @@ -10492,19 +10492,19 @@ msgstr "選択した段落スタイルを、索引の階層で 1 つ下に移動させます。" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "スタイル" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "スタイル" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "特定の段落スタイルを基に、索引の項目を作成します。" @@ -13949,37 +13949,37 @@ msgstr "データベースの交換" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "指定" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "使用されているデータベース" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "使用できるデータベース(_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "検索..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "データベースファイル (*.odb) の選択用ダイアログを開きます。選択したファイルは、使用できるデータベースのリストに追加されます。" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13989,31 +13989,31 @@ "[検索]ボタンを使用して、データベースファイルを選択してください。" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "現在使用中のデータベースが一覧表示されます。" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "%PRODUCTNAMEに登録されたデータベースのリストを表示します。" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "データベースの交換" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ドキュメントに適用されたデータベース:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "ドキュメントの使用するデータベースを、他のデータベースに交換します。" @@ -20070,109 +20070,109 @@ msgstr "現在の文書を使用(_D)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "現在使用しているWriter文書を差し込み印刷用文書に使用します。" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "新規文書を作成(_W)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "差し込み印刷用に使用する新しいWriter文書を作成します。" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "既存の文書から始める(_E)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "差し込み印刷用文書として使用する既存の文書を選択します。" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "テンプレートから始める(_E)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "差し込み印刷用文書に使用するテンプレートを選択します。" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "最近保存した差し込み印刷用文書から始める(_M)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "既存の差し込み印刷用文書を新しい差し込み印刷用文書として使用します。" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "文書を選択します。" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "検索(_R)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "使用するWriter文書を指定して開くをクリックします。" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "検索(_R)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "テンプレート選択ダイアログを開きます。" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "データベースの交換..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "差し込み印刷に使用する文書を選択します" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22315,49 +22315,49 @@ msgstr "オブジェクト" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "種類" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "オプション" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "折り返し" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ハイパーリンク" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "罫線" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "背景" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "透明" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "マクロ" @@ -27051,7 +27051,7 @@ msgstr "更新" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "現在のファイルの統計を表示します。" diff -Nru libreoffice-7.3.4/translations/source/ja/vcl/messages.po libreoffice-7.3.5/translations/source/ja/vcl/messages.po --- libreoffice-7.3.4/translations/source/ja/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ja/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: JO3EMC \n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566017467.000000\n" #. k5jTM @@ -1463,7 +1463,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:40 msgctxt "STR_FONT_FEATURE_ID_DPNG" msgid "Diphthongs (Obsolete)" -msgstr "" +msgstr "二重母音(廃止予定)" #. Rkd5B #: vcl/inc/font/OpenTypeFeatureStrings.hrc:41 @@ -2324,169 +2324,169 @@ msgstr "1枚の用紙に複数のページを印刷します。" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "カスタム" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "1枚の用紙に何ページを割り付けて印刷するかを設定します。" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "ページ:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "横に割り付けるページ数を指定します。" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "×" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "縦に割り付けるページ数を指定します。" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "余白:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "用紙に割り付けられたページ間の余白を設定します。" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ページの間" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "間隔:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "用紙の端から印刷するページまでの余白を設定します。" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "シートの外周まで" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "ページの配置:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "左から右へ、その後下へ" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "上から下へ、その後右へ" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "上から下へ、その後左へ" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "右から左へ、その後下へ" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ページを印刷する順番を設定します。" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ページごとに枠線を引く" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "チェック入れると各ページに枠線が引かれます。" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "パンフレット" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "パンフレットとして文書を印刷する場合に選択します。" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "部単位印刷プレビュー" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "1枚の紙に印刷するページの配置を変更します。プレビューでは、最終的にどのような紙面になるか確認できます。" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "詳細(_O)" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "ページレイアウト" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "全般" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "現在のドキュメント、選択範囲、または指定ページを印刷します。また、現在のドキュメントの印刷オプションも設定できます。" diff -Nru libreoffice-7.3.4/translations/source/jv/chart2/messages.po libreoffice-7.3.5/translations/source/jv/chart2/messages.po --- libreoffice-7.3.4/translations/source/jv/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3636,7 +3636,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/cui/messages.po libreoffice-7.3.5/translations/source/jv/cui/messages.po --- libreoffice-7.3.4/translations/source/jv/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17348,176 +17348,152 @@ msgid "Automatic" msgstr "otomatis" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/dbaccess/messages.po libreoffice-7.3.5/translations/source/jv/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/jv/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3343,73 +3343,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Mbukā" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3417,7 +3417,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/extensions/messages.po libreoffice-7.3.5/translations/source/jv/extensions/messages.po --- libreoffice-7.3.4/translations/source/jv/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -298,548 +298,536 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teks" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "dipilih" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ndhuwur" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "tunggal" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "jangkauan" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "horisontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "gawan" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Oke" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Batal" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "pitulung" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "horisontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "mlebu" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ganti" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Ciyutnā" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/fpicker/messages.po libreoffice-7.3.5/translations/source/jv/fpicker/messages.po --- libreoffice-7.3.4/translations/source/jv/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,57 +213,57 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Jeneng berkas:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "mung-diwācā" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/sc/messages.po libreoffice-7.3.5/translations/source/jv/sc/messages.po --- libreoffice-7.3.4/translations/source/jv/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-03-11 23:01+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" @@ -25453,97 +25453,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25917,146 +25917,146 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "bāsā" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Komèntar" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Tampilan" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Sunting" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Tampilan" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "perataan" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Tampilan" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Sisip" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/jv/sd/messages.po libreoffice-7.3.5/translations/source/jv/sd/messages.po --- libreoffice-7.3.4/translations/source/jv/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-03-11 23:01+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" @@ -4231,109 +4231,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7139,109 +7139,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/sw/messages.po libreoffice-7.3.5/translations/source/jv/sw/messages.po --- libreoffice-7.3.4/translations/source/jv/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-03-11 23:03+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" @@ -10669,19 +10669,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14199,39 +14199,39 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "terangaké" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "_Tlusuri..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14239,31 +14239,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20427,111 +20427,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Tlusuri..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Tlusuri..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22693,50 +22693,50 @@ msgstr "Obyèk" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipe" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opsi" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "tautan" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27508,7 +27508,7 @@ msgstr "Nganyari" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/jv/vcl/messages.po libreoffice-7.3.5/translations/source/jv/vcl/messages.po --- libreoffice-7.3.4/translations/source/jv/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/jv/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-01-20 15:36+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: Javanese \n" @@ -2341,169 +2341,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/chart2/messages.po libreoffice-7.3.5/translations/source/ka/chart2/messages.po --- libreoffice-7.3.4/translations/source/ka/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3687,7 +3687,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/cui/messages.po libreoffice-7.3.5/translations/source/ka/cui/messages.po --- libreoffice-7.3.4/translations/source/ka/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17539,177 +17539,153 @@ msgid "Automatic" msgstr "ავტომატური" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "მაღალი კონტრასტი #1" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ნახატის გამონატანი" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "შრიფტების გადახედვის ჩვენება" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "შრიფტების სიები" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/dbaccess/messages.po libreoffice-7.3.5/translations/source/ka/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ka/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Georgian \n" @@ -3462,74 +3462,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ბოლოს გამოყენებული" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "გახსნა" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3537,7 +3537,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/extensions/messages.po libreoffice-7.3.5/translations/source/ka/extensions/messages.po --- libreoffice-7.3.4/translations/source/ka/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -301,577 +301,563 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "მიღება" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "გაგზავნა" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ტექსტი" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "სტანდარტული (მოკლე)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "სტანდარტული (მოკლე)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "სტანდარტული (მოკლე)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "სტანდარტული (გრძელი)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "მონიშვნა" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "მიმდინარე თარიღი" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "არა" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "დიახ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "შეჩერება" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "შენიშვნა" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ცალი" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "დიაპაზონი" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ჰორიზონტალურად" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ვერტიკალურად" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ნაგულისხმები" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "კარგი" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "გაუქმება" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "დახმარება" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ერთ-სტრიქონიანი" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "მრავალ-სტრიქონიანი" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "მრავალხაზიანი ფორმატირებით" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (უნიქსი)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "შენიშვნა" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ჰორიზონტალურად" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ვერტიკალურად" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ორივე" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ბრტყელი" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ზედა მარცხენა" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "მარცხენა ცენტრში" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "მარცხნივ ქვედა" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "მარჯვნივ ზედა" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "მარჯვენა ცენტრში" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "მარჯვენა ქვემოთ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "მარცხენა ზემოთ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ზედა ცენტრში" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ზედა მარჯვნივ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ქვედა მარცხნივ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ქვედა ცენტრში" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ქვემოთ მარჯვნივ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ცენტრირებული" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ჩანაცვლება" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "კოლაფსი" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "არა" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "ტანაფარდობის შენარჩუნება" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "~ზომაზე მორგება" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "მარცხნიდან მარჯვნივ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "მარჯვნიდან მარცხნივ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "მაქვემდებარებელი ობიექტის პარამეტრების გამოყენება" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "~არასდროს" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ყოველთვის" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "პარაგრაფი" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "თვისებები" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "გვერდზე" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ჩარჩოზე" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "თვისებები" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "გვერდზე" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ka/fpicker/messages.po libreoffice-7.3.5/translations/source/ka/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ka/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ფაილის სახელი:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ფაილის ტ~იპი" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~მხოლოდ წაკითხვადი" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "შენახვა პაროლით" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~ავტომატური ფაილის გაფართოება" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ჩაასწორე ფილტრის პარამეტრები" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/sc/messages.po libreoffice-7.3.5/translations/source/ka/sc/messages.po --- libreoffice-7.3.4/translations/source/ka/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25757,97 +25757,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26234,152 +26234,152 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "მოწესრიგება" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ფ_ერი" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_ბადე" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_ენა" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "განხილვა" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "შინაარსი" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ხედი" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_რედაქტირება" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "მოწესრიგება" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ხედი" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "~დაჯგუფება" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "შრიფტი" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "სწორება" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ხედი" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ჩასმა" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ჩარჩო" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "მოწესრიგება" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_ბადე" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ka/sd/messages.po libreoffice-7.3.5/translations/source/ka/sd/messages.po --- libreoffice-7.3.4/translations/source/ka/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4239,109 +4239,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7208,109 +7208,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/sw/messages.po libreoffice-7.3.5/translations/source/ka/sw/messages.po --- libreoffice-7.3.4/translations/source/ka/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10714,19 +10714,19 @@ msgstr "ჩამოაქვს მონიშნული პარაგრაფის სტილი ერთი დონით ქვემოთ ინდექსის იერარქიაში." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "სტილი" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "ქმნის ინდექსის ჩანაწერებს სპეციფიკური პარაგრაფის სტილებით." @@ -14267,37 +14267,37 @@ msgstr "მონაცემთა ბაზების გაცვლა" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "განსაზღვრა" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "გამოყენებული მონაცემთა ბაზები" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ძიება..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "ხსნის ფაილის გახსნის დიალოგს მონაცემთა ბაზის ფაილის შესარჩევად (*.odb). მონიშნული ფაილი ემატება ხელმისაწვდომ მონაცემთა ბაზების ველს." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14307,31 +14307,31 @@ " გამოიყენეთ დათვალიერების ღილაკი მონაცემთა ბაზის ფაილის ასარჩევად. " #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "ჩამოთვლის ამჟამად ხმარებაში მყოფ მონაცემთა ბაზებს." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "მონაცემთა ბაზების გაცვლა" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "მონაცემთა ბაზა დაუკავშირდა დოკუმენტს:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "წყარო მონაცემების შეცვლა მიმდინარე დოკუმენტისთვის." @@ -20602,111 +20602,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "გამოიყენებს მიმდინარე ჩამწერ დოკუმენტს ფოსტის შერწმის დოკუმენტის ბაზისად." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "ქმნის ახალ ჩამწერ დოკუმენტს ფოსტის შერწყმასთან გამოსაყენებლად." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "გამოიყენეთ არსებული ჩამწერი დოკუმენტი ახალი წერილის შერწყმის დოკუმენტის ბაზისად." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "მონიშნეთ შაბლონი, რომლის გამოყენებაც გსურთ ფოსტის შერწყმის დოკუმენტთან." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "გამოიყენეთ არსებული ფოსტის შერწყმის დოკუმენტი ახალი წერილის შერწყმის დოკუმენტის ბაზისად." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "დოკუმენტის მონიშვნა." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ძიება..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ძიება..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22885,51 +22885,51 @@ msgstr "ობიექტი" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ტიპი" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "პარამეტრები" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "გარსდენა" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ბმული" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ჩარჩოები" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "სივრცე" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "გამჭირვალობა" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "მაკრო" @@ -27784,7 +27784,7 @@ msgstr "განახლება" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ka/vcl/messages.po libreoffice-7.3.5/translations/source/ka/vcl/messages.po --- libreoffice-7.3.4/translations/source/ka/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ka/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2337,169 +2337,169 @@ msgstr "ქმნის ახალ საბაზო დოკუმენტს." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ინდივიდუალური:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "მონიშნეთ ეს ხატულა გვერდების სანახავად.." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "ჩაურთავს რიგს ცხრილში." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "მეშვეობით" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "ჩაურთავს რიგს ცხრილში." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "ქმნის ახალ საბაზო დოკუმენტს." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "ჩაურთავს რიგს ცხრილში." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ჩაურთავს რიგს ცხრილში." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "ჩაურთავს რიგს ცხრილში." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ბროშ~ურა" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "ბეჭდავს მიმდინარე დოკუმენტს, ან წინასწარ განსაზღვრულ მონიშნულ დოკუმენტს. ასევე, შეგიძლიათ დააყენოთ ბეჭდვის პარამეტრები მიდმიანრე დოკუმენტისათვის." diff -Nru libreoffice-7.3.4/translations/source/kab/chart2/messages.po libreoffice-7.3.5/translations/source/kab/chart2/messages.po --- libreoffice-7.3.4/translations/source/kab/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540150466.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Fren anaw azaduran n wudlif." diff -Nru libreoffice-7.3.4/translations/source/kab/cui/messages.po libreoffice-7.3.5/translations/source/kab/cui/messages.po --- libreoffice-7.3.4/translations/source/kab/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1544806594.000000\n" #. GyY9M @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "S wudem awurman" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Amyeẓli afellay" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasik" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "A_ɣanib n tigit:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Yesra asekker tikkelt-nniḍen" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Seqdec asɣiwel n te_nga" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Seqdec a_mzay" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Tufɣa tudlift" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Beqqeḍ ta_muɣli n tsefsayin" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "M_zi isekkilen n ugdil" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_Si:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Tabdart n tsefsiyin" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kab/dbaccess/messages.po libreoffice-7.3.5/translations/source/kab/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kab/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524777815.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Snulfu-d azadur n yisefka a_maynut" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Azadur n isefka yettwa_selɣen:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Ldi a_faylu n uzadur n isefka i yellan" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ttwasqedcen _melmi-kan:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ldi" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Qqen ɣer uzadur n yisefka i ye_llan" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kab/extensions/messages.po libreoffice-7.3.5/translations/source/kab/extensions/messages.po --- libreoffice-7.3.4/translations/source/kab/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542023779.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Sismeḍ tiferkit" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Awi-d" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Azen" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Aḍris" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Ameslugen (awezlan)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Ameslugen (awezlan AA)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Ameslugen (awezlan AAAA)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Ameslugen (aɣezfan)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "JJ/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/JJ/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/JJ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "JJ/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/JJ/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/JJ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-JJ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-JJ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ur yettwafren ara" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Yettwafren" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ur yettwasbadu ara" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Ikalasen merra" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Akalas urmid" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Asebtar amiran" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ala" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "IH" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Tiferkit tamarawt" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "I_lem" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "A_marraw" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "I_yiman-ik" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "U_ksawen" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ulac" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Aḥerfi" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Tagrumma" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Aglawan" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Ubdid" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Lexṣas" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "IH" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Sefsex" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Tallalt" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Anekcum yettwafernen" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Ideg n unekcum yettwafernen" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Ajerriḍ asuf" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Aṭas n ijerriḍen" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Aṭas n ijerriḍen s wemsal" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ulac" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Aglawan" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Ubdid" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Di sin" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Imlebeḍ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ɣer zelmaḍ uksawen" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ɣer zelmaḍ di tlemmast" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ɣer zelmaḍ uksar" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Ɣer yefus uksawen" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Ɣer yefus di tlemast" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Ɣer yefus ukessar" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ukessar ɣer yefus" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ukessar di tlemmast" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ukessar ɣer yefus" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ddaw ɣer zelmaḍ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ddaw di telemmast" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Uksawen ɣer yefus" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Alemmas" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Jmeɛ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Semselsi" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Sneḍfas" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ala" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Taskala n watug" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Sezg ɣer tiddi" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Seg uzelmaḍ s ayeffus" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Seg uyeffus s azelmaḍ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Seqdec iɣewwaren n tɣawsa tunnigt" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Werjin" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Di tuṭṭfa n usaḍas" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Yalas" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "I tseddart" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "D asekkil" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "I wesebtar" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "I wekatar" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "I wesekkil" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "I wesebtar" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "I texxamt" diff -Nru libreoffice-7.3.4/translations/source/kab/fpicker/messages.po libreoffice-7.3.5/translations/source/kab/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kab/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538497593.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Isem n u_faylu:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "A_naw n ufaylu:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Taɣuṛi kan" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Sekles s wawal uffir" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Asiɣzef a_wurman n yisem n ufaylu" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Ẓreg iɣewwaṛen n imzi~zdig" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Wgelhen s GPG key" diff -Nru libreoffice-7.3.4/translations/source/kab/sc/messages.po libreoffice-7.3.5/translations/source/kab/sc/messages.po --- libreoffice-7.3.4/translations/source/kab/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1544820220.000000\n" #. kBovX @@ -25258,97 +25258,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Su_neɣ" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Taɣawsa" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "I_fecka" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25709,139 +25709,139 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Seggem" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "I_ni" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Iẓiki" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Tutlayt" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Cegger" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Iw_enniten" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Snemhel" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Sk_en" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Su_neɣ" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Ẓreg" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Seggem" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Sk_en" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Se_grew" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Tase_fsit" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Asettef" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Sk_en" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Ger" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "A_midya" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "A_katar" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Seggem" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Iẓiki" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Sk_en" diff -Nru libreoffice-7.3.4/translations/source/kab/sd/messages.po libreoffice-7.3.5/translations/source/kab/sd/messages.po --- libreoffice-7.3.4/translations/source/kab/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542023785.000000\n" #. WDjkB @@ -4171,109 +4171,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7060,109 +7060,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kab/sw/messages.po libreoffice-7.3.5/translations/source/kab/sw/messages.po --- libreoffice-7.3.4/translations/source/kab/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195603.000000\n" #. v3oJv @@ -10494,19 +10494,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Iɣunab" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13950,37 +13950,37 @@ msgstr "Beddel azadur n yisefka" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Mudd tabadut" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Azadur n yisefka yettwasqedcen" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Izaduren n yisefka i_wejden" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Snirem..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13990,31 +13990,31 @@ "Seqdec taqfalt n usnirem iwakken ad tferneḍ afaylu n uzadur n isefka." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Beddel azadur n yisefka" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Azadur n isefka yurzen ɣer isemli:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20068,109 +20068,109 @@ msgstr "Seqdec i_semli amiran" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Snulfu-d isemli amaynut" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Seqdec isemli _yellan" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Seqdec ta_neɣruft" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Seqdec isemli ikelsen _melmi kan" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "S_nirem..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "S_nirem..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Fren isemli agejdan i tuzna yezdin" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22313,49 +22313,49 @@ msgstr "Rnu ta&ɣawsa" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Ṣṣenf" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Iγewwaṛen" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Asezggi n weḍris" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Afleḍris" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Lerryuf" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Tamnaḍt" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Tafrawant" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Amɣer" @@ -27049,7 +27049,7 @@ msgstr "Leqqem" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kab/vcl/messages.po libreoffice-7.3.5/translations/source/kab/vcl/messages.po --- libreoffice-7.3.4/translations/source/kab/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kab/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Yacine Bouklif \n" "Language-Team: Kabyle \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542023790.000000\n" #. k5jTM @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Sagen" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "sɣuṛ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "gar isebtaren" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ɣer rrif n tferkit" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Suneɣ iri i yal asebtar" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Tareẓẓi" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kk/chart2/messages.po libreoffice-7.3.5/translations/source/kk/chart2/messages.po --- libreoffice-7.3.4/translations/source/kk/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-03 07:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554998508.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kk/cui/messages.po libreoffice-7.3.5/translations/source/kk/cui/messages.po --- libreoffice-7.3.4/translations/source/kk/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-31 07:29+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563102986.000000\n" #. GyY9M @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Автоматты түрде" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галактика" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Жоғары контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Классикалық" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Самал" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Таңбаш_алар түрі:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Қайта іске қосуды талап етеді" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Құрылғылық ү_детуді қолдану" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Қаріп те_гістеуді қолдану" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Барлық шығыс Skia арқылы" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia арқылы бағдарламалық шығыс" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Қайта іске қосуды талап етеді. Графикалық драйверлерді қолдануды сөндіреді." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia іске қосулы тұр." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia сөндірулі тұр." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графикалық шығыс" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Қарі_птерді алдын-ала қарау" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Экрандағы қаріпті те_гістеу" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "бас_тап:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Қаріптер тізімі" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kk/dbaccess/messages.po libreoffice-7.3.5/translations/source/kk/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kk/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-03 07:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562946612.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Ж_аңа дерекқорды жасау" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Жаңа дерекқорды жасау үшін таңдаңыз." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Құрамы_ндағы дерекқор:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Бар болып тұрған дерекқор _файлын ашу" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Жуы_рда қолданылған:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ашу" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Бар болып тұрған д_ерекқорға байланыс орнату" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kk/extensions/messages.po libreoffice-7.3.5/translations/source/kk/extensions/messages.po --- libreoffice-7.3.4/translations/source/kk/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-01 16:19+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Форманы жаңарту" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Мәтін" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартты (қысқа)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартты (қысқа ЖЖ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартты (қысқа ЖЖЖЖ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартты (ұзын)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "КК/АА/ЖЖ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "АА/КК/ЖЖ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ЖЖ/АА/КК" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "КК/АА/ЖЖЖЖ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "АА/КК/ЖЖЖЖ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ЖЖЖЖ/АА/КК" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ЖЖ-АА-КК" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ЖЖЖЖ-АА-КК" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Таңдалмаған" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Таңдалған" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Анықталмаған" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Барлық жазбалар" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Белсенді жазба" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Ағымдағы бет" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Жоқ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Иә" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Аталық форма" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ешнәрсе" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Дара" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Көптік" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Ауқым" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Горизонталды" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертикалды" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Бастапқы" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ОК" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Бас тарту" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Көмек" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Таңдалған жазба" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Таңдалған жазбаның орны" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Дара жолды" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Көпжолды" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Көпжолды, пішімдеуімен" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ешнәрсе" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Горизонталды" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикалды" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Екеуі де" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Үшөлшемді" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Жалпақ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Сол жақтан жоғары" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Сол жақтан" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Сол жақтан төмен" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Оң жақтан жоғары" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Оң жақтан" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Оң жақтан төмен" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Жоғары сол жақтан" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Жоғарыда" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Жоғары оң жақтан" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Төменде сол жақтан" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Төменде" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Төменде оң жақтан" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Ортасына қарай" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Сақтап қалу" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Алмастыру" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Ішкі абзацтарды жинау" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Жоқ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Ара қатынасын сақтап" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Өлшемі бойынша келтіру" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Солдан оңға" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Оңнан солға" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Баптауларды мұралау" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ешқашан" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Фокус алынған кезде" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Әрқашан" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Абзацқа" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Таңба ретінде" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Бетке" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Фреймге" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Таңбаға" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Бетке" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Ұяшыққа" diff -Nru libreoffice-7.3.4/translations/source/kk/fpicker/messages.po libreoffice-7.3.5/translations/source/kk/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kk/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-01 16:18+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" @@ -216,55 +216,55 @@ msgstr "Өзгертілген күні" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Ашу" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "О_йнату" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Файл _аты:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Файл _түрі:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Тек оқу үшiн ғана" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Парольмен сақтау" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Автоматты түрде кеңейтуi" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Сү_згi баптауларын өзгерту" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG кілтімен шифрлеу" diff -Nru libreoffice-7.3.4/translations/source/kk/sc/messages.po libreoffice-7.3.5/translations/source/kk/sc/messages.po --- libreoffice-7.3.4/translations/source/kk/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-03 07:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563104974.000000\n" #. kBovX @@ -25250,97 +25250,97 @@ msgstr "~Түрі" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Су_рет" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Сур~ет" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Су_рет салу" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Су~рет салу" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Баспаға шығару" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Бас~паға шығару" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Фо_рма" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Фо~рма" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Кеңейту" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Кеңейту" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Са_ймандар" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Са~ймандар" @@ -25699,139 +25699,139 @@ msgstr "Су_рет" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Ор_наластыру" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Түс" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Тор" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Тіл" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Те_ксеру" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Түсіндірмелер" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Салыстыру" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Түрі" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Су_рет салу" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Тү_зету" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Ор_наластыру" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Түрі" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "То_п" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Қарі_п" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Туралануы" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Түрі" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Кірістіру" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Медиа" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ф_рейм" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Ор_наластыру" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Тор" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Түрі" diff -Nru libreoffice-7.3.4/translations/source/kk/sd/messages.po libreoffice-7.3.5/translations/source/kk/sd/messages.po --- libreoffice-7.3.4/translations/source/kk/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-01-23 17:38+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563104657.000000\n" #. WDjkB @@ -4170,109 +4170,109 @@ msgstr "Кес~те" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Сурет" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Сур~ет" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Су_рет салу" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Су~рет салу" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Фо_рма" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Фо~рма" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Мастер" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Мастер" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Кеңейту" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Кеңейту" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Са_ймандар" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Са~ймандар" @@ -7059,109 +7059,109 @@ msgstr "~Кесте" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Сурет" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Сур~ет" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Су_рет салу" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Су~рет салу" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Фо_рма" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Фо~рма" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Мастер" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Мастер" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Кеңейту" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Кеңейту" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Са_ймандар" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Са~ймандар" diff -Nru libreoffice-7.3.4/translations/source/kk/sw/messages.po libreoffice-7.3.5/translations/source/kk/sw/messages.po --- libreoffice-7.3.4/translations/source/kk/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-11 14:45+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563470465.000000\n" #. v3oJv @@ -10492,19 +10492,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Стилі" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стильдер" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13948,37 +13948,37 @@ msgstr "Белсенді дерекқорды таңдау" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Иә" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Қолданылатын дерекқорлар" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Қ_олжетерлік дерекқорлар" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Шолу..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13988,31 +13988,31 @@ "Дерекқор файлын таңдау үшін шолу батырмасын қолданыңыз." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Белсенді дерекқорды таңдау" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Қолданылатын дерекқор:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20066,109 +20066,109 @@ msgstr "Ағымдағы құ_жатты қолдану" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Ж_аңа құжатты қолдану" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "_Бар құжаттан бастау" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Үлгід_ен бастау" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Жуырда сақталған бастау құжатынан ба_стау" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Бастапқы құжатты таңдау." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Шолу..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Шолу..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Хаттарды тарату үшін бастау құжатын таңдаңыз" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22311,49 +22311,49 @@ msgstr "Объект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Түрі" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Опциялар" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Аймалау" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гиперсілтеме" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Шектер" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Аймақ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Мөлдірлілігі" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27049,7 +27049,7 @@ msgstr "Жаңарту" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kk/vcl/messages.po libreoffice-7.3.5/translations/source/kk/vcl/messages.po --- libreoffice-7.3.4/translations/source/kk/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kk/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-05-12 07:37+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Таңдауыңызша" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Парақтар:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "мәні" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Шет өрісі:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "беттер арасында" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Ара қашықтығы:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "парақ шетінен" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Реті:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Солдан оңға, одан кейін төменге" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Жоғарыдан төменге, одан кейін оңға" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Жоғарыдан төменге, одан кейін солға" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Оңнан солға, одан кейін төменге" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Әр бет үшін шекараны салу" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Кітапша" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Ретін алдын-ала қарау" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Кө_бірек" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Бет жаймасы" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Жалпы" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/chart2/messages.po libreoffice-7.3.5/translations/source/kl/chart2/messages.po --- libreoffice-7.3.4/translations/source/kl/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3628,7 +3628,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/cui/messages.po libreoffice-7.3.5/translations/source/kl/cui/messages.po --- libreoffice-7.3.4/translations/source/kl/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17299,176 +17299,152 @@ msgid "Automatic" msgstr "nammineq" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/dbaccess/messages.po libreoffice-7.3.5/translations/source/kl/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kl/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3347,73 +3347,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ammaruk" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3421,7 +3421,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/extensions/messages.po libreoffice-7.3.5/translations/source/kl/extensions/messages.po --- libreoffice-7.3.4/translations/source/kl/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -296,544 +296,532 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Allagaq" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "qinigaq" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "kaaveq" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "napparissoq" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "tamanut atugassiaq" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "taamaatiguk" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ikiuut" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "napparissoq" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Taarseruk" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/fpicker/messages.po libreoffice-7.3.5/translations/source/kl/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kl/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,56 +213,56 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Filip atia:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/sc/messages.po libreoffice-7.3.5/translations/source/kl/sc/messages.po --- libreoffice-7.3.4/translations/source/kl/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25410,97 +25410,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25870,145 +25870,145 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "oqaatsit" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "takuuk" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Allanngortiguk" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "takuuk" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "naligiisitsineq" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "takuuk" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Ikkuguk" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/kl/sd/messages.po libreoffice-7.3.5/translations/source/kl/sd/messages.po --- libreoffice-7.3.4/translations/source/kl/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4216,109 +4216,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7122,109 +7122,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/sw/messages.po libreoffice-7.3.5/translations/source/kl/sw/messages.po --- libreoffice-7.3.4/translations/source/kl/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10633,19 +10633,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14161,37 +14161,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14199,31 +14199,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20368,109 +20368,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22631,50 +22631,50 @@ msgstr "susaq" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Suussuseq" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Qinigassat" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "innersuussissut" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27432,7 +27432,7 @@ msgstr "nutarsaruk" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kl/vcl/messages.po libreoffice-7.3.5/translations/source/kl/vcl/messages.po --- libreoffice-7.3.4/translations/source/kl/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kl/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2339,170 +2339,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "naleqqussaruk" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/chart2/messages.po libreoffice-7.3.5/translations/source/km/chart2/messages.po --- libreoffice-7.3.4/translations/source/km/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3653,7 +3653,7 @@ msgstr "កំណត់​ចំនួន​បន្ទាត់​សម្រាប់​ប្រភេទ​គំនូស​តាង​បន្ទាត់ និង​ជួរឈរ ។" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "ជ្រើស​ប្រភេទ​គំនូស​តាង​មូលដ្ឋាន ។" diff -Nru libreoffice-7.3.4/translations/source/km/cui/messages.po libreoffice-7.3.5/translations/source/km/cui/messages.po --- libreoffice-7.3.4/translations/source/km/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17502,181 +17502,155 @@ msgid "Automatic" msgstr "ស្វ័យប្រវត្តិ​" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "កម្រិត​ពណ៌​ខ្ពស់" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "អុកហ្ស៊ីសែន" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ក្លាស់ស៊ិក" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "ប្រើ​ការ​បង្កើន​ល្បឿន​ផ្នែក​រឹង" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "ចូល​ដំណើរ​ការ​លក្ខណៈ​ពិសេស​ផ្នែក​រឹង​នៃអាដាប់ទ័រ​ការ​បង្ហាញ​ក្រាហ្វិក​សម្រាប់​ធ្វើ​ប្រសើរ​ការ​បង្ហាញ​អេក្រង់ ។" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ប្រើ​ការ​ប្រឆាំង​ភាព​រឆេតរឆូត" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "នៅពេលគាំទ្រ អ្នក​អាច​បើក និង​បិទ​ការ​ប្រឆាំង​ភាពរ​ឆេតរឆូត​របស់​ក្រាហ្វិក ។ ដោយ​បើក​ការ​ប្រឆាំង​ភាព​រឆេតរឆូត ការ​បង្ហាញ​វត្ថុ​ក្រាហ្វិក​ភាគ​ច្រើន​មើល​ទៅ​រលោង និង​មានការ​ព្រិល​តិចតួច ។" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "លទ្ធផល​ក្រាហ្វិក" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "បង្ហាញ​ការមើល​ពុម្ព​អក្សរ​ជា​មុន " #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "ភាព​រឆេតរឆូត​របស់​ពុម្ព​អក្សរ​នៅ​លើ​អេក្រង់" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "មកពី" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "បញ្ជី​ពុម្ព​អក្សរ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/dbaccess/messages.po libreoffice-7.3.5/translations/source/km/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/km/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Central Khmer \n" @@ -3464,74 +3464,74 @@ msgstr "បង្កើត​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "មូលដ្ឋាន​ទិន្នន័យ​បាន​បង្កប់៖" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "បើក​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន​ស្រាប់" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "បាន​ប្រើ​ថ្មីៗ៖" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "បើក" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "តភ្ជាប់​ទៅ​​​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន​ស្រាប់" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3539,7 +3539,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/extensions/messages.po libreoffice-7.3.5/translations/source/km/extensions/messages.po --- libreoffice-7.3.4/translations/source/km/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -311,600 +311,588 @@ msgid "Refresh form" msgstr "ធ្វើ​ឲ្យ​សំណុំ​បែបបទ​ស្រស់" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "យក​" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "ប្រកាស" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ផ្នែក​ច្រើន" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "អត្ថបទ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ស្តង់ដារ (ខ្លី)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ស្តង់ដារ (YY ខ្លី)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ស្តង់ដារ (YYYY ខ្លី)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ស្តង់ដារ (វែង)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 ល្ងាច" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 ល្ងាច" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "មិន​បាន​ជ្រើស" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "បាន​ជ្រើស" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "មិន​បាន​កំណត់" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "កំណត់​ត្រា​ទាំងអស់" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "កំណត់​ត្រា​សកម្ម" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ទំព័រ​បច្ចុប្បន្ន" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ទេ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "បាទ/ចាស" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "សំណុំ​បែបបទ​មេ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ទៅ" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "គ្មាន" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "តែ​មួយ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ច្រើន" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ជួរ" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ផ្ដេក" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "បញ្ឈរ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "លំនាំដើម" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "យល់ព្រម" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "បោះបង់" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ជំនួយ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ធាតុ​ដែល​បាន​ជ្រើស" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ទីតាំង​របស់​ថត​ដែល​បាន​ជ្រើស" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "បន្ទាត់​មួយ​" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ពហុ​​បន្ទាត់​" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ពហុ​​បន្ទាត់​​ដែល​​មាន​​​ទ្រង់​ទ្រាយ​​" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (យូនីក)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (វីនដូ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "គ្មាន" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ផ្ដេក" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "បញ្ឈរ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ទាំង​ពីរ​" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "ត្រីមាត្រ" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 #, fuzzy msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "សំប៉ែត" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "​ឆ្វេង កំពូល" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ឆ្វេង​ កណ្តាល​" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "​ឆ្វេង បាត" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "​ស្តាំ កំពូល" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ស្តាំ​ កណ្តាល​" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "​ស្តាំ បាត" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "លើ​ ឆ្វេង" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "​លើ​ កណ្តាល" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "​​លើ​ ស្តាំ​" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "​ក្រោម ឆ្វេង" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "​​​ក្រោម​ កណ្តាល​" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ក្រោម ស្តាំ​" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "កណ្តាល" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "បង្ការ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ជំនួស​" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "វេញ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ទេ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "រក្សាទុក​សមាមាត្រ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "សម​ទៅ​នឹង​ទំហំ" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ពី​ឆ្វេង​ទៅ​ស្ដាំ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ពី​ស្ដាំ​ទៅ​ឆ្វេង" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ប្រើ​ការ​កំណត់​វត្ថុ​ដែល​មាន​លំដាប់​ខ្ពស់ជាង" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "កុំ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "នៅពេល​ផ្ដោត" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ជា​និច្ច" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ទៅ​កថាខណ្ឌ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "តួអក្សរ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ទៅ​ទំព័រ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ទៅ​ស៊ុម" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "តួអក្សរ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ទៅ​ទំព័រ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/km/fpicker/messages.po libreoffice-7.3.5/translations/source/km/fpicker/messages.po --- libreoffice-7.3.4/translations/source/km/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -221,61 +221,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ឈ្មោះ​​ឯកសារ៖" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ប្រភេទ​ឯកសារ ៖ " #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "បាន​តែ​អាន " #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr " រក្សាទុក​ជា​មួយ​ពាក្យ​សម្ងាត់" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "កន្ទុយ​​របស់​ឈ្មោះ​ឯកសារ​ស្វ័យ​ប្រវត្តិ ​" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr " កែសម្រួល​ការ​កំណត់​តម្រង" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/sc/messages.po libreoffice-7.3.5/translations/source/km/sc/messages.po --- libreoffice-7.3.4/translations/source/km/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25762,97 +25762,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26235,153 +26235,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "រៀបចំ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ពណ៌" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ក្រឡា​ចត្រង្គ " #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ភាសា " #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "មតិយោបល់" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "ប្រៀបធៀប" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ទិដ្ឋភាព" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "កែ​សម្រួល​ " #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "រៀបចំ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ទិដ្ឋភាព" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ដាក់​ជា​ក្រុម" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ពុម្ពអក្សរ" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "តម្រឹម" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ទិដ្ឋភាព" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "បញ្ចូល​" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "មេឌៀ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ស៊ុម" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "រៀបចំ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ក្រឡា​ចត្រង្គ " #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/km/sd/messages.po libreoffice-7.3.5/translations/source/km/sd/messages.po --- libreoffice-7.3.4/translations/source/km/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4222,109 +4222,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7186,109 +7186,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/sw/messages.po libreoffice-7.3.5/translations/source/km/sw/messages.po --- libreoffice-7.3.4/translations/source/km/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-20 17:21+0000\n" "Last-Translator: Andras Timar \n" "Language-Team: LANGUAGE \n" @@ -10728,19 +10728,19 @@ msgstr "ផ្លាស់ទី​រចនាប័ទ្ម​កថាខណ្ឌ ដែល​បាន​ជ្រើស​ចុះ​ក្រោម​មួយ​កម្រិត ក្នុង​ឋានានុក្រម​លិបិក្រម ។" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "រចនាប័ទ្ម" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "បង្កើត​ធាតុ​លិបិក្រម ពី​រចនាប័ទ្ម​កថាខណ្ឌ​ជាក់លាក់ ។" @@ -14244,37 +14244,37 @@ msgstr "​ផ្លាស់ប្តូរ​មូលដ្ឋាន​ទិន្នន័យ " #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "កំណត់" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "មូលដ្ឋាន​ទិន្នន័យ​ស្ថិត​ក្នុង​ការ​ប្រើ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "រក​មើល..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "បើក​ប្រអប់​បើក​ឯកសារ ដើម្បី​ជ្រើស​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ (*.odb) ។ ឯកសារ​ដែល​បាន​ជ្រើស ត្រូវ​បាន​បន្ថែម​ទៅ​បញ្ជី មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន ។" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14284,31 +14284,31 @@ "ប្រើ​ប៊ូតុង​កម្មវិធី​រុករក ដើម្បី​ជ្រើស​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ ។" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "រាយ​មូលដ្ឋាន​ទិន្នន័យ ដែល​កំពុង​ប្រើ​បច្ចុប្បន្ន ។" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "រាយ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​អ្នក​បាន​ចុះឈ្មោះ​នៅ​ក្នុង %PRODUCTNAME ។" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "​ផ្លាស់ប្តូរ​មូលដ្ឋាន​ទិន្នន័យ " #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "មូលដ្ឋាន​ទិន្នន័យ​ត្រូវ​​បាន​អនុវត្ត​ទៅ​ឯកសារ ៖" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "​ផ្លាស់​ប្តូរ​ប្រភព​ទិន្នន័យ​សម្រាប់​ឯកសារ​បច្ចុប្បន្ន ។" @@ -20497,110 +20497,110 @@ msgstr "​ប្រើ​ឯកសារ​បច្ចុប្បន្ន" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "ប្រើ​ឯកសារ Writer បច្ចុប្បន្ន​ជា​មូលដ្ឋាន សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ ។" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "បង្កើត​ឯកសារ​ថ្មី" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "បង្កើត​ឯកសារ Writer ថ្មី​មួយ ដើម្បី​ប្រើ​សម្រាប់​សំបុត្រ​សំណុំ​បែបបទ ។" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "ចាប់ផ្ដើម​ពី​ឯកសារ​ដែល​មាន​ស្រាប់" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "ចាប់ផ្តើម​ពី​ឯកសារ Writer មួយ​ដែល​មាន​សម្រាប់ ដើម្បី​ប្រើ​ជា​មូលដ្ឋាន​សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ ។" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ចាប់ផ្ដើម​ពី​ពុម្ព" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "ជ្រើស​ពុម្ព​ដែល​អ្នក​ចង់​បង្កើត​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​របស់​អ្នក ជាមួយ ។" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "ចាប់ផ្ដើម​ពី​ឯកសារ​ដែល​បាន​រក្សាទុក​ថ្មីៗ" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "ប្រើ​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​មួយ​ដែល​មាន​ស្រាប់ ជា​មូលដ្ឋាន​សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​ថ្មី​មួយ ។" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "ជ្រើស​ឯកសារ ។" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "រកមើល..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "រក​ទីតាំង​ឯកសារ Writer ដែល​អ្នក​ចង់​ប្រើ រួច​ចុច បើក។" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "រកមើល..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "ជ្រើស​ឯកសារ​ចាប់ផ្ដើម​សម្រាប់​សំបុត្រ​សំណុំ​បែបបទ" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22768,49 +22768,49 @@ msgstr "វត្ថុ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ប្រភេទ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ជម្រើស​" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "រុំ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "តំណខ្ពស់" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ស៊ុម​" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "តំបន់" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ភាព​ថ្លា" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ម៉ាក្រូ" @@ -27622,7 +27622,7 @@ msgstr "ធ្វើ​បច្ចុប្បន្នភាព" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/km/vcl/messages.po libreoffice-7.3.5/translations/source/km/vcl/messages.po --- libreoffice-7.3.4/translations/source/km/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/km/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2333,169 +2333,169 @@ msgstr "បោះពុម្ព​ទំព័រ​ច្រើន​ក្នុង​សន្លឹក​ក្រដាស ។" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ផ្ទាល់ខ្លួន" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "ជ្រើស​ចំនួន​ទំព័រ​ត្រូវ​បោះពុម្ព​ក្នុង​សន្លឹក​ក្រដាស ។" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "ជ្រើស​ចំនួន​ជួរដេក ។" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "តាម" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "ជ្រើស​ចំនួន​ជួរឈរ ។" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "ជ្រើស​រឹម​រវាង​​ទំព័រ​នីមួយៗ​លើ​សន្លឹក​ក្រដាស​នីមួយៗ ។" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ចន្លោះទំព័រ​" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "ជ្រើស​រឹម​​រវាង​ទំព័រ​ដែល​​បាន​បោះពុម្ព និង​គែម​ក្រដាស ។" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ទៅស៊ុមសន្លឹក​" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ជ្រើស​លំដាប់​តាម​ទំព័រ​ត្រូវ​​បោះពុម្ព ។" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "គូរស៊ុមជុំវិញទំព័រ​នីមួយៗ" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "ពិនិត្យ​មើល​ក្នុង​ការ​គូរ​​ជុំវិញ​ទំព័រ​ស៊ុម​នីមួយ ។" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ប័ណ្ណ​ផ្សាយ​ពាណិជ្ជកម្ម" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "បោះ​ពុម្ព​ឯកសារ​បច្ចុប្បន្ន​ ជម្រើស​ ឬ​ទំព័រ​ដែល​អ្នក​បញ្ជាក់​ ។ អ្នក​ក៏​អាច​កំណត់​ជម្រើស​បោះពុម្ព​​សម្រាប់​ឯកសារ​បច្ចុប្បន្ន​ ។" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/chart2/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/chart2/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3706,7 +3706,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/cui/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/cui/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Kurmanji \n" @@ -17631,177 +17631,152 @@ msgid "Automatic" msgstr "Bixweber" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~Dijîtiya Mezin" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/dbaccess/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-04-24 21:16+0000\n" "Last-Translator: amedcj \n" "Language-Team: Kurmanji \n" @@ -3458,75 +3458,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Danegeha çalkirî" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Veke" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3534,7 +3534,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/extensions/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/extensions/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -312,599 +312,585 @@ msgid "Refresh form" msgstr "Formê nû bike" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Bîne" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Bişîne" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Zêde perçeyî" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Nivîs" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standart (kin)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kin SS)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kin SSSS)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standart (dirêj)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "RR/MM/SS" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/RR/SS" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "SS/MM/RR" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "RR/MM/SSSS" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/RR/SSSS" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "SSSS/MM/RR" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "SS-MM-RR" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "SSSS-MM-RR" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nehatiye Hilbijartin" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Hatiye Hilbijartin" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nehatiye Dîyarkirin" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Hemû tomar" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Tomara çalak" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Rûpela niha" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Na" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Erê" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Forma Bingeh" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Rawestîne" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ne yek jî" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Tekane" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Pirane" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Navber" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Berwar" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Tîk" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Temam" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Betal" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Alîkarî" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Têketina hilbijartî" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Cihê têketina hilbijartî" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Tenê rêzikek" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Rêzika Pirahî" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Bi şêwekirinê rêzika pirahî" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ne yek jî" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Berwar" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Tîk" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Herdu" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Dûz" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Jorê çepê" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Çep, hatiye ortekirin" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Jêrê çepê" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Jorê rastê" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Rast, hatiye ortekirin" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Jêrê rastê" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Li jor, çep" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Li jor, hatiye ortekirin" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Li jor rast" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Li jêr çep" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Li jêr hatiya ortekirin" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Li jêr aliyê rastê" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Nîvîkirî" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Biparêze" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Biguherîne" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Hilweşîne" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Na" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Rêjeyê Biparêze" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Bi Mezinahî Bi Cih Bike" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ji-çepê-rastê-ve" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Ji-rastê-çepê-ve" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Mîhengên hêmana jorîn bi kar bîne" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Tu car" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Dema nîvendbû" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Her dem" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ji paragrafê" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Wekî tîp" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ji rûpelê" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ji çarçoveyê" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ji tîpê" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ji rûpelê" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/fpicker/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Navê pelê:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Cureyê pelî:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Tenê xwendin" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Bi şîfre~peyvê tomar bike" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Dirêjeka navê pela otomatîk" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Mîhengên parzûnê ~sererast bike" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/sc/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/sc/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25723,97 +25723,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26202,158 +26202,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rêzkirin" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Reng" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Rêber" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ziman" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Rexne" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Şîrove" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Dîtin" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Sererastkirin" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rêzkirin" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Dîtin" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Kom" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Cûrenivîs" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Hîzakirin" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Dîtin" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Têxe Nav" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Medya" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Çarçoveyek" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rêzkirin" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Rêber" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/sd/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/sd/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4251,109 +4251,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7228,109 +7228,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/sw/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/sw/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10765,20 +10765,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Teşe" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14367,38 +14367,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "Bide ~Nasîn" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Bigere..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14406,31 +14406,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20746,111 +20746,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Bigere..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Bigere..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23041,50 +23041,50 @@ msgstr "Bireser" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Cure" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Vebijêrk" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Belavbûna nivîsê" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hîperlînk" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Sînor" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Qad" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Zelaltî" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27983,7 +27983,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kmr-Latn/vcl/messages.po libreoffice-7.3.5/translations/source/kmr-Latn/vcl/messages.po --- libreoffice-7.3.4/translations/source/kmr-Latn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kmr-Latn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2349,170 +2349,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Taybet" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ji hêla" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "navbera rûpelan de" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "li kêlekên rûpelê" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Derdora her rûpelê kêlekan xêz bike" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broşur" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/chart2/messages.po libreoffice-7.3.5/translations/source/kn/chart2/messages.po --- libreoffice-7.3.4/translations/source/kn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-06-05 13:48+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -3654,7 +3654,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/cui/messages.po libreoffice-7.3.5/translations/source/kn/cui/messages.po --- libreoffice-7.3.4/translations/source/kn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-07-09 15:34+0000\n" "Last-Translator: yogiks \n" "Language-Team: Kannada \n" @@ -17445,181 +17445,155 @@ msgid "Automatic" msgstr "ತಾನಾಗಿಯೆ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "ಗ್ಯಾಲಾಕ್ಸಿ" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ಉತ್ತಮ ವೈದೃಶ್ಯ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ಆಕ್ಸಿಜನ್" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ಸಾಂಪ್ರದಾಯಿಕ" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "ಯಂತ್ರಾಂಶ ವೇಗವರ್ಧನೆಯನ್ನು ಬಳಸು (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ಆಂಟಿ-ಅಲಿಯಾಸಿಂಗ್ ಅನ್ನು ಬಳಸು (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ಗ್ರಾಫಿಕ್ಸ್‍ ಔಟ್‌ಪುಟ್" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ಅಕ್ಷರಶೈಲಿಗಳ ಮುನ್ನೋಟವನ್ನು ತೋರಿಸು (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "ಪರದೆ ಅಕ್ಷರಶೈಲಿಯ ಆಂಟಿಅಲಿಯಾಸಿಂಗ್ (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ಇಂದ (_m)" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ಅಕ್ಷರ ಶೈಲಿಗಳ ಪಟ್ಟಿಗಳು" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/dbaccess/messages.po libreoffice-7.3.5/translations/source/kn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Kannada \n" @@ -3508,74 +3508,74 @@ msgstr "ಒಂದು ಹೊಸ ದತ್ತಸಂಚಯವನ್ನು ರಚಿಸು (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "ಅಡಕಗೊಳಿಸಲಾದ ದತ್ತಸಂಚಯ (_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "ಈಗಿರುವ ಒಂದು ದತ್ತಸಂಚಯ ಕಡತವನ್ನು ತೆರೆ (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ಇತ್ತೀಚೆಗೆ ಬಳಸಲಾದ (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ತೆರೆ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "ಈಗಿರುವ ಒಂದು ದತ್ತಸಂಚಯ ಕಡತಕ್ಕೆ ಸಂಪರ್ಕ ಜೋಡಿಸು (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3583,7 +3583,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/extensions/messages.po libreoffice-7.3.5/translations/source/kn/extensions/messages.po --- libreoffice-7.3.4/translations/source/kn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2019-06-06 01:44+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -311,597 +311,585 @@ msgid "Refresh form" msgstr "ಫಾರ್ಮನ್ನು ಪುನಶ್ಚೇತನಗೊಳಿಸು" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ಪಡೆ" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "ಸೇರಿಸು" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ಬಹುಭಾಗ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ಪಠ್ಯ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ಮಾನಕ(ಚಿಕ್ಕದು)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ಮಾನಕ (ಚಿಕ್ಕದುYY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ಮಾನಕ (ಚಿಕ್ಕದುYYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ಮಾನಕ(ದೊಡ್ಡದು)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ಆರಿಸಲಾಗಿಲ್ಲ" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ಆರಿಸಲಾದ" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ಸೂಚಿಸದೆ ಇರುವ" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ಎಲ್ಲಾ ದಾಖಲೆಗಳು" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ಸಕ್ರಿಯ ದಾಖಲೆಗಳು" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ಪ್ರಸಕ್ತ ಪುಟ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ಇಲ್ಲ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ಹೌದು" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ಮೂಲ ನಮೂನೆ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ಗೆ (_t)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ಏನೂ ಇಲ್ಲ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ಒಂದು" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ಅನೇಕ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ವ್ಯಾಪ್ತಿ " #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ಅಡ್ಡ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ಲಂಬ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ಪೂರ್ವನಿಯೋಜಿತ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ಸರಿ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ವಜಾಮಾಡು" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ಸಹಾಯ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ನಮೂದು" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ನಮೂದಿಸ ಸ್ಥಳ" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ಒಂದು-ಸಾಲು" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ಅನೇಕ-ಸಾಉ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ಫಾರ್ಮಾಟಿಂಗ್ ಅನ್ನು ಹೊಂದಿರುವ ಬಹು-ಸಾಲು" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ಏನೂ ಇಲ್ಲ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ಅಡ್ಡ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ಲಂಬ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ಎರಡೂ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 #, fuzzy msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ಸಪಾಟು" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ಎಡ ಮೇಲಕ್ಕೆ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ಎಡ ಮಧ್ಯಕ್ಕೆ" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ಎಡ ಕೆಳಕ್ಕೆ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ಬಲ ಮೇಲಕ್ಕೆ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ಬಲ ಮಧ್ಯಕ್ಕೆ" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ಬಲ ಕೆಳಕ್ಕೆ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ಮೇಲೆ ಎಡಕ್ಕೆ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ಮೇಲೆ ಮಧ್ಯಕ್ಕೆ" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ಮೇಲೆ ಬಲಕ್ಕೆ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ಕೆಗೆ ಎಡಕ್ಕೆ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ಕೆಳಗೆ ಮಧ್ಯದಲ್ಲಿ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ಕೆಳಗೆ ಬಲಕ್ಕೆ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ಮಧ್ಯಕ್ಕೆ ಹೊಂದಿಸಿದ" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ಕಾದಿರಿಸು" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ಬದಲಾಯಿಸು" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ಇದ್ದಕ್ಕಿದ್ದಂತೆ ಬೀಳು" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ಇಲ್ಲ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "ಪ್ರಮಾಣವನ್ನು ಇರಿಸಿಕೊ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ಗಾತ್ರಕ್ಕೆ ಹೊಂದಿಸು" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ಎಡದಿಂದ ಬಲಕ್ಕೆ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ಬಲದಿಂದ ಎಡಕ್ಕೆ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ಸೂಪರ್-ಆರ್ಡಿನೇಟ್ ವಸ್ತು ಸಿದ್ಧತೆಗಳನ್ನು ಬಳಸಿ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ಎಂದೂ ಬೇಡ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ಗಮನ ಕೇಂದ್ರೀಕರಿಸಿದಾಗ" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ಯಾವಾಗಲೂ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ಪ್ಯಾರಾಗ್ರಾಫಿಗೆ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ಅಕ್ಷರ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ಪುಟಕ್ಕೆ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ಚೌಕಟ್ಟಿಗೆ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ಅಕ್ಷರ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ಪುಟಕ್ಕೆ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/kn/fpicker/messages.po libreoffice-7.3.5/translations/source/kn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -224,61 +224,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ಕಡತದ ಹೆಸರು:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ಕಡತದ ಬಗೆ (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ಓದಲು-ಮಾತ್ರ (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ಗುಪ್ತಪದದೊಂದಿಗೆ ಉಳಿಸು (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ಸ್ವಯಂಚಾಲಿತ ಕಡತದ ಹೆಸರಿನ ವಿಸ್ತರಣೆ (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ಶೋಧಕದ ಸಿದ್ಧತೆಗಳನ್ನು ಸಂಪಾದಿಸು (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/sc/messages.po libreoffice-7.3.5/translations/source/kn/sc/messages.po --- libreoffice-7.3.4/translations/source/kn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-06-06 01:50+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -25917,97 +25917,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26392,154 +26392,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ವ್ಯವಸ್ಥಿತವಾಗಿ ಜೋಡಿಸು" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ಬಣ್ಣ (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ಚೌಕಜಾಲ (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ಭಾಷೆ(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "ಮುನ್ನೋಟ" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ಟಿಪ್ಪಣಿಗಳು(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "ಹೋಲಿಕೆ ಮಾಡು (_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ನೋಟ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ಸಂಪಾದನೆ (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ವ್ಯವಸ್ಥಿತವಾಗಿ ಜೋಡಿಸು" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ನೋಟ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ಗುಂಪು" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ಅಕ್ಷರಶೈಲಿ (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ಹೊಂದಿಕೆ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ನೋಟ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ಸೇರಿಸು" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ಮೀಡಿಯ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ಚೌಕಟ್ಟು (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ವ್ಯವಸ್ಥಿತವಾಗಿ ಜೋಡಿಸು" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ಚೌಕಜಾಲ (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/kn/sd/messages.po libreoffice-7.3.5/translations/source/kn/sd/messages.po --- libreoffice-7.3.4/translations/source/kn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-06-06 09:09+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -4224,109 +4224,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7187,109 +7187,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/sw/messages.po libreoffice-7.3.5/translations/source/kn/sw/messages.po --- libreoffice-7.3.4/translations/source/kn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-06-06 16:00+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -10767,19 +10767,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ಶೈಲಿಗಳು" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14318,37 +14318,37 @@ msgstr "ದತ್ತಸಂಚಯಗಳನ್ನು ಬದಲಾಯಿಸು" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "ಸೂಚಿಸು" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ಬಳಕೆಯಲ್ಲಿರುವ ದತ್ತಸಂಚಯ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "ಲಭ್ಯವಿರುವ ದತ್ತಸಂಚಯಗಳು (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ವೀಕ್ಷಿಸು..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14358,31 +14358,31 @@ "ಒಂದು ದತ್ತಸಂಚಯ ಕಡತವನ್ನು ಆಯ್ಕೆ ಮಾಡಲು ವೀಕ್ಷಕ ಗುಂಡಿಯನ್ನು ಬಳಸಿ." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ದತ್ತಸಂಚಯಗಳನ್ನು ಬದಲಾಯಿಸು" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ದಸ್ತಾವೇಜಿಗೆ ಅನ್ವಯಿಸಲಾದಂತಹ ದತ್ತಸಂಚಯ:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20652,111 +20652,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ವೀಕ್ಷಿಸು..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ವೀಕ್ಷಿಸು..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22926,51 +22926,51 @@ msgstr "ವಸ್ತು" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ಬಗೆ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ಆಯ್ಕೆಗಳು" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ಆವರಿಕೆ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ಹೈಪರ್ಲಿಂಕ್" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ಅಂಚುಗಳು" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "ವಿಸ್ತೀರ್ಣ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ಪಾರದರ್ಶಕತೆ" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ಮ್ಯಾಕ್ರೋ" @@ -27840,7 +27840,7 @@ msgstr "ಅಪ್‌ಡೇಟ್‌ ಮಾಡು" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kn/vcl/messages.po libreoffice-7.3.5/translations/source/kn/vcl/messages.po --- libreoffice-7.3.4/translations/source/kn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2019-06-06 16:00+0000\n" "Last-Translator: Omshivaprakash \n" "Language-Team: LANGUAGE \n" @@ -2333,169 +2333,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ಇಚ್ಛೆಯ:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ಇಂದ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ಪುಟಗಳ ನಡುವೆ" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ಹಾಳೆಯ ಅಂಚಿಗೆ" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ಪ್ರತಿಯೊಂದು ಪುಟದ ಸುತ್ತಲೂ ಅಂಚನ್ನು ಚಿತ್ರಿಸು" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ಕಿರುಹೊತ್ತಿಗೆ" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ko/chart2/messages.po libreoffice-7.3.5/translations/source/ko/chart2/messages.po --- libreoffice-7.3.4/translations/source/ko/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -3602,7 +3602,7 @@ msgstr "열 및 선 차트 유형에서 선의 개수를 설정합니다." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "기본 차트 유형을 선택합니다." diff -Nru libreoffice-7.3.4/translations/source/ko/cui/messages.po libreoffice-7.3.5/translations/source/ko/cui/messages.po --- libreoffice-7.3.4/translations/source/ko/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "자동" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "은하" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "고대비" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "산소" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "고전" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "부드러운 바람" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "아이콘 스타일(_T):" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "다시 시작 필요" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "하드웨어 가속 사용(_W)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "그래픽 디스플레이 어댑터의 하드웨어 기능에 직접 액세스하여 화면 표시를 개선시킵니다. 모든 운영 체제 및 %PRODUCTNAME 플랫폼 배포에 대한 하드웨어 가속 지원이 되지 않습니다." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "안티 알리아싱 사용(_L)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "이 기능을 지원하는 경우, 그림에 대한 안티-앨리어싱을 켜거나 끌 수 있습니다. 안티-앨리어싱을 사용하면, 대부분의 그림 개체를 보다 부드럽고 자연스럽게 표시할 수 있습니다." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "그래픽 출력" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "글꼴 미리보기 표시(_R)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "화면 내 글꼴을 부드럽게 처리(_G)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "시작(_M):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "글꼴 목록" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ko/dbaccess/messages.po libreoffice-7.3.5/translations/source/ko/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ko/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -3395,73 +3395,73 @@ msgstr "새 데이터베이스 만들기(_E)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "내장된 데이터베이스(_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "기존 데이터베이스 파일 열기(_F)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "최근 사용(_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "열기" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "기존 데이터베이스에 연결하기(_X)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ko/extensions/messages.po libreoffice-7.3.5/translations/source/ko/extensions/messages.po --- libreoffice-7.3.4/translations/source/ko/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "양식 새로 고침" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "텍스트" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "표준(짧은)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "표준(짧은 YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "표준(짧은 YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "표준(길게)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "선택되지 않음" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "선택됨" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "정의되지 않음" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "모든 레코드" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "활성 레코드" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "현재 페이지" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "아니요" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "예" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "상위 양식" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "위쪽(_T)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "없음" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "1줄" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "여러 줄" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "범위" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "수평" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "수직" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "기본값" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "확인" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "취소" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "도움말" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "선택한 항목" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "선택한 항목의 위치" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "한 줄" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "여러 줄" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "서식 설정된 여러 줄" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF(Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF(Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "없음" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "수평" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "수직" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "둘 다" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "평면" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "왼쪽 위" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "왼쪽 가운데" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "왼쪽 아래" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "오른쪽 위" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "오른쪽 가운데" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "오른쪽 아래" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "왼쪽 위" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "가운데 위" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "오른쪽 위" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "왼쪽 아래" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "가운데쪽 아래" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "오른쪽 아래" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "가운데" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "보호" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "바꾸기" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "접음" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "아니요" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "비율 유지" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "사이즈에 맞게 조정" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "왼쪽에서 오른쪽으로" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "오른쪽에서 왼쪽으로" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "상위 개체 설정 사용" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "절대 안함" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "포커스 되었을 때" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "항상" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "단락에" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "문자로" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "페이지에" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "프레임에" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "문자에" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "페이지에" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "셀에" diff -Nru libreoffice-7.3.4/translations/source/ko/fpicker/messages.po libreoffice-7.3.5/translations/source/ko/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ko/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -216,55 +216,55 @@ msgstr "수정된 날짜" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "파일 이름(_N):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "파일 유형(_T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "읽기 전용(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "암호를 사용하여 저장" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "자동 파일명 확장자(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "필터 설정 편집(_F)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG 키로 암호화" diff -Nru libreoffice-7.3.4/translations/source/ko/sc/messages.po libreoffice-7.3.5/translations/source/ko/sc/messages.po --- libreoffice-7.3.4/translations/source/ko/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-13 15:36+0000\n" "Last-Translator: SeoYeonJin \n" "Language-Team: Korean \n" @@ -25240,97 +25240,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "도구(_T)" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25689,139 +25689,139 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "배치(_A)" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "색상(_O)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "격자(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "언어(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "검토(_R)" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "주석(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "비교(_P)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "보기(_V)" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "그리기(_R)" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "편집(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "배치(_A)" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "보기(_V)" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "그룹(_P)" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "글꼴(_O)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "정렬(_A)" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "보기(_V)" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "삽입(_I)" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "미디어(_M)" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "틀(_R)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "배치(_A)" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "격자(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "보기(_V)" diff -Nru libreoffice-7.3.4/translations/source/ko/sd/messages.po libreoffice-7.3.5/translations/source/ko/sd/messages.po --- libreoffice-7.3.4/translations/source/ko/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -4173,109 +4173,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7063,109 +7063,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ko/sw/messages.po libreoffice-7.3.5/translations/source/ko/sw/messages.po --- libreoffice-7.3.4/translations/source/ko/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-12 09:36+0000\n" "Last-Translator: 박다영 \n" "Language-Team: Korean \n" @@ -10489,19 +10489,19 @@ msgstr "선택한 단락 스타일을 색인 계층 구조에서 한 수준 아래로 이동합니다." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "스타일" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "특정 단락 스타일로부터 색인 항목을 만듭니다." @@ -13945,37 +13945,37 @@ msgstr "데이터베이스 교환" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "정의" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "데이터베이스 사용 중" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "사용 가능한 데이터베이스(_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "찾아보기..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "데이터베이스 파일(*.odb)을 선택하기 위한 파일 열기 대화 상자를 엽니다. 선택한 파일은 사용 가능한 데이터베이스 목록에 추가됩니다." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13985,31 +13985,31 @@ "[찾아보기] 버튼을 사용하여 데이터베이스 파일을 선택합니다." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "현재 사용하고 있는 데이터베이스를 나열합니다." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "데이터베이스 교환" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "문서에 데이터베이스 적용:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "현재 문서의 데이터 원본을 변경합니다." @@ -20064,109 +20064,109 @@ msgstr "현재 문서 사용(_D)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "현재 Writer 문서를 편지 병합 문서의 기반으로 사용합니다." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "새 문서 만들기(_W)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "편지 병합에 사용할 새로운 Writer 문서를 만듭니다." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "기존 문서에서 시작(_E)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "편지 병합 문서의 기반으로 사용할 기존 Writer 문서를 선택합니다." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "서식 파일에서 시작(_E)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "편지 병합 문서를 만드는 데 사용할 서식 파일을 선택합니다." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "최근에 저장한 시작 문서에서 시작(_M)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "기존의 편지 병합 문서를 새 편지 병합 문서의 기반으로 사용합니다." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "문서를 선택합니다." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "찾아보기(_R)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "찾아보기(_R)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "편지 병합의 시작 문서 선택" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22309,49 +22309,49 @@ msgstr "개체" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "유형" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "선택 사항" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "자동 줄바꿈" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "하이퍼링크" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "테두리" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "영역" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "투명도" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "매크로" @@ -27045,7 +27045,7 @@ msgstr "업데이트" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "현재 파일에 대한 통계를 표시합니다." diff -Nru libreoffice-7.3.4/translations/source/ko/vcl/messages.po libreoffice-7.3.5/translations/source/ko/vcl/messages.po --- libreoffice-7.3.4/translations/source/ko/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ko/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-08 09:16+0000\n" "Last-Translator: Sangwoo Park \n" "Language-Team: Korean \n" @@ -2319,169 +2319,169 @@ msgstr "전체 문서를 인쇄합니다." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "사용자 정의" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "인쇄물에 종이 한 페이지 당 인쇄할 슬라이드의 개수를 입력합니다." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "쪽수:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "파일 형식을 선택합니다." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "간격" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "파일 형식을 선택합니다." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "기본 차트 유형의 하위 유형을 선택합니다." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "(페이지 간)" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "정렬 순서를 선택합니다." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "(시트 테두리까지)" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "기본 차트 유형을 선택합니다." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "각 페이지에 경계선 그리기" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "이름이 지정된 마법사 페이지로 이동하려면 클릭합니다." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "브로슈어" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "페이지 레이아웃" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "일반" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "현재 문서, 선택 영역 또는 지정한 페이지를 인쇄합니다. 현재 문서의 인쇄 옵션을 설정할 수도 있습니다." diff -Nru libreoffice-7.3.4/translations/source/kok/chart2/messages.po libreoffice-7.3.5/translations/source/kok/chart2/messages.po --- libreoffice-7.3.4/translations/source/kok/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3723,7 +3723,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/cui/messages.po libreoffice-7.3.5/translations/source/kok/cui/messages.po --- libreoffice-7.3.4/translations/source/kok/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17607,177 +17607,152 @@ msgid "Automatic" msgstr "आपसूक " -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "अदिक काळपट" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/dbaccess/messages.po libreoffice-7.3.5/translations/source/kok/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/kok/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Konkani \n" @@ -3474,74 +3474,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "निकतेंच वापरिल्ले" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "उगडात" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3549,7 +3549,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/extensions/messages.po libreoffice-7.3.5/translations/source/kok/extensions/messages.po --- libreoffice-7.3.4/translations/source/kok/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -310,594 +310,580 @@ msgid "Refresh form" msgstr "परत ताजो अर्जnovsannechyo Orjyo" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "मेळयात" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "धाडात" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "खूप भागांचे" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "मजकूर" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "प्रमाणित (ल्हान)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "प्रमाणित (ल्हान)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "प्रमाणित (ल्हान)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "प्रमाणित (लांब)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM (~C)" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "निवडूंक ना" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "निवड करात" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "स्पश्ट करूंक ना" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सगळ्यो रीकॉर्डSogllyo obhilekh" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "सक्रिय रिकॉर्डSokriy obhilekh" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "सद्याची तारीक" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ना" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "हंय" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "पालक अर्जी (~g)" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "थांबयात" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "कायच नाKitench na" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "एकटे" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "बहु" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "व्याप्ती" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "आडवे" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "उबे" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "मूळ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदत" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "निवडिल्ली नोंद" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "निवडिल्ली नोंदाचो जागो" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "एकटी वळ" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "खूप वळ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "रचनेसयत खूप वळ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (यूनीक्स)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (विंडोज)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "कायच नाKitench na" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "आडवे" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "उबे" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दोनूय" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr " 3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "समतळ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "वयली दावी " #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "दावी केंद्रित" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "तळाक दावी " #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "वयर उजव्यान" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "उजवी मदली" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "तळाक उजवेवटेन" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "वयली दावी " #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "वयर मदली" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "वयर उजवेवटेन" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "सकयल दाव्यान" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "सकयल मदीं" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "सकयल उजव्यान" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केंद्रित" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "अनुरक्षण" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "बदलात" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "कोसळप" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ना" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "दावेकडल्यान उजवेकडेन" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "उजवेकडल्यान दावेवटेन" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "उपवस्त मजकूर दिशा स्थापित वापरात" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "केंद्रीत करता तेन्ना" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "परिच्छेद" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "अक्षरासारके" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पानांत" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "चौकट" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "अक्षराक" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पानांत" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/kok/fpicker/messages.po libreoffice-7.3.5/translations/source/kok/fpicker/messages.po --- libreoffice-7.3.4/translations/source/kok/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "धारिकेचे नाव" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "धारिका प्रकार:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "फकत वाचपाखातीर" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "गुप्तशब्दासयत जतनाय करात" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "आपसूक धारिका नाव विस्तार" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "गाळणी स्थापितांचे सम्पादन" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/sc/messages.po libreoffice-7.3.5/translations/source/kok/sc/messages.po --- libreoffice-7.3.4/translations/source/kok/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25772,97 +25772,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26249,158 +26249,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "मांडावळ करात" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "रंग" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ग्रिड" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भासbhas" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "परीक्षण" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "टीपणां" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्य" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "सम्पादन" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "मांडावळ करात" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्य" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "गट" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "अक्षरसंच" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "सारके करप" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्य" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "भितर घालात" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "बदल न्हयकारप (~u)Madhyom" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "चौकट" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "मांडावळ करात" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ग्रिड" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/kok/sd/messages.po libreoffice-7.3.5/translations/source/kok/sd/messages.po --- libreoffice-7.3.4/translations/source/kok/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4254,109 +4254,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7234,109 +7234,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/sw/messages.po libreoffice-7.3.5/translations/source/kok/sw/messages.po --- libreoffice-7.3.4/translations/source/kok/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10755,20 +10755,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैली " #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14348,38 +14348,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "व्याख्या करात" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्रावज्..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14387,31 +14387,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20720,111 +20720,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्रावज्..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्रावज्..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23011,52 +23011,52 @@ msgstr "वस्त" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकार" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "पर्याय" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "गुठलावप" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपरजोड" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "शीमो" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शकताय" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मॅक्रो" @@ -27949,7 +27949,7 @@ msgstr "सुदार" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/kok/vcl/messages.po libreoffice-7.3.5/translations/source/kok/vcl/messages.po --- libreoffice-7.3.4/translations/source/kok/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/kok/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2346,171 +2346,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "थारायल्ले:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "हाणें" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "म्हायतीपुस्तिका" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/chart2/messages.po libreoffice-7.3.5/translations/source/ks/chart2/messages.po --- libreoffice-7.3.4/translations/source/ks/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3691,7 +3691,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/cui/messages.po libreoffice-7.3.5/translations/source/ks/cui/messages.po --- libreoffice-7.3.4/translations/source/ks/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17590,177 +17590,152 @@ msgid "Automatic" msgstr "خود کاری سے" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "زیادہ مختلف" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/dbaccess/messages.po libreoffice-7.3.5/translations/source/ks/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ks/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:36+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Kashmiri \n" @@ -3450,75 +3450,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "حالئی استیمالكرمُت" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "کھولنا" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3526,7 +3526,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/extensions/messages.po libreoffice-7.3.5/translations/source/ks/extensions/messages.po --- libreoffice-7.3.4/translations/source/ks/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -305,577 +305,563 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "حئصل کرُن" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "پوسٹ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "مواد" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "(معیاری (لكُٹ" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "(معیاری (لكُٹ" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "(معیاری (لكُٹ" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "(معیاری (ز۪یوٹھ" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "منتخب کرو" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "حالیہ تاریخ " #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "نئ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "عئں" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ٹھہرو" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "كہین نئ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "وئحد" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "حد" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "س۪یود" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "كھڈا" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ڈی فالٹ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "منسوخ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "مدد" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "وئحدلائن" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "واریاح لائن" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr " فورمیٹینگ كریو ملٹی لائن سعتھ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (یونیکس) " #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (ونڈوس) " #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "كہین نئ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "س۪یود" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "كھڈا" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "دوْنویئ " #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ہموار" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ہ۪یوركن كھوفُر" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "كھوفُر كُن منزس" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "تلئكنئ كھوفِر كن" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ہیور كُن دچھُن" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "دچھ۪ین كُن منزس " #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "تلئكنئ دَچھ۪ین" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ہ۪یور كُن كھوفر" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ہ۪یور كُن منزس" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ہ۪یور كُن دَچھُن" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "بوْن كْن كھوفر" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "بوْن كُن منزس" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "بوْن كُن دچھُن" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "منزیم" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "محفوظ كریو" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "بدلاوُن" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "گرانا" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "نئ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Left-to-right" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Right-to-left" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "سوپر آرڈینیٹ سیٹینگس استعمال کریں" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "پیراگراف" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "الفاظ جیسے" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "صفحہ میں" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "فریم" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "لفظ میں" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "صفحہ میں" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ks/fpicker/messages.po libreoffice-7.3.5/translations/source/ks/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ks/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -215,61 +215,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "فائلُك ناو:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "فائل ٹائپ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "صرف- پڑھو" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "خفیہ لفظ کےساتھ محفوظ کرو" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "خودکارفائل نام میں وسعت" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "فلٹرسیٹینگ مرتب کرو" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/sc/messages.po libreoffice-7.3.5/translations/source/ks/sc/messages.po --- libreoffice-7.3.4/translations/source/ks/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25852,97 +25852,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26329,157 +26329,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ترتیب" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Color" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "جال" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "زبان" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "دوبارہ جائزہ لینا" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "نوٹس" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "منظر" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "مرتب کرو" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ترتیب" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "منظر" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "گروپ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "فانٹ" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ترتیب وار" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "منظر" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "دئخل کرُن" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "فریم" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ترتیب" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "جال" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ks/sd/messages.po libreoffice-7.3.5/translations/source/ks/sd/messages.po --- libreoffice-7.3.4/translations/source/ks/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4272,109 +4272,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7254,109 +7254,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/sw/messages.po libreoffice-7.3.5/translations/source/ks/sw/messages.po --- libreoffice-7.3.4/translations/source/ks/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10773,20 +10773,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "اسٹائلز" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14386,38 +14386,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "واضح کرو" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "براؤز" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14425,31 +14425,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20769,111 +20769,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "براؤز" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "براؤز" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23070,52 +23070,52 @@ msgstr "آبحیکٹ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ٹائپ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "آپشنس" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "لپیٹنا" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ہائپرلنک" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "کنارے" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "علاقہ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "شفافیت" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28023,7 +28023,7 @@ msgstr "اپ ڈیٹ کریو" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ks/vcl/messages.po libreoffice-7.3.5/translations/source/ks/vcl/messages.po --- libreoffice-7.3.4/translations/source/ks/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ks/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2349,171 +2349,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "کسٹم: " #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "كِن" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "بروشر" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/chart2/messages.po libreoffice-7.3.5/translations/source/ky/chart2/messages.po --- libreoffice-7.3.4/translations/source/ky/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3600,7 +3600,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/cui/messages.po libreoffice-7.3.5/translations/source/ky/cui/messages.po --- libreoffice-7.3.4/translations/source/ky/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17103,176 +17103,152 @@ msgid "Automatic" msgstr "" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/dbaccess/messages.po libreoffice-7.3.5/translations/source/ky/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ky/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3324,73 +3324,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ачуу" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3398,7 +3398,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/extensions/messages.po libreoffice-7.3.5/translations/source/ky/extensions/messages.po --- libreoffice-7.3.4/translations/source/ky/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -291,537 +291,525 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Жок" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ооба" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Токтотуу" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Жок" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/fpicker/messages.po libreoffice-7.3.5/translations/source/ky/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ky/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,55 +213,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/sc/messages.po libreoffice-7.3.5/translations/source/ky/sc/messages.po --- libreoffice-7.3.4/translations/source/ky/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25151,97 +25151,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25603,142 +25603,142 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Көрүү" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Көрүү" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Көрүү" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ky/sd/messages.po libreoffice-7.3.5/translations/source/ky/sd/messages.po --- libreoffice-7.3.4/translations/source/ky/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4159,109 +4159,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7049,109 +7049,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/sw/messages.po libreoffice-7.3.5/translations/source/ky/sw/messages.po --- libreoffice-7.3.4/translations/source/ky/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10482,19 +10482,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13938,37 +13938,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13976,31 +13976,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20055,109 +20055,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22300,49 +22300,49 @@ msgstr "" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27031,7 +27031,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ky/vcl/messages.po libreoffice-7.3.5/translations/source/ky/vcl/messages.po --- libreoffice-7.3.4/translations/source/ky/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ky/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2321,169 +2321,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/chart2/messages.po libreoffice-7.3.5/translations/source/lb/chart2/messages.po --- libreoffice-7.3.4/translations/source/lb/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3631,7 +3631,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/cui/messages.po libreoffice-7.3.5/translations/source/lb/cui/messages.po --- libreoffice-7.3.4/translations/source/lb/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17394,176 +17394,152 @@ msgid "Automatic" msgstr "Automatesch" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/dbaccess/messages.po libreoffice-7.3.5/translations/source/lb/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/lb/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3344,73 +3344,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Opmaachen" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3418,7 +3418,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/extensions/messages.po libreoffice-7.3.5/translations/source/lb/extensions/messages.po --- libreoffice-7.3.4/translations/source/lb/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -296,546 +296,533 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Käschten" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nee" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Jo" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Keen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Einfach" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Beräich" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "~Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Ofbriechen" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hëllef" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Keen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "~Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "~Zentréiert" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ersetzen" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nee" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Paragraphe" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Zeechen" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Op der ~Säit" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Zeechen" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Op der ~Säit" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/lb/fpicker/messages.po libreoffice-7.3.5/translations/source/lb/fpicker/messages.po --- libreoffice-7.3.4/translations/source/lb/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -212,56 +212,56 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fichiersnumm:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/sc/messages.po libreoffice-7.3.5/translations/source/lb/sc/messages.po --- libreoffice-7.3.4/translations/source/lb/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25605,97 +25605,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26079,152 +26079,152 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Faarf" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Raster" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Sprooch" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Kommentaren" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Weisen" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Beaarbechten" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Weisen" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupp" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Schrëft" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Aus~riichten" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Weisen" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Aginn" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Raster" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/lb/sd/messages.po libreoffice-7.3.5/translations/source/lb/sd/messages.po --- libreoffice-7.3.4/translations/source/lb/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4231,109 +4231,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7153,109 +7153,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/sw/messages.po libreoffice-7.3.5/translations/source/lb/sw/messages.po --- libreoffice-7.3.4/translations/source/lb/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10694,19 +10694,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14242,37 +14242,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Duerchsichen..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14280,31 +14280,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20502,111 +20502,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Duerchsichen..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Duerchsichen..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22769,49 +22769,49 @@ msgstr "Objet" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Optiounen" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Konturen" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparenz" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27618,7 +27618,7 @@ msgstr "~Aktualiséieren" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lb/vcl/messages.po libreoffice-7.3.5/translations/source/lb/vcl/messages.po --- libreoffice-7.3.4/translations/source/lb/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lb/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2343,169 +2343,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "vun" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/chart2/messages.po libreoffice-7.3.5/translations/source/lo/chart2/messages.po --- libreoffice-7.3.4/translations/source/lo/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-12-06 10:44+0000\n" "Last-Translator: Saikeo \n" "Language-Team: Lao \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/cui/messages.po libreoffice-7.3.5/translations/source/lo/cui/messages.po --- libreoffice-7.3.4/translations/source/lo/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17521,177 +17521,152 @@ msgid "Automatic" msgstr "ອັດຕະໂນມັດ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~ຄວາມແຕກຕ່າງສູງ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/dbaccess/messages.po libreoffice-7.3.5/translations/source/lo/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/lo/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Lao \n" @@ -3471,74 +3471,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ໃຊ້ໃຫມ່" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ເປີດ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3546,7 +3546,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/extensions/messages.po libreoffice-7.3.5/translations/source/lo/extensions/messages.po --- libreoffice-7.3.4/translations/source/lo/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "ລີເຟຣດສແບບຟອມ" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ໄດ້" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "ຝາກ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ຫຼາຍສ່ວນ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ຂໍ້ຄວາມ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ມາດຕະຖານ (ສັ້ນ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ມາດຕະຖານ (ສັ້ນ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ມາດຕະຖານ (ສັ້ນ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ມາດຕະຖານ (ຍາວ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ບໍ່ຖືກເລືອກ" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ຖືກເລືອກ" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ບໍ່ໄດ້ກໍານົດ" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ການບັນທຶກທັງຫມົດ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ບັນທຶກການເຄື່ອນໄຫວ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ໜ້າປະຈຸບັນ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ບໍ່ແມ່ນ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ແມ່ນ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ແບບຟອມຫຼັກ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_ວ່າງເປົ່າ" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_ຫຼັກ" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_ຕົນເອງ" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_ເທິງ" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ບໍ່ມີຫຍັງ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ດຽວ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ຫຼາຍ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ຂອບເຂດ" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ແນວນອນ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ແນວຕັ້ງ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ຄ່າທີ່ກຳນົດໄວ້ໃຫ້ແລ້ວ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ຕົກລົງ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ຍົກເລີກ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ຊ່ວຍເຫຼືອ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ລາຍການທີ່ເລືອກ" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ຕໍາແຫນ່ງຂອງລາຍການທີ່ເລືອກ" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ເສັ້ນດຽວ" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ຫຼາຍເສັ້ນ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ຮູບແບບຂອງຫຼາຍເສັ້ນ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ບໍ່ມີຫຍັງ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ແນວນອນ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ແນວຕັ້ງ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ທັງສອງ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3 ມິຕິ" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ແບນ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ເທີງຂ້າງຊາຍ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ເຄີ່ງກາງຂ້າງຊ້າຍ" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ທາງລຸ່ມຂ້າງຊ້າຍ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ເທີງຊ້າງຂວາ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ເຄີ່ງກາງຂ້າງຂວາ" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ທາງລຸ່ມຂ້າງຂວາ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ເທີງຂ້າງຊ້າຍ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ເທີງເຄີ່ງກາງ" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ເທີງຂ້າງຂວາ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ກ້ອງຂ້າງຊ້າຍ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ກ້ອງເຄີ່ງກາງ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ກ້ອງຂ້າງຂວາ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ຈຸດສູນກາງ" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ສະຫງວນ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ວາງໃສ່ແທນທີ່" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ຍຸບ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ບໍ່" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "ເກັບອັດຕາສ່ວນ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ເຮັດໃຫ້ເໝາະສົມຂະໜາດ" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ຊ້າຍຫາຂວາ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ຂວາຫາຊ້າຍ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ນຳໃຊ້ການຕັ້ງຄ່າວັດຖຸທີ່ມີປະສິດທິພາບ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ບໍ່ເຄີຍ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ເມື່ອສຸມໃສ່" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ເລື້ອຍໆ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ຫຍໍ້ໜ້າ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ເປັນຕົວອັກສອນ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ທີ່ໜ້າ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ຂອບ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ຕົວອັກສອນ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ທີ່ໜ້າ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "ທີ່ເຊວ" diff -Nru libreoffice-7.3.4/translations/source/lo/fpicker/messages.po libreoffice-7.3.5/translations/source/lo/fpicker/messages.po --- libreoffice-7.3.4/translations/source/lo/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ຊື່ແຟ້ມຂໍ້ມູນ:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ຊະນິດ _ແຟ້ມ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_ອ່ານໄດ້ຢ່າງດຽວ" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ບັນທຶກດ້ວຍລະຫັດຜ່ານ" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ໃສ່ນາມສະກຸນຂອງແຟ້ມ_ອັດຕະໂນມັດ" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ການແກ້ໄຂການຕັ້ງຄ່າ _ຕົວກັ່ນຕອງ" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "ເຂົ້າລະຫັດດ້ວຍ ~GPG key" diff -Nru libreoffice-7.3.4/translations/source/lo/sc/messages.po libreoffice-7.3.5/translations/source/lo/sc/messages.po --- libreoffice-7.3.4/translations/source/lo/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25715,97 +25715,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_ເຄື່ອງມື" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26191,157 +26191,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ຈັດແຈງ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ສີ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ຕາໜ່າງ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ພາສາ" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "ສະແດງຄືນ" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ບັນທຶກ" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ສະແດງເບິ່ງ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ແກ້ໄຂ" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ຈັດແຈງ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ສະແດງເບິ່ງ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ກຸ່ມ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ແບບຕົວອັກສອນ" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ຈັດລຽນ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ສະແດງເບິ່ງ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ແຊກໃສ່" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ຂອບ" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ຈັດແຈງ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ຕາໜ່າງ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/lo/sd/messages.po libreoffice-7.3.5/translations/source/lo/sd/messages.po --- libreoffice-7.3.4/translations/source/lo/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4248,109 +4248,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7227,109 +7227,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/sw/messages.po libreoffice-7.3.5/translations/source/lo/sw/messages.po --- libreoffice-7.3.4/translations/source/lo/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10736,20 +10736,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ຮູບແບບ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14343,37 +14343,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ເຂົ້າເບິ່ງ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14381,31 +14381,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20721,111 +20721,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ເຂົ້າເບິ່ງ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ເຂົ້າເບິ່ງ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23015,53 +23015,53 @@ msgstr "ວັດຖຸ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ຊະນິດ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "ທາງເລືອກ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~ຫຸ້ມຫໍ່" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ເຊື່ອມຕໍ່" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ຂອບ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ຄວາມໂປງໃສ" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27969,7 +27969,7 @@ msgstr "ປ່ຽນໃຫມ່" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lo/vcl/messages.po libreoffice-7.3.5/translations/source/lo/vcl/messages.po --- libreoffice-7.3.4/translations/source/lo/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lo/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2346,171 +2346,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ລູກຄ້າ:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ດ້ວຍ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ແຜ່ນພັບ" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lt/basic/messages.po libreoffice-7.3.5/translations/source/lt/basic/messages.po --- libreoffice-7.3.4/translations/source/lt/basic/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/basic/messages.po 2022-07-15 19:12:51.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-09-20 13:02+0200\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507243363.000000\n" #. CacXi @@ -900,3 +900,5 @@ "$ERR\n" "Additional information: $MSG" msgstr "" +"$ERR\n" +"Papildoma informacija: $MSG" diff -Nru libreoffice-7.3.4/translations/source/lt/chart2/messages.po libreoffice-7.3.5/translations/source/lt/chart2/messages.po --- libreoffice-7.3.4/translations/source/lt/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -3602,7 +3602,7 @@ msgstr "Nustatykite stulpelinės ir linijinės diagramos tipo linijų skaičių." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Pasirinkite diagramos tipą." diff -Nru libreoffice-7.3.4/translations/source/lt/connectivity/messages.po libreoffice-7.3.5/translations/source/lt/connectivity/messages.po --- libreoffice-7.3.4/translations/source/lt/connectivity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/connectivity/messages.po 2022-07-15 19:12:51.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-09-10 23:10+0200\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1538592923.000000\n" #. 9KHB8 @@ -21,7 +21,7 @@ #: connectivity/inc/strings.hrc:25 msgctxt "STR_NO_CONNECTION_GIVEN" msgid "No connection to the database exists." -msgstr "" +msgstr "Nėra ryšio su duomenų baze." #. 5BYEX #: connectivity/inc/strings.hrc:26 diff -Nru libreoffice-7.3.4/translations/source/lt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po libreoffice-7.3.5/translations/source/lt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po --- libreoffice-7.3.4/translations/source/lt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2022-07-15 19:12:51.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-10-20 13:07+0200\n" -"PO-Revision-Date: 2014-02-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lithuanian \n" "Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1392715126.000000\n" #. DfEKx @@ -34,4 +34,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird External" -msgstr "" +msgstr "Išorinis „Firebird“" diff -Nru libreoffice-7.3.4/translations/source/lt/cui/messages.po libreoffice-7.3.5/translations/source/lt/cui/messages.po --- libreoffice-7.3.4/translations/source/lt/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2021-11-11 07:36+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2133,7 +2133,7 @@ #: cui/inc/tipoftheday.hrc:50 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home" -msgstr "Sau patogią „%PRODUCTNAME“ naudotojo sąsają galima rinkis iš kelių siūlomų sąsajos variantų" +msgstr "Sau patogią „%PRODUCTNAME“ naudotojo sąsają galima rinktis iš kelių siūlomų sąsajos variantų" #. m8rYd #: cui/inc/tipoftheday.hrc:51 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatinis" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Ryškus kontrastas" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasikinis" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Nustatomas mygtukų juostų ir dialogo langų mygtukų stilius." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Mygtukų stilius:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Reikės paleisti programą iš naujo" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Naudoti aparatinį spartinimą" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Kompiuterio grafinio adapterio aparatinės galimybės tiesiogiai naudojamos vaizdui ekrane pagerinti." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Naudoti glodinimą" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Jei tokia funkcija leidžiama sistemoje, galima įjungti ar išjungti grafinių elementų glodinimą. Jei glodinimas įjungtas, daugelis grafinių objektų atrodys glotnesni, be aštrių kontrastų." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Rodymui visada naudoti „Skia“" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Reikės paleisti programą iš naujo. Dėl šios parinkties nebebus naudojamos grafikos tvarkyklės." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "„Skia“ yra įjungta." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "„Skia“ yra išjungta." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafinis vaizdas" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Rodyti šriftų peržiūrą" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Šriftų pavadinimai sąrašuose (pavyzdžiui, šriftų išskleidžiamajame sąraše Formatavimo mygtukų juostoje) rodomi atitinkamu šriftu." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ekrano šriftų glodinimas" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Jei parinktis pažymėta, teksto rašmenys ekrane atrodys tolygesni." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "nuo:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Šriftų sąrašai" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lt/dbaccess/messages.po libreoffice-7.3.5/translations/source/lt/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/lt/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -3393,73 +3393,73 @@ msgstr "Kurti naują duomenų bazę" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Įtaisytoji duomenų bazė:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Atverti esamos duomenų bazės failą" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Neseniai naudoti" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Atverti" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Prisijungti prie esamos duomenų bazės" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3467,7 +3467,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lt/dictionaries/es.po libreoffice-7.3.5/translations/source/lt/dictionaries/es.po --- libreoffice-7.3.4/translations/source/lt/dictionaries/es.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/dictionaries/es.po 2022-07-15 19:12:51.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: 2021-01-14 18:08+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" +"Last-Translator: Modestas Rimkus \n" +"Language-Team: Lithuanian \n" +"Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" #. RvfxU #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for all variants of Spanish." -msgstr "" +msgstr "Ispanų kalbos rašybos tikrinimo ir žodžių kėlybos žodynai bei tezauras visiems ispanų kalbos variantams." diff -Nru libreoffice-7.3.4/translations/source/lt/dictionaries/pt_BR.po libreoffice-7.3.5/translations/source/lt/dictionaries/pt_BR.po --- libreoffice-7.3.4/translations/source/lt/dictionaries/pt_BR.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/dictionaries/pt_BR.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2017-03-20 20:42+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1490042553.000000\n" @@ -24,4 +24,4 @@ "dispname\n" "description.text" msgid "Spelling, thesaurus, hyphenation and grammar checking tools for Brazilian Portuguese" -msgstr "" +msgstr "Portugalų (Brazilija) kalbos rašybos, gramatikos tikrinimo ir žodžių kėlybos žodynai bei tezauras" diff -Nru libreoffice-7.3.4/translations/source/lt/extensions/messages.po libreoffice-7.3.5/translations/source/lt/extensions/messages.po --- libreoffice-7.3.4/translations/source/lt/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -291,540 +291,528 @@ msgid "Refresh form" msgstr "Atnaujinti formą" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Daugiadalis" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekstas" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Įprastas (trumpas)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Įprastas (trumpas MM)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Įprastas (trumpas MMMM)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Įprastas (ilgas)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "dd/mm/MM" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "mm/dd/MM" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "MM/mm/dd" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "dd/mm/MMMM" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "mm/dd/MMMM" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "MMMM/mm/dd" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "MM-mm-dd" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "MMMM-mm-dd" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nepažymėta" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Pažymėta" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Neaprašyta" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Visi įrašai" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktyvusis įrašas" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Veikiamasis puslapis" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Taip" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Aukštesnio lygmens forma" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Jokios" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Viengubas" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Daugialypė" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Sritis" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontaliai" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikaliai" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Numatyta" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Gerai" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Atsisakyti" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Žinynas" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Pažymėtas įrašas" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pažymėto įrašo vieta" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Viena eilutė" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Kelios eilutės" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Kelios formatuotos eilutės" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Jokios" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontalioji" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikalioji" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Abi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Trimatis" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plokščias" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Kairėje viršuje" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Kairėje centre" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Kairėje apačioje" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Dešinėje viršuje" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Dešinėje centre" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Dešinėje apačioje" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Aukščiau kairėje" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Aukščiau centre" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Aukščiau dešinėje" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Žemiau kairėje" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Žemiau centre" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Žemiau dešinėje" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centre" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Išlaikyti" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Keisti" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Sutraukti" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Išlaikyti proporcijas" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Pritaikyti prie dydžio" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Iš kairės į dešinę" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Iš dešinės į kairę" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Naudoti ankstesnio objekto nuostatas" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Niekada" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kai židinyje" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Visada" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Prie pastraipos" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kaip rašmenį" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Prie puslapio" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Prie kadro" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Prie rašmens" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Prie puslapio" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Prie langelio" diff -Nru libreoffice-7.3.4/translations/source/lt/filter/source/config/fragments/internalgraphicfilters.po libreoffice-7.3.5/translations/source/lt/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-7.3.4/translations/source/lt/filter/source/config/fragments/internalgraphicfilters.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/filter/source/config/fragments/internalgraphicfilters.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2020-04-29 21:35+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1482836418.000000\n" @@ -245,7 +245,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphics" -msgstr "" +msgstr "PNG – Portable Network Graphics" #. 9C3pW #: png_Import.xcu @@ -255,7 +255,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphics" -msgstr "" +msgstr "PNG – Portable Network Graphics" #. CCFfq #: ppm_Import.xcu diff -Nru libreoffice-7.3.4/translations/source/lt/fpicker/messages.po libreoffice-7.3.5/translations/source/lt/fpicker/messages.po --- libreoffice-7.3.4/translations/source/lt/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -216,55 +216,55 @@ msgstr "Keitimo data" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Failo vardas:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Failo tipas:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Tik skaitymui" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Įrašyti su slaptažodžiu" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Failo prievardį parenka programa" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Taisyti filtro nuostatas" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Užšifruoti GPG raktu" diff -Nru libreoffice-7.3.4/translations/source/lt/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/lt/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/lt/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2021-01-31 19:36+0000\n" -"Last-Translator: Tolmantas \n" -"Language-Team: Lithuanian \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: Modestas Rimkus \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564947637.000000\n" #. sZfWF @@ -1607,7 +1607,7 @@ "par_id3151354\n" "help.text" 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 CommandCtrl, and then click this icon." -msgstr "Padidina struktūros lygį vienu pažymėtos antraštės bei antraščių, kurios atsiranda žemiau antraštės. Jeigu norite padidinti struktūros lygį tik tai pažymėtos antraštės, laikykite nuspaudę KomandaVald, ir tada paspauskite šitą piktogramą." +msgstr "Padidinamas pažymėtos antraštės ir visų žemiau esančių antraščių struktūros lygmuo. Jei norite padidinti tik pažymėtos antraštės struktūros lygmenį, laikykite nuspaustą klavišą CommandVald ir tuomet spustelėkite šį mygtuką." #. MZCz3 #: 02110000.xhp @@ -1625,7 +1625,7 @@ "par_id3153697\n" "help.text" msgid "Promote level" -msgstr "Aukštesnis lygis" +msgstr "Lygmeniu aukštyn" #. 7UW7u #: 02110000.xhp @@ -1634,7 +1634,7 @@ "hd_id3153714\n" "help.text" msgid "Demote Level" -msgstr "Pažeminti lygmenį" +msgstr "Lygmeniu žemyn" #. 62CNE #: 02110000.xhp @@ -1643,7 +1643,7 @@ "par_id3150707\n" "help.text" 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 CommandCtrl, and then click this icon." -msgstr "Sumažina struktūros lygį vienu pažymėtos antraštės bei antraščių, kurios atsiranda žemiau antraštės. Jeigu norite sumažinti struktūros lygį tik tai pažymėtos antraštės, laikykite nuspaudę KomandaVald, ir tada paspauskite šitą piktogramą." +msgstr "Sumažinamas pažymėtos antraštės ir visų žemiau esančių antraščių struktūros lygmuo. Jei norite sumažinti tik pažymėtos antraštės struktūros lygmenį, laikykite nuspaustą klavišą CommandVald ir tuomet spustelėkite šį mygtuką." #. Bb4uA #: 02110000.xhp @@ -1661,7 +1661,7 @@ "par_id3147324\n" "help.text" msgid "Demote level" -msgstr "Žemesnis lygis" +msgstr "Lygmeniu žemyn" #. ZR7Bi #: 02110000.xhp @@ -1670,7 +1670,7 @@ "hd_id3145571\n" "help.text" msgid "Promote Chapter" -msgstr "Paaukštinti skyrių" +msgstr "Perkelti skyrių aukštyn" #. M92CK #: 02110000.xhp @@ -1679,7 +1679,7 @@ "par_id3145587\n" "help.text" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down CommandCtrl, and then click this icon." -msgstr "Perkelia pažymėtą antraštę ir tekstą žemiau antraštės, aukštyn viena antraštės pozicija žvalgiklyje ir dokumente. Norėdami perkelti tik tai pažymėtą antraštę, o ne ir tekstą susietą su antrašte, laikykite nuspaudęKomandaVald, ir tada paspauskite šitą piktogramą." +msgstr "Pažymėta antraštė ir po ja esantis tekstas žvalgiklyje ir dokumente perkeliami viena antraštės pozicija aukštyn. Jei norite perkelti tik pažymėtą antraštę be su ja susieto teksto, nuspauskite klavišą CommandVald ir tuomet spustelėkite šį mygtuką." #. ofws9 #: 02110000.xhp @@ -1697,7 +1697,7 @@ "par_id3149147\n" "help.text" msgid "Chapter Up" -msgstr "Skyrius aukštyn" +msgstr "Perkeli skyrių aukštyn" #. yBJ2q #: 02110000.xhp @@ -1706,7 +1706,7 @@ "hd_id3154424\n" "help.text" msgid "Demote Chapter" -msgstr "Pažeminti skyrių" +msgstr "Perkelti skyrių žemyn" #. b84qh #: 02110000.xhp @@ -1715,7 +1715,7 @@ "par_id3154440\n" "help.text" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down CommandCtrl, and then click this icon." -msgstr "Perkelia pažymėtą antraštę ir tekstą žemiau antraštės, žemyn viena antraštės pozicija žvalgiklyje ir dokumente. Norėdami perkelti tik tai pažymėtą antraštę, o ne ir tekstą susietą su antrašte, laikykite nuspaudę KomandaVald, ir tada paspauskite šitą piktogramą." +msgstr "Pažymėta antraštė ir po ja esantis tekstas žvalgiklyje ir dokumente perkeliami viena antraštės pozicija žemyn. Jei norite perkelti tik pažymėtą antraštę be su ja susieto teksto, nuspauskite klavišą CommandVald ir tuomet spustelėkite šį mygtuką." #. xgyf2 #: 02110000.xhp @@ -1733,7 +1733,7 @@ "par_id3150870\n" "help.text" msgid "Chapter down" -msgstr "Skyrius žemyn" +msgstr "Perkelti skyrių žemyn" #. R8cwF #: 02110000.xhp diff -Nru libreoffice-7.3.4/translations/source/lt/sc/messages.po libreoffice-7.3.5/translations/source/lt/sc/messages.po --- libreoffice-7.3.4/translations/source/lt/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -25473,97 +25473,97 @@ msgstr "Rodymas" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Paveikslas" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Paveikslas" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Braižymas" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Braižymas" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objektas" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Objektas" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Medija" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "Medija" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Forma" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Forma" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Plėtiniai" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Plėtiniai" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Priemonės" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Priemonės" @@ -25924,147 +25924,147 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Išdėstymas" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Spalva" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Tinklelis" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Kalba:" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Peržiūra" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Komentarus" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Palyginti" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Rodymas" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Braižymas" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Keitimas" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Išdėstymas" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Rodymas" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupuoti" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "Trimatis vaizdas" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Šriftas" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Lygiuotė" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Rodymas" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Įterpti" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Medija" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Kadras" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Išdėstymas" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Tinklelis" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/lt/sd/messages.po libreoffice-7.3.5/translations/source/lt/sd/messages.po --- libreoffice-7.3.4/translations/source/lt/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -4189,109 +4189,109 @@ msgstr "Lentelė" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Paveikslas" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Paveikslas" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Braižymas" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Braižymas" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objektas" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objektas" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Medija" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Medija" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Forma" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Forma" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Pagrindas" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Pagrindas" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "Trimatis vaizdas" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "Trimatis vaizdas" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Plėtiniai" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Plėtiniai" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Priemonės" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Priemonės" @@ -7092,109 +7092,109 @@ msgstr "Lentelė" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Paveikslas" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Paveikslas" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Braižymas" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Braižymas" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objektas" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objektas" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Medija" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Medija" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Forma" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Forma" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Pagrindas" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Pagrindas" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "Trimatis vaizdas" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "Trimatis vaizdas" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Plėtiniai" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Plėtiniai" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Priemonės" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Priemonės" diff -Nru libreoffice-7.3.4/translations/source/lt/sfx2/messages.po libreoffice-7.3.5/translations/source/lt/sfx2/messages.po --- libreoffice-7.3.4/translations/source/lt/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559764817.000000\n" #. bHbFE @@ -4735,7 +4735,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:205 msgctxt "startcenter|open_recent" msgid "_Recent Documents" -msgstr "" +msgstr "Vėliausi dokumentai" #. BnkvG #: sfx2/uiconfig/ui/startcenter.ui:229 diff -Nru libreoffice-7.3.4/translations/source/lt/sw/messages.po libreoffice-7.3.5/translations/source/lt/sw/messages.po --- libreoffice-7.3.4/translations/source/lt/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564313441.000000\n" #. v3oJv @@ -4727,7 +4727,7 @@ #: sw/inc/strings.hrc:458 msgctxt "STR_TEXT_CORRECTION" msgid "Text Correction" -msgstr "Teksto kryptis" +msgstr "" #. ZPCQf #: sw/inc/strings.hrc:459 @@ -10508,19 +10508,19 @@ msgstr "Patraukia pažymėtą pastraipos stilių vienu lygiu žemyn rodyklės hierarchijoje." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stilius" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiliai" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Sukuria rodyklės įrašą pagal nurodytus pastraipų stilius." @@ -13968,37 +13968,37 @@ msgstr "Duomenų bazių keitimas" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Apibrėžti" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Naudojamos duomenų bazės" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Prieinamos duomenų bazės" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Parinkti..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Atveria failą pasirinkti duomenų bazės failą (*.odb). Pasirinktas failas būna pridedamas į galimų duomenų bazių sąrašą." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14008,31 +14008,31 @@ "Spustelėję mygtuką „Parinkti“, galėsite nurodyti duomenų bazės failą." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Surikiuoja dabar naudojamas duomenų bazes." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Surikiuoja duomenų bazes, kurios yra užregistruotos %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Duomenų bazių keitimas" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Duomenų bazė, pritaikyta dokumentui:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Pakeisti duomenų šaltinius esamam dokumentui." @@ -20094,109 +20094,109 @@ msgstr "Naudoti dabartinį dokumentą" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Naudoja dabartinį tekstų rengyklės dokumentą kaip pagrindą laiškų komponavimo dokumentui." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Sukurti naują dokumentą" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Sukuria naują tekstų rengyklės dokumentą, skirtą laiškų komponavimui." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Pradėti komponavimą nuo esamo dokumento" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Pasirinkite esamą tekstų rengyklės dokumentą naudoti kaip pagrindą laiškų komponavimo dokumentui." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Pradėti komponavimą nuo šablono" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Pasirinkite šabloną su kuriuo norite sukurti savo laiškų komponavimo dokumentą." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Pradėti komponavimą nuo neseniai įrašyto pradinio dokumento" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Naudoti esamą laiškų komponavimo dokumentą kaip pagrindą naujam laiškų komponavimo dokumentui." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Pasirinkite dokumentą." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Parinkti…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Nurodykite tekstų rengyklės dokumentą, kurį norite naudoti ir tada paspauskite Atverti." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Parinkti…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Atveria šablono parinkiklio dialogo langą." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Parinkite pradinį dokumentą laiškų komponavimui" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Nurodykite dokumentą, kurį norite naudoti kaip pagrindą laiškų komponavimo dokumentui." @@ -20649,7 +20649,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 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 "Didina pažymėtos antraštės struktūros lygį vienetu ir antraščių, kurios yra žemiau jos. Norėdami padidinti tik pažymėtos antraštės struktūros lygį, laikykite nuspaudę Vald ir tada paspauskite šią piktogramą." +msgstr "Padidinamas pažymėtos antraštės ir visų žemiau esančių antraščių struktūros lygmuo. Jei norite padidinti tik pažymėtos antraštės struktūros lygmenį, laikykite nuspaustą klavišą „Vald“ ir tuomet spustelėkite šį mygtuką." #. A7vWQ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 @@ -20661,7 +20661,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 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 "Mažina pažymėtos antraštės struktūros lygį vienetu ir antraščių, kurios yra žemiau jos. Norėdami pamažinti tik pažymėtos antraštės struktūros lygį, laikykite nuspaudę Vald ir tada paspauskite šią piktogramą." +msgstr "Sumažinamas pažymėtos antraštės ir visų žemiau esančių antraščių struktūros lygmuo. Jei norite sumažinti tik pažymėtos antraštės struktūros lygmenį, laikykite nuspaustą klavišą „Vald“ ir tuomet spustelėkite šį mygtuką." #. SndsZ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -20673,7 +20673,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:606 msgctxt "navigatorpanel|extended_tip|chapterup" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Perkelia pažymėtą antraštę ir tekstą žemiau jos viena antraštes pozicija aukščiau žvalgiklyje ir dokumente. Norėdami perkelti pažymėtą antraštę ir ne tekstą susijusį su antrašte, laikykite paspaudę Vald ir tuo pačiu metu paspauskite šią piktogramą." +msgstr "Pažymėta antraštė ir po ja esantis tekstas žvalgiklyje ir dokumente perkeliami viena antraštės pozicija aukštyn. Jei norite perkelti tik pažymėtą antraštę be su ja susieto teksto, nuspauskite klavišą „Vald“ ir tuomet spustelėkite šį mygtuką." #. MRuAa #: sw/uiconfig/swriter/ui/navigatorpanel.ui:618 @@ -20685,7 +20685,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:622 msgctxt "navigatorpanel|extended_tip|chapterdown" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Perkelia pažymėtą antraštę ir tekstą žemiau jos viena antraštes pozicija žemiau žvalgiklyje ir dokumente. Norėdami perkelti pažymėtą antraštę ir ne tekstą susijusį su antrašte, laikykite paspaudę Vald ir tuo pačiu metu paspauskite šią piktogramą." +msgstr "Pažymėta antraštė ir po ja esantis tekstas žvalgiklyje ir dokumente perkeliami viena antraštės pozicija žemyn. Jei norite perkelti tik pažymėtą antraštę be su ja susieto teksto, nuspauskite klavišą „Vald“ ir tuomet spustelėkite šį mygtuką." #. mHVom #: sw/uiconfig/swriter/ui/navigatorpanel.ui:644 @@ -22355,49 +22355,49 @@ msgstr "Objektas" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Padėtis ir dydis" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Parinktys" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Teksto laužymas" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hipersaitas" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kraštinės" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Sritis" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Skaidrumas" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makrokomanda" @@ -27111,7 +27111,7 @@ msgstr "Atnaujinti" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Čia rodoma veikiamojo dokumento statistika." diff -Nru libreoffice-7.3.4/translations/source/lt/uui/messages.po libreoffice-7.3.5/translations/source/lt/uui/messages.po --- libreoffice-7.3.4/translations/source/lt/uui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/uui/messages.po 2022-07-15 19:12:51.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-11-19 15:45+0100\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1556733590.000000\n" #. DLY8p @@ -660,6 +660,10 @@ "Open document read-only, or ignore own file locking and open the document for editing.\n" "Select Notify to open read-only and get notified when the document becomes editable." msgstr "" +"Dokumentas „$(ARG1)“ yra jūsų užblokuotas taisymui kitoje programoje nuo $(ARG2).\n" +"\n" +"Atverkite dokumentą tik skaitymui arba nepaisykite savos blokuotės ir atverkite dokumentą taisymui.\n" +"Spustelėkite „Pranešti“, jei norite atverti dokumentą tik skaitymui ir gauti pranešimą, kai dokumentą bus galima taisyti." #. 8mKMg #: uui/inc/strings.hrc:34 @@ -671,7 +675,7 @@ #: uui/inc/strings.hrc:35 msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN" msgid "~Notify" -msgstr "" +msgstr "Pranešti" #. ThAZk #: uui/inc/strings.hrc:36 @@ -735,6 +739,9 @@ "\n" "Select Notify to open read-only and get notified when the document becomes editable." msgstr "" +"Nepavyko sukurti blokuotės failo išskirtinei „%PRODUCTNAME“ programos prieigai, nes nepakanka teisių sukurti blokuotės failą reikiamoje vietoje, arba nepakanka vietos diske.\n" +"\n" +"Spustelėkite „Pranešti“, jei norite atverti dokumentą tik skaitymui ir gauti pranešimą, kai dokumentą bus galima taisyti." #. CaBXF #: uui/inc/strings.hrc:47 @@ -746,7 +753,7 @@ #: uui/inc/strings.hrc:48 msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN" msgid "~Notify" -msgstr "" +msgstr "Pranešti" #. u5nuY #: uui/inc/strings.hrc:50 @@ -765,6 +772,12 @@ "Open document read-only or open a copy of the document for editing.\n" "Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)" msgstr "" +"Dokumentas „$(ARG1)“ yra užblokuotas taisymui naudotojo:\n" +"\n" +"$(ARG2)\n" +"\n" +"Atverkite dokumentą tik skaitymui, arba atverkite dokumento kopiją taisymui.\n" +"Spustelėkite „Pranešti“, jei norite atverti dokumentą tik skaitymui ir gauti pranešimą, kai dokumentą bus galima taisyti.$(ARG3)" #. VF7vT #: uui/inc/strings.hrc:52 @@ -786,7 +799,7 @@ #: uui/inc/strings.hrc:54 msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN" msgid "~Notify" -msgstr "" +msgstr "Pranešti" #. TsA54 #: uui/inc/strings.hrc:55 @@ -944,6 +957,9 @@ "\n" "Select Notify to open read-only and get notified when the document becomes editable." msgstr "" +"Blokuotės failas yra sugadintas ir tikriausiai tuščias. Sugadintą blokuotės failą galima pašalinti atvėrus dokumentą tik skaitymui ir vėl jį užvėrus.\n" +"\n" +"Spustelėkite „Pranešti“, jei norite atverti dokumentą tik skaitymui ir gauti pranešimą, kai dokumentą bus galima taisyti." #. fKEYB #: uui/inc/strings.hrc:80 @@ -955,13 +971,13 @@ #: uui/inc/strings.hrc:81 msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN" msgid "~Notify" -msgstr "" +msgstr "Pranešti" #. rBAR3 #: uui/inc/strings.hrc:83 msgctxt "STR_RELOADEDITABLE_TITLE" msgid "Document is now editable" -msgstr "" +msgstr "Dokumentą dabar galima taisyti" #. cVZuC #: uui/inc/strings.hrc:84 @@ -971,12 +987,15 @@ "\n" "Reload this document for editing?" msgstr "" +"Dokumentą „$(ARG1)“ dabar galima taisyti \n" +"\n" +"Įkelti dokumentą iš naujo taisymui?" #. vynDE #: uui/inc/strings.hrc:85 msgctxt "STR_RELOADEDITABLE_BTN" msgid "~Reload" -msgstr "" +msgstr "Įkelti iš naujo" #. 45x3T #: uui/uiconfig/ui/authfallback.ui:8 diff -Nru libreoffice-7.3.4/translations/source/lt/vcl/messages.po libreoffice-7.3.5/translations/source/lt/vcl/messages.po --- libreoffice-7.3.4/translations/source/lt/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-08-08 17:14+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -2320,169 +2320,169 @@ msgstr "Spausdinkite kelis puslapius viename popieriaus lakšte." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Nurodyti" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Pasirinkite, kiek puslapių spausdinate viename popieriaus lakšte." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Puslapiai:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Pasirinkite eilučių skaičių." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "x" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Pasirinkite stulpelių skaičių." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Paraštė:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Kiekviename popieriaus lakšte pasirinkite paraštę tarp atskirų puslapių." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "tarp puslapių" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Atstumas:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Pasirinkite paraštę tarp atspausdinto teksto ir popieriaus krašto." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "iki lapo krašto" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Tvarka:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Iš kairės į dešinę ir žemyn" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Iš viršaus į apačią ir dešinėn" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Iš viršaus žemyn ir kairėn" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Iš dešinės į kairę ir žemyn" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Pasirinkite spausdinamų puslapių tvarką." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Kiekvieną puslapį apvesti rėmeliu" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Pažymėkite, kad aplink kiekvieną puslapį būtų rėmelis." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošiūra" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Pakeiskite spausdinimo puslapių išdėstymą kiekviename popieriaus lape. Peržiūra rodo, kaip atrodys kiekvienas galutinis popieriaus lapas." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Puslapių išdėstymas" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Bendrosios parinktys" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Spausdina dabartinį dokumentą, atranką ar nurodytus puslapius. Taip pat galite nustatyti dabartinio dokumento spausdinimo parinktis." diff -Nru libreoffice-7.3.4/translations/source/lt/xmlsecurity/messages.po libreoffice-7.3.5/translations/source/lt/xmlsecurity/messages.po --- libreoffice-7.3.4/translations/source/lt/xmlsecurity/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lt/xmlsecurity/messages.po 2022-07-15 19:12:51.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-29 16:04+0200\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Modestas Rimkus \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\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 || 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.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1558818671.000000\n" #. EyJrF @@ -429,19 +429,19 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:89 msgctxt "digitalsignaturesdialog|dochint" msgid "The following have signed the document content: " -msgstr "Asmenys, pasirašę dokumentą:" +msgstr "Asmenys, pasirašę dokumentą: " #. GwzVw #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:133 msgctxt "digitalsignaturesdialog|signed" msgid "Signed by " -msgstr "Pasirašė" +msgstr "Pasirašė " #. MHrgG #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:146 msgctxt "digitalsignaturesdialog|issued" msgid "Digital ID issued by " -msgstr "Skaitmeninį identifikatorių išdavė" +msgstr "Skaitmeninį identifikatorių išdavė " #. DSCb7 #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:159 @@ -537,13 +537,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 "Bent vienas parašas yra negaliojantis: dokumentas pasirašytas tik dalinai." #. 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 "Bent vienas parašas yra negaliojantis: nepavyko patikrinti liudijimo." #. DFTZB #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:488 @@ -739,7 +739,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:24 msgctxt "selectcertificatedialog|SelectCertificateDialog" msgid "Select X.509 Certificate" -msgstr "" +msgstr "X.509 liudijimo parinkimas" #. 5iWSE #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102 diff -Nru libreoffice-7.3.4/translations/source/lv/chart2/messages.po libreoffice-7.3.5/translations/source/lv/chart2/messages.po --- libreoffice-7.3.4/translations/source/lv/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-18 06:08+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lv/cui/messages.po libreoffice-7.3.5/translations/source/lv/cui/messages.po --- libreoffice-7.3.4/translations/source/lv/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-29 08:52+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -17144,176 +17144,152 @@ msgid "Automatic" msgstr "Automātiski" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaktika" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Augsta kontrasta" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasisks" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikonu s_tils:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Nepieciešama pārstartēšana" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Lie_tot aparatūras paātrināšanu" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Izmantot nog_ludināšanu" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Lietot Skia visai renderēšanai" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Piespiest Skia programmatūras renderēšanu" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Nepieciešama pārstartēšana. Šī ieslēgšana liegs grafikas draiveru lietošanu." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia pašreiz ir ieslēgts." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia pašreiz ir izslēgts." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafikas izvade" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "_Rādīt priekšskatījumu fontiem" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ekrāna _fontu nogludināšana" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_no:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Fontu saraksts" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lv/dbaccess/messages.po libreoffice-7.3.5/translations/source/lv/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/lv/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-29 04:12+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557164049.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Izv_eidot jaunu datubāzi" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "I_egultā datubāze:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Atvērt esošas datubāzes _datni" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Nesen i_zmantots:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Atvērt" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Savienoties ar esoš_u datubāzi" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lv/extensions/messages.po libreoffice-7.3.5/translations/source/lv/extensions/messages.po --- libreoffice-7.3.4/translations/source/lv/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-27 22:41+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555492410.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Atsvaidzināt formu" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Daudzdaļu" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Teksts" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standarta (īss)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standarta (īss GG)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standarta (īss GGGG)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standarta (garš)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/GG" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/GG" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "GG/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/GGGG" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/GGGG" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "GGGG/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "GG-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "GGGG-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nav izvēlēts" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Izvēlēts" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nav definēts" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Visi ieraksti" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktīvais ieraksts" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pašreizējā lappuse" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nē" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Jā" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Vecāka forma" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_tukšs" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_vecāks" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_pats" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_augša" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nav" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Vienas rindas" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Vairākrindu" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Diapazons" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontāli" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikāli" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Noklusējuma" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Labi" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Atcelt" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Palīdzība" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Izvēlētais ieraksts" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Izvēlētā ieraksta novietojums" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Vienas rindas" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Vairākrindu" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Vairākrindu ar formatējumu" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nav" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontāli" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikāli" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Abi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plakans" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Pa kreisi augšā" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Pa kreisi centrēts" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Pa kreisi apakšā" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Pa labi augšā" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Pa labi centrēts" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Pa labi apakšā" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Pa kreisi virs" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Centrēts virs" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Pa labi virs" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Pa kreisi zem" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Centrēts zem" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Pa labi zem" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrēts" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Saglabāt" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Aizstāt" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Sakļaut" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nē" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Saglabāt malu attiecību" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ietilpināt izmērā" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "No kreisās uz labo" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "No labās uz kreiso" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Izmantot virsobjekta iestatījumus" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nekad" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kad fokusēts" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Vienmēr" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Pie rindkopas" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kā rakstzīme" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Pie lappuses" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Pie ietvara" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Pie rakstzīmes" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Pie lappuses" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Pie šūnas" diff -Nru libreoffice-7.3.4/translations/source/lv/fpicker/messages.po libreoffice-7.3.5/translations/source/lv/fpicker/messages.po --- libreoffice-7.3.4/translations/source/lv/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-18 06:08+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -216,55 +216,55 @@ msgstr "Modificēšanas datums" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Datnes _nosaukums:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Datnes _tips:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Tikai lasāms" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Saglabāt ar paroli" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automātisks datnes paplašinājums" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Rediģēt _filtra iestatījumus" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Šifrēt ar GPG atslēgu" diff -Nru libreoffice-7.3.4/translations/source/lv/sc/messages.po libreoffice-7.3.5/translations/source/lv/sc/messages.po --- libreoffice-7.3.4/translations/source/lv/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-29 08:52+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -25253,97 +25253,97 @@ msgstr "~Skats" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Attēls" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Attēls" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zīmēt" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Zīmēt" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekts" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekts" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Medijs" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Medijs" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Drukāt" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Drukāt" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Paplašinājums" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Paplašinājums" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rīki" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Rīki" @@ -25702,139 +25702,139 @@ msgstr "_Attēls" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "S_akārtot" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Krāsa" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Režģis" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Va_loda" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Pā_rskatīt" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentāri" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Salīdzināt" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Skats" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Zīmēt" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "R_ediģēt" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "S_akārtot" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Skats" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_pēt" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "F_onts" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Līdzināšan_a" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Skats" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Ievietot" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Medijs" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ietva_rs" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "S_akārtot" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Režģis" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Skats" diff -Nru libreoffice-7.3.4/translations/source/lv/sd/messages.po libreoffice-7.3.5/translations/source/lv/sd/messages.po --- libreoffice-7.3.4/translations/source/lv/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-18 06:08+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -4172,109 +4172,109 @@ msgstr "~Tabula" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Attēls" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Attēls" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zīmēt" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Zīmēt" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekts" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekts" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Medijs" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Medijs" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Galvenā" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Paplašinājums" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Paplašinājums" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rīki" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Rīki" @@ -7061,109 +7061,109 @@ msgstr "~Tabula" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Attēls" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "~Attēls" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Zīmēt" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Zīmēt" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekts" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekts" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Medijs" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Medijs" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rma" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rma" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Galvenā" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Paplašinājums" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Paplašinājums" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Rīki" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Rīki" diff -Nru libreoffice-7.3.4/translations/source/lv/sw/messages.po libreoffice-7.3.5/translations/source/lv/sw/messages.po --- libreoffice-7.3.4/translations/source/lv/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-01-10 13:21+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:01+0200\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -10501,19 +10501,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stils" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stili" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13958,37 +13958,37 @@ msgstr "Apmainīt datubāzes" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definēt" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Izmantotās datubāzes" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Pieej_amās datubāzes" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Pārlūkot..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13998,31 +13998,31 @@ "Lai izvēlētos datubāzes datni, izmantojiet pārlūkošanas pogu." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Apmainīt datubāzes" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Dokumentā pielietotā datubāze:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20076,109 +20076,109 @@ msgstr "Lietot pašreizējo _dokumentu" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Izveidot _jaunu dokumentu" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Sākt ar pašr_eizējo dokumentu" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Sākt ar _veidni" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Sākt ar nesen saglabātu doku_mentu" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Atlasiet dokumentu." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Pā_rlūkot..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pā_rlūkot..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Izvēlieties sākotnējo dokumentu vēstuļu sapludināšanai" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22321,49 +22321,49 @@ msgstr "Objekts" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tips" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcijas" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Aplaušana" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hipersaite" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Malas" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Laukums" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Caurspīdīgums" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makrokomanda" @@ -27058,7 +27058,7 @@ msgstr "Atjaunināt" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/lv/vcl/messages.po libreoffice-7.3.5/translations/source/lv/vcl/messages.po --- libreoffice-7.3.4/translations/source/lv/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/lv/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-29 08:52+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566364169.000000\n" #. k5jTM @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Pielāgots" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Lappuses:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Atlasiet rindu skaitu." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "reiz" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Atlasiet kolonnu skaitu." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Apmale:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "starp lappusēm" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Attālums:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "līdz loksnes malai" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Secība:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "No kreisās uz labo, tad uz leju" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "No augšas uz leju, tad pa labi" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "No augšas uz leju, tad pa kreisi" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "No labās uz kreiso, tad uz leju" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ap katru lappusi zīmēt apmali" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošūra" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Sakopošanas priekšskatījums" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Lappuses izkārtojums" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Vispārīgi" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/chart2/messages.po libreoffice-7.3.5/translations/source/mai/chart2/messages.po --- libreoffice-7.3.4/translations/source/mai/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3696,7 +3696,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/cui/messages.po libreoffice-7.3.5/translations/source/mai/cui/messages.po --- libreoffice-7.3.4/translations/source/mai/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17545,177 +17545,152 @@ msgid "Automatic" msgstr "स्वचालित" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "उच्च विरोधी (~H)" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/dbaccess/messages.po libreoffice-7.3.5/translations/source/mai/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/mai/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Maithili \n" @@ -3463,74 +3463,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "हालमे प्रयुक्त" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "खोलू" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3538,7 +3538,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/extensions/messages.po libreoffice-7.3.5/translations/source/mai/extensions/messages.po --- libreoffice-7.3.4/translations/source/mai/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -303,575 +303,561 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "पाबू" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "भेजू" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "पाठ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "मानक (छोट)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "मानक (छोट)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "मानक (छोट)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "मानक (पैघ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(चयनित)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "वर्तमान दिनांक" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "नहि" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "हँ " #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "रोकू" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "कोनो नहि" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "असगर" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "परिसर" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "क्षैतिज" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "लम्बवत" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "मूलभूत" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "बेस" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द करू" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदद" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "एकटा पंक्ति" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "कईटा पंक्ति" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "संरूपणक संग बहुल पंक्ति" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "कोनो नहि" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "क्षैतिज" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "लम्बवत" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दुनू" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "समतल" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "उप्परी बम्माँ " #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "बम्माँ केंद्रित" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "निचला बम्माँ " #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "उप्परी दहिन्ना" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "दहिन्ना केंद्रित" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "निचला दहिन्ना" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "उप्पर बम्माँ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "उप्परी केन्द्रित" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "उप्परी दहिन्ना" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "नीच्चाँ बम्माँ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "नीच्चाँ केन्द्रित" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "नीच्चाँ दहिन्ना" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केंद्रित" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "संरक्षित करू" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "प्रतिस्थापन" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "उप्पर लपेटू" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "नहि" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "बम्माँ तरफसँ दहिन्ना" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "दहिन्ना सँ बम्माँ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "अधिअक्षीय वस्तु जमावटक प्रयोग करू" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "अनुच्छेद" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "संप्रतीक जहिना" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठमे" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "फ्रेम" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "संप्रतीकमे" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठमे" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/mai/fpicker/messages.po libreoffice-7.3.5/translations/source/mai/fpicker/messages.po --- libreoffice-7.3.4/translations/source/mai/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -215,61 +215,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फाइल नाम:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फाइलक वर्ग (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "केवल पढ़बाक लेल (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "कूटशब्दकट सँग सहेजू" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वचालित फाइल नामक विस्तार (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "फिल्टर जमावटसभक' संपादन" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/sc/messages.po libreoffice-7.3.5/translations/source/mai/sc/messages.po --- libreoffice-7.3.4/translations/source/mai/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25894,97 +25894,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26371,157 +26371,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "क्रममे राखू" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "रँग" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "जाल" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाषा" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "समीक्षा" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "टिप्पणी" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्य" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "संपादन" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "क्रममे राखू" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्य" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "समूह" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फ़ॉन्ट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "संरेखण" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्य" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "जोडू" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ढाँचा" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "क्रममे राखू" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "जाल" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/mai/sd/messages.po libreoffice-7.3.5/translations/source/mai/sd/messages.po --- libreoffice-7.3.4/translations/source/mai/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4262,109 +4262,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7241,109 +7241,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/sw/messages.po libreoffice-7.3.5/translations/source/mai/sw/messages.po --- libreoffice-7.3.4/translations/source/mai/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10780,20 +10780,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैली सभ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14398,38 +14398,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाषा दिअ' (~D)" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्रॉउज करू..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14437,31 +14437,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20790,111 +20790,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्रॉउज करू..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्रॉउज करू..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23090,52 +23090,52 @@ msgstr "वस्तु" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकार" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "विकल्पसभ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "लपेटू (~W)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपरलिंक" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "किनारसभ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शिता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मॉक्रो" @@ -28043,7 +28043,7 @@ msgstr "अद्यतन करू" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mai/vcl/messages.po libreoffice-7.3.5/translations/source/mai/vcl/messages.po --- libreoffice-7.3.4/translations/source/mai/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mai/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2347,171 +2347,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "पसंदीदा:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "सँ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "सूचना पुस्तिका" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/chart2/messages.po libreoffice-7.3.5/translations/source/mk/chart2/messages.po --- libreoffice-7.3.4/translations/source/mk/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3706,7 +3706,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Поставување на резолуција." diff -Nru libreoffice-7.3.4/translations/source/mk/cui/messages.po libreoffice-7.3.5/translations/source/mk/cui/messages.po --- libreoffice-7.3.4/translations/source/mk/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Macedonian \n" @@ -17537,177 +17537,152 @@ msgid "Automatic" msgstr "Автоматски" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~Висок контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Пристапува директно на хардверските можности на адаптерот за графички излез за да се подобри приказот на екранот." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/dbaccess/messages.po libreoffice-7.3.5/translations/source/mk/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/mk/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Macedonian \n" @@ -3472,76 +3472,76 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Вгнездена база на податоци" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Неодамна користени" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Отворање" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3549,7 +3549,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/extensions/messages.po libreoffice-7.3.5/translations/source/mk/extensions/messages.po --- libreoffice-7.3.4/translations/source/mk/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -313,594 +313,580 @@ msgid "Refresh form" msgstr "Освежи формулар" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Земи" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Испрати" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Повеќеделно" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандардно (кратко)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандардно (кратко ГГ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандардно (кратко ГГГГ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандардно (долго)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/ГГ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/ГГ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ГГ/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/ГГГГ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/ГГГГ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ГГГГ/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ГГ-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Не е избрано" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Избрано" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Не е дефинирано" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Сите записи" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Активен запис" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Тековна страница" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "не" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Да" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Родителска форма" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Знак „Стоп“" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Нема" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Единечен" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Повеќе" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Опсег" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Хоризонтално" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертикално" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Стандардно" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Во ред" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Откажи" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Помош" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Избраниот внес" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Позиција на избраниот елемент" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Единечна линија" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Повеќекратна линија" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Повеќекратна линија со форматирање" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Нема" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Хоризонтално" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикално" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Двете" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3Д" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Рамно" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Лево горе" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Лево центрирано" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Лево долу" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Десно горе" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Десно центрирано" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Десно долу" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Лево над" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Центрирано над" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Десно над" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Лево под" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Центрирано под" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Десно под" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Центрирано" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Задржи" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Замени" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Затворање" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "не" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Задржи ја пропорцијата" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Прилагоди на големината" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Одлево надесно" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Оддесно налево" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Користи поставувања за надредениот објект" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "На пасус" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Како знак" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "На страница" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Во рамка" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "На знак" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "На страница" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/mk/fpicker/messages.po libreoffice-7.3.5/translations/source/mk/fpicker/messages.po --- libreoffice-7.3.4/translations/source/mk/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Име на датотека:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Тип на датотека:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Само за читање" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Зачувај со ~лозинка" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Автоматска наставка на името на датотеката" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Уреди ги поставките за филтер" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/sc/messages.po libreoffice-7.3.5/translations/source/mk/sc/messages.po --- libreoffice-7.3.4/translations/source/mk/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25843,97 +25843,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26319,158 +26319,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Подреди" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Боја" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Мрежа" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Јазик" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Рецензија" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Белешки" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Преглед" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Уреди" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Подреди" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Преглед" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Групирај" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Фонт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Порамнување" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Преглед" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Вметни" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Медиум" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Рамка" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Подреди" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Мрежа" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/mk/sd/messages.po libreoffice-7.3.5/translations/source/mk/sd/messages.po --- libreoffice-7.3.4/translations/source/mk/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4255,109 +4255,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7237,109 +7237,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/sw/messages.po libreoffice-7.3.5/translations/source/mk/sw/messages.po --- libreoffice-7.3.4/translations/source/mk/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10773,20 +10773,20 @@ msgstr "Moves the selected paragraph style down one level in the index hierarchy." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стилови" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creates index entries from specific paragraph styles." @@ -14373,38 +14373,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Дефинирај" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Прелистај..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14412,31 +14412,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lists the databases that are currently in use." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Change the data sources for the current document." @@ -20757,111 +20757,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Го искористува тековниот Wiriter документ како основа за циркуларното писмо." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Создава нов Writer документ кој ќе се користи како циркуларно писмо." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Изберете постоечки Writer документ кој ќе го искористите во циркуларното писмо." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Изберете ја формата на шаблонот кој ќе го користите во вашето циркуларно писмо." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Користи постоечки документ како основа на новиот документ со циркуларно писмо." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Изберете го документот." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Прелистај..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Прелистај..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23049,50 +23049,50 @@ msgstr "Објект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Опции" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Пренеси текст" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Хиперврска" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Рабови" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Област" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Проѕирност" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макро" @@ -27980,7 +27980,7 @@ msgstr "Ажурирај" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mk/vcl/messages.po libreoffice-7.3.5/translations/source/mk/vcl/messages.po --- libreoffice-7.3.4/translations/source/mk/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mk/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2345,170 +2345,170 @@ msgstr "Prints the entire document." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Сопствено" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Избира облик од листата." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Избира облик од листата." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "од" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Поставување на резолуција." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Избира облик од листата." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Изберете ја оваа икона за да прелистувате низ страници." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Избира облик од листата." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Изберете ја оваа икона за да прелистувате низ страници." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошури" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." diff -Nru libreoffice-7.3.4/translations/source/ml/chart2/messages.po libreoffice-7.3.5/translations/source/ml/chart2/messages.po --- libreoffice-7.3.4/translations/source/ml/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3606,7 +3606,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/cui/messages.po libreoffice-7.3.5/translations/source/ml/cui/messages.po --- libreoffice-7.3.4/translations/source/ml/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17327,180 +17327,155 @@ msgid "Automatic" msgstr "ഓട്ടോമാറ്റിക്" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "കൂടിയ കോണ്‍ട്രാസ്റ്റ്" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ഓക്സിജന്‍" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ക്ലാസ്സിക്" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "_ഹാര്‍ഡ്‌വെയര്‍ ആക്സിലറേഷന്‍ ഉപയോഗിയ്ക്കുക" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ആന്റി-_അലിയാസിങ് ഉപയോഗിയ്ക്കുക" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ഗ്റാഫിക്സ് ഔട്ട്പുട്ട്" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "അക്ഷരസഞ്ചയങ്ങളുടെ തി_രനോട്ടം കാണിയ്ക്കുക" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "സ്ക്രീന്‍ ഫോണ്ട് ആന്റി_അലിയാസിങ്" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_എവിടെ നിന്നും" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "അക്ഷരസഞ്ചയത്തിനുള്ള പട്ടികകള്‍" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/dbaccess/messages.po libreoffice-7.3.5/translations/source/ml/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ml/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Malayalam \n" @@ -3470,74 +3470,74 @@ msgstr "ഒരു പുതി_യ ഡേറ്റാബേസ് സൃഷ്ടിക്കുക" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "എംബഡഡ് ഡേറ്റാബെയിസ്" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "നിലവിലുള്ളൊരു ഡേറ്റാബേസ് _ഫയല്‍ തുറക്കുക" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_ഏറ്റവും പുതുതായി ഉപയോഗിച്ചതു്:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "തുറക്കുക" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "നി_ലവിലുള്ള ഡേറ്റാബേസിലേക്കു് കണക്ട് ചെയ്യുക" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3545,7 +3545,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/extensions/messages.po libreoffice-7.3.5/translations/source/ml/extensions/messages.po --- libreoffice-7.3.4/translations/source/ml/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -311,597 +311,583 @@ msgid "Refresh form" msgstr "ഫോം പുതുക്കുക" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ലഭിക്കുക" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "പോസ്റ്റ്" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "മള്‍ട്ടിപാര്‍ട്ട്" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ടെക്സ്റ്റ്" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "നിലവാരം (ചെറിയ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "നിലവാരമുള്ള (ചെറിയ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "നിലവാരമുള്ള (ചെറിയ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "നിലവാരം (വലിയ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "തെരഞ്ഞെടുത്തിട്ടില്ലാത്ത" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "തെരഞ്ഞെടുത്ത" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "നിഷ്കര്‍ഷിച്ചിട്ടില്ലാത്ത" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "എല്ലാ റിക്കോര്‍ഡുകളും" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "സജീവമായ റിക്കോര്‍ഡ്" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ഈ താള്‍" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ഇല്ല" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ഉണ്ട്" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "പേരന്റ് ഫോം" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "മുകളില്‍" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ഒന്നുമില്ല" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ഒന്ന്" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "അനവധി" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "പരന്പര" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "കുറുകെ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "കുത്തനെ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "സംസ്ഥാപിതം" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ശരി" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "റദ്ദാക്കുക" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "സഹായം" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "തെരഞ്ഞെടുത്തതു്" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "തെരഞ്ഞെടുത്തതിന്റെ സ്ഥാനം" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ഏകരേഖ" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "വിവിധരേഖ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "രൂപരേഖയില് വിവിധരേഖ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (യുണിക്സ്)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (വിന്ഡോസ്)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ഒന്നുമില്ല" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "കുറുകെ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "കുത്തനെ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "രണ്ടും" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "ത്രിമാന" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "പരന്നത്" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ഇടത്ത് മുകളില്" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ഇടത്ത് മദ്ധ്യത്തില്" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ഇടത്ത് താഴെ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "വലത്ത് മുകളില്" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "വലത്ത് മദ്ധ്യത്തില്" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "വലത്ത് താഴെ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ഇടത്തുവശത്തിന‍് മുകളില്" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "മദ്ധ്യത്തിനു മുകളില്" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "വലത്തുവശത്തിന‍് മുകളില്" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ഇടത്തുവശത്തിന‍് താഴെ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "മദ്ധ്യത്തിനു താഴെ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "വലത്തുവശത്തിന‍് താഴെ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "മദ്ധ്യത്തില്‍" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "സൂക്ഷിക്കുക" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "മാറ്റി സ്ഥാപിക്കുക" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "നീക്കുക" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ഇല്ല" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "റേഷ്യോ കാണിയ്ക്കുക" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "വ്യാപ്തി അനുസരിച്ചു് പാകമാക്കുക" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ഇടത്തു് നിന്നും വലത്തേക്കു്" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "വലത്തു് നിന്നും ഇടത്തേക്ക്" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr " സൂപ്പര് ഒര്ഡിനേറ്റ് വസ്തു സജ്ജീകരണങ്ങള് ഉപയോഗിക്കുക" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ഒരിക്കലുമില്ല" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ശ്രദ്ധ കേന്ദ്രീകരിയ്ക്കുമ്പോള്‍" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "എപ്പോഴും" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ഖണ്ഡിക" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "അക്ഷരമായി" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ഏതു് താള്‍" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ഫ്രെയിം" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "അക്ഷരമായി" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ഏതു് താള്‍" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ml/fpicker/messages.po libreoffice-7.3.5/translations/source/ml/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ml/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ഫയല്‍ നാമം:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ഫയല്‍ രീതി (_F):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "വായിക്കാന് വേണ്ടി മാത്രം" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "രഹസ്യവാക്കോടു കൂടി സൂക്ഷിക്കുക" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ഓട്ടോമാറ്റിക് ഫയല്‍ നാമം എക്സ്റ്റെന്‍ഷന്‍" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ഫില്‍റ്റര്‍ സജ്ജീകരണങ്ങള്‍ ചിട്ടപ്പെടുത്തുക" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/sc/messages.po libreoffice-7.3.5/translations/source/ml/sc/messages.po --- libreoffice-7.3.4/translations/source/ml/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25814,97 +25814,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26292,153 +26292,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ക്രമീകരിക്കുക" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "നി_റം" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ഗ്രിഡ്" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ഭാഷ" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "പുനര്‍വിചാരണ ചെയ്യുക" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_അഭിപ്രായങ്ങള്‍" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ദൃശ്യം" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_ചിട്ടപ്പെടുത്തുക" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ക്രമീകരിക്കുക" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ദൃശ്യം" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ഗ്രൂപ്പ്" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "അക്ഷര‍സഞ്ചയം" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "അലൈന്‍മെന്റ്" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ദൃശ്യം" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ചേര്ക്കുക" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "മീഡിയാ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ഫ്രെ_യിം:" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ക്രമീകരിക്കുക" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ഗ്രിഡ്" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ml/sd/messages.po libreoffice-7.3.5/translations/source/ml/sd/messages.po --- libreoffice-7.3.4/translations/source/ml/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4249,109 +4249,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7230,109 +7230,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/sw/messages.po libreoffice-7.3.5/translations/source/ml/sw/messages.po --- libreoffice-7.3.4/translations/source/ml/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10762,19 +10762,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ശൈലികള്‍" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14317,37 +14317,37 @@ msgstr "ഡേറ്റാബേസുകള് പരസ്പരം മാറ്റുക" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "നിര്‌വചിക്കുക" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ഉപയോഗിച്ചു കൊണ്ടിരിക്കുന്ന ഡേറ്റാബേസുകള്" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_ലഭ്യമായ ഡേറ്റാബേയുകള്‍" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ബ്രൌസ് ചെയ്യുക" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14357,31 +14357,31 @@ "ഡേറ്റബേസ് ഫയല് തിരഞ്ഞെടുക്കാനായി ബ്രൌസ് ബട്ടണ്‍ ഉപയോഗിക്കുക." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ഡേറ്റാബേസുകള് പരസ്പരം മാറ്റുക" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ഡേറ്റാബേസ് ഡോക്കുമെന്റിനു പ്രയോഗിക്കുക" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20631,111 +20631,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ബ്രൌസ് ചെയ്യുക" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ബ്രൌസ് ചെയ്യുക" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22909,51 +22909,51 @@ msgstr "വസ്തു" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "തരം" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ഐച്ഛികങ്ങള്‍" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "റാപ്" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ഹൈപ്പര്‌ലിങ്ക്" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "അതിരുകള്" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "വിസ്താരം" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparency" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "മാക്രോ" @@ -27812,7 +27812,7 @@ msgstr "പുതുക്കുക" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ml/vcl/messages.po libreoffice-7.3.5/translations/source/ml/vcl/messages.po --- libreoffice-7.3.4/translations/source/ml/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ml/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2327,169 +2327,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "യഥേഷ്ടം" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "അല്" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "താളുകളുടെ ഇടയില്‍" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ഷീറ്റിന്റെ അതിരിലേക്കു്" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ഓരോ താളിനു് ചുറ്റും അതിരു് വരയ്ക്കുക" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ബ്രോഷര്‍" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mn/chart2/messages.po libreoffice-7.3.5/translations/source/mn/chart2/messages.po --- libreoffice-7.3.4/translations/source/mn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-25 15:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557016958.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Багана болон шугамын диаграммд мөрийн тоог заана." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Үндсэн диаграмын төрлийг сонгоно уу." diff -Nru libreoffice-7.3.4/translations/source/mn/cui/messages.po libreoffice-7.3.5/translations/source/mn/cui/messages.po --- libreoffice-7.3.4/translations/source/mn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \n" @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Автоматаар" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галактик" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Өндөр тодосгогч" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Хүчилтөрөгч" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Сонгодог" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Сэвшээ салхи" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Тэмдэгтийн хэв маяг:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Дахин эхлүүлэх шаардлагатай байна" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Техник хангамжийн хурдатгалыг ашиглана уу" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "_Алиасны эсрэг ашиглах" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Skia-ийг бүх дамжуулалтанд ашиглах" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia програм хангамжийг хүчээр үзүүлэх" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Дахин эхлүүлэх шаардлагатай байна. Үүнийг идэвхжүүлснээр график драйверуудыг ашиглахаас урьдчилан сэргийлэх болно." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Скиа одоогоор идэвхжсэн байна." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Скиа одоогоор идэвхгүй болсон." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графикийн гаралт" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Фонт урьдчилж харах" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Дэлгэцийн фонтын эсрэг" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "-аас:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Фонтын жагсаалт" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mn/dbaccess/messages.po libreoffice-7.3.5/translations/source/mn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/mn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524567500.000000\n" #. BiN6g @@ -3399,73 +3399,73 @@ msgstr "Ш_инэ мэдээллийн сан үүсгэх" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Шинэ мэдээллийн сан үүсгэхийн тулд сонгоно уу." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Оруулсан мэдээллийн сан:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Байгаа мэдээллийн сангийн _файлыг нээх" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Өгөгдлийн сангийн файлыг саяхан ашигласан файлуудын жагсаалтаас эсвэл файл сонгох харилцах цонхноос нээхийн тулд сонгоно уу." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Хамгийн сүүлд ашигласан:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Саяхан ашигласан файлуудын жагсаалтаас нээх мэдээллийн сангийн файлыг сонгоно уу. Дуусгах дээр дарж файлыг нэн даруй нээж, шидтэнгээсээ гарна." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Нээх" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Өгөгдлийн сангийн файлыг сонгох боломжтой файл сонгох харилцах цонхыг нээнэ. Файлыг нэн даруй нээж, шидтэнээс гарахын тулд файл сонгох харилцах цонхны Нээх эсвэл OK дээр дарна уу." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "_Байгаа мэдээллийн санд холбогдох" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Одоо байгаа өгөгдлийн сангийн холболтод зориулж өгөгдлийн сангийн баримт бичгийг үүсгэхийн тулд сонгоно уу." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Одоо байгаа өгөгдлийн сангийн холболтын өгөгдлийн сангийн төрлийг сонгоно уу." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3476,7 +3476,7 @@ "энэ тохиргоонд ашиглах боломжтой." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Өгөгдлийн сангийн шидтэн нь өгөгдлийн сангийн талаарх мэдээллийг агуулсан өгөгдлийн сангийн файл үүсгэдэг." diff -Nru libreoffice-7.3.4/translations/source/mn/extensions/messages.po libreoffice-7.3.5/translations/source/mn/extensions/messages.po --- libreoffice-7.3.4/translations/source/mn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542024185.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Маягтыг дахин шинэчилнэ үү" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Авах" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Илгээх" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "Хаяг (URL)" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Олон хэсэг" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Бичвэр" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандарт (богино)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандарт (богино ЖЖ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандарт (богино ЖЖЖЖ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандарт (урт)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ӨӨ/СС/ЖЖ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "СС/ӨӨ/ЖЖ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ЖЖ/СС/ӨӨ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ӨӨ/СС/ЖЖЖЖ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "СС/ӨӨ/ЖЖЖЖ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ЖЖЖЖ/СС/ӨӨ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ЖЖ-СС-ӨӨ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ЖЖЖЖ-СС-ӨӨ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 оройн" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 оройн" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Сонгогдоогүй байна" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Сонгогдсон" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Тодорхойлоогүй байна" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Бүх бичлэгүүд" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Идэвхтэй бичлэг" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Одоогийн хуудас" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Үгүй" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Тийм" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Дээд маягт" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_ хоосон" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_дээд" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_өөрөө" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_дээр" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Байхгүй" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Дан ганц" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Олон" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Муж" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Хэвтээ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Босоо" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Өгөгдмөл" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ОК" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Болих" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Тусламж" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Сонгосон оруулга" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Сонгосон оруулгын байрлал" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Дан мөрт" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Олон мөрт" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Форматтай олон мөрт" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Байхгүй" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Хэвтээ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Босоо" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Хоёулаа" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Хавтгай" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Зүүн дээд" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Зүүн төвд" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Зүүн доод" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Баруун дээд" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Баруун төвд" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Баруун доод" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Зүүн дээд" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Дээр төвд" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Баруун дээд" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Зүүн доод" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Доор төвд" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Баруун доод" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Голлуулсан" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Хүлээн авах" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Орлуулах" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Хумих" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Үгүй" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Хэмжээний харьцааг хадгалах" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Хэмжээнд тохируулна уу" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Зүүнээс-баруун-тийш" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Баруунаас-зүүн-тийш" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Дээд төвшний объектын тохиргоог хэрэглэ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Хэзээ ч үгүй" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Сонгогдсон үед" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Дандаа" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Догол мөрөнд" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Тэмдэгтийн хувьд" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Хуудас руу" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Хүрээ рүү" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Тэмдэгтийн хувьд" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Хуудас руу" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Нүдэнд нь" diff -Nru libreoffice-7.3.4/translations/source/mn/fpicker/messages.po libreoffice-7.3.5/translations/source/mn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/mn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538497929.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Сүүлд өөрчилсөн огноо" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Нээлттэй" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Тоглох" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Файлын _нэр:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Файлын _төрөл:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Зөвхөн уншихад зориулсан" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Нууц үгтэй хадгалах" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Файлын нэрний өргөтгөлийг автоматаар" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Шүүлтүүрийн тохиргоог _засах" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG key-р цоожил" diff -Nru libreoffice-7.3.4/translations/source/mn/sc/messages.po libreoffice-7.3.5/translations/source/mn/sc/messages.po --- libreoffice-7.3.4/translations/source/mn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-25 15:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \n" @@ -25740,97 +25740,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26220,157 +26220,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Өрөлт" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Өнгө" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Тор" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Хэл" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Зөвлөмж" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Харагдац" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Засах" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Өрөлт" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Харагдац" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Бүлэглэх" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Фонт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Жигдрүүлэлт" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Харагдац" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Оруулах" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Блок" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Өрөлт" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Тор" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/mn/sd/messages.po libreoffice-7.3.5/translations/source/mn/sd/messages.po --- libreoffice-7.3.4/translations/source/mn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-25 15:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \n" @@ -4252,109 +4252,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7230,109 +7230,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mn/sw/messages.po libreoffice-7.3.5/translations/source/mn/sw/messages.po --- libreoffice-7.3.4/translations/source/mn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-01-26 14:05+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 19:49+0200\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \n" "Language: mn\n" @@ -3539,7 +3539,7 @@ #: sw/inc/strings.hrc:253 msgctxt "STR_JAVA_EDIT" msgid "Edit Script" -msgstr "" +msgstr "Скриптийг засах" #. oBFxh #: sw/inc/strings.hrc:254 @@ -3551,19 +3551,19 @@ #: sw/inc/strings.hrc:255 msgctxt "STR_BOOKMARK_YES" msgid "Yes" -msgstr "" +msgstr "Тийм" #. tvmJD #: sw/inc/strings.hrc:256 msgctxt "STR_BOOKMARK_NO" msgid "No" -msgstr "" +msgstr "Үгүй" #. DCJBh #: sw/inc/strings.hrc:257 msgctxt "STR_BOOKMARK_FORBIDDENCHARS" msgid "Forbidden characters:" -msgstr "" +msgstr "Зөвшөөрөгдөөгүй Тэмдэгтүүд:" #. QEGSs #: sw/inc/strings.hrc:258 @@ -3585,30 +3585,27 @@ #. kfeBE #: sw/inc/strings.hrc:261 -#, fuzzy msgctxt "STR_CAPTION_ABOVE" msgid "Above" -msgstr "Дээр талд нь" +msgstr "Эхэнд" #. aXzbo #: sw/inc/strings.hrc:262 -#, fuzzy msgctxt "STR_CAPTION_BELOW" msgid "Below" -msgstr "Доод" +msgstr "Төгсгөлд" #. 8zzCk #: sw/inc/strings.hrc:263 -#, fuzzy msgctxt "SW_STR_READONLY" msgid "read-only" -msgstr "зөвхөн уншихад зориулсан" +msgstr "зөвхөн унших" #. QRU4j #: sw/inc/strings.hrc:264 msgctxt "STR_READONLY_PATH" msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?" -msgstr "" +msgstr "'AutoText'-ийн лавлахууд нь зөвхөн унших боломжтой. Та тэдгээрийг өөрчлөхийн тулд Замуудын харилцах цонхыг гаргаж ирэхийг хүсч байна уу?" #. ErVas #: sw/inc/strings.hrc:265 @@ -3620,7 +3617,7 @@ #: sw/inc/strings.hrc:266 msgctxt "STR_OUTLINENUMBERING_DISABLED" msgid "This option is disabled when chapter numbering is assigned to a paragraph style" -msgstr "" +msgstr "Бүлгийн дугаарлалт нь догол мөрийн хэв маягт хуваарилагдсан үед энэ сонголт идэвхгүй болно." #. cW3cP #. Statusbar-titles @@ -3763,17 +3760,15 @@ #. CV6nr #: sw/inc/strings.hrc:291 -#, fuzzy msgctxt "STR_FDLG_OUTLINE_LEVEL" msgid "Outline: Level " -msgstr "Гишүүнчлэлийн төвшин" +msgstr "Тойм: Түвшин " #. oEvac #: sw/inc/strings.hrc:292 -#, fuzzy msgctxt "STR_FDLG_STYLE" msgid "Style: " -msgstr "Загвар:" +msgstr "Загвар формат: " #. BZdQA #: sw/inc/strings.hrc:293 @@ -3803,7 +3798,7 @@ #: sw/inc/strings.hrc:297 msgctxt "STR_CTL_FONT" msgid "CTL text: " -msgstr "" +msgstr "CTL текст: " #. GC6Rd #: sw/inc/strings.hrc:298 @@ -3815,19 +3810,19 @@ #: sw/inc/strings.hrc:299 msgctxt "STR_DELETE_NOTE_AUTHOR" msgid "Delete ~All Comments by $1" -msgstr "" +msgstr "Бүх сэтгэгдлийг устгана уу ~$1-с" #. 3TDWE #: sw/inc/strings.hrc:300 msgctxt "STR_HIDE_NOTE_AUTHOR" msgid "H~ide All Comments by $1" -msgstr "" +msgstr "$1-ийн бүх сэтгэгдлийг нуу" #. mPqgx #: sw/inc/strings.hrc:301 msgctxt "STR_OUTLINE_NUMBERING" msgid "Chapter Numbering" -msgstr "" +msgstr "Бүлгийн дугаарлалт" #. 8mutJ #. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG @@ -3835,7 +3830,7 @@ #: sw/inc/strings.hrc:304 msgctxt "STR_WORDCOUNT" msgid "Selected: $1, $2" -msgstr "" +msgstr "Сонгосон: $1, $2" #. E6L2o #. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words @@ -3843,8 +3838,8 @@ msgctxt "STR_WORDCOUNT_WORDARG" msgid "$1 word" msgid_plural "$1 words" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 үг" +msgstr[1] "$1 үгнүүд" #. kNQDp #. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters @@ -3852,8 +3847,8 @@ msgctxt "STR_WORDCOUNT_CHARARG" msgid "$1 character" msgid_plural "$1 characters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 тэмдэг" +msgstr[1] "$1 тэмдэгүүд" #. UgpUM #. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG @@ -3861,7 +3856,7 @@ #: sw/inc/strings.hrc:311 msgctxt "STR_WORDCOUNT_NO_SELECTION" msgid "$1, $2" -msgstr "" +msgstr "$1, $2" #. uzSNE #. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION. @@ -3870,8 +3865,8 @@ msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION" msgid "$1 word" msgid_plural "$1 words" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 үг" +msgstr[1] "$1 үгнүүд" #. KuZYC #. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION. @@ -3880,8 +3875,8 @@ msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION" msgid "$1 character" msgid_plural "$1 characters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 тэмдэгт" +msgstr[1] "$1 тэмдэгтүүд" #. fj6gC #: sw/inc/strings.hrc:318 @@ -3893,7 +3888,7 @@ #: sw/inc/strings.hrc:319 msgctxt "STR_ADD_AUTOFORMAT_TITLE" msgid "Add AutoFormat" -msgstr "" +msgstr "Автомат формат нэмэх" #. hqtgD #: sw/inc/strings.hrc:320 @@ -3905,7 +3900,7 @@ #: sw/inc/strings.hrc:321 msgctxt "STR_DEL_AUTOFORMAT_TITLE" msgid "Delete AutoFormat" -msgstr "" +msgstr "Автомат форматыг арилгах" #. EGu2g #: sw/inc/strings.hrc:322 @@ -3917,7 +3912,7 @@ #: sw/inc/strings.hrc:323 msgctxt "STR_RENAME_AUTOFORMAT_TITLE" msgid "Rename AutoFormat" -msgstr "" +msgstr "Автомат форматын нэрийг өөрчлөх" #. GDdL3 #: sw/inc/strings.hrc:324 @@ -3941,7 +3936,7 @@ #: sw/inc/strings.hrc:327 msgctxt "STR_MAR" msgid "Mar" -msgstr "" +msgstr "Мар" #. cr7Jq #: sw/inc/strings.hrc:328 @@ -3953,13 +3948,13 @@ #: sw/inc/strings.hrc:329 msgctxt "STR_MID" msgid "Mid" -msgstr "" +msgstr "Төв" #. sxDHC #: sw/inc/strings.hrc:330 msgctxt "STR_SOUTH" msgid "South" -msgstr "" +msgstr "Өмнөд" #. v65zt #: sw/inc/strings.hrc:331 @@ -3987,17 +3982,15 @@ #. QmZUu #: sw/inc/strings.hrc:334 -#, fuzzy msgctxt "STR_ROW" msgid "Rows" -msgstr "М~өрүүд" +msgstr "Мөрүүд" #. 5oTjU #: sw/inc/strings.hrc:335 -#, fuzzy msgctxt "STR_COL" msgid "Column" -msgstr "Ба~гана" +msgstr "Багана" #. w6733 #: sw/inc/strings.hrc:336 @@ -4015,7 +4008,7 @@ #: sw/inc/strings.hrc:338 msgctxt "STR_ACCESS_PAGESETUP_SPACING" msgid "Spacing between %1 and %2" -msgstr "" +msgstr "% 1-ээс % 2 хүртэлх зай" #. SBmWN #: sw/inc/strings.hrc:339 @@ -4025,49 +4018,45 @@ #. ZLVNB #: sw/inc/strings.hrc:340 -#, fuzzy msgctxt "STR_CAPTION_TABLE" msgid "%PRODUCTNAME Writer Table" -msgstr "%PRODUCTNAME Writer" +msgstr "Хүснэгт %PRODUCTNAME Writer" #. FMXrc #: sw/inc/strings.hrc:341 -#, fuzzy msgctxt "STR_CAPTION_FRAME" msgid "%PRODUCTNAME Writer Frame" -msgstr "%PRODUCTNAME Writer" +msgstr "Хүрээ %PRODUCTNAME Writer" #. gEGv8 #: sw/inc/strings.hrc:342 -#, fuzzy msgctxt "STR_CAPTION_GRAPHIC" msgid "%PRODUCTNAME Writer Image" -msgstr "%PRODUCTNAME Writer" +msgstr "Дүрс %PRODUCTNAME Writer" #. k8kLw #: sw/inc/strings.hrc:343 msgctxt "STR_CAPTION_OLE" msgid "Other OLE Objects" -msgstr "" +msgstr "Бусад OLE объектууд" #. rP7oC #: sw/inc/strings.hrc:344 msgctxt "STR_WRONG_TABLENAME" msgid "The name of the table must not contain spaces." -msgstr "" +msgstr "Хүснэгтийн нэр хоосон зай агуулж болохгүй." #. g9HF2 #: sw/inc/strings.hrc:345 msgctxt "STR_ERR_TABLE_MERGE" msgid "Selected table cells are too complex to merge." -msgstr "" +msgstr "Сонгосон хүснэгтийн нүднүүдийг нэгтгэхэд хэтэрхий төвөгтэй байна." #. VFBKA #: sw/inc/strings.hrc:346 -#, fuzzy msgctxt "STR_SRTERR" msgid "Cannot sort selection" -msgstr "Сонголтонд буйг эрэмбэлэх боломжгүй" +msgstr "Сонголтыг эрэмбэлж чадсангүй" #. zK6GB #. Miscellaneous @@ -4110,19 +4099,19 @@ #: sw/inc/strings.hrc:355 msgctxt "STR_EVENT_IMAGE_LOAD" msgid "Image loaded successfully" -msgstr "" +msgstr "Зургийг амжилттай ачааллаа" #. U4P8F #: sw/inc/strings.hrc:356 msgctxt "STR_EVENT_IMAGE_ABORT" msgid "Image loading terminated" -msgstr "" +msgstr "Зургийг ачаалж чадсангүй" #. uLNMH #: sw/inc/strings.hrc:357 msgctxt "STR_EVENT_IMAGE_ERROR" msgid "Could not load image" -msgstr "" +msgstr "Зургийг ачаалж чадсангүй" #. DAGeE #: sw/inc/strings.hrc:358 @@ -4164,14 +4153,13 @@ #: sw/inc/strings.hrc:364 msgctxt "STR_CONTENT_TYPE_FRAME" msgid "Frames" -msgstr "" +msgstr "Хүрээ" #. YFZFi #: sw/inc/strings.hrc:365 -#, fuzzy msgctxt "STR_CONTENT_TYPE_GRAPHIC" msgid "Images" -msgstr "Зурагнууд" +msgstr "Зураг" #. bq6DJ #: sw/inc/strings.hrc:366 @@ -4211,16 +4199,15 @@ #. xDXB4 #: sw/inc/strings.hrc:372 -#, fuzzy msgctxt "STR_CONTENT_TYPE_DRAWOBJECT" msgid "Drawing objects" -msgstr "Дүрслэл объект" +msgstr "Дүрс зураг" #. GDSbW #: sw/inc/strings.hrc:373 msgctxt "STR_CONTENT_TYPE_TEXTFIELD" msgid "Fields" -msgstr "" +msgstr "Талбай" #. F5aQ8 #: sw/inc/strings.hrc:374 @@ -4236,7 +4223,6 @@ #. zpcTg #: sw/inc/strings.hrc:376 -#, fuzzy msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1" msgid "Heading 1" msgstr "Гарчиг 1" @@ -4245,14 +4231,13 @@ #: sw/inc/strings.hrc:377 msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1" msgid "This is the content from the first chapter. This is a user directory entry." -msgstr "" +msgstr "Энэ бол эхний бүлгийн агуулга юм. Энэ бол хэрэглэгчийн лавлах оруулга юм." #. wcSRn #: sw/inc/strings.hrc:378 -#, fuzzy msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11" msgid "Heading 1.1" -msgstr "Гарчиг 1" +msgstr "Гарчиг 1.1" #. BqQGK #: sw/inc/strings.hrc:379 @@ -4262,10 +4247,9 @@ #. bymGA #: sw/inc/strings.hrc:380 -#, fuzzy msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12" msgid "Heading 1.2" -msgstr "Гарчиг 1" +msgstr "Гарчиг 1.2" #. 6MLmL #: sw/inc/strings.hrc:381 @@ -4277,55 +4261,55 @@ #: sw/inc/strings.hrc:382 msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1" msgid "Table 1: This is table 1" -msgstr "" +msgstr "Хүснэгт 1: Энэ бол Хүснэгт 1" #. VyQfs #: sw/inc/strings.hrc:383 msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1" msgid "Image 1: This is image 1" -msgstr "" +msgstr "Зураг 1: Энэ бол 1-р зураг" #. EiPU5 #: sw/inc/strings.hrc:384 msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER" msgid "Chapter" -msgstr "" +msgstr "Бүлэг" #. s9w3k #: sw/inc/strings.hrc:385 msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD" msgid "Keyword" -msgstr "" +msgstr "Түлхүүр үг" #. 8bbUo #: sw/inc/strings.hrc:386 msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY" msgid "User Directory Entry" -msgstr "" +msgstr "Хэрэглэгчийн лавлах оруулга" #. SoBBB #: sw/inc/strings.hrc:387 msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY" msgid "Entry" -msgstr "" +msgstr "Запись" #. cT6YY #: sw/inc/strings.hrc:388 msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS" msgid "this" -msgstr "" +msgstr "энэ" #. KNkfh #: sw/inc/strings.hrc:389 msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY" msgid "Primary key" -msgstr "" +msgstr "1. Түлхүүр" #. 2J7Ut #: sw/inc/strings.hrc:390 msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY" msgid "Secondary key" -msgstr "" +msgstr "2. Түлхүүр" #. beBJ6 #: sw/inc/strings.hrc:391 @@ -4343,7 +4327,7 @@ #: sw/inc/strings.hrc:393 msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME" msgid "Frame" -msgstr "" +msgstr "Хүрээ" #. o2wx8 #: sw/inc/strings.hrc:394 @@ -4403,7 +4387,7 @@ #: sw/inc/strings.hrc:403 msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD" msgid "Field" -msgstr "" +msgstr "Талбай" #. mbDG4 #: sw/inc/strings.hrc:404 @@ -4415,19 +4399,19 @@ #: sw/inc/strings.hrc:405 msgctxt "STR_CONTENT_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "Зүүлт тайлбар" #. X6DYF #: sw/inc/strings.hrc:406 msgctxt "STR_CONTENT_ENDNOTE" msgid "Endnote" -msgstr "" +msgstr "Төгсгөлийн тэмдэглэгээ" #. sEQCK #: sw/inc/strings.hrc:407 msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP" msgid "Footnotes are listed above this line and Endnotes are listed below" -msgstr "" +msgstr "Зүүлт тайлбарыг дээр, төгсгөлийн тайлбарыг энэ мөрний доор жагсаав" #. jThGW #: sw/inc/strings.hrc:408 @@ -4461,37 +4445,37 @@ #: sw/inc/strings.hrc:412 msgctxt "STR_HYPH_MISSING" msgid "Missing hyphenation data" -msgstr "" +msgstr "Зураасны өгөгдөл дутуу байна" #. TEP66 #: sw/inc/strings.hrc:413 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "" +msgstr "\"% 1\" локал хэлний үе таслалын багцыг суулгана уу." #. bJFYS #: sw/inc/strings.hrc:414 msgctxt "STR_HIDDEN_CHANGES" msgid "Track Changes" -msgstr "" +msgstr "Өөрчлөлтүүд" #. DcXvE #: sw/inc/strings.hrc:415 msgctxt "STR_HIDDEN_CHANGES_DETAIL" msgid "Document contains tracked changes and recording is enabled." -msgstr "" +msgstr "Баримт бичигт өөрчлөлт орсон бөгөөд бичлэг асаалттай байна." #. zxuEu #: sw/inc/strings.hrc:416 msgctxt "STR_HIDDEN_CHANGES_DETAIL2" msgid "Recording of changes is enabled." -msgstr "" +msgstr "Өөрчлөлтийн бичлэг асаалттай байна." #. BH7Ud #: sw/inc/strings.hrc:417 msgctxt "STR_HIDDEN_CHANGES_DETAIL3" msgid "Document contains tracked changes." -msgstr "" +msgstr "Баримт бичигт өөрчлөлт орсон байна." #. MEN2d #. Undo @@ -4718,17 +4702,15 @@ #. EXFvJ #: sw/inc/strings.hrc:457 -#, fuzzy msgctxt "STR_DELETE_PAGE_BREAK" msgid "Delete page break" -msgstr "Хуудас таслалтуудыг устгах" +msgstr "Хуудасны завсарлага устгах" #. kHVr9 #: sw/inc/strings.hrc:458 -#, fuzzy msgctxt "STR_TEXT_CORRECTION" msgid "Text Correction" -msgstr "Холболт шалгах" +msgstr "Текст засвар" #. ZPCQf #: sw/inc/strings.hrc:459 @@ -4746,7 +4728,7 @@ #: sw/inc/strings.hrc:461 msgctxt "STR_OUTLINE_EDIT" msgid "Modify outline" -msgstr "" +msgstr "Тоймыг өөрчлөх" #. RjcRH #: sw/inc/strings.hrc:462 @@ -4840,10 +4822,9 @@ #. qyCiy #: sw/inc/strings.hrc:477 -#, fuzzy msgctxt "STR_AUTOCORRECT" msgid "AutoCorrect" -msgstr "АвтоматЗасалт" +msgstr "Автоматаар засах" #. f4Jfr #: sw/inc/strings.hrc:478 @@ -4853,10 +4834,9 @@ #. BLcCC #: sw/inc/strings.hrc:479 -#, fuzzy msgctxt "STR_TRANSLITERATE" msgid "Change Case" -msgstr "Үсгийн хэлбэр ~солих" +msgstr "Кейс солих" #. BTGyD #: sw/inc/strings.hrc:480 @@ -4892,14 +4872,13 @@ #: sw/inc/strings.hrc:485 msgctxt "STR_REREAD" msgid "Replace Image" -msgstr "" +msgstr "Зургийг солих" #. 6GmVr #: sw/inc/strings.hrc:486 -#, fuzzy msgctxt "STR_DELGRF" msgid "Delete Image" -msgstr "Хүрээг устгах" +msgstr "Зургийг устгах" #. PAmBF #: sw/inc/strings.hrc:487 @@ -4995,13 +4974,13 @@ #: sw/inc/strings.hrc:502 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "Хүрээг холбох" #. XV4Ap #: sw/inc/strings.hrc:503 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "Хүрээг салга" #. vUJG9 #: sw/inc/strings.hrc:504 @@ -5061,13 +5040,13 @@ #: sw/inc/strings.hrc:513 msgctxt "STR_START_QUOTE" msgid "“" -msgstr "" +msgstr "«" #. kZoAG #: sw/inc/strings.hrc:514 msgctxt "STR_END_QUOTE" msgid "”" -msgstr "" +msgstr "»" #. wNZDq #: sw/inc/strings.hrc:515 @@ -5097,7 +5076,7 @@ #: sw/inc/strings.hrc:519 msgctxt "STR_YIELDS" msgid "→" -msgstr "" +msgstr "→" #. wNRhZ #: sw/inc/strings.hrc:520 @@ -5110,16 +5089,16 @@ msgctxt "STR_UNDO_TABS" msgid "One tab" msgid_plural "$1 tabs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Нэг таб" +msgstr[1] "$1 табууд" #. eP6mC #: sw/inc/strings.hrc:522 msgctxt "STR_UNDO_NLS" msgid "One line break" msgid_plural "$1 line breaks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Нэг мөр тасарна" +msgstr[1] "$1 мөр тасарна" #. yS3nP #: sw/inc/strings.hrc:523 @@ -5147,30 +5126,27 @@ #. 5KECk #: sw/inc/strings.hrc:527 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FORMAT" msgid "Attributes changed" -msgstr "Атрибут өөрчлөгдөв" +msgstr "Атрибут өөрчлөгдсөн" #. N7CUk #: sw/inc/strings.hrc:528 -#, fuzzy msgctxt "STR_UNDO_REDLINE_TABLE" msgid "Table changed" -msgstr "Хүснэгт өөрчлөгдөв" +msgstr "Хүснэгт өөрчлөгдсөн" #. DCGPF #: sw/inc/strings.hrc:529 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FMTCOLL" msgid "Style changed" -msgstr "Хүснэгт өөрчлөгдөв" +msgstr "Загвар өөрчлөгдсөн" #. p77WZ #: sw/inc/strings.hrc:530 msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "" +msgstr "Догол мөрний формат өөрчлөгдсөн" #. nehrq #: sw/inc/strings.hrc:531 @@ -5180,10 +5156,9 @@ #. Ud4qT #: sw/inc/strings.hrc:532 -#, fuzzy msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE" msgid "Delete Row" -msgstr "Мөрийг устгах" +msgstr "Мөр устгах" #. GvxsC #: sw/inc/strings.hrc:533 @@ -5195,7 +5170,7 @@ #: sw/inc/strings.hrc:534 msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE" msgid "Delete Cell" -msgstr "" +msgstr "Нүд устгах" #. DqprY #: sw/inc/strings.hrc:535 @@ -5339,7 +5314,7 @@ #: sw/inc/strings.hrc:558 msgctxt "STR_UNDO_INSERT_TEXTBOX" msgid "text box" -msgstr "" +msgstr "Текст хайрцаг" #. yNjem #. undo: STR_PARAGRAPHS, string.text @@ -5410,7 +5385,6 @@ #. bKvaD #: sw/inc/strings.hrc:571 -#, fuzzy msgctxt "STR_GRAPHIC" msgid "image" msgstr "зураг" @@ -5432,8 +5406,8 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Бүлэг" +msgstr[1] "Бүлгүүд" #. 2JCL2 #: sw/inc/strings.hrc:575 @@ -5445,7 +5419,7 @@ #: sw/inc/strings.hrc:576 msgctxt "STR_PARAGRAPH_SIGN_UNDO" msgid "Paragraph sign" -msgstr "" +msgstr "Параграфын тэмдэг" #. oL9GG #: sw/inc/strings.hrc:577 @@ -5457,47 +5431,43 @@ #: sw/inc/strings.hrc:578 msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION" msgid "Change object description of $1" -msgstr "" +msgstr "$1-ийн объектын тайлбарыг өөрчлөх" #. rWw8U #: sw/inc/strings.hrc:579 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_CREATE" msgid "Create table style: $1" -msgstr "Хуудасны загвар үүсгэх: $1" +msgstr "Хүснэгтийн загвар үүсгэх: $1" #. jGxgy #: sw/inc/strings.hrc:580 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_DELETE" msgid "Delete table style: $1" -msgstr "Хуудасны загвар устгах: $1" +msgstr "Хүснэгтийн хэв маягийг устгах: $1" #. 6NWP3 #: sw/inc/strings.hrc:581 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_UPDATE" msgid "Update table style: $1" -msgstr "Хуудасны загвар үүсгэх: $1" +msgstr "Хүснэгтийн загварыг шинэчлэх: $1" #. JegfU #: sw/inc/strings.hrc:582 -#, fuzzy msgctxt "STR_UNDO_TABLE_DELETE" msgid "Delete table" -msgstr "Хуудас устгах" +msgstr "Хүснэгтийг устгах" #. KSMpJ #: sw/inc/strings.hrc:583 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "" +msgstr "Маягтын талбар оруулах" #. 2zJmG #: sw/inc/strings.hrc:584 msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT" msgid "You can specify maximum of 25 items for a drop-down form field." -msgstr "" +msgstr "Унждаг маягтын талбарт та дээд тал нь 25 зүйлийг зааж өгч болно." #. CUXeF #: sw/inc/strings.hrc:586 @@ -5593,54 +5563,49 @@ #: sw/inc/strings.hrc:601 msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME" msgid "Resolved" -msgstr "" +msgstr "Шийдвэрлэсэн" #. JtzA4 #: sw/inc/strings.hrc:602 -#, fuzzy msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME" msgid "Actions" -msgstr "Хэсэг" +msgstr "Үйлдлүүд" #. cHWqM #: sw/inc/strings.hrc:603 msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC" msgid "Activate this button to open a list of actions which can be performed on this comment and other comments" -msgstr "" +msgstr "Энэ товчийг идэвхжүүлснээр энэ сэтгэгдэл болон бусад сэтгэгдэл дээр хийж болох үйлдлүүдийн жагсаалтыг нээнэ үү" #. 9YxaB #: sw/inc/strings.hrc:604 -#, fuzzy msgctxt "STR_ACCESS_PREVIEW_DOC_NAME" msgid "Document preview" -msgstr "Баримт харагдац" +msgstr "Баримт бичгийг урьдчилан үзэх" #. eYFFo #: sw/inc/strings.hrc:605 -#, fuzzy msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX" msgid "(Preview mode)" -msgstr "~Нягтлан харах горим" +msgstr "(Урьдчилан үзэх горим)" #. Fp7Hn #: sw/inc/strings.hrc:606 -#, fuzzy msgctxt "STR_ACCESS_DOC_WORDPROCESSING" msgid "%PRODUCTNAME Document" -msgstr "%PRODUCTNAME баримтууд" +msgstr "%PRODUCTNAME Баримт бичиг" #. CsQKH #: sw/inc/strings.hrc:608 -#, fuzzy msgctxt "STR_COMCORE_READERROR" msgid "Read Error" -msgstr "Унших-Алдаа" +msgstr "Унших алдаа" #. ztbVu #: sw/inc/strings.hrc:609 msgctxt "STR_COMCORE_CANT_SHOW" msgid "Image cannot be displayed." -msgstr "" +msgstr "Зургийг харуулах боломжгүй." #. iJsFt #: sw/inc/strings.hrc:610 @@ -5652,7 +5617,7 @@ #: sw/inc/strings.hrc:612 msgctxt "STR_COLUMN_BREAK" msgid "Manual Column Break" -msgstr "" +msgstr "Гараар баганын завсарлага" #. 7DzNG #: sw/inc/strings.hrc:614 @@ -5680,27 +5645,24 @@ #. ERH8o #: sw/inc/strings.hrc:618 -#, fuzzy msgctxt "STR_STYLE_FAMILY_FRAME" msgid "Frame" -msgstr "Блок" +msgstr "Хүрээ" #. Cqjn8 #: sw/inc/strings.hrc:619 -#, fuzzy msgctxt "STR_STYLE_FAMILY_PAGE" msgid "Pages" -msgstr "Хуудаснууд " +msgstr "Хуудсууд" #. FFZEr #: sw/inc/strings.hrc:620 msgctxt "STR_STYLE_FAMILY_NUMBERING" msgid "List" -msgstr "" +msgstr "Жагсаалт" #. NydLs #: sw/inc/strings.hrc:621 -#, fuzzy msgctxt "STR_STYLE_FAMILY_TABLE" msgid "Table" msgstr "Хүснэгт" @@ -5713,10 +5675,9 @@ #. DRqDZ #: sw/inc/strings.hrc:624 -#, fuzzy msgctxt "ST_SCRIPT_ASIAN" msgid "Asian" -msgstr "ази" +msgstr "Ази" #. owFtq #: sw/inc/strings.hrc:625 @@ -5728,11 +5689,10 @@ #: sw/inc/strings.hrc:626 msgctxt "ST_SCRIPT_WESTERN" msgid "Western" -msgstr "" +msgstr "Баруун" #. HD64i #: sw/inc/strings.hrc:627 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRODUCTNAME" msgid "%PRODUCTNAME %s" msgstr "%PRODUCTNAME %s" @@ -5745,37 +5705,33 @@ #. Ka4fM #: sw/inc/strings.hrc:629 -#, fuzzy msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND" msgid "Page ba~ckground" -msgstr "~Дэвсгэр" +msgstr "Хуудасны дэвсгэр" #. YPEEH #: sw/inc/strings.hrc:630 msgctxt "STR_PRINTOPTUI_PICTURES" msgid "~Images and other graphic objects" -msgstr "" +msgstr "Зураг болон бусад график объектууд" #. L6GSj #: sw/inc/strings.hrc:631 -#, fuzzy msgctxt "STR_PRINTOPTUI_HIDDEN" msgid "Hidden te~xt" -msgstr "Далд ~бичвэр" +msgstr "Нуугдсан текст" #. pXiRN #: sw/inc/strings.hrc:632 -#, fuzzy msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS" msgid "~Text placeholders" -msgstr "Бичвэрийн ~зай авагч" +msgstr "~Текст орлуулагч" #. JBWVd #: sw/inc/strings.hrc:633 -#, fuzzy msgctxt "STR_PRINTOPTUI_FORM_CONTROLS" msgid "Form control~s" -msgstr "~Контролууд" +msgstr "Хяналтууд" #. X8Bfu #: sw/inc/strings.hrc:634 @@ -5785,118 +5741,111 @@ #. kQDcq #: sw/inc/strings.hrc:635 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRINT_BLACK" msgid "Print text in blac~k" -msgstr "Ха~раар хэвлэх" +msgstr "Текстийг хараар хэвлэх" #. DEELn #: sw/inc/strings.hrc:636 msgctxt "STR_PRINTOPTUI_PAGES_TEXT" msgid "Pages:" -msgstr "" +msgstr "Хуудас:" #. uddbB #: sw/inc/strings.hrc:637 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRINT_BLANK" msgid "Print ~automatically inserted blank pages" -msgstr "~Автоматаар оруулсан хоосон хуудаснууд хэвлэ." +msgstr "Автоматаар оруулсан хоосон хуудсыг хэвлэх" #. MTJt2 #: sw/inc/strings.hrc:638 msgctxt "STR_PRINTOPTUI_ONLY_PAPER" msgid "~Use only paper tray from printer preferences" -msgstr "" +msgstr "Принтерийн тохиргооны дагуу цаасыг тэжээнэ" #. 4uBam #: sw/inc/strings.hrc:639 msgctxt "STR_PRINTOPTUI_NONE" msgid "None (document only)" -msgstr "" +msgstr "Үгүй (зөвхөн баримт бичиг)" #. pbQtA #: sw/inc/strings.hrc:640 -#, fuzzy msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY" msgid "Comments only" -msgstr "~Зөвхөн тэмдэглэлүүд" +msgstr "Зөвхөн сэтгэгдэл" #. sVnbD #: sw/inc/strings.hrc:641 msgctxt "STR_PRINTOPTUI_PLACE_END" msgid "Place at end of document" -msgstr "" +msgstr "Баримт бичгийн төгсгөлд байрлуулна" #. D4BXH #: sw/inc/strings.hrc:642 msgctxt "STR_PRINTOPTUI_PLACE_PAGE" msgid "Place at end of page" -msgstr "" +msgstr "Хуудасны төгсгөлд байрлуул" #. 6rzab #: sw/inc/strings.hrc:643 -#, fuzzy msgctxt "STR_PRINTOPTUI_COMMENTS" msgid "~Comments" -msgstr "Тэмдэглэлгээ" +msgstr "Сэтгэгдэл" #. cnqLU #: sw/inc/strings.hrc:644 -#, fuzzy msgctxt "STR_PRINTOPTUI_BROCHURE" msgid "Broch~ure" -msgstr "~Эмхтгэл" +msgstr "~Товхимол:" #. t6drz #: sw/inc/strings.hrc:645 msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT" msgid "Left-to-right script" -msgstr "" +msgstr "Зүүнээс баруун тийш" #. QgmxB #: sw/inc/strings.hrc:646 msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT" msgid "Right-to-left script" -msgstr "" +msgstr "Баруунаас зүүн тийш" #. t4Cm7 #: sw/inc/strings.hrc:647 msgctxt "STR_PRINTOPTUI_PRINTALLPAGES" msgid "~All Pages" -msgstr "" +msgstr "Бүх хуудас" #. ZDRM2 #: sw/inc/strings.hrc:648 msgctxt "STR_PRINTOPTUI_PRINTPAGES" msgid "Pa~ges:" -msgstr "" +msgstr "Хуудас:" #. rajyx #: sw/inc/strings.hrc:649 msgctxt "STR_PRINTOPTUI_PRINTSELECTION" msgid "~Selection" -msgstr "" +msgstr "Сонголт" #. 9EXcV #: sw/inc/strings.hrc:650 msgctxt "STR_PRINTOPTUI_PLACE_MARGINS" msgid "Place in margins" -msgstr "" +msgstr "Захын зайд байрлуул" #. NGQw3 #: sw/inc/strings.hrc:652 -#, fuzzy msgctxt "STR_FORMULA_CALC" msgid "Functions" msgstr "Функцүүд" #. D3RCG #: sw/inc/strings.hrc:653 -#, fuzzy msgctxt "STR_FORMULA_CANCEL" msgid "Cancel" -msgstr "Болих" +msgstr "Цуцлах" #. 3Tg3C #: sw/inc/strings.hrc:654 @@ -5908,43 +5857,40 @@ #: sw/inc/strings.hrc:655 msgctxt "STR_ACCESS_FORMULA_TOOLBAR" msgid "Formula Tool Bar" -msgstr "" +msgstr "Томъёоны мөр" #. Z3CB5 #: sw/inc/strings.hrc:656 msgctxt "STR_ACCESS_FORMULA_TYPE" msgid "Formula Type" -msgstr "" +msgstr "Томъёоны төрөл" #. 3CCa7 #: sw/inc/strings.hrc:657 -#, fuzzy msgctxt "STR_ACCESS_FORMULA_TEXT" msgid "Formula Text" -msgstr "~Томьёон дахь бичвэр" +msgstr "Томъёоны текст" #. FXNer #: sw/inc/strings.hrc:659 msgctxt "STR_ACCESS_TL_GLOBAL" msgid "Global View" -msgstr "" +msgstr "Ерөнхий хэлбэр" #. aeeRP #: sw/inc/strings.hrc:660 msgctxt "STR_ACCESS_TL_CONTENT" msgid "Content Navigation View" -msgstr "" +msgstr "Агуулга" #. UAExA #: sw/inc/strings.hrc:661 -#, fuzzy msgctxt "STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "Гишүүнчлэлийн төвшин" +msgstr "Бүтцийн түвшин" #. yERK6 #: sw/inc/strings.hrc:662 -#, fuzzy msgctxt "STR_DRAGMODE" msgid "Drag Mode" msgstr "Чирэх горим" @@ -5953,141 +5899,133 @@ #: sw/inc/strings.hrc:663 msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY" msgid "Send Outline to Clipboard" -msgstr "" +msgstr "Түр санах ойд тойм" #. b5tPU #: sw/inc/strings.hrc:664 msgctxt "STR_OUTLINE_TRACKING" msgid "Outline Tracking" -msgstr "" +msgstr "Бүтцийн хяналт" #. qzXwn #: sw/inc/strings.hrc:665 msgctxt "STR_OUTLINE_TRACKING_DEFAULT" msgid "Default" -msgstr "" +msgstr "Өгөгдмөл" #. HGDgJ #: sw/inc/strings.hrc:666 msgctxt "STR_OUTLINE_TRACKING_FOCUS" msgid "Focus" -msgstr "" +msgstr "Төвлөрөлт" #. BYRpF #: sw/inc/strings.hrc:667 msgctxt "STR_OUTLINE_TRACKING_OFF" msgid "Off" -msgstr "" +msgstr "Унтраасан" #. NGgt3 #: sw/inc/strings.hrc:668 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "" +msgstr "Контурыг нугалахыг асаах/унтраах бол товшино уу" #. 44jEc #: sw/inc/strings.hrc:669 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "Дэд түвшнийг оруулахын тулд хулганы баруун товчийг дарна уу" #. mnZA9 #: sw/inc/strings.hrc:670 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "" +msgstr "Контурыг нугалахыг асаах/унтраах бол товшино уу" #. rkD8H #: sw/inc/strings.hrc:671 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "Дэд түвшнийг оруулахын тулд хулганы баруун товчийг дарна уу" #. oBH6y #: sw/inc/strings.hrc:672 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE" msgid "Toggle" -msgstr "" +msgstr "Солих" #. YBDFD #: sw/inc/strings.hrc:673 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL" msgid "Unfold All" -msgstr "" +msgstr "Бүгдийг задлах" #. Cj4js #: sw/inc/strings.hrc:674 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL" msgid "Fold All" -msgstr "" +msgstr "Бүгдийг нугалах" #. 9Fipd #: sw/inc/strings.hrc:676 msgctxt "STR_EXPANDALL" msgid "Expand All" -msgstr "" +msgstr "Бүгдийг дэлгэх" #. FxGVt #: sw/inc/strings.hrc:677 msgctxt "STR_COLLAPSEALL" msgid "Collapse All" -msgstr "" +msgstr "Бүгдийг хумих" #. xvSRm #: sw/inc/strings.hrc:678 -#, fuzzy msgctxt "STR_HYPERLINK" msgid "Insert as Hyperlink" -msgstr "Гипер холбоос оруулах" +msgstr "Гипер холбоос болгон буулгана уу" #. sdfGe #: sw/inc/strings.hrc:679 -#, fuzzy msgctxt "STR_LINK_REGION" msgid "Insert as Link" -msgstr "Холбоосоор оруулах" +msgstr "Холбоос болгон буулгана уу" #. Suaiz #: sw/inc/strings.hrc:680 -#, fuzzy msgctxt "STR_COPY_REGION" msgid "Insert as Copy" -msgstr "Хуулбараар оруулах" +msgstr "Хуулбар болгон буулгана уу" #. VgdhT #: sw/inc/strings.hrc:681 -#, fuzzy msgctxt "STR_DISPLAY" msgid "Display" msgstr "Үзүүлэх" #. 3VXp5 #: sw/inc/strings.hrc:682 -#, fuzzy msgctxt "STR_ACTIVE_VIEW" msgid "Active Window" msgstr "Идэвхтэй цонх" #. fAAUc #: sw/inc/strings.hrc:683 -#, fuzzy msgctxt "STR_HIDDEN" msgid "hidden" -msgstr "далдалсан" +msgstr "далд" #. 3VWjq #: sw/inc/strings.hrc:684 -#, fuzzy msgctxt "STR_ACTIVE" msgid "active" msgstr "идэвхтэй" #. YjPvg #: sw/inc/strings.hrc:685 -#, fuzzy msgctxt "STR_INACTIVE" msgid "inactive" -msgstr "Идэвхгүй" +msgstr "идэвхгүй" #. tBPKU #: sw/inc/strings.hrc:686 @@ -6097,10 +6035,9 @@ #. ppC87 #: sw/inc/strings.hrc:687 -#, fuzzy msgctxt "STR_UPDATE" msgid "~Update" -msgstr "~Шинэчлэл" +msgstr "~Шинэчлэх" #. 44Esc #: sw/inc/strings.hrc:688 @@ -6110,10 +6047,9 @@ #. w3ZrD #: sw/inc/strings.hrc:689 -#, fuzzy msgctxt "STR_EDIT_LINK" msgid "Edit link" -msgstr "Холбоос засах" +msgstr "Холбоосыг засах" #. xyPWE #: sw/inc/strings.hrc:690 @@ -6123,10 +6059,9 @@ #. AT9SS #: sw/inc/strings.hrc:691 -#, fuzzy msgctxt "STR_INDEX" msgid "~Index" -msgstr "Индекс" +msgstr "~Индекс" #. MnBLc #: sw/inc/strings.hrc:692 @@ -6136,10 +6071,9 @@ #. DdBgh #: sw/inc/strings.hrc:693 -#, fuzzy msgctxt "STR_NEW_FILE" msgid "New Document" -msgstr "Баримт тус бүрээр" +msgstr "Шинэ баримт бичиг" #. aV9Uy #: sw/inc/strings.hrc:694 @@ -6173,10 +6107,9 @@ #. WKwLS #: sw/inc/strings.hrc:699 -#, fuzzy msgctxt "STR_UPDATE_LINK" msgid "Links" -msgstr "Х~олбоосууд" +msgstr "Холбоосууд" #. TaaJK #: sw/inc/strings.hrc:700 @@ -6186,59 +6119,57 @@ #. HpMeb #: sw/inc/strings.hrc:702 -#, fuzzy msgctxt "STR_INVISIBLE" msgid "hidden" -msgstr "далдалсан" +msgstr "далд" #. XcCnB #: sw/inc/strings.hrc:703 -#, fuzzy msgctxt "STR_BROKEN_LINK" msgid "File not found: " -msgstr "Шүүлтүүр олдсонгүй." +msgstr "Файл олдсонгүй: " #. UC53U #: sw/inc/strings.hrc:705 msgctxt "STR_RESOLVED" msgid "RESOLVED" -msgstr "" +msgstr "ШИЙДСЭН" #. 3ceMF #: sw/inc/strings.hrc:707 msgctxt "STR_MARGIN_TOOLTIP_LEFT" msgid "Left: " -msgstr "" +msgstr "Зүүн: " #. EiXF2 #: sw/inc/strings.hrc:708 msgctxt "STR_MARGIN_TOOLTIP_RIGHT" msgid ". Right: " -msgstr "" +msgstr ". Баруун: " #. UFpVa #: sw/inc/strings.hrc:709 msgctxt "STR_MARGIN_TOOLTIP_INNER" msgid "Inner: " -msgstr "" +msgstr "Дотор: " #. XE7Wb #: sw/inc/strings.hrc:710 msgctxt "STR_MARGIN_TOOLTIP_OUTER" msgid ". Outer: " -msgstr "" +msgstr ". Гадна: " #. 3A8Vg #: sw/inc/strings.hrc:711 msgctxt "STR_MARGIN_TOOLTIP_TOP" msgid ". Top: " -msgstr "" +msgstr ". Дээр: " #. dRhyZ #: sw/inc/strings.hrc:712 msgctxt "STR_MARGIN_TOOLTIP_BOT" msgid ". Bottom: " -msgstr "" +msgstr ". Доод талд: " #. XuC4Y #. Error calculator @@ -6249,10 +6180,9 @@ #. AeDYh #: sw/inc/strings.hrc:716 -#, fuzzy msgctxt "STR_POSTIT_LINE" msgid "Line" -msgstr "Шулуун" +msgstr "Шугам" #. kfJG6 #: sw/inc/strings.hrc:717 @@ -6264,132 +6194,125 @@ #: sw/inc/strings.hrc:718 msgctxt "STR_CALC_SYNTAX" msgid "** Syntax Error **" -msgstr "" +msgstr "** Синтакс алдаа **" #. q6dUT #: sw/inc/strings.hrc:719 msgctxt "STR_CALC_ZERODIV" msgid "** Division by zero **" -msgstr "" +msgstr "** Тэгээр хуваах **" #. HSo6d #: sw/inc/strings.hrc:720 msgctxt "STR_CALC_BRACK" msgid "** Wrong use of brackets **" -msgstr "" +msgstr "** Хаалтны буруу хэрэглээ **" #. jcNfg #: sw/inc/strings.hrc:721 msgctxt "STR_CALC_POW" msgid "** Square function overflow **" -msgstr "" +msgstr "** Квадрат функц дэх халих **" #. C453V #: sw/inc/strings.hrc:722 msgctxt "STR_CALC_OVERFLOW" msgid "** Overflow **" -msgstr "" +msgstr "** Халих **" #. KEQfz #: sw/inc/strings.hrc:723 msgctxt "STR_CALC_DEFAULT" msgid "** Error **" -msgstr "" +msgstr "** Алдаа **" #. hxrg9 #: sw/inc/strings.hrc:724 msgctxt "STR_CALC_ERROR" msgid "** Expression is faulty **" -msgstr "" +msgstr "** Буруу илэрхийлэл **" #. 2yBhF #: sw/inc/strings.hrc:725 msgctxt "STR_GETREFFLD_REFITEMNOTFOUND" msgid "Error: Reference source not found" -msgstr "" +msgstr "Алдаа: Лавлагааны эх сурвалж олдсонгүй" #. jgRW7 #: sw/inc/strings.hrc:726 -#, fuzzy msgctxt "STR_TEMPLATE_NONE" msgid "None" -msgstr "Тэмдэглэл " +msgstr "Үгүй" #. KRD6s #: sw/inc/strings.hrc:727 msgctxt "STR_FIELD_FIXED" msgid "(fixed)" -msgstr "" +msgstr "(тогтмол)" #. FCRUB #: sw/inc/strings.hrc:728 msgctxt "STR_DURATION_FORMAT" msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6" -msgstr "" +msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6" #. ocA84 #: sw/inc/strings.hrc:729 msgctxt "STR_TOI" msgid "Alphabetical Index" -msgstr "" +msgstr "Цагаан толгойн үсгийн индекс" #. GDCRF #: sw/inc/strings.hrc:730 -#, fuzzy msgctxt "STR_TOU" msgid "User-Defined" -msgstr "Хэрэглэгч-тодорхойлсон" +msgstr "Онцгой" #. vnaNc #: sw/inc/strings.hrc:731 -#, fuzzy msgctxt "STR_TOC" msgid "Table of Contents" msgstr "Агуулгын хүснэгт" #. BESjb #: sw/inc/strings.hrc:732 -#, fuzzy msgctxt "STR_TOX_AUTH" msgid "Bibliography" -msgstr "Ном зүй 1" +msgstr "Ном зүй" #. ZFBUD #: sw/inc/strings.hrc:733 -#, fuzzy msgctxt "STR_TOX_CITATION" msgid "Citation" -msgstr "Ишлэл" +msgstr "Иш татах" #. WAs8q #: sw/inc/strings.hrc:734 msgctxt "STR_TOX_TBL" msgid "Index of Tables" -msgstr "" +msgstr "Хүснэгтүүдийн жагсаалт" #. NFzTx #: sw/inc/strings.hrc:735 msgctxt "STR_TOX_OBJ" msgid "Table of Objects" -msgstr "" +msgstr "Объектуудын жагсаалт" #. mSyms #: sw/inc/strings.hrc:736 msgctxt "STR_TOX_ILL" msgid "Table of Figures" -msgstr "" +msgstr "Зургийн жагсаалт" #. TspkU #. SubType DocInfo #: sw/inc/strings.hrc:738 -#, fuzzy msgctxt "FLD_DOCINFO_TITEL" msgid "Title" msgstr "Гарчиг" #. ziEpC #: sw/inc/strings.hrc:739 -#, fuzzy msgctxt "FLD_DOCINFO_THEMA" msgid "Subject" msgstr "Сэдэв" @@ -6408,14 +6331,12 @@ #. i6psX #: sw/inc/strings.hrc:742 -#, fuzzy msgctxt "FLD_DOCINFO_CREATE" msgid "Created" -msgstr "Үүсгэсэн:" +msgstr "Үүсгэсэн" #. L2Bxp #: sw/inc/strings.hrc:743 -#, fuzzy msgctxt "FLD_DOCINFO_CHANGE" msgid "Modified" msgstr "Өөрчлөгдсөн" @@ -6424,7 +6345,7 @@ #: sw/inc/strings.hrc:744 msgctxt "FLD_DOCINFO_PRINT" msgid "Last printed" -msgstr "" +msgstr "Сүүлд хэвлэгдсэн" #. QtuZM #: sw/inc/strings.hrc:745 @@ -6442,19 +6363,19 @@ #: sw/inc/strings.hrc:747 msgctxt "STR_PAGEDESC_NAME" msgid "Convert $(ARG1)" -msgstr "" +msgstr "$(ARG1) хөрвүүлэлт" #. nY3NU #: sw/inc/strings.hrc:748 msgctxt "STR_PAGEDESC_FIRSTNAME" msgid "First convert $(ARG1)" -msgstr "" +msgstr "Эхний хөрвүүлэлт $(ARG1)" #. eQtGV #: sw/inc/strings.hrc:749 msgctxt "STR_PAGEDESC_FOLLOWNAME" msgid "Next convert $(ARG1)" -msgstr "" +msgstr "Дараагийн хувиргалт $(ARG1)" #. aBwxC #: sw/inc/strings.hrc:750 @@ -6470,10 +6391,9 @@ #. GD5KJ #: sw/inc/strings.hrc:752 -#, fuzzy msgctxt "STR_AUTH_TYPE_BOOKLET" msgid "Brochures" -msgstr "~Эмхтгэл" +msgstr "Товхимол" #. mfFSf #: sw/inc/strings.hrc:753 @@ -6519,10 +6439,9 @@ #. NoUCv #: sw/inc/strings.hrc:760 -#, fuzzy msgctxt "STR_AUTH_TYPE_MISC" msgid "Miscellaneous" -msgstr "Янз бүрийн" +msgstr "Бусад" #. qNGGE #: sw/inc/strings.hrc:761 @@ -6552,14 +6471,13 @@ #: sw/inc/strings.hrc:765 msgctxt "STR_AUTH_TYPE_EMAIL" msgid "Email" -msgstr "" +msgstr "Имэйл" #. 9HKD6 #: sw/inc/strings.hrc:766 -#, fuzzy msgctxt "STR_AUTH_TYPE_WWW" msgid "WWW document" -msgstr "Баримт тус бүрээр" +msgstr "Вэб сайт" #. qA449 #: sw/inc/strings.hrc:767 @@ -6605,31 +6523,27 @@ #. kUGDr #: sw/inc/strings.hrc:774 -#, fuzzy msgctxt "STR_AUTH_FIELD_ADDRESS" msgid "Address" -msgstr "Хүлээн авагч" +msgstr "Хаяг" #. DquVQ #: sw/inc/strings.hrc:775 -#, fuzzy msgctxt "STR_AUTH_FIELD_ANNOTE" msgid "Annotation" -msgstr "Тэмдэг~лэгээ" +msgstr "Сэтгэгдэл" #. sduuV #: sw/inc/strings.hrc:776 -#, fuzzy msgctxt "STR_AUTH_FIELD_AUTHOR" msgid "Author(s)" -msgstr "Зохиогч(ид)" +msgstr "Зохиогч(ууд)" #. fXvz6 #: sw/inc/strings.hrc:777 -#, fuzzy msgctxt "STR_AUTH_FIELD_BOOKTITLE" msgid "Book title" -msgstr "~Номын нэр" +msgstr "Номын гарчиг" #. c8PFE #: sw/inc/strings.hrc:778 @@ -6639,31 +6553,27 @@ #. GXqxF #: sw/inc/strings.hrc:779 -#, fuzzy msgctxt "STR_AUTH_FIELD_EDITION" msgid "Edition" -msgstr "Хэ~влэлт" +msgstr "Хэвлэл" #. p7A3p #: sw/inc/strings.hrc:780 -#, fuzzy msgctxt "STR_AUTH_FIELD_EDITOR" msgid "Editor" -msgstr "Хянан шалгагч" +msgstr "Редактор" #. aAFEz #: sw/inc/strings.hrc:781 -#, fuzzy msgctxt "STR_AUTH_FIELD_HOWPUBLISHED" msgid "Publication type" -msgstr "Хэвлэлтийн т~өрөл" +msgstr "Гаргах төрөл" #. 8DwdJ #: sw/inc/strings.hrc:782 -#, fuzzy msgctxt "STR_AUTH_FIELD_INSTITUTION" msgid "Institution" -msgstr "Инс~титут" +msgstr "Байгууллага" #. VWNxy #: sw/inc/strings.hrc:783 @@ -6691,17 +6601,15 @@ #. ZB7Go #: sw/inc/strings.hrc:787 -#, fuzzy msgctxt "STR_AUTH_FIELD_ORGANIZATIONS" msgid "Organization" -msgstr "Байг~ууллага" +msgstr "Байгууллага" #. C4CdP #: sw/inc/strings.hrc:788 -#, fuzzy msgctxt "STR_AUTH_FIELD_PAGES" msgid "Page(s)" -msgstr "~Хуудас(нууд)" +msgstr "Хуудасны тоо" #. yFPFa #: sw/inc/strings.hrc:789 @@ -6711,31 +6619,27 @@ #. d9u3p #: sw/inc/strings.hrc:790 -#, fuzzy msgctxt "STR_AUTH_FIELD_SCHOOL" msgid "University" msgstr "Их сургууль" #. Qxsdb #: sw/inc/strings.hrc:791 -#, fuzzy msgctxt "STR_AUTH_FIELD_SERIES" msgid "Series" -msgstr "~Анги" +msgstr "Цуврал" #. YhXPg #: sw/inc/strings.hrc:792 -#, fuzzy msgctxt "STR_AUTH_FIELD_TITLE" msgid "Title" msgstr "Гарчиг" #. qEBhL #: sw/inc/strings.hrc:793 -#, fuzzy msgctxt "STR_AUTH_FIELD_TYPE" msgid "Type of report" -msgstr "~Тайлангийн Төрөл" +msgstr "Тайлангийн төрөл" #. Sij9w #: sw/inc/strings.hrc:794 @@ -6745,10 +6649,9 @@ #. K8miv #: sw/inc/strings.hrc:795 -#, fuzzy msgctxt "STR_AUTH_FIELD_YEAR" msgid "Year" -msgstr "Жил " +msgstr "Жил" #. pFMSV #: sw/inc/strings.hrc:796 @@ -6788,16 +6691,15 @@ #. 3r6Wg #: sw/inc/strings.hrc:802 -#, fuzzy msgctxt "STR_AUTH_FIELD_ISBN" msgid "ISBN" -msgstr "~ИСБН" +msgstr "ISBN" #. BhDrt #: sw/inc/strings.hrc:803 msgctxt "STR_AUTH_FIELD_LOCAL_URL" msgid "Local copy" -msgstr "" +msgstr "Дотоод хуулбар" #. eFnnx #: sw/inc/strings.hrc:805 @@ -6813,31 +6715,27 @@ #. D2gkA #: sw/inc/strings.hrc:807 -#, fuzzy msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY" msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?" -msgstr "Баримт зөрүү өгөгдөл бүхий ном зүйн бичлэг агуулж байна. Та байгаа бичлэгүүдийг тааруулахыг хүсэж байна уу?" +msgstr "Баримт бичигт аль хэдийн ном зүйн бичилт орсон боловч өөр өөр өгөгдөлтэй. Та одоо байгаа оруулгуудыг тохируулахыг хүсч байна уу?" #. mK84T #: sw/inc/strings.hrc:809 -#, fuzzy msgctxt "STR_COMMENTS_LABEL" msgid "Comments" -msgstr "Тайлбар" +msgstr "Сэтгэгдэл" #. fwecS #: sw/inc/strings.hrc:810 -#, fuzzy msgctxt "STR_SHOW_COMMENTS" msgid "Show comments" -msgstr "Тэмдэглэл харуулах" +msgstr "Сэтгэгдэл харуулах" #. HkUvy #: sw/inc/strings.hrc:811 -#, fuzzy msgctxt "STR_HIDE_COMMENTS" msgid "Hide comments" -msgstr "Тэмдэглэл далдлах" +msgstr "Сэтгэгдэл нуух" #. FcmEy #: sw/inc/strings.hrc:813 @@ -6885,25 +6783,25 @@ #: sw/inc/strings.hrc:820 msgctxt "STR_MY_AUTOTEXT" msgid "My AutoText" -msgstr "" +msgstr "Миний автотекст" #. GaoqR #: sw/inc/strings.hrc:822 msgctxt "STR_NOGLOS" msgid "AutoText for Shortcut '%1' not found." -msgstr "" +msgstr "'%1' товчлолын автомат текст олдсонгүй." #. MwUEP #: sw/inc/strings.hrc:823 msgctxt "STR_NO_TABLE" msgid "A table with no rows or no cells cannot be inserted" -msgstr "" +msgstr "Мөргүй эсвэл нүдгүй хүснэгт оруулах боломжгүй" #. AawM4 #: sw/inc/strings.hrc:824 msgctxt "STR_TABLE_TOO_LARGE" msgid "The table cannot be inserted because it is too large" -msgstr "" +msgstr "Хүснэгт хэт том учир оруулах боломжгүй" #. GGo8i #: sw/inc/strings.hrc:825 @@ -6921,105 +6819,103 @@ #: sw/inc/strings.hrc:827 msgctxt "STR_PRIVATETEXT" msgid "%PRODUCTNAME %PRODUCTVERSION Text Document" -msgstr "" +msgstr "% PRODUCTNAME% PRODUCTVERSION Текст баримт" #. 8ygN3 #: sw/inc/strings.hrc:828 msgctxt "STR_PRIVATEGRAPHIC" msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)" -msgstr "" +msgstr "Зураг (% PRODUCTNAME% PRODUCTVERSION Текст баримт)" #. ewPPB #: sw/inc/strings.hrc:829 msgctxt "STR_PRIVATEOLE" msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)" -msgstr "" +msgstr "Объект (%PRODUCTNAME %PRODUCTVERSION Текст баримт)" #. 9VEc3 #: sw/inc/strings.hrc:830 msgctxt "STR_DDEFORMAT" msgid "Dynamic Data Exchange (DDE link)" -msgstr "" +msgstr "Динамик өгөгдөл солилцох (DDE холбоос)" #. svrE7 #: sw/inc/strings.hrc:832 msgctxt "STR_DELETE_ALL_NOTES" msgid "All Comments" -msgstr "" +msgstr "Бүх сэтгэгдэл" #. YGNN4 #: sw/inc/strings.hrc:833 msgctxt "STR_FORMAT_ALL_NOTES" msgid "All Comments" -msgstr "" +msgstr "Бүх сэтгэгдэл" #. GDH49 #: sw/inc/strings.hrc:834 msgctxt "STR_DELETE_AUTHOR_NOTES" msgid "Comments by " -msgstr "" +msgstr "Сэтгэгдэл бичсэн " #. RwAcm #: sw/inc/strings.hrc:835 msgctxt "STR_NODATE" msgid "(no date)" -msgstr "" +msgstr "(огноо байхгүй)" #. ytxKG #: sw/inc/strings.hrc:836 msgctxt "STR_NOAUTHOR" msgid "(no author)" -msgstr "" +msgstr "(зохиогчгүй)" #. nAwMG #: sw/inc/strings.hrc:837 msgctxt "STR_REPLY" msgid "Reply to $1" -msgstr "" +msgstr "$1-д хариулна уу" #. CVVa6 #: sw/inc/strings.hrc:839 -#, fuzzy msgctxt "ST_TITLE_EDIT" msgid "Edit Address Block" -msgstr "Шинэ хаягийн блок" +msgstr "Хаягтай блок засах" #. njGGA #: sw/inc/strings.hrc:840 msgctxt "ST_TITLE_MALE" msgid "Custom Salutation (Male Recipients)" -msgstr "" +msgstr "Захиалгат мэндчилгээ (эрэгтэй хүмүүс)" #. ZVuKY #: sw/inc/strings.hrc:841 msgctxt "ST_TITLE_FEMALE" msgid "Custom Salutation (Female Recipients)" -msgstr "" +msgstr "Захиалгат мэндчилгээ (эмэгтэй хүлээн авагчид)" #. h4yuq #: sw/inc/strings.hrc:842 -#, fuzzy msgctxt "ST_SALUTATIONELEMENTS" msgid "Salutation e~lements" -msgstr "Мэндчилэлийн элемент" +msgstr "Мэндчилгээний элементүүд" #. kWhqT #: sw/inc/strings.hrc:843 msgctxt "ST_INSERTSALUTATIONFIELD" msgid "Add to salutation" -msgstr "" +msgstr "Мэндчилгээнд нэмнэ үү" #. hvF3V #: sw/inc/strings.hrc:844 msgctxt "ST_REMOVESALUTATIONFIELD" msgid "Remove from salutation" -msgstr "" +msgstr "Мэндчилгээнээс хас" #. A6XaR #: sw/inc/strings.hrc:845 msgctxt "ST_DRAGSALUTATION" msgid "1. ~Drag salutation elements into the box below" -msgstr "" +msgstr "1. ~Доорх хайрцагт мэндчилгээний элементүүдийг чирнэ үү" #. 4VJWL #: sw/inc/strings.hrc:846 @@ -7031,7 +6927,7 @@ #: sw/inc/strings.hrc:847 msgctxt "ST_PUNCTUATION" msgid "Punctuation Mark" -msgstr "" +msgstr "Цэг таслал" #. bafeG #: sw/inc/strings.hrc:848 @@ -7041,10 +6937,9 @@ #. tt6sA #: sw/inc/strings.hrc:849 -#, fuzzy msgctxt "ST_SALUTATIONMATCHING" msgid "Assign the fields from your data source to match the salutation elements." -msgstr "Та өгөгдлийн эхийн хаягийн элементүүдийг тогтооно уу." +msgstr "Өгөгдлийн эх сурвалжаасаа мэндчилгээний элементүүдтэй тохирох талбаруудыг оноож өг." #. zrUsN #: sw/inc/strings.hrc:850 @@ -7080,7 +6975,7 @@ #: sw/inc/strings.hrc:855 msgctxt "ST_DELETE_CONFIRM" msgid "Do you want to delete this registered data source?" -msgstr "" +msgstr "Та энэ бүртгэгдсэн мэдээллийн эх сурвалжийг устгахыг хүсэж байна уу?" #. kE5C3 #: sw/inc/strings.hrc:857 @@ -7114,10 +7009,9 @@ #. sq73T #: sw/inc/strings.hrc:862 -#, fuzzy msgctxt "STR_FILTER_SXW" msgid "%PRODUCTNAME Writer (*.odt;*.sxw)" -msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)" +msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)" #. QupGC #: sw/inc/strings.hrc:863 @@ -7127,16 +7021,15 @@ #. SzqRv #: sw/inc/strings.hrc:864 -#, fuzzy msgctxt "STR_FILTER_XLS" msgid "Microsoft Excel (*.xls;*.xlsx)" -msgstr "Microsoft Excel (*.xls)" +msgstr "Microsoft Excel (*.xls;*.xlsx)" #. zAUu8 #: sw/inc/strings.hrc:865 msgctxt "STR_FILTER_DOC" msgid "Microsoft Word (*.doc;*.docx)" -msgstr "" +msgstr "Microsoft Word (*.doc;*.docx)" #. JBZFc #: sw/inc/strings.hrc:866 @@ -7154,13 +7047,13 @@ #: sw/inc/strings.hrc:868 msgctxt "STR_FILTER_MDB" msgid "Microsoft Access (*.mdb;*.mde)" -msgstr "" +msgstr "Microsoft Access (*.mdb;*.mde)" #. DwxF8 #: sw/inc/strings.hrc:869 msgctxt "STR_FILTER_ACCDB" msgid "Microsoft Access 2007 (*.accdb,*.accde)" -msgstr "" +msgstr "Microsoft Access 2007 (*.accdb,*.accde)" #. uDNRt #: sw/inc/strings.hrc:870 @@ -7170,6 +7063,9 @@ "\n" "Do you want to enter email account information now?" msgstr "" +"Мэйл нэгтгэх баримт бичгүүдийг имэйлээр илгээхийн тулд %PRODUCTNAME нь ашиглах имэйл бүртгэлийн талаарх мэдээллийг шаарддаг.\n" +"\n" +"Та одоо имэйл дансны мэдээллийг оруулахыг хүсэж байна уу?" #. r9BVg #: sw/inc/strings.hrc:871 @@ -7181,43 +7077,43 @@ #: sw/inc/strings.hrc:873 msgctxt "ST_STARTING" msgid "Select Starting Document" -msgstr "" +msgstr "Эхлэх баримт бичгийг сонгоно уу" #. FiUyK #: sw/inc/strings.hrc:874 msgctxt "ST_DOCUMENTTYPE" msgid "Select Document Type" -msgstr "" +msgstr "Баримт бичгийн төрлийг сонгоно уу" #. QwrpS #: sw/inc/strings.hrc:875 msgctxt "ST_ADDRESSBLOCK" msgid "Insert Address Block" -msgstr "" +msgstr "Хаягийн блок оруулах" #. omRZF #: sw/inc/strings.hrc:876 msgctxt "ST_ADDRESSLIST" msgid "Select Address List" -msgstr "" +msgstr "Хаягийн жагсаалтыг сонгоно уу" #. YrDuD #: sw/inc/strings.hrc:877 msgctxt "ST_GREETINGSLINE" msgid "Create Salutation" -msgstr "" +msgstr "Мэндчилгээ үүсгэх" #. tTr4B #: sw/inc/strings.hrc:878 msgctxt "ST_LAYOUT" msgid "Adjust Layout" -msgstr "" +msgstr "Тэмдэглэгээний тохиргоо" #. S4p5M #: sw/inc/strings.hrc:879 msgctxt "ST_EXCLUDE" msgid "Exclude recipient" -msgstr "" +msgstr "Хүлээн авагчийг хасах" #. N5YUH #: sw/inc/strings.hrc:880 @@ -7227,10 +7123,9 @@ #. L5FEG #: sw/inc/strings.hrc:881 -#, fuzzy msgctxt "ST_MMWTITLE" msgid "Mail Merge Wizard" -msgstr "Цуврал захианы залуурч" +msgstr "Мэйл нэгтгэх шидтэн" #. CEhZj #: sw/inc/strings.hrc:883 @@ -7260,7 +7155,7 @@ #: sw/inc/strings.hrc:888 msgctxt "STR_DICTIONARY_UNAVAILABLE" msgid "No dictionary available" -msgstr "" +msgstr "Толь бичиг байхгүй байна" #. 8gBWQ #. -------------------------------------------------------------------- @@ -7300,7 +7195,7 @@ #: sw/inc/strings.hrc:899 msgctxt "STR_PAGENUMBERFLD" msgid "Page number" -msgstr "" +msgstr "Хуудасны дугаар" #. EXC6N #: sw/inc/strings.hrc:900 @@ -7604,7 +7499,7 @@ #: sw/inc/strings.hrc:958 msgctxt "FLD_INPUT_TEXT" msgid "[Text]" -msgstr "" +msgstr "[Текст]" #. TyYok #. -------------------------------------------------------------------- @@ -7685,13 +7580,13 @@ #: sw/inc/strings.hrc:975 msgctxt "FLD_EU_FAX" msgid "Fax" -msgstr "" +msgstr "Факс" #. AtN9J #: sw/inc/strings.hrc:976 msgctxt "FLD_EU_EMAIL" msgid "Email" -msgstr "" +msgstr "Имэйл" #. 6GBRm #: sw/inc/strings.hrc:977 @@ -7743,7 +7638,7 @@ #: sw/inc/strings.hrc:988 msgctxt "FMT_FF_UI_NAME" msgid "Template name" -msgstr "" +msgstr "Загварын нэр" #. ANM2H #: sw/inc/strings.hrc:989 @@ -7785,25 +7680,25 @@ #: sw/inc/strings.hrc:1000 msgctxt "FMT_NUM_ABC" msgid "A B C" -msgstr "" +msgstr "A B C" #. jm7G7 #: sw/inc/strings.hrc:1001 msgctxt "FMT_NUM_SABC" msgid "a b c" -msgstr "" +msgstr "a b c" #. ETgy7 #: sw/inc/strings.hrc:1002 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "" +msgstr "A .. AA .. AAA" #. m84Fb #: sw/inc/strings.hrc:1003 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "" +msgstr "a .. aa .. aaa" #. d9YtB #: sw/inc/strings.hrc:1004 @@ -7929,13 +7824,13 @@ #: sw/inc/strings.hrc:1034 msgctxt "FMT_REF_TEXT" msgid "Referenced text" -msgstr "" +msgstr "Иш татсан текст" #. eeSAu #: sw/inc/strings.hrc:1035 msgctxt "FMT_REF_PAGE" msgid "Page number (unstyled)" -msgstr "" +msgstr "Хуудасны дугаар (загваргүй)" #. MaB3q #: sw/inc/strings.hrc:1036 @@ -7947,13 +7842,13 @@ #: sw/inc/strings.hrc:1037 msgctxt "FMT_REF_UPDOWN" msgid "“Above”/“Below”" -msgstr "" +msgstr "\"Дээр\"/\"Доор\"" #. 96emU #: sw/inc/strings.hrc:1038 msgctxt "FMT_REF_PAGE_PGDSC" msgid "Page number (styled)" -msgstr "" +msgstr "Хуудасны дугаар (загвартай)" #. CQitd #: sw/inc/strings.hrc:1039 @@ -7995,13 +7890,13 @@ #: sw/inc/strings.hrc:1046 msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE" msgid "Article a/az + " -msgstr "" +msgstr "Нийтлэл a/az + " #. 97Vs7 #: sw/inc/strings.hrc:1047 msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE" msgid "Article A/Az + " -msgstr "" +msgstr "Нийтлэл A/Az + " #. UYNRx #. -------------------------------------------------------------------- @@ -8163,85 +8058,80 @@ #: sw/inc/strings.hrc:1082 msgctxt "STR_WORDCOUNT_HINT" msgid "Word and character count. Click to open Word Count dialog." -msgstr "" +msgstr "Үг ба тэмдэгтийн тоо. Үг тоолох харилцах цонхыг нээхийн тулд товшино уу." #. nxGNq #: sw/inc/strings.hrc:1083 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "" +msgstr "Нэг хуудас харах" #. 57ju6 #: sw/inc/strings.hrc:1084 msgctxt "STR_VIEWLAYOUT_MULTI" msgid "Multiple-page view" -msgstr "" +msgstr "Олон хуудас харах" #. tbig8 #: sw/inc/strings.hrc:1085 -#, fuzzy msgctxt "STR_VIEWLAYOUT_BOOK" msgid "Book view" -msgstr "Нягтлан харалт тэмдэглэх" +msgstr "Номын харагдах байдал" #. xBHUG #: sw/inc/strings.hrc:1086 msgctxt "STR_BOOKCTRL_HINT" msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list." -msgstr "" +msgstr "Баримт бичгийн хуудасны дугаар. Хуудас руу очих цонхыг нээхийн тулд товшино уу эсвэл хавчуургын жагсаалтыг харахын тулд хулганы баруун товчийг дарна уу." #. XaF3v #: sw/inc/strings.hrc:1087 msgctxt "STR_BOOKCTRL_HINT_EXTENDED" msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog." -msgstr "" +msgstr "Баримт бичгийн хуудасны дугаар (Хэвлэсэн баримт дээрх хуудасны дугаар). Хуудас руу очих харилцах цонхыг нээхийн тулд товшино уу." #. EWtd2 #: sw/inc/strings.hrc:1088 msgctxt "STR_TMPLCTRL_HINT" msgid "Page Style. Right-click to change style or click to open Style dialog." -msgstr "" +msgstr "Хуудасны хэв маяг. Загварыг өөрчлөхийн тулд хулганы баруун товчийг дарна уу эсвэл Style харилцах цонхыг нээнэ үү." #. jQAym #. Strings for textual attributes. #: sw/inc/strings.hrc:1091 msgctxt "STR_DROP_OVER" msgid "Drop Caps over" -msgstr "" +msgstr "Дээрх захидал" #. PLAVt #: sw/inc/strings.hrc:1092 -#, fuzzy msgctxt "STR_DROP_LINES" msgid "rows" -msgstr "мөр" +msgstr "эгнээ" #. sg6Za #: sw/inc/strings.hrc:1093 -#, fuzzy msgctxt "STR_NO_DROP_LINES" msgid "No Drop Caps" -msgstr "Шад үсэг" +msgstr "Захидал байхгүй" #. gueRC #: sw/inc/strings.hrc:1094 -#, fuzzy msgctxt "STR_NO_PAGEDESC" msgid "No page break" -msgstr "Хуудас таслах" +msgstr "Хуудасны завсарлага байхгүй" #. G3CQN #: sw/inc/strings.hrc:1095 msgctxt "STR_NO_MIRROR" msgid "Don't mirror" -msgstr "" +msgstr "Битгий тусга" #. MVEk8 #: sw/inc/strings.hrc:1096 -#, fuzzy msgctxt "STR_VERT_MIRROR" msgid "Flip vertically" -msgstr "Босоогоор эргүүлэх" +msgstr "Босоо эргүүлэх" #. Dns6t #: sw/inc/strings.hrc:1097 @@ -8253,13 +8143,13 @@ #: sw/inc/strings.hrc:1098 msgctxt "STR_BOTH_MIRROR" msgid "Horizontal and Vertical Flip" -msgstr "" +msgstr "Босоо болон хэвтээ байдлаар эргүүл" #. LoQic #: sw/inc/strings.hrc:1099 msgctxt "STR_MIRROR_TOGGLE" msgid "+ mirror horizontal on even pages" -msgstr "" +msgstr "Тэгш хуудаснууд дээр хэвтээ байдлаар эргүүлээрэй" #. kbnTf #: sw/inc/strings.hrc:1100 @@ -8269,155 +8159,147 @@ #. D99ZJ #: sw/inc/strings.hrc:1101 -#, fuzzy msgctxt "STR_NO_CHARFMT" msgid "No Character Style" -msgstr "~Тэмдэгтийн хэлбэр" +msgstr "Дүрийн хэв маяг байхгүй" #. fzG3P #: sw/inc/strings.hrc:1102 -#, fuzzy msgctxt "STR_FOOTER" msgid "Footer" -msgstr "Хөл" +msgstr "Хөл хэсэг" #. 9RCsQ #: sw/inc/strings.hrc:1103 -#, fuzzy msgctxt "STR_NO_FOOTER" msgid "No footer" -msgstr "Хөл рүү" +msgstr "Хөлийн хэсэг байхгүй" #. zFTin #: sw/inc/strings.hrc:1104 -#, fuzzy msgctxt "STR_HEADER" msgid "Header" -msgstr "Толгой" +msgstr "Толгой хэсэг" #. PcYEB #: sw/inc/strings.hrc:1105 -#, fuzzy msgctxt "STR_NO_HEADER" msgid "No header" -msgstr "Толгой руу" +msgstr "Толгой байхгүй" #. 8Jgfg #: sw/inc/strings.hrc:1106 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Хамгийн оновчтой" #. HEuGy #: sw/inc/strings.hrc:1107 msgctxt "STR_SURROUND_NONE" msgid "None" -msgstr "" +msgstr "Байхгүй" #. 4tA4q #: sw/inc/strings.hrc:1108 msgctxt "STR_SURROUND_THROUGH" msgid "Through" -msgstr "" +msgstr "Дамжуулан" #. ypvD6 #: sw/inc/strings.hrc:1109 msgctxt "STR_SURROUND_PARALLEL" msgid "Parallel" -msgstr "" +msgstr "Зэрэгцээ" #. hyEQ5 #: sw/inc/strings.hrc:1110 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Өмнө нь" #. bGBtQ #: sw/inc/strings.hrc:1111 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "Дараа нь" #. SrG3D #: sw/inc/strings.hrc:1112 msgctxt "STR_SURROUND_ANCHORONLY" msgid "(Anchor only)" -msgstr "" +msgstr "(Зөвхөн зангуу)" #. 9Ywzb #: sw/inc/strings.hrc:1113 -#, fuzzy msgctxt "STR_FRM_WIDTH" msgid "Width:" -msgstr "Өргөн" +msgstr "Өргөн:" #. 2GYT7 #: sw/inc/strings.hrc:1114 msgctxt "STR_FRM_FIXEDHEIGHT" msgid "Fixed height:" -msgstr "" +msgstr "Тогтмол өндөр:" #. QrFMi #: sw/inc/strings.hrc:1115 msgctxt "STR_FRM_MINHEIGHT" msgid "Min. height:" -msgstr "" +msgstr "Мин. өндөр:" #. kLiYd #: sw/inc/strings.hrc:1116 -#, fuzzy msgctxt "STR_FLY_AT_PARA" msgid "to paragraph" -msgstr "параграф" +msgstr "догол мөрөнд" #. A8nAb #: sw/inc/strings.hrc:1117 msgctxt "STR_FLY_AS_CHAR" msgid "as character" -msgstr "" +msgstr "дүрсийн хувьд" #. Uszmm #: sw/inc/strings.hrc:1118 msgctxt "STR_FLY_AT_CHAR" msgid "to character" -msgstr "" +msgstr "тэмдэг дээр" #. hDUSa #: sw/inc/strings.hrc:1119 msgctxt "STR_FLY_AT_PAGE" msgid "to page" -msgstr "" +msgstr "хуудас руу" #. JMHRz #: sw/inc/strings.hrc:1120 msgctxt "STR_POS_X" msgid "X Coordinate:" -msgstr "" +msgstr "X координат:" #. oCZWW #: sw/inc/strings.hrc:1121 msgctxt "STR_POS_Y" msgid "Y Coordinate:" -msgstr "" +msgstr "Y координат:" #. YNKE6 #: sw/inc/strings.hrc:1122 msgctxt "STR_VERT_TOP" msgid "at top" -msgstr "" +msgstr "дээрх" #. GPTAu #: sw/inc/strings.hrc:1123 msgctxt "STR_VERT_CENTER" msgid "Centered vertically" -msgstr "" +msgstr "Босоо төвд" #. fcpTS #: sw/inc/strings.hrc:1124 -#, fuzzy msgctxt "STR_VERT_BOTTOM" msgid "at bottom" -msgstr "Доошоо" +msgstr "доод талд" #. 37hos #: sw/inc/strings.hrc:1125 @@ -10692,20 +10574,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Загварууд" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14307,38 +14189,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Тодорхойлох" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Гүйлгэн үзэх..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14346,31 +14228,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20707,111 +20589,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Гүйлгэн үзэх..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Гүйлгэн үзэх..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23005,54 +22887,54 @@ msgstr "Объект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Төрөл" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "Тохируулга" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Нугалах" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гипер холбоос" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Хүрээ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Муж" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Тунгалаг" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макро" @@ -27959,7 +27841,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mn/vcl/messages.po libreoffice-7.3.5/translations/source/mn/vcl/messages.po --- libreoffice-7.3.4/translations/source/mn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-22 01:38+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542024196.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Нэг хуудас цаасан дээр олон хуудас хэвлэх." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Хэрэглэгчийн" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Нэг хуудсан дээр хэдэн хуудас хэвлэхээ сонгоно уу." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Хуудас:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Мөрийн тоог сонгоно уу." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "Хэн" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Баганын тоог сонгоно уу." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Зай:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Цаас бүрийн хуудасны хоорондох зайг сонгоно уу." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "хуудаснууд хооронд" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Зай:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Хэвлэсэн хуудас болон цаасны ирмэгийн хоорондох зайг сонгоно уу." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "хуудасны захаас" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Дараалал:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Зүүнээс баруун тийш, дараа нь доошоо" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Дээрээс доошоо, дараа нь баруун тийш" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Дээрээс доош, дараа нь зүүн тийш" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Баруунаас зүүн тийш, дараа нь доошоо" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Хуудас хэвлэх дарааллыг сонгоно уу." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Хуудас бүрийг хүрээл" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Хуудас бүрийг тойруулан хүрээ зурахын тулд шалгана уу." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошюр" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Баримт бичгийг товхимол хэлбэрээр хэвлэхийн тулд сонгоно уу." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Эрэмбэлэлий урьдчилан харалт" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Хуудас бүр дээр хэвлэх хуудасны дарааллыг өөрчил. Урьдчилан харах нь эцсийн хуудас бүр хэрхэн харагдахыг харуулдаг." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Цаашид" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Хуудасны зохион байгуулалт" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Ерөнхий" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Одоогийн баримт бичиг, сонголт эсвэл таны зааж өгсөн хуудсыг хэвлэнэ. Та мөн одоогийн баримт бичгийн хэвлэх сонголтыг тохируулж болно." diff -Nru libreoffice-7.3.4/translations/source/mni/chart2/messages.po libreoffice-7.3.5/translations/source/mni/chart2/messages.po --- libreoffice-7.3.4/translations/source/mni/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3713,7 +3713,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/cui/messages.po libreoffice-7.3.5/translations/source/mni/cui/messages.po --- libreoffice-7.3.4/translations/source/mni/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Manipuri \n" @@ -17637,177 +17637,153 @@ msgid "Automatic" msgstr "মথন্তা তৌজবা" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High-contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Screen font anti-aliasin_g" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 #, fuzzy msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "সোর্ত তৌবগী পরিং" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/dbaccess/messages.po libreoffice-7.3.5/translations/source/mni/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/mni/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Manipuri \n" @@ -3483,75 +3483,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "হাপচিল্লবা দাতাবেজ" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ইনৌ-নৌনা শিজিন্নরবা" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "হাংদোকপা" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3559,7 +3559,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/extensions/messages.po libreoffice-7.3.5/translations/source/mni/extensions/messages.po --- libreoffice-7.3.4/translations/source/mni/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -308,587 +308,573 @@ msgid "Refresh form" msgstr "ফোর্ম রিফ্রেস তৌবা" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ফংবা" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "পোস্ত" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "শরুক কযামরুম" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "তেক্স" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "স্তেন্দর্দ (অতেনবা)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "স্তেন্দর্দ (অতেনবা)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "স্তেন্দর্দ (অতেনবা)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "স্তেন্দর্দ (অশাংবা)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "খনদ্রে" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "খনবা" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "শন্দোক্না তাক্ত্রে" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "রেকোর্দ পুম্নমক" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "শিনবাংবা রেকোর্দ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "হৌজিক্কী তারিখ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "নত্তে" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "হোই" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "পেরেন্ত ফোর্ম" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "লেপ্পা" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "অমত্তা নত্তে" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "সিঙ্গল" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "কযামরুম" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "রেন্জ" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "মরাক ওইবা" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ময়ুং ওইবা" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "দিফোল্ত" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "যারে" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ককথত্পা" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "মতেং" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "খল্লবা এন্ত্রি" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "খল্লবা এন্ত্রিগী ফিবম" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "পরেং-অমত্তং" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "পরেং-কয়ামরুম" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ফোর্মেত তৌবগা লোয়ননা পরেং-কয়ামরুম" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (য়ুনিক্স)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (ৱিন্দোজ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "অমত্তা নত্তে" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "মরাক ওইবা" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ময়ুং ওইবা" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "অনিমক" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ফ্লেত" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ওইথংবা মথক" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ওইথংবা ময়ায়" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ওইথংবা মখা" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "য়েত্থংবা মথক" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "য়েত্থংবা ময়ায়" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "য়েত্থংবা মখা" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "মথক্কী ওইথংবা" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "মথক্কী ময়ায়" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "মথক্কী য়েত্থংবা" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "মখাগী ওইথংবা" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "মখাগী ময়ায়" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "মখাগী য়েত্থংবা" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ময়াই ওইরবা" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "মাংহন্দনা থম্বা" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "শিনদোকপা" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "কীন্থবা" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "নত্তে" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "রেসিও থম্মু" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ওইরোমদগী য়েতলোমদা" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "য়েত্তগী ওইদা" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "সুপওৰ্দিনেত ওবজেক্ত সেতিস শিজিন্নৌ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ফোকস তৌবা মতমদা" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "মতম পুম্নমক্তা" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "পেরেগ্ৰাফ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ময়েক ওইনা" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "লমাইদা" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ফ্রেম" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ময়েক্তা" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "লমাইদা" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/mni/fpicker/messages.po libreoffice-7.3.5/translations/source/mni/fpicker/messages.po --- libreoffice-7.3.4/translations/source/mni/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ফাইল মমিং:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ফাইল মখল:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "পাবতমক" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "পাসৱার্দকা লোয়ননা সেভ তৌবা" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~মথন্তা ফাইল মমিং শন্দোকপা" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ফিল্তর সেত্তিংশিং শেমদোকপা" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/sc/messages.po libreoffice-7.3.5/translations/source/mni/sc/messages.po --- libreoffice-7.3.4/translations/source/mni/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25961,97 +25961,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26439,157 +26439,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "শিল্লাংবা" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "গ্রীদ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "লোল" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "হন্না য়েংশিনবা" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "মরুওইবা ৱারোলশিং" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "শক্তম" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "শেমদোক-শাদোকপা" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "শিল্লাংবা" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "শক্তম" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "পুনশিনবা" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ফুত" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "পরেং চান্নহনবা" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "শক্তম" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "হাপচিনবা" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ফ্রেম" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "শিল্লাংবা" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "গ্রীদ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/mni/sd/messages.po libreoffice-7.3.5/translations/source/mni/sd/messages.po --- libreoffice-7.3.4/translations/source/mni/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4263,109 +4263,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7245,109 +7245,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/sw/messages.po libreoffice-7.3.5/translations/source/mni/sw/messages.po --- libreoffice-7.3.4/translations/source/mni/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10793,20 +10793,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "মওংশিং" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14404,38 +14404,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "শন্দোকনা তাকপা" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ব্ৰাউজ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14443,31 +14443,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20787,111 +20787,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ব্ৰাউজ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ব্ৰাউজ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23082,51 +23082,51 @@ msgstr "পোত্শক" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "মখল" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "অপাম্বশিং" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "কোয়শিনবা" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "হাইপরলিংক" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ফিবানশিং" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "মফম" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "নুং-পাল ফাওনা উবা ঙম্বা" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "মেক্রো" @@ -28046,7 +28046,7 @@ msgstr "অপদেত" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mni/vcl/messages.po libreoffice-7.3.5/translations/source/mni/vcl/messages.po --- libreoffice-7.3.4/translations/source/mni/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mni/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2352,171 +2352,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "কস্তম: " #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "না" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "লামাযশিংগী মরক্তা" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "শীতকী ফিবানদা" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "লামায খুদিংগী অকোযবদা ফিবান যেকউ" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ঈপাউ য়াওবা চে" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/chart2/messages.po libreoffice-7.3.5/translations/source/mr/chart2/messages.po --- libreoffice-7.3.4/translations/source/mr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3657,7 +3657,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/cui/messages.po libreoffice-7.3.5/translations/source/mr/cui/messages.po --- libreoffice-7.3.4/translations/source/mr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17514,181 +17514,155 @@ msgid "Automatic" msgstr "स्वयं" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "आकाशगंगा" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "उच्च विरोधाभास" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ऑक्सीजन" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "क्लासीक्" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "हार्डवेअर ॲक्सिलरेशनचा वापर करा (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "अँटि-अलाइजिंगचा वापर करा (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ग्राफिक्स् आऊटपूट" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "फाँटस्चे पूर्वदृष्य दाखवा (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "स्क्रीन फाँट अँटिअलाइजिंग (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "पासून (_m)" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "फाँट सूची" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/dbaccess/messages.po libreoffice-7.3.5/translations/source/mr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/mr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Marathi \n" @@ -3471,74 +3471,74 @@ msgstr "नवीन माहितीकोश निर्माण करा (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "एम्बेड केलेले डाटाबेस (_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "अस्तित्वातील माहितीकोश फाइल उघडा (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "सध्या वापरलेले (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "उघडा" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "अस्तित्वातील माहितीकोशसह जोडणी करा (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3546,7 +3546,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/extensions/messages.po libreoffice-7.3.5/translations/source/mr/extensions/messages.po --- libreoffice-7.3.4/translations/source/mr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,605 +309,591 @@ msgid "Refresh form" msgstr "नमुना अद्ययावत करा" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "गेट" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "पोस्ट" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "मल्टिपार्ट" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "मजकूर" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ठराविक (छोटा)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "मानक (लहान YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "मानक (लहान YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ठराविक (लांब)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "निवडलेले नाही" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "निवडलेले" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ठरवलेले नाही" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सर्व नोंदी" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "सक्रिय नोंद" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "चालू पान" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "नाही" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "होय" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "मूळ नमुना" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "करिता (_t)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "काहिहि नाही" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "एक" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "अनेक" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "व्याप्ति" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "आडव्या रूपात" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "उभ्या रूपात" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "पूर्वनिर्धारीत" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ठीक आहे" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द करा" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मदत" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "निवडलेली नोंद" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "निवडलेल्या नोंदीची स्थिती" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "एकच रेषा" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "अनेक रेषा" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "स्वरूपण सहित अनेक रेषा" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (युनिक्स)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (विंडोज)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "काहिहि नाही" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "आडव्या रूपात" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "उभ्या रूपात" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दोन्हीं" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "त्रिमिती" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "सपाट" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "डावीकडे वर" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "डावीकडे केन्द्रित" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "डावीकडे तळाशी" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "उजवीकडे वर" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "उजवीकडे केन्द्रित" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "उजवीकडे तळाशी" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "डावीकडे वर" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "वर केन्द्रित" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "उजवीकडे वर" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "डावीकडे खाली" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "खाली केन्द्रित" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "उजवीकडे खाली" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केंद्रित" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "साठवा" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "बदला" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "बंद करा" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "नाही" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "प्रमाण जपवा" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "आकारात बसवा" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "डावी-ते-उजवी" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "उजवी-ते-डावी" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "निबंधक वस्तु संयोजनाचे वापर करा" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "कधिच नाही" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "फोकस्ड् असल्यावर" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "नेहमी" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "परिच्छेद करीता" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "अक्षर" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पान करीता" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "पटल करीता" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "अक्षर" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पान करीता" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/mr/fpicker/messages.po libreoffice-7.3.5/translations/source/mr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/mr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फाइलचे नाव:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फाइल प्रकार (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "फक्त-वाचनीय (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "पासवर्डसह साठवा (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वयं फाइल नाव एक्सटेन्शन (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "फिल्टर सेटिंग्ज संपादित करा (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/sc/messages.po libreoffice-7.3.5/translations/source/mr/sc/messages.po --- libreoffice-7.3.4/translations/source/mr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25759,97 +25759,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26237,153 +26237,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "मांडणी करा" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "रंग (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ग्रिड (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाषा (_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "रिव्ह्यू" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "टिपण्णी (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "तुलना करा (_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्य" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "संपादित करा (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "मांडणी करा" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्य" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "गट" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फाँट (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "एकरेषीय मांडणी करा" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्य" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "अंतर्भुत करा" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "मिडीया" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "फ्रेम (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "मांडणी करा" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ग्रिड (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/mr/sd/messages.po libreoffice-7.3.5/translations/source/mr/sd/messages.po --- libreoffice-7.3.4/translations/source/mr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4241,109 +4241,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7204,109 +7204,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/sw/messages.po libreoffice-7.3.5/translations/source/mr/sw/messages.po --- libreoffice-7.3.4/translations/source/mr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10764,19 +10764,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैली" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14281,37 +14281,37 @@ msgstr "माहितीकोशांची अदला-बदल करा" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाषित करा" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "उपयोगात राहणारे माहितीकोश" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "उपलब्ध माहितीकोश (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्राऊज..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14321,31 +14321,31 @@ "माहितीकोश धारिकेची निवड करण्यासाठी ब्राऊज कळचा उपयोग करा." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "माहितीकोशांची अदला-बदल करा" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "दस्तऐवजला लागू केलेले माहितीकोष:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20513,110 +20513,110 @@ msgstr "आत्ताच्या दस्तऐवजाचे वापर करा (_d)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "नवीन दस्तऐवज निर्माण करा (_w)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "अस्तित्वातील दस्तऐवजापासून सुरू करा (_e)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "साचापासून सुरू करा (_e)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "नुकतेच साठवलेल्या सुरूवातीच्या दस्तऐवजपासून सुरवात करा (_m)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "चाळणी करा (_r)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "चाळणी करा (_r)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "मेल एकत्र करण्यासाठी सुरवातीचे दस्तऐवज पसंत करा" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22794,49 +22794,49 @@ msgstr "ऑब्जेक्ट" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकार" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "पर्याय" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "घट्ट बसवा" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "दुवा" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "किनार" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शकता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मॅक्रो" @@ -27655,7 +27655,7 @@ msgstr "अद्ययावत करा" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/mr/vcl/messages.po libreoffice-7.3.5/translations/source/mr/vcl/messages.po --- libreoffice-7.3.4/translations/source/mr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/mr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2340,169 +2340,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "पसंतीचे" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "तर्फे" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "पानांच्या अंतर्गत" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "शीटच्या किनारपर्यंत" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "प्रत्येक पानाभोवती किनार रेखांकीत करा" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "हस्तपुस्तिका" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/chart2/messages.po libreoffice-7.3.5/translations/source/my/chart2/messages.po --- libreoffice-7.3.4/translations/source/my/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3702,7 +3702,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/cui/messages.po libreoffice-7.3.5/translations/source/my/cui/messages.po --- libreoffice-7.3.4/translations/source/my/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17539,179 +17539,153 @@ msgid "Automatic" msgstr "အလိုအလျောက်" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "အမြင့်ဆုံး အရောင်ကွဲပြားခြားနားမှု " - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "အောက်ဆီဂျင်" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ပထမတန်းစား" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ရုပ်ပုံများထွက်ရှိမှု" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ဖောင့်နမူနာများ_ပြသပါ" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ဖောင့် စာရင်းများ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/dbaccess/messages.po libreoffice-7.3.5/translations/source/my/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/my/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 10:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3465,75 +3465,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "မြုပ်နေသောဒေတာဘေ့စ်" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "များမကြာမီက အသုံးပြုခဲ့သည်" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ဖွင့်ပါ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3541,7 +3541,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/extensions/messages.po libreoffice-7.3.5/translations/source/my/extensions/messages.po --- libreoffice-7.3.4/translations/source/my/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -308,601 +308,587 @@ msgid "Refresh form" msgstr "ပြန်လည်သစ်လွင်သည့်ပုံစံ" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ရယူပါ" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "နေရာ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "အစိတ်အပိုင်းများ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "စာသား" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "စံနှုန်း (တိုသော)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "စံနှုန်း (အတိုYY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "စံနှုန်း (အတိုYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "စံနှုန်း (ရှည်သော)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "နေ့/လ/နှစ် (ဥပမာ-၀၁/၀၁/၉၇)" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "လ/ရက်/နှစ် (ဥပမာ-၀၁/၀၁/၉၇)" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "နှစ်/လ/ရက် (ဥပမာ-၀၁/၀၁/၉၇)" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "နေ့/လ/နှစ်(ဥပမာ-၀၁/၀၁/၁၉၉၇)" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "လ/ရက်/နှစ်(ဥပမာ-၀၁/၀၁/၁၉၉၇)" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "နှစ်/လ/ရက် (ဥပမာ ၁၉၉၇/၀၁/၀၁)" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "နှစ်-လ-ရက် (ဥပမာ ၉၇-၀၁-၀၁)" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "နှစ်-လ-ရက် (ဥပမာ ၁၉၉၇-၀၁-၀၁)" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "၁၃း၄၅" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "၁၃း၄၅း၀၀" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "၀၁း၄၅ ညပိုင်း" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "၀၁း၄၅း၀၀ ညပိုင်း" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ရွေးချယ်ထားခြင်းမရှိ" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ရွေးချယ်ထားသည်" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ပုံသေသတ်မှတ်ထားခြင်းမရှိ" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "မှတ်တမ်းများ အားလုံး" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "မှတ်တမ်းလုပ်ဆောင်ချက်" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "လက်ရှိစာမျက်နှာ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "မဟုတ်" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ဟုတ်သည်" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ဇစ်မြစ်ပုံစံ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ရပ်ပါ" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "မရှိပါ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "တစ်ခုချင်း" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "အများ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ကန့်သတ်အစိတ်အပိုင်း" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ရေပြင်ညီ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "မျဉ်းမတ်" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "နဂိုမူလ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "အိုကေ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ရုတ်သိမ်းပါ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ကူညီပါ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ရွေးချယ်ဝင်ရောက်မှု" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ရွေးချယ်ဝင်ရောက်မှုနေရာချထားခြင်း" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "တစ်ကြောင်းမျဉ်း" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "မျဉ်းကြောင်းများ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "မျဉ်းများစီစဉ်ဖွဲ့စည်းမှု" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "မရှိပါ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ရေပြင်ညီ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "မျဉ်းမတ်" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "နှစ်ခုလုံး" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ညီညာပြန့်ပြူးသော" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ဘယ်ဖက်/ထိပ်" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ဘယ်ဘက်အလယ်တည့်တည့်" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ဘယ်ဖက်အောက်ခြေ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ညာဖက်ထိပ်" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ညာဘက်အလယ်တည့်တည့်" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ညာဖက်အောက်ခြေ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "အပေါ်၏ဘယ်ဘက်" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "အပေါ်၏အလယ်တည့်တည့်တွင်" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "အပေါ်၏ညာဘက်" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "အောက်ခြေ၏ဘယ်ဘက်" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "အလယ်တည့်တည့်အောက်တွင်" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "အောက်ခြေ၏ညာဘက်" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ဗဟိုချက်" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ကာကွယ်သည်" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "အစားထိုးပါ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ခေါက်သိမ်းခြင်း" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "မဟုတ်" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "အချိုး ဆောင်ရွက်ချက်" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "အံဝင်ခွင်ကျအရွယ်အစား" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ဘယ်မှညာ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ညာမှဘယ်" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "စူပါအောဒီနိတ်အကြောင်းအရာတင်ပြချက်များကိုအသုံးပြုပါ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ဘယ်တော့မှ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ဆုံမှတ်သိုဦးတည်ချိန်" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "အစဉ်အမြဲ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "စာပိုဒ်သို့" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "အက္ခရာများအဖြစ်" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "စာမျက်နှာသို့" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ဘောင်သို့" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "အက္ခရာများသို့" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "စာမျက်နှာသို့" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/my/fpicker/messages.po libreoffice-7.3.5/translations/source/my/fpicker/messages.po --- libreoffice-7.3.4/translations/source/my/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ဖိုင်နာမည်း" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ဖိုင်⁠~အမျိုးအစား-" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "⁠~ဖတ်ရန်သာ" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "စကားဝှက်ဖြင့်သိမ်းပါ" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~အလိုအလျောက် ဖိုင်အမည် တိုးချဲ့ခြင်း" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~စစ်ထုတ်ကိရိယာပြင်ဆင်ချိန်ညှိမှုများကိုတည်းဖြတ်ပါ" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/sc/messages.po libreoffice-7.3.5/translations/source/my/sc/messages.po --- libreoffice-7.3.4/translations/source/my/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25934,97 +25934,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26411,153 +26411,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "စီစဉ်ထားသိုပါ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "အ_ရောင်" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_အကွက်ချပါ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_ဘာသာစကား" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "ဝေဖန်ချက်" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_မှတ်ချက်များ" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "မြင်ကွင်း" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "တည်းဖြတ်ပါ" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "စီစဉ်ထားသိုပါ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "မြင်ကွင်း" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "အုပ်စု" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ဖောင့်" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ဖြောင့်တန်းမှု" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "မြင်ကွင်း" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ထပ်ထည့်ပါ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "မီဒီယာ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ဘောင်" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "စီစဉ်ထားသိုပါ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_အကွက်ချပါ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/my/sd/messages.po libreoffice-7.3.5/translations/source/my/sd/messages.po --- libreoffice-7.3.4/translations/source/my/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4241,109 +4241,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7213,109 +7213,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/sw/messages.po libreoffice-7.3.5/translations/source/my/sw/messages.po --- libreoffice-7.3.4/translations/source/my/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10738,19 +10738,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "စတိုင်လ်များ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14291,37 +14291,37 @@ msgstr "ဒေတာဘေ့စ် ပြန်ပြောင်းပါ" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "အဓိပ္ပာယ်ဖော်ပါ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "အသုံးတွင် ဒေတာဘေ့စ်" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ဘလောက်ဇ်..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14331,31 +14331,31 @@ "ဒေတာဘေ့ဖိုင်ကို ရွေးချယ်ရန် ဘလောက်ဇ်ခလုပ်ကို သုံးပါ။" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ဒေတာဘေ့စ် ပြန်ပြောင်းပါ" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ဒေတာဘေ့စ်သည် မှတ်တမ်းမှတ်ရာ လက်တွေ့အသုံးချသည်-" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20618,111 +20618,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ဘလောက်ဇ်..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ဘလောက်ဇ်..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22892,51 +22892,51 @@ msgstr "အရာဝတ္ထု" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "အမျိုးအစား" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ရွေးပိုင်ခွင့်များ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~စာသားပတ်နယ်ပယ်" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "တရားလွန် ကွင်းဆက်" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "နယ်နိမိတ်များ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ဧရိယာ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ထိုးဖေါက်မြင်နိုင်သော" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "မက်ခရို" @@ -27795,7 +27795,7 @@ msgstr "နောက်ဆုံးပေါ်အခြေအနေ" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/my/vcl/messages.po libreoffice-7.3.5/translations/source/my/vcl/messages.po --- libreoffice-7.3.4/translations/source/my/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/my/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2336,169 +2336,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "စိတ်ကြိုက်" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "အားဖြင့်" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "အညွှန်းစာစောင်" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nb/chart2/messages.po libreoffice-7.3.5/translations/source/nb/chart2/messages.po --- libreoffice-7.3.4/translations/source/nb/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-29 21:36+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" @@ -3602,7 +3602,7 @@ msgstr "Velg antall linjer for diagramtypen Kolonne og linje." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Velg diagrammets grunntype." diff -Nru libreoffice-7.3.4/translations/source/nb/cui/messages.po libreoffice-7.3.5/translations/source/nb/cui/messages.po --- libreoffice-7.3.4/translations/source/nb/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563829311.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisk" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galakse" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Høy kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oksygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassisk" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Bris" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Velg ikonstil for knapper i verktøylinjer og dialogvinduer." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikon stil" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Legg til flere ikontemaer via utvidelser" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikonstil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Krever omstart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Bruk maskinvareakselerasjon" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Du kan få direkte tilgang til maskinvarefunksjonene i skjermkortet for å oppnå bedre visning på skjermen." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Bruk kantutjevning" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Om det finnes støtte for det, kan du slå av og på kantutjevning av grafikk. Når kantutjevning er slått på, vil de fleste grafiske objekter se jevnere ut og med færre feil." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Bruk Skia for all gjengivelse" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Tving frem Skia-programvare-rendering" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Krever omstart. Aktivering av dette vil forhindre bruk av grafikkdrivere." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia er for øyeblikket aktivert." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia er for øyeblikket deaktivert." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Bildevisning" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Vis forhåndsvisning av fonter" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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å 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:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Utjevning av fonter på skjermen" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Merk av her for å jevne ut tekst som vises på skjermen." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "fra:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Skriv inn den minste skriftstørrelsen du vil bruke antialiasering på." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Skriftlister" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Kjør grafikktester" diff -Nru libreoffice-7.3.4/translations/source/nb/dbaccess/messages.po libreoffice-7.3.5/translations/source/nb/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/nb/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-17 12:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563559934.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Lag en ny database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Velg for å opprette en ny database." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Innebygd database:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Åpne en eksisterende databasefil" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Velg for å åpne en databasefil fra en liste over nylig brukte filer eller fra en dialogboks for filvalg." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Nylig brukt:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Velg en databasefil du vil åpne fra listen over nylig brukte filer. Klikk på Fullfør for å åpne filen og for å avslutte veiviseren." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Åpne" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Åpner en dialogboks for filvalg der du kan velge en databasefil. Klikk på Åpne eller OK i dialogboksen for filvalg, for å åpne filen umiddelbart og gå ut av veiviseren." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Koble til en eksisterende database" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Velg for å opprette et databasedokument for en eksisterende databasetilkobling." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Velg databasetype for den eksisterende databasetilkoblingen." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Det er ikke mulig å opprette en ny database, fordi verken HSQLDB eller Firebird er tilgjengelige i dette oppsettet." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Databaseveiviseren oppretter en databasefil som inneholder informasjon om en database." diff -Nru libreoffice-7.3.4/translations/source/nb/extensions/messages.po libreoffice-7.3.5/translations/source/nb/extensions/messages.po --- libreoffice-7.3.4/translations/source/nb/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554919830.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Oppdater skjemaet" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Hent" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Flerdelt" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kort ÅÅ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kort ÅÅÅÅ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/ÅÅ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/ÅÅ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ÅÅ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/ÅÅÅÅ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/ÅÅÅÅ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ÅÅÅÅ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ÅÅ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ÅÅÅÅ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ikke valgt" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Valgt" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ikke definert" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle poster" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiv post" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Gjeldende side" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nei" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Overordnet skjema" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "foreldre" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "egen" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "topp" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ingen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkel" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Område" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horisontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Avbryt" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hjelp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Den valgte oppføringen" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posisjonen til den valgte oppføringen" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enkelt linje" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Flere linjer" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Flere linjer med formatering" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ingen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horisontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Begge" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Øverst til venstre" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Venstresentrert" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Nede til venstre" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Høyre Øverst" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Høyresentrert" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Høyre Nederst" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Over til venstre" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Sentrert over" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Over til høyre" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Under til venstre" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Sentrert under" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Under til høyre" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Sentrert" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Behold" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Erstatt" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Kollaps" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nei" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Behold størrelsesforholdet" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Tilpass til størrelsen" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Fra venstre til høyre" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Fra høyre til venstre" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Bruk overordnede objektinnstillinger" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Aldri" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Når den har fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Alltid" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Til avsnitt" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Som tegn" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Til ramme" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Til tegn" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Til celle" diff -Nru libreoffice-7.3.4/translations/source/nb/fpicker/messages.po libreoffice-7.3.5/translations/source/nb/fpicker/messages.po --- libreoffice-7.3.4/translations/source/nb/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-07 14:15+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" @@ -216,55 +216,55 @@ msgstr "Endringsdato" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Åpne" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Spill av" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Filnavn:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Filtype:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Skrivebeskyttet" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Lagre med passord" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Automatisk filetternavn" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Rediger filterinnstillinger" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Krypter med GPG nøkkel" diff -Nru libreoffice-7.3.4/translations/source/nb/sc/messages.po libreoffice-7.3.5/translations/source/nb/sc/messages.po --- libreoffice-7.3.4/translations/source/nb/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563900008.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "Vis" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Bilde" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Bilde" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Tegne" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "Tegn" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Skriv ut" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Skriv ut" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Skjema" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Skjema" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Utvidelse" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Utvidelse" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verktøy" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Verktøy" @@ -25702,139 +25702,139 @@ msgstr "Bilde" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Ordne" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Farge" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Rutenett" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Språk" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Gjennomgang" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Kommentarer" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Sammenlign" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Vis" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Tegne" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Rediger" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Ordne" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Vis" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gruppe" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Justering" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Vis" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Sett inn" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ramme" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Ordne" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Rutenett" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Vis" diff -Nru libreoffice-7.3.4/translations/source/nb/sd/messages.po libreoffice-7.3.5/translations/source/nb/sd/messages.po --- libreoffice-7.3.4/translations/source/nb/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563560561.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "Tabell" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Bilde" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Bilde" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Tegne" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Tegn" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Skjema" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Skjema" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Hoved" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Hoved" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Utvidelse" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Utvidelse" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verktøy" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Verktøy" @@ -7062,109 +7062,109 @@ msgstr "Tabell" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Bilde" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Bilde" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Draw" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "Tegn" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Skjema" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Skjema" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Hoved" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Hoved" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Utvidelse" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Utvidelse" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verktøy" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Verktøy" diff -Nru libreoffice-7.3.4/translations/source/nb/svtools/messages.po libreoffice-7.3.5/translations/source/nb/svtools/messages.po --- libreoffice-7.3.4/translations/source/nb/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561029297.000000\n" #. fLdeV @@ -777,7 +777,7 @@ #: include/svtools/strings.hrc:173 msgctxt "STR_SVT_FONTMAP_BOTH" msgid "The same font will be used on both your printer and your screen." -msgstr "Den samme skrifta vil bli brukt både på utskrifta og på skjermen." +msgstr "Den samme fonten vil bli brukt både på utskriften og på skjermen." #. HFBCn #: include/svtools/strings.hrc:174 diff -Nru libreoffice-7.3.4/translations/source/nb/sw/messages.po libreoffice-7.3.5/translations/source/nb/sw/messages.po --- libreoffice-7.3.4/translations/source/nb/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563559958.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Flytter den valgte avsnittsstilen ett nivå ned i hierarkiet." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiler" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Lager stikkord på grunnlag av bestemte avsnittsstiler." @@ -13955,37 +13955,37 @@ msgstr "Bytt database" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Velg" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Databaser i bruk" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Tilgjengelige databaser" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Bla gjennom …" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Åpner et dialogvindu der du kan velge en databasefil (*.odb). Den valgte filen legges til i lisena over tilgjengelige databaser." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Bruk «Bla gjennom»-knappen for å lete fram en databasefil." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Viser databasene som er i bruk." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lister de databasene som er fregistrert i%PRODUCTNAME" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Bytt database" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database i bruk i dokumentet:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Brukes til å bytte datakilde for det gjeldende dokumentet." @@ -20073,109 +20073,109 @@ msgstr "Bruk det gjeldende dokumentet" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Bruker Writer-dokumentet som er åpent, som grunnlag for brevflettingsdokumentet." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Lag et nytt dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Lager et nytt Writer-dokument som skal brukes til brevfletting." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Begynn med et eksisterende dokument" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Velger et eksisterende Writer-dokument som grunnlag for brevflettingsdokumentet." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Begynn med en mal" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Velg malen du vil bruke som grunnlag for å lage brevflettingsdokumentet." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Begynn med et nylig lagret startdokument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Bruk et eksisterende brevflettingsdokument som grunnlag for et nytt brevflettingsdokument." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Velg dokumentet." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Bla gjennom …" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Finn Writer-dokumentet du vil bruke, og klikk på Åpne." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Bla gjennom …" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Åpner en dialog for å velge en mal." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datakilden til det gjeldende dokumentet er ikke registrert. Vennligst bytt database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Bytt Database..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Velg startdokument for brevflettingen" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Velg hvilket dokument du vil bruke som grunnlag for brevflettingsdokumentet." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Valg" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Bryt" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlenke" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kantlinjer" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Område" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Gjennomsiktighet" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Oppdater" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Viser statistikk for den aktuelle filen." diff -Nru libreoffice-7.3.4/translations/source/nb/vcl/messages.po libreoffice-7.3.5/translations/source/nb/vcl/messages.po --- libreoffice-7.3.4/translations/source/nb/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nb/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-29 21:36+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" @@ -2324,169 +2324,169 @@ msgstr "Skriv ut flere sider pr ark." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Tilpasset" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Velg hvor mange sider som skal skrives ut pr ark papir." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sider:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Sletter den gjeldende posten." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ved" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Sletter den gjeldende posten." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marg:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Velg marg mellom de individuelle sidene på hvert ark." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mellom sider" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Avstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Velg marg mellom de utskrevne sidene og papirkanten." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "til arkkant" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Rekkefølge:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Fra venstre til høyre, deretter nedover" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Ovenfra og ned, deretter til høyre" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Øverst til nederst, så til venstre" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Høyre til venstre, så ned" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Velg rekkefølgen sidene skal skrives ut i." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Tegn en kant rundt hver side" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Merk av for å lage en kant rundt hver side." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosjyre" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Velg for å skrive ut dokumentet i brosjyreformat." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Fforhåndsvisning av Samling" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Endre rekkefølgen av sidene som skal skrives ut på hvert papirark. Forhåndsvisningen viser hvordan hvert siste ark vil se ut." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Mer" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sideutforming" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Generelt" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Skriv ut dokumentet, merket tekst eller de sidene du oppgir. Du kan også sette opp utskriftsvalg for dokumentet." diff -Nru libreoffice-7.3.4/translations/source/ne/chart2/messages.po libreoffice-7.3.5/translations/source/ne/chart2/messages.po --- libreoffice-7.3.4/translations/source/ne/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-06-13 06:01+0000\n" "Last-Translator: surit \n" "Language-Team: LANGUAGE \n" @@ -3603,7 +3603,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/cui/messages.po libreoffice-7.3.5/translations/source/ne/cui/messages.po --- libreoffice-7.3.4/translations/source/ne/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17480,177 +17480,152 @@ msgid "Automatic" msgstr "स्वचालित" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "उच्च व्यतिरेक" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr " स्क्रिन डिस्प्ले सुधार गर्न ग्राफिकल डिस्प्ले एडेप्टरको हार्डवेयर विशेषताहरूलाई प्रत्यक्ष रूपमा पहुँच गर्दछ।" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/dbaccess/messages.po libreoffice-7.3.5/translations/source/ne/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ne/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Nepali \n" @@ -3448,74 +3448,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "हालै प्रयोग गरिएको" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "खोल्नुहोस्" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3523,7 +3523,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/extensions/messages.po libreoffice-7.3.5/translations/source/ne/extensions/messages.po --- libreoffice-7.3.4/translations/source/ne/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -306,595 +306,581 @@ msgid "Refresh form" msgstr "फाराम ताजा पार्नुहोस्" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "प्राप्त गर्नुहोस्" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "पोस्ट गर्नुहोस्" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "बहुँविध भाग" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "पाठ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "मानक (छोटो)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "मानक (छोटो YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "मानक (छोटो YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "मानक (लामो)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "चयन गरिएको छैन" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "चयन गरिएको छैन" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "परिभाषित गरिएको छैन" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सबै रेकर्डहरू" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "रेकर्ड सक्रिय गर्नुहोस्" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "हालको पृष्ठ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "होइन" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "हो" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "मूल फाराम" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "रोक्नुहोस्" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "कुनै पनि होइन" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "एकल" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "बहुँविध" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "दायरा" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "तेर्सो" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ठाडो" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "पूर्वनिर्धारित" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ठीक छ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "रद्द गर्नुहोस्" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "मद्दत" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "चयन गरिएको प्रविष्टि" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "चयन गरिएको प्रविष्टिको स्थिति" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "एकल-रेखा" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "बहु-रेखा" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ढाँचासँग बहु-रेखा" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (यूनिक्स)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (विन्डोज)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "कुनै पनि होइन" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "तेर्सो" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ठाडो" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "दुवै" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "त्रि- आयामिक" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "चौडा" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "बायाँ माथि" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "बायाँ केन्द्रित" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "बायाँ तल" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "दायाँ माथि" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "दायाँ केन्द्रित" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "दायाँ तल" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "बायाँ माथि" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "केन्द्रित माथि" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "दायाँ माथि" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "बायाँ तल" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "केन्द्रित तल" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "दायाँ तल" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केन्द्रिकृत" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "सरक्षण गर्नुहोस्" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "बदल्नुहोस्" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "खुम्च्याउनुहोस्" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "होइन" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "अनुपात राख्नुहोस्" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "नाप ठीक गर्नुहोस्" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "बायाँ-देखि-दायाँ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "दायाँ-बाट-बायाँ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "उच्चकोटि वस्तुको सेटिङहरू प्रयोग गर्नुहोस्" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "कहिले पनि" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "केन्द्रबिन्दु हुँदा" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "सँधै" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "अनुच्छेद" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "क्यारेक्टर जस्तो" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठमा" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "फ्रेममा" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "क्यारेक्टरमा" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठमा" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ne/fpicker/messages.po libreoffice-7.3.5/translations/source/ne/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ne/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फाइल नाम:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "फाइल प्रकार:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "पढ्ने-मात्र" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "पासवर्डसँग बचत गर्नुहोस्" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वचालित फाइल नाम विस्तार" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "फिल्टर सेटिङहरू सम्पादन गर्नुहोस्" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/sc/messages.po libreoffice-7.3.5/translations/source/ne/sc/messages.po --- libreoffice-7.3.4/translations/source/ne/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25692,97 +25692,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26168,151 +26168,151 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "मिलाउनुहोस्" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "रङ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ग्रिड" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाषा" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "समिक्षा" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "द्रष्टव्यहरू" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्य" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "सम्पादन गर्नुहोस्" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "मिलाउनुहोस्" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्य" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "समूह" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फन्ट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "पङ्क्तिबद्धता" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्य" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "घुसाउनुहोस्" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "फ्रेम" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "मिलाउनुहोस्" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ग्रिड" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ne/sd/messages.po libreoffice-7.3.5/translations/source/ne/sd/messages.po --- libreoffice-7.3.4/translations/source/ne/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4243,109 +4243,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7210,109 +7210,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/sw/messages.po libreoffice-7.3.5/translations/source/ne/sw/messages.po --- libreoffice-7.3.4/translations/source/ne/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10716,19 +10716,19 @@ msgstr "चयन गरेको अनुच्छेद शैली अनुक्रमणिका हाइरेर्किमा एक स्तर तल लैजानुहोस्." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैलीहरू" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creates index entries from specific paragraph styles." @@ -14256,37 +14256,37 @@ msgstr "डाटाबेसहरू अदल-बदल गर्नुहोस्" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाषा दिनुहोस्" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "प्रयोगमा रहेका डाटाबेसहरू" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्राउज..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "डाटाबेस फाइल (*.odb) चयन गर्नलाई एउटा फाइल खुला संवाद खोल्दछ। चयन गरिएको फाइल उपलब्ध डाटाबेस सूचीमा थप हुन्छ।" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14296,31 +14296,31 @@ "एउटा डाटाबेस फाइल चयन गर्नका लागि ब्राउज बटन प्रयोग गर्नुहोस् ।" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "हालै प्रयोग भैरहेका डाटाबेसहरूलाई सूचीकृत गर्दछ।" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "डाटाबेसहरू अदल-बदल गर्नुहोस्" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "कागजातमा लागू गरिएको डाटाबेस्:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Change the data sources for the current document." @@ -20584,111 +20584,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "पत्र मर्ज कागजातको आधारका लागि हालको राइटर कागजात प्रयोग गर्नुहोस्." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "पत्र मर्जको प्रयोगका लागि नयाँ राइटर कागजात निर्माण गर्नुहोस्." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "पत्र मर्ज कागजातका लागि आधारको रूपमा हट्दै गरेको राइटर कागजात चयन गर्नुहोस्." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "टेम्प्लेट चयन गर्नुहोस् जुन तपाईँं पत्र मर्ज कागजात सँग निर्माण गर्न चाहनुहुन्छ." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "नयाँ पत्र मर्ज कागजातका लागि आधारको रूपमा हट्दै गरेको पत्र मर्ज कागजात प्रयोग गर्नुहोस्." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "कागजात चयन गर्नुहोस्." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्राउज..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्राउज..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22863,51 +22863,51 @@ msgstr "वस्तु" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकार" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "विकल्प" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "बेर्नुहोस्" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हाइपरलिङ्क" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "किनाराहरू" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्र" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पार्दर्शिता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "म्याक्रो" @@ -27747,7 +27747,7 @@ msgstr "अद्यावधिक गर्नुहोस्" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ne/vcl/messages.po libreoffice-7.3.5/translations/source/ne/vcl/messages.po --- libreoffice-7.3.4/translations/source/ne/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ne/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2331,169 +2331,169 @@ msgstr "पेपरको बहु पाना धेरै पाना छाप्नुहोस्।" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "अनुकूल" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "पृष्ठहरू मार्फत ब्राउज गर्नका लागि यो प्रतिमा रोज्नुहोस् गर्नुहोस् ।" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "पङ्क्तिहरूको संख्या चयन गर्नुहोस्।" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "द्वारा" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "नयाँ मुख्य कागजात सिर्जना गर्दछ ।" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "पृष्ठहरू मार्फत ब्राउज गर्नका लागि यो प्रतिमा रोज्नुहोस् गर्नुहोस् ।" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "पृष्ठहरूको बीचमा" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "पृष्ठहरू मार्फत ब्राउज गर्नका लागि यो प्रतिमा रोज्नुहोस् गर्नुहोस् ।" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "पानाको किनारामा" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "चेतावनी मार्फत ब्राउज गर्नका लागि यो प्रतिमा रोज्नुहोस् गर्नुहोस् ।" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "हरेक पृष्ठको वरिपरि किनारा कोर्नुहोस" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "पृष्ठहरू मार्फत ब्राउज गर्नका लागि यो प्रतिमा रोज्नुहोस् गर्नुहोस् ।" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ब्राउजर" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "तपाईँले निर्दिष्ट गर्नु भएका हालको कागजात, चयन, वा पृष्ठहरू मुद्रण गर्दछ । तपाईँले हालको कागजातका लागि मुद्रण विकल्प पनि सेट गर्न सक्नुहुन्छ ।" diff -Nru libreoffice-7.3.4/translations/source/nl/basctl/messages.po libreoffice-7.3.5/translations/source/nl/basctl/messages.po --- libreoffice-7.3.4/translations/source/nl/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2021-12-22 16:51+0000\n" -"Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: HanV \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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1555829076.000000\n" #. fniWp @@ -968,7 +968,7 @@ #: basctl/uiconfig/basicide/ui/exportdialog.ui:8 msgctxt "exportdialog|ExportDialog" msgid "Export Basic library" -msgstr "Basisbibliotheek exporteren" +msgstr "Basic bibliotheek exporteren" #. hvm9y #: basctl/uiconfig/basicide/ui/exportdialog.ui:90 diff -Nru libreoffice-7.3.4/translations/source/nl/chart2/messages.po libreoffice-7.3.5/translations/source/nl/chart2/messages.po --- libreoffice-7.3.4/translations/source/nl/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-04-27 10:02+0000\n" "Last-Translator: vpanter \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547631046.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Stel het aantal lijnen in voor het diagramtype Kolom en Lijn." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Selecteer een basisdiagramtype." diff -Nru libreoffice-7.3.4/translations/source/nl/cui/messages.po libreoffice-7.3.5/translations/source/nl/cui/messages.po --- libreoffice-7.3.4/translations/source/nl/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562580142.000000\n" #. GyY9M @@ -7511,7 +7511,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:684 msgctxt "colorpickerdialog|label8" msgid "_Key:" -msgstr "_Toets:" +msgstr "_Sleutel:" #. bNiCN #: cui/uiconfig/ui/colorpickerdialog.ui:704 @@ -7535,7 +7535,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:761 msgctxt "extended tip | keySpinbutton" msgid "Set the Black color value or key (black) as expressed in the CMYK color model." -msgstr "Stel de zwarte kleurwaarde Toets (zwart) in het CMYK-kleurmodel in." +msgstr "Stel de zwarte kleurwaarde Sleutel (zwart) in het CMYK-kleurmodel in." #. mxFDw #: cui/uiconfig/ui/colorpickerdialog.ui:776 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisch" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Hoog contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassiek" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Specificeert de pictogramstijl van pictogrammen op werkbalken en in dialoogvensters." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Pictogram_stijl:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Voeg meer pictogramthema's toe via extensie" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Pictogramstijl" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Opnieuw opstarten vereist" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Hard_wareversnelling gebruiken" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Gaat rechtstreeks naar hardwarefuncties van de grafische weergave-adapter om de schermweergave te verbeteren." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Anti-a_liasing gebruiken" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "U kunt, als het ondersteund wordt, anti-aliasing voor afbeeldingen in- of uitschakelen. Met ingeschakelde anti-aliasing ziet de weergave van de meeste grafische objecten er vloeiender uit en met minder gebreken." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Gebruik Skia voor alle rendering" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forceer Skia software rendering" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Vereist opnieuw opstarten. Door dit in te schakelen, wordt het gebruik van grafische stuurprogramma's voorkomen." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia is nu ingeschakeld" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia is momenteel uitgeschakeld" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Weergave van afbeeldingen" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Voor_beeld van lettertypes weergeven" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Toont de namen van beschikbare lettertypen in het overeenkomstige lettertype, zoals lettertypen in het vak Lettertype op de werkbalk Opmaak." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Anti-aliasin_g lettertype voor scherm" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Selecteer deze optie om het uiterlijk van tekst op het scherm te verbeteren." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "va_n:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Voer de kleinste tekengrootte in waarop anti-aliasing moet worden toegepast." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Lettertypelijst" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafische tests uitvoeren" diff -Nru libreoffice-7.3.4/translations/source/nl/dbaccess/messages.po libreoffice-7.3.5/translations/source/nl/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/nl/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: vpanter \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562580168.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Een ni_euwe database aanmaken" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Selecteer om een nieuwe database te maken." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Ingesloten database:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Een _bestaand databasebestand openen" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Selecteer om een databasebestand te openen vanuit een lijst met recent gebruikte bestanden of vanuit een dialoogvenster voor bestandsselectie." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Recent gebruikt:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Selecteer een te openen databasebestand uit de lijst met recent gebruikte bestanden. Klik op Voltooien om het bestand onmiddellijk te openen en de assistent af te sluiten." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Openen" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Opent een dialoogvenster voor bestandsselectie waarin u een databasebestand kunt selecteren. Klik op Openen of OK in het dialoogvenster voor bestandsselectie om het bestand onmiddellijk te openen en de assistent af te sluiten." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Met een bestaande database _verbinden" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Selecteer om een databasedocument te maken voor een bestaande databaseverbinding." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Selecteer het databasetype voor de bestaande databaseverbinding." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "beschikbaar is in deze set-up." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "De assistent Database maakt een databasebestand dat informatie over een database bevat." @@ -3678,7 +3678,7 @@ #: dbaccess/uiconfig/ui/joindialog.ui:238 msgctxt "joindialog|liststore1" msgid "Inner join" -msgstr "Inner join" +msgstr "Interne verbinding" #. ZEaHj #: dbaccess/uiconfig/ui/joindialog.ui:239 @@ -3696,7 +3696,7 @@ #: dbaccess/uiconfig/ui/joindialog.ui:241 msgctxt "joindialog|liststore1" msgid "Full (outer) join" -msgstr "Full (outer) join" +msgstr "Volle (buitenste) verbinding" #. vwzCL #: dbaccess/uiconfig/ui/joindialog.ui:242 @@ -4410,13 +4410,13 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:410 msgctxt "relationdialog|liststore1" msgid "Inner join" -msgstr "Inner join" +msgstr "Binnenste verbinding" #. nhWNP #: dbaccess/uiconfig/ui/relationdialog.ui:414 msgctxt "relationdialog|liststore1" msgid "Left join" -msgstr "Left join" +msgstr "Linker verbinding" #. TD2LX #: dbaccess/uiconfig/ui/relationdialog.ui:418 @@ -4428,7 +4428,7 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:422 msgctxt "relationdialog|liststore1" msgid "Full (outer) join" -msgstr "Full (outer) join" +msgstr "Volle (buitenste) verbinding" #. UYDBa #: dbaccess/uiconfig/ui/relationdialog.ui:426 diff -Nru libreoffice-7.3.4/translations/source/nl/extensions/messages.po libreoffice-7.3.5/translations/source/nl/extensions/messages.po --- libreoffice-7.3.4/translations/source/nl/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" +"Last-Translator: vpanter \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1555829622.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formulier vernieuwen" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Ophalen" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Plaatsen" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Meerdelig" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standaard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standaard (kort YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standaard (kort YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standaard (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/JJ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/JJ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "JJ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/JJJJ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/JJJJ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "JJJJ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "JJ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "JJJJ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Niet geselecteerd" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Geselecteerd" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Niet gedefinieerd" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle records" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Actieve record" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Huidige pagina" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nee" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Hoofdformulier" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_leeg" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" -msgstr "_parent" +msgstr "_ouder" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" -msgstr "_self" +msgstr "_zelf" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Geen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkelvoudig" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Meervoudig" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Bereik" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontaal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Verticaal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standaard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Annuleren" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Help" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Het geselecteerde item" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Positie van het geselecteerde item" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enkele regel" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Meerdere regels" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Meerdere regels met opmaak" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Geen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontaal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Verticaal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Beide" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Linksboven" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Linksmidden" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Linksonder" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Rechtsboven" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Rechtsmidden" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Rechtsonder" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Linksboven" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Middenboven" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Rechtsboven" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Linksonder" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Middenonder" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Rechtsonder" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Gecentreerd" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Behouden" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Vervangen" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Inklappen" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nee" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Verhoudingen behouden" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Automatische grootte" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Links-naar-rechts" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Rechts-naar-links" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Instelling van het object op het bovenliggende niveau gebruiken" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nooit" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Bij focus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Altijd" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Aan alinea" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Als teken" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Aan pagina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Aan frame" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Aan teken" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Aan pagina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Aan cel" diff -Nru libreoffice-7.3.4/translations/source/nl/formula/messages.po libreoffice-7.3.5/translations/source/nl/formula/messages.po --- libreoffice-7.3.4/translations/source/nl/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2022-04-26 15:12+0200\n" +"PO-Revision-Date: 2022-07-15 19:49+0200\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -25,13 +25,13 @@ #: formula/inc/core_resource.hrc:2278 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "IFERROR" -msgstr "ALSFOUT" +msgstr "ALS.FOUT" #. Vowev #: formula/inc/core_resource.hrc:2279 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "IFNA" -msgstr "ALSNB" +msgstr "ALS.NB" #. LcdBW #: formula/inc/core_resource.hrc:2280 @@ -90,7 +90,7 @@ #: formula/inc/core_resource.hrc:2293 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "XOR" -msgstr "XOF" +msgstr "EX.OF" #. BhVsr #: formula/inc/core_resource.hrc:2294 @@ -361,7 +361,7 @@ #: formula/inc/core_resource.hrc:2338 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "INT" -msgstr "GEH.GET." +msgstr "INTEGER" #. gQnYU #: formula/inc/core_resource.hrc:2339 @@ -439,7 +439,7 @@ #: formula/inc/core_resource.hrc:2351 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "ISERR" -msgstr "ISFT" +msgstr "ISFOUT2" #. XUgnE #: formula/inc/core_resource.hrc:2352 @@ -487,7 +487,7 @@ #: formula/inc/core_resource.hrc:2359 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TRIM" -msgstr "TRIM" +msgstr "SPATIES.WISSEN" #. DTAHH #: formula/inc/core_resource.hrc:2360 @@ -583,13 +583,13 @@ #: formula/inc/core_resource.hrc:2375 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORMSDIST" -msgstr "STANDNORMVERD" +msgstr "STAND.NORM.VERD" #. iXthM #: formula/inc/core_resource.hrc:2376 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORM.S.DIST" -msgstr "STAND.NORM.VERD" +msgstr "NORM.S.VERD" #. CADmA #: formula/inc/core_resource.hrc:2377 @@ -607,13 +607,13 @@ #: formula/inc/core_resource.hrc:2379 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORMSINV" -msgstr "STANDNORMINV" +msgstr "STAND.NORM.INV" #. pCD9f #: formula/inc/core_resource.hrc:2380 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORM.S.INV" -msgstr "STAND.NORM.INV" +msgstr "NORM.S.INV" #. 6MkED #: formula/inc/core_resource.hrc:2381 @@ -643,7 +643,7 @@ #: formula/inc/core_resource.hrc:2385 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FORMULA" -msgstr "FORMULE" +msgstr "FORMULETEKST" #. vNCQC #: formula/inc/core_resource.hrc:2386 @@ -685,31 +685,31 @@ #: formula/inc/core_resource.hrc:2392 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "ISO.CEILING" -msgstr "ISO.BOVENGRENS" +msgstr "ISO.AFRONDEN.BOVEN" #. Q8bBZ #: formula/inc/core_resource.hrc:2393 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FLOOR" -msgstr "ONDERGRENS" +msgstr "AFRONDEN.BENEDEN" #. AmYrj #: formula/inc/core_resource.hrc:2394 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FLOOR.XCL" -msgstr "ONDERGRENS.EXCEL" +msgstr "AFRONDEN.BENEDEN.EXCEL" #. wALpZ #: formula/inc/core_resource.hrc:2395 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FLOOR.MATH" -msgstr "ONDERGRENS.WISKUNDIG" +msgstr "AFRONDEN.BENEDEN.WISK" #. rKCyS #: formula/inc/core_resource.hrc:2396 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FLOOR.PRECISE" -msgstr "ONDERGRENS.PRECIES" +msgstr "AFRONDEN.BENEDEN.NAUWKEURIG" #. WHtuv #: formula/inc/core_resource.hrc:2397 @@ -901,13 +901,13 @@ #: formula/inc/core_resource.hrc:2428 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MIRR" -msgstr "QIR" +msgstr "GIR" #. v9GAT #: formula/inc/core_resource.hrc:2429 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "ISPMT" -msgstr "ISPMT" +msgstr "ISBET" #. K7EeP #: formula/inc/core_resource.hrc:2430 @@ -1051,7 +1051,7 @@ #: formula/inc/core_resource.hrc:2454 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "PERMUTATIONA" -msgstr "PERMUTATIES.A" +msgstr "PERMUTATIE.A" #. t93rk #: formula/inc/core_resource.hrc:2455 @@ -1087,7 +1087,7 @@ #: formula/inc/core_resource.hrc:2460 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "PDURATION" -msgstr "PLOOPTIJD" +msgstr "PDUUR" #. i6LFt #: formula/inc/core_resource.hrc:2461 @@ -1099,7 +1099,7 @@ #: formula/inc/core_resource.hrc:2462 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "PMT" -msgstr "RMB" +msgstr "AFLOSSING" #. sbNXE #: formula/inc/core_resource.hrc:2463 @@ -1141,7 +1141,7 @@ #: formula/inc/core_resource.hrc:2469 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RRI" -msgstr "ZGZ" +msgstr "RRI" #. EyAQF #: formula/inc/core_resource.hrc:2470 @@ -1339,7 +1339,7 @@ #: formula/inc/core_resource.hrc:2502 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "LOOKUP" -msgstr "OPZOEKEN" +msgstr "ZOEKEN" #. ZzCnC #: formula/inc/core_resource.hrc:2503 @@ -1401,7 +1401,7 @@ #: formula/inc/core_resource.hrc:2512 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FIND" -msgstr "VINDEN" +msgstr "VIND.ALLES" #. oDxoA #: formula/inc/core_resource.hrc:2513 @@ -1425,7 +1425,7 @@ #: formula/inc/core_resource.hrc:2516 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SEARCH" -msgstr "ZOEKEN" +msgstr "VIND.SPEC" #. BAmDj #: formula/inc/core_resource.hrc:2517 @@ -1473,13 +1473,13 @@ #: formula/inc/core_resource.hrc:2524 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SUBSTITUTE" -msgstr "VERVANGING" +msgstr "SUBSTITUEREN" #. i3GvS #: formula/inc/core_resource.hrc:2525 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "REPT" -msgstr "HERHALEN" +msgstr "HERHALING" #. 2ai5X #: formula/inc/core_resource.hrc:2526 @@ -1533,7 +1533,7 @@ #: formula/inc/core_resource.hrc:2534 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MDETERM" -msgstr "DETERMINANT.MAT" +msgstr "DETERMINANTMAT" #. ApX8N #: formula/inc/core_resource.hrc:2535 @@ -1557,7 +1557,7 @@ #: formula/inc/core_resource.hrc:2538 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MUNIT" -msgstr "EENHEIDSMAT" +msgstr "EENHEIDMAT" #. kmGD3 #: formula/inc/core_resource.hrc:2539 @@ -1569,19 +1569,19 @@ #: formula/inc/core_resource.hrc:2540 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "HYPGEOMDIST" -msgstr "HYPERGEOVERD" +msgstr "HYPERGEO.VERD" #. oUBqZ #: formula/inc/core_resource.hrc:2541 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "HYPGEOM.DIST" -msgstr "HYPERGEO.VERD" +msgstr "HYPGEOM.VERD" #. XWa2D #: formula/inc/core_resource.hrc:2542 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "LOGNORMDIST" -msgstr "LOGNORMVERD" +msgstr "LOG.NORM.VERD" #. g2ozv #: formula/inc/core_resource.hrc:2543 @@ -1599,7 +1599,7 @@ #: formula/inc/core_resource.hrc:2545 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "T.DIST.2T" -msgstr "T.VERD.2Z" +msgstr "T.VERD.2T" #. F5Pfo #: formula/inc/core_resource.hrc:2546 @@ -1659,7 +1659,7 @@ #: formula/inc/core_resource.hrc:2555 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NEGBINOMDIST" -msgstr "NEGBINOMVERD" +msgstr "NEG.BINOM.VERD" #. JDW2e #: formula/inc/core_resource.hrc:2556 @@ -1719,7 +1719,7 @@ #: formula/inc/core_resource.hrc:2565 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SKEWP" -msgstr "SCHEEFHEIDP" +msgstr "SCHEEFHEID.P" #. DWBTD #: formula/inc/core_resource.hrc:2566 @@ -1749,7 +1749,7 @@ #: formula/inc/core_resource.hrc:2570 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE.MULT" -msgstr "MODUS.MULT" +msgstr "MODUS.MEERV" #. DYFQo #: formula/inc/core_resource.hrc:2571 @@ -1773,13 +1773,13 @@ #: formula/inc/core_resource.hrc:2574 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TTEST" -msgstr "TTOETS" +msgstr "T.TOETS" #. FR8fD #: formula/inc/core_resource.hrc:2575 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "T.TEST" -msgstr "T.TOETS" +msgstr "T.TEST" #. YbRDQ #: formula/inc/core_resource.hrc:2576 @@ -1809,7 +1809,7 @@ #: formula/inc/core_resource.hrc:2580 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "PERCENTRANK.INC" -msgstr "PERCENT.RANG.INC" +msgstr "PROCENTRANG.INC" #. wNGXD #: formula/inc/core_resource.hrc:2581 @@ -1851,13 +1851,13 @@ #: formula/inc/core_resource.hrc:2587 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "LARGE" -msgstr "GROOT" +msgstr "GROOTSTE" #. 4HcBe #: formula/inc/core_resource.hrc:2588 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SMALL" -msgstr "KLEIN" +msgstr "KLEINSTE" #. HBgVF #: formula/inc/core_resource.hrc:2589 @@ -1905,12 +1905,6 @@ #: formula/inc/core_resource.hrc:2596 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FTEST" -msgstr "FTOETS" - -#. xBfc3 -#: formula/inc/core_resource.hrc:2597 -msgctxt "RID_STRLIST_FUNCTION_NAMES" -msgid "F.TEST" msgstr "F.TOETS" #. gqjR4 @@ -1971,7 +1965,7 @@ #: formula/inc/core_resource.hrc:2607 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SLOPE" -msgstr "STIJGING" +msgstr "RICHTING" #. H5rVZ #: formula/inc/core_resource.hrc:2608 @@ -2007,7 +2001,7 @@ #: formula/inc/core_resource.hrc:2613 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FORECAST" -msgstr "VOORSPELLING" +msgstr "VOORSPELLEN" #. gBGyu #: formula/inc/core_resource.hrc:2614 @@ -2073,49 +2067,31 @@ #: formula/inc/core_resource.hrc:2624 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "GAMMADIST" -msgstr "GAMMAVERD" - -#. hDsw2 -#: formula/inc/core_resource.hrc:2625 -msgctxt "RID_STRLIST_FUNCTION_NAMES" -msgid "GAMMA.DIST" msgstr "GAMMA.VERD" #. YnUod #: formula/inc/core_resource.hrc:2626 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "GAMMAINV" -msgstr "GAMMAINV" - -#. UsH9F -#: formula/inc/core_resource.hrc:2627 -msgctxt "RID_STRLIST_FUNCTION_NAMES" -msgid "GAMMA.INV" msgstr "GAMMA.INV" #. uVsmG #: formula/inc/core_resource.hrc:2628 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TINV" -msgstr "TINV" +msgstr "T.INV" #. BARyo #: formula/inc/core_resource.hrc:2629 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "T.INV.2T" -msgstr "T.INV.2Z" - -#. QEgDG -#: formula/inc/core_resource.hrc:2630 -msgctxt "RID_STRLIST_FUNCTION_NAMES" -msgid "T.INV" -msgstr "T.INV" +msgstr "T.INV.2T" #. GyiqD #: formula/inc/core_resource.hrc:2631 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FINV" -msgstr "FINVERSE" +msgstr "F.INVERSE" #. vxU5e #: formula/inc/core_resource.hrc:2632 @@ -2127,7 +2103,7 @@ #: formula/inc/core_resource.hrc:2633 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "F.INV.RT" -msgstr "F.INV.RZ" +msgstr "F.INV.RECHTS" #. DduFG #: formula/inc/core_resource.hrc:2634 @@ -2145,7 +2121,7 @@ #: formula/inc/core_resource.hrc:2636 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "LOGINV" -msgstr "LOGINV" +msgstr "LOG.NORM.INV" #. CEKRG #: formula/inc/core_resource.hrc:2637 @@ -2193,7 +2169,7 @@ #: formula/inc/core_resource.hrc:2644 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "ISOWEEKNUM" -msgstr "ISOWEEKNUM" +msgstr "ISO.WEEKNUMMER" #. iN85u #: formula/inc/core_resource.hrc:2645 @@ -2223,13 +2199,13 @@ #: formula/inc/core_resource.hrc:2649 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NETWORKDAYS.INTL" -msgstr "NETTOWERKDAGEN.INT" +msgstr "NETWERKDAGEN.INTL" #. QAzUk #: formula/inc/core_resource.hrc:2650 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "WORKDAY.INTL" -msgstr "WERKDAG.INT" +msgstr "WERKDAG.INTL" #. CFhSp #. L10n: preserve the leading '#' hash character in translations. @@ -2296,7 +2272,7 @@ #: formula/inc/core_resource.hrc:2662 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "GETPIVOTDATA" -msgstr "DRAAITABEL.OPHALEN" +msgstr "DRAAITABELOPHALEN" #. ByRr8 #: formula/inc/core_resource.hrc:2663 @@ -2308,7 +2284,7 @@ #: formula/inc/core_resource.hrc:2664 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NUMBERVALUE" -msgstr "GETALWAARDE" +msgstr "NUMERIEKE.WAARDE" #. TxAAw #: formula/inc/core_resource.hrc:2665 @@ -2385,7 +2361,7 @@ #: formula/inc/core_resource.hrc:2681 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#DELING.DOOR.0" #. rADeJ #. ERROR.TYPE( #VALUE! ) == 3 @@ -2425,7 +2401,7 @@ #: formula/inc/core_resource.hrc:2696 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "#N/A" -msgstr "#N/A" +msgstr "#N/B" #. bfyEe #. END defined ERROR.TYPE() values. @@ -2480,13 +2456,13 @@ #: formula/inc/core_resource.hrc:2707 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FINDB" -msgstr "VINDENB" +msgstr "VIND.ALLES.B" #. 8FkJr #: formula/inc/core_resource.hrc:2708 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SEARCHB" -msgstr "ZOEKENB" +msgstr "VIND.SPEC.B" #. tNMTu #: formula/inc/core_resource.hrc:2709 diff -Nru libreoffice-7.3.4/translations/source/nl/fpicker/messages.po libreoffice-7.3.5/translations/source/nl/fpicker/messages.po --- libreoffice-7.3.4/translations/source/nl/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-25 11:19+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538498082.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Aangepaste datum" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Openen" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Afspelen" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Bestands_naam:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Bestands_type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Alleen-lezen" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Met wachtwoord opslaan" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatische bestandsextensie" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Filterinstellingen bewerken" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Versleutel met GPG-sleutel" diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/auxiliary.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/auxiliary.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/auxiliary.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/auxiliary.po 2022-07-15 19:12:51.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-11-25 19:33+0100\n" -"PO-Revision-Date: 2021-10-31 12:36+0000\n" -"Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \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.12.2\n" "X-POOTLE-MTIME: 1562618869.000000\n" #. fEEXD @@ -545,7 +545,7 @@ "100502\n" "node.text" msgid "Fax Wizard" -msgstr "Assistent fax" +msgstr "Assistent Fax" #. GMiKt #: shared.tree diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559981823.000000\n" #. WcTKB @@ -239,7 +239,7 @@ "N0434\n" "help.text" msgid "Basic FileLen() function and com.sun.star.ucb.SimpleFileAccess.getSize() API function exhibit a 2 Gigabytes file size upper limit that Python helps to overcome," -msgstr "De Basic-functies FileLen() en com.sun.star.ucb.SimpleFileAccess.getSize() API-functie heeft een bovenlimiet van 2 gigabyte bestandsgrootte die kan worden verwerkt met Python." +msgstr "De Basic-functies FileLen() en com.sun.star.ucb.SimpleFileAccess.getSize() API heeft een bovenlimiet van 2 gigabyte bestandsgrootte die kan worden verwerkt met Python." #. At8D2 #: basic_2_python.xhp @@ -797,7 +797,7 @@ "par_id71630538211142\n" "help.text" msgid "newColor is an integer value corresponding to a color defined using the RGB function." -msgstr "newColor is een geheel getal dat overeenkomt met een kleur die is gedefinieerd met behulp van de RGB-functie." +msgstr "newColor is een geheel getal dat overeenkomt met een kleur die is gedefinieerd met behulp van de functie RGB." #. 3gYJs #: calc_borders.xhp @@ -1148,7 +1148,7 @@ "par_id3163802\n" "help.text" msgid "Choose Tools - Macros - Organize Dialogs, and then click New." -msgstr "Kies Extra - Macro's - Dialoogvensters beheren en klik dan op Nieuw dialoogvenster." +msgstr "Kies Extra - Macro's - Dialoogvensters beheren en klik dan op Nieuw...." #. FkRCE #: create_dialog.xhp @@ -1175,7 +1175,7 @@ "par_id3153726\n" "help.text" msgid "If you do not see the Toolbox bar, click the arrow next to the Insert Controls icon to open the Toolbox bar." -msgstr "Als u de werkbalk Besturingselementen niet ziet, klikt u op de pijl naast het pictogram Besturingselementen invoegen om de werkbalk Toolbox te openen." +msgstr "Als u de werkbalk Besturingselementen niet ziet, klikt u op de pijl naast het pictogram Besturingselementen invoegen om de werkbalk Gereedschapskist te openen." #. cBdmB #: create_dialog.xhp @@ -1184,7 +1184,7 @@ "par_id3148455\n" "help.text" msgid "Click a tool and then drag in the dialog to create the control." -msgstr "Klik op een werktuig en sleep dit in het dialoogvenster om het besturingselement te maken." +msgstr "Klik op een gereedschap en sleep dit in het dialoogvenster om het besturingselement te maken." #. 99Bfa #: insert_control.xhp @@ -1220,7 +1220,7 @@ "par_id3146797\n" "help.text" msgid "Use the tools on the Toolbox of the BASIC dialog editor to add controls to your dialog." -msgstr "Gebruik de werktuigen op de werkbalk Besturingselementen van de BASIC-dialoogeditor om besturingselementen aan uw dialoogvenster toe te voegen." +msgstr "Gebruik de gereedschappen op de werkbalk Besturingselementen van de BASIC-dialoogeditor om besturingselementen aan uw dialoogvenster toe te voegen." #. bDK4t #: insert_control.xhp @@ -1625,7 +1625,7 @@ "par_id3153031\n" "help.text" msgid "The following examples are for a new dialog called \"Dialog1\". Use the tools on the Toolbox bar in the dialog editor to create the dialog and add the following controls: a Check Box called \"CheckBox1\", a Label Field called \"Label1\", a Button called \"CommandButton1\", and a List Box called \"ListBox1\"." -msgstr "In de volgende voorbeelden maakt u een nieuw dialoogvenster met de naam Dialoog1. Gebruik de werktuigen op de werkbalk Besturingselementen van de dialoogeditor om het dialoogvenster te maken, en de volgende besturingselementen toe te voegen: een keuzevak met de naam CheckBox1, een titelveld met de naam Label1, een knop met de naam CommandButton1, en een keuzelijst met de naam ListBox1." +msgstr "In de volgende voorbeelden maakt u een nieuw dialoogvenster met de naam Dialoog1. Gebruik de gereedschappen op de werkbalk Besturingselementen van de dialoogeditor om het dialoogvenster te maken, en de volgende besturingselementen toe te voegen: een keuzevak met de naam CheckBox1, een titelveld met de naam Label1, een knop met de naam CommandButton1, en een keuzelijst met de naam ListBox1." #. bfDTG #: sample_code.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" -"Last-Translator: HanV \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: vpanter \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -176,7 +176,7 @@ "N0338\n" "help.text" msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to Setting Up an Integrated IDE for Python for more information." -msgstr "Bij het uitvoeren van Python-scripts vanuit een Integrated Development Environment (IDE), kan de %PRODUCTNAME-embedded Basic-engine ontbreken. Vermijdt dan Python-naar-%PRODUCTNAME Basic aanroepen. De Python -omgeving en Universal Networks Objects (UNO) zijn volledig beschikbaar. Meer informatie : Setting Up an Integrated IDE voor Python." +msgstr "Bij het uitvoeren van Python-scripts vanuit een Integrated Development Environment (IDE), kan de %PRODUCTNAME-embedded Basic-engine ontbreken. Vermijdt dan Python-naar-%PRODUCTNAME Basic aanroepen. De Python-omgeving en Universal Networks Objects (UNO) zijn volledig beschikbaar. Meer informatie : Setting Up an Integrated IDE voor Python." #. NcuDF #: python_2_basic.xhp @@ -194,7 +194,7 @@ "N0340\n" "help.text" msgid "%PRODUCTNAME Basic macros can be personal, shared, or embedded in documents. In order to execute them, Python run time needs to be provided with Basic macro locations. Implementing the com.sun.star.script.provider.XScriptProvider interface allows the retrieval of executable scripts:" -msgstr "%PRODUCTNAME Basic-macro's kunnen persoonlijk, gedeeld of ingebed zijn in documenten. Om ze te kunnen uitvoeren moet Python op het moment van uitvoeren de locaties van de Basic-macro's kennen. Door de com.sun.star.script.provider.XScriptProvider-interface is het mogelijk de scripts op te halen:" +msgstr "%PRODUCTNAME Basic-macro's kunnen persoonlijk, gedeeld of ingebed zijn in documenten. Om ze te kunnen uitvoeren moet Python op het moment van uitvoeren de locaties van de Basic-macro's kennen. Door de interface com.sun.star.script.provider.XScriptProvider is het mogelijk de scripts op te halen:" #. w4UAs #: python_2_basic.xhp @@ -320,7 +320,7 @@ "N0379\n" "help.text" msgid "*argsPython simplified syntax can be used in conjunction with %PRODUCTNAME Basic routines that accept a variable number of arguments. Below Print and SUM Python functions call their Basic Print and SUM counterparts, using aforementioned getBasicScript function. Exception handling is not detailed." -msgstr "*argsPython vereenvoudigde syntaxis kan gebruikt worden samen met %PRODUCTNAME Basic-routines die een variabel aantal argumenten toestaan. Onder Print en SUM Python-functies roepen hun Basic Print en SUM tegenhangers aan, met gebruik van eerdergenoemde getBasicScript-functie. De foutafhandeling is hier niet in detail beschreven." +msgstr "*argsPython vereenvoudigde syntaxis kan gebruikt worden samen met %PRODUCTNAME Basic-routines die een variabel aantal argumenten toestaan. Onder Print en SUM Python-functies roepen hun Basic Print en SUM tegenhangers aan, met gebruik van eerdergenoemde functie getBasicScript. De foutafhandeling is hier niet in detail beschreven." #. ej8XP #: python_2_basic.xhp @@ -428,7 +428,7 @@ "N0339\n" "help.text" msgid "The examples below open Access2Base Trace console or the imported TutorialsDialog dialog with Tools - Macros - Run Macro menu:" -msgstr "De onderstaande voorbeelden openen het Access2Base Trace console of het geïmporteerde TutorialsDialog dialoog met Extra - Macro's - Macro uitvoeren menu:" +msgstr "De onderstaande voorbeelden openen het Access2Base Trace console of de geïmporteerde dialoog TutorialsDialog met Extra - Macro's - Macro uitvoeren menu:" #. ChW9B #: python_dialogs.xhp @@ -446,7 +446,7 @@ "N0365\n" "help.text" msgid "The example below opens a newly edited Dialog1 dialog from a document with Tools - Macros - Run Macro menu:" -msgstr "Het onderstaande voorbeeld opent een recent gewijzigde Dialog1 dialoogvenster van een document met Extra - Macros - Macro uitvoeren menu:" +msgstr "Het onderstaande voorbeeld opent een recent gewijzigde Dialog1 dialoogvenster van een document met Extra - Macro's - Macro uitvoeren menu:" #. mMo7w #: python_dialogs.xhp @@ -563,7 +563,7 @@ "N0530\n" "help.text" msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning OnLoad script, to the Open Document event, suffices to initiate and terminate document event monitoring. Tools - Customize menu Events tab is used to assign either scripts." -msgstr "Monitoring wordt hier uitgelegd voor de de programmeertalen Basic en Python met gebruik van object-georiënteerd programmeren. Het toekennen van het OnLoad-script aan de Open Document-gebeurtenis, zorgt voor het beginnen en beëindigen van de documentgebeurtenis monitoring. Extra - Aanpassen menu Gebeurtenissen-tab wordt gebruikt voor het toekennen van scripts." +msgstr "Monitoring wordt hier uitgelegd voor de de programmeertalen Basic en Python met gebruik van objectgeoriënteerd programmeren. Het toekennen van het script OnLoad aan de gebeurtenis Open Document, zorgt voor het beginnen en beëindigen van de documentgebeurtenis monitoring. Menu Extra - Aanpassen tab Gebeurtenissen wordt gebruikt voor het toekennen van scripts." #. KgWvt #: python_document_events.xhp @@ -869,7 +869,7 @@ "N0648\n" "help.text" msgid "Start application and Close application events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using Open document and Document closed events. Refer to Importing Python Modules for more information." -msgstr "De gebeurtenissen Start application en Close application kunnen respectievelijk worden gebruikt voor het zetten en vrijgeven van het Python-pad voor gebruikerscripts of voor %PRODUCTNAME-scripts. Op een vergelijkbare manier kunnen documentgebaseerde Python-bibliotheken en modules worden geladen en vrijgegeven met de gebeurtenissen Open document en Document closed. Bekijk Python-modules importeren voor meer informatie." +msgstr "De gebeurtenissen Programma starten en Programma sluiten kunnen respectievelijk worden gebruikt voor het zetten en vrijgeven van het Python-pad voor gebruikersscripts of voor %PRODUCTNAME-scripts. Op een vergelijkbare manier kunnen documentgebaseerde Python-bibliotheken en modules worden geladen en vrijgegeven met de gebeurtenissen Document openen en Document gesloten. Bekijk Python-modules importeren voor meer informatie." #. 8pHCg #: python_document_events.xhp @@ -923,7 +923,7 @@ "N0655\n" "help.text" msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<" -msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<" +msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Document openen <<" #. p8RfU #: python_document_events.xhp @@ -941,7 +941,7 @@ "hd_id721630511986813\n" "help.text" msgid "controller.ConsoleLogger class module" -msgstr "controller.ConsoleLogger class module" +msgstr "module van klasse controller.ConsoleLogger" #. AN8tn #: python_document_events.xhp @@ -1220,7 +1220,7 @@ "N0664\n" "help.text" msgid "Basic;Dialog Handler Python;Dialog Handler Access2Base;dlgTrace Access2Base;_DumpToFile API;DialogProvider2 API;XDialogEventHandler" -msgstr "Basic;Dialog Handler Python;Dialog Handler Access2Base;dlgTrace Access2Base;_DumpToFile API;DialogProvider2 API;XDialogEventHandler" +msgstr "Basic;Dialoog beheerder Python;Dialoog beheerder Access2Base;dlgTrace Access2Base;_DumpToFile API;DialogProvider2 API;XDialogEventHandler" #. MQUtw #: python_handler.xhp @@ -1922,7 +1922,7 @@ "N0385\n" "help.text" msgid "Python;Event Listener Python;createUnoListener Basic;Event Listener API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" -msgstr "Python;Event Listener Python;createUnoListener Basic;Event Listener API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" +msgstr "Python;Gebeurtenis luisteraar Python;createUnoListener Basic;Gebeurtenis luisteraar API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" #. Pjc9z #: python_listener.xhp @@ -1976,7 +1976,7 @@ "N0391\n" "help.text" msgid "This example creates a listener for Button1 control of Dialog1 dialog in Standard library." -msgstr "In dit voorbeeld wordt een listener aangemaakt voor het controleren van een knop Button in een dialoog Dialog1 in de Standaard-bibliotheek." +msgstr "In dit voorbeeld wordt een listener aangemaakt voor het controleren van een knop Button in een dialoog Dialog1 in de Standaard bibliotheek." #. Wsp8E #: python_listener.xhp @@ -2408,7 +2408,7 @@ "N0508\n" "help.text" msgid "Platform;isLinux Platform;isMacOsX Platform;isWindows Platform;ComputerName Platform;OSName API;ConfigurationAccess Tools;GetRegistryContent" -msgstr "Platform;isLinux Platform;isMacOsX Platform;isWindows Platform;ComputerName Platform;OSName API;ConfigurationAccess Tools;GetRegistryContent" +msgstr "Platform;isLinux Platform;isMacOsX Platform;isWindows Platform;ComputerName Platform;OSName API;ConfigurationAccess Gereedschappen;GetRegistryContent" #. uMBGn #: python_platform.xhp @@ -2435,7 +2435,7 @@ "N0511\n" "help.text" msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations." -msgstr "De eigenschap ComputerName property is alleen beschikbaar op Windows. Basic-aanroepen van Python-macro's verhelpen deze %PRODUCTNAME Basic beperkingen." +msgstr "De eigenschap ComputerName is alleen beschikbaar op Windows. Basic-aanroepen van Python-macro's verhelpen deze %PRODUCTNAME Basic beperkingen." #. sV6Fp #: python_platform.xhp @@ -3038,7 +3038,7 @@ "N0435\n" "help.text" msgid "Python standard output file is not available when running Python macros from Tools – Macros - Run Macro... menu. Presenting the output of a module requires the Python interactive console. Features such as input(), print(), repr() and str() are available from the Python shell." -msgstr "Het standaard uitvoerbestand van Python is niet beschikbaar wanneer Python-macro's worden uitgevoerd via het menu Extras – Macro's - Macro uitvoeren. Voor het tonen van de uitvoer is het Python interactieve console nodig. Functies als input(), print(), repr() en str() zijn dan beschikbaar in de Python-shell." +msgstr "Het standaard uitvoerbestand van Python is niet beschikbaar wanneer Python-macro's worden uitgevoerd via het menu Extra – Macro's - Macro uitvoeren. Voor het tonen van de uitvoer is het Python interactieve console nodig. Functies als input(), print(), repr() en str() zijn dan beschikbaar in de Python-shell." #. NHHFB #: python_screen.xhp @@ -3101,7 +3101,7 @@ "N0451\n" "help.text" msgid "Copy uiScripts Basic module in My macros Standard Basic library," -msgstr "Kopieer de BASIC-module uiScripts in Mijn macro's Standaard BASIC-blibliotheek," +msgstr "Kopieer de BASIC-module uiScripts in Mijn macro's Standaard BASIC-bibliotheek," #. XAthB #: python_screen.xhp @@ -3173,7 +3173,7 @@ "N0339\n" "help.text" msgid "Session;UserName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts API;PathSubstitution" -msgstr "Session;UserName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts API;PathSubstitution" +msgstr "Sessie;Gebruikersnaam Sessie;SharedScripts Sessie;SharedPythonScripts Sessie;Gebruikersprofiel Sessie;Gebruikersscripts Session;UserPythonScripts API;PadSubstitutie" #. EvmoA #: python_session.xhp @@ -3425,7 +3425,7 @@ "N0422\n" "help.text" msgid "End Sub ' Constructor" -msgstr "End Sub ' Constructor" +msgstr "End Sub ' Constructeur" #. ELSQJ #: python_session.xhp @@ -3461,7 +3461,7 @@ "N0447\n" "help.text" msgid "Public Property Get UserScripts() As String ' User scripts system path" -msgstr "Public Property Get UserScripts() As String ' Systeempad gebruikerscripts" +msgstr "Public Property Get UserScripts() As String ' Systeempad gebruikersscripts" #. Gg3yg #: python_session.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-06-06 18:38+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562869948.000000\n" #. 6Kkin @@ -887,7 +887,7 @@ "par_id0929200903505211\n" "help.text" msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported." -msgstr "Als het geïmporteerde dialoogvenster een naam heeft die al bestaat in de bibliotheek, zult u een berichtenvenster zien waar u kunt beslissen om het geïmporteerde dialoogvenster te hernoemen. In dit geval zal het dialoogvenster worden hernoemd naar de volgende vrije \"automatische\" naam zoals bij het maken van een nieuw dialoogvenster. Of u kunt het bestaande dialoogvenster vervangen door het geïmporteerde dialoogvenster. Als u op Annuleren klikt wordt het dialoogvenster niet geïmporteerd." +msgstr "Als het geïmporteerde dialoogvenster een naam heeft die al bestaat in de bibliotheek, zult u een berichtvenster zien waar u kunt beslissen om het geïmporteerde dialoogvenster te hernoemen. In dit geval zal het dialoogvenster worden hernoemd naar de volgende vrije \"automatische\" naam zoals bij het maken van een nieuw dialoogvenster. Of u kunt het bestaande dialoogvenster vervangen door het geïmporteerde dialoogvenster. Als u op Annuleren klikt wordt het dialoogvenster niet geïmporteerd." #. n6QpJ #: 11180000.xhp @@ -914,7 +914,7 @@ "par_id0929200903505383\n" "help.text" msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons." -msgstr "Als het geïmporteerde dialoogvenster aanvullende talen bevat, vergeleken met de bibliotheek, of als de bibliotheek helemaal niet is vertaald, ziet u een berichtenvenster met de knoppen Toevoegen, Weglaten en Annuleren." +msgstr "Als het geïmporteerde dialoogvenster aanvullende talen bevat, vergeleken met de bibliotheek, of als de bibliotheek helemaal niet is vertaald, ziet u een berichtvenster met de knoppen Toevoegen, Weglaten en Annuleren." #. XrhtD #: 11180000.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" -"Last-Translator: HanV \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: vpanter \n" "Language-Team: Dutch \n" "Language: nl\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1548055268.000000\n" #. ViEWM @@ -212,7 +212,7 @@ "par_id871637256506167\n" "help.text" msgid "The Dispose method is available in all services and should be called to free up resources after usage." -msgstr "" +msgstr "De methode Dispose is beschikbaar in alle services en moet worden aangeroepen om na gebruik bronnen vrij te maken." #. Depaw #: lib_ScriptForge.xhp @@ -383,7 +383,7 @@ "par_id691593519646426\n" "help.text" msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory." -msgstr "Er kunnen zich conflicten met de naam van de basisroutine voordoen als er meerdere basisbibliotheken in het geheugen zijn geladen." +msgstr "Er kunnen zich conflicten met de naam van de routine voordoen als er meerdere Basic bibliotheken in het geheugen zijn geladen." #. 5NFbA #: lib_euro.xhp @@ -392,7 +392,7 @@ "par_id1001593520257636\n" "help.text" msgid "ImportWizard and Tools Basic libraries" -msgstr "Import-assistent en Extra Basisbibliotheken" +msgstr "Import-assistent en Extra Basic bibliotheken" #. JbBaB #: lib_euro.xhp @@ -500,7 +500,7 @@ "par_id1001593520257636\n" "help.text" msgid "Tools Basic library" -msgstr "Extra Basic -bibliotheek" +msgstr "Tools Basic-bibliotheek" #. 9DVHn #: lib_gimmicks.xhp @@ -527,7 +527,7 @@ "hd_id31529004750471\n" "help.text" msgid "The ImportWizard Library" -msgstr "De bibliotheekImportassistent Library" +msgstr "De ImportWizard bibliotheek" #. pbesX #: lib_importwiz.xhp @@ -581,7 +581,7 @@ "par_id691593519646426\n" "help.text" msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory." -msgstr "Er kunnen zich conflicten met de naam van de basisroutine voordoen als er meerdere basisbibliotheken in het geheugen zijn geladen." +msgstr "Er kunnen zich conflicten met de naam van de routine voordoen als er meerdere Basic bibliotheken in het geheugen zijn geladen." #. ZCH7G #: lib_importwiz.xhp @@ -599,7 +599,7 @@ "par_id251593518523704\n" "help.text" msgid "Document Converter describes what the ImportWizard library does." -msgstr "Documentconverter beschrijft wat de bibliotheek Importassistent doet." +msgstr "Documentconverter beschrijft wat de bibliotheek ImportWizard doet." #. UWzWk #: lib_schedule.xhp @@ -608,7 +608,7 @@ "tit\n" "help.text" msgid "SCHEDULE Library" -msgstr "SCHEDULE bibliotheek" +msgstr "Schedule bibliotheek" #. CBBt6 #: lib_schedule.xhp @@ -725,7 +725,7 @@ "hd_id31529004750471\n" "help.text" msgid "The Template Library" -msgstr "De bibliotheek Sjablonen Library" +msgstr "De Template bibliotheek" #. adfxB #: lib_tools.xhp @@ -743,7 +743,7 @@ "hd_id31529004750471\n" "help.text" msgid "The Tools Library" -msgstr "De Hulpmiddelen bibliotheek" +msgstr "De Tools bibliotheek" #. rUPPX #: lib_tools.xhp @@ -752,7 +752,7 @@ "bm_id491529070339774\n" "help.text" msgid "BASIC Tools library" -msgstr "BASIC hulpmiddelen bibliotheek" +msgstr "BASIC Tools bibliotheek" #. DKAzk #: lib_tools.xhp @@ -770,7 +770,7 @@ "par_id41529001348561\n" "help.text" msgid "ListBox Module" -msgstr "Keuzelijst Module" +msgstr "Listbox Module" #. BDvVs #: lib_tools.xhp @@ -797,7 +797,7 @@ "par_id701529001368064\n" "help.text" msgid "Strings Module" -msgstr "Tekenreeks Module" +msgstr "Strings Module" #. BjA4M #: lib_tools.xhp @@ -815,7 +815,7 @@ "bm_id271529062442803\n" "help.text" msgid "BASIC Tools library;Debug module" -msgstr "BASIC hulpmiddelen bibliotheek;Debug module" +msgstr "BASIC Tools bibliotheek;Debug module" #. TKbhv #: lib_tools.xhp @@ -860,7 +860,7 @@ "bm_id131529062501888\n" "help.text" msgid "BASIC Tools library;ListBox module" -msgstr "Bibliotheek van BASIC-hulpmiddelen;ListBox (Module)" +msgstr "Bibliotheek BASIC Tools;ListBox (Module)" #. qTCF8 #: lib_tools.xhp @@ -914,7 +914,7 @@ "bm_id21529062611375\n" "help.text" msgid "BASIC Tools library;ModuleControl module" -msgstr "Bibliotheek van BASIC-hulpmiddelen;ModuleControl (Module)" +msgstr "Bibliotheek BASIC Tools;ModuleControl (Module)" #. sonXm #: lib_tools.xhp @@ -923,7 +923,7 @@ "hd_id451529005764422\n" "help.text" msgid "ModuleControls Module" -msgstr "Module ModuleBesturing" +msgstr "Module ModuleControls" #. 3ASxZ #: lib_tools.xhp @@ -950,7 +950,7 @@ "bm_id271529062660965\n" "help.text" msgid "BASIC Tools library;Strings module" -msgstr "Bibliotheek van BASIC-hulpmiddelen;Strings (Module)" +msgstr "Bibliotheek BASIC Tools;Strings (Module)" #. uFYzk #: lib_tools.xhp @@ -968,7 +968,7 @@ "par_id631529064722315\n" "help.text" msgid "Advanced functions and subroutines for string manipulation." -msgstr "Geavanceerde functies en subroutines voor stringmanipulatie." +msgstr "Geavanceerde functies en subroutines voor het manipuleren van tekenreeksen." #. iKnBp #: lib_tools.xhp @@ -1004,7 +1004,7 @@ "tit\n" "help.text" msgid "WikiEditor Library" -msgstr "Bibliotheek WikiEditor" +msgstr "WikiEditor bibliotheek" #. QDwwy #: lib_wikieditor.xhp @@ -1013,7 +1013,7 @@ "hd_id31529004750471\n" "help.text" msgid "The WikiEditor Library" -msgstr "De bibliotheek WikiEditor" +msgstr "De WikiEditor bibliotheek" #. mBGxx #: lib_wikieditor.xhp @@ -1112,7 +1112,7 @@ "hd_id981586595097630\n" "help.text" msgid "Service invocation" -msgstr "Service-aanroep" +msgstr "Service aanroep" #. CPbHQ #: sf_array.xhp @@ -1121,7 +1121,7 @@ "par_id141609955500101\n" "help.text" msgid "Before using the Array service the ScriptForge library needs to be loaded using:" -msgstr "Voordat de service Array gebruikt kan worden moet ScriptForge bibliotheek worden geladen met:" +msgstr "Voordat de service Array gebruikt kan worden moet de ScriptForge bibliotheek worden geladen met:" #. FDqCD #: sf_array.xhp @@ -1139,7 +1139,7 @@ "par_id63158659509728\n" "help.text" msgid "The following code snippets show the various ways to call methods in the Array service (the Append method is used as an example):" -msgstr "De volgende stukjes code tonen manieren om de methoden aan te roepen in de service Array (de methode Append dient als voorbeeld):" +msgstr "De volgende stukjes code tonen manieren om de methoden in de service Array aan te roepen (de methode Append dient als voorbeeld):" #. PZxWC #: sf_array.xhp @@ -2219,7 +2219,7 @@ "par_id621582650954370\n" "help.text" msgid "array_2d: The array to sort." -msgstr "array_2d: De te sorteren matrixen." +msgstr "array_2d: De te sorteren matrix." #. HZqQi #: sf_array.xhp @@ -2525,7 +2525,7 @@ "par_id481619036833610\n" "help.text" msgid "Returns an array with the full names (path/name) of all form documents in the Base document as an zero-based Array of strings." -msgstr "" +msgstr "Retourneert een matrix met de volledige namen (bestandsnaam inclusief pad) van alle formulierdocumenten in het Base-document." #. sECnJ #: sf_base.xhp @@ -2651,7 +2651,7 @@ "pyc_id351623104861223\n" "help.text" msgid "' ... Run queries, SQL statements, ..." -msgstr "" +msgstr "' ... Queries, SQL-statements,... uitvoeren" #. mBphD #: sf_base.xhp @@ -2858,7 +2858,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "Service-aanroep" +msgstr "Service aanroep" #. pNUsj #: sf_basic.xhp @@ -3425,7 +3425,7 @@ "par_id741622396277528\n" "help.text" msgid "Returns the UNO object containing all shared Basic libraries and modules." -msgstr "Retourneert het UNO-object dat alle gedeelde basisbibliotheken en -modules bevat." +msgstr "Retourneert het UNO-object dat alle gedeelde Basic bibliotheken en modules bevat." #. MCrF8 #: sf_basic.xhp @@ -3659,7 +3659,7 @@ "par_id451619094057178\n" "help.text" msgid "Inspect Uno objects or variables." -msgstr "Uno-objecten of -variabelen onderzoeken." +msgstr "Uno-objecten of variabelen onderzoeken." #. CDCQx #: sf_basic.xhp @@ -3713,7 +3713,7 @@ "par_id351591014177269\n" "help.text" msgid "The SFDocuments.Calc service is a subclass of the SFDocuments.Document service. All methods and properties defined for the Document service can also be accessed using a Calc service instance." -msgstr "" +msgstr "De service SFDocuments.Calc is een subklasse van de service SFDocuments.Document. Alle methoden en eigenschappen die gedefinieerd zijn voor de service Document kunnen ook benaderd worden via een instantie van de service Calc." #. 4uAEX #: sf_calc.xhp @@ -4163,7 +4163,7 @@ "par_id31582885195372\n" "help.text" msgid "Readonly" -msgstr "Alleen-lezen" +msgstr "AlleenLezen" #. oFX3A #: sf_calc.xhp @@ -4649,7 +4649,7 @@ "par_id321611613059105\n" "help.text" msgid "Visit %PRODUCTNAME API Documentation's website to learn more about XCellRange, XSheetCellCursor and XSpreadsheet UNO objects." -msgstr "" +msgstr "Op de website %PRODUCTNAME API Documentation vind u meer informatie over de XCellRange, XSheetCellCursor en XSpreadsheet UNO-objecten." #. V5dF8 #: sf_calc.xhp @@ -4784,7 +4784,7 @@ "par_id371635438503202\n" "help.text" msgid "If only sheetname is specified, an zero-based array of strings containing the names of all charts is returned." -msgstr "" +msgstr "Als alleen sheetname is opgegeven, wordt een op nul gebaseerde matrix van tekenreeksen met de namen van alle diagrammen geretourneerd." #. pGvVW #: sf_calc.xhp @@ -4793,7 +4793,7 @@ "par_id371635438509045\n" "help.text" msgid "If a chartname is provided, than a single object corresponding to the desired chart is returned. The specified chart must exist." -msgstr "" +msgstr "Als een chartname is opgegeven, wordt een enkel object dat overeenkomt met de gewenste kaart geretourneerd. Het opgegeven diagram moet bestaan." #. T2e3d #: sf_calc.xhp @@ -4901,7 +4901,7 @@ "par_id591591631693816\n" "help.text" msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any open Calc document. Returns True if successful." -msgstr "" +msgstr "Kopieert een opgegeven blad vóór een bestaand blad of aan het einde van de lijst met bladen. Het te kopiëren blad kan zich in elk open Calc-document bevinden. Retourneert True indien succesvol." #. YqGL2 #: sf_calc.xhp @@ -4910,7 +4910,7 @@ "par_id871591631693741\n" "help.text" msgid "sheetname: The name of the sheet to be copied as a string or its reference as an object." -msgstr "" +msgstr "sheetname: de naam van het blad dat moet worden gekopieerd als een tekenreeks of de referentie ervan als een object." #. 5cEGG #: sf_calc.xhp @@ -4919,7 +4919,7 @@ "par_id351591632126180\n" "help.text" msgid "newname: The name of the sheet to insert. The name must not be in use in the document." -msgstr "" +msgstr "newname: De naam van het blad dat moet worden ingevoegd. De naam mag niet in gebruik zijn in het document." #. 8sSno #: sf_calc.xhp @@ -4928,7 +4928,7 @@ "par_id211591632192379\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: De naam (tekenreeks) of index (numeriek, beginnend bij 1) van het blad waarvoor het gekopieerde blad moet worden ingevoegd. Dit argument is optioneel en het standaardgedrag is om het gekopieerde blad op de laatste positie toe te voegen." #. yuvEn #: sf_calc.xhp @@ -4937,7 +4937,7 @@ "par_id961591632309410\n" "help.text" msgid "The following example makes a copy of the sheet \"SheetX\" and places it as the last sheet in the current document. The name of the copied sheet is \"SheetY\"." -msgstr "" +msgstr "Het volgende voorbeeld maakt een kopie van het blad \"BladX\" en plaatst dit als het laatste blad in het huidige document. De naam van het gekopieerde blad is \"BladY\"." #. pqVdW #: sf_calc.xhp @@ -4946,7 +4946,7 @@ "bas_id231611706034607\n" "help.text" msgid "'Gets the Document object of the active window" -msgstr "" +msgstr "'Haalt het Document-object van het actieve venster'" #. xUG9G #: sf_calc.xhp @@ -4955,7 +4955,7 @@ "par_id461591632297415\n" "help.text" msgid "The example below copies \"SheetX\" from \"FileA.ods\" and pastes it at the last position of \"FileB.ods\" with the name \"SheetY\":" -msgstr "" +msgstr "Het onderstaande voorbeeld kopieert \"BladX\" van \"File.ods\" en plakt het op de laatste positie van \"FileB.ods\" met de naam \"BladY\":" #. 2AAEx #: sf_calc.xhp @@ -4964,7 +4964,7 @@ "par_id801595695285478\n" "help.text" msgid "To copy sheets between open documents, use CopySheet. To copy sheets from documents that are closed, use CopySheetFromFile." -msgstr "" +msgstr "Om werkbladen tussen open documenten te kopiëren, gebruik CopySheet. Om werkbladen tussen gesloten documenten te kopiëren, gebruik CopySheetFromFile." #. 5fctt #: sf_calc.xhp @@ -4973,7 +4973,7 @@ "par_id931591714614755\n" "help.text" msgid "Copies a specified sheet from a closed Calc document and pastes it before an existing sheet or at the end of the list of sheets of the file referred to by a Document object." -msgstr "" +msgstr "Kopieert een gespecificeerd blad van een gesloten Calc-document en plakt het voor een bestaand blad of aan het einde van de lijst met bladen van het bestand waarnaar wordt verwezen door een Document-object." #. M9mDA #: sf_calc.xhp @@ -4982,7 +4982,7 @@ "par_id271611706609445\n" "help.text" msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet." -msgstr "" +msgstr "Als het bestand niet bestaat, wordt er een fout gegenereerd. Als het bestand geen geldig Calc-bestand is, wordt een leeg blad ingevoegd. Als het bronblad niet bestaat in het invoerbestand, wordt een foutmelding bovenaan het nieuw geplakte blad ingevoegd." #. tCseT #: sf_calc.xhp @@ -4991,7 +4991,7 @@ "par_id471591714947181\n" "help.text" msgid "filename: Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. The file must not be protected with a password." -msgstr "" +msgstr "bestandsnaam: identificeert het te openen bestand. Het moet de notatie SF_FileSystem.FileNaming volgen. Het bestand mag niet worden beveiligd met een wachtwoord." #. gHjz6 #: sf_calc.xhp @@ -5000,7 +5000,7 @@ "par_id9915917146142\n" "help.text" msgid "sheetname: The name of the sheet to be copied as a string." -msgstr "" +msgstr "sheetname: De naam van het blad dat als tekenreeks moet worden gekopieerd." #. PeZ4F #: sf_calc.xhp @@ -5009,7 +5009,7 @@ "par_id71591714614904\n" "help.text" msgid "newname: The name of the copied sheet to be inserted in the document. The name must not be in use in the document." -msgstr "" +msgstr "newname: De naam van het gekopieerde blad dat in het document moet worden ingevoegd. De naam mag niet in gebruik zijn in het document." #. 2niVz #: sf_calc.xhp @@ -5018,7 +5018,7 @@ "par_id601591714614407\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: De naam (tekenreeks) of index (numeriek, beginnend bij 1) van het blad waarvoor het gekopieerde blad moet worden ingevoegd. Dit argument is optioneel en het standaardgedrag is om het gekopieerde blad op de laatste positie toe te voegen." #. iEHJy #: sf_calc.xhp @@ -5027,7 +5027,7 @@ "par_id981611707192039\n" "help.text" msgid "The following example copies \"SheetX\" from \"myFile.ods\" and pastes it into the document referred to by \"oDoc\" as \"SheetY\" at the first position." -msgstr "" +msgstr "Het volgende voorbeeld kopieert \"BladX\" van \"myFile.ods\" en plakt het op de eerste positie in het document waarnaar wordt verwezen door \"oDoc\" als \"BladY\"." #. kELHv #: sf_calc.xhp @@ -5036,7 +5036,7 @@ "par_id91592558768804\n" "help.text" msgid "Copies a specified source range (values, formulas and formats) to a destination range or cell. The method reproduces the behaviour of a Copy/Paste operation from a range to a single cell." -msgstr "" +msgstr "Kopieert een opgegeven bronbereik (waarden, formules en indelingen) naar een doelbereik of cel. De methode reproduceert het gedrag van een kopieer-/plakbewerking van een bereik naar een enkele cel." #. KixB2 #: sf_calc.xhp @@ -5045,7 +5045,7 @@ "par_id831611707431984\n" "help.text" msgid "It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Het retourneert een tekenreeks die het gewijzigde celbereik vertegenwoordigt. De grootte van het gewijzigde gebied wordt volledig bepaald door de grootte van het brongebied." #. KCiyF #: sf_calc.xhp @@ -5054,7 +5054,7 @@ "par_id681592558768463\n" "help.text" msgid "The source range may belong to another open document." -msgstr "" +msgstr "Het bronbereik kan bij een ander geopend document horen." #. RBQG9 #: sf_calc.xhp @@ -5063,7 +5063,7 @@ "par_id761592558768578\n" "help.text" msgid "sourcerange: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document." -msgstr "" +msgstr "sourcerange: Het bronbereik als tekenreeks als het bij hetzelfde document hoort of als verwijzing als het bij een ander geopend Calc-document hoort." #. 3MUwk #: sf_calc.xhp @@ -5072,7 +5072,7 @@ "par_id711592558768466\n" "help.text" msgid "destinationcell: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered." -msgstr "" +msgstr "destinationcell: De doelcel waar het gekopieerde celbereik wordt geplakt, als een tekenreeks. Als een bereik is opgegeven, wordt alleen de cel linksboven in aanmerking genomen." #. FbkjF #: sf_calc.xhp @@ -5081,7 +5081,7 @@ "par_id431592904964362\n" "help.text" msgid "Next is an example where the source and destination are in the same file:" -msgstr "" +msgstr "Hierna volgt een voorbeeld waarbij de bron en het doel zich in hetzelfde bestand bevinden:" #. Zh3Wp #: sf_calc.xhp @@ -5090,7 +5090,7 @@ "par_id751592905035452\n" "help.text" msgid "The example below illustrates how to copy a range from another open Calc document:" -msgstr "" +msgstr "Het onderstaande voorbeeld illustreert hoe u een bereik kopieert uit een ander geopend Calc-document:" #. uFAEe #: sf_calc.xhp @@ -5099,7 +5099,7 @@ "bas_id351592558768880\n" "help.text" msgid "'Open the source document in the background (hidden)" -msgstr "" +msgstr "'Open het brondocument op de achtergrond (verborgen)" #. PBgwL #: sf_calc.xhp @@ -5108,7 +5108,7 @@ "bas_id1001611708508251\n" "help.text" msgid "'Do not forget to close the source document because it was opened as hidden" -msgstr "" +msgstr "'Vergeet niet het brondocument te sluiten, omdat het als verborgen werd geopend" #. ZzDAQ #: sf_calc.xhp @@ -5117,7 +5117,7 @@ "par_id61592905442071\n" "help.text" msgid "To simulate a Copy/Paste from a range to a single cell, use CopyToCell. To simulate a Copy/Paste from a range to a larger range (with the same cells being replicated several times), use CopyToRange." -msgstr "" +msgstr "Gebruik CopyToCell om kopiëren/plakken van een bereik naar een enkele cel te simuleren. Gebruik CopyToRange om kopiëren/plakken van een bereik naar een groter bereik te simuleren (waarbij dezelfde cellen meerdere keren worden gerepliceerd)." #. maHke #: sf_calc.xhp @@ -5126,7 +5126,7 @@ "par_id1615929031212\n" "help.text" msgid "Copies downwards and/or rightwards a specified source range (values, formulas and formats) to a destination range. The method imitates the behaviour of a Copy/Paste operation from a source range to a larger destination range." -msgstr "" +msgstr "Kopieert naar beneden en/of naar rechts een gespecificeerd bronbereik (waarden, formules en formaten) naar een doelbereik. De methode imiteert het gedrag van een kopieer-/plakbewerking van een bronbereik naar een groter doelbereik." #. G4qky #: sf_calc.xhp @@ -5135,7 +5135,7 @@ "par_id271592904084534\n" "help.text" msgid "If the height (or width) of the destination area is > 1 row (or column) then the height (or width) of the source must be <= the height (or width) of the destination. Otherwise nothing happens." -msgstr "" +msgstr "Als de hoogte (of breedte) van het doelgebied > 1 rij (of kolom) is, dan moet de hoogte (of breedte) van de bron <= de hoogte (of breedte) van de bestemming zijn. Anders gebeurt er niets." #. Pko2R #: sf_calc.xhp @@ -5144,7 +5144,7 @@ "par_id131592904286834\n" "help.text" msgid "If the height (or width) of the destination is = 1 then the destination is expanded downwards (or rightwards) up to the height (or width) of the source range." -msgstr "" +msgstr "Als de hoogte (of breedte) van de bestemming = 1 is, wordt de bestemming naar beneden (of naar rechts) uitgebreid tot de hoogte (of breedte) van het bronbereik." #. jYha4 #: sf_calc.xhp @@ -5153,7 +5153,7 @@ "par_id661592904348877\n" "help.text" msgid "The method returns a string representing the modified range of cells." -msgstr "" +msgstr "De methode retourneert een tekenreeks die het gewijzigde celbereik vertegenwoordigt." #. wfzcw #: sf_calc.xhp @@ -5162,7 +5162,7 @@ "par_id41592903121807\n" "help.text" msgid "The source range may belong to another open document." -msgstr "" +msgstr "Het bronbereik kan bij een ander geopend document horen." #. CEaED #: sf_calc.xhp @@ -5171,7 +5171,7 @@ "par_id841592903121145\n" "help.text" msgid "sourcerange: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document." -msgstr "" +msgstr "sourcerange: Het bronbereik als tekenreeks als het bij hetzelfde document hoort of als verwijzing als het bij een ander geopend Calc-document hoort." #. v3d3d #: sf_calc.xhp @@ -5180,7 +5180,7 @@ "par_id5515929031211000\n" "help.text" msgid "destinationrange: The destination of the copied range of cells, as a string." -msgstr "" +msgstr "destinationrange: De bestemming van het gekopieerde celbereik, als een tekenreeks." #. LsHF6 #: sf_calc.xhp @@ -5189,7 +5189,7 @@ "par_id461592905128991\n" "help.text" msgid "Copy within the same document:" -msgstr "" +msgstr "Kopieer binnen hetzelfde document:" #. dNdmJ #: sf_calc.xhp @@ -5198,7 +5198,7 @@ "bas_id601592904507182\n" "help.text" msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\"" -msgstr "" +msgstr "' Retourneert een bereiktekenreeks: \"$SheetY.$C$5:$J$14\"" #. FBbwi #: sf_calc.xhp @@ -5207,7 +5207,7 @@ "par_id1001592905195364\n" "help.text" msgid "Copy from one file to another:" -msgstr "" +msgstr "Kopieer van het ene bestand naar het andere:" #. L3GHp #: sf_calc.xhp @@ -5216,7 +5216,7 @@ "par_id1615929033642\n" "help.text" msgid "Creates a new chart object showing the data in the specified range. The returned chart object can be further manipulated using the Chart service." -msgstr "" +msgstr "Maakt een nieuw grafiekobject met de gegevens in het opgegeven bereik. Het geretourneerde kaartobject kan verder worden gemanipuleerd met behulp van de service Chart." #. 2YZ5H #: sf_calc.xhp @@ -5225,7 +5225,7 @@ "par_id841592903121025\n" "help.text" msgid "chartname: The user-defined name of the chart to be created. The name must be unique in the same sheet." -msgstr "" +msgstr "chartname: De door de gebruiker gedefinieerde naam van de te maken grafiek. De naam moet uniek zijn in hetzelfde blad." #. BBtB3 #: sf_calc.xhp @@ -5234,7 +5234,7 @@ "par_id5515929031213680\n" "help.text" msgid "sheetname: The name of the sheet where the chart will be placed." -msgstr "" +msgstr "sheetname: De naam van het blad waar de grafiek zal worden geplaatst." #. GEiCb #: sf_calc.xhp @@ -5243,7 +5243,7 @@ "par_id5515929031211522\n" "help.text" msgid "range: The range to be used as the data source for the chart. The range may refer to any sheet of the Calc document." -msgstr "" +msgstr "range: Het bereik dat als gegevensbron voor de grafiek moet worden gebruikt. Het bereik kan verwijzen naar elk blad van het Calc-document." #. L3dSo #: sf_calc.xhp @@ -5252,7 +5252,7 @@ "par_id5515929031216390\n" "help.text" msgid "columnheader: When True, the topmost row of the range is used as labels for the category axis or the legend (Default = False)." -msgstr "" +msgstr "columnheader: Als True, zal de bovenste rij van het bereik worden gebruikt als labels voor de categorie-as of de legenda (Standaard = False)." #. iyq5m #: sf_calc.xhp @@ -5261,7 +5261,7 @@ "par_id5515929031211633\n" "help.text" msgid "rowheader: When True, the leftmost column of the range is used as labels for the category axis or the legend. (Default = False)." -msgstr "" +msgstr "rowheader: Als True, zal de meest linkse kolom van het bereik worden gebruikt als labels voor de categorie-as of de legenda. (Standaard = False)." #. CKzBZ #: sf_calc.xhp @@ -5270,7 +5270,7 @@ "par_id61635441176547\n" "help.text" msgid "The examples below in Basic and Python create a chart using the data contained in the range \"A1:B5\" of \"Sheet1\" and place the chart in \"Sheet2\"." -msgstr "" +msgstr "In de onderstaande voorbeelden wordt in Basic en in Python een diagram aangemaakt met de gegevens die in de cellen \"A1:B5\" van \"Sheet1\" staan, de diagram wordt in \"Sheet2\" gezet." #. uBCvA #: sf_calc.xhp @@ -5279,7 +5279,7 @@ "par_id231635441342180\n" "help.text" msgid "Refer to the help page about ScriptForge's Chart service to learn more how to further manipulate chart objects. It is possible to change properties as the chart type, chart and axes titles and chart position." -msgstr "" +msgstr "Lees de helppagina over de ScriptForge service Chart voor meer informatie over de mogelijkheden met diagram-objecten .U kunt het diagramtype wijzigen, de diagram, de assen, de titels en de positie." #. so8uw #: sf_calc.xhp @@ -5288,7 +5288,7 @@ "par_id601595777001498\n" "help.text" msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range." -msgstr "" +msgstr "De functies Average, Count, Max, Min en Sum kunnen gebruikt worden voor alle cellen die een numerieke waarde bevatten binnen een aangegeven bereik." #. F2UTC #: sf_calc.xhp @@ -5297,7 +5297,7 @@ "par_id741595777001537\n" "help.text" msgid "range: The range to which the function will be applied, as a string." -msgstr "" +msgstr "range: Een tekenreeks, die het bereik van de cellen aangeeft waarop de functie werkt." #. ZhAYY #: sf_calc.xhp @@ -5306,7 +5306,7 @@ "par_id121611752704572\n" "help.text" msgid "The example below applies the Sum function to the range \"A1:A1000\" of the currently selected sheet:" -msgstr "" +msgstr "In onderstaand voorbeeld wordt de functie Som uitgevoerd op het bereik \"A1:A1000\" van het geselecteerde werkblad:" #. iTEts #: sf_calc.xhp @@ -5315,7 +5315,7 @@ "par_id31611752782288\n" "help.text" msgid "Cells in the given range that contain text will be ignored by all of these functions. For example, the DCount method will not count cells with text, only numerical cells." -msgstr "" +msgstr "Cellen in het aangegeven bereik die tekst bevatten worden door deze functies overgeslagen. De methode DCount zal alleen cellen met numerieke inhoud tellen en de cellen met tekst overslaan." #. BVKEy #: sf_calc.xhp @@ -5324,7 +5324,7 @@ "par_id501623063693649\n" "help.text" msgid "Depending on the parameters provided this method will return:" -msgstr "" +msgstr "Afhankelijk van de parameters retourneert deze methode:" #. pBZm6 #: sf_calc.xhp @@ -5333,7 +5333,7 @@ "par_id611623063742045\n" "help.text" msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in a given sheet (if the form argument is absent)" -msgstr "" +msgstr "Een zero-based matrix (of een tuple in Python) met de namen van alle forms die een aangegeven werkblad bevat (indien er bij de aanroep geen argument form is)" #. FHWZs #: sf_calc.xhp @@ -5342,7 +5342,7 @@ "par_id641623063744536\n" "help.text" msgid "A SFDocuments.Form service instance representing the form specified as argument." -msgstr "" +msgstr "Een instantie van de service SFDocuments.Form die staat voor het form als dat als argument wordt gebruikt." #. YdQaD #: sf_calc.xhp @@ -5351,7 +5351,7 @@ "par_id441623090893210\n" "help.text" msgid "sheetname: The name of the sheet, as a string, from which the form will be retrieved." -msgstr "" +msgstr "sheetname: De naam van het werkblad, als een tekenreeks, waar het form van wordt opgehaald." #. BV8GH #: sf_calc.xhp @@ -5360,7 +5360,7 @@ "par_id451623063459286\n" "help.text" msgid "form: The name or index corresponding to a form stored in the specified sheet. If this argument is absent, the method will return a list with the names of all forms available in the sheet." -msgstr "" +msgstr "form: De naam of index van een form op een aangegeven werkblad. Indien het argument ontbreekt zal de methode een lijst met alle beschikbare forms op het werkblad retourneren." #. sFFyE #: sf_calc.xhp @@ -5369,7 +5369,7 @@ "par_id251623063305557\n" "help.text" msgid "In the following examples, the first line gets the names of all forms stored in \"Sheet1\" and the second line retrieves the Form object of the form named \"Form_A\" which is stored in \"Sheet1\"." -msgstr "" +msgstr "In de volgende voorbeelden wordt met de eerste regel steeds de namen van alle forms op het werkblad \"Sheet1\" opgehaald, in de volgende regel wordt het object Form van het form \"Form_A\" opgehaald. \"Form_A\" is de naam van een form op werkblad \"Sheet1\"." #. y9kCE #: sf_calc.xhp @@ -5378,7 +5378,7 @@ "par_id401591632726431\n" "help.text" msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned." -msgstr "" +msgstr "Converteert een kolomnummer in het bereik 1-1024 naar de overeenkomende letter (kolom 'A', 'B', ..., 'AMJ'). Als het kolomnummer buiten het bereik ligt, dan wordt er een lege tekenreeks geretourneerd." #. EfsXe #: sf_calc.xhp @@ -5387,7 +5387,7 @@ "par_id83159163272628\n" "help.text" msgid "columnnumber: The column number as an integer value in the interval 1 ... 1024." -msgstr "" +msgstr "columnnumber: Het kolomnummer als een geheel getal in het bereik 1 ... 1024." #. 6yjtp #: sf_calc.xhp @@ -5396,7 +5396,7 @@ "par_id11621539831303\n" "help.text" msgid "Displays a message box with the name of the third column, which by default is \"C\"." -msgstr "" +msgstr "Toont een berichtvenster met de naam van de derde kolom, standaard is dat \"C\"." #. XNAhU #: sf_calc.xhp @@ -5405,7 +5405,7 @@ "par_id451611753568778\n" "help.text" msgid "The maximum number of columns allowed on a Calc sheet is 1024." -msgstr "" +msgstr "Het maximale aantal kolommen in een Calc-werkblad is 1024." #. ksYoG #: sf_calc.xhp @@ -5414,7 +5414,7 @@ "par_id921593880142573\n" "help.text" msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings." -msgstr "" +msgstr "Haalt de formule(s) op in het aangegeven bereik van cellen als een enkele tekenreeks, een 1D of een 2D matrix van tekenreeksen." #. KDFkQ #: sf_calc.xhp @@ -5423,7 +5423,7 @@ "par_id891593880142588\n" "help.text" msgid "range: The range where to get the formulas from, as a string." -msgstr "" +msgstr "range: Het bereik van cellen waar de formules van opgehaald moeten worden." #. tBeSN #: sf_calc.xhp @@ -5432,7 +5432,7 @@ "par_id461611755257141\n" "help.text" msgid "The following example returns a 3 by 2 array with the formulas in the range \"A1:B3\" (3 rows by 2 columns):" -msgstr "" +msgstr "In dit voorbeeld wordt een 3 bij 2 matrix geretourneerd, omdat in het bereik \"A1:B3\" 3 rijen (cijfers) en 2 kolommen (letters) zitten:" #. AoHGB #: sf_calc.xhp @@ -5441,7 +5441,7 @@ "par_id331592231156425\n" "help.text" msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings." -msgstr "" +msgstr "Haalt de waarde(n) in het gegeven bereik op als een enkele waarde, een 1D matrix of een 2D matrix. Elke waarde is een ''double' of een 'string'." #. XACNZ #: sf_calc.xhp @@ -5450,7 +5450,7 @@ "par_id91592231156434\n" "help.text" msgid "range: The range where to get the values from, as a string." -msgstr "" +msgstr "range: Het bereik waar de waarden van opgehaald moet worden, als een tekenreeks." #. ojRBo #: sf_calc.xhp @@ -5459,7 +5459,7 @@ "par_id991611756492772\n" "help.text" msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic CDate builtin function. In Python scripts, use the CDate function from the Basic service." -msgstr "" +msgstr "Als een cel een datum bevat, wordt het getal dat daarmee overeenkomt geretourneerd. Om in een Basic-script een getal te converteren naar een datum, gebruik de Basic functie CDate. In Python-scripts, gebruik de functie CDate van de service Basic." #. YYMuH #: sf_calc.xhp @@ -5468,7 +5468,7 @@ "par_id771593685490395\n" "help.text" msgid "Imports the contents of a CSV-formatted text file and places it on a given destination cell." -msgstr "" +msgstr "Importeert de inhoud van een CSV-bestand en plaatst het in een aangegeven cel." #. cxrHr #: sf_calc.xhp @@ -5477,7 +5477,7 @@ "par_id751611756909199\n" "help.text" msgid "The destination area is cleared of all contents and formats before inserting the contents of the CSV file. The size of the modified area is fully determined by the contents of the input file." -msgstr "" +msgstr "De inhoud en opmaak van deze aangegeven cel wordt hierbij gewist. De grootte van de cel is afhankelijk van de inhoud van het invoerbestand." #. D2w2A #: sf_calc.xhp @@ -5486,7 +5486,7 @@ "par_id911593685490873\n" "help.text" msgid "The method returns a string representing the modified range of cells." -msgstr "" +msgstr "Deze methode retourneert een tekenreeks die staat voor het bereik van de gewijzigde cellen." #. GrquM #: sf_calc.xhp @@ -5495,7 +5495,7 @@ "par_id851593685490824\n" "help.text" msgid "filename: Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Geeft het te openen bestand aan. De notatie moet voldoen aan de normen van SF_FileSystem.FileNaming." #. VdTtY #: sf_calc.xhp @@ -5504,7 +5504,7 @@ "par_id641593685490936\n" "help.text" msgid "destinationcell: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered." -msgstr "" +msgstr "destinationcell: De cel waarin de inhoud van het bestand als een tekenreeks wordt geplaatst. Als hier een bereik wordt opgegeven, dan is de cel die gebruikt wordt, de cel linksboven in het bereik." #. BrTfu #: sf_calc.xhp @@ -5513,7 +5513,7 @@ "par_id641593685863838\n" "help.text" msgid "filteroptions: The arguments for the CSV input filter. The default filter makes following assumptions:" -msgstr "" +msgstr "filteroptions: De argumenten voor het CSV-invoerfilter. Bij het standaardfilter worden de volgende aannames gedaan:" #. Mb4c6 #: sf_calc.xhp @@ -5522,7 +5522,7 @@ "par_id661593686250471\n" "help.text" msgid "The input file encoding is UTF8." -msgstr "" +msgstr "De codering van het invoerbestand is UTF8." #. CEpDn #: sf_calc.xhp @@ -5531,7 +5531,7 @@ "par_id161593686260876\n" "help.text" msgid "The field separator is a comma, a semi-colon or a Tab character." -msgstr "" +msgstr "Het scheidingsteken is een komma, puntkomma of een Tab." #. CDfys #: sf_calc.xhp @@ -5540,7 +5540,7 @@ "par_id711593686274293\n" "help.text" msgid "The string delimiter is the double quote (\")." -msgstr "" +msgstr "Een tekenreeks staat tussen dubbele aanhalingstekens (\")." #. qowXx #: sf_calc.xhp @@ -5549,7 +5549,7 @@ "par_id171593686280838\n" "help.text" msgid "All lines are included." -msgstr "" +msgstr "Alle regels worden meegenomen." #. MBwZg #: sf_calc.xhp @@ -5558,7 +5558,7 @@ "par_id881593686287161\n" "help.text" msgid "Quoted strings are formatted as text." -msgstr "" +msgstr "Tekenreeksen worden geformatteerd als een tekst." #. bujFG #: sf_calc.xhp @@ -5567,7 +5567,7 @@ "par_id161593686293473\n" "help.text" msgid "Special numbers are detected." -msgstr "" +msgstr "Speciale getallen worden herkend." #. TYXKD #: sf_calc.xhp @@ -5576,7 +5576,7 @@ "par_id791593686300499\n" "help.text" msgid "All columns are presumed to be texts, except if recognized as valid numbers." -msgstr "" +msgstr "Van alle kolommen wordt aangenomen dat het een tekst is, behalve als het herkend wordt als een geldig getal." #. Byno7 #: sf_calc.xhp @@ -5585,7 +5585,7 @@ "par_id381593686307406\n" "help.text" msgid "The language is English/US, which implies that the decimal separator is \".\" and the thousands separator is \",\"." -msgstr "" +msgstr "De taal is Engels/VS, dit betekent dat een punt het decimaal scheidingsteken is en een komma het scheidingsteken bij duizendtallen." #. TX82d #: sf_calc.xhp @@ -5594,7 +5594,7 @@ "par_id531611757154931\n" "help.text" msgid "To learn more about the CSV Filter Options, refer to the Filter Options Wiki page." -msgstr "" +msgstr "Lees de Wiki voor een uitleg over de opties van het CSV-filter." #. vPPYx #: sf_calc.xhp @@ -5603,7 +5603,7 @@ "par_id881599568986824\n" "help.text" msgid "Imports the contents of a database table, query or resultset, i.e. the result of a SELECT SQL command, inserting it on a destination cell." -msgstr "" +msgstr "Importeert de inhoud dan een database-tabel, query of het resultaat van een SQL-commando, bijvoorbeeld een SELECT, dat in de cel 'destination' wordt geplaatst." #. DorV6 #: sf_calc.xhp @@ -5612,7 +5612,7 @@ "par_id81611763957509\n" "help.text" msgid "The destination area is cleared of all contents and formats before inserting the imported contents. The size of the modified area is fully determined by the contents in the table or query." -msgstr "" +msgstr "Het bereik van cellen waar het resultaat wordt geplaatst wordt eerst geleegd wat de inhoud en de opmaak betreft. Het aantal cellen dat hierbij gebruikt wordt is volledig afhankelijk van de inhoud van de tabel of de query." #. tfp3o #: sf_calc.xhp @@ -5621,7 +5621,7 @@ "par_id51599568986387\n" "help.text" msgid "The method returns True when the import was successful." -msgstr "" +msgstr "De methode retourneert True wanneer het importeren lukt." #. rgoAd #: sf_calc.xhp @@ -5630,7 +5630,7 @@ "par_id311599568986784\n" "help.text" msgid "filename: Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Geeft het te openen bestand aan. De notatie moet voldoen aan de normen van SF_FileSystem.FileNaming." #. j2J5e #: sf_calc.xhp @@ -5639,7 +5639,7 @@ "par_id711596555746281\n" "help.text" msgid "registrationname: The name to use to find the database in the databases register. This argument is ignored if a filename is provided." -msgstr "" +msgstr "registrationname: De naam die gebruikt moet worden om de database te vinden in het databases register. Dit argument wordt genegeerd als er een filename wordt meegegeven." #. 2hSHw #: sf_calc.xhp @@ -5648,7 +5648,7 @@ "par_id211599568986329\n" "help.text" msgid "destinationcell: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered." -msgstr "" +msgstr "destinationcell: De bestemming van de geïmporteerde gegevens. Als er een bereik wordt opgegeven, dan wordt alleen de cel linksboven gebruikt." #. aMfVw #: sf_calc.xhp @@ -5657,7 +5657,7 @@ "par_id451599489278429\n" "help.text" msgid "sqlcommand: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability." -msgstr "" +msgstr "sqlcommand: Een tabelnaam , een query-naam (zonder de omringende aanhalingstekens of vierkante haken) of een SELECT SQL-statement (waarbij de tabelnaam en de veldnamen omringt mogen worden met aanhalingstekens of vierkante haken, dit om de leesbaarheid te verbeteren)." #. wFpLr #: sf_calc.xhp @@ -5666,7 +5666,7 @@ "par_id271599489278141\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. Default is False. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Indien True, het SQL-commando wordt direct naar de database engine gestuurd zonder eerst geanalyseerd te worden. De standaardwaarde is False. Het argument wordt bij tabellen genegeerd. Bij queries, de gebruikte optie is de optie die gebruikt is bij de definitie van de query." #. toj8z #: sf_calc.xhp @@ -5675,7 +5675,7 @@ "par_id121591698472929\n" "help.text" msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets." -msgstr "" +msgstr "Voegt een leeg tabblad toe voor een bestaand tabblad of aan het eind." #. Xbm7k #: sf_calc.xhp @@ -5684,7 +5684,7 @@ "par_id941591698472748\n" "help.text" msgid "sheetname: The name of the new sheet." -msgstr "" +msgstr "sheetname: De naam van het nieuwe tabblad." #. XbXNM #: sf_calc.xhp @@ -5693,7 +5693,7 @@ "par_id84159169847269\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position." -msgstr "" +msgstr "beforesheet: De naam (tekenreeks) of index (numeriek, beginnend met 1) van het tabblad waar het nieuwe tabblad voor moet worden toegevoegd. Dit argument is optioneel, standaard wordt een nieuw tabblad achteraan toegevoegd." #. UCmit #: sf_calc.xhp @@ -5702,7 +5702,7 @@ "par_id241611764359510\n" "help.text" msgid "The following example inserts a new empty sheet named \"SheetX\" and places it before \"SheetY\":" -msgstr "" +msgstr "In dit voorbeeld wordt een tabblad \"SheetX\" toegevoegd voor tabblad \"SheetY\":" #. DcrWC #: sf_calc.xhp @@ -5711,7 +5711,7 @@ "par_id6415925694762\n" "help.text" msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Verplaatst een aangegeven bronbereik naar bestemmingsbereik van cellen. De methode retourneert een tekenreeks die het gewijzigde bereik van cellen aangeeft. De omvang van het gewijzigde gebied wordt volledig bepaald door de grootte van het bronbereik." #. UqxZv #: sf_calc.xhp @@ -5720,7 +5720,7 @@ "par_id571592569476332\n" "help.text" msgid "source: The source range of cells, as a string." -msgstr "" +msgstr "source: Het bronbereik van de cellen, als een tekenreeks." #. G6BSW #: sf_calc.xhp @@ -5729,7 +5729,7 @@ "par_id891592569476362\n" "help.text" msgid "destination: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination." -msgstr "" +msgstr "destination: De cel waar de gegevens in worden gezet, als een tekenreeks. Als hier een bereik wordt opgegeven, dan is de cel die gebruikt wordt, de cel linksboven in het bereik." #. NorEd #: sf_calc.xhp @@ -5738,7 +5738,7 @@ "par_id831591698903829\n" "help.text" msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets." -msgstr "" +msgstr "Verplaatst een bestaand tabblad en plaatst het voor een aangegeven tabblad of aan het eind." #. dgAxB #: sf_calc.xhp @@ -5747,7 +5747,7 @@ "par_id351591698903911\n" "help.text" msgid "sheetname: The name of the sheet to move. The sheet must exist or an exception is raised." -msgstr "" +msgstr "sheetname: De naam van het te verplaatsen tabblad. Het tabblad moet bestaan." #. fevuS #: sf_calc.xhp @@ -5756,7 +5756,7 @@ "par_id9159169890334\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position." -msgstr "" +msgstr "beforesheet: De naam (tekenreeks) of index (numeriek, beginnen met 1) van het tabblad waar het originele tabblad voor moet worden geplaatst. Dit argument is optioneel, standaard wordt het tabblad achteraan geplaatst." #. pd5t4 #: sf_calc.xhp @@ -5765,7 +5765,7 @@ "par_id951611766058734\n" "help.text" msgid "The example below moves the existing sheet \"SheetX\" and places it before \"SheetY\":" -msgstr "" +msgstr "Dit voorbeeld verplaatst het tabblad \"SheetX\" naar de plek voor tabblad \"SheetY\":" #. Q9iwN #: sf_calc.xhp @@ -5774,7 +5774,7 @@ "par_id51592233506371\n" "help.text" msgid "Returns a new range (as a string) offset by a certain number of rows and columns from a given range." -msgstr "" +msgstr "Retourneert een nieuw bereik (als een tekenreeks) offset bij een bepaald aantal rijen en kolommen van een gegeven bereik." #. VCUXL #: sf_calc.xhp @@ -5783,7 +5783,7 @@ "par_id61611768400376\n" "help.text" msgid "This method has the same behavior as the homonymous Calc's Offset function." -msgstr "" +msgstr "Deze methode is gelijkwaardig aan de Calc-functie Offset." #. G2oD2 #: sf_calc.xhp @@ -5792,7 +5792,7 @@ "par_id901592233506293\n" "help.text" msgid "reference: The range, as a string, that the method will use as reference to perform the offset operation." -msgstr "" +msgstr "reference: Het bereik, als een tekenreeks, dat de methode zal gebruiken als referentie voor het uitvoeren van de instructie offset." #. Ra7aW #: sf_calc.xhp @@ -5801,7 +5801,7 @@ "par_id781592234124856\n" "help.text" msgid "rows: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row." -msgstr "" +msgstr "rows: Het aantal rijen waar het initiële bereik is offset naar boven (negatieve waarde) of naar beneden (positieve waarde). Gebruik 0 (standaard) om in dezelfde rij te blijven." #. FvqjV #: sf_calc.xhp @@ -5810,7 +5810,7 @@ "par_id971592234138769\n" "help.text" msgid "columns: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column." -msgstr "" +msgstr "columns: Het aantal kolommen waar het initiële bereik is offset naar links (negatieve waarde) of naar rechts (positieve waarde). Gebruik 0 (standaard) om in dezelfde kolom te blijven." #. VzgGM #: sf_calc.xhp @@ -5819,7 +5819,7 @@ "par_id321592234150061\n" "help.text" msgid "height: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed." -msgstr "" +msgstr "height: De verticale hoogte voor een gebied dat begint op de positie van het nieuwe bereik. Laat dit argument weg als er geen verticale aanpassing nodig is." #. JxENN #: sf_calc.xhp @@ -5828,7 +5828,7 @@ "par_id271592234165247\n" "help.text" msgid "width: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed." -msgstr "" +msgstr "width: De horizontale breedte voor een gebied dat begint op de positie van het nieuwe bereik. Laat dit argument weg als er geen horizontale aanpassing nodig is." #. t9QDN #: sf_calc.xhp @@ -5837,7 +5837,7 @@ "par_id871592234172652\n" "help.text" msgid "Arguments rows and columns must not lead to zero or negative start row or column." -msgstr "" +msgstr "Argumenten rows en columns moeten niet betekenen dat de startrij of startkolom kleiner wordt dan 1." #. JAxEm #: sf_calc.xhp @@ -5846,7 +5846,7 @@ "par_id211592234180073\n" "help.text" msgid "Arguments height and width must not lead to zero or negative count of rows or columns." -msgstr "" +msgstr "Argumenten height en width moeten niet betekenen dat het aantal kolommen of rijen lager wordt dan 1." #. BkCDz #: sf_calc.xhp @@ -5855,7 +5855,7 @@ "bas_id651592234465732\n" "help.text" msgid "'SheetX.$C$3 (A1 moved by two rows and two columns down)" -msgstr "" +msgstr "'SheetX.$C$3 (A1 twee rijen naar rechts en twee kolommen naar beneden verplaatst)" #. 8ukCQ #: sf_calc.xhp @@ -5864,7 +5864,7 @@ "bas_id521592234478848\n" "help.text" msgid "'SheetX.$C$3:$H$7 (A1 offset by two rows and columns with width of 5 rows and 6 columns)" -msgstr "" +msgstr "'SheetX.$C$3:$H$7 (A1 offset van 2 rijen en kolommen en met een breedte van 5 rijen en 5 kolommen)" #. GwPQh #: sf_calc.xhp @@ -5873,7 +5873,7 @@ "par_id51592233506021\n" "help.text" msgid "Opens a non-modal dialog that can be used to select a range in the document and returns a string containing the selected range." -msgstr "" +msgstr "Opent een 'non-modal' dialoogvenster dat gebruikt kan worden om een bereik in het document te selecteren, het retourneert een tekenreeks met het geselecteerde bereik." #. CWn2A #: sf_calc.xhp @@ -5882,7 +5882,7 @@ "par_id301637936295380\n" "help.text" msgid "This method opens the same dialog that is used by %PRODUCTNAME when the Shrink button is pressed. For example, the Tools - Goal Seek dialog has a Shrink button to the right of the Formula cell field." -msgstr "" +msgstr "Deze methode opent hetzelfde dialoogvenster dat gebruikt wordt door %PRODUCTNAME wanneer de knop Verkleinen wordt ingedrukt. Het dialoogvenster Extra - Doel zoeken heeft bijvoorbeeld die knop rechts naast het veld Formulecel." #. XUoah #: sf_calc.xhp @@ -5891,7 +5891,7 @@ "par_id551637936545121\n" "help.text" msgid "This method does not change the current selection." -msgstr "" +msgstr "Deze methode wijzigt de huidige selectie niet." #. tAHiV #: sf_calc.xhp @@ -5900,7 +5900,7 @@ "par_id901592233506001\n" "help.text" msgid "title: The title of the dialog, as a string." -msgstr "" +msgstr "title: De titel van het dialoogvenster, als een tekenreeks." #. Yyn74 #: sf_calc.xhp @@ -5909,7 +5909,7 @@ "par_id781592234124502\n" "help.text" msgid "selection: An optional range that is initially selected when the dialog is displayed." -msgstr "" +msgstr "selection: Een optioneel bereik dat al is geselecteerd bij het tonen van het dialoogvenster." #. zo7VK #: sf_calc.xhp @@ -5918,7 +5918,7 @@ "par_id971592234138989\n" "help.text" msgid "singlecell: When True (default) only single-cell selection is allowed. When False range selection is allowed." -msgstr "" +msgstr "singlecell: Bij True (standaard) is alleen selectie van één cel toegestaan.Bij False is selectie van een bereik toegestaan." #. SqEWv #: sf_calc.xhp @@ -5927,7 +5927,7 @@ "par_id321592234150345\n" "help.text" msgid "closeafterselect: When True (default) the dialog is closed immediately after the selection is made. When False the user can change the selection as many times as needed and then manually close the dialog." -msgstr "" +msgstr "closeafterselect: Bij True (standaard) wordt het dialoogvenster direct gesloten nadat de selectie is gemaakt. Bij False kan de gebruiker de selectie een aantal keer heroverwegen en na selectie zelf het dialoogvenster sluiten." #. yDiCm #: sf_calc.xhp @@ -5936,7 +5936,7 @@ "par_id51592233503441\n" "help.text" msgid "Returns the input string after substituting its token characters by their values in a given range." -msgstr "" +msgstr "Retourneert de invoertekenreeks na het vervangen van de tokens door de waarden in een aangegeven bereik." #. Qu4DK #: sf_calc.xhp @@ -5945,7 +5945,7 @@ "par_id551637936596521\n" "help.text" msgid "This method does not change the current selection." -msgstr "" +msgstr "Deze methode wijzigt de huidige selectie niet." #. eEqCY #: sf_calc.xhp @@ -5954,7 +5954,7 @@ "par_id171637938442558\n" "help.text" msgid "This method can be used to quickly extract specific parts of a range name, such as the sheet name or first cell column and row, and use them to compose a new range address." -msgstr "" +msgstr "Deze methode kan gebruikt worden om snel een specifiek delen van een bereiknaam te bepalen, zoals de bladnaam, of de eerste kolom en rij en die gebruiken om een nieuw bereik samen te stellen." #. RAAVz #: sf_calc.xhp @@ -5963,7 +5963,7 @@ "par_id901592233506232\n" "help.text" msgid "inputstr: The string containing the tokens that will be replaced by the corresponding values in range." -msgstr "" +msgstr "inputstr: De tekenreeks met de tokens die vervangen zullen worden door de overeenkomende waarden in het bereik." #. NJdUy #: sf_calc.xhp @@ -5972,7 +5972,7 @@ "par_id781592234161102\n" "help.text" msgid "range: A RangeName from which values will be extracted. If it contains a sheet name, the sheet must exist." -msgstr "" +msgstr "range: Een BereikNaam waar de waarden uit worden gehaald. Als het een bladnaam bevat, dan moet dat blad bestaan." #. BgCCD #: sf_calc.xhp @@ -5981,7 +5981,7 @@ "par_id971592234102889\n" "help.text" msgid "tokencharacter: Character used to identify tokens. By default \"%\" is the token character. The following tokens are accepted:" -msgstr "" +msgstr "tokencharacter: Teken dat gebruikt wordt om aan te geven dat het een token is. Standaard is dat het teken \"%\". De volgende tokens worden geaccepteerd:" #. WTDwR #: sf_calc.xhp @@ -5990,7 +5990,7 @@ "par_id261637943912156\n" "help.text" msgid "%S - The sheet name containing the range, including single quotes when necessary." -msgstr "" +msgstr "%S - De bladnaam met het bereik, inclusief enkele aanhalingstekens als die nodig zijn." #. YHLeU #: sf_calc.xhp @@ -5999,7 +5999,7 @@ "par_id441637943912380\n" "help.text" msgid "%R1 - The row number of the top left cell of the range." -msgstr "" +msgstr "%R1 - Het nummer van de rij van de cel linksboven van het bereik." #. joJi7 #: sf_calc.xhp @@ -6008,7 +6008,7 @@ "par_id521637943912620\n" "help.text" msgid "%C1 - The column letter of the top left cell of the range." -msgstr "" +msgstr "%C1 - De letter van de kolom van de cel linksboven van het bereik." #. YAfmV #: sf_calc.xhp @@ -6017,7 +6017,7 @@ "par_id371637943912860\n" "help.text" msgid "%R2 - The row number of the bottom right cell of the range." -msgstr "" +msgstr "%R2 - Het nummer van de rij van de cel rechtsonder van het bereik." #. imuBD #: sf_calc.xhp @@ -6026,7 +6026,7 @@ "par_id291637943913116\n" "help.text" msgid "%C2 - The column letter of the bottom right cell of the range." -msgstr "" +msgstr "%C2 - De letter van de kolom van de cel rechtsonder van het bereik." #. gpmpG #: sf_calc.xhp @@ -6035,7 +6035,7 @@ "par_id941637943467476\n" "help.text" msgid "The example below extracts each element of the RangeName defined in sRange and uses them to compose a message." -msgstr "" +msgstr "In dit voorbeeld wordt elk element in de BereikNaam gedefinieerd in sRange opgehaald, en gebruikt om een bericht op te stellen." #. nbJ59 #: sf_calc.xhp @@ -6044,7 +6044,7 @@ "par_id241637944350648\n" "help.text" msgid "The Printf method can be combined with SetFormula to create formulas over multiple cells. For instance, consider a table with numeric values in the range \"A1:E10\" from which formulas are to be created to sum the values in each row and place the results in the range \"F1:F10\":" -msgstr "" +msgstr "De methode Printf kan samen met SetFormula worden gebruikt om formules over meerdere cellen aan te maken. Stel, er is een tabel met numerieke waarden in het bereik \"A1:E10\" waarvoor formules moeten worden gemaakt om de waarden per rij op te tellen en het resultaat te plaatsen in de cellen \"F1:F10\":" #. foAvd #: sf_calc.xhp @@ -6053,7 +6053,7 @@ "bas_id371637944971921\n" "help.text" msgid "' Note the use of the \"$\" character" -msgstr "" +msgstr "' Let op het gebruik van het teken \"$\"" #. wBpRw #: sf_calc.xhp @@ -6062,7 +6062,7 @@ "par_id156589200121138\n" "help.text" msgid "This method sends the contents of the given sheet to the default printer or to the printer defined by the SetPrinter method of the Document service." -msgstr "" +msgstr "Deze methode stuurt de inhoud van het aangegeven blad door naar de standaardprinter of de printer die is aangegeven met de methode SetPrinter van de service Document." #. BaDL9 #: sf_calc.xhp @@ -6071,7 +6071,7 @@ "par_id981611169416934\n" "help.text" msgid "Returns True if the sheet was successfully printed." -msgstr "" +msgstr "Retourneert True als het blad is afgedrukt." #. CnNEC #: sf_calc.xhp @@ -6080,7 +6080,7 @@ "par_id368519200121646\n" "help.text" msgid "sheetname: The sheet to print, default is the active sheet." -msgstr "" +msgstr "sheetname: Het blad dat afgedrukt moet worden, standaard het actieve blad." #. xk3k3 #: sf_calc.xhp @@ -6089,7 +6089,7 @@ "par_id211635436910093\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages." -msgstr "" +msgstr "pages: De af te drukken pagina's als een tekenreeks. Voorbeeld: \"1-4;10;15-18\". Standaard is alle pagina's." #. DBFDA #: sf_calc.xhp @@ -6098,7 +6098,7 @@ "par_id141635436912146\n" "help.text" msgid "copies: The number of copies. Default is 1." -msgstr "" +msgstr "copies: Het aantal afdrukken. Standaard is 1." #. C8abL #: sf_calc.xhp @@ -6107,7 +6107,7 @@ "par_id661591699085351\n" "help.text" msgid "Removes an existing sheet from the document." -msgstr "" +msgstr "Verwijdert een bestaand blad uit het document." #. dVxiA #: sf_calc.xhp @@ -6116,7 +6116,7 @@ "par_id331591699085330\n" "help.text" msgid "sheetname: The name of the sheet to remove." -msgstr "" +msgstr "sheetname: De naam van het te verwijderen blad." #. GwKHr #: sf_calc.xhp @@ -6125,7 +6125,7 @@ "par_id971591704316873\n" "help.text" msgid "Renames the given sheet and returns True if successful." -msgstr "" +msgstr "Wijzigt de naam van een gegeven blad en retourneert True als de naamswijziging lukt." #. ofAiN #: sf_calc.xhp @@ -6134,7 +6134,7 @@ "par_id161591704316337\n" "help.text" msgid "sheetname: The name of the sheet to rename." -msgstr "" +msgstr "sheetname: De naam van het blad dat een andere naam moet krijgen." #. JHEDe #: sf_calc.xhp @@ -6143,7 +6143,7 @@ "par_id931591704316998\n" "help.text" msgid "newname: the new name of the sheet. It must not exist yet." -msgstr "" +msgstr "newname: De nieuwe naam van het blad. Er mag geen blad zijn met die naam." #. bwtAA #: sf_calc.xhp @@ -6152,7 +6152,7 @@ "par_id351611775260443\n" "help.text" msgid "This example renames the active sheet to \"SheetY\":" -msgstr "" +msgstr "In dit voorbeeld wordt de naam het actieve blad gewijzigd in \"SheetY\":" #. qEM6N #: sf_calc.xhp @@ -6161,7 +6161,7 @@ "par_id191592745582983\n" "help.text" msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input value argument. Vectors are always expanded vertically." -msgstr "" +msgstr "Slaat de gegeven waarde op vanaf een gespecificeerde doelcel. Het bijgewerkte gebied breidt zichzelf uit vanuit de doelcel of vanuit de linkerbovenhoek van het opgegeven bereik om plaats te bieden aan de grootte van het invoerargument value. Vectoren worden altijd verticaal uitgevouwen." #. tm6AR #: sf_calc.xhp @@ -6170,7 +6170,7 @@ "par_id671592745582573\n" "help.text" msgid "The method returns a string representing the modified area as a range of cells." -msgstr "" +msgstr "De methode retourneert een tekenreeks die het gewijzigde gebied weergeeft als een celbereik." #. FAuKq #: sf_calc.xhp @@ -6179,7 +6179,7 @@ "par_id801592745582116\n" "help.text" msgid "targetcell: The cell or a range as a string from where to start to store the given value." -msgstr "" +msgstr "targetcell: De cel of een bereik als een tekenreeks van waaruit de opgegeven waarde moet worden opgeslagen." #. aK7EZ #: sf_calc.xhp @@ -6188,7 +6188,7 @@ "par_id321592745582192\n" "help.text" msgid "value: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if targetcell is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied." -msgstr "" +msgstr "value: Een scalair, een vector of een matrix (in Python, een- of tweedimensionale lijsten en tupels) met de nieuwe waarden die moeten worden opgeslagen vanuit de doelcel of vanuit de linkerbovenhoek van het bereik als targetcell is een bereik. De nieuwe waarden moeten strings, numerieke waarden of datums zijn. Andere typen zorgen ervoor dat de bijbehorende cellen worden geleegd." #. 7BCXQ #: sf_calc.xhp @@ -6197,7 +6197,7 @@ "par_id331611776151376\n" "help.text" msgid "The following example uses the builtin DimArray function to create an array and then store it in cell \"A1\":" -msgstr "" +msgstr "Het volgende voorbeeld gebruikt de ingebouwde functie DimArray om een matrix te maken en deze vervolgens op te slaan in cel \"A1\":" #. fZfKc #: sf_calc.xhp @@ -6206,7 +6206,7 @@ "par_id601611775600983\n" "help.text" msgid "This example uses the RangeInit method of the ScriptForge Array service to create an array with values that are then stored from cell \"A1\" and downwards." -msgstr "" +msgstr "Dit voorbeeld gebruikt de RangeInit-methode van de ScriptForge Array-service om een matrix met waarden die vervolgens worden opgeslagen vanaf cel \"A1\" en naar beneden." #. kmatN #: sf_calc.xhp @@ -6215,7 +6215,7 @@ "bas_id251592745582536\n" "help.text" msgid "'Fill 1st column with values from 1 to 1000" -msgstr "" +msgstr "'Vul 1e kolom met waarden van 1 tot 1000" #. YNGtV #: sf_calc.xhp @@ -6224,7 +6224,7 @@ "par_id291592905671530\n" "help.text" msgid "To dump the full contents of an array in a sheet, use SetArray. To dump the contents of an array only within the boundaries of the targeted range of cells, use SetValue." -msgstr "" +msgstr "Gebruik SetArray om de volledige inhoud van een matrix in een blad te dumpen. Gebruik SetValue om de inhoud van een matrix alleen binnen de grenzen van het beoogde celbereik te dumpen." #. ecovS #: sf_calc.xhp @@ -6233,7 +6233,7 @@ "par_id601592231799489\n" "help.text" msgid "Stores the given value in the specified range. The size of the modified area is equal to the size of the target range." -msgstr "" +msgstr "Slaat de gegeven waarde op in het opgegeven bereik. De grootte van het gewijzigde gebied is gelijk aan de grootte van het doelbereik." #. PeoKo #: sf_calc.xhp @@ -6242,7 +6242,7 @@ "par_id1001592233389953\n" "help.text" msgid "The method returns a string representing the modified area as a range of cells." -msgstr "" +msgstr "De methode retourneert een tekenreeks die het gewijzigde gebied weergeeft als een celbereik." #. xYrHQ #: sf_calc.xhp @@ -6251,7 +6251,7 @@ "par_id361592231799255\n" "help.text" msgid "targetrange: The range where to store the given value, as a string." -msgstr "" +msgstr "targetrange: Het bereik waar de gegeven waarde moet worden opgeslagen, als een tekenreeks." #. dydXF #: sf_calc.xhp @@ -6260,7 +6260,7 @@ "par_id461592232081985\n" "help.text" msgid "value: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied." -msgstr "" +msgstr "value: Een scalair, een vector of een matrix met de nieuwe waarden voor elke cel van het bereik. De nieuwe waarden moeten tekenreeksen, numerieke waarden of datums zijn. Andere typen zorgen ervoor dat de bijbehorende cellen worden geleegd." #. CgwVF #: sf_calc.xhp @@ -6269,7 +6269,7 @@ "par_id841592745785192\n" "help.text" msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of value is smaller than the size of targetrange, then the remaining cells will be emptied." -msgstr "" +msgstr "Het volledige assortiment wordt bijgewerkt en de rest van het blad blijft ongewijzigd. Als de grootte van value kleiner is dan de grootte van targetrange, worden de resterende cellen geleegd." #. QFkLr #: sf_calc.xhp @@ -6278,7 +6278,7 @@ "par_id191611776838396\n" "help.text" msgid "If the size of value is larger than the size of targetrange, then value is only partially copied until it fills the size of targetrange." -msgstr "" +msgstr "Als de grootte van value groter is dan de grootte van targetrange, dan wordt value slechts gedeeltelijk gekopieerd totdat het de grootte van targetrange vult." #. ykBk6 #: sf_calc.xhp @@ -6287,7 +6287,7 @@ "par_id71611776941663\n" "help.text" msgid "Vectors are expanded vertically, except if targetrange has a height of exactly 1 row." -msgstr "" +msgstr "Vectoren worden verticaal uitgevouwen, behalve als targetrange een hoogte heeft van exact 1 rij." #. FJCPf #: sf_calc.xhp @@ -6296,7 +6296,7 @@ "bas_id541592232948567\n" "help.text" msgid "'Below the Value array is smaller than the TargetRange (remaining cells are emptied)" -msgstr "" +msgstr "'De matrix Value-array is kleiner dan de TargetRange (resterende cellen worden leeggemaakt)" #. vuu9B #: sf_calc.xhp @@ -6305,7 +6305,7 @@ "bas_id541592232948825\n" "help.text" msgid "'Below the Value and TargetRange have the same size" -msgstr "" +msgstr "'Below the Value en TargetRange hebben dezelfde grootte" #. 4LFnH #: sf_calc.xhp @@ -6314,7 +6314,7 @@ "par_id731621689592755\n" "help.text" msgid "If you want to fill a single row with values, you can use the Offset function. In the example below, consider that arrData is a one-dimensional array:" -msgstr "" +msgstr "Als u een enkele rij met waarden wilt vullen, kunt u de functie Offset gebruiken. Houd er in het onderstaande voorbeeld rekening mee dat arrData een eendimensionale matrix is:" #. g8mER #: sf_calc.xhp @@ -6323,7 +6323,7 @@ "par_id521595767687154\n" "help.text" msgid "Applies the specified cell style to the given target range. The full range is updated and the remainder of the sheet is left untouched. If the cell style does not exist, an error is raised." -msgstr "" +msgstr "Past de opgegeven celstijl toe op het opgegeven doelbereik. Het volledige assortiment wordt bijgewerkt en de rest van het blad blijft onaangeroerd. Als de celstijl niet bestaat, wordt er een fout gegenereerd." #. nxDCd #: sf_calc.xhp @@ -6332,7 +6332,7 @@ "par_id70159576768715\n" "help.text" msgid "The method returns a string representing the modified area as a range of cells." -msgstr "" +msgstr "De methode retourneert een tekenreeks die het gewijzigde gebied weergeeft als een celbereik." #. FtFpL #: sf_calc.xhp @@ -6341,7 +6341,7 @@ "par_id22159576768782\n" "help.text" msgid "targetrange: The range to which the style will be applied, as a string." -msgstr "" +msgstr "targetrange: Het bereik waarop de stijl wordt toegepast, als een tekenreeks." #. aAGcy #: sf_calc.xhp @@ -6350,7 +6350,7 @@ "par_id181595767687247\n" "help.text" msgid "style: The name of the cell style to apply." -msgstr "" +msgstr "style: De naam van de celstijl die moet worden toegepast." #. DCAWV #: sf_calc.xhp @@ -6359,7 +6359,7 @@ "par_id481593880376480\n" "help.text" msgid "Inserts the given (array of) formula(s) in the specified range. The size of the modified area is equal to the size of the range." -msgstr "" +msgstr "Voegt de gegeven (matrix van) formule(s) in het opgegeven bereik in. De grootte van het gewijzigde gebied is gelijk aan de grootte van het bereik." #. d8CAU #: sf_calc.xhp @@ -6368,7 +6368,7 @@ "par_id711593880376106\n" "help.text" msgid "The method returns a string representing the modified area as a range of cells." -msgstr "" +msgstr "De methode retourneert een tekenreeks die het gewijzigde gebied weergeeft als een celbereik." #. F5XDi #: sf_calc.xhp @@ -6377,7 +6377,7 @@ "par_id891593880376776\n" "help.text" msgid "targetrange: The range to insert the formulas, as a string." -msgstr "" +msgstr "targetrange: Het bereik om de formules in te voegen, als een tekenreeks." #. A2UQF #: sf_calc.xhp @@ -6386,7 +6386,7 @@ "par_id941593880376500\n" "help.text" msgid "formula: A string, a vector or an array of strings with the new formulas for each cell in the target range." -msgstr "" +msgstr "formula: Een tekenreeks, een vector of een matrix van tekenreeksen met de nieuwe formules voor elke cel in het doelbereik." #. 746E8 #: sf_calc.xhp @@ -6395,7 +6395,7 @@ "par_id551593880376513\n" "help.text" msgid "The full range is updated and the remainder of the sheet is left unchanged." -msgstr "" +msgstr "Het volledige bereik wordt bijgewerkt en de rest van het blad blijft ongewijzigd." #. Wot7x #: sf_calc.xhp @@ -6404,7 +6404,7 @@ "par_id811593880756356\n" "help.text" msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references." -msgstr "" +msgstr "Als de gegeven formule een tekenreeks is, wordt de unieke formule over het hele bereik geplakt met aanpassing van de relatieve referenties." #. zr47n #: sf_calc.xhp @@ -6413,7 +6413,7 @@ "par_id491593880857823\n" "help.text" msgid "If the size of formula is smaller than the size of targetrange, then the remaining cells are emptied." -msgstr "" +msgstr "Als de grootte van formula kleiner is dan de grootte van targetrange, worden de resterende cellen geleegd." #. LwoGL #: sf_calc.xhp @@ -6422,7 +6422,7 @@ "par_id701611778103306\n" "help.text" msgid "If the size of formula is larger than the size of targetrange, then the formulas are only partially copied until it fills the size of targetrange." -msgstr "" +msgstr "Als de grootte van formula groter is dan de grootte van targetrange, dan worden de formules slechts gedeeltelijk gekopieerd totdat het de grootte van targetrange vult." #. GQC3N #: sf_calc.xhp @@ -6431,7 +6431,7 @@ "par_id761611777946581\n" "help.text" msgid "Vectors are always expanded vertically, except if targetrange has a height of exactly 1 row." -msgstr "" +msgstr "Vectoren worden altijd verticaal uitgevouwen, behalve als targetrange een hoogte heeft van exact 1 rij." #. rNEEY #: sf_calc.xhp @@ -6440,7 +6440,7 @@ "bas_id681593880376489\n" "help.text" msgid "'Horizontal vector, partially empty" -msgstr "" +msgstr "'Horizontale vector, gedeeltelijk leeg" #. 52GZX #: sf_calc.xhp @@ -6449,7 +6449,7 @@ "bas_id961593881331390\n" "help.text" msgid "'D2 contains the formula \"=H2\"" -msgstr "" +msgstr "'D2 bevat de formule \"=H2\"" #. gF7Gb #: sf_calc.xhp @@ -6458,7 +6458,7 @@ "par_id481593880373070\n" "help.text" msgid "Moves a given range of cells downwards by inserting empty rows. The current selection is not affected." -msgstr "" +msgstr "Verplaatst een bepaald cellenbereik naar beneden door lege rijen in te voegen. De huidige selectie wordt niet beïnvloed." #. VTxxB #: sf_calc.xhp @@ -6467,7 +6467,7 @@ "par_id801637929435655\n" "help.text" msgid "Depending on the value of the wholerows argument the inserted rows can either span the width of the specified range or span all columns in the row." -msgstr "" +msgstr "Afhankelijk van de waarde van het argument wholerows kunnen de ingevoegde rijen de breedte van het opgegeven bereik beslaan of alle kolommen in de rij beslaan." #. uvH4j #: sf_calc.xhp @@ -6476,7 +6476,7 @@ "par_id711593880370247\n" "help.text" msgid "This method returns a string representing the new location of the initial range." -msgstr "" +msgstr "Deze methode retourneert een tekenreeks die de nieuwe locatie van het initiële bereik vertegenwoordigt." #. cvqws #: sf_calc.xhp @@ -6485,7 +6485,7 @@ "par_id811637929284110\n" "help.text" msgid "If the shifted range exceeds the sheet edges, then nothing happens." -msgstr "" +msgstr "Als het verschoven bereik de bladranden overschrijdt, gebeurt er niets." #. bUdZp #: sf_calc.xhp @@ -6494,7 +6494,7 @@ "par_id891593880376123\n" "help.text" msgid "range: The range above which rows will be inserted, as a string." -msgstr "" +msgstr "range: Het bereik waarboven rijen worden ingevoegd, als een tekenreeks." #. fVYpB #: sf_calc.xhp @@ -6503,7 +6503,7 @@ "par_id941593880376566\n" "help.text" msgid "wholerow: If set to False (default), then the width of the inserted rows will be the same as the width of the specified range. Otherwise, the inserted row will span all columns in the sheet." -msgstr "" +msgstr "wholerowj: indien ingesteld op False (standaard), dan is de breedte van de ingevoegde rijen hetzelfde als de breedte van het opgegeven range. Anders beslaat de ingevoegde rij alle kolommen in het blad." #. rXzZX #: sf_calc.xhp @@ -6512,7 +6512,7 @@ "par_id551593880373045\n" "help.text" msgid "rows: The number of rows to be inserted. The default value is the height of the original range. The number of rows must be a positive number." -msgstr "" +msgstr "rows: Het aantal in te voegen rijen. De standaardwaarde is de hoogte van het oorspronkelijke range. Het aantal rijen moet een positief getal zijn." #. dacHK #: sf_calc.xhp @@ -6521,7 +6521,7 @@ "bas_id881637931053547\n" "help.text" msgid "' Moves the range \"A3:D3\" down by one row; affects only columns A to D" -msgstr "" +msgstr "' Verplaatst het bereik \"A3:D3\" één rij omlaag; beïnvloedt alleen de kolommen A tot D" #. v4w3P #: sf_calc.xhp @@ -6530,7 +6530,7 @@ "bas_id661637931232893\n" "help.text" msgid "' The inserted row spans all columns in the sheet" -msgstr "" +msgstr "' De ingevoegde rij beslaat alle kolommen in het blad" #. vsryg #: sf_calc.xhp @@ -6539,7 +6539,7 @@ "bas_id291637931053897\n" "help.text" msgid "' Moves the range \"A3:D3\" down by five rows" -msgstr "" +msgstr "' Verplaatst het bereik \"A3:D3\" vijf rijen naar beneden" #. pwuUG #: sf_calc.xhp @@ -6548,7 +6548,7 @@ "bas_id501638218784265\n" "help.text" msgid "' Moves the range \"A3:D10\" down by two rows and shows the new location of the original range" -msgstr "" +msgstr "' Verplaatst het bereik \"A3:D10\" twee rijen naar beneden en toont de nieuwe locatie van het oorspronkelijke bereik" #. hVfv3 #: sf_calc.xhp @@ -6557,7 +6557,7 @@ "par_id481593880376255\n" "help.text" msgid "Deletes the leftmost columns of a given range and moves to the left all cells to the right of the affected range. The current selection is not affected." -msgstr "" +msgstr "Verwijdert de meest linkse kolommen van een bepaald bereik en verplaatst naar links alle cellen rechts van het betreffende bereik. De huidige selectie wordt niet beïnvloed." #. iawBn #: sf_calc.xhp @@ -6566,7 +6566,7 @@ "par_id801637929460261\n" "help.text" msgid "Depending on the value of the wholecolumns argument the deleted columns can either span the height of the specified range or span all rows in the column." -msgstr "" +msgstr "Afhankelijk van de waarde van het argument wholecolumns kunnen de verwijderde kolommen de hoogte van het opgegeven bereik beslaan of alle rijen in de kolom beslaan." #. BXEkG #: sf_calc.xhp @@ -6575,7 +6575,7 @@ "par_id711593880371259\n" "help.text" msgid "This method returns a string representing the location of the remaining portion of the initial range. If all cells in the original range have been deleted, then an empty string is returned." -msgstr "" +msgstr "Deze methode retourneert een tekenreeks die de locatie van het resterende deel van het initiële bereik vertegenwoordigt. Als alle cellen in het oorspronkelijke bereik zijn verwijderd, wordt een lege tekenreeks geretourneerd." #. CyRpL #: sf_calc.xhp @@ -6584,7 +6584,7 @@ "par_id891593880376205\n" "help.text" msgid "range: The range from which cells will be deleted, as a string." -msgstr "" +msgstr "range: Het bereik waaruit cellen worden verwijderd, als een tekenreeks." #. zWG3Y #: sf_calc.xhp @@ -6593,7 +6593,7 @@ "par_id941593880356026\n" "help.text" msgid "wholecolumn: If set to False (default), then the height of the deleted columns will be the same as the height of the specified range. Otherwise, the deleted columns will span all rows in the sheet." -msgstr "" +msgstr "wholecolumn: Indien ingesteld op False (standaard), dan is de hoogte van de verwijderde kolommen hetzelfde als de hoogte van het opgegeven range. Anders beslaan de verwijderde kolommen alle rijen in het blad." #. JLdBr #: sf_calc.xhp @@ -6602,7 +6602,7 @@ "par_id551593880373306\n" "help.text" msgid "columns: The number of columns to be deleted from the specified range. The default value is the width of the original range, which is also the maximum value of this argument." -msgstr "" +msgstr "columns: Het aantal kolommen dat moet worden verwijderd uit het opgegeven range. De standaardwaarde is de breedte van het oorspronkelijke range, wat ook de maximale waarde van dit argument is." #. 8UycD #: sf_calc.xhp @@ -6611,7 +6611,7 @@ "bas_id881637931064919\n" "help.text" msgid "' Deletes the range \"B3:B6\"; moves left all cells to the right" -msgstr "" +msgstr "' Verwijdert het bereik \"B3:B6\"; verplaatst alle resterende cellen naar rechts" #. vM8hB #: sf_calc.xhp @@ -6620,7 +6620,7 @@ "bas_id291637931056991\n" "help.text" msgid "' Deletes the first column in the range \"A3:D6\"" -msgstr "" +msgstr "' Verwijdert de eerste kolom in het bereik \"A3:D6\"" #. FPVSg #: sf_calc.xhp @@ -6629,7 +6629,7 @@ "bas_id661637931232569\n" "help.text" msgid "' The deleted columns (A to D) spans all rows in the sheet" -msgstr "" +msgstr "' De verwijderde kolommen (A tot D) beslaan alle rijen in het blad" #. TAB2b #: sf_calc.xhp @@ -6638,7 +6638,7 @@ "par_id481593880373529\n" "help.text" msgid "Deletes the topmost rows of a given range and moves upwards all cells below the affected range. The current selection is not affected." -msgstr "" +msgstr "Verwijdert de bovenste rijen van een bepaald bereik en verplaatst alle cellen onder het betreffende bereik naar boven. De huidige selectie wordt niet beïnvloed." #. kb5h3 #: sf_calc.xhp @@ -6647,7 +6647,7 @@ "par_id801637929435361\n" "help.text" msgid "Depending on the value of the wholerows argument the deleted rows can either span the width of the specified range or span all columns in the row." -msgstr "" +msgstr "Afhankelijk van de waarde van het argument wholerows kunnen de verwijderde rijen de breedte van het opgegeven bereik beslaan of alle kolommen in de rij beslaan." #. s9Nfb #: sf_calc.xhp @@ -6656,7 +6656,7 @@ "par_id711593880370299\n" "help.text" msgid "This method returns a string representing the location of the remaining portion of the initial range. If all cells in the original range have been deleted, then an empty string is returned." -msgstr "" +msgstr "Deze methode retourneert een tekenreeks die de locatie van het resterende deel van het initiële bereik vertegenwoordigt. Als alle cellen in het oorspronkelijke bereik zijn verwijderd, wordt een lege tekenreeks geretourneerd." #. H5EtV #: sf_calc.xhp @@ -6665,7 +6665,7 @@ "par_id891593880376583\n" "help.text" msgid "range: The range from which cells will be deleted, as a string." -msgstr "" +msgstr "range: Het bereik waaruit cellen worden verwijderd, als een tekenreeks." #. JQtGb #: sf_calc.xhp @@ -6674,7 +6674,7 @@ "par_id941593880300966\n" "help.text" msgid "wholerow: If set to False (default), then the width of the deleted rows will be the same as the width of the specified range. Otherwise, the deleted row will span all columns in the sheet." -msgstr "" +msgstr "wholerow: Indien ingesteld op False (standaard), dan is de breedte van de verwijderde rijen hetzelfde als de breedte van het opgegeven range. Anders beslaat de verwijderde rij alle kolommen in het blad." #. ueo8E #: sf_calc.xhp @@ -6683,7 +6683,7 @@ "par_id551593880373265\n" "help.text" msgid "rows: The number of rows to be deleted from the specified range. The default value is the height of the original range, which is also the maximum value of this argument." -msgstr "" +msgstr "rows: Het aantal rijen dat moet worden verwijderd uit het opgegeven range. De standaardwaarde is de hoogte van het oorspronkelijke range, wat ook de maximale waarde van dit argument is." #. jHP9x #: sf_calc.xhp @@ -6692,7 +6692,7 @@ "bas_id881637931064667\n" "help.text" msgid "' Deletes the range \"A3:D3\"; moves all cells below it by one row up" -msgstr "" +msgstr "' Verwijdert het bereik \"A3:D3\"; verplaatst alle cellen eronder een rij omhoog" #. Make5 #: sf_calc.xhp @@ -6701,7 +6701,7 @@ "bas_id291637931056647\n" "help.text" msgid "' Deletes the first row in the range \"A3:D6\"" -msgstr "" +msgstr "' Verwijdert de eerste rij in het bereik \"A3:D6\"" #. APQKA #: sf_calc.xhp @@ -6710,7 +6710,7 @@ "bas_id661637931232493\n" "help.text" msgid "' The deleted rows spans all columns in the sheet" -msgstr "" +msgstr "' De verwijderde rijen beslaan alle kolommen in het blad" #. gKkbB #: sf_calc.xhp @@ -6719,7 +6719,7 @@ "par_id481593880372568\n" "help.text" msgid "Moves a given range of cells to the right by inserting empty columns. The current selection is not affected." -msgstr "" +msgstr "Verplaatst een bepaald celbereik naar rechts door lege kolommen in te voegen. De huidige selectie wordt niet beïnvloed." #. RxvcF #: sf_calc.xhp @@ -6728,7 +6728,7 @@ "par_id801637929335255\n" "help.text" msgid "Depending on the value of the wholecolumns argument the inserted columns can either span the height of the specified range or span all rows in the column." -msgstr "" +msgstr "Afhankelijk van de waarde van het argument wholecolumns kunnen de ingevoegde kolommen de hoogte van het opgegeven bereik beslaan of alle rijen in de kolom beslaan." #. Fh33o #: sf_calc.xhp @@ -6737,7 +6737,7 @@ "par_id711593880372560\n" "help.text" msgid "This method returns a string representing the new location of the initial range." -msgstr "" +msgstr "Deze methode retourneert een tekenreeks die de nieuwe locatie van het initiële bereik vertegenwoordigt." #. pLAHD #: sf_calc.xhp @@ -6746,7 +6746,7 @@ "par_id811637929283210\n" "help.text" msgid "If the shifted range exceeds the sheet edges, then nothing happens." -msgstr "" +msgstr "Als het verschoven bereik de bladranden overschrijdt, gebeurt er niets." #. SeAGD #: sf_calc.xhp @@ -6755,7 +6755,7 @@ "par_id891593880370543\n" "help.text" msgid "range: The range which will have empty columns inserted to its left, as a string." -msgstr "" +msgstr "range: Het bereik met lege kolommen aan de linkerkant, als een tekenreeks." #. KtD6Y #: sf_calc.xhp @@ -6764,7 +6764,7 @@ "par_id941593880373316\n" "help.text" msgid "wholecolumn: If set to False (default), then the height of the inserted columns will be the same as the height of the specified range. Otherwise, the inserted columns will span all rows in the sheet." -msgstr "" +msgstr "wholecolumn: Indien ingesteld op False (standaard), dan is de hoogte van de ingevoegde kolommen hetzelfde als de hoogte van het opgegeven range. Anders zullen de ingevoegde kolommen alle rijen in het blad omspannen." #. fBzCG #: sf_calc.xhp @@ -6773,7 +6773,7 @@ "par_id5515938803791960\n" "help.text" msgid "columns: The number of columns to be inserted. The default value is the width of the original range." -msgstr "" +msgstr "columns: Het aantal kolommen dat moet worden ingevoegd. De standaardwaarde is de breedte van de oorspronkelijke range." #. nmXTU #: sf_calc.xhp @@ -6782,7 +6782,7 @@ "bas_id881637931052587\n" "help.text" msgid "' Moves the range \"A3:A6\" right by one column; affects only rows 3 to 6" -msgstr "" +msgstr "' Verplaatst het bereik \"A3:A6\" één kolom naar rechts; beïnvloedt alleen rijen 3 tot 6" #. 5mWBq #: sf_calc.xhp @@ -6791,7 +6791,7 @@ "bas_id291637931053225\n" "help.text" msgid "' Moves the range \"A3:A6\" right by five columns" -msgstr "" +msgstr "' Verplaatst het bereik \"A3:A6\" vijf kolommen naar rechts" #. G53xT #: sf_calc.xhp @@ -6800,7 +6800,7 @@ "bas_id661637931232548\n" "help.text" msgid "' The inserted column spans all rows in the sheet" -msgstr "" +msgstr "' De ingevoegde kolom beslaat alle rijen in het blad" #. FrC59 #: sf_calc.xhp @@ -6809,7 +6809,7 @@ "par_id141595692394382\n" "help.text" msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Sorteert het opgegeven bereik op basis van maximaal 3 kolommen/rijen. De sorteervolgorde kan per kolom/rij verschillen. Het retourneert een tekenreeks die het gewijzigde celbereik vertegenwoordigt. De grootte van het gewijzigde gebied wordt volledig bepaald door de grootte van het brongebied." #. MVGBC #: sf_calc.xhp @@ -6818,7 +6818,7 @@ "par_id171595692394598\n" "help.text" msgid "range: The range to be sorted, as a string." -msgstr "" +msgstr "range: Het bereik dat moet worden gesorteerd, als een tekenreeks." #. aenrK #: sf_calc.xhp @@ -6827,7 +6827,7 @@ "par_id171595692814163\n" "help.text" msgid "sortkeys: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3." -msgstr "" +msgstr "sortkeys: Een scalaire waarde (indien 1 kolom/rij) of een matrix van kolom-/rijnummers beginnend bij 1. Het maximum aantal sleutels is 3." #. aQF93 #: sf_calc.xhp @@ -6836,7 +6836,7 @@ "par_id421595692962095\n" "help.text" msgid "sortorder: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in sortkeys. If the sortorder array is shorter than sortkeys, the remaining keys are sorted in ascending order." -msgstr "" +msgstr "sortorder: Een scalaire waarde of een reeks tekenreeksen met de waarden \"ASC\" (oplopend), \"DESC\" (aflopend) of \"\" (standaard oplopend). Elk item is gekoppeld aan het corresponderende item in sortkeys. Als de matrix sortorder korter is dan sortkeys, worden de overige sleutels in oplopende volgorde gesorteerd." #. GVpuf #: sf_calc.xhp @@ -6845,7 +6845,7 @@ "par_id361595692394604\n" "help.text" msgid "destinationcell: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten." -msgstr "" +msgstr "destinationcell: De doelcel van het gesorteerde celbereik, als een tekenreeks. Als een bereik is opgegeven, wordt alleen de cel linksboven in aanmerking genomen. Standaard wordt het bronbereik overschreven." #. QyaTf #: sf_calc.xhp @@ -6854,7 +6854,7 @@ "par_id441595693011034\n" "help.text" msgid "containsheader: When True, the first row/column is not sorted." -msgstr "" +msgstr "containsheader: Als dit True is, wordt de eerste rij/kolom niet gesorteerd." #. AbVtY #: sf_calc.xhp @@ -6872,7 +6872,7 @@ "par_id1001595693326226\n" "help.text" msgid "sortcolumns: When True, the columns are sorted from left to right. Default = False : rows are sorted from top to bottom." -msgstr "" +msgstr "sortcolumns: Indien True, worden de kolommen van links naar rechts gesorteerd. Standaard = False: rijen worden van boven naar beneden gesorteerd." #. LvjpD #: sf_calc.xhp @@ -6881,7 +6881,7 @@ "bas_id641595692394484\n" "help.text" msgid "'Sort range based on columns A (ascending) and C (descending)" -msgstr "" +msgstr "'Sorteerbereik op basis van kolommen A (oplopend) en C (aflopend)" #. rGNeZ #: sf_chart.xhp @@ -6890,7 +6890,7 @@ "tit\n" "help.text" msgid "ScriptForge.Chart service" -msgstr "" +msgstr "Service ScriptForge.Chart" #. UFBLD #: sf_chart.xhp @@ -6899,7 +6899,7 @@ "bm_id681600788076499\n" "help.text" msgid "ScriptForge.Chart service" -msgstr "" +msgstr "Service ScriptForge.Chart" #. nPHDK #: sf_chart.xhp @@ -6908,7 +6908,7 @@ "par_id181600788076612\n" "help.text" msgid "The Chart service provides a set of properties and methods to handle charts in Calc documents. With this service it is possible to:" -msgstr "" +msgstr "De service Chart heeft een aantal eigenschappen en methoden voor het werken met diagrammen in Calc.Met deze methode is het mogelijk om:" #. uEEEZ #: sf_chart.xhp @@ -6917,7 +6917,7 @@ "par_id301600788076785\n" "help.text" msgid "Access chart objects in Calc documents and manipulate their properties." -msgstr "" +msgstr "Diagram-objecten in Calc-documenten te benaderen en de eigenschappen ervan te wijzigen." #. rzioM #: sf_chart.xhp @@ -6926,7 +6926,7 @@ "par_id1001600788076848\n" "help.text" msgid "Create and insert new charts into a Calc document." -msgstr "" +msgstr "Diagrammen toe te voegen in een Calc-document." #. grjQS #: sf_chart.xhp @@ -6935,7 +6935,7 @@ "par_id67160078807676\n" "help.text" msgid "Export charts as image files." -msgstr "" +msgstr "Diagrammen als afbeelding te exporteren." #. mZuuF #: sf_chart.xhp @@ -6944,7 +6944,7 @@ "hd_id331635273472588\n" "help.text" msgid "Chart names" -msgstr "" +msgstr "Diagramnaam" #. QPAjE #: sf_chart.xhp @@ -6953,7 +6953,7 @@ "par_id251635273489315\n" "help.text" msgid "Charts may have two different names:" -msgstr "" +msgstr "Een diagram kan twee verschillende namen hebben:" #. GdHpK #: sf_chart.xhp @@ -6962,7 +6962,7 @@ "par_id41635273536840\n" "help.text" msgid "An internal name given by %PRODUCTNAME as soon as the chart object is created (usually \"Object 1\", \"Object 2\" and so on)." -msgstr "" +msgstr "Een interne naam die toegekend wordt door %PRODUCTNAME bij het aanmaken van het object (meestal \"Object 1\", \"Object 2\", ...)." #. 3zCYQ #: sf_chart.xhp @@ -6971,7 +6971,7 @@ "par_id641635273537122\n" "help.text" msgid "A user-defined name, which can be defined by right-clicking the chart and choosing Name in the context menu." -msgstr "" +msgstr "Een door de gebruiker toegekende naam, met rechtsklikken op het object kan de Naam worden bepaald." #. 6CV3D #: sf_chart.xhp @@ -6980,7 +6980,7 @@ "par_id191635273980553\n" "help.text" msgid "The Chart service primarily uses the user-defined name to access a chart object. If it does not exist, than the internal name is used." -msgstr "" +msgstr "De service Chart gebruikt de door de gebruiker gedefinieerde naam. Als die er niet is, wordt de interne naam gebruikt." #. yYSdL #: sf_chart.xhp @@ -6989,7 +6989,7 @@ "hd_id281600788076359\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. LvW6m #: sf_chart.xhp @@ -6998,7 +6998,7 @@ "par_id321614902851541\n" "help.text" msgid "The Chart service is instantiated from a Calc service instance either using the Charts or CreateChart methods." -msgstr "" +msgstr "Een instantie van de service Chart wordt aangemaakt met de service Calc door de methode Charts of methode CreateChart te gebruiken." #. QtZnt #: sf_chart.xhp @@ -7007,7 +7007,7 @@ "par_id531635274285114\n" "help.text" msgid "The example below creates a Chart service instance from an existing chart in the current Calc document:" -msgstr "" +msgstr "In dit voorbeeld wordt een instantie van een service Chart aangemaakt van een bestaand diagram in het huidige Calc-document:" #. Cqd8G #: sf_chart.xhp @@ -7016,7 +7016,7 @@ "par_id851635274721129\n" "help.text" msgid "The following example instantiate the Chart service by creating a new chart object based on the data contained in the range \"Sheet1.A1:C10\"." -msgstr "" +msgstr "Hier wordt met de service Chart een diagram-object aangemaakt gebaseerd op de gegevens \"Sheet1.A1:C10\" in het Calc-document." #. BZ2EU #: sf_chart.xhp @@ -7025,7 +7025,7 @@ "par_id881635275036852\n" "help.text" msgid "Read the CreateChart method description to learn more about its arguments." -msgstr "" +msgstr "Lees de beschrijving van de methode CreateChart voor een uitleg van de argumenten." #. gjYRg #: sf_chart.xhp @@ -7034,7 +7034,7 @@ "par_id131635275172617\n" "help.text" msgid "The examples above can be written in Python as follows:" -msgstr "" +msgstr "Dezelfde voorbeelden in Python:" #. QxXb9 #: sf_chart.xhp @@ -7043,7 +7043,7 @@ "hd_id711600788076834\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. z42Tx #: sf_chart.xhp @@ -7052,7 +7052,7 @@ "par_id461600788076917\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. 5RCfg #: sf_chart.xhp @@ -7061,7 +7061,7 @@ "par_id221600788076591\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. 5Ckhe #: sf_chart.xhp @@ -7070,7 +7070,7 @@ "par_id761600788076328\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. EJsLr #: sf_chart.xhp @@ -7079,7 +7079,7 @@ "par_id67160078807636\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. 5yKq5 #: sf_chart.xhp @@ -7088,7 +7088,7 @@ "par_id311600788076756\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. BURxX #: sf_chart.xhp @@ -7097,7 +7097,7 @@ "par_id441600788076826\n" "help.text" msgid "Specifies the chart type as a string that can assume one of the following values: \"Pie\", \"Bar\", \"Donut\", \"Column\", \"Area\", \"Line\", \"XY\", \"Bubble\", \"Net\"." -msgstr "" +msgstr "Specificeert het diagramtype als een tekenreeks die een van de volgende waarden kan aannemen: \"Pie\", \"Bar\", \"Donut\", \"Column\", \"Area\", \"Line\", \"XY\", \"Bubble\", \"Net \"." #. MEEhi #: sf_chart.xhp @@ -7106,7 +7106,7 @@ "par_id49160078807654\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. qaDDb #: sf_chart.xhp @@ -7115,7 +7115,7 @@ "par_id81600788076419\n" "help.text" msgid "When True indicates that the chart is three-dimensional and each series is arranged in the z-direction." -msgstr "" +msgstr "Wanneer True aangeeft dat de grafiek driedimensionaal is en dat elke reeks in de z-richting is gerangschikt." #. YkDSU #: sf_chart.xhp @@ -7124,7 +7124,7 @@ "par_id471635276257118\n" "help.text" msgid "When False series are arranged considering only two dimensions." -msgstr "" +msgstr "Indien False worden reeksen gerangschikt, rekening houdend met slechts twee dimensies." #. qEBab #: sf_chart.xhp @@ -7133,7 +7133,7 @@ "par_id711600788076534\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. gk8ns #: sf_chart.xhp @@ -7142,7 +7142,7 @@ "par_id541600788076645\n" "help.text" msgid "Specifies if the chart is displayed with 3D elements. If the value is a string, it must be either \"Bar\", \"Cylinder\", \"Cone\" or \"Pyramid\"." -msgstr "" +msgstr "Specificeert of de grafiek wordt weergegeven met 3D-elementen. Als de waarde een tekenreeks is, moet deze \"Bar\", \"Cylinder\", \"Cone\" of \"Pyramid\" zijn." #. HgqhX #: sf_chart.xhp @@ -7151,7 +7151,7 @@ "par_id541600788076141\n" "help.text" msgid "If the boolean True value is specified, then the chart is displayed using 3D bars." -msgstr "" +msgstr "Als de booleaanse waarde True is opgegeven, wordt de grafiek weergegeven met 3D-balken." #. vDs4z #: sf_chart.xhp @@ -7160,7 +7160,7 @@ "par_id891600788076190\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. m224E #: sf_chart.xhp @@ -7169,7 +7169,7 @@ "par_id91600788076674\n" "help.text" msgid "Specifies how much pie segments are offset from the chart center as a percentage of the radius. Applicable to pie and donut charts only." -msgstr "" +msgstr "Specificeert hoeveel cirkelsegmenten worden verschoven ten opzichte van het middelpunt van de grafiek als een percentage van de straal. Alleen van toepassing op cirkel- en ringdiagrammen." #. hbjwH #: sf_chart.xhp @@ -7178,7 +7178,7 @@ "par_id561633021747903\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. AaBHr #: sf_chart.xhp @@ -7187,7 +7187,7 @@ "par_id831633021749007\n" "help.text" msgid "When True, specifies a filled net chart. Applicable to net charts only." -msgstr "" +msgstr "Indien True, specificeert dit een gevuld netdiagram. Alleen van toepassing op netdiagrammen." #. xgCB2 #: sf_chart.xhp @@ -7196,7 +7196,7 @@ "par_id391600788076253\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 8YDHE #: sf_chart.xhp @@ -7205,7 +7205,7 @@ "par_id21600788076541\n" "help.text" msgid "Specifies whether or not the chart has a legend." -msgstr "" +msgstr "Geeft aan of het diagram al dan niet een legenda heeft." #. BNBDQ #: sf_chart.xhp @@ -7214,7 +7214,7 @@ "par_id211600788076138\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. MLPCx #: sf_chart.xhp @@ -7223,7 +7223,7 @@ "par_id521600788076371\n" "help.text" msgid "When True, chart series are stacked and each category sums up to 100%. Applicable to Area, Bar, Bubble, Column and Net charts." -msgstr "" +msgstr "Indien True, worden diagramreeksen gestapeld en telt elke categorie op tot 100%. Van toepassing op oppervlakte-, staaf-, bel-, kolom- en netdiagrammen." #. yGCZ7 #: sf_chart.xhp @@ -7232,7 +7232,7 @@ "par_id21600788076758\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Gbsst #: sf_chart.xhp @@ -7241,7 +7241,7 @@ "par_id781600788076694\n" "help.text" msgid "When True, chart series are stacked. Applicable to Area, Bar, Bubble, Column and Net charts." -msgstr "" +msgstr "Indien True, worden diagramreeksen gestapeld. Van toepassing op oppervlakte-, staaf-, bel-, kolom- en netdiagrammen." #. 9Dnwe #: sf_chart.xhp @@ -7250,7 +7250,7 @@ "par_id261600788076841\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. VwMyU #: sf_chart.xhp @@ -7259,7 +7259,7 @@ "par_id11600788076757\n" "help.text" msgid "Specifies the main title of the chart." -msgstr "" +msgstr "Specificeert de hoofdtitel van het diagram." #. FGSKV #: sf_chart.xhp @@ -7268,7 +7268,7 @@ "par_id531600789141795\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. eH3Ag #: sf_chart.xhp @@ -7277,7 +7277,7 @@ "par_id301600789141619\n" "help.text" msgid "Specifies the title of the X axis." -msgstr "" +msgstr "Specificeert de titel van de X-as." #. mmRtZ #: sf_chart.xhp @@ -7286,7 +7286,7 @@ "par_id541600789286532\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. scox2 #: sf_chart.xhp @@ -7295,7 +7295,7 @@ "par_id701600789286280\n" "help.text" msgid "Specifies the title of the Y axis." -msgstr "" +msgstr "Specificeert de titel van de Y-as." #. CRLf5 #: sf_chart.xhp @@ -7304,7 +7304,7 @@ "par_id941608709527698\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YCRTC #: sf_chart.xhp @@ -7313,7 +7313,7 @@ "par_id100100678952791\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. cDJES #: sf_chart.xhp @@ -7322,7 +7322,7 @@ "par_id661300789527859\n" "help.text" msgid "Returns the object representing the chart, which is an instance of the ScChartObj class." -msgstr "" +msgstr "Retourneert het object dat de grafiek vertegenwoordigt, wat een instantie is van de klasse ScChartObj ." #. kDUCf #: sf_chart.xhp @@ -7331,7 +7331,7 @@ "par_id941600789527698\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. LAgXE #: sf_chart.xhp @@ -7340,7 +7340,7 @@ "par_id100160078952791\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. yRYAq #: sf_chart.xhp @@ -7349,7 +7349,7 @@ "par_id631600789527859\n" "help.text" msgid "Returns the com.sun.star.chart.XDiagram object representing the diagram of the chart." -msgstr "" +msgstr "Retourneert het com.sun.star.chart.XDiagram-object dat het diagram van de grafiek vertegenwoordigt." #. CAXYe #: sf_chart.xhp @@ -7358,7 +7358,7 @@ "par_id941600789527099\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. yh7k9 #: sf_chart.xhp @@ -7367,7 +7367,7 @@ "par_id100160078953251\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. FpeAy #: sf_chart.xhp @@ -7376,7 +7376,7 @@ "par_id631600789522587\n" "help.text" msgid "Returns the com.sun.star.drawing.XShape object representing the shape of the chart." -msgstr "" +msgstr "Retourneert het com.sun.star.drawing.XShape-object dat het vorm van de grafiek vertegenwoordigt." #. DdVs9 #: sf_chart.xhp @@ -7385,7 +7385,7 @@ "par_id941600789527208\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. winTd #: sf_chart.xhp @@ -7394,7 +7394,7 @@ "par_id100160078952007\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. 5GESc #: sf_chart.xhp @@ -7403,7 +7403,7 @@ "par_id631600789527364\n" "help.text" msgid "Returns the com.sun.star.table.XTableChart object representing the data being displayed in the chart." -msgstr "" +msgstr "Retourneert het com.sun.star.table.XTableChart-object dat de gegevens vertegenwoordigt die in de grafiek worden weergegeven." #. A278T #: sf_chart.xhp @@ -7412,7 +7412,7 @@ "hd_id581635335807782\n" "help.text" msgid "Creating a chart" -msgstr "" +msgstr "Een diagram aanmaken" #. EK2E7 #: sf_chart.xhp @@ -7421,7 +7421,7 @@ "par_id231635335826090\n" "help.text" msgid "Consider the following data in the range \"A1:B6\" of a sheet named \"Report\"." -msgstr "" +msgstr "Overweeg de volgende gegevens in het bereik \"A1:B6\" van een blad met de naam \"Rapport\"." #. ZSw7Y #: sf_chart.xhp @@ -7430,7 +7430,7 @@ "par_id911635336313498\n" "help.text" msgid "The examples below in Basic and Python show how to create a line chart from this data with legends." -msgstr "" +msgstr "De onderstaande voorbeelden in Basic en Python laten zien hoe u een lijndiagram kunt maken van deze gegevens met legenda's." #. whbDd #: sf_chart.xhp @@ -7439,7 +7439,7 @@ "par_id931635338174647\n" "help.text" msgid "The chart does not need to be created in the same sheet where the data is located. It can be created in any existing sheet in the current file by specifying the sheet name in the second argument of the CreateChart method." -msgstr "" +msgstr "Het diagram hoeft niet in hetzelfde blad te worden gemaakt als waar de gegevens zich bevinden. Het kan in elk bestaand blad in het huidige bestand worden gemaakt door de bladnaam op te geven in het tweede argument van de methode CreateChart." #. RtuMk #: sf_chart.xhp @@ -7448,7 +7448,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. mNZFS #: sf_chart.xhp @@ -7457,7 +7457,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the Chart Service" -msgstr "" +msgstr "Lijst met methoden in de Chart-service" #. WfVxL #: sf_chart.xhp @@ -7466,7 +7466,7 @@ "par_id93158919969864\n" "help.text" msgid "Saves the chart as an image file in a specified location. Returns True if the image file could be successfully created." -msgstr "" +msgstr "Slaat de grafiek op als een afbeeldingsbestand op een opgegeven locatie. Retourneert True als het afbeeldingsbestand met succes kon worden gemaakt." #. SAtUt #: sf_chart.xhp @@ -7475,7 +7475,7 @@ "par_id821591631203996\n" "help.text" msgid "filename: Identifies the path and file name where the image will be saved. It must follow the notation defined in SF_FileSystem.FileNaming." -msgstr "" +msgstr "filename: Identificeert het pad en de bestandsnaam waar de afbeelding wordt opgeslagen. Het moet de notatie volgen die is gedefinieerd in SF_FileSystem.FileNaming." #. 2YEEE #: sf_chart.xhp @@ -7484,7 +7484,7 @@ "par_id821591631203116\n" "help.text" msgid "imagetype: The name of the image type to be created. The following values are accepted: \"gif\", \"jpeg\", \"png\" (default), \"svg\" and \"tiff\"." -msgstr "" +msgstr "imagetype: De naam van het te maken afbeeldingstype. De volgende waarden worden geaccepteerd: \"gif\", \"jpeg\", \"png\" (standaard), \"svg\" en \"tiff\"." #. XRASx #: sf_chart.xhp @@ -7493,7 +7493,7 @@ "par_id821591631203133\n" "help.text" msgid "overwrite: Specifies if the destination file can be overwritten (Default = False)." -msgstr "" +msgstr "overwrite: Specificeert of het doelbestand kan worden overschreven (Standaard = False)." #. MCGBa #: sf_chart.xhp @@ -7502,7 +7502,7 @@ "par_id93158919969165\n" "help.text" msgid "Changes the position of the chart in the current sheet and modifies its width and height. Returns True if resizing was successful." -msgstr "" +msgstr "Wijzigt de positie van het diagram in het huidige blad en wijzigt de breedte en hoogte. Retourneert True als het wijzigen van de grootte is gelukt." #. aMKE5 #: sf_chart.xhp @@ -7511,7 +7511,7 @@ "par_id821591631200626\n" "help.text" msgid "xpos, ypos: Specify the new X and Y positions of the chart. If any of these values are omitted or if negative values are provided, the corresponding positions are left unchanged." -msgstr "" +msgstr "xpos, ypos: Geef de nieuwe X- en Y-posities van de grafiek op. Als een van deze waarden wordt weggelaten of als er negatieve waarden worden opgegeven, blijven de overeenkomstige posities ongewijzigd." #. qvsYR #: sf_chart.xhp @@ -7520,7 +7520,7 @@ "par_id821591631204288\n" "help.text" msgid "width: Specify the new width of the chart. If this argument is omitted or if a negative value is provided, the chart width is left unchanged." -msgstr "" +msgstr "width: Geef de nieuwe breedte van het diagram op. Als dit argument wordt weggelaten of als een negatieve waarde wordt opgegeven, blijft de grafiekbreedte ongewijzigd." #. nGioo #: sf_chart.xhp @@ -7529,7 +7529,7 @@ "par_id821591631203208\n" "help.text" msgid "height: Specify the new height of the chart. If this argument is omitted or if a negative value is provided, the chart height is left unchanged." -msgstr "" +msgstr "height: Geef de nieuwe hoogte van de grafiek op. Als dit argument wordt weggelaten of als een negatieve waarde wordt opgegeven, blijft de grafiekhoogte ongewijzigd." #. EyY7j #: sf_chart.xhp @@ -7538,7 +7538,7 @@ "par_id301635340527472\n" "help.text" msgid "All arguments are provided as integer values that correspond to 1/100 of a millimeter." -msgstr "" +msgstr "Alle argumenten worden geleverd als gehele waarden die overeenkomen met 1/100 van een millimeter." #. h7zov #: sf_chart.xhp @@ -7547,7 +7547,7 @@ "bas_id431635340711712\n" "help.text" msgid "' Changes only X and Y position" -msgstr "" +msgstr "' Verandert alleen de X- en Y-positie" #. VHc2V #: sf_chart.xhp @@ -7556,7 +7556,7 @@ "bas_id241635340728398\n" "help.text" msgid "' Changes only the chart width and height" -msgstr "" +msgstr "' Wijzigt alleen de breedte en hoogte van de grafiek" #. BEAYa #: sf_chart.xhp @@ -7565,7 +7565,7 @@ "bas_id201635340749006\n" "help.text" msgid "' Keyword arguments are supported" -msgstr "" +msgstr "' Zoekwoordargumenten worden ondersteund" #. zNFY6 #: sf_database.xhp @@ -7574,7 +7574,7 @@ "tit\n" "help.text" msgid "SFDatabases.Database service" -msgstr "" +msgstr "SFDatabases.Database service" #. K7nuj #: sf_database.xhp @@ -7583,7 +7583,7 @@ "hd_id371587913266310\n" "help.text" msgid "SFDatabases.Database service" -msgstr "" +msgstr "SFDatabases.Database-service" #. RByov #: sf_database.xhp @@ -7592,7 +7592,7 @@ "par_id891599407198144\n" "help.text" msgid "The Database service provides access to databases either embedded or described in Base documents. This service provides methods to:" -msgstr "" +msgstr "De service Database biedt toegang tot databases die zijn ingesloten of beschreven in Base-documenten. Deze service biedt methoden om:" #. 7dqXS #: sf_database.xhp @@ -7601,7 +7601,7 @@ "par_id551615386924481\n" "help.text" msgid "Get access to data in database tables." -msgstr "" +msgstr "Krijg toegang tot gegevens in databasetabellen." #. 29pT5 #: sf_database.xhp @@ -7610,7 +7610,7 @@ "par_id551615386924285\n" "help.text" msgid "Run SELECT queries and perform aggregate functions." -msgstr "" +msgstr "SELECT query's en aggregatiefuncties uitvoeren." #. LYsPD #: sf_database.xhp @@ -7619,7 +7619,7 @@ "par_id551615386924111\n" "help.text" msgid "Run SQL action statements such as INSERT, UPDATE, DELETE, etc." -msgstr "" +msgstr "SQL-instructies, zoals INSERT, UPDATE, DELETE, enz uitvoeren." #. 7CSTo #: sf_database.xhp @@ -7628,7 +7628,7 @@ "par_id811599407236602\n" "help.text" msgid "Each instance of the Database service represents a single database and gives access to its tables, queries and data." -msgstr "" +msgstr "Elk exemplaar van de Database-service vertegenwoordigt een enkele database en geeft toegang tot de tabellen, query's en gegevens." #. JopCB #: sf_database.xhp @@ -7637,7 +7637,7 @@ "par_id111625692871642\n" "help.text" msgid "This service does not provide access to forms or reports in the Base document that contains the database. To access forms in a Base document, refer to the method FormDocuments of the Base service." -msgstr "" +msgstr "Deze service biedt geen toegang tot formulieren of rapporten in het basisdocument dat de database bevat. Om toegang te krijgen tot formulieren in een basisdocument, raadpleegt u de methode FormDocuments van de Base-service." #. Snu6R #: sf_database.xhp @@ -7646,7 +7646,7 @@ "par_id231615386789950\n" "help.text" msgid "All exchanges between this service and the database are done using SQL only." -msgstr "" +msgstr "Alle uitwisselingen tussen deze service en de database gebeuren alleen met SQL." #. MiGUE #: sf_database.xhp @@ -7655,7 +7655,7 @@ "par_id121599407322804\n" "help.text" msgid "SQL statements may be run in direct or indirect mode. In direct mode the statement is transferred to the database engine without any syntax checking or review." -msgstr "" +msgstr "SQL-instructies kunnen worden uitgevoerd in de modus direct of indirect. In de directe modus wordt de instructie overgebracht naar de database-engine zonder enige syntaxiscontrole of herziening." #. Kg5Cn #: sf_database.xhp @@ -7664,7 +7664,7 @@ "par_id681599407189019\n" "help.text" msgid "The provided interfaces include simple tables and queries lists, as well as access to database data." -msgstr "" +msgstr "De geboden interfaces omvatten eenvoudige tabellen en querylijsten, evenals toegang tot databasegegevens." #. 644XA #: sf_database.xhp @@ -7673,7 +7673,7 @@ "par_id891599407280007\n" "help.text" msgid "To make SQL statements more readable, you may use square brackets \"[ ]\" to enclose names of tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS). But beware that enclosing characters are mandatory in this context." -msgstr "" +msgstr "Om SQL-instructies leesbaarder te maken, kunt u vierkante haken \"[ ]\" gebruiken om namen van tabellen, query's en velden te omsluiten in plaats van andere omsluitende tekens te gebruiken die exclusief kunnen zijn voor bepaalde relationele databasebeheersystemen (RDBMS). Maar pas op dat het insluiten van tekens in deze context verplicht is." #. CAFnK #: sf_database.xhp @@ -7682,7 +7682,7 @@ "hd_id91587913266988\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. Cr4oo #: sf_database.xhp @@ -7691,7 +7691,7 @@ "par_id541599408159668\n" "help.text" msgid "To create a instance of the Database service you can use the CreateScriptService method:" -msgstr "" +msgstr "Om een instantie van de Database-service te maken, kunt u de CreateScriptService-methode gebruiken:" #. ArhV5 #: sf_database.xhp @@ -7700,7 +7700,7 @@ "par_id551625693442959\n" "help.text" msgid "In the syntax described above you can use either \"SFDatabases.Database\" or simply \"Database\" as the first argument of the CreateScriptService method." -msgstr "" +msgstr "In de hierboven beschreven syntaxis kunt u ofwel \"SFDatabases.Database\" of gewoon \"Database\" gebruiken als het eerste argument van de CreateScriptService-methode." #. S7oNc #: sf_database.xhp @@ -7709,7 +7709,7 @@ "par_id111615146818256\n" "help.text" msgid "filename: The name of the Base file. Must be expressed using SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: De naam van het basisbestand. Moet worden uitgedrukt met de notatie SF_FileSystem.FileNaming." #. fUxEZ #: sf_database.xhp @@ -7718,7 +7718,7 @@ "par_id771615146944307\n" "help.text" msgid "registrationname: The name of a registered database. If filename is provided, this argument should not be used." -msgstr "" +msgstr "registrationname: De naam van een geregistreerde database. Als filename is opgegeven, mag dit argument niet worden gebruikt." #. J2NA3 #: sf_database.xhp @@ -7727,7 +7727,7 @@ "par_id491615147048748\n" "help.text" msgid "Conversely, if a registrationname is specified, the filename parameter should not be defined." -msgstr "" +msgstr "Omgekeerd, als een registrationname is opgegeven, moet de parameter filename niet worden gedefinieerd." #. YQF4D #: sf_database.xhp @@ -7736,7 +7736,7 @@ "par_id841615147168279\n" "help.text" msgid "readonly: Determines if the database will be opened as readonly (Default = True)." -msgstr "" +msgstr "readonly: Bepaalt of de database wordt geopend als alleen-lezen (Standaard = True)." #. 9FEG5 #: sf_database.xhp @@ -7745,7 +7745,7 @@ "par_id291615147236001\n" "help.text" msgid "user, password: Additional connection parameters to the database server." -msgstr "" +msgstr "user, password: Aanvullende verbindingsparameters voor de databaseserver." #. ZG5pH #: sf_database.xhp @@ -7754,7 +7754,7 @@ "bas_id871625698095504\n" "help.text" msgid "' Run queries, SQL statements, ..." -msgstr "" +msgstr "' Query's, SQL statements, ... uitvoeren" #. uWJrQ #: sf_database.xhp @@ -7763,7 +7763,7 @@ "pyc_id791625698186675\n" "help.text" msgid "# Run queries, SQL statements, ..." -msgstr "" +msgstr "# Query's, SQL statements, ... uitvoeren" #. Z2VVg #: sf_database.xhp @@ -7772,7 +7772,7 @@ "hd_id771615147491563\n" "help.text" msgid "Accessing Databases with the UI Service" -msgstr "" +msgstr "Toegang tot databases met de UI-service" #. 5Kifs #: sf_database.xhp @@ -7781,7 +7781,7 @@ "par_id901599408410712\n" "help.text" msgid "It is also possible to access the database associated with a Base document using the ScriptForge.UI service, as shown in the examples below:" -msgstr "" +msgstr "Het is ook mogelijk om toegang te krijgen tot de database die is gekoppeld aan een basisdocument met behulp van de ScriptForge.UI-service, zoals weergegeven in de onderstaande voorbeelden:" #. T6mkQ #: sf_database.xhp @@ -7790,7 +7790,7 @@ "bas_id631615147843278\n" "help.text" msgid "' User and password are supplied below, if needed" -msgstr "" +msgstr "' Gebruiker en wachtwoord worden hieronder vermeld, indien nodig" #. F43tz #: sf_database.xhp @@ -7799,7 +7799,7 @@ "bas_id921599408791887\n" "help.text" msgid "' Run queries, SQL statements, ..." -msgstr "" +msgstr "' Query's, SQL statements, ... uitvoeren" #. FsCDs #: sf_database.xhp @@ -7808,7 +7808,7 @@ "pyc_id731625699527917\n" "help.text" msgid "# User and password are supplied below, if needed" -msgstr "" +msgstr "# Gebruikersnaam en wachtwoord worden hieronder vermeld, indien nodig" #. BDNDo #: sf_database.xhp @@ -7817,7 +7817,7 @@ "pyc_id201625699438702\n" "help.text" msgid "# Run queries, SQL statements, ..." -msgstr "" +msgstr "# Query's, SQL statements, ... uitvoeren" #. AVkg5 #: sf_database.xhp @@ -7826,7 +7826,7 @@ "par_id361619188184750\n" "help.text" msgid "The GetDatabase method used in the example above is part of ScriptForge's Base service." -msgstr "" +msgstr "De methode GetDatabase die in bovenstaand voorbeeld is gebruikt is onderdeel van de ScriptForge service Base." #. EF9Lc #: sf_database.xhp @@ -7835,7 +7835,7 @@ "hd_id841587913266618\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. x4Z5A #: sf_database.xhp @@ -7844,7 +7844,7 @@ "par_id521587913266568\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. QUrYT #: sf_database.xhp @@ -7853,7 +7853,7 @@ "par_id421587913266368\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. 3kQCm #: sf_database.xhp @@ -7862,7 +7862,7 @@ "par_id631587914939732\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. RYuuo #: sf_database.xhp @@ -7871,7 +7871,7 @@ "par_id951587913266220\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. BzLQb #: sf_database.xhp @@ -7880,7 +7880,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. up8WT #: sf_database.xhp @@ -7889,7 +7889,7 @@ "par_id421587914989890\n" "help.text" msgid "Array of strings" -msgstr "" +msgstr "Matrix met tekenreeksen" #. dGoYp #: sf_database.xhp @@ -7898,7 +7898,7 @@ "par_id351587913266349\n" "help.text" msgid "The list of stored queries." -msgstr "" +msgstr "De lijst met opgeslagen query's." #. bfdLR #: sf_database.xhp @@ -7907,7 +7907,7 @@ "par_id931599409717463\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 2DDTs #: sf_database.xhp @@ -7916,7 +7916,7 @@ "par_id71599409717945\n" "help.text" msgid "Array of strings" -msgstr "" +msgstr "Matrix met tekenreeksen" #. rGTvw #: sf_database.xhp @@ -7925,7 +7925,7 @@ "par_id341599409717612\n" "help.text" msgid "The list of stored tables." -msgstr "" +msgstr "De lijst met opgeslagen query's." #. u5YE4 #: sf_database.xhp @@ -7934,7 +7934,7 @@ "par_id741599409777967\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. evuSw #: sf_database.xhp @@ -7943,7 +7943,7 @@ "par_id551599409777759\n" "help.text" msgid "The UNO object representing the current database connection." -msgstr "" +msgstr "Het UNO-object dat de huidige databaseverbinding vertegenwoordigt." #. w9YZG #: sf_database.xhp @@ -7952,7 +7952,7 @@ "par_id271599409887585\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. NeTGg #: sf_database.xhp @@ -7961,7 +7961,7 @@ "par_id861599409887284\n" "help.text" msgid "The UNO object representing the metadata describing the database system attributes." -msgstr "" +msgstr "Het UNO-object dat de metagegevens vertegenwoordigt die de kenmerken van het databasesysteem beschrijven." #. ApsdK #: sf_database.xhp @@ -7970,7 +7970,7 @@ "par_id231614360519973\n" "help.text" msgid "List of Methods in the Database Service" -msgstr "" +msgstr "Lijst met methoden in de databaseservice" #. emrA2 #: sf_database.xhp @@ -7979,7 +7979,7 @@ "par_id201587913266596\n" "help.text" msgid "Closes the current database connection." -msgstr "" +msgstr "Sluit de huidige databaseverbinding." #. nwbSh #: sf_database.xhp @@ -7988,7 +7988,7 @@ "par_id13159655484952\n" "help.text" msgid "Computes the given aggregate function on a field or expression belonging to a table." -msgstr "" +msgstr "Berekent de gegeven aggregatiefunctie voor een veld of expressie die bij een tabel hoort." #. E9LsG #: sf_database.xhp @@ -7997,7 +7997,7 @@ "par_id101615148468548\n" "help.text" msgid "Optionally, a SQL WHERE clause can be specified as a filter that will be applied prior to the aggregate function." -msgstr "" +msgstr "Optioneel kan een SQL WHERE-clausule worden opgegeven als een filter dat wordt toegepast voorafgaand aan de aggregatiefunctie." #. AKqei #: sf_database.xhp @@ -8006,7 +8006,7 @@ "par_id441596554849949\n" "help.text" msgid "expression: A SQL expression in which the field names are surrounded with square brackets." -msgstr "" +msgstr "expression: Een SQL-expressie waarin de veldnamen tussen vierkante haken staan." #. c2Rzq #: sf_database.xhp @@ -8015,7 +8015,7 @@ "par_id381596554849698\n" "help.text" msgid "tablename: A table name (without square brackets)." -msgstr "" +msgstr "tablename: Een tabelnaam (zonder vierkante haken)." #. cjGPp #: sf_database.xhp @@ -8024,7 +8024,7 @@ "par_id521596554849185\n" "help.text" msgid "criteria: A WHERE clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets." -msgstr "" +msgstr "criteria: Een WHERE-clausule zonder het trefwoord \"WHERE\", waarin veldnamen tussen vierkante haken staan." #. AGBFS #: sf_database.xhp @@ -8033,7 +8033,7 @@ "par_id781615150306678\n" "help.text" msgid "The example below assumes the file Employees.odb has a table named EmployeeData." -msgstr "" +msgstr "In het onderstaande voorbeeld wordt ervan uitgegaan dat het bestand Employees.odb een tabel heeft met de naam EmployeeData." #. KAqZB #: sf_database.xhp @@ -8042,7 +8042,7 @@ "bas_id871615150277916\n" "help.text" msgid "' Counts the number of employees in the table" -msgstr "" +msgstr "' Telt het aantal medewerkers in de tabel" #. AVstM #: sf_database.xhp @@ -8051,7 +8051,7 @@ "bas_id291615150373387\n" "help.text" msgid "' Returns the sum of all salaries in the table" -msgstr "" +msgstr "' Retourneert de som van alle salarissen in de tabel" #. cMiVJ #: sf_database.xhp @@ -8060,7 +8060,7 @@ "bas_id931615150423062\n" "help.text" msgid "' Below are some examples of how tables can be filtered" -msgstr "" +msgstr "' Hieronder staan enkele voorbeelden van hoe tabellen kunnen worden gefilterd" #. kCmmv #: sf_database.xhp @@ -8069,7 +8069,7 @@ "par_id41599488113961\n" "help.text" msgid "Computes a SQL expression on a single record returned by a WHERE clause defined by the Criteria parameter." -msgstr "" +msgstr "Berekent een SQL-expressie op een enkele record die wordt geretourneerd door een WHERE-clausule gedefinieerd door de parameter Criteria." #. 8yUaz #: sf_database.xhp @@ -8078,7 +8078,7 @@ "par_id601615381471954\n" "help.text" msgid "If the query returns multiple records, only the first one is considered. Use the OrderClause parameter to determine how query results are sorted." -msgstr "" +msgstr "Als de query meerdere records retourneert, wordt alleen de eerste in aanmerking genomen. Gebruik de parameter OrderClause om te bepalen hoe zoekopdrachtresultaten worden gesorteerd." #. tNnSe #: sf_database.xhp @@ -8087,7 +8087,7 @@ "par_id671599488113986\n" "help.text" msgid "expression: A SQL expression in which the field names are surrounded with square brackets." -msgstr "" +msgstr "expression: Een SQL-expressie waarin de veldnamen tussen vierkante haken staan." #. eGbAr #: sf_database.xhp @@ -8096,7 +8096,7 @@ "par_id441599488113247\n" "help.text" msgid "tablename: A table name (without square brackets)." -msgstr "" +msgstr "tablename: Een tabelnaam (zonder vierkante haken)." #. F9xaH #: sf_database.xhp @@ -8105,7 +8105,7 @@ "par_id40159948811316\n" "help.text" msgid "criteria: A WHERE clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets." -msgstr "" +msgstr "criteria: Een WHERE-clausule zonder het trefwoord \"WHERE\", waarin veldnamen tussen vierkante haken staan." #. SusUk #: sf_database.xhp @@ -8114,7 +8114,7 @@ "par_id71599488689029\n" "help.text" msgid "orderclause: An ORDER BY clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets." -msgstr "" +msgstr "orderclause: Een ORDER BY-clausule zonder de trefwoorden \"ORDER BY\". Veldnamen moeten tussen vierkante haken staan." #. CPoBx #: sf_database.xhp @@ -8123,7 +8123,7 @@ "par_id481599489278579\n" "help.text" msgid "Stores the contents of a table or the results of a SELECT query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns." -msgstr "" +msgstr "Slaat de inhoud van een tabel of de resultaten van een SELECT-query of van een SQL-instructie op in een tweedimensionale matrix. De eerste index in de matrix komt overeen met de rijen en de tweede index verwijst naar de kolommen." #. GXji8 #: sf_database.xhp @@ -8132,7 +8132,7 @@ "par_id821615384762425\n" "help.text" msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array." -msgstr "" +msgstr "Er kan een bovengrens worden opgegeven voor het aantal geretourneerde rijen. Optioneel kunnen kolomnamen worden ingevoegd in de eerste rij van de matrix." #. gX7AY #: sf_database.xhp @@ -8141,7 +8141,7 @@ "par_id271599490209915\n" "help.text" msgid "The returned array will be empty if no rows are returned and the column headers are not required." -msgstr "" +msgstr "De geretourneerde matrix is leeg als er geen rijen worden geretourneerd en de kolomkoppen niet vereist zijn." #. y5u8i #: sf_database.xhp @@ -8150,7 +8150,7 @@ "par_id451599489278429\n" "help.text" msgid "sqlcommand: A table or query name (without square brackets) or a SELECT SQL statement." -msgstr "" +msgstr "sqlcommand: Een tabel- of querynaam (zonder vierkante haken) of een SELECT SQL-instructie." #. xAbDx #: sf_database.xhp @@ -8159,7 +8159,7 @@ "par_id271599489278141\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. Default is False. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Wanneer True, wordt de SQL-opdracht zonder voorafgaande analyse naar de database-engine gestuurd. Standaard is False. Dit argument wordt genegeerd voor tabellen. Voor query's is de toegepaste optie de optie die is ingesteld toen de query werd gedefinieerd." #. DEzQD #: sf_database.xhp @@ -8168,7 +8168,7 @@ "par_id941599489278747\n" "help.text" msgid "header: When True, the first row of the returned array contains the column headers." -msgstr "" +msgstr "header: Indien True, bevat de eerste rij van de geretourneerde matrix de kolomkoppen." #. P2SMx #: sf_database.xhp @@ -8177,7 +8177,7 @@ "par_id591599489278926\n" "help.text" msgid "maxrows: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows." -msgstr "" +msgstr "maxrows: Het maximum aantal rijen dat moet worden geretourneerd. De standaardwaarde is nul, wat betekent dat er geen limiet is aan het aantal geretourneerde rijen." #. 3XZPf #: sf_database.xhp @@ -8186,7 +8186,7 @@ "par_id721615385125947\n" "help.text" msgid "Below are a few examples of how the GetRows method can be used:" -msgstr "" +msgstr "Hieronder staan een paar voorbeelden van hoe de methode GetRows kan worden gebruikt:" #. zkeuW #: sf_database.xhp @@ -8195,7 +8195,7 @@ "bas_id171615385196045\n" "help.text" msgid "' Returns all rows in the table with column headers" -msgstr "" +msgstr "' Retourneert alle rijen in de tabel met kolomkoppen" #. eFmmE #: sf_database.xhp @@ -8204,7 +8204,7 @@ "bas_id371615385230721\n" "help.text" msgid "' Returns the first 50 employee records ordered by the 'FirstName' field" -msgstr "" +msgstr "' Retourneert de eerste 50 werknemersrecords gerangschikt op het veld 'Voornaam'" #. FMBEy #: sf_database.xhp @@ -8213,7 +8213,7 @@ "par_id31599490609759\n" "help.text" msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records." -msgstr "" +msgstr "Voert een actiequery uit van een SQL-instructie, zoals het maken van een tabel, evenals het invoegen, bijwerken en verwijderen van records." #. gyiQy #: sf_database.xhp @@ -8222,7 +8222,7 @@ "par_id331615385491925\n" "help.text" msgid "The method returns True when successful." -msgstr "" +msgstr "De methode retourneert True wanneer succesvol." #. G5bDE #: sf_database.xhp @@ -8231,7 +8231,7 @@ "par_id21599490810021\n" "help.text" msgid "The RunSql method is rejected with an error message in case the database was previously opened in read-only mode." -msgstr "" +msgstr "De methode RunSql wordt afgewezen met een foutmelding als de database eerder in alleen-lezen modus is geopend." #. WnUpF #: sf_database.xhp @@ -8240,7 +8240,7 @@ "par_id701599490609473\n" "help.text" msgid "sqlcommand: A query name (without square brackets) or a SQL statement." -msgstr "" +msgstr "sqlcommand: Een querynaam (zonder vierkante haken) of een SQL-instructie." #. uNMDN #: sf_database.xhp @@ -8249,7 +8249,7 @@ "par_id51599490609377\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. (Default = False). For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Wanneer True, wordt de SQL-opdracht zonder voorafgaande analyse naar de database-engine gestuurd. (Standaard = False). Voor query's is de toegepaste optie de optie die is ingesteld toen de query werd gedefinieerd." #. BC4Sc #: sf_dialog.xhp @@ -8258,7 +8258,7 @@ "tit\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "SFDialogs.Dialog service" #. LzQoS #: sf_dialog.xhp @@ -8267,7 +8267,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "SFDialogs.Dialog-service" #. ny8EV #: sf_dialog.xhp @@ -8276,7 +8276,7 @@ "par_id931583589764919\n" "help.text" msgid "The Dialog service contributes to the management of dialogs created with the Basic Dialog Editor. Each instance of the current class represents a single dialog box displayed to the user." -msgstr "" +msgstr "De service Dialog draagt bij aan het beheer van dialoogvensters die zijn gemaakt met de Basic Dialog Editor. Elk exemplaar van de huidige klasse vertegenwoordigt een enkel dialoogvenster dat aan de gebruiker wordt weergegeven." #. vxEvV #: sf_dialog.xhp @@ -8285,7 +8285,7 @@ "par_id831598110550771\n" "help.text" msgid "A dialog box can be displayed in modal or in non-modal modes." -msgstr "" +msgstr "Een dialoogvenster kan worden weergegeven in modale of in niet-modale modi." #. LVjBj #: sf_dialog.xhp @@ -8294,7 +8294,7 @@ "par_id221598110444025\n" "help.text" msgid "In modal mode, the box is displayed and the execution of the macro process is suspended until one of the OK or Cancel buttons is pressed. In the meantime, user actions executed on the box can trigger specific actions." -msgstr "" +msgstr "In de modale modus wordt het vak weergegeven en wordt de uitvoering van het macroproces opgeschort, totdat op een van de knoppen OK of Annuleren wordt gedrukt. In de tussentijd kunnen gebruikersacties die op de box worden uitgevoerd, specifieke acties activeren." #. FFTSj #: sf_dialog.xhp @@ -8303,7 +8303,7 @@ "par_id981598110463521\n" "help.text" msgid "In non-modal mode, the dialog box is \"floating\" on the user desktop and the execution of the macro process continues normally. A non-modal dialog closes when it is terminated with the Terminate() method or when the %PRODUCTNAME session ends. The window close button is inactive in non-modal dialogs." -msgstr "" +msgstr "In niet-modale modus \"zweeft\" het dialoogvenster op het bureaublad van de gebruiker en de uitvoering van het macroproces gaat normaal door. Een niet-modaal dialoogvenster wordt gesloten wanneer het wordt beëindigd met de methode Terminate() of wanneer de %PRODUCTNAME-sessie eindigt. De knop voor het sluiten van het venster is inactief in niet-modale dialoogvensters." #. GrpyR #: sf_dialog.xhp @@ -8312,7 +8312,7 @@ "par_id721598110472337\n" "help.text" msgid "A dialog box disappears from memory after its explicit termination." -msgstr "" +msgstr "Een dialoogvenster verdwijnt uit het geheugen nadat het expliciet is beëindigd." #. asacX #: sf_dialog.xhp @@ -8321,7 +8321,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDialogs.Dialog service is closely related to the SFDialogs.DialogControl service." -msgstr "" +msgstr "De service SFDialogs.Dialog is nauw verwant aan de service SFDialogs.DialogControl." #. CByHp #: sf_dialog.xhp @@ -8330,7 +8330,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation and usage" -msgstr "" +msgstr "Service aanroep en gebruik" #. S8GrJ #: sf_dialog.xhp @@ -8339,7 +8339,7 @@ "par_id361598174756160\n" "help.text" msgid "The Dialog service is invoked through the CreateScriptService method. It requires three positional arguments to specify the dialog box to activate:" -msgstr "" +msgstr "De service Dialog wordt aangeroepen door de methode CreateScriptService. Er zijn drie positionele argumenten om het dialoogvenster aan te geven dat geactiveerd moet worden:" #. Ntzqh #: sf_dialog.xhp @@ -8348,7 +8348,7 @@ "par_id31612271944733\n" "help.text" msgid "Container: \"GlobalScope\" for preinstalled libraries or a window name as defined by ScriptForge.UI service. Empty string \"\" default value stands for the current document." -msgstr "" +msgstr "Container: \"GlobalScope\" voor voorgeïnstalleerde bibliotheken of een vensternaam zoals gedefinieerd met de service ScriptForge.UI. De standaardwaarde, een lege tekenreeks, staat voor het huidige document." #. juLgm #: sf_dialog.xhp @@ -8357,7 +8357,7 @@ "par_id311612271947124\n" "help.text" msgid "Library: The case-sensitive name of a library contained in the container. Default value is \"Standard\"." -msgstr "" +msgstr "Library: De hoofdlettergevoelige naam van een bibliotheek in de container. Standaardwaarde is \"Standard\"." #. FSp5N #: sf_dialog.xhp @@ -8366,7 +8366,7 @@ "par_id821612271946316\n" "help.text" msgid "DialogName: A case-sensitive string designating the dialog." -msgstr "" +msgstr "DialogName: Een hoofdlettergevoelige tekenreeks die de dialoog aangeeft." #. r5vY5 #: sf_dialog.xhp @@ -8375,7 +8375,7 @@ "par_id761620142701399\n" "help.text" msgid "Below %PRODUCTNAME Basic and Python examples are displaying the dlgConsole dialog that belongs to ScriptForge shared library:" -msgstr "" +msgstr "Hier voorbeelden in %PRODUCTNAME Basic en Python voor het weergeven van de dialoog dlgConsole die behoort tot de gedeelde bibliotheek ScriptForge:" #. mqjFF #: sf_dialog.xhp @@ -8384,7 +8384,7 @@ "bas_id321598171269873\n" "help.text" msgid "'... controls initialization goes here..." -msgstr "" +msgstr "'... hier staat wat initialisatie..." #. yn6sy #: sf_dialog.xhp @@ -8393,7 +8393,7 @@ "bas_id471598176518738\n" "help.text" msgid "'Default mode = Modal" -msgstr "" +msgstr "'Standaardmodus is Modal" #. h9a9G #: sf_dialog.xhp @@ -8402,7 +8402,7 @@ "bas_id551598171288547\n" "help.text" msgid "'... Process controls and do what is needed here" -msgstr "" +msgstr "'... Procescontrole" #. VD35X #: sf_dialog.xhp @@ -8411,7 +8411,7 @@ "par_id601619622310089\n" "help.text" msgid "Or using Python:" -msgstr "" +msgstr "Of met Python:" #. knENA #: sf_dialog.xhp @@ -8420,7 +8420,7 @@ "pyc_id41619622700314\n" "help.text" msgid "# ... controls initialization goes here..." -msgstr "" +msgstr "#... hier staat wat initialisatie..." #. 2PTBU #: sf_dialog.xhp @@ -8429,7 +8429,7 @@ "pyc_id661611699964814\n" "help.text" msgid "# Default mode is Modal" -msgstr "" +msgstr "# Standaardmodus is Modal" #. ABoA2 #: sf_dialog.xhp @@ -8438,7 +8438,7 @@ "pyc_id681619619965191\n" "help.text" msgid "# ... Process controls and do what is needed here" -msgstr "" +msgstr "# ... Procescontrole" #. eehkB #: sf_dialog.xhp @@ -8447,7 +8447,7 @@ "par_id951598174966322\n" "help.text" msgid "Alternatively a Dialog instance can be retrieved via the SFDialogs.DialogEvent service, providing that the dialog was initiated with the Dialog service. DialogEvent returns the SFDialogs.Dialog service instance that triggered the event." -msgstr "" +msgstr "Als alternatief kan een Dialog-instantie worden opgehaald via de service SFDialogs.DialogEvent, op voorwaarde dat het dialoogvenster is gestart met de service Dialog. DialogEvent retourneert de service-instantie SFDialogs.Dialog die de gebeurtenis heeft geactiveerd." #. QBG5g #: sf_dialog.xhp @@ -8456,7 +8456,7 @@ "par_id741619625211462\n" "help.text" msgid "with Python:" -msgstr "" +msgstr "met Python:" #. n72Hv #: sf_dialog.xhp @@ -8465,7 +8465,7 @@ "par_id251598176312571\n" "help.text" msgid "Note that in previous examples, the prefix \"SFDialogs.\" may be omitted when deemed appropriate." -msgstr "" +msgstr "Merk op dat in eerdere voorbeelden het voorvoegsel \"SFDialogs.\" kan worden weggelaten wanneer dit passend wordt geacht." #. nXGkZ #: sf_dialog.xhp @@ -8474,7 +8474,7 @@ "hd_id651583668365757\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. zVLEC #: sf_dialog.xhp @@ -8483,7 +8483,7 @@ "par_id871583668386455\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. FBCFG #: sf_dialog.xhp @@ -8492,7 +8492,7 @@ "par_id491583668386455\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. ByVDE #: sf_dialog.xhp @@ -8501,7 +8501,7 @@ "par_id271583668474014\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. 8AUBJ #: sf_dialog.xhp @@ -8510,7 +8510,7 @@ "par_id401583668386455\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. iZZec #: sf_dialog.xhp @@ -8519,7 +8519,7 @@ "par_id371583668519172\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. av994 #: sf_dialog.xhp @@ -8528,7 +8528,7 @@ "par_id771583668386455\n" "help.text" msgid "Value = 1. An OK button was pressed." -msgstr "" +msgstr "Value = 1. Er is op de knop OK gedrukt." #. GKcTG #: sf_dialog.xhp @@ -8537,7 +8537,7 @@ "par_id541583839708548\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. z4BZ4 #: sf_dialog.xhp @@ -8546,7 +8546,7 @@ "par_id731583839708412\n" "help.text" msgid "Value = 0. A Cancel button was pressed." -msgstr "" +msgstr "Value = 0. A Er is op de knop Annuleren gedrukt." #. cThsX #: sf_dialog.xhp @@ -8555,7 +8555,7 @@ "par_id761584027709516\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 48bDT #: sf_dialog.xhp @@ -8564,7 +8564,7 @@ "par_id971584027709752\n" "help.text" msgid "Specify the title of the dialog." -msgstr "" +msgstr "Geef de titel van het dialoogvenster op." #. 2pjyZ #: sf_dialog.xhp @@ -8573,7 +8573,7 @@ "par_id31583839767743\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 3Rypn #: sf_dialog.xhp @@ -8582,7 +8582,7 @@ "par_id111583839767195\n" "help.text" msgid "Specify the height of the dialog box." -msgstr "" +msgstr "Geef de hoogte van het dialoogvenster op." #. KD2zy #: sf_dialog.xhp @@ -8591,7 +8591,7 @@ "par_id771583839920487\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. ABrxD #: sf_dialog.xhp @@ -8600,7 +8600,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies if the dialog box is currently in execution in modal mode." -msgstr "" +msgstr "Geeft aan of het dialoogvenster momenteel wordt uitgevoerd in de modale modus." #. sA5Nj #: sf_dialog.xhp @@ -8609,7 +8609,7 @@ "par_id571588333908716\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JoAYu #: sf_dialog.xhp @@ -8618,7 +8618,7 @@ "par_id721588333908708\n" "help.text" msgid "The name of the dialog" -msgstr "" +msgstr "De naam van het dialoogvenster" #. jcbwB #: sf_dialog.xhp @@ -8627,7 +8627,7 @@ "par_id501583774433513\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Tfrah #: sf_dialog.xhp @@ -8636,7 +8636,7 @@ "par_id151598177605296\n" "help.text" msgid "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active." -msgstr "" +msgstr "Een dialoogvenster kan meerdere pagina's hebben die stap voor stap door de gebruiker kunnen worden doorlopen. De eigenschap Page van het Dialog-object definieert welke pagina van het dialoogvenster actief is." #. FZG3n #: sf_dialog.xhp @@ -8645,7 +8645,7 @@ "par_id271588334016191\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 3sRE5 #: sf_dialog.xhp @@ -8654,7 +8654,7 @@ "par_id251588334016874\n" "help.text" msgid "Specify if the dialog box is visible on the desktop. By default it is not visible until the Execute() method is run and visible afterwards." -msgstr "" +msgstr "Geef op of het dialoogvenster zichtbaar is op het bureaublad. Standaard is het niet zichtbaar totdat de methode Execute() wordt uitgevoerd en daarna zichtbaar." #. w6DwG #: sf_dialog.xhp @@ -8663,7 +8663,7 @@ "par_id451598177924437\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. W2CkE #: sf_dialog.xhp @@ -8672,7 +8672,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing the dialog model. Refer to XControlModel and UnoControlDialogModel in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het UNO-object dat het dialoogmodel vertegenwoordigt. Raadpleeg XControlModel en UnoControlDialogModel in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. YFYi4 #: sf_dialog.xhp @@ -8681,7 +8681,7 @@ "par_id811598178083501\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. bmedG #: sf_dialog.xhp @@ -8690,7 +8690,7 @@ "par_id731598178083442\n" "help.text" msgid "The UNO object representing the dialog view. Refer to XControl and UnoControlDialog in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het UNO-object dat de dialoogweergave vertegenwoordigt. Raadpleeg XControl en UnoControlDialog in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. S4DWL #: sf_dialog.xhp @@ -8699,7 +8699,7 @@ "par_id31385839767743\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. G6Qsw #: sf_dialog.xhp @@ -8708,7 +8708,7 @@ "par_id111583839717695\n" "help.text" msgid "Specify the width of the dialog box." -msgstr "" +msgstr "Geef de breedte van het dialoogvenster op." #. q8eyc #: sf_dialog.xhp @@ -8717,7 +8717,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Eigenschappen gebeurtenis" #. EbGWN #: sf_dialog.xhp @@ -8726,7 +8726,7 @@ "par_id41612629140856\n" "help.text" msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the scripting framework URI specification." -msgstr "" +msgstr "Retourneert een URI-tekenreeks met de verwijzing naar het script dat door de gebeurtenis is geactiveerd. Lees de specificatie ervan in de scripting framework URI-specificatie." #. XCC7C #: sf_dialog.xhp @@ -8735,7 +8735,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. V3bin #: sf_dialog.xhp @@ -8744,7 +8744,7 @@ "par_id401612628879819\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. uW85z #: sf_dialog.xhp @@ -8753,7 +8753,7 @@ "par_id281612628879819\n" "help.text" msgid "Basic IDE Description" -msgstr "" +msgstr "Basic IDE-beschrijving" #. dFkbN #: sf_dialog.xhp @@ -8762,7 +8762,7 @@ "par_id111612629836630\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. aKBvg #: sf_dialog.xhp @@ -8771,7 +8771,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Bij het verkrijgen van focus" #. 4FBaJ #: sf_dialog.xhp @@ -8780,7 +8780,7 @@ "par_id291612629836294\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 8U7FZ #: sf_dialog.xhp @@ -8789,7 +8789,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Bij verlies van focus" #. wBCKi #: sf_dialog.xhp @@ -8798,7 +8798,7 @@ "par_id81612629836634\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. CK5vU #: sf_dialog.xhp @@ -8807,7 +8807,7 @@ "par_id881612629836744\n" "help.text" msgid "Key pressed" -msgstr "" +msgstr "Toets ingedrukt" #. gXJGu #: sf_dialog.xhp @@ -8816,7 +8816,7 @@ "par_id591612629836830\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. CJwi7 #: sf_dialog.xhp @@ -8825,7 +8825,7 @@ "par_id161612629836775\n" "help.text" msgid "Key released" -msgstr "" +msgstr "Toets losgelaten" #. wS7GH #: sf_dialog.xhp @@ -8834,7 +8834,7 @@ "par_id891612629836630\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. GcDU7 #: sf_dialog.xhp @@ -8843,7 +8843,7 @@ "par_id461612629836679\n" "help.text" msgid "Mouse moved while key presses" -msgstr "" +msgstr "Muis bewoog tijdens toetsaanslagen" #. eUS49 #: sf_dialog.xhp @@ -8852,7 +8852,7 @@ "par_id131612629836291\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. QrByH #: sf_dialog.xhp @@ -8861,7 +8861,7 @@ "par_id151612629836151\n" "help.text" msgid "Mouse inside" -msgstr "" +msgstr "Muis binnen" #. CRGTF #: sf_dialog.xhp @@ -8870,7 +8870,7 @@ "par_id211612629836725\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 69s4B #: sf_dialog.xhp @@ -8879,7 +8879,7 @@ "par_id361612629836624\n" "help.text" msgid "Mouse outside" -msgstr "" +msgstr "Muis buiten" #. ojLRr #: sf_dialog.xhp @@ -8888,7 +8888,7 @@ "par_id311612629836481\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. XaS8A #: sf_dialog.xhp @@ -8897,7 +8897,7 @@ "par_id721612629836752\n" "help.text" msgid "Mouse moved" -msgstr "" +msgstr "Muisbeweging" #. MnMUF #: sf_dialog.xhp @@ -8906,7 +8906,7 @@ "par_id981612629836116\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. NtqPz #: sf_dialog.xhp @@ -8915,7 +8915,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Muisknop ingedrukt" #. czknv #: sf_dialog.xhp @@ -8924,7 +8924,7 @@ "par_id711612629836704\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. J2uzg #: sf_dialog.xhp @@ -8933,7 +8933,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Muisknop losgelaten" #. gTQjc #: sf_dialog.xhp @@ -8942,7 +8942,7 @@ "par_id921606472825856\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. DiCyL #: sf_dialog.xhp @@ -8951,7 +8951,7 @@ "par_id871583933076448\n" "help.text" msgid "Set the focus on the current Dialog instance. Return True if focusing was successful." -msgstr "" +msgstr "Stel de focus in op de huidige Dialog instantie. Retourneer True als het scherpstellen gelukt is." #. 7QdPA #: sf_dialog.xhp @@ -8960,7 +8960,7 @@ "par_id151598178880227\n" "help.text" msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode." -msgstr "" +msgstr "Deze methode wordt aangeroepen vanuit een dialoog of besturingsgebeurtenis, of wanneer een dialoog wordt weergegeven in niet-modale modus." #. uoBhE #: sf_dialog.xhp @@ -8969,7 +8969,7 @@ "par_id811620109056270\n" "help.text" msgid "Python and %PRODUCTNAME Basic examples both assume that the dialog is stored in current document's Standard library." -msgstr "" +msgstr "Python en %PRODUCTNAME Basicvoorbeelden gaan er beide van uit dat het dialoogvenster is opgeslagen in de bibliotheek Standard van het huidige document." #. 4qLn9 #: sf_dialog.xhp @@ -8978,7 +8978,7 @@ "par_id161584541257982\n" "help.text" msgid "Return either:" -msgstr "" +msgstr "Teruggave:" #. isSnB #: sf_dialog.xhp @@ -8987,7 +8987,7 @@ "par_id421598179770993\n" "help.text" msgid "the list of the controls contained in the dialog" -msgstr "" +msgstr "de lijst met bedieningselementen in het dialoogvenster" #. hdSWz #: sf_dialog.xhp @@ -8996,7 +8996,7 @@ "par_id81598185229301\n" "help.text" msgid "a DialogControl class instance based on its name" -msgstr "" +msgstr "a DialogControl klasse-instantie op basis van zijn naam" #. AEAHd #: sf_dialog.xhp @@ -9005,7 +9005,7 @@ "par_id1001584541257789\n" "help.text" msgid "ControlName : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array." -msgstr "" +msgstr "ControlName : Een geldige besturingselementnaam als hoofdlettergevoelige tekenreeks. Indien afwezig, wordt de lijst met besturingselementnamen geretourneerd als een op nul gebaseerde matrix." #. j8x9C #: sf_dialog.xhp @@ -9014,7 +9014,7 @@ "par_id381598185776500\n" "help.text" msgid "Ends the display of a modal dialog and gives back the argument as return value for the current Execute() running action." -msgstr "" +msgstr "Beëindigt de weergave van een modaal dialoogvenster en geeft het argument terug als retourwaarde voor de huidige Execute() actieve actie." #. gjvwy #: sf_dialog.xhp @@ -9023,7 +9023,7 @@ "par_id551598185953362\n" "help.text" msgid "EndExecute() is usually contained in the processing of a macro triggered by a dialog or control event." -msgstr "" +msgstr "EndExecute() is meestal vervat in de verwerking van een macro die wordt geactiveerd door een dialoogvenster of besturingsgebeurtenis." #. yukGC #: sf_dialog.xhp @@ -9032,7 +9032,7 @@ "par_id451598185776957\n" "help.text" msgid "returnvalue: The value passed to the running Execute() method." -msgstr "" +msgstr "returnvalue: De waarde die is doorgegeven aan de actieve methode Execute()." #. ABome #: sf_dialog.xhp @@ -9041,7 +9041,7 @@ "par_id411620110780170\n" "help.text" msgid "Using %PRODUCTNAME Basic:" -msgstr "" +msgstr "%PRODUCTNAME Basic gebruiken:" #. EtAN6 #: sf_dialog.xhp @@ -9050,7 +9050,7 @@ "par_id11620110819754\n" "help.text" msgid "Using Python:" -msgstr "" +msgstr "Python gebruiken:" #. ML9Mz #: sf_dialog.xhp @@ -9059,7 +9059,7 @@ "par_id81620201915101\n" "help.text" msgid "Above com.sun.star.lang.EventObject mentions are optional. Such annotations help identify %PRODUCTNAME Application Programming Interface (API)." -msgstr "" +msgstr "Bovenstaande com.sun.star.lang.EventObject-vermeldingen zijn optioneel. Dergelijke annotaties helpen bij het identificeren van %PRODUCTNAME Application Programming Interface (API)." #. FD9fr #: sf_dialog.xhp @@ -9068,7 +9068,7 @@ "par_id29159818646178\n" "help.text" msgid "Display the dialog box and, when modal, wait for its termination by the user. The returned value is either:" -msgstr "" +msgstr "Geef het dialoogvenster weer en wacht, indien modaal, op beëindiging door de gebruiker. De geretourneerde waarde is ofwel:" #. PRCaG #: sf_dialog.xhp @@ -9077,7 +9077,7 @@ "par_id541598186676277\n" "help.text" msgid "0 : Cancel button pressed" -msgstr "" +msgstr "0 : Cancel knop ingedrukt" #. eCGBY #: sf_dialog.xhp @@ -9086,7 +9086,7 @@ "par_id821598186716345\n" "help.text" msgid "1 : OK button pressed" -msgstr "" +msgstr "1 : OK knop ingedrukt" #. MovhC #: sf_dialog.xhp @@ -9095,7 +9095,7 @@ "par_id951598186738346\n" "help.text" msgid "Otherwise the dialog stopped with an EndExecute() statement issued by a dialog or control event" -msgstr "" +msgstr "Anders stopte het dialoogvenster met een EndExecute()-instructie uitgegeven door een dialoogvenster of controlegebeurtenis" #. eBFXT #: sf_dialog.xhp @@ -9104,7 +9104,7 @@ "par_id741598187335869\n" "help.text" msgid "For non-modal dialog boxes the method always returns 0 and the execution of the macro continues." -msgstr "" +msgstr "Voor niet-modale dialoogvensters retourneert de methode altijd 0 en gaat de uitvoering van de macro door." #. Ej2iF #: sf_dialog.xhp @@ -9113,7 +9113,7 @@ "par_id11598186461227\n" "help.text" msgid "modal: False when non-modal dialog. Default = True." -msgstr "" +msgstr "modal: False bij niet-modale dialoogvenster. Standaard = True." #. fGatm #: sf_dialog.xhp @@ -9122,7 +9122,7 @@ "par_id231620110023843\n" "help.text" msgid "In this Basic example myDialog dialog is stored in current document's Standard library." -msgstr "" +msgstr "In dit basisvoorbeeld wordt het dialoogvenster myDialog opgeslagen in de bibliotheek Standard van het huidige document." #. ouEVN #: sf_dialog.xhp @@ -9131,7 +9131,7 @@ "par_id191620110162627\n" "help.text" msgid "This Python code displays DlgConvert modal dialog from Euro shared Basic library." -msgstr "" +msgstr "Deze Python-code geeft het modale dialoogvenster DlgConvert weer uit de gedeelde Basic bibliotheek Euro." #. HU6Jv #: sf_dialog.xhp @@ -9140,7 +9140,7 @@ "par_id21598187900349\n" "help.text" msgid "Replaces all fixed text strings in a dialog by their translated versions based on a L10N service instance. This method translates the following strings:" -msgstr "" +msgstr "Vervangt alle vaste tekstreeksen in een dialoogvenster door hun vertaalde versies op basis van een service-instantie L10N. Deze methode vertaalt de volgende strings:" #. JixXU #: sf_dialog.xhp @@ -9149,7 +9149,7 @@ "par_id641625855723650\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "De methode retourneert True indien succesvol." #. v5Zt5 #: sf_dialog.xhp @@ -9158,7 +9158,7 @@ "par_id61637871260604\n" "help.text" msgid "To create a list of translatable strings in a dialog use the AddTextsFromDialog method from the L10N service." -msgstr "" +msgstr "Gebruik de AddTextsFromDialog methode van de service L10N om een lijst met vertaalbare tekenreeksen in een dialoogvenster te maken." #. ECNVg #: sf_dialog.xhp @@ -9167,7 +9167,7 @@ "par_id451598185776205\n" "help.text" msgid "l10n: A L10N service instance from which translated strings will be retrieved." -msgstr "" +msgstr "l10n: Een service-instantie L10N waaruit vertaalde tekenreeksen worden opgehaald." #. MeJAT #: sf_dialog.xhp @@ -9176,7 +9176,7 @@ "par_id951620300689850\n" "help.text" msgid "The following example loads translated strings and applies them to the dialog \"MyDialog\"." -msgstr "" +msgstr "Het volgende voorbeeld laadt vertaalde tekenreeksen en past ze toe op het dialoogvenster \"MyDialog\"." #. p3KMX #: sf_dialog.xhp @@ -9185,7 +9185,7 @@ "par_id901637872163895\n" "help.text" msgid "Read the L10N service help page to learn more about how PO and POT files are handled." -msgstr "" +msgstr "Lees de L10N-service-helppagina voor meer informatie over hoe PO- en POT-bestanden worden verwerkt." #. ARCGg #: sf_dialog.xhp @@ -9194,7 +9194,7 @@ "par_id21598187953679\n" "help.text" msgid "Terminate the Dialog service for the current instance. Return True if the termination was successful." -msgstr "" +msgstr "Beëindig de service Dialog voor de huidige instantie. Retourneert True als de beëindiging is gelukt." #. CgAYf #: sf_dialog.xhp @@ -9203,7 +9203,7 @@ "par_id951620300687150\n" "help.text" msgid "Below Basic and Python examples open DlgConsole and dlgTrace non-modal dialogs. They are respectively stored in ScriptForge and Access2Base shared libraries. Dialog close buttons are disabled and explicit termination is performed at the end of a running process." -msgstr "" +msgstr "Onderstaande basis- en Python-voorbeelden openen de niet-modale dialoogvensters DlgConsole en dlgTrace. Ze worden respectievelijk opgeslagen in ScriptForge en Access2Base gedeelde bibliotheken. Dialoogvenster sluitknoppen zijn uitgeschakeld en expliciete beëindiging wordt uitgevoerd aan het einde van een lopend proces." #. W3W3Y #: sf_dialog.xhp @@ -9212,7 +9212,7 @@ "par_id301620302137482\n" "help.text" msgid "In this example a button in DlgConsole is substituting inhibited window closing:" -msgstr "" +msgstr "In dit voorbeeld vervangt een knop in DlgConsole de geblokkeerde venstersluiting:" #. 7z7hg #: sf_dialog.xhp @@ -9221,7 +9221,7 @@ "par_id811620112217958\n" "help.text" msgid "With Python:" -msgstr "" +msgstr "Met Python:" #. BFfGX #: sf_dialogcontrol.xhp @@ -9230,7 +9230,7 @@ "tit\n" "help.text" msgid "SFDialogs.DialogControl service" -msgstr "" +msgstr "SFDialogs.DialogControl service" #. UBz5i #: sf_dialogcontrol.xhp @@ -9239,7 +9239,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDialogs.DialogControl service" -msgstr "" +msgstr "service SFDialogs.DialogControl " #. tZzKc #: sf_dialogcontrol.xhp @@ -9248,7 +9248,7 @@ "par_id931583589764919\n" "help.text" msgid "The DialogControl service manages the controls belonging to a dialog defined with the Basic Dialog Editor. Each instance of the current service represents a single control within a dialog box." -msgstr "" +msgstr "De service DialogControl beheert de bedieningselementen die horen bij een dialoogvenster dat is gedefinieerd met de Basic Dialog Editor. Elk exemplaar van de huidige service vertegenwoordigt een enkel besturingselement in een dialoogvenster." #. 7dDgL #: sf_dialogcontrol.xhp @@ -9257,7 +9257,7 @@ "par_id701598191157426\n" "help.text" msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the XControlModel and XControlView properties." -msgstr "" +msgstr "De focus ligt op het verkrijgen en instellen van de waarden die worden weergegeven door de bedieningselementen van het dialoogvenster. Opmaak is toegankelijk via de eigenschappen XControlModel en XControlView." #. fFfwe #: sf_dialogcontrol.xhp @@ -9266,7 +9266,7 @@ "par_id981598191184526\n" "help.text" msgid "Note that the unique DialogControl.Value property content varies according to the control type." -msgstr "" +msgstr "Merk op dat de unieke inhoud van de eigenschap DialogControl.Value varieert afhankelijk van het type besturingselement." #. MBrzA #: sf_dialogcontrol.xhp @@ -9275,7 +9275,7 @@ "par_id991612698027551\n" "help.text" msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically." -msgstr "" +msgstr "Speciale aandacht wordt besteed aan besturingen van het type boombesturing. Het is gemakkelijk om een boom te bevolken, tak voor tak, of met een set takken tegelijk. Het vullen van een boombesturing kan statisch of dynamisch worden uitgevoerd." #. 9LpGF #: sf_dialogcontrol.xhp @@ -9284,7 +9284,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDialogs.DialogControl service is closely related to the SFDialogs.Dialog service." -msgstr "" +msgstr "De service SFDialogs.DialogControl is nauw verwant aan de SFDialogs.Dialog-service." #. uGTGK #: sf_dialogcontrol.xhp @@ -9293,7 +9293,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. EnxDs #: sf_dialogcontrol.xhp @@ -9302,7 +9302,7 @@ "par_id361598174756160\n" "help.text" msgid "The DialogControl service is invoked from an existing Dialog service instance through its Controls() method. The dialog must be initiated with the SFDialogs.Dialog service." -msgstr "" +msgstr "De service DialogControl wordt aangeroepen vanuit een bestaande instantie van de service Dialog via de methode Controls(). Het dialoogvenster moet worden gestart met de service SFDialogs.Dialog." #. RCFrE #: sf_dialogcontrol.xhp @@ -9311,7 +9311,7 @@ "bas_id581598453210170\n" "help.text" msgid "myControl.Value = \"Dialog started at \" & Now()" -msgstr "" +msgstr "myControl.Value = \"Dialog started at \" & Now()" #. WVG8J #: sf_dialogcontrol.xhp @@ -9320,7 +9320,7 @@ "bas_id961598453222539\n" "help.text" msgid "' ... process the controls actual values" -msgstr "" +msgstr "' ... de werkelijke waarden van de besturing verwerken" #. gxhUu #: sf_dialogcontrol.xhp @@ -9329,7 +9329,7 @@ "pyc_id861620225235002\n" "help.text" msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" -msgstr "" +msgstr "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" #. nu3f3 #: sf_dialogcontrol.xhp @@ -9338,7 +9338,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "" +msgstr "# ... de werkelijke waarden van de besturing verwerken" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -9347,7 +9347,7 @@ "par_id951598174966322\n" "help.text" msgid "Alternatively a control instance can be retrieved via the SFDialogs.DialogEvent service, providing the dialog was initiated with the Dialog service. DialogEvent returns the SFDialogs.DialogControl class instance that triggered the event." -msgstr "" +msgstr "Als alternatief kan een controle-instantie worden opgehaald via de service SFDialogs.DialogEvent, op voorwaarde dat het dialoogvenster is gestart met de service Dialog. DialogEvent retourneert de klasse-instantie SFDialogs.DialogControl die de gebeurtenis heeft geactiveerd." #. 75WJy #: sf_dialogcontrol.xhp @@ -9356,7 +9356,7 @@ "par_id251598176312571\n" "help.text" msgid "Note that in previous examples, the prefix \"SFDialogs.\" may be omitted." -msgstr "" +msgstr "Merk op dat in eerdere voorbeelden het voorvoegsel \"SFDialogs.\" kan worden weggelaten." #. F9uKj #: sf_dialogcontrol.xhp @@ -9365,7 +9365,7 @@ "hd_id71598455687512\n" "help.text" msgid "Control types" -msgstr "" +msgstr "Besturingstypen" #. jKJBV #: sf_dialogcontrol.xhp @@ -9374,7 +9374,7 @@ "par_id851598455863395\n" "help.text" msgid "The DialogControl service is available for these control types:" -msgstr "" +msgstr "De service DialogControl is beschikbaar voor deze besturingstypen:" #. 7xddb #: sf_dialogcontrol.xhp @@ -9383,7 +9383,7 @@ "hd_id651583668365757\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. 94RMV #: sf_dialogcontrol.xhp @@ -9392,7 +9392,7 @@ "par_id871583668386455\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. eccsg #: sf_dialogcontrol.xhp @@ -9401,7 +9401,7 @@ "par_id491583668386455\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. KRYNv #: sf_dialogcontrol.xhp @@ -9410,7 +9410,7 @@ "par_id271583668474014\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. U9ZYU #: sf_dialogcontrol.xhp @@ -9419,7 +9419,7 @@ "par_id291598538799794\n" "help.text" msgid "Applicable to" -msgstr "" +msgstr "Toepasbaar op" #. emDac #: sf_dialogcontrol.xhp @@ -9428,7 +9428,7 @@ "par_id401583668386455\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. xNGhR #: sf_dialogcontrol.xhp @@ -9437,7 +9437,7 @@ "par_id371583668519172\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. aTyMC #: sf_dialogcontrol.xhp @@ -9446,7 +9446,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies if a command button has or not the behaviour of a Cancel button." -msgstr "" +msgstr "Geeft aan of een opdrachtknop het gedrag van een knop Annuleren heeft of niet." #. Gft3Z #: sf_dialogcontrol.xhp @@ -9455,7 +9455,7 @@ "par_id541583839708548\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. UXoyn #: sf_dialogcontrol.xhp @@ -9464,7 +9464,7 @@ "par_id731583839708412\n" "help.text" msgid "Specifies the text associated with the control." -msgstr "" +msgstr "Specificeert de tekst die bij het besturingselement hoort." #. Uo2SP #: sf_dialogcontrol.xhp @@ -9473,7 +9473,7 @@ "par_id761584027709516\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YKEAg #: sf_dialogcontrol.xhp @@ -9482,7 +9482,7 @@ "par_id261598539120502\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. c5GAw #: sf_dialogcontrol.xhp @@ -9491,7 +9491,7 @@ "par_id971584027709752\n" "help.text" msgid "One of the types listed above." -msgstr "" +msgstr "Een van de hierboven genoemde soorten." #. oMipU #: sf_dialogcontrol.xhp @@ -9500,7 +9500,7 @@ "par_id67161270548283\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 59ovD #: sf_dialogcontrol.xhp @@ -9509,7 +9509,7 @@ "par_id341612705482566\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. w2ZhT #: sf_dialogcontrol.xhp @@ -9518,7 +9518,7 @@ "par_id1001612705482919\n" "help.text" msgid "The currently upmost node selected in the tree control. Refer to XmutableTreeNode in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het momenteel bovenste knooppunt dat is geselecteerd in de boomstructuur. Raadpleeg XmutableTreeNode in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. veivJ #: sf_dialogcontrol.xhp @@ -9527,7 +9527,7 @@ "par_id31583839767743\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. y2irQ #: sf_dialogcontrol.xhp @@ -9536,7 +9536,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default (OK) button." -msgstr "" +msgstr "Geeft aan of een opdrachtknop de standaardknop (OK) is." #. GAdvJ #: sf_dialogcontrol.xhp @@ -9545,7 +9545,7 @@ "par_id771583839920487\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. tBmrq #: sf_dialogcontrol.xhp @@ -9554,7 +9554,7 @@ "par_id891598539196786\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. 8S9xG #: sf_dialogcontrol.xhp @@ -9563,7 +9563,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies if the control is accessible with the cursor." -msgstr "" +msgstr "Geeft aan of het besturingselement toegankelijk is met de cursor." #. 2E9Cb #: sf_dialogcontrol.xhp @@ -9572,7 +9572,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 6L9ke #: sf_dialogcontrol.xhp @@ -9581,7 +9581,7 @@ "par_id491598529331618\n" "help.text" msgid "(read-only)" -msgstr "" +msgstr "(alleen-lezen)" #. QbN5U #: sf_dialogcontrol.xhp @@ -9590,7 +9590,7 @@ "par_id721588333908708\n" "help.text" msgid "Specifies the format used to display dates and times. It must be one these strings:" -msgstr "" +msgstr "Specificeert de opmaak dat wordt gebruikt om datums en tijden weer te geven. Het moet een van deze tekenreeksen zijn:" #. 5eRkE #: sf_dialogcontrol.xhp @@ -9599,7 +9599,7 @@ "par_id891598456980194\n" "help.text" msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"." -msgstr "" +msgstr "Voor datums: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"." #. CDCLC #: sf_dialogcontrol.xhp @@ -9608,7 +9608,7 @@ "par_id221598456991070\n" "help.text" msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"." -msgstr "" +msgstr "Voor tijden: \"24h short\", \"24h long\", \"12h short\", \"12h long\"." #. nLCxq #: sf_dialogcontrol.xhp @@ -9617,7 +9617,7 @@ "par_id501583774433513\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. rDJFC #: sf_dialogcontrol.xhp @@ -9626,7 +9626,7 @@ "par_id151598177605296\n" "help.text" msgid "Specifies the number of rows in a ListBox, a ComboBox or a TableControl." -msgstr "" +msgstr "Specificeert het aantal rijen in een Keuzelijst, een Keuzelijst met invoerveld of een Tabelbesturing." #. kaaLt #: sf_dialogcontrol.xhp @@ -9635,7 +9635,7 @@ "par_id271588334016191\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Ey9iG #: sf_dialogcontrol.xhp @@ -9644,7 +9644,7 @@ "par_id251588334016874\n" "help.text" msgid "Specifies which item is selected in a ListBox, a ComboBox or a TableControl." -msgstr "" +msgstr "Specificeert welk item is geselecteerd in een Keuzelijst, een Keuzelijst met invoerveld of een Tabelbesturing." #. azv7C #: sf_dialogcontrol.xhp @@ -9653,7 +9653,7 @@ "par_id961598457655506\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 6N6Eb #: sf_dialogcontrol.xhp @@ -9662,7 +9662,7 @@ "par_id2159845765568\n" "help.text" msgid "Specifies if the control is read-only." -msgstr "" +msgstr "Geeft aan of het besturingselement alleen-lezen is." #. bubBB #: sf_dialogcontrol.xhp @@ -9671,7 +9671,7 @@ "par_id621598457951781\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. r83sC #: sf_dialogcontrol.xhp @@ -9680,7 +9680,7 @@ "par_id821598457951782\n" "help.text" msgid "Specifies whether a user can make multiple selections in a listbox." -msgstr "" +msgstr "Geeft aan of een gebruiker meerdere selecties kan maken in een keuzelijst." #. BBJCw #: sf_dialogcontrol.xhp @@ -9689,7 +9689,7 @@ "par_id351598458170114\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. uHsgi #: sf_dialogcontrol.xhp @@ -9698,7 +9698,7 @@ "par_id151598539764402\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. HLjFU #: sf_dialogcontrol.xhp @@ -9707,7 +9707,7 @@ "par_id621598458170392\n" "help.text" msgid "The name of the control." -msgstr "" +msgstr "De naam van het besturingselement." #. jSSnv #: sf_dialogcontrol.xhp @@ -9716,7 +9716,7 @@ "par_id80159845835726\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 8GZkA #: sf_dialogcontrol.xhp @@ -9725,7 +9725,7 @@ "par_id841598539781888\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. BdxvF #: sf_dialogcontrol.xhp @@ -9734,7 +9734,7 @@ "par_id791598458357756\n" "help.text" msgid "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active." -msgstr "" +msgstr "Een dialoog kan meerdere bladen hebben die stap voor stap door de gebruiker kunnen worden doorlopen. De eigenschap Page van het Dialog-object definieert welke pagina van het dialoogvenster actief is." #. isrYW #: sf_dialogcontrol.xhp @@ -9743,7 +9743,7 @@ "par_id441598458459145\n" "help.text" msgid "The Page property of a control defines the page of the dialog on which the control is visible." -msgstr "" +msgstr "De eigenschap Page van een besturingselement definieert de pagina van het dialoogvenster waarop het besturingselement zichtbaar is." #. Cj3Kq #: sf_dialogcontrol.xhp @@ -9752,7 +9752,7 @@ "par_id161598458580581\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 6EFh7 #: sf_dialogcontrol.xhp @@ -9761,7 +9761,7 @@ "par_id921598458580608\n" "help.text" msgid "Dialog
    service" -msgstr "" +msgstr "service Dialog
    " #. SDCx4 #: sf_dialogcontrol.xhp @@ -9770,7 +9770,7 @@ "par_id181598539807426\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. sqEuV #: sf_dialogcontrol.xhp @@ -9779,7 +9779,7 @@ "par_id801598458580456\n" "help.text" msgid "The parent SFDialogs.Dialog class object instance." -msgstr "" +msgstr "De bovenliggende SFDialogs.Dialog klasseobjectinstantie." #. GTGu9 #: sf_dialogcontrol.xhp @@ -9788,7 +9788,7 @@ "par_id971598458773352\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. LP96H #: sf_dialogcontrol.xhp @@ -9797,7 +9797,7 @@ "par_id451598458773588\n" "help.text" msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the FileNaming attribute of the ScriptForge.FileSystem service." -msgstr "" +msgstr "Specificeert de bestandsnaam die een bitmap of ander type afbeelding bevat die moet worden weergegeven op het opgegeven besturingselement. De bestandsnaam moet voldoen aan het kenmerk FileNaming van de service ScriptForge.FileSystem." #. LZLsc #: sf_dialogcontrol.xhp @@ -9806,7 +9806,7 @@ "par_id831612700624650\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. QxAW9 #: sf_dialogcontrol.xhp @@ -9815,7 +9815,7 @@ "par_id711612700624483\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. m4N4j #: sf_dialogcontrol.xhp @@ -9824,7 +9824,7 @@ "par_id11612700624514\n" "help.text" msgid "An object representing the lowest root node (usually there is only one such root node). Refer to XmutableTreeNode in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Een object dat het laagste wortelknooppunt vertegenwoordigt (meestal is er maar één zo'n wortelknooppunt). Raadpleeg XmutableTreeNode in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. PqsSY #: sf_dialogcontrol.xhp @@ -9833,7 +9833,7 @@ "par_id401598516577225\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. AciNr #: sf_dialogcontrol.xhp @@ -9842,7 +9842,7 @@ "par_id311598516577712\n" "help.text" msgid "Specifies the data contained in a combobox or a listbox." -msgstr "" +msgstr "Specificeert de gegevens in een keuzelijst met invoervak of een keuzelijst." #. q532w #: sf_dialogcontrol.xhp @@ -9851,7 +9851,7 @@ "par_id781598516764550\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 4h8VF #: sf_dialogcontrol.xhp @@ -9860,7 +9860,7 @@ "par_id11159851676440\n" "help.text" msgid "Gives access to the text being displayed by the control." -msgstr "" +msgstr "Geeft toegang tot de tekst die door het besturingselement wordt weergegeven." #. We5gv #: sf_dialogcontrol.xhp @@ -9869,7 +9869,7 @@ "par_id411598517275112\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. EijF2 #: sf_dialogcontrol.xhp @@ -9878,7 +9878,7 @@ "par_id171598539985022\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. CbBZJ #: sf_dialogcontrol.xhp @@ -9887,7 +9887,7 @@ "par_id651598517275384\n" "help.text" msgid "Specifies the text that appears as a tooltip when you hold the mouse pointer over the control." -msgstr "" +msgstr "Hiermee geeft u de tekst op die als knopinfo wordt weergegeven wanneer u de muisaanwijzer boven het besturingselement houdt." #. kVtki #: sf_dialogcontrol.xhp @@ -9896,7 +9896,7 @@ "par_id821598517418463\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. ZemBe #: sf_dialogcontrol.xhp @@ -9905,7 +9905,7 @@ "par_id141598517418822\n" "help.text" msgid "Specifies if the checkbox control may appear dimmed (grayed) or not." -msgstr "" +msgstr "Geeft aan of het keuzevakje gedimd (grijs) kan worden weergegeven of niet." #. BDWA7 #: sf_dialogcontrol.xhp @@ -9914,7 +9914,7 @@ "par_id701598517671373\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. ZHrsm #: sf_dialogcontrol.xhp @@ -9923,7 +9923,7 @@ "par_id1001598540024225\n" "help.text" msgid "Refer to Value property" -msgstr "" +msgstr "Raadpleeg Waarde-eigenschap" #. PqKgo #: sf_dialogcontrol.xhp @@ -9932,7 +9932,7 @@ "par_id661598517730941\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 8r3sG #: sf_dialogcontrol.xhp @@ -9941,7 +9941,7 @@ "par_id761598540042290\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. xLL83 #: sf_dialogcontrol.xhp @@ -9950,7 +9950,7 @@ "par_id881598517730836\n" "help.text" msgid "Specifies if the control is hidden or visible." -msgstr "" +msgstr "Geeft aan of het besturingselement verborgen of zichtbaar is." #. Xw6X9 #: sf_dialogcontrol.xhp @@ -9959,7 +9959,7 @@ "par_id451598177924437\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. dBNCA #: sf_dialogcontrol.xhp @@ -9968,7 +9968,7 @@ "par_id94159817792441\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. gbjHB #: sf_dialogcontrol.xhp @@ -9977,7 +9977,7 @@ "par_id311598540066789\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. F8rNE #: sf_dialogcontrol.xhp @@ -9986,7 +9986,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing the control model. Refer to XControlModel and UnoControlDialogModel in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het UNO-object dat het besturingsmodel vertegenwoordigt. Raadpleeg XControlModel en UnoControlDialogModel in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. xfhaP #: sf_dialogcontrol.xhp @@ -9995,7 +9995,7 @@ "par_id811598178083501\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. o2H9W #: sf_dialogcontrol.xhp @@ -10004,7 +10004,7 @@ "par_id981598178083938\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. rrwm6 #: sf_dialogcontrol.xhp @@ -10013,7 +10013,7 @@ "par_id551598540079329\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. ZM6sk #: sf_dialogcontrol.xhp @@ -10022,7 +10022,7 @@ "par_id731598178083442\n" "help.text" msgid "The UNO object representing the control view. Refer to XControl and UnoControlDialog in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het UNO-object dat de controleweergave vertegenwoordigt. Raadpleeg XControl en UnoControlDialog in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. SAkJX #: sf_dialogcontrol.xhp @@ -10031,7 +10031,7 @@ "par_id741612699446459\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. yuAdF #: sf_dialogcontrol.xhp @@ -10040,7 +10040,7 @@ "par_id311612699446893\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. 7XckG #: sf_dialogcontrol.xhp @@ -10049,7 +10049,7 @@ "par_id691612699446892\n" "help.text" msgid "The UNO object representing the tree control data model. Refer to XMutableTreeDataModel in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Het UNO-object dat het boombesturingsgegevensmodel vertegenwoordigt. Raadpleeg XMutableTreeDataModel in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. dfWTW #: sf_dialogcontrol.xhp @@ -10058,7 +10058,7 @@ "hd_id81598540704978\n" "help.text" msgid "The Value property" -msgstr "" +msgstr "De Waarde-eigenschap" #. JHK7w #: sf_dialogcontrol.xhp @@ -10067,7 +10067,7 @@ "par_id10159854325492\n" "help.text" msgid "Control type" -msgstr "" +msgstr "Type besturingselement" #. 33wWa #: sf_dialogcontrol.xhp @@ -10076,7 +10076,7 @@ "par_id741598543254158\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. QLVMB #: sf_dialogcontrol.xhp @@ -10085,7 +10085,7 @@ "par_id961598543254444\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. jEyx9 #: sf_dialogcontrol.xhp @@ -10094,7 +10094,7 @@ "par_id741598543254108\n" "help.text" msgid "For toggle buttons only" -msgstr "" +msgstr "Alleen voor aan/uit knoppen" #. gCWiY #: sf_dialogcontrol.xhp @@ -10103,7 +10103,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "" +msgstr "Booleaans of geheel getal" #. 7GZGS #: sf_dialogcontrol.xhp @@ -10112,7 +10112,7 @@ "par_id521598543254630\n" "help.text" msgid "0, False: not checked
    1, True: checked
    2: grayed, don't know" -msgstr "" +msgstr "0, False: niet aangevinkt
    1, True: aangevinkt
    2: uitgegrijsd, weet niet" #. nZVA5 #: sf_dialogcontrol.xhp @@ -10121,7 +10121,7 @@ "par_id331598543254947\n" "help.text" msgid "The selected value. The ListIndex property is an alternate option." -msgstr "" +msgstr "De geselecteerde aardwachter. De karakteristieke ListIndex is een alternatieve optie." #. MWkEW #: sf_dialogcontrol.xhp @@ -10130,7 +10130,7 @@ "par_id5159854325443\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. kgfXR #: sf_dialogcontrol.xhp @@ -10139,7 +10139,7 @@ "par_id971598543254757\n" "help.text" msgid "A file name formatted in accordance with the FileNaming property of the ScriptForge.FileSystem service" -msgstr "" +msgstr "Een bestandsnaam die is opgemaakt in overeenstemming met de eigenschap FileNaming van de service ScriptForge.FileSystem" #. 9NVHN #: sf_dialogcontrol.xhp @@ -10148,7 +10148,7 @@ "par_id221598543254760\n" "help.text" msgid "String or Numeric" -msgstr "" +msgstr "Tekenreeks of numeriek" #. 53Ztp #: sf_dialogcontrol.xhp @@ -10157,7 +10157,7 @@ "par_id42159854325422\n" "help.text" msgid "String or array of strings" -msgstr "" +msgstr "Tekenreeks of matrix van tekenreeksen" #. 9NwJs #: sf_dialogcontrol.xhp @@ -10166,7 +10166,7 @@ "par_id601598543254780\n" "help.text" msgid "The selected row(s) as a scalar or as an array depending on the MultiSelect attribute" -msgstr "" +msgstr "De geselecteerde rij(en) als scalair of als matrix, afhankelijk van de attribuut MultiSelect" #. tFGhf #: sf_dialogcontrol.xhp @@ -10175,7 +10175,7 @@ "par_id461598543254909\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. YvPAp #: sf_dialogcontrol.xhp @@ -10184,7 +10184,7 @@ "par_id631598543254771\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. fBArb #: sf_dialogcontrol.xhp @@ -10193,7 +10193,7 @@ "par_id91598543254766\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Moet binnen de vooraf gedefinieerde grenzen vallen" #. ZragT #: sf_dialogcontrol.xhp @@ -10202,7 +10202,7 @@ "par_id851598543254624\n" "help.text" msgid "Each button has its own name. They are linked together if their TAB positions are contiguous. If a radiobutton is set to True, the other related buttons are automatically set to False" -msgstr "" +msgstr "Elke knop heeft zijn eigen naam. Ze zijn aan elkaar gekoppeld als hun TAB-posities aaneengesloten zijn. Als een keuzerondje is ingesteld op True, worden de andere gerelateerde knoppen automatisch ingesteld op False" #. m6Uyb #: sf_dialogcontrol.xhp @@ -10211,7 +10211,7 @@ "par_id531598543254869\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. MWdGb #: sf_dialogcontrol.xhp @@ -10220,7 +10220,7 @@ "par_id21598543254994\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Moet binnen de vooraf gedefinieerde grenzen vallen" #. CVTcE #: sf_dialogcontrol.xhp @@ -10229,7 +10229,7 @@ "par_id441598543254951\n" "help.text" msgid "One-dimensional array with the data of the currently selected row." -msgstr "" +msgstr "Eendimensionale matrix met de gegevens van de momenteel geselecteerde rij." #. a9AMF #: sf_dialogcontrol.xhp @@ -10238,7 +10238,7 @@ "par_id441598543254738\n" "help.text" msgid "The text appearing in the field" -msgstr "" +msgstr "De tekst die in het veld verschijnt" #. CABLr #: sf_dialogcontrol.xhp @@ -10247,7 +10247,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Eigenschappen gebeurtenis" #. c7srp #: sf_dialogcontrol.xhp @@ -10256,7 +10256,7 @@ "par_id41612629140856\n" "help.text" msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the scripting framework URI specification." -msgstr "" +msgstr "Retourneert een URI-tekenreeks met de verwijzing naar het script dat door de gebeurtenis is geactiveerd. Lees de specificatie ervan in de scripting framework URI-specificatie." #. fkFAt #: sf_dialogcontrol.xhp @@ -10265,7 +10265,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. 2sB8F #: sf_dialogcontrol.xhp @@ -10274,7 +10274,7 @@ "par_id401612628879819\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. 2A2Ex #: sf_dialogcontrol.xhp @@ -10283,7 +10283,7 @@ "par_id281612628879819\n" "help.text" msgid "Description as labeled in the Basic IDE" -msgstr "" +msgstr "Beschrijving zoals aangegeven in de Basic IDE" #. rSRBQ #: sf_dialogcontrol.xhp @@ -10292,7 +10292,7 @@ "par_id91612707166532\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. aABgD #: sf_dialogcontrol.xhp @@ -10301,7 +10301,7 @@ "par_id291612707166258\n" "help.text" msgid "Execute action" -msgstr "" +msgstr "Actie uitvoeren" #. KnFdW #: sf_dialogcontrol.xhp @@ -10310,7 +10310,7 @@ "par_id79161270716675\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JrRob #: sf_dialogcontrol.xhp @@ -10319,7 +10319,7 @@ "par_id831612707166731\n" "help.text" msgid "While adjusting" -msgstr "" +msgstr "Tijdens aanpassen" #. mpuj3 #: sf_dialogcontrol.xhp @@ -10328,7 +10328,7 @@ "par_id111612629836630\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 7Swj5 #: sf_dialogcontrol.xhp @@ -10337,7 +10337,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Bij het verkrijgen van focus" #. Mp4i7 #: sf_dialogcontrol.xhp @@ -10346,7 +10346,7 @@ "par_id291612629836294\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. ozGia #: sf_dialogcontrol.xhp @@ -10355,7 +10355,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Bij het verliezen van focus" #. TR5uW #: sf_dialogcontrol.xhp @@ -10364,7 +10364,7 @@ "par_id51612707354544\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. HREcr #: sf_dialogcontrol.xhp @@ -10373,7 +10373,7 @@ "par_id211612707354899\n" "help.text" msgid "Item status changed" -msgstr "" +msgstr "Itemstatus gewijzigd" #. L6e2x #: sf_dialogcontrol.xhp @@ -10382,7 +10382,7 @@ "par_id81612629836634\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. sVo6A #: sf_dialogcontrol.xhp @@ -10391,7 +10391,7 @@ "par_id881612629836744\n" "help.text" msgid "Key pressed" -msgstr "" +msgstr "Toets ingedrukt" #. pPBHX #: sf_dialogcontrol.xhp @@ -10400,7 +10400,7 @@ "par_id591612629836830\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. P6NX8 #: sf_dialogcontrol.xhp @@ -10409,7 +10409,7 @@ "par_id161612629836775\n" "help.text" msgid "Key released" -msgstr "" +msgstr "Toets losgelaten" #. XJGHA #: sf_dialogcontrol.xhp @@ -10418,7 +10418,7 @@ "par_id891612629836630\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. oCDXm #: sf_dialogcontrol.xhp @@ -10427,7 +10427,7 @@ "par_id461612629836679\n" "help.text" msgid "Mouse moved while key presses" -msgstr "" +msgstr "Muis bewogen tijdens toetsaanslagen" #. nLbMG #: sf_dialogcontrol.xhp @@ -10436,7 +10436,7 @@ "par_id131612629836291\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 9XdcG #: sf_dialogcontrol.xhp @@ -10445,7 +10445,7 @@ "par_id151612629836151\n" "help.text" msgid "Mouse inside" -msgstr "" +msgstr "Muis binnen" #. BZ7sC #: sf_dialogcontrol.xhp @@ -10454,7 +10454,7 @@ "par_id211612629836725\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. mzbBD #: sf_dialogcontrol.xhp @@ -10463,7 +10463,7 @@ "par_id361612629836624\n" "help.text" msgid "Mouse outside" -msgstr "" +msgstr "Muis buiten" #. fAD8Y #: sf_dialogcontrol.xhp @@ -10472,7 +10472,7 @@ "par_id311612629836481\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. FCBxu #: sf_dialogcontrol.xhp @@ -10481,7 +10481,7 @@ "par_id721612629836752\n" "help.text" msgid "Mouse moved" -msgstr "" +msgstr "Muis bewogen" #. 4DCtC #: sf_dialogcontrol.xhp @@ -10490,7 +10490,7 @@ "par_id981612629836116\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 8B9ct #: sf_dialogcontrol.xhp @@ -10499,7 +10499,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Muisknop ingedrukt" #. krueU #: sf_dialogcontrol.xhp @@ -10508,7 +10508,7 @@ "par_id711612629836704\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 4c5qE #: sf_dialogcontrol.xhp @@ -10517,7 +10517,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Muisknop losgelaten" #. FkyLb #: sf_dialogcontrol.xhp @@ -10526,7 +10526,7 @@ "par_id851612707606863\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. VudpK #: sf_dialogcontrol.xhp @@ -10535,7 +10535,7 @@ "par_id351612707606197\n" "help.text" msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control" -msgstr "" +msgstr "(Niet in Basic IDE) wanneer de uitbreidingsknop wordt ingedrukt op een knooppunt in een boomstructuur" #. TkEgQ #: sf_dialogcontrol.xhp @@ -10544,7 +10544,7 @@ "par_id121612707606251\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. quWBQ #: sf_dialogcontrol.xhp @@ -10553,7 +10553,7 @@ "par_id881612707606121\n" "help.text" msgid "(Not in Basic IDE) when a node in a tree control is selected" -msgstr "" +msgstr "(Niet in Basic IDE) wanneer een knooppunt in een boomstructuur is geselecteerd" #. qyb3B #: sf_dialogcontrol.xhp @@ -10562,7 +10562,7 @@ "par_id811612707606330\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. th6Kr #: sf_dialogcontrol.xhp @@ -10571,7 +10571,7 @@ "par_id621612707606219\n" "help.text" msgid "Text modified" -msgstr "" +msgstr "Tekst aangepast" #. YFbGT #: sf_dialogcontrol.xhp @@ -10580,7 +10580,7 @@ "hd_id421583670049913\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. xNrc5 #: sf_dialogcontrol.xhp @@ -10589,7 +10589,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the DialogControl Service" -msgstr "" +msgstr "Lijst met methoden in de service DialogControl" #. 5jtfg #: sf_dialogcontrol.xhp @@ -10598,7 +10598,7 @@ "par_id831612711823126\n" "help.text" msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. Refer to XMutableTreeNode in Application Programming Interface (API) documentation for detailed information." -msgstr "" +msgstr "Maak en retourneer een nieuw knooppunt van de boomstructuur als een UNO-object dat ondergeschikt is aan een bovenliggend knooppunt. Raadpleeg XMutableTreeNode in de Application Programming Interface (API)-documentatie voor gedetailleerde informatie." #. MrQnS #: sf_dialogcontrol.xhp @@ -10607,7 +10607,7 @@ "par_id741612711823706\n" "help.text" msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the OnNodeExpanded event - to complete the tree dynamically." -msgstr "" +msgstr "Deze methode kan worden aangeroepen voordat het dialoogvenster wordt weergegeven om de initiële boomstructuur te bouwen. Het kan ook worden aangeroepen vanuit een dialoog of controlegebeurtenis - met behulp van de gebeurtenis OnNodeExpanded - om de boom dynamisch te voltooien." #. T8xdA #: sf_dialogcontrol.xhp @@ -10616,7 +10616,7 @@ "par_id761612711823834\n" "help.text" msgid "parentnode: A node UNO object, of type com.sun.star.awt.tree.XMutableTreeNode." -msgstr "" +msgstr "parentnode: Een knooppunt UNO-object, van het type com.sun.star.awt.tree.XMutableTreeNode." #. qJ9ej #: sf_dialogcontrol.xhp @@ -10625,7 +10625,7 @@ "par_id791612711823819\n" "help.text" msgid "displayvalue: The text appearing in the tree control box." -msgstr "" +msgstr "displayvalue: De tekst die in de boomstructuur verschijnt." #. Pzz72 #: sf_dialogcontrol.xhp @@ -10634,7 +10634,7 @@ "par_id911612711823382\n" "help.text" msgid "datavalue: Any value associated with the new node. datavalue may be a string, a number or a date. Omit the argument when not applicable." -msgstr "" +msgstr "datavalue: Elke waarde die is gekoppeld aan het nieuwe knooppunt. datavalue kan een tekenreeks, een getal of een datum zijn. Laat het argument weg als het niet van toepassing is." #. 2pLPL #: sf_dialogcontrol.xhp @@ -10643,7 +10643,7 @@ "par_id901620317110685\n" "help.text" msgid "%PRODUCTNAME Basic and Python examples pick up current document's myDialog dialog from Standard library." -msgstr "" +msgstr "%PRODUCTNAME Basic- en Python-voorbeelden halen het dialoogvenster myDialog van het huidige document uit de bibliotheek Standard." #. 8B3qP #: sf_dialogcontrol.xhp @@ -10652,7 +10652,7 @@ "par_id221612713087885\n" "help.text" msgid "Return True when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased." -msgstr "" +msgstr "Retourneert True wanneer een subboom, ondergeschikt aan een bovenliggend knooppunt, met succes in een boomstructuur kon worden ingevoegd. Als het bovenliggende knooppunt al onderliggende knooppunten had voordat deze methode werd aangeroepen, worden de onderliggende knooppunten gewist." #. beond #: sf_dialogcontrol.xhp @@ -10661,7 +10661,7 @@ "par_id781612713087722\n" "help.text" msgid "parentnode: A node UNO object, of type com.sun.star.awt.tree.XMutableTreeNode." -msgstr "" +msgstr "parentnode: Een knooppunt UNO-object, van het type com.sun.star.awt.tree.XMutableTreeNode." #. QJ73V #: sf_dialogcontrol.xhp @@ -10670,7 +10670,7 @@ "par_id36161271308759\n" "help.text" msgid "flattree: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the GetRows method applied on the SFDatabases.Database service. When an array item containing the text to be displayed is Empty or Null, no new subnode is created and the remainder of the row is skipped." -msgstr "" +msgstr "flattree: een tweedimensionale matrix gesorteerd op de kolommen die de weergegeven waarden bevatten. Een dergelijke matrix kan worden uitgegeven door de methode GetRows die wordt toegepast op de service SFDatabases.Database. Als een matrix-item dat de tekst bevat die moet worden weergegeven, Empty of Null is, wordt er geen nieuwe subnode gemaakt en wordt de rest van de rij overgeslagen." #. r5QNj #: sf_dialogcontrol.xhp @@ -10679,7 +10679,7 @@ "bas_id61612716027443\n" "help.text" msgid "Flat tree >>>> Resulting subtree" -msgstr "" +msgstr "Flat tree >>>> Resulterende subboom" #. MUi8U #: sf_dialogcontrol.xhp @@ -10688,7 +10688,7 @@ "par_id51612713087915\n" "help.text" msgid "withdatavalue: When False default value is used, every column of flattree contains the text to be displayed in the tree control. When True, the texts to be displayed (displayvalue) are in columns 0, 2, 4, ... while the data values (datavalue) are in columns 1, 3, 5, ..." -msgstr "" +msgstr "withdatavalue: Als de standaardwaarde False wordt gebruikt, bevat elke kolom van flattree de tekst die moet worden weergegeven in de boomstructuur. Wanneer True, staan de teksten die moeten worden weergegeven (displayvalue) in kolommen 0, 2, 4, ... terwijl de gegevenswaarden (datavalue) staan in kolommen 1, 3, 5, ..." #. fWnhZ #: sf_dialogcontrol.xhp @@ -10697,7 +10697,7 @@ "par_id151612780723320\n" "help.text" msgid "Returns a new root node of the tree control, as a node UNO object of type com.sun.star.awt.tree.XMutableTreeNode. The new tree root is inserted below pre-existing root nodes. " -msgstr "" +msgstr "Retourneert een nieuw hoofdknooppunt van het boombesturingselement, als een knooppunt UNO-object van het type com.sun.star.awt.tree.XMutableTreeNode. De nieuwe boomwortel wordt ingevoegd onder reeds bestaande wortelknooppunten. " #. YT845 #: sf_dialogcontrol.xhp @@ -10706,7 +10706,7 @@ "par_id821612780723965\n" "help.text" msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically." -msgstr "" +msgstr "Deze methode kan worden aangeroepen voordat het dialoogvenster wordt weergegeven om de initiële boomstructuur te bouwen. Het kan ook worden aangeroepen vanuit een dialoogvenser of besturingsgebeurtenis om de boom dynamisch te voltooien." #. JXyjD #: sf_dialogcontrol.xhp @@ -10715,7 +10715,7 @@ "par_id791612117823819\n" "help.text" msgid "displayvalue: The text appearing in the tree control box." -msgstr "" +msgstr "displayvalue: De tekst die in de boomstructuur verschijnt." #. XxGFd #: sf_dialogcontrol.xhp @@ -10724,7 +10724,7 @@ "par_id171612781589503\n" "help.text" msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching displayvalue pattern or having its data value equal to datavalue. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type com.sun.star.awt.tree.XMutableTreeNode. " -msgstr "" +msgstr "Doorloopt de boom en vindt recursief, beginnend bij de wortel, een knoop die aan een aantal criteria voldoet. Ofwel - 1 overeenkomst is genoeg - waarbij de weergavewaarde overeenkomt met het patroon displayvalue of de gegevenswaarde gelijk is aan datavalue. De vergelijkingen kunnen al dan niet hoofdlettergevoelig zijn. Het eerste overeenkomende exemplaar wordt geretourneerd als een knooppunt UNO-object van het type com.sun.star.awt.tree.XMutableTreeNode. " #. 5Jxkj #: sf_dialogcontrol.xhp @@ -10733,7 +10733,7 @@ "par_id741612782475457\n" "help.text" msgid "When not found, the method returns Nothing, to be tested with the IsNull() builtin function." -msgstr "" +msgstr "Indien niet gevonden, retourneert de methode Nothing, om te testen met de ingebouwde functie IsNull()." #. n7pE8 #: sf_dialogcontrol.xhp @@ -10742,7 +10742,7 @@ "par_id41612781589363\n" "help.text" msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event." -msgstr "" +msgstr "Deze methode kan worden aangeroepen voordat het dialoogvenster wordt weergegeven om de initiële boomstructuur te bouwen. Het kan ook worden aangeroepen vanuit een dialoog of besturingsgebeurtenis." #. Dd4Ti #: sf_dialogcontrol.xhp @@ -10751,7 +10751,7 @@ "par_id541613670199211\n" "help.text" msgid "One argument out of displayvalue or datavalue must be specified. If both present, one match is sufficient to select the node." -msgstr "" +msgstr "Eén argument uit displayvalue of datavalue moet worden opgegeven. Als beide aanwezig zijn, is één overeenkomst voldoende om het knooppunt te selecteren." #. MF7PA #: sf_dialogcontrol.xhp @@ -10760,7 +10760,7 @@ "par_id591612781589560\n" "help.text" msgid "displayvalue: The pattern to be matched. Refer to SF_String.IsLike() method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for." -msgstr "" +msgstr "displayvalue: het patroon waaraan moet worden gekoppeld. Raadpleeg de SF_String.IsLike() methode voor de lijst met mogelijke jokertekens. Als deze gelijk is aan de tekenreeks met lengte nul (standaard), wordt er niet naar deze weergavewaarde gezocht." #. BE58W #: sf_dialogcontrol.xhp @@ -10778,7 +10778,7 @@ "par_id871583933076448\n" "help.text" msgid "Set the focus on the control. Return True if focusing was successful." -msgstr "" +msgstr "Stel de focus op de besturing. Retourneer True als het scherpstellen gelukt is." #. 6YvuU #: sf_dialogcontrol.xhp @@ -10787,7 +10787,7 @@ "par_id151598178880227\n" "help.text" msgid "This method is often called from a dialog or control event." -msgstr "" +msgstr "Deze methode wordt vaak aangeroepen vanuit een dialoog of controlegebeurtenis." #. it2QN #: sf_dialogcontrol.xhp @@ -10796,7 +10796,7 @@ "par_id541638553960464\n" "help.text" msgid "Fills a TableControl with the given data. All preexisting data is cleared before inserting the new data passed as argument." -msgstr "" +msgstr "Vult een TableControl met de gegeven gegevens. Alle reeds bestaande gegevens worden gewist voordat de nieuwe gegevens worden ingevoerd die als argument zijn doorgegeven." #. Vmmag #: sf_dialogcontrol.xhp @@ -10805,7 +10805,7 @@ "par_id551638554058131\n" "help.text" msgid "When the TableControl is added to the dialog, it is possible to use the Basic IDE to define whether column and row headers will be shown in the table. If the TableControl has column and/or row headers, the first column and/or row in the provided data array are used as labels for the table headers." -msgstr "" +msgstr "Wanneer de TableControl aan het dialoogvenster is toegevoegd, is het mogelijk om de Basic IDE te gebruiken om te definiëren of kolom- en rijkoppen in de tabel worden weergegeven. Als de TableControl kolom- en/of rijkoppen heeft, worden de eerste kolom en/of rij in de verstrekte gegevensmatrix gebruikt als labels voor de tabelkoppen." #. qn4UN #: sf_dialogcontrol.xhp @@ -10814,7 +10814,7 @@ "par_id411638569396108\n" "help.text" msgid "This method returns True when successful." -msgstr "" +msgstr "Deze methode retourneert True wanneer succesvol." #. LESVB #: sf_dialogcontrol.xhp @@ -10823,7 +10823,7 @@ "par_id1001584541257133\n" "help.text" msgid "dataarray: Data to be entered into the table represented as an Array of Arrays in Basic or a tuple of tuples in Python. The data must include column and row headers if they are to be displayed by the TableControl." -msgstr "" +msgstr "dataarray: Gegevens die in de tabel moeten worden ingevoerd, worden weergegeven als een matrix van marixen in Basic of een tupel van tupels in Python. De gegevens moeten kolom- en rijkoppen bevatten als ze moeten worden weergegeven door de TableControl." #. 6AKaJ #: sf_dialogcontrol.xhp @@ -10832,7 +10832,7 @@ "par_id1001584541257025\n" "help.text" msgid "widths: Array containing the relative widths of each column. In other words, widths = Array(1, 2) means that the second column is twice as wide as the first one. If the number of values in the array is smaller than the number of columns in the table, then the last value in the array is used to define the width of the remaining columns." -msgstr "" +msgstr "widths: Matrix met de relatieve breedtes van elke kolom. Met andere woorden, widths = Array(1, 2) betekent dat de tweede kolom twee keer zo breed is als de eerste. Als het aantal waarden in de matrix kleiner is dan het aantal kolommen in de tabel, dan wordt de laatste waarde in de matrix gebruikt om de breedte van de resterende kolommen te definiëren." #. AEGq3 #: sf_dialogcontrol.xhp @@ -10841,7 +10841,7 @@ "par_id1001584541257007\n" "help.text" msgid "alignments: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns." -msgstr "" +msgstr "alignments: Definieert de uitlijning in elke kolom als een tekenreeks waarin elk teken \"L\" (Links), \"C\" (Midden), \"R\" (Rechts) of \" \" kan zijn (witruimte, standaard, wat betekent dat links voor tekenreeksen en rechts voor numerieke waarden). Als de lengte van de tekenreeks korter is dan het aantal kolommen in de tabel, wordt het laatste teken in de tekenreeks gebruikt om de uitlijning van de resterende kolommen te definiëren." #. FCNEg #: sf_dialogcontrol.xhp @@ -10850,7 +10850,7 @@ "par_id381638569172413\n" "help.text" msgid "The following example assumes that the dialog myDialog has a TableControl named Grid1 with \"Show header row\" and \"Show column row\" properties set to \"Yes\"." -msgstr "" +msgstr "In het volgende voorbeeld wordt ervan uitgegaan dat het dialoogvenster myDialog een TableControl heeft met de naam Grid1 met de eigenschappen \"Toon koprij\" en \"Toon kolomrij\" ingesteld op \" Ja\"." #. N9Byz #: sf_dialogcontrol.xhp @@ -10859,7 +10859,7 @@ "par_id171638650502346\n" "help.text" msgid "The Value property returns the selected row in the table. If no row is selected, an empty Array object is returned. The following code snippet shows how to test if any row is selected in the table." -msgstr "" +msgstr "De eigenschap Value retourneert de geselecteerde rij in de tabel. Als er geen rij is geselecteerd, wordt een leeg Matrix-object geretourneerd. Het volgende codefragment laat zien hoe u kunt testen of een rij in de tabel is geselecteerd." #. C3f3k #: sf_dialogcontrol.xhp @@ -10868,7 +10868,7 @@ "bas_id361638651540588\n" "help.text" msgid "MsgBox \"No row selected.\"" -msgstr "" +msgstr "MsgBox \"Geen rij geselecteerd.\"" #. iQ94A #: sf_dialogcontrol.xhp @@ -10877,7 +10877,7 @@ "bas_id781638651541028\n" "help.text" msgid "MsgBox \"Row \" & oTable.ListIndex & \" is selected.\"" -msgstr "" +msgstr "MsgBox \"Rij \" & oTable.ListIndex & \" is geselecteerd.\"" #. yyATt #: sf_dialogcontrol.xhp @@ -10886,7 +10886,7 @@ "pyc_id111638569958471\n" "help.text" msgid "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")" -msgstr "" +msgstr "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")" #. HNmmm #: sf_dialogcontrol.xhp @@ -10895,7 +10895,7 @@ "par_id671598619892378\n" "help.text" msgid "Add a new line at the end of a multiline text field. A newline character will be inserted when appropriate. The method returns True when successful." -msgstr "" +msgstr "Voeg een nieuwe regel toe aan het einde van een tekstveld met meerdere regels. Waar nodig wordt een teken voor een nieuwe regel ingevoegd. De methode retourneert True wanneer succesvol." #. D29nu #: sf_dialogcontrol.xhp @@ -10904,7 +10904,7 @@ "par_id941598619892915\n" "help.text" msgid "An error is raised if the actual control is not of the type TextField or is not multiline." -msgstr "" +msgstr "Er treedt een fout op als het feitelijke besturingselement niet van het type TextField is of niet uit meerdere regels bestaat." #. jmBh7 #: sf_dialogcontrol.xhp @@ -10913,7 +10913,7 @@ "par_id1001584541257789\n" "help.text" msgid "Line: The string to insert. Default is an empty line." -msgstr "" +msgstr "Line: De tekenreeks die moet worden ingevoegd. Standaard is een lege regel." #. opNus #: sf_dictionary.xhp @@ -10922,7 +10922,7 @@ "tit\n" "help.text" msgid "ScriptForge.Dictionary service" -msgstr "" +msgstr "ScriptForge.Dictionary service" #. 4L4A6 #: sf_dictionary.xhp @@ -10931,7 +10931,7 @@ "hd_id731582733781114\n" "help.text" msgid "ScriptForge.Dictionary service" -msgstr "" +msgstr "ScriptForge.Dictionary dienst" #. LJG3Z #: sf_dictionary.xhp @@ -10940,7 +10940,7 @@ "par_id891582884466217\n" "help.text" msgid "A dictionary is a collection of key-item pairs" -msgstr "" +msgstr "Een woordenboek is een verzameling sleutel-itemparen" #. fZDre #: sf_dictionary.xhp @@ -10949,7 +10949,7 @@ "par_id861582884516571\n" "help.text" msgid "The key is a case-insensitive string" -msgstr "" +msgstr "De sleutel is een niet hoofdlettergevoelige tekenreeks" #. 2AdDG #: sf_dictionary.xhp @@ -10958,7 +10958,7 @@ "par_id531582884549542\n" "help.text" msgid "Items may be of any type" -msgstr "" +msgstr "Items kunnen van elk type zijn" #. Bqyf3 #: sf_dictionary.xhp @@ -10967,7 +10967,7 @@ "par_id891582884593057\n" "help.text" msgid "Keys and items can be retrieved, counted, updated, and much more." -msgstr "" +msgstr "Sleutels en items kunnen worden opgehaald, geteld, bijgewerkt en nog veel meer." #. LtaTT #: sf_dictionary.xhp @@ -10976,7 +10976,7 @@ "par_id971582884636922\n" "help.text" msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic Collection object, however with more features. For example, Collection objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string." -msgstr "" +msgstr "De Dictionary-service is vergelijkbaar met het ingebouwde %PRODUCTNAME Basic Collection-object, maar met meer functies. Bijvoorbeeld, Collection-objecten ondersteunen het ophalen van sleutels niet. Bovendien bieden woordenboeken extra mogelijkheden zoals het vervangen van sleutels, testen of een specifieke sleutel al bestaat en het omzetten van het woordenboek in een matrix-object of JSON-string." #. RkMHR #: sf_dictionary.xhp @@ -10985,7 +10985,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. Qp3A4 #: sf_dictionary.xhp @@ -10994,7 +10994,7 @@ "par_id821610388789467\n" "help.text" msgid "The following example creates myDict as an empty dictionary." -msgstr "" +msgstr "In het volgende voorbeeld wordt myDict gemaakt als een leeg woordenboek." #. BghTS #: sf_dictionary.xhp @@ -11003,7 +11003,7 @@ "par_id71158288562139\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Het wordt aanbevolen om na gebruik middelen vrij te maken:" #. gpGvc #: sf_dictionary.xhp @@ -11012,7 +11012,7 @@ "par_id551626869252987\n" "help.text" msgid "The example below creates an empty instance of the Dictionary service and uses the Python native update method to populate it with the contents of a Python dict object." -msgstr "" +msgstr "Het onderstaande voorbeeld maakt een lege instantie van de service Dictionary en gebruikt de Python-native update-methode om deze te vullen met de inhoud van een Python dict-object ." #. bnDdK #: sf_dictionary.xhp @@ -11021,7 +11021,7 @@ "pyc_id61626869417128\n" "help.text" msgid "# Initialize myDict as an empty dict object" -msgstr "" +msgstr "# Initialiseer myDict als een leeg dict-object" #. Zijqj #: sf_dictionary.xhp @@ -11030,7 +11030,7 @@ "pyc_id921626869402748\n" "help.text" msgid "# Load the values of dico into myDict" -msgstr "" +msgstr "# Laad de waarden van dico in myDict" #. G4WCE #: sf_dictionary.xhp @@ -11039,7 +11039,7 @@ "par_id981626869718081\n" "help.text" msgid "It is possible to create an instance of the Dictionary service using a Python dict object as argument as shown in the following example." -msgstr "" +msgstr "Het is mogelijk om een instantie van de service Dictionary te maken met een Python dict-object als argument, zoals in het volgende voorbeeld wordt getoond." #. ymvAC #: sf_dictionary.xhp @@ -11048,7 +11048,7 @@ "pyc_id201626869185236\n" "help.text" msgid "# Initialize myDict with the content of dico" -msgstr "" +msgstr "# Initialiseer myDict met de inhoud van dico" #. UHQFC #: sf_dictionary.xhp @@ -11057,7 +11057,7 @@ "par_id211626699007613\n" "help.text" msgid "Because Python has built-in dictionary support, most of the methods in the Dictionary service are available for Basic scripts only. Exceptions are ConvertToPropertyValues and ImportFromPropertyValues that are supported in both Basic and Python." -msgstr "" +msgstr "Omdat Python ingebouwde woordenboekondersteuning heeft, zijn de meeste methoden in de service Dictionary alleen beschikbaar voor basisscripts. Uitzonderingen zijn ConvertToPropertyValues en ImportFromPropertyValues die worden ondersteund in zowel Basic als Python." #. Dd4Pp #: sf_dictionary.xhp @@ -11066,7 +11066,7 @@ "hd_id351582885195476\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. hYF2s #: sf_dictionary.xhp @@ -11075,7 +11075,7 @@ "par_id41582885195836\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. EgAoj #: sf_dictionary.xhp @@ -11084,7 +11084,7 @@ "par_id31582885195372\n" "help.text" msgid "Read-only" -msgstr "" +msgstr "Alleen-lezen" #. pHem5 #: sf_dictionary.xhp @@ -11093,7 +11093,7 @@ "par_id31582885195238\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. NnCGT #: sf_dictionary.xhp @@ -11102,7 +11102,7 @@ "par_id931582885195131\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. B8ZfD #: sf_dictionary.xhp @@ -11111,7 +11111,7 @@ "par_id221582885195686\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JnMbF #: sf_dictionary.xhp @@ -11120,7 +11120,7 @@ "par_id881582885195976\n" "help.text" msgid "The number of entries in the dictionary" -msgstr "" +msgstr "Het aantal vermeldingen in het woordenboek" #. TZ37p #: sf_dictionary.xhp @@ -11129,7 +11129,7 @@ "par_id441582886030118\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. G6fcd #: sf_dictionary.xhp @@ -11138,7 +11138,7 @@ "par_id131582886030297\n" "help.text" msgid "Array of Variants" -msgstr "" +msgstr "Matrix van varianten" #. EykBP #: sf_dictionary.xhp @@ -11147,7 +11147,7 @@ "par_id471582886030489\n" "help.text" msgid "The list of items as a one dimensional array" -msgstr "" +msgstr "De lijst met items als een eendimensionale matrix" #. HTnKu #: sf_dictionary.xhp @@ -11156,7 +11156,7 @@ "par_id971582886791838\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. mXmC9 #: sf_dictionary.xhp @@ -11165,7 +11165,7 @@ "par_id271582886791111\n" "help.text" msgid "Array of Strings" -msgstr "" +msgstr "Matrix van tekenreeksen" #. MxjyM #: sf_dictionary.xhp @@ -11174,7 +11174,7 @@ "par_id16158288679167\n" "help.text" msgid "The list of keys as a one dimensional array" -msgstr "" +msgstr "De lijst met sleutels als een eendimensionale matrix" #. EvjDj #: sf_dictionary.xhp @@ -11183,7 +11183,7 @@ "par_id461582886731495\n" "help.text" msgid "The Keys and Items properties return their respective contents, using an identical ordering. The order is unrelated to the creation sequence." -msgstr "" +msgstr "De eigenschappen Keys en Items geven hun respectievelijke inhoud terug, met een identieke volgorde. De volgorde is niet gerelateerd aan de volgorde van het maken." #. suQ9E #: sf_dictionary.xhp @@ -11192,7 +11192,7 @@ "par_id931610389113917\n" "help.text" msgid "The following example uses the Keys property to iterate over all keys in the dictionary myDict." -msgstr "" +msgstr "In het volgende voorbeeld wordt de eigenschap Keys gebruikt om alle sleutels in het woordenboek myDict te herhalen." #. Thoy8 #: sf_dictionary.xhp @@ -11201,7 +11201,7 @@ "par_id921606472825856\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. PqSBg #: sf_dictionary.xhp @@ -11210,7 +11210,7 @@ "par_id831582887670029\n" "help.text" msgid "Adds a new key-item pair into the dictionary. Returns True if successful." -msgstr "" +msgstr "Voegt een nieuw sleutel-itempaar toe aan het woordenboek. Retourneert True indien succesvol." #. 4zw8b #: sf_dictionary.xhp @@ -11219,7 +11219,7 @@ "par_id341582887670030\n" "help.text" msgid "key: String value used to identify the Item. The key is not case-sensitive." -msgstr "" +msgstr "key: Tekenreeks die wordt gebruikt om het item te identificeren. De sleutel is niet hoofdlettergevoelig." #. UFFFG #: sf_dictionary.xhp @@ -11228,7 +11228,7 @@ "par_id401582887670030\n" "help.text" msgid "item: Any value, including an array, a Basic object, a UNO object, a dictionary, etc." -msgstr "" +msgstr "item: Elke waarde, inclusief een matrix, een basisobject, een UNO-object, een woordenboek, enz.." #. aNDWv #: sf_dictionary.xhp @@ -11237,7 +11237,7 @@ "par_id1001610391308765\n" "help.text" msgid "Every key must be unique in the same dictionary. If the key already exists in the dictionary, a DUPLICATEKEYERROR will be raised. Keys that are made of space characters will raise a INVALIDKEYERROR error." -msgstr "" +msgstr "Elke sleutel moet uniek zijn in hetzelfde woordenboek. Als de sleutel al in het woordenboek bestaat, wordt een DUPLICATEKEYERROR weergegeven. Sleutels die zijn gemaakt van spatietekens zullen een INVALIDKEYERROR-fout veroorzaken." #. FDWkm #: sf_dictionary.xhp @@ -11246,7 +11246,7 @@ "par_id81582888424104\n" "help.text" msgid "Stores the contents of the dictionary in a two-columns zero-based array. The keys are stored in the first column and the items are stored in the second column." -msgstr "" +msgstr "Slaat de inhoud van het woordenboek op in een op nul gebaseerde matrix met twee kolommen. De sleutels worden opgeslagen in de eerste kolom en de items worden opgeslagen in de tweede kolom." #. FdwcF #: sf_dictionary.xhp @@ -11255,7 +11255,7 @@ "par_id341610391565678\n" "help.text" msgid "If the dictionary is empty, this method will return an empty Array." -msgstr "" +msgstr "Als het woordenboek leeg is, retourneert deze methode een lege Matrix." #. MnEGs #: sf_dictionary.xhp @@ -11264,7 +11264,7 @@ "par_id831601296836981\n" "help.text" msgid "Converts the contents of a dictionary to JSON (JavaScript Object Notation) text." -msgstr "" +msgstr "Converteert de inhoud van een woordenboek naar JSON (JavaScript Object Notation)-tekst." #. nAZ9s #: sf_dictionary.xhp @@ -11273,7 +11273,7 @@ "hd_id261601297024828\n" "help.text" msgid "Limitations" -msgstr "" +msgstr "Beperkingen" #. DDmVt #: sf_dictionary.xhp @@ -11282,7 +11282,7 @@ "par_id401601297178073\n" "help.text" msgid "This method supports the following data types: String, Boolean, numbers, Null and Empty. Arrays containing items of those types are also allowed, whatever their dimensions. Dates are converted into strings, however they cannot be used inside Arrays. Other data types are converted to their string representation using the SF_String.Represent service." -msgstr "" +msgstr "Deze methode ondersteunt de volgende gegevenstypen: Tekenreeks, Booleaans, getallen, Null en Leeg. Matrixen met items van dit type zijn ook toegestaan, ongeacht hun afmetingen. Datums worden omgezet in tekenreeksen, maar ze kunnen niet binnen matrixen worden gebruikt. Andere gegevenstypen worden geconverteerd naar hun tekenreeksweergave met behulp van de service SF_String.Represent." #. stuTQ #: sf_dictionary.xhp @@ -11291,7 +11291,7 @@ "par_id8816012968362\n" "help.text" msgid "indent: When indent is a positive number or a text, JSON array elements and object members are pretty-printed with that indentation level. A negative indent value will add new lines with no indentation. The default value is an empty string \"\" which selects the most compact representation. Using a positive integer for indent indents that many spaces per level. When indent is a string, such as Chr(9) or Tab(1), the Tab character is used to indent each level." -msgstr "" +msgstr "indent: indien indent een positief getal of een tekst is, worden JSON-matrix-elementen en objectleden mooi afgedrukt met dat inspringingsniveau. Een negatieve indent-waarde voegt nieuwe regels toe zonder inspringing. De standaardwaarde is een lege tekenreeks \"\" die de meest compacte weergave selecteert. Het gebruik van een positief geheel getal voor indent laat zoveel spaties per niveau inspringen. Als indent een tekenreeks is, zoals Chr(9) of Tab(1), wordt het Tab-teken gebruikt om elk niveau te laten inspringen." #. sQuKi #: sf_dictionary.xhp @@ -11300,7 +11300,7 @@ "par_id151582889470596\n" "help.text" msgid "Stores the contents of the dictionary into an array of PropertyValues." -msgstr "" +msgstr "Slaat de inhoud van het woordenboek op in een matrix van PropertyValues." #. rTa2V #: sf_dictionary.xhp @@ -11309,7 +11309,7 @@ "par_id231610392665049\n" "help.text" msgid "Each entry in the array is a com.sun.star.beans.PropertyValue. The key is stored in Name, the item is stored in Value." -msgstr "" +msgstr "Elk item in de matrix is een com.sun.star.beans.PropertyValue. De sleutel wordt opgeslagen in Name, het item wordt opgeslagen in Value." #. 5MnFS #: sf_dictionary.xhp @@ -11318,7 +11318,7 @@ "par_id341610392705367\n" "help.text" msgid "If one of the items has a type Date, it is converted to a com.sun.star.util.DateTime structure. If one of the items is an empty array, it is converted to Null. The resulting array is empty when the dictionary is empty." -msgstr "" +msgstr "Als een van de items het type Date heeft, wordt het geconverteerd naar een com.sun.star.util.DateTime-structuur. Als een van de items een lege matrix is, wordt deze geconverteerd naar Null. De resulterende matrix is leeg als het woordenboek leeg is." #. EU4BC #: sf_dictionary.xhp @@ -11327,7 +11327,7 @@ "bas_id531610393130289\n" "help.text" msgid "'Adds some properties to the dictionary" -msgstr "" +msgstr "'Voegt enkele eigenschappen toe aan het woordenboek" #. dEAPF #: sf_dictionary.xhp @@ -11336,7 +11336,7 @@ "bas_id571610393137959\n" "help.text" msgid "'Converts to an Array of PropertyValue objects" -msgstr "" +msgstr "'Converteert naar een matrix van PropertyValue-objecten'" #. XCGFp #: sf_dictionary.xhp @@ -11345,7 +11345,7 @@ "par_id771626700938786\n" "help.text" msgid "Note in the example below that a Python dictionary needs to be passed as the second argument of the CreateScriptService method." -msgstr "" +msgstr "Merk op dat in het onderstaande voorbeeld een Python-woordenboek moet worden doorgegeven als het tweede argument van de CreateScriptService-methode." #. wTUQt #: sf_dictionary.xhp @@ -11354,7 +11354,7 @@ "par_id421610393306916\n" "help.text" msgid "Many services and methods in the UNO library take in parameters represented using the PropertyValue struct, which is part of the LibreOffice API." -msgstr "" +msgstr "Veel services en methoden in de UNO-bibliotheek gebruiken parameters die worden weergegeven met behulp van de PropertyValue-struct, die deel uitmaakt van de LibreOffice API." #. 3afLF #: sf_dictionary.xhp @@ -11363,7 +11363,7 @@ "par_id841582889812916\n" "help.text" msgid "Determines if a key exists in the dictionary." -msgstr "" +msgstr "Bepaalt of een sleutel in het woordenboek voorkomt." #. RgUSD #: sf_dictionary.xhp @@ -11372,7 +11372,7 @@ "par_id971582889812917\n" "help.text" msgid "key: The key to be looked up in the dictionary." -msgstr "" +msgstr "key: De sleutel die moet worden opgezocht in het woordenboek." #. UAkEx #: sf_dictionary.xhp @@ -11381,7 +11381,7 @@ "bas_id811606485130666\n" "help.text" msgid "'Adds some properties to the dictionary" -msgstr "" +msgstr "'Voegt enkele eigenschappen toe aan het woordenboek" #. JBBVt #: sf_dictionary.xhp @@ -11390,7 +11390,7 @@ "par_id791601391980978\n" "help.text" msgid "Adds the content of a JSON (JavaScript Object Notation) string into the current dictionary. Returns True if successful." -msgstr "" +msgstr "Voegt de inhoud van een JSON (JavaScript Object Notation)-tekenreeks toe aan het huidige woordenboek. Retourneert True indien succesvol." #. NtQCD #: sf_dictionary.xhp @@ -11399,7 +11399,7 @@ "hd_id961601392113644\n" "help.text" msgid "Limitations" -msgstr "" +msgstr "Beperkingen" #. dGRph #: sf_dictionary.xhp @@ -11408,7 +11408,7 @@ "par_id481601392181131\n" "help.text" msgid "The JSON string may contain numbers, text, booleans, null values and arrays containing those types. It must not contain JSON objects namely sub-dictionaries." -msgstr "" +msgstr "De JSON-tekenreeks kan getallen, tekst, booleaans, null-waarden en matrixen bevatten die die typen bevatten. Het mag geen JSON-objecten bevatten, namelijk subwoordenboeken." #. LyxQD #: sf_dictionary.xhp @@ -11417,7 +11417,7 @@ "par_id511601392205908\n" "help.text" msgid "An attempt is made to convert text to date if the item matches one of these patterns: YYYY-MM-DD, HH:MM:SS or YYYY-MM-DD HH:MM:SS." -msgstr "" +msgstr "Er wordt geprobeerd de tekst tot op heden om te zetten als het item overeenkomt met een van deze patronen: JJJJ-MM-DD, UU:MM:SS of JJJJ-MM-DD UU:MM:SS." #. 5cknM #: sf_dictionary.xhp @@ -11426,7 +11426,7 @@ "par_id69160139198061\n" "help.text" msgid "inputstr: The string to import." -msgstr "" +msgstr "inputstr: De te importeren tekenreeks." #. GDAGm #: sf_dictionary.xhp @@ -11435,7 +11435,7 @@ "par_id201601391980268\n" "help.text" msgid "overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Beware that dictionary keys are not case-sensitive while names are case-sensitive in JSON strings." -msgstr "" +msgstr "overwrite: Indien True, kunnen items met dezelfde naam in het woordenboek voorkomen en worden hun waarden overschreven. Indien False (standaard), zullen herhaalde sleutels een fout opleveren. Let op dat woordenboeksleutels niet hoofdlettergevoelig zijn, terwijl namen in JSON-tekenreeksen hoofdlettergevoelig zijn." #. aBFC5 #: sf_dictionary.xhp @@ -11444,7 +11444,7 @@ "bas_id521601393254694\n" "help.text" msgid "'The (sub)-dictionaries \"address\" and \"phoneNumbers\" (0) and (1) are imported as Empty values." -msgstr "" +msgstr "'De (sub)woordenboeken \"adres\" en \"telefoonnummers\" (0) en (1) worden geïmporteerd als lege waarden." #. 9j5u2 #: sf_dictionary.xhp @@ -11453,7 +11453,7 @@ "par_id651588941968228\n" "help.text" msgid "Inserts the contents of an array of PropertyValue objects into the current dictionary. PropertyValue Names are used as Keys in the dictionary, whereas Values contain the corresponding values. Returns True if successful." -msgstr "" +msgstr "Voegt de inhoud van een matrix van PropertyValue-objecten in het huidige woordenboek in. PropertyValue Namen worden gebruikt als Sleutels in het woordenboek, terwijl Waarden de bijbehorende waarden bevatten. Retourneert True indien succesvol." #. 95A5W #: sf_dictionary.xhp @@ -11462,7 +11462,7 @@ "par_id751588941968522\n" "help.text" msgid "propertyvalues: A zero-based 1-dimensional array containing com.sun.star.beans.PropertyValue objects. This parameter may also be a single propertyvalue object not contained in an Array." -msgstr "" +msgstr "propertyvalues: Een op nul gebaseerde 1-dimensionale matrix met com.sun.star.beans.PropertyValue-objecten. Deze parameter kan ook een enkel PropertyValue-object zijn dat niet in een matrix staat." #. g5bHm #: sf_dictionary.xhp @@ -11471,7 +11471,7 @@ "par_id21588941968131\n" "help.text" msgid "overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Note that dictionary keys are not case-sensitive in Basic, whereas names are case-sensitive in sets of property values and in Python dictionaries." -msgstr "" +msgstr "overwrite: Indien True, kunnen items met dezelfde naam in het woordenboek voorkomen en worden hun waarden overschreven. Indien False (standaard), zullen herhaalde sleutels een fout opleveren. Merk op dat woordenboeksleutels in Basic niet hoofdlettergevoelig zijn, terwijl namen hoofdlettergevoelig zijn in sets met eigenschapswaarden en in Python-woordenboeken." #. GKtsH #: sf_dictionary.xhp @@ -11480,7 +11480,7 @@ "par_id641626703615898\n" "help.text" msgid "The examples below first create an array with two PropertyValue objects and then convert it to a dictionary." -msgstr "" +msgstr "De onderstaande voorbeelden maken eerst een matrix met twee PropertyValue-objecten en converteren deze vervolgens naar een woordenboek." #. 3rJRP #: sf_dictionary.xhp @@ -11489,7 +11489,7 @@ "par_id891582890366737\n" "help.text" msgid "Retrieves an existing dictionary entry based on its key. Returns the value of the item if successful, otherwise returns Empty." -msgstr "" +msgstr "Haalt een bestaand woordenboekitem op op basis van de sleutel. Retourneert de waarde van het item indien succesvol, anders wordt Leeg geretourneerd." #. CGLFi #: sf_dictionary.xhp @@ -11498,7 +11498,7 @@ "par_id551582890399669\n" "help.text" msgid "key: Not case-sensitive. Must exist in the dictionary, otherwise an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Niet hoofdlettergevoelig. Als de sleutel niet in het woordenboek voorkomt, wordt de fout UNKNOWNKEYERROR weergegeven." #. rGqyT #: sf_dictionary.xhp @@ -11507,7 +11507,7 @@ "par_id181610395933967\n" "help.text" msgid "The following example iterates over all keys in the dictionary and uses the Item method to access their values." -msgstr "" +msgstr "Het volgende voorbeeld herhaalt alle sleutels in het woordenboek en gebruikt de methode Item om toegang te krijgen tot hun waarden." #. QJTte #: sf_dictionary.xhp @@ -11516,7 +11516,7 @@ "par_id891582890388737\n" "help.text" msgid "Removes an existing dictionary entry based on its key. Returns True if successful." -msgstr "" +msgstr "Verwijdert een bestaand woordenboekitem op basis van de sleutel. Retourneert True indien succesvol." #. EhVL2 #: sf_dictionary.xhp @@ -11525,7 +11525,7 @@ "par_id551582890366999\n" "help.text" msgid "key: Not case-sensitive. Must exist in the dictionary, otherwise an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Niet hoofdlettergevoelig. Moet in het woordenboek voorkomen, anders wordt een UNKNOWNKEYERROR-fout weergegeven." #. GyK3j #: sf_dictionary.xhp @@ -11534,7 +11534,7 @@ "par_id921582896275624\n" "help.text" msgid "Removes all the entries from the dictionary. Returns True if successful." -msgstr "" +msgstr "Verwijdert alle vermeldingen uit het woordenboek. Retourneert True indien succesvol." #. GSzP5 #: sf_dictionary.xhp @@ -11543,7 +11543,7 @@ "par_id281582895615444\n" "help.text" msgid "Replaces an existing item value based on its key. Returns True if successful." -msgstr "" +msgstr "Vervangt een bestaande itemwaarde op basis van de sleutel. Retourneert True indien succesvol." #. w4w9A #: sf_dictionary.xhp @@ -11552,7 +11552,7 @@ "par_id991582895615535\n" "help.text" msgid "key: String value representing the key whose value will be replaced. Not case-sensitive. If the key does not exist in the dictionary, an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Tekenreekswaarde die de sleutel vertegenwoordigt waarvan de waarde wordt vervangen. Niet hoofdlettergevoelig. Als de sleutel niet in het woordenboek voorkomt, wordt de fout UNKNOWNKEYERROR weergegeven." #. FA4hz #: sf_dictionary.xhp @@ -11561,7 +11561,7 @@ "par_id721582895615186\n" "help.text" msgid "value: The new value of the item referred to with the key parameter." -msgstr "" +msgstr "value: De nieuwe waarde van het item waarnaar wordt verwezen met de parameter key." #. Y46D4 #: sf_dictionary.xhp @@ -11570,7 +11570,7 @@ "par_id571582896597766\n" "help.text" msgid "Replaces an existing key in the dictionary by a new key. The item value is left unchanged. Returns True if successful." -msgstr "" +msgstr "Vervangt een bestaande sleutel in het woordenboek door een nieuwe sleutel. De artikelwaarde blijft ongewijzigd. Retourneert True indien succesvol." #. jKp7C #: sf_dictionary.xhp @@ -11579,7 +11579,7 @@ "par_id911582896597619\n" "help.text" msgid "key: String value representing the key to be replaced. Not case-sensitive. If the key does not exist in the dictionary, a UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Tekenreeks die de sleutel vertegenwoordigt die moet worden vervangen. Niet hoofdlettergevoelig. Als de sleutel niet in het woordenboek voorkomt, wordt de fout UNKNOWNKEYERROR weergegeven." #. Dku2D #: sf_dictionary.xhp @@ -11588,7 +11588,7 @@ "par_id531582896597989\n" "help.text" msgid "value: String value for the new key. Not case-sensitive. If the new key already exists in the dictionary, an DUPLICATEKEYERROR error is raised." -msgstr "" +msgstr "value: Tekenreeks voor de nieuwe sleutel. Niet hoofdlettergevoelig. Als de nieuwe sleutel al in het woordenboek bestaat, wordt de fout DUPLICATEKEYERROR weergegeven." #. jasej #: sf_document.xhp @@ -11597,7 +11597,7 @@ "tit\n" "help.text" msgid "SFDocuments.Document service" -msgstr "" +msgstr "SFDocuments.Document-service" #. KmD7j #: sf_document.xhp @@ -11606,7 +11606,7 @@ "hd_id731582733781114\n" "help.text" msgid "SFDocuments.Document service" -msgstr "" +msgstr "SFDocuments.Document-service" #. FoEeH #: sf_document.xhp @@ -11615,7 +11615,7 @@ "par_id381589189355849\n" "help.text" msgid "The SFDocuments library provides methods and properties to facilitate the management and manipulation of LibreOffice documents." -msgstr "" +msgstr "De bibliotheek SFDocuments biedt methoden en eigenschappen om het beheer en de manipulatie van LibreOffice-documenten te vergemakkelijken." #. urZhL #: sf_document.xhp @@ -11624,7 +11624,7 @@ "par_id591589189364267\n" "help.text" msgid "Methods that are applicable for all types of documents (Text Documents, Sheets, Presentations, etc) are provided by the SFDocuments.Document service. Some examples are:" -msgstr "" +msgstr "Methoden die van toepassing zijn op alle soorten documenten (tekstdocumenten, bladen, presentaties, enz.) worden geleverd door de service SFDocuments.Document. Enkele voorbeelden zijn:" #. VgG69 #: sf_document.xhp @@ -11633,7 +11633,7 @@ "par_id891589189452545\n" "help.text" msgid "Opening, closing and saving documents" -msgstr "" +msgstr "Documenten openen, sluiten en opslaan" #. XfHGF #: sf_document.xhp @@ -11642,7 +11642,7 @@ "par_id811589189463041\n" "help.text" msgid "Accessing standard or custom properties of documents" -msgstr "" +msgstr "Toegang tot standaard- of aangepaste eigenschappen van documenten" #. C6JgF #: sf_document.xhp @@ -11651,7 +11651,7 @@ "par_id301611085807704\n" "help.text" msgid "The properties, methods or arguments marked with (*) are NOT applicable to Base documents." -msgstr "" +msgstr "De eigenschappen, methoden of argumenten gemarkeerd met (*) zijn NIET van toepassing op Basic-documenten." #. HPr8i #: sf_document.xhp @@ -11660,7 +11660,7 @@ "par_id241589189701274\n" "help.text" msgid "Methods and properties that are specific to certain LibreOffice components are stored in separate services, such as SFDocuments.SF_Calc and SFDocuments.SF_Base." -msgstr "" +msgstr "Methoden en eigenschappen die specifiek zijn voor bepaalde LibreOffice-componenten worden opgeslagen in afzonderlijke services, zoals SFDocuments.SF_Calc en SFDocuments.SF_Base." #. Fdi8i #: sf_document.xhp @@ -11669,7 +11669,7 @@ "par_id641611090052376\n" "help.text" msgid "Although the Basic language does not offer inheritance between object classes, the latter services may be considered as subclasses of the SFDocuments.Document service. Such subclasses can invoke the properties and methods described below." -msgstr "" +msgstr "Hoewel de Basic-taal geen overerving tussen objectklassen biedt, kunnen de laatstgenoemde services worden beschouwd als subklassen van de SFDocuments.Document-service. Dergelijke subklassen kunnen een beroep doen op de eigenschappen en methoden die hieronder worden beschreven." #. YMWaA #: sf_document.xhp @@ -11678,7 +11678,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. X6BV3 #: sf_document.xhp @@ -11687,7 +11687,7 @@ "par_id581611090387382\n" "help.text" msgid "Below are three variants of how the Document service can be invoked." -msgstr "" +msgstr "Hieronder staan drie varianten van hoe de service Document kan worden aangeroepen." #. o39cT #: sf_document.xhp @@ -11696,7 +11696,7 @@ "par_id181622816732197\n" "help.text" msgid "Using the getDocument method from the ScriptForge.UI service:" -msgstr "" +msgstr "Met behulp van de getDocument-methode van de ScriptForge.UI-service:" #. 6AZF9 #: sf_document.xhp @@ -11705,7 +11705,7 @@ "par_id181622818236233\n" "help.text" msgid "Alternatively you can use the methods CreateDocument and OpenDocument from the UI service." -msgstr "" +msgstr "Als alternatief kunt u de methoden CreateDocument en OpenDocument van de UI-service gebruiken." #. kv6B9 #: sf_document.xhp @@ -11714,7 +11714,7 @@ "par_id691622816765571\n" "help.text" msgid "Directly if the document is already open." -msgstr "" +msgstr "Direct als het document al geopend is." #. yFDEW #: sf_document.xhp @@ -11723,7 +11723,7 @@ "par_id821622816825012\n" "help.text" msgid "From a macro triggered by a document event." -msgstr "" +msgstr "Van een macro die is geactiveerd door een documentgebeurtenis." #. FxfW2 #: sf_document.xhp @@ -11732,7 +11732,7 @@ "par_id831622816562430\n" "help.text" msgid "The Document service is closely related to the UI and FileSystem services." -msgstr "" +msgstr "De service Document is nauw verwant aan de services UI en FileSystem." #. QF9FG #: sf_document.xhp @@ -11741,7 +11741,7 @@ "par_id891582733781994\n" "help.text" msgid "Except when the document was closed by program with the CloseDocument method (it is then superfluous), it is recommended to free resources after use:" -msgstr "" +msgstr "Behalve wanneer het document werd afgesloten door een programma met de CloseDocument-methode (het is dan overbodig), wordt aanbevolen om na gebruik bronnen vrij te maken:" #. LyvNw #: sf_document.xhp @@ -11750,7 +11750,7 @@ "par_id71611090922315\n" "help.text" msgid "The use of the prefix \"SFDocuments.\" while calling the service is optional." -msgstr "" +msgstr "Het gebruik van het voorvoegsel \"SFDocuments.\" tijdens het aanroepen van de service is optioneel." #. z3oxC #: sf_document.xhp @@ -11759,7 +11759,7 @@ "hd_id351582885195476\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. 6NTY6 #: sf_document.xhp @@ -11768,7 +11768,7 @@ "par_id41582885195836\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. wUbi9 #: sf_document.xhp @@ -11777,7 +11777,7 @@ "par_id31582885195372\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. NfJEr #: sf_document.xhp @@ -11786,7 +11786,7 @@ "par_id31582885195238\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. QZzvi #: sf_document.xhp @@ -11795,7 +11795,7 @@ "par_id931582885195131\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. wBpru #: sf_document.xhp @@ -11804,7 +11804,7 @@ "par_id861582885655779\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. QEZC4 #: sf_document.xhp @@ -11813,7 +11813,7 @@ "par_id581582885655885\n" "help.text" msgid "Returns a ScriptForge.Dictionary object instance. After update, can be passed again to the property for updating the document.
    Individual items of the dictionary may be either strings, numbers, (Basic) dates or com.sun.star.util.Duration items." -msgstr "" +msgstr "Retourneert een objectinstantie ScriptForge.Dictionary. Na update kan het opnieuw worden doorgegeven aan de eigenschap om het document bij te werken.
    Individuele items van het woordenboek kunnen strings, cijfers, (basis)datums of com.sun.star.util.Duration items." #. DktDb #: sf_document.xhp @@ -11822,7 +11822,7 @@ "par_id441582886030118\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. DNFGz #: sf_document.xhp @@ -11831,7 +11831,7 @@ "par_id471582886030489\n" "help.text" msgid "Gives access to the Description property of the document (also known as \"Comments\")" -msgstr "" +msgstr "Geeft toegang tot de eigenschap Beschrijving van het document (ook bekend als \"Notities\")" #. wMzx8 #: sf_document.xhp @@ -11840,7 +11840,7 @@ "par_id971582886791838\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Mm6E5 #: sf_document.xhp @@ -11849,7 +11849,7 @@ "par_id16158288679167\n" "help.text" msgid "Returns a ScriptForge.Dictionary object containing all the entries. Document statistics are included. Note that they are specific to the type of document. As an example, a Calc document includes a \"CellCount\" entry. Other documents do not." -msgstr "" +msgstr "Retourneert een ScriptForge.Dictionary-object dat alle vermeldingen bevat. Documentstatistieken zijn inbegrepen. Merk op dat ze specifiek zijn voor het type document. Een Calc-document bevat bijvoorbeeld een invoer \"CellCount\". Andere documenten niet." #. Ew7vi #: sf_document.xhp @@ -11858,7 +11858,7 @@ "par_id201589194571955\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Aw2Tv #: sf_document.xhp @@ -11867,7 +11867,7 @@ "par_id941589194571801\n" "help.text" msgid "String value with the document type (\"Base\", \"Calc\", \"Writer\", etc)" -msgstr "" +msgstr "Tekenreeks met het documenttype (\"Base\", \"Calc\", \"Writer\", enz.)" #. Yo8T4 #: sf_document.xhp @@ -11876,7 +11876,7 @@ "par_id761589194633950\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. pSbRu #: sf_document.xhp @@ -11885,7 +11885,7 @@ "par_id611589194633853\n" "help.text" msgid "Exactly one of these properties is True for a given document." -msgstr "" +msgstr "Precies één van deze eigenschappen is True voor een bepaald document." #. oKQWB #: sf_document.xhp @@ -11894,7 +11894,7 @@ "par_id231589194910179\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. CDTBC #: sf_document.xhp @@ -11903,7 +11903,7 @@ "par_id311589194910190\n" "help.text" msgid "Gives access to the Keywords property of the document. Represented as a comma-separated list of keywords" -msgstr "" +msgstr "Geeft toegang tot de eigenschap Trefwoorden van het document. Weergegeven als een door komma's gescheiden lijst met trefwoorden" #. EHM84 #: sf_document.xhp @@ -11912,7 +11912,7 @@ "par_id921589638614972\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JGTQz #: sf_document.xhp @@ -11921,7 +11921,7 @@ "par_id801589638614518\n" "help.text" msgid "True if the document is actually in read-only mode" -msgstr "" +msgstr "True als het document zich in de alleen-lezen modus bevindt" #. zK55N #: sf_document.xhp @@ -11930,7 +11930,7 @@ "par_id201589195028733\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 99ZxC #: sf_document.xhp @@ -11939,7 +11939,7 @@ "par_id371589195028843\n" "help.text" msgid "Gives access to the Subject property of the document." -msgstr "" +msgstr "Geeft toegang tot de eigenschap Onderwerp van het document." #. dH6ct #: sf_document.xhp @@ -11948,7 +11948,7 @@ "par_id451589195028910\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. TCiBh #: sf_document.xhp @@ -11957,7 +11957,7 @@ "par_id771589195028748\n" "help.text" msgid "Gives access to the Title property of the document." -msgstr "" +msgstr "Geeft toegang tot de eigenschap Titel van het document." #. SwDBh #: sf_document.xhp @@ -11966,7 +11966,7 @@ "par_id221582885195686\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. PRmJE #: sf_document.xhp @@ -11975,7 +11975,7 @@ "par_id371582885195525\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. 9TNH3 #: sf_document.xhp @@ -11984,7 +11984,7 @@ "par_id881582885195976\n" "help.text" msgid "The UNO object com.sun.star.lang.XComponent or com.sun.star.comp.dba.ODatabaseDocument representing the document" -msgstr "" +msgstr "Het UNO-object com.sun.star.lang.XComponent of com.sun.star.comp.dba .ODatabaseDocument dat het document vertegenwoordigt" #. coFyk #: sf_document.xhp @@ -11993,7 +11993,7 @@ "par_id861611146581334\n" "help.text" msgid "The example below prints all the properties of a document. Note that the oDoc object returned by the UI.OpenDocument method is a SFDocuments.Document object." -msgstr "" +msgstr "In het onderstaande voorbeeld worden alle eigenschappen van een document afgedrukt. Merk op dat het oDoc-object dat wordt geretourneerd door de UI.OpenDocument-methode, een SFDocuments.Document-object is." #. eqL5J #: sf_document.xhp @@ -12002,7 +12002,7 @@ "par_id571622826920742\n" "help.text" msgid "To access document properties in a Python script the user needs to directly access them using their names, as shown below:" -msgstr "" +msgstr "Om toegang te krijgen tot documenteigenschappen in een Python-script, moet de gebruiker deze rechtstreeks openen met behulp van hun naam, zoals hieronder weergegeven:" #. wmiy9 #: sf_document.xhp @@ -12011,7 +12011,7 @@ "par_id651606319520519\n" "help.text" msgid "List of Methods in the Document Service" -msgstr "" +msgstr "Lijst met methoden in de Documentenservice" #. UVWQb #: sf_document.xhp @@ -12020,7 +12020,7 @@ "par_id93158919969864\n" "help.text" msgid "Returns True if the document could be activated. Otherwise, there is no change in the actual user interface. It is equivalent to the Activate method of the UI service." -msgstr "" +msgstr "Retourneert True als het document zou kunnen worden geactiveerd. Anders is er geen verandering in de eigenlijke gebruikersinterface. Het is gelijk aan de Activate-methode van de UI-service." #. qcuXA #: sf_document.xhp @@ -12029,7 +12029,7 @@ "par_id421611148353046\n" "help.text" msgid "This method is useful when one needs to give focus for a document that is minimized or hidden." -msgstr "" +msgstr "Deze methode is handig wanneer men focus moet geven aan een document dat geminimaliseerd of verborgen is." #. vFzrg #: sf_document.xhp @@ -12038,7 +12038,7 @@ "par_id601611148017930\n" "help.text" msgid "The example below considers that the file \"My_File.ods\" is already open but not active." -msgstr "" +msgstr "In het onderstaande voorbeeld wordt ervan uitgegaan dat het bestand \"My_File.ods\" al open maar niet actief is." #. zGRcs #: sf_document.xhp @@ -12047,7 +12047,7 @@ "par_id601611148080503\n" "help.text" msgid "Keep in mind that you can invoke the Document service by passing to CreateScriptService either \"Document\" or \"SFDocuments.Document\"" -msgstr "" +msgstr "Houd er rekening mee dat u de service Document kunt aanroepen door \"Document\" of \"SFDocuments.Document\" door te geven aan CreateScriptService" #. rB7Ab #: sf_document.xhp @@ -12056,7 +12056,7 @@ "par_id651589200121138\n" "help.text" msgid "Closes the document. If the document is already closed, regardless of how the document was closed, this method has no effect and returns False." -msgstr "" +msgstr "Sluit het document. Als het document al is gesloten, ongeacht hoe het document is gesloten, heeft deze methode geen effect en retourneert False." #. 64F7E #: sf_document.xhp @@ -12065,7 +12065,7 @@ "par_id341611149562894\n" "help.text" msgid "The method will also return False if the user declines to close it." -msgstr "" +msgstr "De methode retourneert ook False als de gebruiker weigert deze te sluiten." #. AGBjg #: sf_document.xhp @@ -12074,7 +12074,7 @@ "par_id981611149616934\n" "help.text" msgid "Returns True if the document was successfully closed." -msgstr "" +msgstr "Retourneert True als het document met succes is gesloten." #. Wt7L9 #: sf_document.xhp @@ -12083,7 +12083,7 @@ "par_id361589200121646\n" "help.text" msgid "saveask : If True (default), the user is invited to confirm if the changes should be written on disk. This argument is ignored if the document was not modified." -msgstr "" +msgstr "saveask : Indien True (standaard), wordt de gebruiker uitgenodigd om te bevestigen of de wijzigingen op schijf moeten worden geschreven. Dit argument wordt genegeerd als het document niet is gewijzigd." #. CGKZA #: sf_document.xhp @@ -12092,7 +12092,7 @@ "par_id156589200123048\n" "help.text" msgid "Exports the document directly as a PDF file to the specified location. Returns True if the PDF file was successfully created." -msgstr "" +msgstr "Exporteert het document rechtstreeks als PDF-bestand naar de opgegeven locatie. Retourneert True als het PDF-bestand met succes is gemaakt." #. PBk4E #: sf_document.xhp @@ -12101,7 +12101,7 @@ "par_id811638276067119\n" "help.text" msgid "The export options can be set either manually using the File - Export As - Export as PDF dialog or by calling the methods GetPDFExportOptions and SetPDFExportOptions from the Session service." -msgstr "" +msgstr "De exportopties kunnen handmatig worden ingesteld met behulp van het dialoogvenster Bestand - Exporteren als - Exporteren als PDF of door de methoden GetPDFExportOptions en SetPDFExportOptions aan te roepen vanuit de Sessie-service." #. SFwEd #: sf_document.xhp @@ -12110,7 +12110,7 @@ "par_id211635436910641\n" "help.text" msgid "filename: The full path and file name of the PDF to be created. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Het volledige pad en de bestandsnaam van de te maken PDF. Het moet de notatie SF_FileSystem.FileNaming volgen." #. E6KyY #: sf_document.xhp @@ -12119,7 +12119,7 @@ "par_id141635436912005\n" "help.text" msgid "overwrite: Specifies if the destination file can be overwritten (Default = False). An error will occur if overwrite is set to False and the destination file already exists." -msgstr "" +msgstr "overwrite: Geeft aan of het doelbestand kan worden overschreven (Standaard = False). Er zal een fout optreden als overwrite is ingesteld op False en het doelbestand al bestaat." #. d9RRn #: sf_document.xhp @@ -12128,7 +12128,7 @@ "par_id141635436913587\n" "help.text" msgid "pages: String specifying which pages will be exported. This argument uses the same notation as in the dialog File - Export As - Export as PDF." -msgstr "" +msgstr "pages: tekenreeks die aangeeft welke pagina's worden geëxporteerd. Dit argument gebruikt dezelfde notatie als in het dialoogvenster Bestand - Exporteren als - Exporteren als PDF." #. kBDPk #: sf_document.xhp @@ -12137,7 +12137,7 @@ "par_id141635436919655\n" "help.text" msgid "password: Specifies a password to open the PDF file." -msgstr "" +msgstr "password: Specificeert een wachtwoord om het PDF-bestand te openen." #. joeXi #: sf_document.xhp @@ -12146,7 +12146,7 @@ "par_id141635436913365\n" "help.text" msgid "watermark: Text to be used as watermark in the PDF file, which will be drawn in every page of the resulting PDF." -msgstr "" +msgstr "watermark: Tekst die moet worden gebruikt als watermerk in het PDF-bestand, dat op elke pagina van de resulterende PDF wordt getekend." #. NmChF #: sf_document.xhp @@ -12155,7 +12155,7 @@ "par_id301638234284727\n" "help.text" msgid "The following example exports the current document as a PDF file, defines a password and overwrites the destination file if it already exists." -msgstr "" +msgstr "Het volgende voorbeeld exporteert het huidige document als een PDF-bestand, definieert een wachtwoord en overschrijft het doelbestand als dit al bestaat." #. wEW7B #: sf_document.xhp @@ -12164,7 +12164,7 @@ "par_id311638276257020\n" "help.text" msgid "The code snippet below gets the current PDF export options and uses them to create the PDF file." -msgstr "" +msgstr "Het onderstaande codefragment haalt de huidige PDF-exportopties op en gebruikt deze om het PDF-bestand te maken." #. 7uUWr #: sf_document.xhp @@ -12173,7 +12173,7 @@ "bas_id851638277174798\n" "help.text" msgid "' Sets to True the option to export comments as PDF notes" -msgstr "" +msgstr "' Stelt de optie in om opmerkingen als PDF-notities te exporteren op True" #. HNC9m #: sf_document.xhp @@ -12182,7 +12182,7 @@ "par_id156589200121138\n" "help.text" msgid "This method sends the contents of the document to the default printer or to the printer defined by the SetPrinter method." -msgstr "" +msgstr "Deze methode stuurt de inhoud van het document naar de standaardprinter of naar de printer die is gedefinieerd door de SetPrinter-methode." #. CJxTR #: sf_document.xhp @@ -12191,7 +12191,7 @@ "par_id981611169416934\n" "help.text" msgid "Returns True if the document was successfully printed." -msgstr "" +msgstr "Retourneert True als het document is afgedrukt." #. uQMeV #: sf_document.xhp @@ -12200,7 +12200,7 @@ "par_id211635436910093\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages." -msgstr "" +msgstr "pages: De pagina's die als een tekenreeks moeten worden afgedrukt, zoals in de gebruikersinterface. Voorbeeld: \"1-4;10;15-18\". Standaard is dit alle pagina's." #. EHtFi #: sf_document.xhp @@ -12209,7 +12209,7 @@ "par_id141635436912146\n" "help.text" msgid "copies: The number of copies. Default is 1." -msgstr "" +msgstr "copies: Het aantal exemplaren. Standaard is 1." #. Nmwv9 #: sf_document.xhp @@ -12218,7 +12218,7 @@ "par_id991589202413257\n" "help.text" msgid "Runs a command on a document. The command is executed without arguments." -msgstr "" +msgstr "Voert een commando op een document uit. Het commando heeft geen argumenten." #. MGb6t #: sf_document.xhp @@ -12227,7 +12227,7 @@ "par_id921611152932311\n" "help.text" msgid "A few typical commands are: Save, SaveAs, ExportToPDF, SetDocumentProperties, Undo, Copy, Paste, etc." -msgstr "" +msgstr "Een paar voorbeelden zijn: Save, SaveAs, ExportToPDF, SetDocumentProperties, Undo, Copy en Paste." #. qBhYc #: sf_document.xhp @@ -12236,7 +12236,7 @@ "par_id261589202778896\n" "help.text" msgid "The document itself does not need to be active to be able to run commands." -msgstr "" +msgstr "Het document zelf hoeft niet actief te zijn om opdrachten te kunnen uitvoeren." #. QSiFB #: sf_document.xhp @@ -12245,7 +12245,7 @@ "par_id401589202413575\n" "help.text" msgid "command: Case-sensitive string containing the command in English. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong." -msgstr "" +msgstr "command: Hoofdlettergevoelige tekenreeks met het commando in het Engels. Het commando wordt niet gecontroleerd. Als er na de aanroep niets lijkt te gebeuren dan was het commando waarschijnlijk fout." #. wQF35 #: sf_document.xhp @@ -12254,7 +12254,7 @@ "par_id721611153068137\n" "help.text" msgid "The following example runs the \"SelectData\" command in a Calc sheet named \"MyFile.ods\", which will result in the selection of the data area based on the currently selected cell." -msgstr "" +msgstr "In dit voorbeeld wordt het commando \"SelectData\" commando in een Calc-bestand \"MyFile.ods\" uitgevoerd, wat resulteert in de selectie van een aantal cellen gebaseerd op de huidige geselecteerde cel." #. avaEg #: sf_document.xhp @@ -12263,7 +12263,7 @@ "par_id751611153375195\n" "help.text" msgid "The example above actually runs the UNO command .uno:SelectData. Hence, to use the RunCommand method it is necessary to remove the \".uno:\" substring." -msgstr "" +msgstr "In het bovenstaande voorbeeld wordt het UNO-commando .uno:SelectData uitgevoerd. Om de RunCommand methode te gebruiken is het dus nodig om de \".uno:\" substring te verwijderen." #. JRHRS #: sf_document.xhp @@ -12272,7 +12272,7 @@ "par_id191611153511038\n" "help.text" msgid "Each LibreOffice component has its own set of commands available. One easy way to learn commands is going to Tools > Customize > Keyboard. When you position your mouse over a function in the Function list, a tooltip will appear with the corresponding UNO command." -msgstr "" +msgstr "Elk LibreOffice-component heeft zijn eigen set beschikbare commando's. Om ze te leren kennen kunt u via Extra > Aanpassen > Toetsenbord de lijst Functie zien. Als u daar met de muis overheen gaat ziet u een tip met het overeenkomende UNO-commando." #. enSv9 #: sf_document.xhp @@ -12281,7 +12281,7 @@ "par_id81589202925519\n" "help.text" msgid "Stores the document to the file location from which it was loaded. The method is ignored if the document was not modified." -msgstr "" +msgstr "Slaat het document op op de bestandslocatie van waaruit het is geladen. De methode wordt genegeerd als het document niet is gewijzigd." #. sFUcr #: sf_document.xhp @@ -12290,7 +12290,7 @@ "par_id731611153918907\n" "help.text" msgid "Returns False if the document could not be saved. An error is raised if the file is open as read-only, or if it is a new file that has not been saved yet." -msgstr "" +msgstr "Retourneert False als het document niet kon worden opgeslagen. Er wordt een foutmelding gegeven als het bestand als alleen-lezen is geopend of als het een nieuw bestand is dat nog niet is opgeslagen." #. Ys5oF #: sf_document.xhp @@ -12299,7 +12299,7 @@ "par_id211589203690937\n" "help.text" msgid "The document itself does not need to be active to run this method." -msgstr "" +msgstr "Het document zelf hoeft niet actief te zijn om deze methode uit te voeren." #. 75K92 #: sf_document.xhp @@ -12308,7 +12308,7 @@ "par_id121589203370778\n" "help.text" msgid "Stores the document to the given file location. The new location becomes the new file name on which simple Save method calls will be applied." -msgstr "" +msgstr "Slaat het document op de opgegeven bestandslocatie op. De nieuwe locatie wordt de nieuwe bestandsnaam waarop eenvoudige methodeaanroepen Save worden toegepast." #. R8D2A #: sf_document.xhp @@ -12317,7 +12317,7 @@ "par_id31611154475602\n" "help.text" msgid "Returns False if the document could not be saved. An error is raised when overwriting the destination is rejected or when the destination has its read-only attribute set." -msgstr "" +msgstr "Retourneert False als het document niet kon worden opgeslagen. Er treedt een fout op wanneer het overschrijven van de bestemming wordt afgewezen of wanneer het alleen-lezen kenmerk van de bestemming is ingesteld." #. GAAfy #: sf_document.xhp @@ -12326,7 +12326,7 @@ "par_id391589203370902\n" "help.text" msgid "The document itself does not need to be active to run this method." -msgstr "" +msgstr "Het document zelf hoeft niet actief te zijn om deze methode uit te voeren." #. 7tX6c #: sf_document.xhp @@ -12335,7 +12335,7 @@ "par_id331589203370950\n" "help.text" msgid "filename: A string containing the file name to be used. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Een tekenreeks die de bestandsnaam bevat die moet worden gebruikt. Het moet de notatie SF_FileSystem.FileNaming volgen." #. niFkh #: sf_document.xhp @@ -12344,7 +12344,7 @@ "par_id631589204010142\n" "help.text" msgid "overwrite: If True, the destination file may be overwritten (default = False)." -msgstr "" +msgstr "overwrite: Indien True, kan het doelbestand worden overschreven (default = False)." #. snX8q #: sf_document.xhp @@ -12353,7 +12353,7 @@ "par_id811589204084107\n" "help.text" msgid "password (*): A non-space string to protect the document." -msgstr "" +msgstr "password (*): Een tekenreeks zonder spatie om het document te beschermen." #. g3wDy #: sf_document.xhp @@ -12362,7 +12362,7 @@ "par_id451589204163772\n" "help.text" msgid "filtername (*): The name of a filter that should be used for saving the document. If this argument is passed, then the filter must exist." -msgstr "" +msgstr "filtername (*): De naam van een filter dat moet worden gebruikt om het document op te slaan. Als dit argument wordt doorgegeven, moet het filter bestaan." #. qZaAJ #: sf_document.xhp @@ -12371,7 +12371,7 @@ "par_id981589204207800\n" "help.text" msgid "filteroptions (*): An optional string of options associated with the filter." -msgstr "" +msgstr "filteroptions (*): Een optionele tekenreeks met opties die aan het filter zijn gekoppeld." #. FJywB #: sf_document.xhp @@ -12380,7 +12380,7 @@ "par_id911589205147502\n" "help.text" msgid "Stores a copy of or export the document to the given file location. The actual location is unchanged." -msgstr "" +msgstr "Slaat een kopie op van of exporteer het document naar de opgegeven bestandslocatie. De werkelijke locatie is ongewijzigd." #. ovvew #: sf_document.xhp @@ -12389,7 +12389,7 @@ "par_id381611154800685\n" "help.text" msgid "Returns False if the document could not be saved. An error is raised when overwriting the destination is rejected or when the destination has its read-only attribute set." -msgstr "" +msgstr "Retourneert False als het document niet kon worden opgeslagen. Er treedt een fout op wanneer het overschrijven van de bestemming wordt afgewezen of wanneer het alleen-lezen kenmerk van de bestemming is ingesteld." #. BFKFn #: sf_document.xhp @@ -12398,7 +12398,7 @@ "par_id11589205147643\n" "help.text" msgid "The document itself does not need to be active to run this method." -msgstr "" +msgstr "Het document zelf hoeft niet actief te zijn om deze methode uit te voeren." #. FAjhF #: sf_document.xhp @@ -12407,7 +12407,7 @@ "par_id301589205147697\n" "help.text" msgid "filename: A string containing the file name to be used. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Een tekenreeks die de bestandsnaam bevat die moet worden gebruikt. Het moet de notatie SF_FileSystem.FileNaming volgen." #. zr6Rx #: sf_document.xhp @@ -12416,7 +12416,7 @@ "par_id851589205147348\n" "help.text" msgid "overwrite: If True, the destination file may be overwritten (default = False)." -msgstr "" +msgstr "overwrite: Indien True, kan het doelbestand worden overschreven (standaard = False)." #. k2uRD #: sf_document.xhp @@ -12425,7 +12425,7 @@ "par_id821589205147330\n" "help.text" msgid "password (*): A non-space string to protect the document." -msgstr "" +msgstr "password (*): Een tekenreeks zonder spatie om het document te beschermen." #. eyrsV #: sf_document.xhp @@ -12434,7 +12434,7 @@ "par_id67158920514729\n" "help.text" msgid "filtername (*): The name of a filter that should be used for saving the document. If this argument is passed, then the filter must exist." -msgstr "" +msgstr "filtername (*): De naam van een filter dat moet worden gebruikt om het document op te slaan. Als dit argument wordt doorgegeven, moet het filter bestaan." #. vA4NU #: sf_document.xhp @@ -12443,7 +12443,7 @@ "par_id881589205147911\n" "help.text" msgid "filteroptions (*): An optional string of options associated with the filter." -msgstr "" +msgstr "filteroptions (*): Een optionele tekenreeks met opties die aan het filter zijn gekoppeld." #. 96EBt #: sf_document.xhp @@ -12452,7 +12452,7 @@ "par_id911298505147502\n" "help.text" msgid "Defines the printer options for the document." -msgstr "" +msgstr "Definieert de printeropties voor het document." #. zoaQX #: sf_document.xhp @@ -12461,7 +12461,7 @@ "par_id381651114800685\n" "help.text" msgid "Returns True when successful." -msgstr "" +msgstr "Retourneert True indien succesvol." #. hGfVh #: sf_document.xhp @@ -12470,7 +12470,7 @@ "par_id301589205741697\n" "help.text" msgid "printer: The name of the printer queue where to print to. When absent, the default printer is set." -msgstr "" +msgstr "printer: De naam van de printerwachtrij waarnaar moet worden afgedrukt. Indien afwezig is de standaardprinter ingesteld." #. mRrfG #: sf_document.xhp @@ -12479,7 +12479,7 @@ "par_id851985205147348\n" "help.text" msgid "orientation: Either PORTRAIT or LANDSCAPE. When absent, left unchanged with respect to the printer settings." -msgstr "" +msgstr "orientation: Ofwel PORTRAIT of LANDSCAPE. Blijft onveranderd indien afwezig, met betrekking tot de printerinstellingen." #. ENyZH #: sf_document.xhp @@ -12488,7 +12488,7 @@ "par_id821985205147330\n" "help.text" msgid "paperformat: Specifies the paper format as a string value that can be either A3, A4, A5, LETTER, LEGAL or TABLOID. Left unchanged when absent." -msgstr "" +msgstr "paperformat: Specificeert het papierformaat als een tekenreekswaarde die A3, A4, A5, LETTER, LEGAL of TABLOID kan zijn. Blijft onveranderd indien afwezig." #. WCH7E #: sf_exception.xhp @@ -12506,7 +12506,7 @@ "hd_id521580038927003\n" "help.text" msgid "ScriptForge.Exception service" -msgstr "" +msgstr "service ScriptForge.Exception" #. 4X7Xk #: sf_exception.xhp @@ -12515,7 +12515,7 @@ "par_id181587139648008\n" "help.text" msgid "The Exception service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts." -msgstr "" +msgstr "De service Exception is een verzameling methoden om te helpen bij het debuggen van code in Basic- en Python-scripts en bij foutafhandeling in Basic-scripts." #. XeYa4 #: sf_exception.xhp @@ -12524,7 +12524,7 @@ "par_id141587140927573\n" "help.text" msgid "In Basic scripts, when a run-time error occurs, the methods and properties of the Exception service help identify the error context and allow to handle it." -msgstr "" +msgstr "Wanneer in Basic-scripts een runtime-fout optreedt, helpen de methoden en eigenschappen van de Exception-service om de foutcontext te identificeren en deze af te handelen." #. ENY3v #: sf_exception.xhp @@ -12533,7 +12533,7 @@ "par_id401621450898070\n" "help.text" msgid "The SF_Exception service is similar to the VBA Err object." -msgstr "" +msgstr "De service SF_Exception is vergelijkbaar met het VBA Err-object." #. vpB42 #: sf_exception.xhp @@ -12542,7 +12542,7 @@ "par_id361621450908874\n" "help.text" msgid "The Number property identifies the error." -msgstr "" +msgstr "De eigenschap Number identificeert de fout." #. TnWpD #: sf_exception.xhp @@ -12551,7 +12551,7 @@ "par_id861621450910254\n" "help.text" msgid "Use the Raise method to interrupt processing. The RaiseWarning method can be used to trap an anomaly without interrupting the macro execution." -msgstr "" +msgstr "Gebruik de methode Raise om de verwerking te onderbreken. De methode RaiseWarning kan worden gebruikt om een anomalie op te vangen zonder de uitvoering van de macro te onderbreken." #. CpxKC #: sf_exception.xhp @@ -12560,7 +12560,7 @@ "par_id621587225732733\n" "help.text" msgid "Errors and warnings raised with the Exception service are stored in memory and can be retrieved using the Console method." -msgstr "" +msgstr "Fouten en waarschuwingen met de service Exception worden in het geheugen opgeslagen en kunnen worden opgehaald met de methode Console." #. CpBSQ #: sf_exception.xhp @@ -12569,7 +12569,7 @@ "par_id411587141146677\n" "help.text" msgid "The Exception service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in Calc user defined functions (UDF) or during events processing." -msgstr "" +msgstr "De serviceconsole Exception slaat gebeurtenissen, variabele waarden en informatie over fouten op. Gebruik de console wanneer de Basic IDE niet gemakkelijk toegankelijk is, bijvoorbeeld in Calc gebruikergedefinieerde functies (UDF) of tijdens het verwerken van gebeurtenissen." #. NrY9C #: sf_exception.xhp @@ -12578,7 +12578,7 @@ "par_id251621034725811\n" "help.text" msgid "Use the DebugPrint method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window." -msgstr "" +msgstr "Gebruik de methode DebugPrint om relevante informatie aan de console toe te voegen. Console-items kunnen naar een tekstbestand worden gedumpt of in een dialoogvenster worden gevisualiseerd." #. 9AW2i #: sf_exception.xhp @@ -12587,7 +12587,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Als er een fout optreedt, kan een toepassingsmacro:" #. hxxxr #: sf_exception.xhp @@ -12596,7 +12596,7 @@ "par_id451587141202844\n" "help.text" msgid "Report the error in the Exception console" -msgstr "" +msgstr "Rapporteer de fout in de console Exception" #. N9X2f #: sf_exception.xhp @@ -12605,7 +12605,7 @@ "par_id751587141235313\n" "help.text" msgid "Inform the user about the error using either a standard message or a custom message" -msgstr "" +msgstr "Informeer de gebruiker over de fout met behulp van een standaardbericht of een aangepast bericht" #. C3NMD #: sf_exception.xhp @@ -12614,7 +12614,7 @@ "par_id931587141260777\n" "help.text" msgid "Optionally stop its execution" -msgstr "" +msgstr "Stop eventueel de uitvoering ervan" #. vFJRL #: sf_exception.xhp @@ -12623,7 +12623,7 @@ "par_id771621035263403\n" "help.text" msgid "In Python scripts the Exception service is mostly used for debugging purposes. Methods such as DebugPrint, Console and DebugDisplay are useful to quickly print messages, log data and open the console window from within a Python script." -msgstr "" +msgstr "In Python-scripts wordt de service Exception meestal gebruikt voor foutopsporingsdoeleinden. Methoden zoals DebugPrint, Console en DebugDisplay zijn handig om snel berichten af te drukken, gegevens te loggen en het consolevenster te openen vanuit een Python-script." #. VAaLU #: sf_exception.xhp @@ -12632,7 +12632,7 @@ "par_id211621035276160\n" "help.text" msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system." -msgstr "" +msgstr "Niet alle methoden en eigenschappen zijn beschikbaar voor Python-scripts, aangezien de Python-taal al een uitgebreid systeem voor het afhandelen van uitzonderingen heeft." #. yQzKr #: sf_exception.xhp @@ -12641,7 +12641,7 @@ "hd_id201586594659135\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. T8o7G #: sf_exception.xhp @@ -12650,7 +12650,7 @@ "par_id161610652161795\n" "help.text" msgid "The following examples show three different approaches to call the method Raise. All other methods can be executed in a similar fashion." -msgstr "" +msgstr "De volgende voorbeelden laten drie verschillende benaderingen zien om de methode Raise aan te roepen. Alle andere methoden kunnen op dezelfde manier worden uitgevoerd." #. tGmaZ #: sf_exception.xhp @@ -12659,7 +12659,7 @@ "par_id901621036227048\n" "help.text" msgid "The code snippet below creates an instance of the Exception service, logs a message and displays the Console window." -msgstr "" +msgstr "Het onderstaande codefragment maakt een instantie van de service Exception, registreert een bericht en geeft het venster Console weer." #. HABsh #: sf_exception.xhp @@ -12668,7 +12668,7 @@ "hd_id651584978211886\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. JDNi6 #: sf_exception.xhp @@ -12677,7 +12677,7 @@ "par_id911621036526404\n" "help.text" msgid "The properties listed below are only available for Basic scripts." -msgstr "" +msgstr "De onderstaande eigenschappen zijn alleen beschikbaar voor Basic-scripts." #. s3E9G #: sf_exception.xhp @@ -12686,7 +12686,7 @@ "par_id271584978211792\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. b96rE #: sf_exception.xhp @@ -12695,7 +12695,7 @@ "par_id241584978211550\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. TkMLa #: sf_exception.xhp @@ -12704,7 +12704,7 @@ "par_id621584978211403\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. tJZkJ #: sf_exception.xhp @@ -12713,7 +12713,7 @@ "par_id71584978715562\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. RyJkE #: sf_exception.xhp @@ -12722,7 +12722,7 @@ "par_id581584978715701\n" "help.text" msgid "The error message text." -msgstr "" +msgstr "De tekst van de foutmelding." #. Wcy7s #: sf_exception.xhp @@ -12731,7 +12731,7 @@ "par_id241610652688334\n" "help.text" msgid "Default value is \"\" or a string containing the Basic run-time error message." -msgstr "" +msgstr "De standaardwaarde is \"\" of een tekenreeks die het Basic runtime-foutbericht bevat." #. BT7GF #: sf_exception.xhp @@ -12740,7 +12740,7 @@ "par_id211584978211383\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. AnFVG #: sf_exception.xhp @@ -12749,7 +12749,7 @@ "par_id691584978211774\n" "help.text" msgid "The code of the error. It can be a numeric value or text." -msgstr "" +msgstr "De code van de fout. Dit kan een numerieke waarde of tekst zijn." #. dCADC #: sf_exception.xhp @@ -12758,7 +12758,7 @@ "par_id151610652632828\n" "help.text" msgid "Default value is 0 or the numeric value corresponding to the Basic run-time error code." -msgstr "" +msgstr "De standaardwaarde is 0 of de numerieke waarde die overeenkomt met de Basic runtime-foutcode." #. uLE2Q #: sf_exception.xhp @@ -12767,7 +12767,7 @@ "par_id671584978666689\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. G3q2n #: sf_exception.xhp @@ -12776,7 +12776,7 @@ "par_id951584978666296\n" "help.text" msgid "The location in the code where the error occurred. It can be a numeric value or text." -msgstr "" +msgstr "De locatie in de code waar de fout is opgetreden. Dit kan een numerieke waarde of tekst zijn." #. kBXGC #: sf_exception.xhp @@ -12785,7 +12785,7 @@ "par_id681610652723345\n" "help.text" msgid "Default value is 0 or the code line number for a standard Basic run-time error." -msgstr "" +msgstr "De standaardwaarde is 0 of het coderegelnummer voor een standaard Basic runtime-fout." #. mnFGS #: sf_exception.xhp @@ -12794,7 +12794,7 @@ "par_id461584978880380\n" "help.text" msgid "Raising or clearing an Exception resets its properties." -msgstr "" +msgstr "Door een Exception te verhogen of te wissen, worden de eigenschappen ervan opnieuw ingesteld." #. ssXEB #: sf_exception.xhp @@ -12803,7 +12803,7 @@ "par_id881608131596153\n" "help.text" msgid "List of Methods in the Exception Service" -msgstr "" +msgstr "Lijst met methoden in de uitzonderingsservice" #. CDgEM #: sf_exception.xhp @@ -12812,7 +12812,7 @@ "par_id271579683706571\n" "help.text" msgid "Resets the current error status and clears the SF_Exception properties." -msgstr "" +msgstr "Stelt de huidige foutstatus opnieuw in en wist de eigenschappen SF_Exception." #. 7jFLi #: sf_exception.xhp @@ -12821,7 +12821,7 @@ "par_id701610654263121\n" "help.text" msgid "The following example shows how to catch a division-by-zero exception, whose error code is 11." -msgstr "" +msgstr "Het volgende voorbeeld laat zien hoe u een uitzondering voor delen door nul kunt opvangen, waarvan de foutcode 11 is." #. JhADn #: sf_exception.xhp @@ -12830,7 +12830,7 @@ "bas_id51587215508130\n" "help.text" msgid "'If division by zero, ignore the error" -msgstr "" +msgstr "'Indien deling door nul, negeer de fout" #. afnTr #: sf_exception.xhp @@ -12839,7 +12839,7 @@ "par_id201610654368082\n" "help.text" msgid "For a complete list of Basic run-time error codes, refer to Debugging a Basic Program." -msgstr "" +msgstr "Raadpleeg Debuggen van een basisprogramma voor een volledige lijst met Basic runtime-foutcodes." #. efEEX #: sf_exception.xhp @@ -12848,7 +12848,7 @@ "par_id651598718179382\n" "help.text" msgid "Displays the console messages in a modal or non-modal dialog. In both modes, all the past messages issued by a DebugPrint() method or resulting from an exception are displayed. In non-modal mode, subsequent entries are added automatically." -msgstr "" +msgstr "Geeft de consoleberichten weer in een modaal of niet-modaal dialoogvenster. In beide modi worden alle eerdere berichten weergegeven die zijn uitgegeven door een DebugPrint()-methode of die het gevolg zijn van een uitzondering. In niet-modale modus worden volgende items automatisch toegevoegd." #. KKgdp #: sf_exception.xhp @@ -12857,7 +12857,7 @@ "par_id161598718286205\n" "help.text" msgid "If the console is already open, when non-modal, it is brought to the front." -msgstr "" +msgstr "Als de console al open is, wordt deze, wanneer deze niet-modaal is, naar voren gebracht." #. ypzYc #: sf_exception.xhp @@ -12866,7 +12866,7 @@ "par_id801598718629151\n" "help.text" msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination." -msgstr "" +msgstr "Een modale console kan alleen door de gebruiker worden afgesloten. Een niet-modale console kan worden gesloten door de gebruiker of bij beëindiging van de macro." #. HUgnb #: sf_exception.xhp @@ -12875,7 +12875,7 @@ "par_id511598718179819\n" "help.text" msgid "modal: Determine if the console window is modal (True) or non-modal (False). Default value is True." -msgstr "" +msgstr "modal: Bepaal of het consolevenster modaal (True) of niet-modaal (False) is. Standaardwaarde is True." #. xu6FA #: sf_exception.xhp @@ -12884,7 +12884,7 @@ "par_id641587215098903\n" "help.text" msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed." -msgstr "" +msgstr "Wist de console en bewaart een optioneel aantal recente berichten. Als de console in niet-modale modus is geactiveerd, wordt deze vernieuwd." #. SE7ei #: sf_exception.xhp @@ -12893,7 +12893,7 @@ "par_id351587215098527\n" "help.text" msgid "keep: The number of recent messages to be kept. Default value is 0." -msgstr "" +msgstr "keep: Het aantal recente berichten dat moet worden bewaard. Standaardwaarde is 0." #. GLEVv #: sf_exception.xhp @@ -12902,7 +12902,7 @@ "par_id521610655023824\n" "help.text" msgid "The following example clears the console keeping the 10 most recent messages." -msgstr "" +msgstr "In het volgende voorbeeld wordt de console gewist en worden de 10 meest recente berichten bewaard." #. 4LD2d #: sf_exception.xhp @@ -12911,7 +12911,7 @@ "par_id281587218077400\n" "help.text" msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns True if successful." -msgstr "" +msgstr "Exporteert de inhoud van de console naar een tekstbestand. Als het bestand al bestaat en de console niet leeg is, wordt het zonder waarschuwing overschreven. Retourneert True indien succesvol." #. HEXvU #: sf_exception.xhp @@ -12920,7 +12920,7 @@ "par_id851587218077862\n" "help.text" msgid "filename: The name of the text file the console should be dumped into. The name is expressed according to the current FileNaming property of the SF_FileSystem service. By default, URL notation and the native operating system's format are both admitted." -msgstr "" +msgstr "filename: De naam van het tekstbestand waarin de console moet worden gedumpt. De naam wordt uitgedrukt volgens de huidige eigenschap FileNaming van de service SF_FileSystem. Standaard zijn URL-notatie en de indeling van het oorspronkelijke besturingssysteem beide toegestaan." #. F3tVM #: sf_exception.xhp @@ -12929,7 +12929,7 @@ "par_id701621043185177\n" "help.text" msgid "Concatenates all the arguments into a single human-readable string and displays it in a MsgBox with an Information icon and an OK button." -msgstr "" +msgstr "Voegt alle argumenten samen tot een enkele door mensen leesbare string en geeft deze weer in een MsgBox met een informatiepictogram en een OK-knop." #. KaGM6 #: sf_exception.xhp @@ -12938,7 +12938,7 @@ "par_id791621097689492\n" "help.text" msgid "The final string is also added to the Console." -msgstr "" +msgstr "De laatste tekenreeks wordt ook toegevoegd aan de console." #. QhRgF #: sf_exception.xhp @@ -12947,7 +12947,7 @@ "par_id481587218636884\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type." -msgstr "" +msgstr "arg0[, arg1, ...]: Een willekeurig aantal argumenten van elk type." #. 2qser #: sf_exception.xhp @@ -12956,7 +12956,7 @@ "par_id281587218637490\n" "help.text" msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console." -msgstr "" +msgstr "Verzamelt alle gegeven argumenten in een enkele door mensen leesbare tekenreeksen en voegt deze toe als een nieuw item in de console." #. mUSEP #: sf_exception.xhp @@ -12965,7 +12965,7 @@ "par_id481587218637988\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type." -msgstr "" +msgstr "arg0[, arg1, ...]: Een willekeurig aantal argumenten van elk type." #. ZxYFC #: sf_exception.xhp @@ -12974,7 +12974,7 @@ "par_id111621624672183\n" "help.text" msgid "Displays the list of arguments in a readable form in the Python shell (APSO) console. Arguments are separated by a TAB character (simulated by spaces)." -msgstr "" +msgstr "Toont de lijst met argumenten in een leesbare vorm in de Python shell (APSO) console. Argumenten worden gescheiden door een TAB-teken (gesimuleerd door spaties)." #. ujSFu #: sf_exception.xhp @@ -12983,7 +12983,7 @@ "par_id841621426229467\n" "help.text" msgid "The same string is added to the ScriptForge debug console." -msgstr "" +msgstr "Dezelfde tekenreeks wordt toegevoegd aan de ScriptForge-foutopsporingsconsole." #. ixNfF #: sf_exception.xhp @@ -12992,7 +12992,7 @@ "par_id391126449167833\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type. The maximum length of each individual argument is 1024 characters." -msgstr "" +msgstr "arg0[, arg1, ...]: Een willekeurig aantal argumenten van elk type. De maximale lengte van elk afzonderlijk argument is 1024 tekens." #. f5WaM #: sf_exception.xhp @@ -13001,7 +13001,7 @@ "par_id261123015276160\n" "help.text" msgid "In python use simply the builtin print() statement." -msgstr "" +msgstr "Gebruik in python gewoon de ingebouwde print()-instructie." #. CUoch #: sf_exception.xhp @@ -13010,7 +13010,7 @@ "par_id111621426672183\n" "help.text" msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from print statements inside the script are shown in the shell." -msgstr "" +msgstr "Opent een APSO Python-shell als een niet-modaal venster. Het Python-script blijft actief nadat de shell is geopend. De uitvoer van print-instructies in het script wordt weergegeven in de shell." #. f9ZzM #: sf_exception.xhp @@ -13019,7 +13019,7 @@ "par_id841621426922467\n" "help.text" msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect." -msgstr "" +msgstr "Slechts één exemplaar van de APSO Python-shell kan op elk moment worden geopend. Als een Python-shell al open is, heeft het aanroepen van deze methode dus geen effect." #. KGi8B #: sf_exception.xhp @@ -13028,7 +13028,7 @@ "par_id391621449167833\n" "help.text" msgid "variables: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin locals() function." -msgstr "" +msgstr "variables: een Python-woordenboek met variabelenamen en waarden die worden doorgegeven aan de APSO Python-shell. Standaard worden alle lokale variabelen doorgegeven met behulp van de ingebouwde functie locals() van Python." #. zT7Gq #: sf_exception.xhp @@ -13037,7 +13037,7 @@ "par_id991621449657850\n" "help.text" msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running." -msgstr "" +msgstr "Het onderstaande voorbeeld opent de APSO Python-shell en geeft alle globale en lokale variabelen door, rekening houdend met de context waarin het script wordt uitgevoerd." #. yUoFK #: sf_exception.xhp @@ -13046,7 +13046,7 @@ "par_id521621449800348\n" "help.text" msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell." -msgstr "" +msgstr "Wanneer de APSO Python-shell open is, wordt elke volgende uitvoer die door het script wordt afgedrukt, in de shell weergegeven. Daarom wordt de tekenreeks die in het onderstaande voorbeeld is afgedrukt, weergegeven in de Python-shell." #. 5xNCX #: sf_exception.xhp @@ -13055,7 +13055,7 @@ "pyc_id731621449899901\n" "help.text" msgid "print(\"Hello world!\")" -msgstr "" +msgstr "print(\"Hallo wereld!\")" #. aXDEK #: sf_exception.xhp @@ -13064,7 +13064,7 @@ "par_id541587219824771\n" "help.text" msgid "Generates a run-time error. An error message is displayed to the user and reported in the console. The execution is stopped. The Raise() method can be placed inside the normal script flow or in a dedicated error-handling routine." -msgstr "" +msgstr "Genereert een runtime-fout. Er wordt een foutbericht weergegeven aan de gebruiker en gerapporteerd in de console. De uitvoering wordt stopgezet. De methode Raise() kan in de normale scriptstroom of in een speciale foutafhandelingsroutine worden geplaatst." #. RuDTE #: sf_exception.xhp @@ -13073,7 +13073,7 @@ "par_id921587220542454\n" "help.text" msgid "The code snippets presented next are equivalent. They show alternative ways to raise an exception with code 2100." -msgstr "" +msgstr "De codefragmenten die hierna worden weergegeven, zijn equivalent. Ze laten alternatieve manieren zien om een uitzondering op te heffen met code 2100." #. 6wEJq #: sf_exception.xhp @@ -13082,7 +13082,7 @@ "par_id851587219824597\n" "help.text" msgid "Number: The error code, as a number or as a string. Default value is that of Err Basic builtin function." -msgstr "" +msgstr "Number: De foutcode, als een getal of als een tekenreeks.Standaardwaarde is die van de ingebouwde Basic-functie Err." #. 7zRRT #: sf_exception.xhp @@ -13091,7 +13091,7 @@ "par_id461587220986452\n" "help.text" msgid "Source: The location of the error, as a number or as a string. Default value is that of Erl Basic builtin function." -msgstr "" +msgstr "Source: De locatie van de fout, als een getal of als een tekenreeks.Standaardwaarde is die van de ingebouwde Basic-functie Erl." #. fSwCd #: sf_exception.xhp @@ -13100,7 +13100,7 @@ "par_id721587221018162\n" "help.text" msgid "Description: The message to display to the user and to report in the console. Default value is that of Error$ Basic builtin function." -msgstr "" +msgstr "Description: Het bericht dat aan de gebruiker moet worden weergegeven en in de console moet worden gerapporteerd. Standaardwaarde is die van de ingebouwde Basic-functie Error$." #. Kzh7r #: sf_exception.xhp @@ -13109,7 +13109,7 @@ "bas_id211587222852310\n" "help.text" msgid "'See variants below ..." -msgstr "" +msgstr "'Zie onderstaande varianten ..." #. DV6VJ #: sf_exception.xhp @@ -13118,7 +13118,7 @@ "par_id111587222580987\n" "help.text" msgid "To raise an exception with the standard values:" -msgstr "" +msgstr "Een uitzondering maken met de standaardwaarden:" #. SABN3 #: sf_exception.xhp @@ -13127,7 +13127,7 @@ "par_id751587222598238\n" "help.text" msgid "To raise an exception with a specific code:" -msgstr "" +msgstr "Een uitzondering maken met een specifieke code:" #. QXgCy #: sf_exception.xhp @@ -13136,7 +13136,7 @@ "par_id501587222607771\n" "help.text" msgid "To replace the usual message:" -msgstr "" +msgstr "Om het gebruikelijke bericht te vervangen:" #. gdvqM #: sf_exception.xhp @@ -13145,7 +13145,7 @@ "bas_id431587222670849\n" "help.text" msgid "SF_Exception.Raise(, , \"It is not a good idea to divide by zero.\")" -msgstr "" +msgstr "SF_Exception.Raise(, , \"Het is geen goed idee om te delen door nul.\")" #. TaFgn #: sf_exception.xhp @@ -13154,7 +13154,7 @@ "par_id611587222617174\n" "help.text" msgid "To raise an application error:" -msgstr "" +msgstr "Een toepassingsfout melden:" #. ifrWg #: sf_exception.xhp @@ -13163,7 +13163,7 @@ "bas_id71587222694657\n" "help.text" msgid "SF_Exception.Raise(\"MyAppError\", \"Example_Raise()\", \"Something wrong happened !\")" -msgstr "" +msgstr "SF_Exception.Raise(\"MyAppError\", \"Example_Raise()\", \"Er ging iets fout !\")" #. LuTSJ #: sf_exception.xhp @@ -13172,7 +13172,7 @@ "par_id1001587224839900\n" "help.text" msgid "This method has exactly the same syntax, arguments and behavior as the Raise() method." -msgstr "" +msgstr "Deze methode heeft exact dezelfde syntaxis, argumenten en gedrag als de methode Raise()." #. AXEnW #: sf_exception.xhp @@ -13181,7 +13181,7 @@ "par_id761587224839624\n" "help.text" msgid "However, when a warning is raised, the macro execution is not stopped." -msgstr "" +msgstr "Wanneer er echter een waarschuwing wordt gegeven, wordt de uitvoering van de macro niet gestopt." #. QTGXf #: sf_filesystem.xhp @@ -13370,7 +13370,7 @@ "hd_id991612918109871\n" "help.text" msgid "File Naming Notation" -msgstr "" +msgstr "Bestandsnaamnotatie" #. ZfsFV #: sf_filesystem.xhp @@ -13379,7 +13379,7 @@ "par_id791612918141083\n" "help.text" msgid "The notation used to express file and folder names, both for arguments and returned values, is defined by the FileNaming property of the FileSystem service." -msgstr "" +msgstr "De notatie die wordt gebruikt om bestands- en mapnamen uit te drukken, zowel voor argumenten als geretourneerde waarden, wordt gedefinieerd door de eigenschap FileNaming van de service FileSystem." #. KV9FF #: sf_filesystem.xhp @@ -13388,7 +13388,7 @@ "par_id951612918220255\n" "help.text" msgid "In short, the possible representation types are \"URL\" (URL file notation), \"SYS\" (operating system notation) and \"ANY\" (default). See more information below." -msgstr "" +msgstr "Kortom, de mogelijke weergavetypen zijn \"URL\" (URL-bestandsnotatie), \"SYS\" (besturingssysteemnotatie) en \"ANY\" (standaard). Zie meer informatie hieronder." #. L84BJ #: sf_filesystem.xhp @@ -13397,7 +13397,7 @@ "par_id861583589907100\n" "help.text" msgid "An example of the URL notation is file:///C:/Documents/my_file.odt. Whenever possible consider using the URL notation because it is a more portable alternative." -msgstr "" +msgstr "Een voorbeeld van de URL-notatie is file:///C:/Documents/my_file.odt. Overweeg waar mogelijk de URL-notatie te gebruiken, omdat dit een meer overdraagbaar alternatief is." #. QrDqQ #: sf_filesystem.xhp @@ -13406,7 +13406,7 @@ "par_id931626652451855\n" "help.text" msgid "The use of the shortcut \"~\" (tilde), which is common in Linux-based operating systems, is not supported to express a path to a folder and file name. Instead of using \"~/Documents/my_file.odt\" use the full path \"/home/user/Documents/my_file.odt\"." -msgstr "" +msgstr "Het gebruik van de sneltoets \"~\" (tilde), die gebruikelijk is in op Linux gebaseerde besturingssystemen, wordt niet ondersteund om een pad naar een map en bestandsnaam uit te drukken. Gebruik in plaats van \"~/Documents/my_file.odt\" het volledige pad \"/home/user/Documents/my_file.odt\"." #. mao7x #: sf_filesystem.xhp @@ -13451,7 +13451,7 @@ "par_id491583668386455\n" "help.text" msgid "Readonly" -msgstr "Alleen-lezen" +msgstr "AlleenLezen" #. GC4Vu #: sf_filesystem.xhp @@ -13478,7 +13478,7 @@ "par_id371583668519172\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Gihmg #: sf_filesystem.xhp @@ -13487,7 +13487,7 @@ "par_id771583668386455\n" "help.text" msgid "Sets or returns the current files and folders notation, either \"ANY\", \"URL\" or \"SYS\":" -msgstr "" +msgstr "Stelt of retourneert de huidige notatie van bestanden en mappen, ofwel \"ANY\", \"URL\" of \"SYS\":" #. QQGcp #: sf_filesystem.xhp @@ -13496,7 +13496,7 @@ "par_id881585396501844\n" "help.text" msgid "\"ANY\": (default) the methods of the FileSystem service accept both URL and current operating system's notation for input arguments but always return URL strings." -msgstr "" +msgstr "\"ANY\": (standaard) de methoden van de service FileSystem accepteren zowel de URL als de notatie van het huidige besturingssysteem voor invoerargumenten, maar retourneren altijd URL-tekenreeksen." #. 6FA2G #: sf_filesystem.xhp @@ -13505,7 +13505,7 @@ "par_id261583669091722\n" "help.text" msgid "\"URL\": the methods of the FileSystem service expect URL notation for input arguments and return URL strings." -msgstr "" +msgstr "\"URL\": de methoden van de service FileSystem verwachten URL-notatie voor invoerargumenten en geretourneerde URL-tekenreeksen." #. QxFC6 #: sf_filesystem.xhp @@ -13514,7 +13514,7 @@ "par_id731583669120436\n" "help.text" msgid "\"SYS\": the methods of the FileSystem service expect current operating system's notation for both input arguments and return strings." -msgstr "" +msgstr "\"SYS\": de methoden van de service FileSystem verwacht en retourneert de notatie van het huidige besturingssysteem voor invoerargumenten." #. VBAzn #: sf_filesystem.xhp @@ -13523,7 +13523,7 @@ "par_id211583765169579\n" "help.text" msgid "Once set, the FileNaming property remains unchanged either until the end of the %PRODUCTNAME session or until it is set again." -msgstr "" +msgstr "Eenmaal ingesteld, blijft de eigenschap FileNaming ongewijzigd tot het einde van de %PRODUCTNAME-sessie of totdat deze opnieuw wordt ingesteld." #. FayZT #: sf_filesystem.xhp @@ -13532,7 +13532,7 @@ "par_id541583839708548\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. ygE64 #: sf_filesystem.xhp @@ -13541,7 +13541,7 @@ "par_id731583839708412\n" "help.text" msgid "Returns the configuration folder of %PRODUCTNAME." -msgstr "" +msgstr "Retourneert de configuratiemap van %PRODUCTNAME." #. svPxn #: sf_filesystem.xhp @@ -13550,7 +13550,7 @@ "par_id761584027709516\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. gjTpP #: sf_filesystem.xhp @@ -13559,7 +13559,7 @@ "par_id971584027709752\n" "help.text" msgid "Returns the folder where extensions are installed." -msgstr "" +msgstr "Retourneert de map waarin extensies zijn geïnstalleerd." #. DTGEP #: sf_filesystem.xhp @@ -13568,7 +13568,7 @@ "par_id31583839767743\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. FP6D9 #: sf_filesystem.xhp @@ -13577,7 +13577,7 @@ "par_id111583839767195\n" "help.text" msgid "Returns the user home folder." -msgstr "" +msgstr "Retourneert de basismap van de gebruiker." #. LUE79 #: sf_filesystem.xhp @@ -13586,7 +13586,7 @@ "par_id771583839920487\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. dz5ju #: sf_filesystem.xhp @@ -13595,7 +13595,7 @@ "par_id451583839920858\n" "help.text" msgid "Returns the installation folder of %PRODUCTNAME." -msgstr "" +msgstr "Retourneert de installatiemap van %PRODUCTNAME." #. trBL7 #: sf_filesystem.xhp @@ -13604,7 +13604,7 @@ "par_id571588333908716\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 3yNj2 #: sf_filesystem.xhp @@ -13613,7 +13613,7 @@ "par_id721588333908708\n" "help.text" msgid "Returns the folder containing the system templates files." -msgstr "" +msgstr "Retourneert de map met de systeemsjablonenbestanden." #. hDFSQ #: sf_filesystem.xhp @@ -13622,7 +13622,7 @@ "par_id501583774433513\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. e2ruR #: sf_filesystem.xhp @@ -13631,7 +13631,7 @@ "par_id71583774433459\n" "help.text" msgid "Returns the temporary files folder defined in the %PRODUCTNAME path settings." -msgstr "" +msgstr "Retourneert de map met tijdelijke bestanden die is gedefinieerd in de padinstellingen van %PRODUCTNAME." #. wjVgE #: sf_filesystem.xhp @@ -13640,7 +13640,7 @@ "par_id271588334016191\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Ggnnt #: sf_filesystem.xhp @@ -13649,7 +13649,7 @@ "par_id251588334016874\n" "help.text" msgid "Returns the folder containing the user-defined template files." -msgstr "" +msgstr "Retourneert de map met de door de gebruiker gedefinieerde sjabloonbestanden." #. rpvtx #: sf_filesystem.xhp @@ -13658,7 +13658,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the FileSystem Service" -msgstr "" +msgstr "Lijst met methoden in de service FileSystem" #. EgkPG #: sf_filesystem.xhp @@ -13667,7 +13667,7 @@ "par_id871583933076448\n" "help.text" msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary." -msgstr "" +msgstr "Voegt een mappad en de naam van een bestand samen en retourneert de volledige bestandsnaam met een geldig padscheidingsteken. Het padscheidingsteken wordt alleen toegevoegd als dat nodig is." #. 2pwBF #: sf_filesystem.xhp @@ -13676,7 +13676,7 @@ "par_id90158393307695\n" "help.text" msgid "foldername: The path with which name will be combined. The specified path does not need to be an existing folder." -msgstr "" +msgstr "foldername: Het pad waarmee name wordt gecombineerd. Het opgegeven pad hoeft geen bestaande map te zijn." #. xFCWJ #: sf_filesystem.xhp @@ -13685,7 +13685,7 @@ "par_id891583933076975\n" "help.text" msgid "name: The name of the file to be appended to foldername. This parameter uses the notation of the current operating system." -msgstr "" +msgstr "name: De naam van het bestand dat moet worden toegevoegd aan foldername. Deze parameter gebruikt de notatie van het huidige besturingssysteem." #. DwTpc #: sf_filesystem.xhp @@ -13694,7 +13694,7 @@ "par_id33160111891079\n" "help.text" msgid "Compares two files and returns True when they seem identical." -msgstr "" +msgstr "Vergelijkt twee bestanden en retourneert True wanneer ze identiek lijken." #. 6A5Da #: sf_filesystem.xhp @@ -13703,7 +13703,7 @@ "par_id631601119001315\n" "help.text" msgid "Depending on the value of the comparecontents argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents." -msgstr "" +msgstr "Afhankelijk van de waarde van het argument comparecontents, kan de vergelijking tussen beide bestanden ofwel alleen gebaseerd zijn op bestandskenmerken (zoals de laatste wijzigingsdatum), ofwel op de inhoud van het bestand." #. MGA4A #: sf_filesystem.xhp @@ -13712,7 +13712,7 @@ "par_id481601118910755\n" "help.text" msgid "filename1, filename2: The files to compare." -msgstr "" +msgstr "filename1, filename2: De te vergelijken bestanden." #. aKfwh #: sf_filesystem.xhp @@ -13721,7 +13721,7 @@ "par_id111601118910848\n" "help.text" msgid "comparecontents: When True, the contents of the files are compared (default = False)." -msgstr "" +msgstr "comparecontents: Bij True wordt de inhoud van de bestanden vergeleken (standaard = False)." #. EZNG5 #: sf_filesystem.xhp @@ -13730,7 +13730,7 @@ "par_id161584541257982\n" "help.text" msgid "Copies one or more files from one location to another. Returns True if at least one file has been copied or False if an error occurred." -msgstr "" +msgstr "Kopieert een of meer bestanden van de ene locatie naar de andere. Retourneert True als ten minste één bestand is gekopieerd of False als er een fout is opgetreden." #. xE9SU #: sf_filesystem.xhp @@ -13739,7 +13739,7 @@ "par_id401612998805699\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Er treedt ook een fout op als de parameter source jokertekens gebruikt en met geen enkel bestand overeenkomt." #. AZCsn #: sf_filesystem.xhp @@ -13748,7 +13748,7 @@ "par_id331612998814805\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. aVGzZ #: sf_filesystem.xhp @@ -13757,7 +13757,7 @@ "par_id1001584541257789\n" "help.text" msgid "source: It can be a FileName or a NamePattern indicating one or more files to be copied." -msgstr "" +msgstr "source: Het kan een FileName of een NamePattern zijn die aangeeft dat een of meer bestanden moeten worden gekopieerd." #. ycEpt #: sf_filesystem.xhp @@ -13766,7 +13766,7 @@ "par_id111584542310166\n" "help.text" msgid "destination: It can be either a FileName specifying where the single source file is to be copied, or a FolderName into which the multiple files from source are to be copied." -msgstr "" +msgstr "destination: Het kan ofwel een FileName zijn die aangeeft waar het enkele source-bestand moet worden gekopieerd, of een FolderName waarin de meerdere bestanden van source moeten worden gekopieerd." #. frwD2 #: sf_filesystem.xhp @@ -13775,7 +13775,7 @@ "par_id491612999134752\n" "help.text" msgid "If destination does not exist, it is created." -msgstr "" +msgstr "Als destination niet bestaat, wordt deze aangemaakt." #. z3Tok #: sf_filesystem.xhp @@ -13784,7 +13784,7 @@ "par_id591612999166788\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Jokertekens zijn niet toegestaan in destination." #. zFyVX #: sf_filesystem.xhp @@ -13793,7 +13793,7 @@ "par_id251584542431558\n" "help.text" msgid "overwrite: If True (default), files may be overwritten. The method will fail if destination is readonly, regardless of the value specified in overwrite." -msgstr "" +msgstr "overwrite: Indien True (standaard) mogen bestanden worden overschreven. Deze methode zal mislukken als de destination alleen-lezen is, ongeacht de gespecificeerde waarde in overwrite." #. uRMe8 #: sf_filesystem.xhp @@ -13802,7 +13802,7 @@ "par_id691626216252568\n" "help.text" msgid "In the examples below the first line copies a single file whereas the second line copies multiple files using wildcards." -msgstr "" +msgstr "In de onderstaande voorbeelden wordt met de eerste regel één bestand gekopieerd, met de tweede regel worden er mogelijk meerdere bestanden gekopieerd omdat daar jokertekens zijn gebruikt." #. GevfF #: sf_filesystem.xhp @@ -13811,7 +13811,7 @@ "par_id411626216328023\n" "help.text" msgid "Beware that subfolders and their contents are not copied when wildcards are used in the source argument." -msgstr "" +msgstr "Let op, als er submappen zijn dan worden die (en hun inhoud) niet gekopieerd als er jokertekens in source staan." #. TdGi7 #: sf_filesystem.xhp @@ -13820,7 +13820,7 @@ "par_id731584544734412\n" "help.text" msgid "Copies one or more folders from one location to another. Returns True if at least one folder has been copied or False if an error occurred." -msgstr "" +msgstr "Kopieert een of meer mappen van de ene locatie naar de andere. Retourneert True als ten minste één map is gekopieerd of False als er een fout is opgetreden." #. TSLCU #: sf_filesystem.xhp @@ -13829,7 +13829,7 @@ "par_id21612999775377\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Er treedt ook een fout op als de parameter source jokertekens gebruikt en met geen enkele map overeenkomt." #. m3Hzh #: sf_filesystem.xhp @@ -13838,7 +13838,7 @@ "par_id701612999808912\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. GCCf3 #: sf_filesystem.xhp @@ -13847,7 +13847,7 @@ "par_id851584544734202\n" "help.text" msgid "source: It can be a FolderName or a NamePattern indicating one or more folders to be copied." -msgstr "" +msgstr "source: Het kan een FolderName of een NamePattern zijn die aangeeft dat een of meer mappen moeten worden gekopieerd." #. msqGq #: sf_filesystem.xhp @@ -13856,7 +13856,7 @@ "par_id321584544734273\n" "help.text" msgid "destination: Specifies the FolderName into which the single or multiple folders defined in source are to be copied." -msgstr "" +msgstr "destination: Specificeert de FolderName waarnaar de enkele of meerdere mappen die zijn gedefinieerd in source moeten worden gekopieerd." #. iLKYc #: sf_filesystem.xhp @@ -13865,7 +13865,7 @@ "par_id491612999134762\n" "help.text" msgid "If destination does not exist, it is created." -msgstr "" +msgstr "Als destination niet bestaat, wordt deze aangemaakt." #. TvYDS #: sf_filesystem.xhp @@ -13874,7 +13874,7 @@ "par_id591612999166740\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Jokertekens zijn niet toegestaan in destination." #. 3A2C2 #: sf_filesystem.xhp @@ -13883,7 +13883,7 @@ "par_id251584542431525\n" "help.text" msgid "overwrite: If True (default), files may be overwritten. The method will fail if destination is readonly, regardless of the value specified in overwrite." -msgstr "" +msgstr "overwrite: Indien True (standaard), kunnen bestanden worden overschreven. De methode zal mislukken als destination alleen-lezen is, ongeacht de waarde die is opgegeven in overwrite." #. 7CxBB #: sf_filesystem.xhp @@ -13892,7 +13892,7 @@ "par_id751626216627481\n" "help.text" msgid "In the examples below all files, folders and subfolders are copied." -msgstr "" +msgstr "In de onderstaande voorbeelden zijn alle bestanden, mappen en submappen gekopieerd." #. fNBgH #: sf_filesystem.xhp @@ -13901,7 +13901,7 @@ "par_id31158454067562\n" "help.text" msgid "Creates the specified FolderName. Returns True if the folder could be successfully created." -msgstr "" +msgstr "Creëert de opgegeven FolderName. Retourneert True als de map met succes kon worden gemaakt." #. 9H3cp #: sf_filesystem.xhp @@ -13910,7 +13910,7 @@ "par_id431613000475359\n" "help.text" msgid "If the specified folder has a parent folder that does not exist, it is created." -msgstr "" +msgstr "Als de opgegeven map een bovenliggende map heeft die niet bestaat, wordt deze gemaakt." #. 7gTts #: sf_filesystem.xhp @@ -13919,7 +13919,7 @@ "par_id491584540675469\n" "help.text" msgid "foldername: A string representing the folder to be created. If the folder already exists, an exception will be raised." -msgstr "" +msgstr "foldername: Een tekenreeks die de map vertegenwoordigt die moet worden gemaakt. Als de map al bestaat, wordt er een uitzondering gemaakt." #. 2zcfH #: sf_filesystem.xhp @@ -13928,7 +13928,7 @@ "par_id731585322689518\n" "help.text" msgid "Creates a specified file and returns a TextStream service instance that can be used to write to the file." -msgstr "" +msgstr "Creëert een gespecificeerd bestand en retourneert een service-instantie TextStream die kan worden gebruikt om naar het bestand te schrijven." #. YMZDA #: sf_filesystem.xhp @@ -13937,7 +13937,7 @@ "par_id821613001057759\n" "help.text" msgid "The method returns a Null object if an error occurred." -msgstr "" +msgstr "De methode retourneert een Null-object als er een fout is opgetreden." #. 2NPVD #: sf_filesystem.xhp @@ -13946,7 +13946,7 @@ "par_id901585322689715\n" "help.text" msgid "filename: The name of the file to be created." -msgstr "" +msgstr "filename: De naam van het aan te maken bestand." #. gEJA4 #: sf_filesystem.xhp @@ -13955,7 +13955,7 @@ "par_id501585322689209\n" "help.text" msgid "overwrite: Boolean value that determines if filename can be overwritten (default = True)." -msgstr "" +msgstr "overwrite: Booleaanse waarde die bepaalt of filename kan worden overschreven (standaard = True)." #. CkbhC #: sf_filesystem.xhp @@ -13964,7 +13964,7 @@ "par_id551585322689192\n" "help.text" msgid "encoding: The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "encoding: De tekenset die moet worden gebruikt. De standaardcodering is \"UTF-8\"." #. eoE92 #: sf_filesystem.xhp @@ -13973,7 +13973,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "Ga voor meer informatie over de namen van karaktersets naar IANA's Character Set-pagina. Pas op dat %PRODUCTNAME niet alle bestaande tekensets implementeert." #. DVGxr #: sf_filesystem.xhp @@ -13982,7 +13982,7 @@ "par_id11584882040881\n" "help.text" msgid "Deletes one or more files. Returns True if at least one file has been deleted or False if an error occurred." -msgstr "" +msgstr "Verwijdert een of meer bestanden. Retourneert True als ten minste één bestand is verwijderd of False als er een fout is opgetreden." #. y69YZ #: sf_filesystem.xhp @@ -13991,7 +13991,7 @@ "par_id21612999775356\n" "help.text" msgid "An error will also occur if the filename parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Er zal ook een fout optreden als de parameter filename jokertekens gebruikt en met geen enkel bestand overeenkomt." #. TWJRd #: sf_filesystem.xhp @@ -14000,7 +14000,7 @@ "par_id21613001848493\n" "help.text" msgid "The files to be deleted must not be readonly." -msgstr "" +msgstr "De te verwijderen bestanden mogen niet alleen-lezen zijn." #. PEFBq #: sf_filesystem.xhp @@ -14009,7 +14009,7 @@ "par_id701612999808832\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. DkCdk #: sf_filesystem.xhp @@ -14018,7 +14018,7 @@ "par_id441584882040860\n" "help.text" msgid "filename: It can be a FileName or a NamePattern indicating one or more files to be deleted." -msgstr "" +msgstr "filename: Het kan een filename of een NamePattern zijn die het te verwijderen bestand (of bestanden) aangeeft." #. FnaSi #: sf_filesystem.xhp @@ -14027,7 +14027,7 @@ "par_id851626217167909\n" "help.text" msgid "In the examples below only files are deleted, subfolders are not deleted." -msgstr "" +msgstr "In de onderstaande voorbeelden worden alleen bestanden verwijderd, submappen niet." #. c9ZCd #: sf_filesystem.xhp @@ -14036,7 +14036,7 @@ "par_id11584882015881\n" "help.text" msgid "Deletes one or more folders. Returns True if at least one folder has been deleted or False if an error occurred." -msgstr "" +msgstr "Verwijdert een of meer mappen. Retourneert True als ten minste één map is verwijderd of False als er een fout is opgetreden." #. bGmGo #: sf_filesystem.xhp @@ -14045,7 +14045,7 @@ "par_id21612999775346\n" "help.text" msgid "An error will also occur if the foldername parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Er treedt ook een fout op als de parameter foldername jokertekens gebruikt en met geen enkele map overeenkomt." #. GsqDD #: sf_filesystem.xhp @@ -14054,7 +14054,7 @@ "par_id21613001848853\n" "help.text" msgid "The folders to be deleted must not be readonly." -msgstr "" +msgstr "De te verwijderen mappen mogen niet alleen-lezen zijn." #. kRSqe #: sf_filesystem.xhp @@ -14063,7 +14063,7 @@ "par_id701612999808842\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. 7YCXM #: sf_filesystem.xhp @@ -14072,7 +14072,7 @@ "par_id451584882542247\n" "help.text" msgid "foldername: It can be a FolderName or a NamePattern indicating one or more folders to be deleted." -msgstr "" +msgstr "foldername: Het kan een FolderName of een NamePattern zijn die aangeeft dat een of meer mappen moeten worden verwijderd." #. cCnG9 #: sf_filesystem.xhp @@ -14081,7 +14081,7 @@ "par_id651626217314709\n" "help.text" msgid "In the examples below only folders and their contents are deleted. Files in the parent folder \"C:\\Temp\" are not deleted." -msgstr "" +msgstr "In de onderstaande voorbeelden worden alleen mappen en hun inhoud verwijderd. Bestanden in de bovenliggende map \"C:\\Temp\" worden niet verwijderd." #. ZbyLn #: sf_filesystem.xhp @@ -14090,7 +14090,7 @@ "par_id161583764426709\n" "help.text" msgid "Returns True if a given file name is valid and exists, otherwise the method returns False." -msgstr "" +msgstr "Retourneert True als een gegeven bestandsnaam geldig is en bestaat, anders retourneert de methode False." #. 7j5TN #: sf_filesystem.xhp @@ -14099,7 +14099,7 @@ "par_id91613003122613\n" "help.text" msgid "If the filename parameter is actually an existing folder name, the method returns False." -msgstr "" +msgstr "Als de parameter filename daadwerkelijk een bestaande mapnaam is, retourneert de methode False." #. fr2Ei #: sf_filesystem.xhp @@ -14108,7 +14108,7 @@ "par_id361583764426547\n" "help.text" msgid "filename: A string representing the file to be tested." -msgstr "" +msgstr "filename: Een tekenreeks die het te testen bestand vertegenwoordigt." #. ChDCL #: sf_filesystem.xhp @@ -14117,7 +14117,7 @@ "par_id11158394432779\n" "help.text" msgid "Returns a zero-based array of the files stored in a given folder. Each entry in the array is a string containing the full path and file name." -msgstr "" +msgstr "Retourneert een op nul gebaseerde matrix van de bestanden die zijn opgeslagen in een bepaalde map. Elk item in de matrix is een tekenreeks die het volledige pad en de bestandsnaam bevat." #. JVjE3 #: sf_filesystem.xhp @@ -14126,7 +14126,7 @@ "par_id641613003790120\n" "help.text" msgid "If the argument foldername specifies a folder that does not exist, an exception is raised." -msgstr "" +msgstr "Als het argument foldername een map specificeert die niet bestaat, wordt er een uitzondering gemaakt." #. nFaPD #: sf_filesystem.xhp @@ -14135,7 +14135,7 @@ "par_id821613003779799\n" "help.text" msgid "The resulting list may be filtered with wildcards." -msgstr "" +msgstr "De resulterende lijst kan worden gefilterd met jokertekens." #. bq6vD #: sf_filesystem.xhp @@ -14144,7 +14144,7 @@ "par_id731583944543140\n" "help.text" msgid "foldername: A string representing a folder. The folder must exist. This argument must not designate a file." -msgstr "" +msgstr "foldername: Een tekenreeks die een map vertegenwoordigt. De map moet bestaan. Dit argument mag geen bestand aanduiden." #. EM5cJ #: sf_filesystem.xhp @@ -14153,7 +14153,7 @@ "par_id591585648450060\n" "help.text" msgid "filter: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")." -msgstr "" +msgstr "filter: Een tekenreeks met jokertekens (\"?\" en \"*\") die worden toegepast op de resulterende lijst met bestanden (standaard = \"\")." #. zG7ec #: sf_filesystem.xhp @@ -14162,7 +14162,7 @@ "par_id51583765642590\n" "help.text" msgid "Returns True if the specified FolderName is valid and exists, otherwise the method returns False." -msgstr "" +msgstr "Retourneert True als de opgegeven FolderName geldig is en bestaat, anders retourneert de methode False." #. 9xtCG #: sf_filesystem.xhp @@ -14171,7 +14171,7 @@ "par_id151613004111990\n" "help.text" msgid "If the foldername parameter is actually an existing file name, the method returns False." -msgstr "" +msgstr "Als de parameter foldername daadwerkelijk een bestaande bestandsnaam is, retourneert de methode False." #. qrf4A #: sf_filesystem.xhp @@ -14180,7 +14180,7 @@ "par_id1001583765642211\n" "help.text" msgid "foldername: A string representing the folder to be tested." -msgstr "" +msgstr "foldername: Een tekenreeks die de map aangeeft die moet worden getest." #. eAFVs #: sf_filesystem.xhp @@ -14189,7 +14189,7 @@ "par_id521584110618989\n" "help.text" msgid "Returns the BaseName (equal to the last component) of a folder or file name, without its extension." -msgstr "" +msgstr "Retourneert de BaseName (gelijk aan de laatste component) van een map- of bestandsnaam, zonder de extensie." #. YnBXv #: sf_filesystem.xhp @@ -14198,7 +14198,7 @@ "par_id731613004316790\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "De methode controleert niet of het opgegeven bestand of de opgegeven map bestaat." #. 3FPjB #: sf_filesystem.xhp @@ -14207,7 +14207,7 @@ "par_id691584110618308\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Een tekenreeks die de bestandsnaam en het pad vertegenwoordigt." #. jwFaP #: sf_filesystem.xhp @@ -14216,7 +14216,7 @@ "par_id1001626271201609\n" "help.text" msgid "In the examples below, the first GetBaseName method call corresponds to a folder, so the function returns the last component of the path. The second call receives a file name as input, so the name of the file is returned without its extension." -msgstr "" +msgstr "In de onderstaande voorbeelden komt de eerste GetBaseName-methodeaanroep overeen met een map, dus de functie retourneert de laatste component van het pad. De tweede aanroep krijgt een bestandsnaam als invoer, dus de naam van het bestand is geretourneerd zonder de extensie." #. A56XC #: sf_filesystem.xhp @@ -14225,7 +14225,7 @@ "par_id831584032680866\n" "help.text" msgid "Returns the extension part of a file or folder name without the dot \".\" character." -msgstr "" +msgstr "Retourneert het extensiegedeelte van een bestands- of mapnaam zonder de punt \".\" karakter." #. pdCJv #: sf_filesystem.xhp @@ -14234,7 +14234,7 @@ "par_id941613060736524\n" "help.text" msgid "The method does not check for the existence of the specified file or folder." -msgstr "" +msgstr "De methode controleert niet op het bestaan van het opgegeven bestand of de opgegeven map." #. Aqvwt #: sf_filesystem.xhp @@ -14243,7 +14243,7 @@ "par_id561613060896361\n" "help.text" msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned." -msgstr "" +msgstr "Als deze methode wordt toegepast op een mapnaam of op een bestand zonder extensie, wordt een lege tekenreeks geretourneerd." #. NzK5z #: sf_filesystem.xhp @@ -14252,7 +14252,7 @@ "par_id821584032680311\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Een tekenreeks die de bestandsnaam en het pad vertegenwoordigt." #. Am6Bu #: sf_filesystem.xhp @@ -14261,7 +14261,7 @@ "par_id48160068505010\n" "help.text" msgid "The builtin FileLen Basic function returns the number of bytes contained in a file as a Long value, i.e. up to 2GB." -msgstr "" +msgstr "De ingebouwde FileLen Basic functie retourneert het aantal bytes in een bestand als een Long waarde, d.w.z. tot 2GB." #. 2FHpa #: sf_filesystem.xhp @@ -14270,7 +14270,7 @@ "par_id571613061005426\n" "help.text" msgid "The GetFileLen method can handle files with much larger sizes by returning a Currency value." -msgstr "" +msgstr "De GetFileLen-methode kan bestanden met veel grotere formaten verwerken door een Currency-waarde te retourneren." #. PK2Fo #: sf_filesystem.xhp @@ -14279,7 +14279,7 @@ "par_id161600685050367\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Een tekenreeks die een bestaand bestand vertegenwoordigt." #. o2GGJ #: sf_filesystem.xhp @@ -14288,7 +14288,7 @@ "par_id191584811478936\n" "help.text" msgid "Returns the last modified date of a given file." -msgstr "" +msgstr "Retourneert de laatste wijzigingsdatum van een bepaald bestand." #. VMB4i #: sf_filesystem.xhp @@ -14297,7 +14297,7 @@ "par_id25158481147822\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Een tekenreeks die een bestaand bestand vertegenwoordigt." #. VEZR6 #: sf_filesystem.xhp @@ -14306,7 +14306,7 @@ "par_id711584032366587\n" "help.text" msgid "Returns the last component of a file or folder name in native operating system format." -msgstr "" +msgstr "Retourneert het laatste onderdeel van een bestands- of mapnaam in de oorspronkelijke besturingssysteemindeling." #. 4vAvz #: sf_filesystem.xhp @@ -14315,7 +14315,7 @@ "par_id541613061300811\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "De methode controleert niet of het opgegeven bestand of de opgegeven map bestaat." #. iajZD #: sf_filesystem.xhp @@ -14324,7 +14324,7 @@ "par_id671584032366193\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Een tekenreeks die de bestandsnaam en het pad vertegenwoordigt." #. ffxFe #: sf_filesystem.xhp @@ -14333,7 +14333,7 @@ "par_id871584113432747\n" "help.text" msgid "Returns a string containing the name of the parent folder of a specified file or folder name." -msgstr "" +msgstr "Retourneert een tekenreeks met de naam van de bovenliggende map van een opgegeven bestands- of mapnaam." #. 2eBgA #: sf_filesystem.xhp @@ -14342,7 +14342,7 @@ "par_id611613061603039\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "De methode controleert niet of het opgegeven bestand of de opgegeven map bestaat." #. YUAQ3 #: sf_filesystem.xhp @@ -14351,7 +14351,7 @@ "par_id471584113432231\n" "help.text" msgid "filename: A string with the file or folder name to be analyzed." -msgstr "" +msgstr "filename: Een tekenreeks met de bestands- of mapnaam die moet worden geanalyseerd." #. Uc93M #: sf_filesystem.xhp @@ -14360,7 +14360,7 @@ "par_id82158385117289\n" "help.text" msgid "Returns a randomly generated temporary file name that is useful for performing operations that require a temporary file." -msgstr "" +msgstr "Retourneert een willekeurig gegenereerde tijdelijke bestandsnaam die handig is voor het uitvoeren van bewerkingen waarvoor een tijdelijk bestand nodig is." #. FS3qq #: sf_filesystem.xhp @@ -14369,7 +14369,7 @@ "par_id391613061770924\n" "help.text" msgid "The returned file name does not have any suffix. The folder part of the returned string is the system's temporary folder." -msgstr "" +msgstr "De geretourneerde bestandsnaam heeft geen achtervoegsel. Het mapgedeelte van de geretourneerde tekenreeks is de tijdelijke map van het systeem." #. W7gF7 #: sf_filesystem.xhp @@ -14378,7 +14378,7 @@ "par_id971613061774934\n" "help.text" msgid "The method does not create the temporary file." -msgstr "" +msgstr "De methode maakt het tijdelijke bestand niet aan." #. ch2AJ #: sf_filesystem.xhp @@ -14387,7 +14387,7 @@ "par_id58160104251423\n" "help.text" msgid "Hash functions are used by some cryptographic algorithms, in digital signatures, message authentication codes, fraud detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more." -msgstr "" +msgstr "Hash-functies worden gebruikt door sommige cryptografische algoritmen, in digitale handtekeningen, berichtauthenticatiecodes, fraudedetectie, vingerafdrukken, checksums (berichtintegriteitscontrole), hashtabellen, wachtwoordopslag en nog veel meer." #. qxDnP #: sf_filesystem.xhp @@ -14396,7 +14396,7 @@ "par_id301601042791356\n" "help.text" msgid "The HashFile method returns the result of a hash function, applied on a given file and using a specified algorithm. The returned value is a string of lower-case hexadecimal digits." -msgstr "" +msgstr "De methode HashFile retourneert het resultaat van een hash-functie, toegepast op een bepaald bestand en met behulp van een gespecificeerd algoritme. De geretourneerde waarde is een reeks kleine hexadecimale cijfers." #. eAW33 #: sf_filesystem.xhp @@ -14405,7 +14405,7 @@ "par_id861601043268484\n" "help.text" msgid "The hash algorithms supported are: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512." -msgstr "" +msgstr "De ondersteunde hash-algoritmen zijn: MD5, SHA1, SHA224, SHA256, SHA384 en SHA512." #. s5ZiA #: sf_filesystem.xhp @@ -14414,7 +14414,7 @@ "par_id28160104251451\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Een tekenreeks die een bestaand bestand vertegenwoordigt." #. Eomhm #: sf_filesystem.xhp @@ -14423,7 +14423,7 @@ "par_id71601042959846\n" "help.text" msgid "algorithm: One of the supported algorithms." -msgstr "" +msgstr "algorithm: Een van de ondersteunde algoritmen." #. HzFs2 #: sf_filesystem.xhp @@ -14432,7 +14432,7 @@ "par_id51584791330688\n" "help.text" msgid "Moves one or more files from one location to another. Returns True if at least one file has been moved or False if an error occurred." -msgstr "" +msgstr "Verplaatst een of meer bestanden van de ene naar de andere locatie. Retourneert True als ten minste één bestand is verplaatst of False als er een fout is opgetreden." #. RFrNE #: sf_filesystem.xhp @@ -14441,7 +14441,7 @@ "par_id631613062890648\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Er zal ook een fout optreden als de parameter source jokertekens gebruikt en met geen enkel bestand overeenkomt." #. ETmEP #: sf_filesystem.xhp @@ -14450,7 +14450,7 @@ "par_id241613062902777\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. DbC6F #: sf_filesystem.xhp @@ -14459,7 +14459,7 @@ "par_id721584791330406\n" "help.text" msgid "source: It can be a FileName or NamePattern to designate one or more files to be moved." -msgstr "" +msgstr "source: Het kan een FileName of NamePattern zijn om een of meer bestanden aan te duiden die moeten worden verplaatst." #. BHa7Y #: sf_filesystem.xhp @@ -14468,7 +14468,7 @@ "par_id291584791330181\n" "help.text" msgid "destination: If source is a FileName then this parameter indicates the new path and file name of the moved file." -msgstr "" +msgstr "destination: Als source een FileName is, dan geeft deze parameter het nieuwe pad en de nieuwe bestandsnaam van het verplaatste bestand aan." #. ZzA3Y #: sf_filesystem.xhp @@ -14477,7 +14477,7 @@ "par_id31613063334246\n" "help.text" msgid "If the move operation involves multiple files, then destination must be a folder name. If it does not exist, it is created." -msgstr "" +msgstr "Als de verplaatsingsbewerking meerdere bestanden omvat, moet destination een mapnaam zijn. Als het niet bestaat, wordt het gemaakt." #. 39oR8 #: sf_filesystem.xhp @@ -14486,7 +14486,7 @@ "par_id391613063494599\n" "help.text" msgid "If source and destination have the same parent folder, the method will rename the source." -msgstr "" +msgstr "Als source en destination dezelfde bovenliggende map hebben, zal de methode de naam van de source wijzigen." #. 7bzK4 #: sf_filesystem.xhp @@ -14495,7 +14495,7 @@ "par_id941613063476533\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Jokertekens zijn niet toegestaan in destination." #. Bysqd #: sf_filesystem.xhp @@ -14504,7 +14504,7 @@ "par_id91626272612758\n" "help.text" msgid "In the following examples only files are moved, subfolders are not." -msgstr "" +msgstr "In de volgende voorbeelden worden alleen bestanden verplaatst, submappen niet." #. iYBMe #: sf_filesystem.xhp @@ -14513,7 +14513,7 @@ "par_id301584791330868\n" "help.text" msgid "Moves one or more folders from one location to another. Returns True if at least one folder has been moved or False if an error occurred." -msgstr "" +msgstr "Verplaatst een of meer mappen van de ene naar de andere locatie. Retourneert True als ten minste één map is verplaatst of False als er een fout is opgetreden." #. RHjYG #: sf_filesystem.xhp @@ -14522,7 +14522,7 @@ "par_id411613072570664\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Er treedt ook een fout op als de parameter source jokertekens gebruikt en met geen enkele map overeenkomt." #. F2DaD #: sf_filesystem.xhp @@ -14531,7 +14531,7 @@ "par_id601613072595264\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "De methode stopt onmiddellijk nadat er een fout is opgetreden. De methode wordt niet teruggedraaid en maakt ook geen wijzigingen ongedaan die zijn aangebracht voordat de fout optrad." #. xVGBy #: sf_filesystem.xhp @@ -14540,7 +14540,7 @@ "par_id541584791330777\n" "help.text" msgid "source: It can be a FolderName or NamePattern to designate one or more folders to be moved." -msgstr "" +msgstr "source: Het kan een FolderName of NamePattern zijn om een of meer mappen aan te duiden die moeten worden verplaatst." #. 4Ampu #: sf_filesystem.xhp @@ -14549,7 +14549,7 @@ "par_id551584791330279\n" "help.text" msgid "destination: If the move operation involves a single folder, then destination is the name and path of the moved folder and it must not exist." -msgstr "" +msgstr "destination: Als de verplaatsingsbewerking een enkele map betreft, dan is destination de naam en het pad van de verplaatste map en mag deze niet bestaan." #. dD7SB #: sf_filesystem.xhp @@ -14558,7 +14558,7 @@ "par_id11613072890641\n" "help.text" msgid "If multiple folders are being moved, then destination designates where the folders in source will be moved into. If destination does not exist, it is created." -msgstr "" +msgstr "Als meerdere mappen worden verplaatst, geeft destination aan waar de mappen in source naartoe worden verplaatst. Als destination niet bestaat, wordt deze aangemaakt." #. A69QS #: sf_filesystem.xhp @@ -14567,7 +14567,7 @@ "par_id301613072928159\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Jokertekens zijn niet toegestaan in destination." #. JNTia #: sf_filesystem.xhp @@ -14576,7 +14576,7 @@ "par_id121585320922117\n" "help.text" msgid "Opens a file and returns a TextStream object that can be used to read from, write to, or append to the file." -msgstr "" +msgstr "Opent een bestand en retourneert een TextStream-object dat kan worden gebruikt om te lezen van, te schrijven naar of toe te voegen aan het bestand." #. ePMpQ #: sf_filesystem.xhp @@ -14585,7 +14585,7 @@ "par_id591613073104711\n" "help.text" msgid "Note that the method does not check if the given file is really a text file." -msgstr "" +msgstr "Merk op dat de methode niet controleert of het gegeven bestand echt een tekstbestand is." #. SGJCd #: sf_filesystem.xhp @@ -14594,7 +14594,7 @@ "par_id951613073135036\n" "help.text" msgid "The method returns a Null object (in Basic) or None (in Python) if an error occurred." -msgstr "" +msgstr "De methode retourneert een Null object (in Basic) of None (in Python) als er een fout is opgetreden." #. mxuwo #: sf_filesystem.xhp @@ -14603,7 +14603,7 @@ "par_id551585320922678\n" "help.text" msgid "filename: Identifies the file to open." -msgstr "" +msgstr "filename: Identificeert het te openen bestand." #. tsRLR #: sf_filesystem.xhp @@ -14612,7 +14612,7 @@ "par_id671585320922388\n" "help.text" msgid "iomode: Indicates the input/output mode. It can be one of three constants: svc.ForReading (default), svc.ForWriting, or svc.ForAppending." -msgstr "" +msgstr "iomode:Geeft de invoer-/uitvoermodus aan. Het kan een van de drie constanten zijn: svc.ForReading (standaard), svc.ForWriting of svc.ForAppending." #. z27vT #: sf_filesystem.xhp @@ -14621,7 +14621,7 @@ "par_id21585321398586\n" "help.text" msgid "create: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:" -msgstr "" +msgstr "create: Booleaanse waarde die aangeeft of een nieuw bestand kan worden gemaakt als de opgegeven filename niet bestaat:" #. VDFAi #: sf_filesystem.xhp @@ -14630,7 +14630,7 @@ "par_id721613073434797\n" "help.text" msgid "If True a new file and its parent folders will be created if they do not exist;" -msgstr "" +msgstr "Indien True een nieuw bestand en de bovenliggende mappen worden gemaakt als ze niet bestaan;" #. EypVC #: sf_filesystem.xhp @@ -14639,7 +14639,7 @@ "par_id201613073469289\n" "help.text" msgid "If False then new files are not created (default)." -msgstr "" +msgstr "Indien False dan worden er geen nieuwe bestanden aangemaakt (standaard)." #. wjGYH #: sf_filesystem.xhp @@ -14648,7 +14648,7 @@ "par_id771585321576210\n" "help.text" msgid "encoding: The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "encoding: De tekenset die moet worden gebruikt. De standaardcodering is \"UTF-8\"." #. FuYwe #: sf_filesystem.xhp @@ -14657,7 +14657,7 @@ "par_id871583670342501\n" "help.text" msgid "Opens a dialog box to open or save files." -msgstr "" +msgstr "Opent een dialoogvenster om bestanden te openen of op te slaan." #. SjDBv #: sf_filesystem.xhp @@ -14666,7 +14666,7 @@ "par_id881613074436979\n" "help.text" msgid "If the SAVE mode is set and the picked file exists, a warning message will be displayed." -msgstr "" +msgstr "Als de modus SAVE is ingesteld en het gekozen bestand bestaat, wordt een waarschuwingsbericht weergegeven." #. YgsLZ #: sf_filesystem.xhp @@ -14675,7 +14675,7 @@ "par_id481583670342502\n" "help.text" msgid "defaultfile: This argument is a string composed of a folder and file name:" -msgstr "" +msgstr "defaultfile: Dit argument is een tekenreeks die bestaat uit een map en een bestandsnaam:" #. fyVCs #: sf_filesystem.xhp @@ -14684,7 +14684,7 @@ "par_id511613074665951\n" "help.text" msgid "The folder part indicates the folder that will be shown when the dialog opens (default = the last selected folder)." -msgstr "" +msgstr "Het mapgedeelte geeft de map aan die wordt weergegeven wanneer het dialoogvenster wordt geopend (standaard = de laatst geselecteerde map)." #. xs5hU #: sf_filesystem.xhp @@ -14693,7 +14693,7 @@ "par_id631613074685308\n" "help.text" msgid "The file part designates the default file to open or save." -msgstr "" +msgstr "Het bestandsgedeelte geeft het standaardbestand aan dat moet worden geopend of opgeslagen." #. fBHyg #: sf_filesystem.xhp @@ -14702,7 +14702,7 @@ "par_id981583670342502\n" "help.text" msgid "mode: A string value that can be either \"OPEN\" (for input files) or \"SAVE\" (for output files). The default value is \"OPEN\"." -msgstr "" +msgstr "mode: Een tekenreekswaarde die \"OPEN\" (voor invoerbestanden) of \"SAVE\" (voor uitvoerbestanden) kan zijn. De standaardwaarde is \"OPEN\"." #. uvwDP #: sf_filesystem.xhp @@ -14711,7 +14711,7 @@ "par_id31583670342502\n" "help.text" msgid "filter: The extension of the files displayed when the dialog is opened (default = no filter)." -msgstr "" +msgstr "filter: De extensie van de bestanden die worden weergegeven wanneer het dialoogvenster wordt geopend (standaard = geen filter)." #. niaGR #: sf_filesystem.xhp @@ -14720,7 +14720,7 @@ "par_id881626276134300\n" "help.text" msgid "The examples below open a file picker with the \"txt\" filter applied." -msgstr "" +msgstr "De onderstaande voorbeelden openen een bestandskiezer met het \"txt\"-filter toegepast." #. HkwaR #: sf_filesystem.xhp @@ -14729,7 +14729,7 @@ "par_id521583671701777\n" "help.text" msgid "Opens a dialog box to select a folder." -msgstr "" +msgstr "Opent een dialoogvenster om een map te selecteren." #. mG6QD #: sf_filesystem.xhp @@ -14738,7 +14738,7 @@ "par_id951583671701872\n" "help.text" msgid "defaultfolder: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)." -msgstr "" +msgstr "defaultfolder: Een tekenreeks met de mapnaam die wordt weergegeven wanneer het dialoogvenster wordt geopend (standaard = de laatst geselecteerde map)." #. ymABK #: sf_filesystem.xhp @@ -14747,7 +14747,7 @@ "par_id821583671701764\n" "help.text" msgid "freetext: Text to display in the dialog (default = \"\")." -msgstr "" +msgstr "freetext: Tekst die in het dialoogvenster moet worden weergegeven (standaard = \"\")." #. 4FFby #: sf_filesystem.xhp @@ -14756,7 +14756,7 @@ "bas_id921583671701610\n" "help.text" msgid "aFolder = FSO.PickFolder(\"C:\\Documents\", \"Choose a folder or press Cancel\")" -msgstr "" +msgstr "aFolder = FSO.PickFolder(\"C:\\Documenten\", \"Kies een map of druk op Annuleren\")" #. ENDba #: sf_filesystem.xhp @@ -14765,7 +14765,7 @@ "pyc_id631626276402296\n" "help.text" msgid "aFolder = fso.PickFolder(r\"C:\\Documents\", \"Choose a folder or press Cancel\")" -msgstr "" +msgstr "aFolder = fso.PickFolder(r\"C:\\Documents\", \"Kies een map op druk op Annuleren\")" #. xdfBh #: sf_filesystem.xhp @@ -14774,7 +14774,7 @@ "par_id431584016761996\n" "help.text" msgid "Returns a zero-based array of strings corresponding to the folders stored in a given foldername." -msgstr "" +msgstr "Retourneert een op nul gebaseerde matrix van tekenreeksen die overeenkomen met de mappen die zijn opgeslagen in een gegeven foldername." #. LVNZq #: sf_filesystem.xhp @@ -14783,7 +14783,7 @@ "par_id431613075267241\n" "help.text" msgid "The list may be filtered with wildcards." -msgstr "" +msgstr "De lijst kan worden gefilterd met jokertekens." #. 7pDiA #: sf_filesystem.xhp @@ -14792,7 +14792,7 @@ "par_id701584016761945\n" "help.text" msgid "foldername: A string representing a folder. The folder must exist. foldername must not designate a file." -msgstr "" +msgstr "foldername: Een tekenreeks die een map vertegenwoordigt. De map moet bestaan. foldername mag geen bestand aanduiden." #. Xmg8b #: sf_filesystem.xhp @@ -14801,7 +14801,7 @@ "par_id471585648674921\n" "help.text" msgid "filter: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")." -msgstr "" +msgstr "filter: Een tekenreeks met jokertekens (\"?\" en \"*\") die worden toegepast op de resulterende lijst met mappen (standaard = \"\")." #. XQG8t #: sf_form.xhp @@ -14810,7 +14810,7 @@ "tit\n" "help.text" msgid "SFDocuments.Form service" -msgstr "" +msgstr "SFDocuments.Form-service" #. kanuY #: sf_form.xhp @@ -14819,7 +14819,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDocuments.Form service" -msgstr "" +msgstr "SFDocuments.Form-service" #. LDpRB #: sf_form.xhp @@ -14828,7 +14828,7 @@ "par_id931583589764919\n" "help.text" msgid "The Form service provides methods and properties to manage forms in %PRODUCTNAME documents. This service supports forms in Base, Calc and Writer documents and allows to:" -msgstr "" +msgstr "De service Form biedt methoden en eigenschappen om formulieren in %PRODUCTNAME-documenten te beheren. Deze service ondersteunt formulieren in Base-, Calc- en Writer-documenten en maakt het volgende mogelijk:" #. U3zGB #: sf_form.xhp @@ -14837,7 +14837,7 @@ "par_id381618172063851\n" "help.text" msgid "Open and activate forms." -msgstr "" +msgstr "Formulieren openen en activeren." #. SC6Yb #: sf_form.xhp @@ -14846,7 +14846,7 @@ "par_id261618172129782\n" "help.text" msgid "Navigate through records shown by the form." -msgstr "" +msgstr "Door de records navigeren die op het formulier worden weergegeven." #. krQfB #: sf_form.xhp @@ -14855,7 +14855,7 @@ "par_id281618172141607\n" "help.text" msgid "Get access to the controls inside the form." -msgstr "" +msgstr "Toegang krijgen tot de bedieningselementen in het formulier." #. itKdZ #: sf_form.xhp @@ -14864,7 +14864,7 @@ "par_id371618172155483\n" "help.text" msgid "Get access to subforms of a parent form." -msgstr "" +msgstr "Toegang krijgen tot subformulieren van een bovenliggend formulier." #. QcJ24 #: sf_form.xhp @@ -14873,7 +14873,7 @@ "par_id351616768789190\n" "help.text" msgid "The SFDocuments.Form service is available from %PRODUCTNAME 7.2 onwards." -msgstr "" +msgstr "De service SFDocuments.Form is beschikbaar vanaf %PRODUCTNAME 7.2 en later." #. Ga5NU #: sf_form.xhp @@ -14882,7 +14882,7 @@ "par_id451616765867881\n" "help.text" msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the Form service provides quick access to the linked database through the SFDatabases.Database service." -msgstr "" +msgstr "Formulieren worden meestal gebruikt in %PRODUCTNAME-documenten om gebruikersinterfaces te maken die zijn verbonden met relationele databases. Daarom biedt de service Form snelle toegang tot de gekoppelde database via de SFDatabases .Database-service." #. rGB5M #: sf_form.xhp @@ -14891,7 +14891,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDocuments.Form service is closely related to the SFDocuments.FormControl service." -msgstr "" +msgstr "De service SFDocuments.Form is nauw verwant aan de SFDocuments.FormControl-service." #. 3HUmh #: sf_form.xhp @@ -14900,7 +14900,7 @@ "hd_id161616766330804\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definities" #. GYDbT #: sf_form.xhp @@ -14909,7 +14909,7 @@ "par_id951618172906010\n" "help.text" msgid "Forms are usually created in Base documents, but they can be added to Writer and Calc documents as well." -msgstr "" +msgstr "Formulieren worden meestal gemaakt in Base-documenten, maar ze kunnen ook worden toegevoegd aan Writer- en Calc-documenten." #. nKUdb #: sf_form.xhp @@ -14918,7 +14918,7 @@ "par_id671618173380680\n" "help.text" msgid "In Base, each form you create using the Insert - Form functionality or through the Form Wizard is actually a FormDocument that can be handled with the Form service. Base documents can contain an unlimited number of form documents." -msgstr "" +msgstr "In Base maakt elk formulier dat u maakt met de functie Invoegen - Formulier of via de Assistent Formulier is eigenlijk een FormDocument dat kan worden afgehandeld met de service Form. Basisdocumenten kunnen een onbeperkt aantal formulierdocumenten bevatten." #. kegBD #: sf_form.xhp @@ -14927,7 +14927,7 @@ "par_id841618177362626\n" "help.text" msgid "Below is an example showing the hierarchy of all the elements involved in accessing forms and subforms in a Base document. Suppose you have a Base file named Employees.odb and inside it you created a form document to add new employees to the database. The form document contains a main form named EmployeeData that gives access to a table. There is also a subform WorksAtPlant that allows you to associate the new employee to one of the plants of the company." -msgstr "" +msgstr "Hieronder ziet u een voorbeeld dat de hiërarchie toont van alle elementen die betrokken zijn bij het openen van formulieren en subformulieren in een basisdocument. Stel dat u een basisbestand hebt met de naam Employees.odb en daarin een formulierdocument hebt gemaakt om nieuwe werknemers aan de database toe te voegen. Het formulierdocument bevat een hoofdformulier met de naam EmployeeData dat toegang geeft tot een tabel. Er is ook een subformulier WorksAtPlant waarmee u de nieuwe werknemer kunt koppelen aan een van de vestigingen van het bedrijf." #. izkiB #: sf_form.xhp @@ -14936,7 +14936,7 @@ "bas_id151618176848874\n" "help.text" msgid "Employees.odb (Base document)" -msgstr "" +msgstr "Employees.odb (Base-document)" #. cz2fJ #: sf_form.xhp @@ -14945,7 +14945,7 @@ "bas_id941618176869485\n" "help.text" msgid "|-- EmployeeData (Main Form)" -msgstr "" +msgstr "|-- EmployeeData (Hoofdformulier)" #. k8nxK #: sf_form.xhp @@ -14954,7 +14954,7 @@ "par_id221618173444457\n" "help.text" msgid "A FormDocument can be seen as a set of forms that provide access to datasets such as database tables and queries from within %PRODUCTNAME documents. The names of forms and subforms inside a FormDocument can be accessed using the Form Navigator." -msgstr "" +msgstr "Een FormDocument kan worden gezien als een set formulieren die toegang bieden tot datasets zoals databasetabellen en query's vanuit %PRODUCTNAME-documenten. De namen van formulieren en subformulieren in een FormDocument zijn toegankelijk via de Formuliernavigator." #. AMFVt #: sf_form.xhp @@ -14963,7 +14963,7 @@ "hd_id851616767037521\n" "help.text" msgid "Forms and Subforms" -msgstr "" +msgstr "Formulieren en subformulieren" #. GA63u #: sf_form.xhp @@ -14972,7 +14972,7 @@ "par_id681616767265034\n" "help.text" msgid "A form document is composed of one or more forms which, in turn, may also contain any number of subforms. A Form is an abstract set of controls that are linked to a specified data source, which can be a database table, a query or a SQL SELECT statement." -msgstr "" +msgstr "Een formulierdocument is samengesteld uit een of meer formulieren die op hun beurt weer een willekeurig aantal subformulieren kunnen bevatten. Een formulier is een abstracte set besturingselementen die zijn gekoppeld aan een opgegeven gegevensbron, wat een databasetabel, een query of een SQL-instructie SELECT kan zijn." #. fDvBD #: sf_form.xhp @@ -14981,7 +14981,7 @@ "par_id711618178831976\n" "help.text" msgid "In Calc and Writer documents, each form can be linked to datasets located in different databases. On the other hand, in Base documents the database contained in the document is common to all forms." -msgstr "" +msgstr "In Calc- en Writer-documenten kan elk formulier worden gekoppeld aan datasets die zich in verschillende databases bevinden. Aan de andere kant is in Base-documenten de database in het document gemeenschappelijk voor alle formulieren." #. wDfhy #: sf_form.xhp @@ -14990,7 +14990,7 @@ "par_id191616837111507\n" "help.text" msgid "To invoke the SFDocuments.Form service refer to the methods Forms(), FormDocuments() and OpenFormDocument() of the SFDocuments.Document service" -msgstr "" +msgstr "Om de service SFDocuments.Form aan te roepen, raadpleegt u de methoden Forms(), FormDocuments() en OpenFormDocument() van het SFDocuments.Document-service." #. gs4KC #: sf_form.xhp @@ -14999,7 +14999,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. KfjEA #: sf_form.xhp @@ -15008,7 +15008,7 @@ "hd_id991618179698545\n" "help.text" msgid "In Writer documents" -msgstr "" +msgstr "In Writer-documenten" #. 8s4VD #: sf_form.xhp @@ -15017,7 +15017,7 @@ "par_id51616767892693\n" "help.text" msgid "The code snippet below shows how to access the form named Form1 that is inside a Writer file:" -msgstr "" +msgstr "Het onderstaande codefragment laat zien hoe u toegang krijgt tot het formulier met de naam Form1 dat zich in een Writer-bestand bevindt:" #. NFikt #: sf_form.xhp @@ -15026,7 +15026,7 @@ "par_id531618179517628\n" "help.text" msgid "Forms can be accessed by their names or by their indices, as shown below:" -msgstr "" +msgstr "Formulieren zijn toegankelijk via hun naam of index, zoals hieronder weergegeven:" #. 8PHy6 #: sf_form.xhp @@ -15035,7 +15035,7 @@ "par_id181618250546617\n" "help.text" msgid "If you try to access a FormDocument that is currently opened in Design Mode an exception will be raised." -msgstr "" +msgstr "Als u probeert toegang te krijgen tot een FormDocument dat momenteel is geopend in Ontwerpmodus, wordt er een uitzondering gemaakt." #. xNr3R #: sf_form.xhp @@ -15044,7 +15044,7 @@ "hd_id921618179792926\n" "help.text" msgid "In Calc documents" -msgstr "" +msgstr "In Calc-documenten" #. yCpnG #: sf_form.xhp @@ -15053,7 +15053,7 @@ "par_id481618179851104\n" "help.text" msgid "A form in a Calc file must have a unique name inside its sheet. Hence, the Forms method requires two arguments, the first indicating the sheet name and the second specifying the form name." -msgstr "" +msgstr "Een formulier in een Calc-bestand moet een unieke naam hebben binnen het blad. Daarom vereist de methode Forms twee argumenten, waarbij de eerste de bladnaam aangeeft en de tweede de formuliernaam." #. i9Um4 #: sf_form.xhp @@ -15062,7 +15062,7 @@ "par_id51622028165429\n" "help.text" msgid "This is achieved identically using Python:" -msgstr "" +msgstr "Dit wordt op dezelfde manier bereikt met Python:" #. 2fB94 #: sf_form.xhp @@ -15071,7 +15071,7 @@ "hd_id201618180055756\n" "help.text" msgid "In Base documents" -msgstr "" +msgstr "In Base-documenten" #. J3Btp #: sf_form.xhp @@ -15080,7 +15080,7 @@ "par_id711616768164987\n" "help.text" msgid "A FormDocument inside a Base document is accessed by its name. The following example opens the form document named thisFormDocument and accesses the form MainForm:" -msgstr "" +msgstr "Een FormDocument in een basisdocument is toegankelijk via zijn naam. Het volgende voorbeeld opent het formulierdocument met de naam thisFormDocument en opent het formulier MainForm:" #. pbtEM #: sf_form.xhp @@ -15089,7 +15089,7 @@ "bas_id271598171225874\n" "help.text" msgid "' The statement below is necessary only if the form hasn't been opened yet" -msgstr "" +msgstr "' Onderstaande instructie is alleen nodig als het formulier nog niet is geopend" #. EDADK #: sf_form.xhp @@ -15098,7 +15098,7 @@ "bas_id51616768358888\n" "help.text" msgid "' Or, alternatively, to access the form by its index ..." -msgstr "" +msgstr "' Of, als alternatief, om toegang te krijgen tot het formulier via de index ..." #. 2v2aG #: sf_form.xhp @@ -15107,7 +15107,7 @@ "par_id991618249636036\n" "help.text" msgid "To perform any action on a form using the Form service, the FormDocument must have been opened either manually by the user or programmatically in a user script. The latter can be done by calling the OpenFormDocument method of the Base service." -msgstr "" +msgstr "Om een actie op een formulier uit te voeren met behulp van de service Form, moet het FormDocument handmatig door de gebruiker of programmatisch in een gebruikersscript zijn geopend. Dit laatste kan worden gedaan door de methode OpenFormDocument van de Base-service." #. DDerZ #: sf_form.xhp @@ -15116,7 +15116,7 @@ "par_id11618180564274\n" "help.text" msgid "To access a given subform of a form use the SubForms method. Note that in the example below mySubForm is a new instance of the Form service." -msgstr "" +msgstr "Gebruik de methode SubForms om toegang te krijgen tot een bepaald subformulier van een formulier. Merk op dat in het onderstaande voorbeeld mySubForm een nieuwe instantie is van de service Form." #. e7fcY #: sf_form.xhp @@ -15125,7 +15125,7 @@ "par_id681622028653480\n" "help.text" msgid "Previous examples translate in Python as:" -msgstr "" +msgstr "Eerdere voorbeelden vertalen in Python als:" #. ebc4K #: sf_form.xhp @@ -15134,7 +15134,7 @@ "pyc_id811622808499801\n" "help.text" msgid "# The statement below is necessary only if the form hasn't been opened yet" -msgstr "" +msgstr "# De onderstaande instructie is alleen nodig als het formulier nog niet geopend is" #. GdyX6 #: sf_form.xhp @@ -15143,7 +15143,7 @@ "pyc_id511622808538351\n" "help.text" msgid "# Or, alternatively, to access the form by its index ..." -msgstr "" +msgstr "# Of, benader het formulier via de index van het formulier" #. QFFzk #: sf_form.xhp @@ -15152,7 +15152,7 @@ "hd_id211618180379064\n" "help.text" msgid "In Form events" -msgstr "" +msgstr "In formuliergebeurtenissen" #. WBzCD #: sf_form.xhp @@ -15161,7 +15161,7 @@ "par_id421616768529754\n" "help.text" msgid "To invoke the Form service when a form event takes place:" -msgstr "" +msgstr "Om de service Form aan te roepen als er een gebeurtenis plaatsvindt:" #. k2fKf #: sf_form.xhp @@ -15170,7 +15170,7 @@ "par_id721623150543016\n" "help.text" msgid "It is recommended to free resources after use of the Form service." -msgstr "" +msgstr "Het wordt aanbevolen om bronnen vrij te geven na gebruik van de service Form." #. pF9UQ #: sf_form.xhp @@ -15179,7 +15179,7 @@ "par_id221623150547406\n" "help.text" msgid "This operation is done implicitly when a form document is closed with the CloseFormDocument() method described below." -msgstr "" +msgstr "Dit wordt automatisch gedaan als het formulier wordt gesloten met de methode CloseFormDocument(), die hieronder is beschreven." #. GueeT #: sf_form.xhp @@ -15188,7 +15188,7 @@ "hd_id651583668365757\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. 9LaxS #: sf_form.xhp @@ -15197,7 +15197,7 @@ "par_id871583668386455\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. SpGw6 #: sf_form.xhp @@ -15206,7 +15206,7 @@ "par_id491583668386455\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. K7Bsy #: sf_form.xhp @@ -15215,7 +15215,7 @@ "par_id271583668474014\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. ekeZU #: sf_form.xhp @@ -15224,7 +15224,7 @@ "par_id401583668386455\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. wSC47 #: sf_form.xhp @@ -15233,7 +15233,7 @@ "par_id371583668519172\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. jJ2dL #: sf_form.xhp @@ -15242,7 +15242,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies if the form allows to delete records." -msgstr "" +msgstr "Geeft aan of er op het formulier records verwijderd kunnen worden." #. DBxgx #: sf_form.xhp @@ -15251,7 +15251,7 @@ "par_id541583839708548\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. j5J3C #: sf_form.xhp @@ -15260,7 +15260,7 @@ "par_id731583839708412\n" "help.text" msgid "Specifies if the form allows to add records." -msgstr "" +msgstr "Geeft aan of er op het formulier records toegevoegd kunnen worden." #. FCFEk #: sf_form.xhp @@ -15269,7 +15269,7 @@ "par_id761584027709516\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 8qCAE #: sf_form.xhp @@ -15278,7 +15278,7 @@ "par_id971584027709752\n" "help.text" msgid "Specifies if the form allows to update records." -msgstr "" +msgstr "Geeft aan of er op het formulier records gewijzigd kunnen worden." #. VxAL4 #: sf_form.xhp @@ -15287,7 +15287,7 @@ "par_id31583839767743\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. CRA7v #: sf_form.xhp @@ -15296,7 +15296,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies the hierarchical name of the Base Form containing the actual form." -msgstr "" +msgstr "Specificeert de hiërarchische naam van de Base Form die het huidige form bevat." #. FehA2 #: sf_form.xhp @@ -15305,7 +15305,7 @@ "par_id771583839920487\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. V8tZX #: sf_form.xhp @@ -15314,7 +15314,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies uniquely the current record of the form's underlying table, query or SQL statement." -msgstr "" +msgstr "Specificeert uniek het huidige record op het formulier van de onderliggende tabel, query of SQL-instructie." #. 3jDxi #: sf_form.xhp @@ -15323,7 +15323,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 7NUo8 #: sf_form.xhp @@ -15332,7 +15332,7 @@ "par_id721588333908708\n" "help.text" msgid "Identifies the current record in the dataset being viewed on a form. If the row number is positive, the cursor moves to the given row number with respect to the beginning of the result set. Row count starts at 1. If the given row number is negative, the cursor moves to an absolute row position with respect to the end of the result set. Row -1 refers to the last row in the result set." -msgstr "" +msgstr "Identificeert het huidige record in de dataset die wordt bekeken op een formulier.Als het rijnummer positief is, gaat de cursor naar het gegeven rijnummer ten opzichte van het begin van de resultatenset. Het aantal rijen begint bij 1. Als het gegeven rijnummer negatief is, gaat de cursor naar een absolute rijpositie ten opzichte van het einde van de resultatenset. Rij -1 verwijst naar de laatste rij in de resultatenset." #. FKDA7 #: sf_form.xhp @@ -15341,7 +15341,7 @@ "par_id501583774433513\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. eAsdX #: sf_form.xhp @@ -15350,7 +15350,7 @@ "par_id151598177605296\n" "help.text" msgid "Specifies a subset of records to be displayed as a SQL WHERE-clause without the WHERE keyword." -msgstr "" +msgstr "Specificeert een subset van records die moet worden weergegeven als een SQL WHERE-clausule zonder het trefwoord WHERE." #. uyje5 #: sf_form.xhp @@ -15359,7 +15359,7 @@ "par_id271588334016191\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. FQDDW #: sf_form.xhp @@ -15368,7 +15368,7 @@ "par_id251588334016874\n" "help.text" msgid "Specifies how records in a child subform are linked to records in its parent form." -msgstr "" +msgstr "Geeft aan hoe records in een onderliggend subformulier worden gekoppeld aan records in het bovenliggende formulier." #. DMwPW #: sf_form.xhp @@ -15377,7 +15377,7 @@ "par_id901616774153495\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 2EiCA #: sf_form.xhp @@ -15386,7 +15386,7 @@ "par_id981616774153723\n" "help.text" msgid "Specifies how records in a child subform are linked to records in its parent form." -msgstr "" +msgstr "Geeft aan hoe records in een onderliggend subformulier worden gekoppeld aan records in het bovenliggende formulier." #. ppCiD #: sf_form.xhp @@ -15395,7 +15395,7 @@ "par_id501616774304840\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. kPfzG #: sf_form.xhp @@ -15404,7 +15404,7 @@ "par_id461616774304497\n" "help.text" msgid "The name of the current form." -msgstr "" +msgstr "De naam van het huidige formulier." #. vpBCA #: sf_form.xhp @@ -15413,7 +15413,7 @@ "par_id751616774384451\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. ppErx #: sf_form.xhp @@ -15422,7 +15422,7 @@ "par_id321616774384489\n" "help.text" msgid "Specifies in which order the records should be displayed as a SQL ORDER BY clause without the ORDER BY keywords." -msgstr "" +msgstr "Geeft aan in welke volgorde de records moeten worden weergegeven als een SQL ORDER BY-clausule zonder de trefwoorden ORDER BY." #. AGC5s #: sf_form.xhp @@ -15431,7 +15431,7 @@ "par_id261616774918923\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. rjCpM #: sf_form.xhp @@ -15440,7 +15440,7 @@ "par_id171616774918881\n" "help.text" msgid "The parent of the current form. It can be either a SFDocuments.Form or a SFDocuments.Document object." -msgstr "" +msgstr "Het kan een SFDocuments.Form of een SFDocuments.Document-object zijn." #. rLS8r #: sf_form.xhp @@ -15449,7 +15449,7 @@ "par_id501616777650751\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. USDVC #: sf_form.xhp @@ -15458,7 +15458,7 @@ "par_id91616777650933\n" "help.text" msgid "Specifies the source of the data, as a table name, a query name or a SQL statement." -msgstr "" +msgstr "Specificeert de bron van de gegevens, zoals een tabelnaam, een querynaam of een SQL-instructie." #. rtCsj #: sf_form.xhp @@ -15467,7 +15467,7 @@ "par_id451598177924437\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. GxHLP #: sf_form.xhp @@ -15476,7 +15476,7 @@ "par_id94159817792441\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. VYFDs #: sf_form.xhp @@ -15485,7 +15485,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing interactions with the form. Refer to XForm and DataForm in the API documentation for detailed information." -msgstr "" +msgstr "Raadpleeg XForm en DataForm in de API-documentatie voor gedetailleerde informatie." #. cwE3k #: sf_form.xhp @@ -15494,7 +15494,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Eigenschappen gebeurtenis" #. eTuoa #: sf_form.xhp @@ -15503,7 +15503,7 @@ "par_id41612629140856\n" "help.text" msgid "The properties below return or set URI strings that define the script triggered by the event." -msgstr "" +msgstr "De onderstaande eigenschappen retourneren of stellen URI-tekenreeksen in die het script definiëren dat door de gebeurtenis wordt geactiveerd." #. fdses #: sf_form.xhp @@ -15512,7 +15512,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. DsQGQ #: sf_form.xhp @@ -15521,7 +15521,7 @@ "par_id401612628879819\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. 5FemG #: sf_form.xhp @@ -15530,7 +15530,7 @@ "par_id281612628879819\n" "help.text" msgid "Basic IDE Description" -msgstr "" +msgstr "Basic IDE-beschrijving" #. PgdP8 #: sf_form.xhp @@ -15539,7 +15539,7 @@ "par_id111612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. GAgms #: sf_form.xhp @@ -15548,7 +15548,7 @@ "par_id1001612629836902\n" "help.text" msgid "Before record change" -msgstr "" +msgstr "Vóór recordwijziging" #. Mr9ns #: sf_form.xhp @@ -15557,7 +15557,7 @@ "par_id291612629836294\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. DwhZn #: sf_form.xhp @@ -15566,7 +15566,7 @@ "par_id62161262983683\n" "help.text" msgid "Fill parameters" -msgstr "" +msgstr "Parameters vullen" #. DrMbU #: sf_form.xhp @@ -15575,7 +15575,7 @@ "par_id81612629836634\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. eAJAN #: sf_form.xhp @@ -15584,7 +15584,7 @@ "par_id881612629836744\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Voorafgaand aan het herstellen" #. Y9d6z #: sf_form.xhp @@ -15593,7 +15593,7 @@ "par_id591612629836830\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. LKxEu #: sf_form.xhp @@ -15602,7 +15602,7 @@ "par_id161612629836775\n" "help.text" msgid "Before record action" -msgstr "" +msgstr "Voor recordactie" #. Zyx2S #: sf_form.xhp @@ -15611,7 +15611,7 @@ "par_id891612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 2HBeC #: sf_form.xhp @@ -15620,7 +15620,7 @@ "par_id461612629836679\n" "help.text" msgid "Before submitting" -msgstr "" +msgstr "Voor het versturen" #. 2fJrZ #: sf_form.xhp @@ -15629,7 +15629,7 @@ "par_id131612629836291\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. BX4AH #: sf_form.xhp @@ -15638,7 +15638,7 @@ "par_id151612629836151\n" "help.text" msgid "Confirm deletion" -msgstr "" +msgstr "Verwijderen bevestigen" #. W9izF #: sf_form.xhp @@ -15647,7 +15647,7 @@ "par_id211612629836725\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. pDvPB #: sf_form.xhp @@ -15656,7 +15656,7 @@ "par_id361612629836624\n" "help.text" msgid "After record change" -msgstr "" +msgstr "Na recordwijziging" #. WprGG #: sf_form.xhp @@ -15665,7 +15665,7 @@ "par_id311612629836481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Xn2CS #: sf_form.xhp @@ -15674,7 +15674,7 @@ "par_id721612629836752\n" "help.text" msgid "Error occurred" -msgstr "" +msgstr "Fout opgetreden" #. B3zCy #: sf_form.xhp @@ -15683,7 +15683,7 @@ "par_id981612629836116\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. L3Ac6 #: sf_form.xhp @@ -15692,7 +15692,7 @@ "par_id381612629836635\n" "help.text" msgid "When loading" -msgstr "" +msgstr "Bij het laden" #. 9Z9vv #: sf_form.xhp @@ -15701,7 +15701,7 @@ "par_id711612629836704\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. XL4Js #: sf_form.xhp @@ -15710,7 +15710,7 @@ "par_id35161262983642\n" "help.text" msgid "When reloading" -msgstr "" +msgstr "Bij het opnieuw laden" #. P6DEi #: sf_form.xhp @@ -15719,7 +15719,7 @@ "par_id44161677878329\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. ywCsh #: sf_form.xhp @@ -15728,7 +15728,7 @@ "par_id661616778783899\n" "help.text" msgid "Before reloading" -msgstr "" +msgstr "Voor het opnieuw laden" #. eGnRj #: sf_form.xhp @@ -15737,7 +15737,7 @@ "par_id651616778529764\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. E6JUH #: sf_form.xhp @@ -15746,7 +15746,7 @@ "par_id311616778529570\n" "help.text" msgid "After resetting" -msgstr "" +msgstr "Na het herstellen" #. VDAk5 #: sf_form.xhp @@ -15755,7 +15755,7 @@ "par_id601616778529481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 99FfH #: sf_form.xhp @@ -15764,7 +15764,7 @@ "par_id351616778529352\n" "help.text" msgid "After record action" -msgstr "" +msgstr "Na de recordactie" #. CxndA #: sf_form.xhp @@ -15773,7 +15773,7 @@ "par_id711616778529292\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. DTDCq #: sf_form.xhp @@ -15782,7 +15782,7 @@ "par_id981616778529250\n" "help.text" msgid "When unloading" -msgstr "" +msgstr "Bij het lossen" #. iWroa #: sf_form.xhp @@ -15791,7 +15791,7 @@ "par_id521616778529932\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. pVPR9 #: sf_form.xhp @@ -15800,7 +15800,7 @@ "par_id511616778529291\n" "help.text" msgid "Before unloading" -msgstr "" +msgstr "Voor het lossen" #. cTdFS #: sf_form.xhp @@ -15809,7 +15809,7 @@ "par_id961618181634322\n" "help.text" msgid "To learn more about URI strings, refer to the Scripting Framework URI Specification." -msgstr "" +msgstr "Raadpleeg de internetpagina Scripting Framework URI-specification voor meer informatie over URI-tekenreeksen." #. bkBH8 #: sf_form.xhp @@ -15818,7 +15818,7 @@ "par_id921606472825856\n" "help.text" msgid "List of methods in the Form service" -msgstr "" +msgstr "Lijst met methoden in de formulierservice" #. KwDij #: sf_form.xhp @@ -15827,7 +15827,7 @@ "par_id871583933076448\n" "help.text" msgid "Sets the focus on the current Form instance. Returns True if focusing was successful." -msgstr "" +msgstr "Stelt de focus in op de huidige Form-instantie. Retourneert True als het scherpstellen gelukt is." #. 9qj5F #: sf_form.xhp @@ -15836,7 +15836,7 @@ "par_id81616858956290\n" "help.text" msgid "The behavior of the Activate method depends on the type of document where the form is located:" -msgstr "" +msgstr "Het gedrag van de methode Activate hangt af van het type document waarin het formulier zich bevindt:" #. YVgyr #: sf_form.xhp @@ -15845,7 +15845,7 @@ "par_id761616858967361\n" "help.text" msgid "In Writer documents: Sets the focus on that document." -msgstr "" +msgstr "In Writer-documenten: Stelt de focus op dat document in." #. HKFTw #: sf_form.xhp @@ -15854,7 +15854,7 @@ "par_id931616859010103\n" "help.text" msgid "In Calc documents: Sets the focus on the sheet to which the form belongs." -msgstr "" +msgstr "In Calc-documenten: Stelt de focus in op het blad waartoe het formulier behoort." #. 6jx5G #: sf_form.xhp @@ -15863,7 +15863,7 @@ "par_id41616859019478\n" "help.text" msgid "In Base documents: Sets the focus on the FormDocument the Form refers to." -msgstr "" +msgstr "In Base-documenten: Stelt de focus in op het FormDocument waarnaar het Form verwijst." #. J5C7y #: sf_form.xhp @@ -15872,7 +15872,7 @@ "par_id921618228229529\n" "help.text" msgid "The following example assumes you want to activate the form named FormA located in Sheet1 of the currently open Calc file. It first gets access to the document using the Document service and ThisComponent and then activates the form." -msgstr "" +msgstr "In het volgende voorbeeld wordt ervan uitgegaan dat u het formulier met de naam FormA in Blad1 van het momenteel geopende Calc-bestand wilt activeren. Het krijgt eerst toegang tot het document met behulp van de service Document en ThisComponent en activeert vervolgens het formulier." #. 4EC5M #: sf_form.xhp @@ -15881,7 +15881,7 @@ "bas_id21618228468066\n" "help.text" msgid "'Gets hold of the form that will be activated" -msgstr "" +msgstr "' Ontvangt het formulier dat wordt geactiveerd" #. M2Wks #: sf_form.xhp @@ -15890,7 +15890,7 @@ "bas_id201618228487565\n" "help.text" msgid "'Activates the form" -msgstr "" +msgstr "'Activeert het formulier" #. YHxMm #: sf_form.xhp @@ -15899,7 +15899,7 @@ "par_id81618228720782\n" "help.text" msgid "ThisComponent applies to Calc and Writer documents. For Base documents use ThisDataBaseDocument." -msgstr "" +msgstr "ThisComponent is van toepassing op Calc- en Writer-documenten. Gebruik voor basisdocumenten ThisDataBaseDocument." #. QznyJ #: sf_form.xhp @@ -15908,7 +15908,7 @@ "par_id501616860541195\n" "help.text" msgid "Closes the form document containing the actual Form instance. The Form instance is disposed." -msgstr "" +msgstr "Sluit het formulierdocument dat de daadwerkelijke Form instantie bevat. De instantie Form is verwijderd." #. CcCpD #: sf_form.xhp @@ -15917,7 +15917,7 @@ "par_id611618229004669\n" "help.text" msgid "This method only closes form documents located in Base documents. If the form is stored in a Writer or Calc document, calling CloseFormDocument will have no effect." -msgstr "" +msgstr "Deze methode sluit alleen formulierdocumenten die zich in Basisdocumenten bevinden. Als het formulier is opgeslagen in een Writer- of Calc-document, heeft het aanroepen van CloseFormDocument geen effect." #. a8CxQ #: sf_form.xhp @@ -15926,7 +15926,7 @@ "par_id161584541257982\n" "help.text" msgid "The value returned by the Controls method depends on the arguments provided:" -msgstr "" +msgstr "De waarde die wordt geretourneerd door de methode Controls hangt af van de opgegeven argumenten:" #. YkyY2 #: sf_form.xhp @@ -15935,7 +15935,7 @@ "par_id421598179770993\n" "help.text" msgid "If the method is called without arguments, then it returns the list of the controls contained in the form. Beware that the returned list does not contain any subform controls." -msgstr "" +msgstr "Als de methode zonder argumenten wordt genoemd, dan retourneert het de lijst van de besturingselementen in het formulier. Let op dat de geretourneerde lijst geen subformulierbesturingselementen bevat." #. SsiUX #: sf_form.xhp @@ -15944,7 +15944,7 @@ "par_id81598185229301\n" "help.text" msgid "If the optional ControlName argument is provided, the method returns a FormControl class instance referring to the specified control." -msgstr "" +msgstr "Als het optionele argument ControlName is opgegeven, retourneert de methode een klasse-instantie FormControl die verwijst naar het opgegeven besturingselement." #. 7CFJU #: sf_form.xhp @@ -15953,7 +15953,7 @@ "par_id1001584541257789\n" "help.text" msgid "controlname : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array." -msgstr "" +msgstr "controlname : Een geldige besturingselementnaam als hoofdlettergevoelige tekenreeks. Indien afwezig, wordt de lijst met besturingselementnamen geretourneerd als een op nul gebaseerde matrix." #. unh4B #: sf_form.xhp @@ -15962,7 +15962,7 @@ "par_id291616861407907\n" "help.text" msgid "Return a SFDatabases.Database instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document." -msgstr "" +msgstr "Retourneer een SFDatabases.Database-instantie die toegang geeft tot het uitvoeren van SQL-opdrachten op de database waaraan het huidige formulier is gekoppeld en/of dat is opgeslagen in het huidige basisdocument." #. fZRst #: sf_form.xhp @@ -15971,7 +15971,7 @@ "par_id991616861417207\n" "help.text" msgid "Each form has its own database connection, except in Base documents where they all share the same connection." -msgstr "" +msgstr "Elk formulier heeft zijn eigen databaseverbinding, behalve in Base-documenten waar ze allemaal dezelfde verbinding delen." #. wFSWb #: sf_form.xhp @@ -15980,7 +15980,7 @@ "par_id701616861134906\n" "help.text" msgid "user, password: The login optional parameters (Default = \"\")." -msgstr "" +msgstr "user, password: De optionele login-parameters (Standaard = \"\")." #. 83Jju #: sf_form.xhp @@ -15989,7 +15989,7 @@ "par_id771616861842867\n" "help.text" msgid "The form cursor is positioned on the first record. Returns True if successful." -msgstr "" +msgstr "De formuliercursor wordt op het eerste record geplaatst. Retourneert True indien succesvol." #. rapRE #: sf_form.xhp @@ -15998,7 +15998,7 @@ "par_id331616863143187\n" "help.text" msgid "The form cursor is positioned on the last record. Returns True if successful." -msgstr "" +msgstr "De formuliercursor wordt op het laatste record geplaatst. Retourneert True indien succesvol." #. HZELb #: sf_form.xhp @@ -16007,7 +16007,7 @@ "par_id361616863143954\n" "help.text" msgid "The form cursor is positioned on the new record area. Returns True if successful." -msgstr "" +msgstr "De formuliercursor wordt op het nieuwe recordgebied geplaatst. Retourneert True indien succesvol." #. 2QwcR #: sf_form.xhp @@ -16016,7 +16016,7 @@ "par_id541616863143461\n" "help.text" msgid "The form cursor is positioned on the next record. Returns True if successful." -msgstr "" +msgstr "De formuliercursor wordt op het volgende record geplaatst. Retourneert True indien succesvol." #. a2gGn #: sf_form.xhp @@ -16025,7 +16025,7 @@ "par_id271616863582607\n" "help.text" msgid "offset: The number of records to go forward (Default = 1)." -msgstr "" +msgstr "offset: Het aantal records dat vooruit moet (standaard = 1)." #. e6huC #: sf_form.xhp @@ -16034,7 +16034,7 @@ "par_id616168637945\n" "help.text" msgid "The form cursor is positioned on the previous record. Returns True if successful." -msgstr "" +msgstr "De formuliercursor wordt op het vorige record geplaatst. Retourneert True indien succesvol." #. tAnVw #: sf_form.xhp @@ -16043,7 +16043,7 @@ "par_id751616863794125\n" "help.text" msgid "offset: The number of records to go backwards (Default = 1)." -msgstr "" +msgstr "offset: Het aantal records om achteruit te gaan (standaard = 1)." #. Kp4Wo #: sf_form.xhp @@ -16052,7 +16052,7 @@ "par_id811616864216529\n" "help.text" msgid "Reloads the current data from the database and refreshes the form. The cursor is positioned on the first record. Returns True if successful." -msgstr "" +msgstr "Opnieuw laden van de huidige gegevens uit de database en ververst het formulier De cursor staat op het eerste record. Retourneert True indien succesvol." #. 5gBGr #: sf_form.xhp @@ -16061,7 +16061,7 @@ "par_id891616864510614\n" "help.text" msgid "The value returned by the Subforms method depends on the arguments provided:" -msgstr "" +msgstr "De waarde die wordt geretourneerd door de methode Subforms hangt af van de opgegeven argumenten:" #. 4yG2j #: sf_form.xhp @@ -16070,7 +16070,7 @@ "par_id951616864510585\n" "help.text" msgid "If the method is called without any arguments, then it returns the list of subforms contained in the current form or subform instance." -msgstr "" +msgstr "Als de methode zonder argumenten wordt genoemd, dan retourneert deze de lijst met subformulieren die in het huidige formulier of subformulier voorkomen." #. AD3Q6 #: sf_form.xhp @@ -16079,7 +16079,7 @@ "par_id591616864510445\n" "help.text" msgid "If the optional subform argument is provided, the method returns a new SFDocuments.Form instance based on the specified form/subform name or index." -msgstr "" +msgstr "Als het optionele argument subform is opgegeven, retourneert de methode een nieuwe instantie SFDocuments.Form op basis van de opgegeven naam of index van het formulier/subformulier." #. GCRsS #: sf_form.xhp @@ -16088,7 +16088,7 @@ "par_id341616864510747\n" "help.text" msgid "subform: A subform stored in the current Form class instance given by its name or index." -msgstr "" +msgstr "subform: Een subformulier dat is opgeslagen in de huidige klasse-instantie Form, gegeven door zijn naam of index." #. uKm6R #: sf_form.xhp @@ -16097,7 +16097,7 @@ "par_id211618230389251\n" "help.text" msgid "When this argument is absent, the method returns a list of available subforms as a zero-based array. If the form has a single subform, you can set subform = 0 to get access to it." -msgstr "" +msgstr "Als dit argument afwezig is, retourneert de methode een lijst met beschikbare subformulieren als een op nul gebaseerde matrix. Als het formulier een enkel subformulier heeft, kunt u subform = 0 instellen om er toegang toe te krijgen." #. CfGgB #: sf_formcontrol.xhp @@ -16106,7 +16106,7 @@ "tit\n" "help.text" msgid "SFDocuments.FormControl service" -msgstr "" +msgstr "SFDocuments.FormControl-service" #. vND8Z #: sf_formcontrol.xhp @@ -16115,7 +16115,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDocuments.FormControl service" -msgstr "" +msgstr "SFDocuments.FormControl-service" #. XFkrG #: sf_formcontrol.xhp @@ -16124,7 +16124,7 @@ "par_id931583589764919\n" "help.text" msgid "The FormControl service provides access to the controls that belong to a form, a subform or a table control of a FormDocument. Each instance of the FormControl service refers to a single control in the form. This service allows users to:" -msgstr "" +msgstr "De service FormControl biedt toegang tot de besturingselementen die horen bij een formulier, een subformulier of een tabelbesturingselement van een FormDocument. Elke instantie van de service FormControl verwijst naar een enkel besturingselement in het formulier. Met deze service kunnen gebruikers:" #. irNFC #: sf_formcontrol.xhp @@ -16133,7 +16133,7 @@ "par_id451618771561326\n" "help.text" msgid "Get and set the properties of the control represented by the FormControl instance." -msgstr "" +msgstr "Eigenschappen van het besturingselement verkrijgen en instellen, dat wordt vertegenwoordigd door de instantie FormControl." #. S5aH9 #: sf_formcontrol.xhp @@ -16142,7 +16142,7 @@ "par_id601618771565183\n" "help.text" msgid "Access the current value displayed by the control." -msgstr "" +msgstr "Toegang tot de huidige waarde weergegeven door het besturingselement." #. P5xzV #: sf_formcontrol.xhp @@ -16151,7 +16151,7 @@ "par_id981618771567951\n" "help.text" msgid "Set the focus on the desired control." -msgstr "" +msgstr "De focus instellen op het gewenste besturingselement." #. LUDRM #: sf_formcontrol.xhp @@ -16160,7 +16160,7 @@ "par_id301616939922857\n" "help.text" msgid "To use the FormControl service in a particular form, subform or table control, all controls must have unique names." -msgstr "" +msgstr "Om de service FormControl in een bepaald formulier, subformulier of tabelbesturingselement te gebruiken, moeten alle besturingselementen unieke namen hebben." #. JMFEb #: sf_formcontrol.xhp @@ -16169,7 +16169,7 @@ "par_id541618771629112\n" "help.text" msgid "Radio buttons that share the same group name must also have unique control names." -msgstr "" +msgstr "Keuzerondjes die dezelfde groepsnaam delen, moeten ook unieke besturingselementnamen hebben." #. mAwyv #: sf_formcontrol.xhp @@ -16178,7 +16178,7 @@ "par_id51618771641273\n" "help.text" msgid "The main purpose of the FormControl service is setting and getting the properties and values displayed by the controls in a form." -msgstr "" +msgstr "Het belangrijkste doel van de service FormControl is het instellen en verkrijgen van de eigenschappen en waarden die door de besturingselementen in een formulier worden weergegeven." #. K2Bgc #: sf_formcontrol.xhp @@ -16187,7 +16187,7 @@ "par_id81618774023346\n" "help.text" msgid "All controls have a Value property. However, its contents will vary according to the control type. For more information, read The Value Property below." -msgstr "" +msgstr "Alle besturingselementen hebben een eigenschap Value. De inhoud is echter afhankelijk van het type bedieningselement. Lees voor meer informatie de Value Property hieronder." #. kF29h #: sf_formcontrol.xhp @@ -16196,7 +16196,7 @@ "par_id881618771651907\n" "help.text" msgid "It is also possible to format the controls via the XControlModel and XControlView properties." -msgstr "" +msgstr "Het is ook mogelijk om de besturingselementen op te maken via de eigenschappen XControlModel en XControlView." #. WEST9 #: sf_formcontrol.xhp @@ -16205,7 +16205,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDocuments.FormControl service is closely related to the SFDocuments.Form service." -msgstr "" +msgstr "De service SFDocuments.FormControl is nauw verwant aan de service SFDocuments.Form." #. rUEuw #: sf_formcontrol.xhp @@ -16214,7 +16214,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. BeDqF #: sf_formcontrol.xhp @@ -16223,7 +16223,7 @@ "par_id361598174756160\n" "help.text" msgid "The FormControl service is invoked from an existing Form service instance through its Controls method." -msgstr "" +msgstr "De service FormControl wordt aangeroepen via een bestaande instantie van de service Form via de methode Controls." #. 56bE7 #: sf_formcontrol.xhp @@ -16232,7 +16232,7 @@ "pyc_id721622556808773\n" "help.text" msgid "control.Value = 'Current Time = ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" -msgstr "" +msgstr "control.Value = 'Huidige tijd: ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" #. FaP92 #: sf_formcontrol.xhp @@ -16241,7 +16241,7 @@ "par_id781618772761258\n" "help.text" msgid "To learn more about how to open a FormDocument and get access to its forms, refer to the SFDocuments.Form service help page." -msgstr "" +msgstr "Een uitleg over hoe u een FormDocument opent en toegang krijgt tot de formulieren ervan, staat hier: SFDocuments.Form." #. qeXCN #: sf_formcontrol.xhp @@ -16250,7 +16250,7 @@ "par_id951598174966322\n" "help.text" msgid "Alternatively a FormControl instance can be retrieved via the SFDocuments.FormEvent service, which returns the SFDocuments.FormControl class instance that triggered the event." -msgstr "" +msgstr "Een instantie van FormControl kan ook worden aangemaakt via de service SFDocuments.FormEvent, die retourneert de SFDocuments.FormControl die de gebeurtenis heeft gestart." #. bSfxy #: sf_formcontrol.xhp @@ -16259,7 +16259,7 @@ "bas_id801598175242937\n" "help.text" msgid "' oControl now represents the instance of the FormControl class that triggered the current event" -msgstr "" +msgstr "' oControl staat nu voor de instantie van de klasse FormControl die de huidige gebeurtenis heeft gestart" #. EgCtB #: sf_formcontrol.xhp @@ -16268,7 +16268,7 @@ "par_id251598176312571\n" "help.text" msgid "Note that in previous examples, the prefix \"SFDocuments.\" may be omitted." -msgstr "" +msgstr "In de vorige voorbeelden mag het deel \"SFDocuments.\" worden weggelaten." #. 7gE8Y #: sf_formcontrol.xhp @@ -16277,7 +16277,7 @@ "par_id951618773412097\n" "help.text" msgid "The FormEvent service is used exclusively to create instances of the SFDocuments.Form and SFDocuments.FormControl services when a form or control event takes place." -msgstr "" +msgstr "De service FormEvent wordt exclusief gebruikt om instanties van de services SFDocuments.Form en SFDocuments.FormControl aan te maken wanneer er op een formulier of besturingselement een gebeurtenis plaatsvindt." #. AppFj #: sf_formcontrol.xhp @@ -16286,7 +16286,7 @@ "hd_id71598455687512\n" "help.text" msgid "Control types" -msgstr "" +msgstr "Besturingselementen" #. ezcW8 #: sf_formcontrol.xhp @@ -16295,7 +16295,7 @@ "par_id851598455863395\n" "help.text" msgid "The FormControl service is available for the following control types:" -msgstr "" +msgstr "De service FormControl is beschikbaar voor de volgende besturingselementen:" #. BESBv #: sf_formcontrol.xhp @@ -16304,7 +16304,7 @@ "hd_id651583668365757\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. VrBfK #: sf_formcontrol.xhp @@ -16313,7 +16313,7 @@ "par_id871583668386455\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. hDr9G #: sf_formcontrol.xhp @@ -16322,7 +16322,7 @@ "par_id491583668386455\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. kWac7 #: sf_formcontrol.xhp @@ -16331,7 +16331,7 @@ "par_id271583668474014\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. dXwGN #: sf_formcontrol.xhp @@ -16340,7 +16340,7 @@ "par_id291598538799794\n" "help.text" msgid "Applicable to" -msgstr "" +msgstr "Van toepassing op" #. bEQWc #: sf_formcontrol.xhp @@ -16349,7 +16349,7 @@ "par_id401583668386455\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. N3ejK #: sf_formcontrol.xhp @@ -16358,7 +16358,7 @@ "par_id371583668519172\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. PszFp #: sf_formcontrol.xhp @@ -16367,7 +16367,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies the action triggered when the button is clicked. Accepted values are: none, submitForm, resetForm, refreshForm, moveToFirst, moveToLast, moveToNext, moveToPrev, saveRecord, moveToNew, deleteRecord, undoRecord." -msgstr "" +msgstr "Specificeert de actie die uitgevoerd moet worden als er op de knop wordt gedrukt. Geaccepteerde waarden zijn: none, submitForm, resetForm, refreshForm, moveToFirst, moveToLast, moveToNext, moveToPrev, saveRecord, moveToNew, deleteRecord, undoRecord." #. fmzNT #: sf_formcontrol.xhp @@ -16376,7 +16376,7 @@ "par_id541583839708548\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 62Bud #: sf_formcontrol.xhp @@ -16385,7 +16385,7 @@ "par_id731583839708412\n" "help.text" msgid "Specifies the text displayed by the control." -msgstr "" +msgstr "Specificeert de tekst die getoond wordt op het besturingselement." #. nFFDY #: sf_formcontrol.xhp @@ -16394,7 +16394,7 @@ "par_id411616942306677\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 8H6BR #: sf_formcontrol.xhp @@ -16403,7 +16403,7 @@ "par_id461616942306745\n" "help.text" msgid "Specifies the rowset field mapped onto the current control." -msgstr "" +msgstr "Specificeert het veld dat nu gekoppeld is aan het huidige besturingselement." #. AJUH6 #: sf_formcontrol.xhp @@ -16412,7 +16412,7 @@ "par_id761584027709516\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Enqxp #: sf_formcontrol.xhp @@ -16421,7 +16421,7 @@ "par_id261598539120502\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. FsCJK #: sf_formcontrol.xhp @@ -16430,7 +16430,7 @@ "par_id971584027709752\n" "help.text" msgid "One of the control types listed above." -msgstr "" +msgstr "Een van de bovenstaande besturingselementen." #. DH84k #: sf_formcontrol.xhp @@ -16439,7 +16439,7 @@ "par_id31583839767743\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. pRrwC #: sf_formcontrol.xhp @@ -16448,7 +16448,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default OK button." -msgstr "" +msgstr "Geeft aan of een knop de standaardknop OK is." #. 2dP2A #: sf_formcontrol.xhp @@ -16457,7 +16457,7 @@ "par_id241616942739459\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. Sukx9 #: sf_formcontrol.xhp @@ -16466,7 +16466,7 @@ "par_id271616942739359\n" "help.text" msgid "Specifies the default value used to initialize a control in a new record." -msgstr "" +msgstr "Specificeert de standaardwaarde van een besturingselement om een nieuw record te initialiseren." #. nFBUQ #: sf_formcontrol.xhp @@ -16475,7 +16475,7 @@ "par_id771583839920487\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. fQYqd #: sf_formcontrol.xhp @@ -16484,7 +16484,7 @@ "par_id891598539196786\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (zonder HiddenControl)" #. MmDQ5 #: sf_formcontrol.xhp @@ -16493,7 +16493,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies if the control is accessible with the cursor." -msgstr "" +msgstr "Specificeert of het besturingselement toegankelijk is met de cursor." #. VDkDh #: sf_formcontrol.xhp @@ -16502,7 +16502,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 8X3Ho #: sf_formcontrol.xhp @@ -16511,7 +16511,7 @@ "par_id721588333908708\n" "help.text" msgid "Specifies the format used to display dates and times. It must be one of following strings:" -msgstr "" +msgstr "Specificeert het datumformaat dat gebruikt wordt voor het tonen. De mogelijke tekenreeksen zijn:" #. 6CqCN #: sf_formcontrol.xhp @@ -16520,7 +16520,7 @@ "par_id891598456980194\n" "help.text" msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"." -msgstr "" +msgstr "Voor datums: \"Standaard (kort)\", \"Standaard (kort YY)\", \"Standaard (kort YYYY)\", \"Standaard (lang)\", \"DD/MM/JJ\", \"MM/DD/JJ\", \"JJ/MM/DD\", \"DD/MM/JJJJ\", \"MM/DD/JJJJ\" , \"JJJJ/MM/DD\", \"JJ-MM-DD\", \"JJJJ-MM-DD\"." #. f6gni #: sf_formcontrol.xhp @@ -16529,7 +16529,7 @@ "par_id221598456991070\n" "help.text" msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"." -msgstr "" +msgstr "Voor tijden: \"24u kort\", \"24u lang\", \"12u kort\", \"12u lang\"." #. RqjAh #: sf_formcontrol.xhp @@ -16538,7 +16538,7 @@ "par_id501583774433513\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. E4aHX #: sf_formcontrol.xhp @@ -16547,7 +16547,7 @@ "par_id151598177605296\n" "help.text" msgid "Returns the number of rows in a ListBox or a ComboBox." -msgstr "" +msgstr "Telt het aantal rijen in een ListBox / ComboBox." #. ApC5v #: sf_formcontrol.xhp @@ -16556,7 +16556,7 @@ "par_id271588334016191\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. XQ3AV #: sf_formcontrol.xhp @@ -16565,7 +16565,7 @@ "par_id251588334016874\n" "help.text" msgid "Specifies which item is selected in a ListBox or ComboBox. In case of multiple selection, the index of the first item is returned or only one item is set." -msgstr "" +msgstr "Specificeert welk item is geselecteerd in een ListBox of ComboBox. Bij meervoudige selectie wordt de index van het eerste item geretourneerd of wordt er slechts één item ingesteld." #. 5DjjX #: sf_formcontrol.xhp @@ -16574,7 +16574,7 @@ "par_id891616944120697\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. nNqW5 #: sf_formcontrol.xhp @@ -16583,7 +16583,7 @@ "par_id901616944120614\n" "help.text" msgid "Specifies the data contained in a ComboBox or a ListBox as a zero-based array of string values." -msgstr "" +msgstr "Specificeert de gegevens in een ComboBox of een ListBox als een op nul gebaseerde matrix van tekenreeksen." #. rvVZ7 #: sf_formcontrol.xhp @@ -16592,7 +16592,7 @@ "par_id21616944586559\n" "help.text" msgid "Combined with ListSourceType, may also contain the name of a table, a query or a complete SQL statement." -msgstr "" +msgstr "In combinatie met ListSourceType kan het ook de naam van een tabel, een query of een volledige SQL-instructie bevatten." #. jqgF5 #: sf_formcontrol.xhp @@ -16601,7 +16601,7 @@ "par_id821616944631740\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. sqr2g #: sf_formcontrol.xhp @@ -16610,7 +16610,7 @@ "par_id131616944631625\n" "help.text" msgid "Specifies the type of data contained in a combobox or a listbox." -msgstr "" +msgstr "Specificeert het type gegevens in een keuzelijst met invoervak of een keuzelijst." #. Fdm4C #: sf_formcontrol.xhp @@ -16619,7 +16619,7 @@ "par_id881616944631341\n" "help.text" msgid "It must be one of the com.sun.star.form.ListSourceType.* constants." -msgstr "" +msgstr "Het moet een van de com.sun.star.form.ListSourceType zijn. * constanten." #. BQ7JE #: sf_formcontrol.xhp @@ -16628,7 +16628,7 @@ "par_id961598457655506\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. EV4jD #: sf_formcontrol.xhp @@ -16637,7 +16637,7 @@ "par_id2159845765568\n" "help.text" msgid "Specifies if the control is read-only." -msgstr "" +msgstr "Geeft aan of het besturingselement alleen-lezen is." #. CXDED #: sf_formcontrol.xhp @@ -16646,7 +16646,7 @@ "par_id621598457951781\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. e7HnA #: sf_formcontrol.xhp @@ -16655,7 +16655,7 @@ "par_id821598457951782\n" "help.text" msgid "Specifies whether the user can select multiple items in a listbox." -msgstr "" +msgstr "Geeft aan of de gebruiker meerdere items in een keuzelijst kan selecteren." #. TZuvX #: sf_formcontrol.xhp @@ -16664,7 +16664,7 @@ "par_id351598458170114\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. AtLKa #: sf_formcontrol.xhp @@ -16673,7 +16673,7 @@ "par_id151598539764402\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. EuBGK #: sf_formcontrol.xhp @@ -16682,7 +16682,7 @@ "par_id621598458170392\n" "help.text" msgid "The name of the control." -msgstr "" +msgstr "De naam van het besturingselement." #. SNTgh #: sf_formcontrol.xhp @@ -16691,7 +16691,7 @@ "par_id161598458580581\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. CTjAM #: sf_formcontrol.xhp @@ -16700,7 +16700,7 @@ "par_id181598539807426\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. z8w8o #: sf_formcontrol.xhp @@ -16709,7 +16709,7 @@ "par_id801598458580456\n" "help.text" msgid "Depending on the parent type, a form, a subform or a tablecontrol, returns the parent SFDocuments.Form or SFDocuments.FormControl class object instance." -msgstr "" +msgstr "Afhankelijk van het bovenliggende type, een formulier, een subformulier of een tabelbesturingselement, retourneert het bovenliggende SFDocuments.Form of SFDocuments.FormControl klasse-object-instantie." #. fyoXF #: sf_formcontrol.xhp @@ -16718,7 +16718,7 @@ "par_id971598458773352\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. RnXeR #: sf_formcontrol.xhp @@ -16727,7 +16727,7 @@ "par_id451598458773588\n" "help.text" msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the control. The filename must comply with the FileNaming attribute of the ScriptForge.FileSystem service." -msgstr "" +msgstr "Specificeert de bestandsnaam die een bitmap of ander type afbeelding bevat die op het besturingselement moet worden weergegeven. De bestandsnaam moet voldoen aan het kenmerk FileNaming van de service ScriptForge.FileSystem." #. PHBtj #: sf_formcontrol.xhp @@ -16736,7 +16736,7 @@ "par_id251616946015886\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. oYA7V #: sf_formcontrol.xhp @@ -16745,7 +16745,7 @@ "par_id91616946015258\n" "help.text" msgid "A control is said required when the underlying data must not contain a null value." -msgstr "" +msgstr "Er is sprake van een controle wanneer de onderliggende gegevens geen null-waarde mogen bevatten." #. NbTpX #: sf_formcontrol.xhp @@ -16754,7 +16754,7 @@ "par_id781598516764550\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Rv448 #: sf_formcontrol.xhp @@ -16763,7 +16763,7 @@ "par_id11159851676440\n" "help.text" msgid "Gives access to the text being displayed by the control." -msgstr "" +msgstr "Geeft toegang tot de tekst die door het besturingselement wordt weergegeven." #. 7kxit #: sf_formcontrol.xhp @@ -16772,7 +16772,7 @@ "par_id411598517275112\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. MNqBi #: sf_formcontrol.xhp @@ -16781,7 +16781,7 @@ "par_id171598539985022\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (behalve HiddenControl)" #. VXR9Y #: sf_formcontrol.xhp @@ -16790,7 +16790,7 @@ "par_id651598517275384\n" "help.text" msgid "Specifies the text that appears as a tooltip when you hover the mouse pointer over the control." -msgstr "" +msgstr "Hiermee geeft u de tekst op die wordt weergegeven als knopinfo wanneer u de muisaanwijzer over het besturingselement beweegt." #. Awzep #: sf_formcontrol.xhp @@ -16799,7 +16799,7 @@ "par_id821598517418463\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 6S5EL #: sf_formcontrol.xhp @@ -16808,7 +16808,7 @@ "par_id141598517418822\n" "help.text" msgid "Specifies if the checkbox control may appear dimmed (grayed) or not." -msgstr "" +msgstr "Geeft aan of het selectievakje gedimd (grijs) kan worden weergegeven of niet." #. mCQFz #: sf_formcontrol.xhp @@ -16817,7 +16817,7 @@ "par_id701598517671373\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. mHxWu #: sf_formcontrol.xhp @@ -16826,7 +16826,7 @@ "par_id1001598540024225\n" "help.text" msgid "This property depends on the current control type. Refer to The Value property for more information." -msgstr "" +msgstr "Deze eigenschap is afhankelijk van het huidige besturingstype. Raadpleeg De eigenschap Value voor meer informatie." #. ybVim #: sf_formcontrol.xhp @@ -16835,7 +16835,7 @@ "par_id661598517730941\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. G52FE #: sf_formcontrol.xhp @@ -16844,7 +16844,7 @@ "par_id761598540042290\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (behalve HiddenControl)" #. 5juZG #: sf_formcontrol.xhp @@ -16853,7 +16853,7 @@ "par_id881598517730836\n" "help.text" msgid "Specifies if the control is hidden or visible." -msgstr "" +msgstr "Geeft aan of het besturingselement verborgen of zichtbaar is." #. FAYCA #: sf_formcontrol.xhp @@ -16862,7 +16862,7 @@ "par_id451598177924437\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. UZ7ug #: sf_formcontrol.xhp @@ -16871,7 +16871,7 @@ "par_id94159817792441\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. 65CSA #: sf_formcontrol.xhp @@ -16880,7 +16880,7 @@ "par_id311598540066789\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. 25EFH #: sf_formcontrol.xhp @@ -16889,7 +16889,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing the control model. Refer to XControlModel and UnoControlModel in the API documentation for more information." -msgstr "" +msgstr "Het UNO-object dat het besturingselementmodel vertegenwoordigt. Raadpleeg XControlModel en UnoControlModel in de API-documentatie voor meer informatie." #. FzDR6 #: sf_formcontrol.xhp @@ -16898,7 +16898,7 @@ "par_id811598178083501\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Bdvyd #: sf_formcontrol.xhp @@ -16907,7 +16907,7 @@ "par_id981598178083938\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    -object" #. DFQ5P #: sf_formcontrol.xhp @@ -16916,7 +16916,7 @@ "par_id551598540079329\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. XahSM #: sf_formcontrol.xhp @@ -16925,7 +16925,7 @@ "par_id731598178083442\n" "help.text" msgid "The UNO object representing the control view. Refer to XControl and UnoControl in the API documentation for more information." -msgstr "" +msgstr "Het UNO-object dat de besturingselementweergave vertegenwoordigt. Raadpleeg XControl en UnoControl in de API-documentatie voor meer informatie." #. pqsod #: sf_formcontrol.xhp @@ -16934,7 +16934,7 @@ "hd_id81598540704978\n" "help.text" msgid "The Value property" -msgstr "" +msgstr "De eigenschap Value" #. PbEBw #: sf_formcontrol.xhp @@ -16943,7 +16943,7 @@ "par_id10159854325492\n" "help.text" msgid "Control type" -msgstr "" +msgstr "Type besturingselement" #. bsmCC #: sf_formcontrol.xhp @@ -16952,7 +16952,7 @@ "par_id741598543254158\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. MWgHB #: sf_formcontrol.xhp @@ -16961,7 +16961,7 @@ "par_id961598543254444\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. FLUGH #: sf_formcontrol.xhp @@ -16970,7 +16970,7 @@ "par_id741598543254108\n" "help.text" msgid "Applicable to toggle buttons only." -msgstr "" +msgstr "Alleen van toepassing op aan/uit knoppen." #. jpLCR #: sf_formcontrol.xhp @@ -16979,7 +16979,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "" +msgstr "Booleaans of geheel getal" #. ErAZY #: sf_formcontrol.xhp @@ -16988,7 +16988,7 @@ "par_id521598543254630\n" "help.text" msgid "0, False: not checked
    1, True: checked
    2: grayed out, don't know (applicable if TripleState is True)" -msgstr "" +msgstr "0, False: niet aangevinkt
    1, True: aangevinkt
    2: grijs weergegeven, weet niet (van toepassing als TripleState True is)" #. 3frrW #: sf_formcontrol.xhp @@ -16997,7 +16997,7 @@ "par_id331598543254947\n" "help.text" msgid "The selected value, as a String. The ListIndex property is an alternate option to access the index of the selected value." -msgstr "" +msgstr "De geselecteerde waarde, als een tekenreeks. De eigenschap ListIndex is een alternatieve optie om toegang te krijgen tot de index van de geselecteerde waarde." #. faEEm #: sf_formcontrol.xhp @@ -17006,7 +17006,7 @@ "par_id5159854325443\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. VyagB #: sf_formcontrol.xhp @@ -17015,7 +17015,7 @@ "par_id971598543254757\n" "help.text" msgid "A file name formatted in accordance with the FileNaming property of the ScriptForge.FileSystem service" -msgstr "" +msgstr "Een bestandsnaam die is opgemaakt in overeenstemming met de eigenschap FileNaming van de service ScriptForge.FileSystem" #. CaGtr #: sf_formcontrol.xhp @@ -17024,7 +17024,7 @@ "par_id221598543254760\n" "help.text" msgid "String or Numeric" -msgstr "" +msgstr "Tekenreeks of numeriek" #. gtxJY #: sf_formcontrol.xhp @@ -17033,7 +17033,7 @@ "par_id42159854325422\n" "help.text" msgid "String or array of strings" -msgstr "" +msgstr "Tekenreeks of matrix met tekenreeksen" #. kBH32 #: sf_formcontrol.xhp @@ -17042,7 +17042,7 @@ "par_id601598543254780\n" "help.text" msgid "The selected row(s) as a single string or an array of strings. Only a single value can be set. If the box is linked to a database, this property gets or sets the underlying data. Otherwise it gets or sets the data being displayed." -msgstr "" +msgstr "De geselecteerde rij(en) als een enkele tekenreeks of een reeks tekenreeksen. Er kan slechts één waarde worden ingesteld. Als het vak is gekoppeld aan een database, haalt of stelt deze eigenschap de onderliggende gegevens in. Anders krijgt of stelt het de gegevens in die worden weergegeven." #. f7EZX #: sf_formcontrol.xhp @@ -17051,7 +17051,7 @@ "par_id461598543254909\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. DrhU9 #: sf_formcontrol.xhp @@ -17060,7 +17060,7 @@ "par_id851598543254624\n" "help.text" msgid "Each button has its own name. Multiple RadioButton controls are linked together when they share the same group name. If a RadioButton is set to True, the other related buttons are automatically set to False" -msgstr "" +msgstr "Elke knop heeft zijn eigen naam. Meerdere keuzerondjes zijn gekoppeld als ze dezelfde groepsnaam hebben. Wanneer een optieveld is ingesteld op True, worden de andere bijbehorende velden automatisch ingesteld op False" #. WEsqT #: sf_formcontrol.xhp @@ -17069,7 +17069,7 @@ "par_id531598543254869\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. LxeLY #: sf_formcontrol.xhp @@ -17078,7 +17078,7 @@ "par_id21598543254994\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Moet binnen de vooraf gedefinieerde grenzen vallen" #. mpoa7 #: sf_formcontrol.xhp @@ -17087,7 +17087,7 @@ "par_id951616947400919\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numeriek" #. x6ZLt #: sf_formcontrol.xhp @@ -17096,7 +17096,7 @@ "par_id48161694740085\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Moet binnen de vooraf gedefinieerde grenzen vallen" #. UZLYC #: sf_formcontrol.xhp @@ -17105,7 +17105,7 @@ "par_id441598543254738\n" "help.text" msgid "The text appearing in the field" -msgstr "" +msgstr "De tekst die in het veld verschijnt" #. WBHoJ #: sf_formcontrol.xhp @@ -17114,7 +17114,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Eigenschappen gebeurtenis" #. tqnsA #: sf_formcontrol.xhp @@ -17123,7 +17123,7 @@ "par_id41612629140856\n" "help.text" msgid "The properties below return or set URI strings that define the script triggered by the event." -msgstr "" +msgstr "De volgende eigenschappen retourneren of stellen URI-tekenreeksen in die het script definiëren dat door de gebeurtenis wordt geactiveerd." #. 7Azyz #: sf_formcontrol.xhp @@ -17132,7 +17132,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. N4btE #: sf_formcontrol.xhp @@ -17141,7 +17141,7 @@ "par_id401612628879819\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. RXoDM #: sf_formcontrol.xhp @@ -17150,7 +17150,7 @@ "par_id281612628879819\n" "help.text" msgid "Description as labeled in the Basic IDE" -msgstr "" +msgstr "Beschrijving zoals aangegeven in de Basic IDE" #. yhjPA #: sf_formcontrol.xhp @@ -17159,7 +17159,7 @@ "par_id91612707166532\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. HVTKN #: sf_formcontrol.xhp @@ -17168,7 +17168,7 @@ "par_id291612707166258\n" "help.text" msgid "Execute action" -msgstr "" +msgstr "Bij het uitvoeren van een actie" #. T5CTw #: sf_formcontrol.xhp @@ -17177,7 +17177,7 @@ "par_id79161270716675\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. qs3LA #: sf_formcontrol.xhp @@ -17186,7 +17186,7 @@ "par_id831612707166731\n" "help.text" msgid "While adjusting" -msgstr "" +msgstr "Tijdens aanpassen" #. vUbN6 #: sf_formcontrol.xhp @@ -17195,7 +17195,7 @@ "par_id301616948330694\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. PopWN #: sf_formcontrol.xhp @@ -17204,7 +17204,7 @@ "par_id901616948330305\n" "help.text" msgid "Approve action" -msgstr "" +msgstr "Bij het goedkeuren van actie" #. PmE7k #: sf_formcontrol.xhp @@ -17213,7 +17213,7 @@ "par_id821616948330888\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. rjQCJ #: sf_formcontrol.xhp @@ -17222,7 +17222,7 @@ "par_id111616948330257\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Voor het herstellen:" #. octLi #: sf_formcontrol.xhp @@ -17231,7 +17231,7 @@ "par_id271616948330553\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. D7yir #: sf_formcontrol.xhp @@ -17240,7 +17240,7 @@ "par_id451616948330759\n" "help.text" msgid "Before updating" -msgstr "" +msgstr "Voor het bijwerken" #. YM7Nt #: sf_formcontrol.xhp @@ -17249,7 +17249,7 @@ "par_id71616948330769\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. pHG54 #: sf_formcontrol.xhp @@ -17258,7 +17258,7 @@ "par_id211616948330895\n" "help.text" msgid "Changed" -msgstr "" +msgstr "Gewijzigd" #. UaRoN #: sf_formcontrol.xhp @@ -17267,7 +17267,7 @@ "par_id121616948330654\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. tfW7M #: sf_formcontrol.xhp @@ -17276,7 +17276,7 @@ "par_id2216169483303\n" "help.text" msgid "Error occurred" -msgstr "" +msgstr "Als er een fout is opgetreden" #. vDFhJ #: sf_formcontrol.xhp @@ -17285,7 +17285,7 @@ "par_id111612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. NN9FK #: sf_formcontrol.xhp @@ -17294,7 +17294,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Bij het verkrijgen van focus" #. tLp7Y #: sf_formcontrol.xhp @@ -17303,7 +17303,7 @@ "par_id291612629836294\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. DDcCF #: sf_formcontrol.xhp @@ -17312,7 +17312,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Bij het verliezen van focus" #. EBVQM #: sf_formcontrol.xhp @@ -17321,7 +17321,7 @@ "par_id51612707354544\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. PLPUr #: sf_formcontrol.xhp @@ -17330,7 +17330,7 @@ "par_id211612707354899\n" "help.text" msgid "Item status changed" -msgstr "" +msgstr "Wanneer de itemstatus is gewijzigd" #. zBci2 #: sf_formcontrol.xhp @@ -17339,7 +17339,7 @@ "par_id81612629836634\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. vPrAA #: sf_formcontrol.xhp @@ -17348,7 +17348,7 @@ "par_id881612629836744\n" "help.text" msgid "Key pressed" -msgstr "" +msgstr "Bij het indrukken van een toets" #. 8cFqR #: sf_formcontrol.xhp @@ -17357,7 +17357,7 @@ "par_id591612629836830\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 6rrBt #: sf_formcontrol.xhp @@ -17366,7 +17366,7 @@ "par_id161612629836775\n" "help.text" msgid "Key released" -msgstr "" +msgstr "Bij het loslaten van een toets" #. 7Pzmy #: sf_formcontrol.xhp @@ -17375,7 +17375,7 @@ "par_id891612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 2pMWG #: sf_formcontrol.xhp @@ -17384,7 +17384,7 @@ "par_id461612629836679\n" "help.text" msgid "Mouse moved while key presses" -msgstr "" +msgstr "Bij het bewegen van de muis tijdens toetsaanslagen" #. SGYBr #: sf_formcontrol.xhp @@ -17393,7 +17393,7 @@ "par_id131612629836291\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. AJGQd #: sf_formcontrol.xhp @@ -17402,7 +17402,7 @@ "par_id151612629836151\n" "help.text" msgid "Mouse inside" -msgstr "" +msgstr "Muis binnen" #. 6cFkB #: sf_formcontrol.xhp @@ -17411,7 +17411,7 @@ "par_id211612629836725\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. tfmtf #: sf_formcontrol.xhp @@ -17420,7 +17420,7 @@ "par_id361612629836624\n" "help.text" msgid "Mouse outside" -msgstr "" +msgstr "Muis buiten" #. 6E7WA #: sf_formcontrol.xhp @@ -17429,7 +17429,7 @@ "par_id311612629836481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. CeNku #: sf_formcontrol.xhp @@ -17438,7 +17438,7 @@ "par_id721612629836752\n" "help.text" msgid "Mouse moved" -msgstr "" +msgstr "Muisbeweging" #. iSxsS #: sf_formcontrol.xhp @@ -17447,7 +17447,7 @@ "par_id981612629836116\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. 9yirD #: sf_formcontrol.xhp @@ -17456,7 +17456,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Muisknop ingedrukt" #. b6pFV #: sf_formcontrol.xhp @@ -17465,7 +17465,7 @@ "par_id711612629836704\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. D5vXU #: sf_formcontrol.xhp @@ -17474,7 +17474,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Muisknop losgelaten" #. 9Ui2H #: sf_formcontrol.xhp @@ -17483,7 +17483,7 @@ "par_id31616948666215\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. mdLSp #: sf_formcontrol.xhp @@ -17492,7 +17492,7 @@ "par_id951616948666674\n" "help.text" msgid "After resetting" -msgstr "" +msgstr "Na het herstellen" #. jb4at #: sf_formcontrol.xhp @@ -17501,7 +17501,7 @@ "par_id811612707606330\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. m3Rb7 #: sf_formcontrol.xhp @@ -17510,7 +17510,7 @@ "par_id621612707606219\n" "help.text" msgid "Text modified" -msgstr "" +msgstr "Als tekst is aangepast" #. bfgkG #: sf_formcontrol.xhp @@ -17519,7 +17519,7 @@ "par_id41616948721642\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. imn6B #: sf_formcontrol.xhp @@ -17528,7 +17528,7 @@ "par_id311616948721872\n" "help.text" msgid "After updating" -msgstr "" +msgstr "Na het bijwerken" #. tcpN5 #: sf_formcontrol.xhp @@ -17537,7 +17537,7 @@ "par_id961618181634181\n" "help.text" msgid "To learn more about URI strings, refer to the Scripting Framework URI Specification." -msgstr "" +msgstr "Raadpleeg de internetpagina Scripting Framework URI-specificatie voor meer informatie over URI-tekenreeksen." #. RpNkd #: sf_formcontrol.xhp @@ -17546,7 +17546,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the FormControl Service" -msgstr "" +msgstr "Lijst met methoden in de service FormControl" #. CKZDf #: sf_formcontrol.xhp @@ -17555,7 +17555,7 @@ "par_id161584541257982\n" "help.text" msgid "This method is applicable only to controls of the TableControl type. The returned value depends on the arguments provided." -msgstr "" +msgstr "Deze methode is alleen van toepassing op besturingselementen van het type TableControl. De geretourneerde waarde is afhankelijk van de opgegeven argumenten." #. DB3PG #: sf_formcontrol.xhp @@ -17564,7 +17564,7 @@ "par_id701618777636827\n" "help.text" msgid "If the optional argument controlname is absent, then a zero-based Array containing the names of all controls is returned." -msgstr "" +msgstr "Als het optionele argument controlname ontbreekt, wordt een op nul gebaseerde matrix geretourneerd die de namen van alle besturingselementen bevat." #. GgAeu #: sf_formcontrol.xhp @@ -17573,7 +17573,7 @@ "par_id851618777715892\n" "help.text" msgid "On the other hand, if a controlname is provided, the method returns a FormControl class instance corresponding to the specified control." -msgstr "" +msgstr "Aan de andere kant, als een controlname is opgegeven, retourneert de methode een FormControl klasse-instantie die overeenkomt met het opgegeven besturingselement." #. eoLJG #: sf_formcontrol.xhp @@ -17582,7 +17582,7 @@ "par_id1001584541257789\n" "help.text" msgid "controlname: A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array." -msgstr "" +msgstr "controlname: Een geldige besturingselementnaam als hoofdlettergevoelige tekenreeks. Indien afwezig, wordt de lijst met namen van besturingselementen geretourneerd als een op nul gebaseerde matrix." #. F4Sdy #: sf_formcontrol.xhp @@ -17591,7 +17591,7 @@ "bas_id471618778075117\n" "help.text" msgid "' Returns an Array with the names of all controls in \"myTableControl\"" -msgstr "" +msgstr "' Retourneert een matrix met de namen van alle besturingselementen in \"myTableControl\"" #. YoHSo #: sf_formcontrol.xhp @@ -17600,7 +17600,7 @@ "par_id931618778110273\n" "help.text" msgid "' Returns a FormControl class instance corresponding to \"myCheckBox\"" -msgstr "" +msgstr "' Retourneert een FormControl-klasse-instantie die overeenkomt met \"myCheckBox" #. AGA7Z #: sf_formcontrol.xhp @@ -17609,7 +17609,7 @@ "par_id391622559441530\n" "help.text" msgid "Using Python:" -msgstr "" +msgstr "Bij het gebruik van Python:" #. CprjV #: sf_formcontrol.xhp @@ -17618,7 +17618,7 @@ "par_id871583933076448\n" "help.text" msgid "Sets the focus on the control. Returns True if focusing was successful." -msgstr "" +msgstr "Stelt de focus op het besturingselement in. Retourneert True als het focussen gelukt is." #. LuxFE #: sf_formcontrol.xhp @@ -17627,7 +17627,7 @@ "par_id151598178880227\n" "help.text" msgid "This method is often called from a form or control event." -msgstr "" +msgstr "Deze methode wordt vaak aangeroepen vanuit een formulier of besturingselementgebeurtenis." #. haAXC #: sf_formcontrol.xhp @@ -17636,7 +17636,7 @@ "hd_id141618777179310\n" "help.text" msgid "Additional examples" -msgstr "" +msgstr "Verdere voorbeelden" #. JopFS #: sf_formcontrol.xhp @@ -17645,7 +17645,7 @@ "par_id331618777195723\n" "help.text" msgid "Below are two examples that illustrate the use of the FormControl service." -msgstr "" +msgstr "Hieronder staan twee voorbeelden die het gebruik van de service FormControl illustreren." #. 5iGmg #: sf_formcontrol.xhp @@ -17654,7 +17654,7 @@ "par_id371618776324489\n" "help.text" msgid "The first example reads the current value in a ComboBox containing city names and writes it to a FixedTest control in a Form:" -msgstr "" +msgstr "Het eerste voorbeeld leest de huidige waarde in een combobox met plaatsnamen en schrijft deze naar een besturingselement FixedTest op een formulier:" #. 3eh6E #: sf_formcontrol.xhp @@ -17663,7 +17663,7 @@ "pyc_id991622562833004\n" "help.text" msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods" -msgstr "" +msgstr "bas = CreateScriptService('ScriptForge.Basic') # Basic-achtige methoden" #. 8jneo #: sf_formcontrol.xhp @@ -17672,7 +17672,7 @@ "pyc_id781622561048794\n" "help.text" msgid "lbl_city.Caption = \"Selected city: \" + combo_city.Value" -msgstr "" +msgstr "lbl_city.Caption = \"Geselecteerde stad: \" + combo_city.Value" #. kz9SK #: sf_formcontrol.xhp @@ -17681,7 +17681,7 @@ "par_id251618776614814\n" "help.text" msgid "The following code snippet can be used to process RadioButton controls that share the same group name. In this example, suppose there are three radio buttons with names optA, optB and optC and we wish to display the caption of the selected control." -msgstr "" +msgstr "Het volgende codefragment kan worden gebruikt om besturingselementen Keuzerondje te verwerken die dezelfde groepsnaam delen. Stel dat er in dit voorbeeld drie keuzerondjes zijn met de namen optA, optB en optC en dat we het bijschrift van het geselecteerde besturingselement willen weergeven." #. hRhNC #: sf_formcontrol.xhp @@ -17690,7 +17690,7 @@ "bas_id251618776933304\n" "help.text" msgid "MsgBox \"Selected option: \" & optControl.Caption" -msgstr "" +msgstr "MsgBox \"Geselecteerde optie: \" & optControl.Caption" #. YnBgM #: sf_formcontrol.xhp @@ -17699,7 +17699,7 @@ "pyc_id991622562822004\n" "help.text" msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods" -msgstr "" +msgstr "bas = CreateScriptService('ScriptForge.Basic') # Basic-achtige methoden" #. TNTT9 #: sf_formcontrol.xhp @@ -17708,7 +17708,7 @@ "pyc_id441622562080419\n" "help.text" msgid "bas.MsgBox('Selected option: ' + control.Caption)" -msgstr "" +msgstr "bas.MsgBox('Geselecteerde optie: ' + control.Caption)" #. czP76 #: sf_intro.xhp @@ -18392,7 +18392,7 @@ "hd_id351585843652312\n" "help.text" msgid "Service invocation" -msgstr "Het aanroepen van een service" +msgstr "Service aanroep" #. nkcFt #: sf_l10n.xhp @@ -18401,7 +18401,7 @@ "par_id421614353247163\n" "help.text" msgid "To invoke the L10N service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below." -msgstr "" +msgstr "Om de service L10N aan te roepen, kunnen twee optionele argumenten worden opgegeven om de map te bepalen waarin PO-bestanden zich bevinden en de landinstelling die moet worden gebruikt, zoals hieronder beschreven." #. cCwBS #: sf_l10n.xhp @@ -18437,7 +18437,7 @@ "par_id891614358528334\n" "help.text" msgid "The following example instantiates the L10N service without any optional arguments. This will only enable the AddText and ExportToPOTFile methods." -msgstr "" +msgstr "In dit voorbeeld ziet u een aanroep van de service L10N zonder optionele argumenten. Hiermee worden alleen de methoden AddText en ExportToPOTFile ingeschakeld." #. XUTWZ #: sf_l10n.xhp @@ -18446,7 +18446,7 @@ "par_id611614358672609\n" "help.text" msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings." -msgstr "" +msgstr "Vervolgens geven we de map aan waar de PO-bestanden staan. Omdat de locale niet aangegeven is, wordt door de service de waarde die in de gebruikersinterface van %PRODUCTNAME gedefinieerd is, gebruikt." #. F998n #: sf_l10n.xhp @@ -18455,7 +18455,7 @@ "par_id391625855630975\n" "help.text" msgid "The example above will result in an runtime error if the PO file for the current locale does not exist in the specified folder." -msgstr "" +msgstr "Het bovenstaande voorbeeld resulteert in een runtime-fout als het PO-bestand voor de huidige landinstelling niet bestaat in de opgegeven map." #. Ab7iH #: sf_l10n.xhp @@ -18464,7 +18464,7 @@ "par_id321614358809763\n" "help.text" msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French." -msgstr "" +msgstr "In dit voorbeeld worden zowel de mapnaam als de instelling locale als Nederlands gedefinieerd." #. UGFWB #: sf_l10n.xhp @@ -18518,7 +18518,7 @@ "par_id741585843652162\n" "help.text" msgid "Readonly" -msgstr "Alleen lezen" +msgstr "AlleenLezen" #. X3tJK #: sf_l10n.xhp @@ -18635,7 +18635,7 @@ "par_id581585844419114\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. The msgid becomes the key to retrieve the translated string via GetText method when context is empty." -msgstr "msgid: De onvertaalde tekst zoals de tekst voorkomt in de programmacode. De tekst is verplicht. Vanzelfsprekend wordt msgidgebruikt om later de vertaalde tekst op te halen via de methode GetText samen met de context als die is opgegeven." +msgstr "msgid: De onvertaalde tekst zoals de tekst voorkomt in de programmacode. De tekst is verplicht. Vanzelfsprekend wordt msgidgebruikt om later de vertaalde tekst op te halen via de methode GetText samen met de context." #. 7FDE9 #: sf_l10n.xhp @@ -18761,7 +18761,7 @@ "par_id281586102707242\n" "help.text" msgid "Exports a set of untranslated strings as a POT file." -msgstr "" +msgstr "Exporteert een set onvertaalde tekenreeksen als een POT-bestand." #. NABBq #: sf_l10n.xhp @@ -18770,7 +18770,7 @@ "par_id711586102939257\n" "help.text" msgid "To build a set of strings you can use either a succession of AddText method calls, or by a successful invocation of the L10N service with the foldername argument present. It is also possible to use a combination of both techniques." -msgstr "" +msgstr "Om een reeks tekenreeksen te bouwen, kunt u ofwel een opeenvolging van AddText methodeaanroepen gebruiken, of door een succesvolle aanroep van de service L10N met als argument mapnaam. Het is ook mogelijk om een combinatie van beide technieken te gebruiken." #. Pb4VF #: sf_l10n.xhp @@ -18779,7 +18779,7 @@ "par_id641625855725141\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "De methode retourneert True indien succesvol." #. BsmCX #: sf_l10n.xhp @@ -18788,7 +18788,7 @@ "par_id31586102707537\n" "help.text" msgid "filename: The output file in FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Het uitvoerbestand in de notatie FileSystem.FileNaming." #. jQV77 #: sf_l10n.xhp @@ -18797,7 +18797,7 @@ "par_id851586102707579\n" "help.text" msgid "header: Comments that will be added on top of the generated POT file." -msgstr "" +msgstr "header: Opmerkingen die bovenop het gegenereerde POT-bestand worden toegevoegd." #. YhYbQ #: sf_l10n.xhp @@ -18806,7 +18806,7 @@ "par_id111614364686973\n" "help.text" msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the header argument." -msgstr "" +msgstr "Gebruik geen leidende \"#\"-tekens. Als u wilt dat de koptekst wordt opgesplitst in meerdere regels, voegt u waar relevant escape-reeksen (\\n) in. Er wordt een standaardkoptekst toegevoegd naast de tekst die is opgegeven in het argument header." #. E2Loj #: sf_l10n.xhp @@ -18815,7 +18815,7 @@ "par_id5158610270728\n" "help.text" msgid "encoding: The character set to be used (Default = \"UTF-8\")." -msgstr "" +msgstr "encoding: De tekenset die moet worden gebruikt (standaard = \"UTF-8\")." #. uDu7z #: sf_l10n.xhp @@ -18824,7 +18824,7 @@ "par_id581614364494235\n" "help.text" msgid "The generated file should successfully pass the msgfmt --check GNU command." -msgstr "" +msgstr "Het gegenereerde bestand moet de GNU-opdracht msgfmt --check met succes doorstaan." #. 32fPj #: sf_l10n.xhp @@ -18833,7 +18833,7 @@ "par_id891586165768715\n" "help.text" msgid "Gets the translated string corresponding to the given msgid argument." -msgstr "" +msgstr "Haalt de vertaalde tekenreeks op die overeenkomt met het gegeven argument msgid." #. NzGZC #: sf_l10n.xhp @@ -18842,7 +18842,7 @@ "par_id291614365296959\n" "help.text" msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string." -msgstr "" +msgstr "Er kan een lijst met argumenten worden opgegeven om de placeholders (%1, %2, ...) in de tekenreeks te vervangen." #. 9DBFa #: sf_l10n.xhp @@ -18851,7 +18851,7 @@ "par_id231586166181909\n" "help.text" msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments." -msgstr "" +msgstr "Als er geen vertaalde tekenreeks wordt gevonden, retourneert de methode de niet-vertaalde tekenreeks na vervanging van de placeholders door de opgegeven argumenten." #. bAcmJ #: sf_l10n.xhp @@ -18860,7 +18860,7 @@ "par_id871586352505927\n" "help.text" msgid "This method can be called either by the full name GetText or by the shortcut _ (a single underscore):" -msgstr "" +msgstr "Deze methode kan worden aangeroepen met de volledige naam GetText of met de sneltoets _ (een enkel onderstrepingsteken):" #. mvB66 #: sf_l10n.xhp @@ -18869,7 +18869,7 @@ "par_id421614967136502\n" "help.text" msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut _ used for GetText is the only exception to this rule, hence it can be safely used in Basic and Python scripts." -msgstr "" +msgstr "In de ScriptForge-bibliotheek zijn alle methoden die beginnen met het teken \"_\" alleen voor intern gebruik. De sneltoets _ die wordt gebruikt voor GetText is de enige uitzondering op deze regel en kan daarom veilig worden gebruikt in Basic- en Python-scripts." #. 2ZVAQ #: sf_l10n.xhp @@ -18878,7 +18878,7 @@ "par_id51586165768525\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime." -msgstr "" +msgstr "msgid: De onvertaalde tekenreeks, de tekst die in de programmacode wordt weergegeven. Het mag niet leeg zijn. Het kan een willekeurig aantal placeholders bevatten (%1 %2 %3 ...) die kunnen worden gebruikt om tijdens runtime dynamisch tekst in te voegen." #. dALxK #: sf_l10n.xhp @@ -18887,7 +18887,7 @@ "par_id11614365537450\n" "help.text" msgid "Besides using a single msgid string, this method also accepts the following formats:" -msgstr "" +msgstr "Naast het gebruik van een enkele tekenreeks msgstr, accepteert deze methode ook de volgende indelingen:" #. Q7Bbm #: sf_l10n.xhp @@ -18896,7 +18896,7 @@ "par_id961614365557277\n" "help.text" msgid "The context string with which the method will retrieve the msgid in the PO file, or;" -msgstr "" +msgstr "De context tekenreeks waarmee de methode de msgid in het PO-bestand zal ophalen, of;" #. rTDrq #: sf_l10n.xhp @@ -18905,7 +18905,7 @@ "par_id981614365589866\n" "help.text" msgid "A combination context|msgid, instructing the method to retrieve the msgid using specified context value. The second part of the argument is used to improve code readability." -msgstr "" +msgstr "Een combinatie context|msgid, die de methode instrueert om de msgid op te halen met behulp van de gespecificeerde context-waarde. Met de context worden de woorden in groepen onderverdeeld, zo kan er verschil worden gemaakt tussen woorden met meerdere betekenissen." #. dW6RE #: sf_l10n.xhp @@ -18914,7 +18914,7 @@ "par_id571586165768106\n" "help.text" msgid "args: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered." -msgstr "" +msgstr "args: Waarden die de placeholders vervangen. Elk type variabele is toegestaan, maar alleen tekenreeksen, getallen en datums worden in aanmerking genomen." #. cCZDK #: sf_l10n.xhp @@ -18923,7 +18923,7 @@ "par_id701614365961454\n" "help.text" msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the GetText method:" -msgstr "" +msgstr "Overweeg dat de volgende code wordt uitgevoerd op een %PRODUCTNAME-installatie met de landinstelling ingesteld op \"es-ES\". Bovendien is er een bestand \"es-ES.po\" in de opgegeven map dat de tekenreeks vertaalt die is doorgegeven aan de methode GetText:" #. yYNtX #: sf_methods.xhp @@ -18932,7 +18932,7 @@ "tit\n" "help.text" msgid "ScriptForge Method Signatures" -msgstr "" +msgstr "Handtekeningmethode ScriptForge" #. ycA6s #: sf_methods.xhp @@ -18941,7 +18941,7 @@ "hd_id31529004750471\n" "help.text" msgid "ScriptForge Method Signatures" -msgstr "" +msgstr "Handtekeningmethode ScriptForge" #. gEAos #: sf_methods.xhp @@ -18950,7 +18950,7 @@ "bm_id491529070339774\n" "help.text" msgid "ScriptForge; Method signatures" -msgstr "" +msgstr "ScriptForge; Handtekeningmethode" #. Xq2N5 #: sf_methods.xhp @@ -18959,7 +18959,7 @@ "par_id681619700336879\n" "help.text" msgid "ScriptForge libraries aggregate macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts. Its modules and classes are invoked from user scripts as \"Services\" that expose properties, methods and events." -msgstr "" +msgstr "ScriptForge-bibliotheken verzamelen macroscriptbronnen voor %PRODUCTNAME om te worden aangeroepen vanuit basismacro's of Python-scripts. De modules en klassen worden aangeroepen vanuit gebruikersscripts als \"Services\" die eigenschappen, methoden en gebeurtenissen blootleggen." #. paARG #: sf_methods.xhp @@ -18968,7 +18968,7 @@ "par_id681623415196030\n" "help.text" msgid "Whenever service methods are proposed solely for %PRODUCTNAME Basic, their syntax presentation matches that of Basic subroutines, functions or properties." -msgstr "" +msgstr "Wanneer servicemethoden uitsluitend voor %PRODUCTNAME Basic worden voorgesteld, komt hun syntaxispresentatie overeen met die van Basic-subroutines, -functies of -eigenschappen." #. 4dWnv #: sf_methods.xhp @@ -18977,7 +18977,7 @@ "par_id401623415235965\n" "help.text" msgid "Whenever service methods are proposed for Python and Basic, or solely for Python, their syntax and arguments use a specific textual layout." -msgstr "" +msgstr "Telkens wanneer servicemethoden worden voorgesteld voor Python en Basic, of alleen voor Python, gebruiken hun syntaxis en argumenten een specifieke tekstlay-out." #. McY36 #: sf_methods.xhp @@ -18986,7 +18986,7 @@ "hd_id1001623415980365\n" "help.text" msgid "Basic only service method" -msgstr "" +msgstr "Alleen servicemethode Basic" #. tCvuL #: sf_methods.xhp @@ -18995,7 +18995,7 @@ "par_id791623418737799\n" "help.text" msgid "Typographical characters such as brackets, ellipsis or curly braces denote optional, repetitive or compulsory arguments:" -msgstr "" +msgstr "Typografische tekens zoals haakjes, weglatingsteken of accolades duiden optionele, repetitieve of verplichte argumenten aan:" #. FkDFy #: sf_methods.xhp @@ -19004,7 +19004,7 @@ "hd_id711623416000470\n" "help.text" msgid "Python or Basic service methods" -msgstr "" +msgstr "Servicemethoden Python of Basic" #. 8C6EM #: sf_methods.xhp @@ -19013,7 +19013,7 @@ "par_id221623415475781\n" "help.text" msgid "The following typographical rules are mixing the UML notation, the API documentation layout and the UNO object inspector user interface:" -msgstr "" +msgstr "De volgende typografische regels mengen de UML-notatie, de API-documentatielay-out en de gebruikersinterface van de UNO-objectinspecteur:" #. aSSDq #: sf_methods.xhp @@ -19022,7 +19022,7 @@ "par_id661623417427142\n" "help.text" msgid "Optional parameters are indicated with either opt, '=' accompanying a default value, or '[ ]' brackets." -msgstr "" +msgstr "Optionele parameters worden aangegeven met ofwel opt, '=' bij een standaardwaarde, of '[ ]' haakjes." #. 534sD #: sf_methods.xhp @@ -19031,7 +19031,7 @@ "par_id351623417430814\n" "help.text" msgid "arguments are lowercased, in order to comply with Python PEP 8 while Basic is case-agnostic." -msgstr "" +msgstr "Argumenten zijn in kleine letters om overeen te komen met Python PEP 8, terwijl Basic niet hoofdlettergevoelig is." #. kFDAg #: sf_methods.xhp @@ -19040,7 +19040,7 @@ "par_id781623417432494\n" "help.text" msgid "Collections arguments or API sequences are denoted using UML multiplicity. That applies also to return values." -msgstr "" +msgstr "Argumenten voor verzamelingen of API-reeksen worden aangeduid met UML-multipliciteit. Dat geldt ook voor retourwaarden." #. bmVjq #: sf_methods.xhp @@ -19049,7 +19049,7 @@ "par_id741623417433319\n" "help.text" msgid "Basic data types and Python annotations are syntactically transposed as:" -msgstr "" +msgstr "Basic-gegevenstypen en Python-annotaties worden syntactisch getransponeerd als:" #. GGeNU #: sf_methods.xhp @@ -19058,7 +19058,7 @@ "par_id441613838858931\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaxis" #. ENqPg #: sf_methods.xhp @@ -19067,7 +19067,7 @@ "par_id851613847558931\n" "help.text" msgid "Boolean" -msgstr "" +msgstr "Booleaans" #. vWABe #: sf_methods.xhp @@ -19076,7 +19076,7 @@ "par_id931623419595424\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO-object" #. 2q5Bk #: sf_methods.xhp @@ -19085,7 +19085,7 @@ "par_id951623419595631\n" "help.text" msgid "User Defined
    Type (UDT)" -msgstr "" +msgstr "Gebruikergedefinieerd
    Type (UDT)" #. h4Tu4 #: sf_methods.xhp @@ -19094,7 +19094,7 @@ "par_id451623419793734\n" "help.text" msgid "ScriptForge
    service" -msgstr "" +msgstr "ScriptForge
    -service" #. Ah5Gj #: sf_platform.xhp @@ -19103,7 +19103,7 @@ "tit\n" "help.text" msgid "ScriptForge.Platform service" -msgstr "" +msgstr "Service scriptForge.Platform" #. PCkEG #: sf_platform.xhp @@ -19112,7 +19112,7 @@ "bm_id681600788076499\n" "help.text" msgid "ScriptForge.Platform service" -msgstr "" +msgstr "Service ScriptForge.Platform" #. 7D6Dx #: sf_platform.xhp @@ -19121,7 +19121,7 @@ "par_id181600788076612\n" "help.text" msgid "The Platform service provides a collection of properties about the current execution environment and context, such as:" -msgstr "" +msgstr "De service Platform biedt een verzameling eigenschappen over de huidige uitvoeringsomgeving en context, zoals:" #. FDJFB #: sf_platform.xhp @@ -19130,7 +19130,7 @@ "par_id301600788076785\n" "help.text" msgid "The hardware platform (architecture, CPU count, machine type, etc)" -msgstr "" +msgstr "Het hardwareplatform (architectuur, CPU-aantal, machinetype, enz.)" #. i9FbJ #: sf_platform.xhp @@ -19139,7 +19139,7 @@ "par_id1001600788076848\n" "help.text" msgid "Operating system information (OS type, release, version, etc)" -msgstr "" +msgstr "Informatie over het besturingssysteem (type besturingssysteem, uitgaves, versie, enz.)" #. 6sN8Q #: sf_platform.xhp @@ -19148,7 +19148,7 @@ "par_id67160078807676\n" "help.text" msgid "The %PRODUCTNAME version" -msgstr "" +msgstr "De %PRODUCTNAME-versie" #. BrEr7 #: sf_platform.xhp @@ -19157,7 +19157,7 @@ "par_id671600788076855\n" "help.text" msgid "The current user name" -msgstr "" +msgstr "De huidige gebruikersnaam" #. ZvBqs #: sf_platform.xhp @@ -19166,7 +19166,7 @@ "par_id951614903258253\n" "help.text" msgid "All properties of the Platform service are read-only." -msgstr "" +msgstr "Alle eigenschappen van de service Platform zijn alleen-lezen." #. iK4Gv #: sf_platform.xhp @@ -19175,7 +19175,7 @@ "hd_id281600788076359\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. mHGZk #: sf_platform.xhp @@ -19184,7 +19184,7 @@ "par_id321614902851541\n" "help.text" msgid "The examples below in Basic and Python instantiate the Platform service and access the Architecture property." -msgstr "" +msgstr "De onderstaande voorbeelden in Basic en Python instantiëren de service Platform en openen de eigenschap Architecture." #. KC5eN #: sf_platform.xhp @@ -19193,7 +19193,7 @@ "hd_id711600788076834\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. VXJ8a #: sf_platform.xhp @@ -19202,7 +19202,7 @@ "par_id461600788076917\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. JN68D #: sf_platform.xhp @@ -19211,7 +19211,7 @@ "par_id221600788076591\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. ZndAt #: sf_platform.xhp @@ -19220,7 +19220,7 @@ "par_id761600788076328\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. dAoKA #: sf_platform.xhp @@ -19229,7 +19229,7 @@ "par_id67160078807636\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. XdLGG #: sf_platform.xhp @@ -19238,7 +19238,7 @@ "par_id311600788076756\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. EEWuL #: sf_platform.xhp @@ -19247,7 +19247,7 @@ "par_id441600788076826\n" "help.text" msgid "The hardware bit architecture. Example: '32bit' or '64bit'" -msgstr "" +msgstr "De hardware-bit-architectuur. Voorbeeld: '32bit' of '64bit'" #. 8EZ8A #: sf_platform.xhp @@ -19256,7 +19256,7 @@ "par_id49160078807654\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. iG4iH #: sf_platform.xhp @@ -19265,7 +19265,7 @@ "par_id81600788076419\n" "help.text" msgid "The computer's network name." -msgstr "" +msgstr "De netwerknaam van de computer" #. hvAeY #: sf_platform.xhp @@ -19274,7 +19274,7 @@ "par_id711600788076534\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. v3N6U #: sf_platform.xhp @@ -19283,7 +19283,7 @@ "par_id541600788076645\n" "help.text" msgid "The number of central processing units." -msgstr "" +msgstr "Het aantal centrale verwerkingseenheden." #. 89Lo8 #: sf_platform.xhp @@ -19292,7 +19292,7 @@ "par_id891600788076190\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. rmGRV #: sf_platform.xhp @@ -19301,7 +19301,7 @@ "par_id91600788076674\n" "help.text" msgid "The name of the currently logged user." -msgstr "" +msgstr "De naam van de momenteel aangemelde gebruiker." #. 9aGdF #: sf_platform.xhp @@ -19310,7 +19310,7 @@ "par_id561633021747903\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. yuuvA #: sf_platform.xhp @@ -19319,7 +19319,7 @@ "par_id201633021748455\n" "help.text" msgid "String array" -msgstr "" +msgstr "Tekenreeksmatrix" #. BvYt3 #: sf_platform.xhp @@ -19328,7 +19328,7 @@ "par_id831633021749007\n" "help.text" msgid "Returns a zero-based array of strings containing the names of all available fonts." -msgstr "" +msgstr "Retourneert een op nul gebaseerde matrix van tekenreeksen met de namen van alle beschikbare lettertypen." #. Av85C #: sf_platform.xhp @@ -19337,7 +19337,7 @@ "par_id561633021743188\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. DANn2 #: sf_platform.xhp @@ -19346,7 +19346,7 @@ "par_id831633021749018\n" "help.text" msgid "Returns the operating system locale as a string in the format language-COUNTRY (la-CO)." -msgstr "" +msgstr "Retourneert de landinstelling van het besturingssysteem als een tekenreeks in de indeling \"ta-LA\" (taal-LAND)." #. RuAKC #: sf_platform.xhp @@ -19355,7 +19355,7 @@ "par_id831633021745548\n" "help.text" msgid "Examples: \"en-US\", \"pt-BR\", \"fr-BE\"." -msgstr "" +msgstr "Voorbeelden: \"en-US\", \"pt-BR\", \"fr-BE\"." #. Dt7J5 #: sf_platform.xhp @@ -19364,7 +19364,7 @@ "par_id391600788076253\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. LA6EN #: sf_platform.xhp @@ -19373,7 +19373,7 @@ "par_id21600788076541\n" "help.text" msgid "The machine type. Examples are: 'i386' or 'x86_64'." -msgstr "" +msgstr "Het machinetype. Voorbeelden zijn: 'i386' en 'x86_64'." #. tqwyD #: sf_platform.xhp @@ -19382,7 +19382,7 @@ "par_id211600788076138\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. WLRju #: sf_platform.xhp @@ -19391,7 +19391,7 @@ "par_id521600788076371\n" "help.text" msgid "The actual %PRODUCTNAME version expressed as
    ' %PRODUCTNAME w.x.y.z (The Document Foundation)'." -msgstr "" +msgstr "De werkelijke %PRODUCTNAME-versie uitgedrukt als
    ' %PRODUCTNAME w.x.y.z (The Document Foundation)'." #. 4bpcJ #: sf_platform.xhp @@ -19400,7 +19400,7 @@ "par_id621614902220807\n" "help.text" msgid "Example: 'LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)'" -msgstr "" +msgstr "Voorbeeld: 'LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)'" #. 7WDer #: sf_platform.xhp @@ -19409,7 +19409,7 @@ "par_id21600788076758\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. NUSby #: sf_platform.xhp @@ -19418,7 +19418,7 @@ "par_id781600788076694\n" "help.text" msgid "The operating system type. Example: 'Darwin, Linux' or 'Windows'." -msgstr "" +msgstr "Het type besturingssysteem. Voorbeeld: 'Darwin, Linux' en 'Windows'." #. cLiaw #: sf_platform.xhp @@ -19427,7 +19427,7 @@ "par_id261600788076841\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. nepQ6 #: sf_platform.xhp @@ -19436,7 +19436,7 @@ "par_id11600788076757\n" "help.text" msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible." -msgstr "" +msgstr "Een enkele tekenreeks die het onderliggende platform identificeert met zoveel mogelijk bruikbare en voor mensen leesbare informatie." #. EH36m #: sf_platform.xhp @@ -19445,7 +19445,7 @@ "par_id501614902381381\n" "help.text" msgid "Example: 'Linux-5.8.0-44-generic-x86_64-with-glibc2.32'" -msgstr "" +msgstr "Voorbeeld: 'Linux-5.8.0-44-generic-x86_64-with-glibc2.32'" #. hbyth #: sf_platform.xhp @@ -19454,7 +19454,7 @@ "par_id531600789141795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 4iEvV #: sf_platform.xhp @@ -19463,7 +19463,7 @@ "par_id301600789141619\n" "help.text" msgid "The operating system's release. Example: '5.8.0-44-generic'" -msgstr "" +msgstr "De release van het besturingssysteem. Voorbeeld: '5.8.0-44-generiek'" #. 2fBtD #: sf_platform.xhp @@ -19472,7 +19472,7 @@ "par_id541600789286532\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. iukPq #: sf_platform.xhp @@ -19481,7 +19481,7 @@ "par_id701600789286280\n" "help.text" msgid "The operating system's build or version." -msgstr "" +msgstr "De build of versie van het besturingssysteem." #. DWQNA #: sf_platform.xhp @@ -19490,7 +19490,7 @@ "par_id351614902520555\n" "help.text" msgid "Example: '#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021'" -msgstr "" +msgstr "Voorbeeld : '#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021'" #. E8DzK #: sf_platform.xhp @@ -19499,7 +19499,7 @@ "par_id941608709527698\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. ArFcn #: sf_platform.xhp @@ -19508,7 +19508,7 @@ "par_id661300789527859\n" "help.text" msgid "The list of available printers as a zero-based array." -msgstr "" +msgstr "De lijst met beschikbare printers als een op nul gebaseerde matrix." #. nN5EG #: sf_platform.xhp @@ -19517,7 +19517,7 @@ "par_id111614952098396\n" "help.text" msgid "The default printer is put in the first position of the list (index = 0)." -msgstr "" +msgstr "De standaardprinter wordt op de eerste positie van de lijst gezet (index = 0)." #. fCdYi #: sf_platform.xhp @@ -19526,7 +19526,7 @@ "par_id941600789527698\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. wkthE #: sf_platform.xhp @@ -19535,7 +19535,7 @@ "par_id631600789527859\n" "help.text" msgid "The real processor name. Example: 'amdk6'." -msgstr "" +msgstr "De echte processornaam. Voorbeeld: 'amdk6'." #. MYY9M #: sf_platform.xhp @@ -19544,7 +19544,7 @@ "par_id111614902598396\n" "help.text" msgid "This property may return the same value as the Machine property." -msgstr "" +msgstr "Deze eigenschap kan dezelfde waarde retourneren als de eigenschap Machine." #. yWwgE #: sf_platform.xhp @@ -19553,7 +19553,7 @@ "par_id941608709527036\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Rw373 #: sf_platform.xhp @@ -19562,7 +19562,7 @@ "par_id661300789527994\n" "help.text" msgid "Returns the version of the Python interpreter being used as a string in the format \"Python major.minor.patchlevel\" (ex: \"Python 3.9.7\")." -msgstr "" +msgstr "Retourneert de versie van de Python-interpreter die wordt gebruikt als een tekenreeks in de indeling \"Python major.minor.patchlevel\" (bijvoorbeeld: \"Python 3.9.7\")." #. FJs9t #: sf_platform.xhp @@ -19571,7 +19571,7 @@ "par_id311633022159446\n" "help.text" msgid "The following examples in Basic and Python illustrate how to use the Fonts property to write the names of all available fonts to the current Calc sheet starting at cell \"A1\":" -msgstr "" +msgstr "De volgende voorbeelden in Basic en Python illustreren hoe u de eigenschap Fonts gebruikt om de namen van alle beschikbare lettertypen naar het huidige Calc-blad te schrijven, beginnend bij cel \"A1\":" #. 3yeMr #: sf_platform.xhp @@ -19580,7 +19580,7 @@ "par_id301613065794148\n" "help.text" msgid "Platform information with INFO(\"system\") Calc formula" -msgstr "" +msgstr "Platforminformatie met INFO(\"system\") Calc-formule" #. 3RZGR #: sf_popupmenu.xhp @@ -19589,7 +19589,7 @@ "tit\n" "help.text" msgid "ScriptForge.PopupMenu service" -msgstr "" +msgstr "Service ScriptForge.PopupMenu" #. NWwqN #: sf_popupmenu.xhp @@ -19598,7 +19598,7 @@ "bm_id681600788076499\n" "help.text" msgid "ScriptForge.PopupMenu service" -msgstr "" +msgstr "Service ScriptForge.PopupMenu" #. DGbZ3 #: sf_popupmenu.xhp @@ -19607,7 +19607,7 @@ "par_id181600788076612\n" "help.text" msgid "The PopupMenu service can be used to create popup menus that can be associated with events or executed by scripts. This service provides the following capabilities:" -msgstr "" +msgstr "De service PopupMenu kan worden gebruikt om pop-upmenu's te maken die aan gebeurtenissen kunnen worden gekoppeld of door scripts kunnen worden uitgevoerd. Deze service biedt de volgende mogelijkheden:" #. fGtNp #: sf_popupmenu.xhp @@ -19616,7 +19616,7 @@ "par_id301600788076785\n" "help.text" msgid "Creation of popup menus with custom entries, checkboxes and radio buttons." -msgstr "" +msgstr "Het maken van pop-upmenu's met aangepaste items, selectievakjes en keuzerondjes." #. QvyBB #: sf_popupmenu.xhp @@ -19625,7 +19625,7 @@ "par_id1001600788076848\n" "help.text" msgid "Decoration of menu items with icons and tooltips." -msgstr "" +msgstr "Decoratie van menu-items met pictogrammen en helptips." #. GA9DY #: sf_popupmenu.xhp @@ -19634,7 +19634,7 @@ "hd_id281600788076359\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. aGukU #: sf_popupmenu.xhp @@ -19643,7 +19643,7 @@ "par_id321614902851541\n" "help.text" msgid "The PopupMenu service can be instantiated in multiple ways. The example below creates a popup menu without associating it with a mouse or application event." -msgstr "" +msgstr "De service PopupMenu kan op meerdere manieren worden geïnstantieerd. In het onderstaande voorbeeld wordt een pop-upmenu gemaakt zonder het te associëren met een muis- of toepassingsgebeurtenis." #. zEX7M #: sf_popupmenu.xhp @@ -19652,7 +19652,7 @@ "bas_id841636717357955\n" "help.text" msgid "MsgBox(\"Selected item ID: \" & vResponse)" -msgstr "" +msgstr "MsgBox(\"Geselecteerd item-ID: \" & vResponse)" #. XcbWz #: sf_popupmenu.xhp @@ -19661,7 +19661,7 @@ "par_id341636718182262\n" "help.text" msgid "Running the Sub defined above will create a popup menu with two entries in the position X=300 and Y=300 on the screen." -msgstr "" +msgstr "Als u de hierboven gedefinieerde Sub uitvoert, wordt een pop-upmenu gemaakt met twee items op de positie X=300 en Y=300 op het scherm." #. AySnz #: sf_popupmenu.xhp @@ -19670,7 +19670,7 @@ "par_id711636493696169\n" "help.text" msgid "The prefix SFWidgets can be suppressed while invoking the PopupMenu service." -msgstr "" +msgstr "Het voorvoegsel SFWidgets kan worden onderdrukt terwijl de service PopupMenu wordt aangeroepen." #. HnBew #: sf_popupmenu.xhp @@ -19679,7 +19679,7 @@ "par_id851635274721129\n" "help.text" msgid "The following example defines a Sub that can be associated with a mouse event:" -msgstr "" +msgstr "Het volgende voorbeeld definieert een Sub die kan worden gekoppeld aan een muisgebeurtenis:" #. iZdDG #: sf_popupmenu.xhp @@ -19688,7 +19688,7 @@ "bas_id721636488722999\n" "help.text" msgid "' Populate popupmenu with items" -msgstr "" +msgstr "' Pop-upmenu vullen met items" #. Czn9U #: sf_popupmenu.xhp @@ -19697,7 +19697,7 @@ "bas_id311636488724795\n" "help.text" msgid "' Do something based on vResponse" -msgstr "" +msgstr "' Doe iets op basis van vResponse" #. ChBWz #: sf_popupmenu.xhp @@ -19706,7 +19706,7 @@ "par_id991636718278125\n" "help.text" msgid "Use the Dispose method to free resources after executing the popup menu." -msgstr "" +msgstr "Gebruik de methode Dispose om bronnen vrij te maken na het uitvoeren van het pop-upmenu." #. K8FAQ #: sf_popupmenu.xhp @@ -19715,7 +19715,7 @@ "par_id531636493797707\n" "help.text" msgid "It is also possible to associate a popup menu with events triggered by %PRODUCTNAME applications, form and dialog controls. Events such as \"Mouse button pressed\" and \"Mouse button released\" are commonly associated with popup menus." -msgstr "" +msgstr "Het is ook mogelijk om een pop-upmenu te associëren met gebeurtenissen die worden geactiveerd door %PRODUCTNAME-toepassingen, formulier- en dialoogvensterbesturingselementen. Gebeurtenissen zoals \"Muisknop ingedrukt\" en \"Muisknop losgelaten\" worden vaak geassocieerd met pop-upmenu's." #. L5Dhq #: sf_popupmenu.xhp @@ -19724,7 +19724,7 @@ "par_id131635275172617\n" "help.text" msgid "The examples above can be written in Python as follows:" -msgstr "" +msgstr "Dezelfde voorbeelden in Python:" #. 6esys #: sf_popupmenu.xhp @@ -19733,7 +19733,7 @@ "pyc_id916367179574588\n" "help.text" msgid "# Populate popupmenu with items" -msgstr "" +msgstr "# Pop-upmenu vullen met items" #. Nj85P #: sf_popupmenu.xhp @@ -19742,7 +19742,7 @@ "pyc_id851636718008427\n" "help.text" msgid "# Do something based on response" -msgstr "" +msgstr "# Doe iets op basis van reactie" #. Bkw3n #: sf_popupmenu.xhp @@ -19751,7 +19751,7 @@ "hd_id711600788076834\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. 7remQ #: sf_popupmenu.xhp @@ -19760,7 +19760,7 @@ "par_id461600788076917\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. zWaD9 #: sf_popupmenu.xhp @@ -19769,7 +19769,7 @@ "par_id221600788076591\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. 3bRwD #: sf_popupmenu.xhp @@ -19778,7 +19778,7 @@ "par_id761600788076328\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. yAUC9 #: sf_popupmenu.xhp @@ -19787,7 +19787,7 @@ "par_id67160078807636\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. G2c6G #: sf_popupmenu.xhp @@ -19796,7 +19796,7 @@ "par_id311600788076756\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. bcd7a #: sf_popupmenu.xhp @@ -19805,7 +19805,7 @@ "par_id441600788076826\n" "help.text" msgid "Character or string that defines how menu items are nested. The default character is \">\"." -msgstr "" +msgstr "Teken of tekenreeks die bepaalt hoe menu-items worden genest. Het standaardteken is \">\"." #. qnMK2 #: sf_popupmenu.xhp @@ -19814,7 +19814,7 @@ "par_id49160078807654\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. zYGVp #: sf_popupmenu.xhp @@ -19823,7 +19823,7 @@ "par_id81600788076419\n" "help.text" msgid "Character used to define the access key of a menu item. The default character is \"~\"." -msgstr "" +msgstr "Teken dat wordt gebruikt om de toegangssleutel van een menu-item te definiëren. Het standaardteken is \"~\"." #. drBFS #: sf_popupmenu.xhp @@ -19832,7 +19832,7 @@ "hd_id181636719707892\n" "help.text" msgid "Menu and Submenus" -msgstr "" +msgstr "Menu en submenu's" #. XGwV6 #: sf_popupmenu.xhp @@ -19841,7 +19841,7 @@ "par_id741636719725402\n" "help.text" msgid "To create a popup menu with submenus, use the character defined in the SubmenuCharacter property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy." -msgstr "" +msgstr "Om een pop-upmenu met submenu's te maken, gebruikt u het teken dat is gedefinieerd in de eigenschap SubmenuCharacter terwijl u het menu-item maakt om te bepalen waar het zal worden geplaatst. Beschouw bijvoorbeeld de volgende menu-/submenuhiërarchie." #. D3b2e #: sf_popupmenu.xhp @@ -19850,7 +19850,7 @@ "par_id211636720111489\n" "help.text" msgid "The code below uses the default submenu character \">\" to create the menu/submenu hierarchy defined above:" -msgstr "" +msgstr "De onderstaande code gebruikt het standaard submenu-teken \">\" om de hierboven gedefinieerde menu-/submenuhiërarchie te creëren:" #. MvF78 #: sf_popupmenu.xhp @@ -19859,7 +19859,7 @@ "par_id121636721243578\n" "help.text" msgid "The string \"---\" is used to define line separators in menus or submenus.." -msgstr "" +msgstr "De tekenreeks \"---\" wordt gebruikt om lijnscheidingstekens in menu's of submenu's te definiëren." #. nA7BW #: sf_popupmenu.xhp @@ -19868,7 +19868,7 @@ "hd_id211636723438558\n" "help.text" msgid "Using icons" -msgstr "" +msgstr "Pictogrammen gebruiken" #. ddHxQ #: sf_popupmenu.xhp @@ -19877,7 +19877,7 @@ "par_id981636723485402\n" "help.text" msgid "Items in the popup menu can have icons, which are specified as arguments in the AddCheckBox, AddItem and AddRadioButton methods." -msgstr "" +msgstr "Items in het pop-upmenu kunnen pictogrammen hebben, die als argumenten worden opgegeven in de methoden AddCheckBox, AddItem en AddRadioButton." #. TLDpD #: sf_popupmenu.xhp @@ -19886,7 +19886,7 @@ "par_id881636724112434\n" "help.text" msgid "All icons available in %PRODUCTNAME can be used by specifying their path relative to the folder where icon files are located in the installation folder. Icons are located in the following folder:" -msgstr "" +msgstr "Alle pictogrammen die beschikbaar zijn in %PRODUCTNAME kunnen worden gebruikt door hun pad op te geven ten opzichte van de map waarin de pictogrambestanden zich in de installatiemap bevinden. Pictogrammen bevinden zich in de volgende map:" #. n2owj #: sf_popupmenu.xhp @@ -19895,7 +19895,7 @@ "par_id941636724808906\n" "help.text" msgid "Use the InstallFolder property of the FileSystem service to determine where %PRODUCTNAME is installed in your system." -msgstr "" +msgstr "Gebruik de eigenschap InstallFolder van de service FileSystem om te bepalen waar %PRODUCTNAME op uw systeem is geïnstalleerd." #. xbEsC #: sf_popupmenu.xhp @@ -19904,7 +19904,7 @@ "par_id201636724575911\n" "help.text" msgid "This folder contains a series of ZIP files containing the image files of each available icon set. The images inside these ZIP files are organized into folders. To use an icon, specify the icon file with the path to its location inside the ZIP file." -msgstr "" +msgstr "Deze map bevat een reeks ZIP-bestanden met de afbeeldingsbestanden van elke beschikbare pictogrammenset. De afbeeldingen in deze ZIP-bestanden zijn georganiseerd in mappen. Om een pictogram te gebruiken, specificeert u het pictogrambestand met het pad naar de locatie in het ZIP-bestand." #. 5yvv9 #: sf_popupmenu.xhp @@ -19913,7 +19913,7 @@ "par_id641636724972071\n" "help.text" msgid "The example below uses the icon \"sc_newdoc.svg\" that is located inside the \"cmd\" folder. The forward slash \"/\" character is used as the path separator regardless of the operating system." -msgstr "" +msgstr "In het onderstaande voorbeeld wordt het pictogram \"sc_newdoc.svg\" gebruikt dat zich in de map \"cmd\" bevindt. De schuine streep \"/\" wordt gebruikt als padscheiding, ongeacht het besturingssysteem." #. 2QW4m #: sf_popupmenu.xhp @@ -19922,7 +19922,7 @@ "par_id691636725233961\n" "help.text" msgid "All icon sets have the same internal structure. The actual icon displayed depends on the icon set currently in use." -msgstr "" +msgstr "Alle pictogrammensets hebben dezelfde interne structuur. Het daadwerkelijk weergegeven pictogram is afhankelijk van de pictogrammenset die momenteel wordt gebruikt." #. v6wRS #: sf_popupmenu.xhp @@ -19931,7 +19931,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. CWGtf #: sf_popupmenu.xhp @@ -19940,7 +19940,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the PopupMenu Service" -msgstr "" +msgstr "Lijst met methoden in de service PopupMenu" #. RAcsN #: sf_popupmenu.xhp @@ -19949,7 +19949,7 @@ "par_id93158919969864\n" "help.text" msgid "Inserts a check box in the popup menu. Returns an integer value that identifies the inserted item." -msgstr "" +msgstr "Voegt een selectievakje in het pop-upmenu in. Retourneert een geheel getal dat het ingevoegde item identificeert." #. ZZrDA #: sf_popupmenu.xhp @@ -19958,7 +19958,7 @@ "par_id821591631203996\n" "help.text" msgid "menuitem: Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character." -msgstr "" +msgstr "menuitem: Definieert de tekst die in het menu moet worden weergegeven. Dit argument definieert ook de hiërarchie van het item in het menu met behulp van het submenuteken." #. riy7p #: sf_popupmenu.xhp @@ -19967,7 +19967,7 @@ "par_id821591631203116\n" "help.text" msgid "name: String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used." -msgstr "" +msgstr "name: Tekenreeks die moet worden geretourneerd wanneer op het item wordt geklikt. Standaard wordt het laatste onderdeel van de menuhiërarchie gebruikt." #. yxK8E #: sf_popupmenu.xhp @@ -19976,7 +19976,7 @@ "par_id821591631203133\n" "help.text" msgid "status: Defines whether the item is selected when the menu is created (Default = False)." -msgstr "" +msgstr "status: Definieert of het item is geselecteerd wanneer het menu wordt gemaakt (standaard = False)." #. Q4ZNV #: sf_popupmenu.xhp @@ -19985,7 +19985,7 @@ "par_id11636721653313\n" "help.text" msgid "icon: Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used." -msgstr "" +msgstr "icon: Pad en naam van het pictogram dat moet worden weergegeven zonder het voorlooppadscheidingsteken. Het getoonde pictogram hangt af van de pictogrammenset die wordt gebruikt." #. dkqgP #: sf_popupmenu.xhp @@ -19994,7 +19994,7 @@ "par_id11636721653208\n" "help.text" msgid "tooltip: Text to be displayed as tooltip." -msgstr "" +msgstr "tooltip: Tekst die moet worden weergegeven als helptip." #. NEE76 #: sf_popupmenu.xhp @@ -20003,7 +20003,7 @@ "par_id93158919963364\n" "help.text" msgid "Inserts a menu entry in the popup menu. Returns an integer value that identifies the inserted item." -msgstr "" +msgstr "Voegt een menu-item in het pop-upmenu in. Retourneert een geheel getal dat het ingevoegde item identificeert." #. vdtEn #: sf_popupmenu.xhp @@ -20012,7 +20012,7 @@ "par_id821591631203021\n" "help.text" msgid "menuitem: Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character." -msgstr "" +msgstr "menuitem: Definieert de tekst die in het menu moet worden weergegeven. Dit argument definieert ook de hiërarchie van het item in het menu met behulp van het submenuteken." #. 8eE5y #: sf_popupmenu.xhp @@ -20021,7 +20021,7 @@ "par_id821591631203026\n" "help.text" msgid "name: String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used." -msgstr "" +msgstr "name: Tekenreeks die moet worden geretourneerd wanneer op het item wordt geklikt. Standaard wordt het laatste onderdeel van de menuhiërarchie gebruikt." #. F646F #: sf_popupmenu.xhp @@ -20030,7 +20030,7 @@ "par_id11636721652886\n" "help.text" msgid "icon: Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used." -msgstr "" +msgstr "icon: Pad en naam van het pictogram dat moet worden weergegeven zonder het voorlooppadscheidingsteken. Het getoonde pictogram hangt af van de pictogrammenset die wordt gebruikt." #. XFkGB #: sf_popupmenu.xhp @@ -20039,7 +20039,7 @@ "par_id11636721653118\n" "help.text" msgid "tooltip: Text to be displayed as tooltip." -msgstr "" +msgstr "tooltip: Tekst die moet worden weergegeven als helptip." #. dJTZs #: sf_popupmenu.xhp @@ -20048,7 +20048,7 @@ "bas_id41158919969106\n" "help.text" msgid "myPopup.AddItem(\"Item A\", Tooltip := \"A descriptive message\")" -msgstr "" +msgstr "myPopup.AddItem(\"Item A\", Tooltip := \"Een beschrijvend bericht\")" #. 4euLD #: sf_popupmenu.xhp @@ -20057,7 +20057,7 @@ "pyc_id321621534170554\n" "help.text" msgid "myPopup.AddItem(\"Item A\", tooltip = \"A descriptive message\")" -msgstr "" +msgstr "myPopup.AddItem(\"Item A\", tooltip = \"Een beschrijvend bericht\")" #. U2vBb #: sf_popupmenu.xhp @@ -20066,7 +20066,7 @@ "par_id93158919969399\n" "help.text" msgid "Inserts a radio button entry in the popup menu. Returns an integer value that identifies the inserted item." -msgstr "" +msgstr "Voegt een keuzerondje in het pop-upmenu in. Retourneert een geheel getal dat het ingevoegde item identificeert." #. 92F32 #: sf_popupmenu.xhp @@ -20075,7 +20075,7 @@ "par_id821591631203501\n" "help.text" msgid "menuitem: Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character." -msgstr "" +msgstr "menuitem: Definieert de tekst die in het menu moet worden weergegeven. Dit argument definieert ook de hiërarchie van het item in het menu met behulp van het submenuteken." #. 2PuBE #: sf_popupmenu.xhp @@ -20084,7 +20084,7 @@ "par_id821591631228716\n" "help.text" msgid "name: String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used." -msgstr "" +msgstr "name: Tekenreeks die moet worden geretourneerd wanneer op het item wordt geklikt. Standaard wordt het laatste onderdeel van de menuhiërarchie gebruikt." #. yLvRM #: sf_popupmenu.xhp @@ -20093,7 +20093,7 @@ "par_id821591631203643\n" "help.text" msgid "status: Defines whether the item is selected when the menu is created (Default = False)." -msgstr "" +msgstr "status: Definieert of het item is geselecteerd wanneer het menu wordt gemaakt (standaard = False)." #. 6XiD7 #: sf_popupmenu.xhp @@ -20102,7 +20102,7 @@ "par_id11636721653228\n" "help.text" msgid "icon: Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used." -msgstr "" +msgstr "icon: Pad en naam van het pictogram dat moet worden weergegeven zonder het voorlooppadscheidingsteken. Het getoonde pictogram hangt af van de pictogrammenset die wordt gebruikt." #. cRTRD #: sf_popupmenu.xhp @@ -20111,7 +20111,7 @@ "par_id11636721653114\n" "help.text" msgid "tooltip: Text to be displayed as tooltip." -msgstr "" +msgstr "tooltip: Tekst die moet worden weergegeven als helptip." #. nQrD3 #: sf_popupmenu.xhp @@ -20120,7 +20120,7 @@ "par_id93158919963279\n" "help.text" msgid "Displays the popup menu and waits for a user action. Returns the item clicked by the user." -msgstr "" +msgstr "Toont het pop-upmenu en wacht op een actie van de gebruiker. Retourneert het item waarop de gebruiker heeft geklikt." #. GruyE #: sf_popupmenu.xhp @@ -20129,7 +20129,7 @@ "par_id101636726249788\n" "help.text" msgid "If the user clicks outside the popup menu ou presses the Esc key, then no item is selected. In such cases, the returned value depends on the returnid parameter. If returnid = True and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned." -msgstr "" +msgstr "Als de gebruiker buiten het pop-upmenu klikt of op de Esc-toets drukt, wordt er geen item geselecteerd. In dergelijke gevallen is de geretourneerde waarde afhankelijk van de parameter returnid. Als returnid = True en er is geen item geselecteerd, dan wordt de waarde 0 (nul) geretourneerd. Anders wordt een lege tekenreeks \"\" geretourneerd." #. EFriZ #: sf_popupmenu.xhp @@ -20138,7 +20138,7 @@ "par_id821591631202088\n" "help.text" msgid "returnid: If True the selected item ID is returned. If False the method returns the item's name (Default = True)." -msgstr "" +msgstr "returnid: Indien True wordt de geselecteerde item-ID geretourneerd. Als False retourneert de methode de naam van het item (standaard = True)." #. y4PWP #: sf_popupmenu.xhp @@ -20147,7 +20147,7 @@ "par_id51636726671698\n" "help.text" msgid "In the examples below, a popup menu is created and the item's name is returned because the returnid argument is set to False." -msgstr "" +msgstr "In de onderstaande voorbeelden wordt een pop-upmenu gemaakt en wordt de naam van het item geretourneerd omdat het argument returnid is ingesteld op False." #. GpvmN #: sf_services.xhp @@ -20156,7 +20156,7 @@ "tit\n" "help.text" msgid "ScriptForge.Services service" -msgstr "" +msgstr "Service ScriptForge.Services" #. bFtkf #: sf_services.xhp @@ -20165,7 +20165,7 @@ "hd_id471582710868716\n" "help.text" msgid "ScriptForge.Services service" -msgstr "" +msgstr "Service ScriptForge.Services" #. SDbDJ #: sf_services.xhp @@ -20174,7 +20174,7 @@ "par_id241627513489594\n" "help.text" msgid "The main purpose of the Services module is to provide access to the CreateScriptService method, which can be called in user scripts to instantiate services that are implemented using the ScriptForge framework." -msgstr "" +msgstr "Het belangrijkste doel van de module Services is om toegang te bieden tot de methode CreateScriptService, die kan worden aangeroepen in gebruikersscripts om services te instantiëren die zijn geïmplementeerd met behulp van het ScriptForge-framework." #. 7B2KJ #: sf_services.xhp @@ -20183,7 +20183,7 @@ "par_id351582710868545\n" "help.text" msgid "In ScriptForge terminology a service is a collection of methods and properties that can be used for a common purpose. For example, the String service provides methods for manipulating strings whereas the FileSystem service allows for the manipulation of files and folders." -msgstr "" +msgstr "In ScriptForge-terminologie is een service een verzameling methoden en eigenschappen die voor een gemeenschappelijk doel kunnen worden gebruikt. De service String biedt bijvoorbeeld methoden voor het manipuleren van strings, terwijl de service FileSystem de manipulatie van bestanden en mappen toestaat." #. NW4BS #: sf_services.xhp @@ -20192,7 +20192,7 @@ "par_id541627513771828\n" "help.text" msgid "The Services module of the ScriptForge library provides additional methods that are used either internally to register available services or by developers who are interested in extending ScriptForge by creating new services. The only method that is relevant for user scripts is CreateScriptService." -msgstr "" +msgstr "De module Services van de ScriptForge-bibliotheek biedt aanvullende methoden die intern worden gebruikt om beschikbare services te registreren of door ontwikkelaars die geïnteresseerd zijn in het uitbreiden van ScriptForge door nieuwe services te creëren. De enige methode die relevant is voor gebruikersscripts is CreateScriptService." #. FW4FC #: sf_services.xhp @@ -20201,7 +20201,7 @@ "par_id871582714020043\n" "help.text" msgid "This method is used to instantiate a ScriptForge service so it can be called in user scripts." -msgstr "" +msgstr "Deze methode wordt gebruikt om een ScriptForge-service te instantiëren, zodat deze in gebruikersscripts kan worden aangeroepen." #. jG6U9 #: sf_services.xhp @@ -20210,7 +20210,7 @@ "par_id711627514310039\n" "help.text" msgid "The returned value is a Basic object or Nothing if an error occurred." -msgstr "" +msgstr "De geretourneerde waarde is een Basic-object of Nothing als er een fout is opgetreden." #. oojMF #: sf_services.xhp @@ -20219,7 +20219,7 @@ "par_id971582714020045\n" "help.text" msgid "service: The name of the service identified as a string in the format \"library.service\":" -msgstr "" +msgstr "service: De naam van de service geïdentificeerd als een tekenreeks in de indeling \"library.service\":" #. CEqku #: sf_services.xhp @@ -20228,7 +20228,7 @@ "par_id11627475954271\n" "help.text" msgid "The library is a Basic library that must exist in the GlobalScope. The default value is \"ScriptForge\"." -msgstr "" +msgstr "De bibliotheek is een Basic bibliotheek die moet bestaan in de GlobalScope. De standaardwaarde is \"ScriptForge\"." #. BBFeA #: sf_services.xhp @@ -20237,7 +20237,7 @@ "par_id811627475954641\n" "help.text" msgid "The service is one of the services registered by the ScriptForge library." -msgstr "" +msgstr "De service is een van de services die is geregistreerd door de ScriptForge-bibliotheek." #. btbtw #: sf_services.xhp @@ -20246,7 +20246,7 @@ "par_id391582714020045\n" "help.text" msgid "arg0, ...: A list of arguments required by the invoked service." -msgstr "" +msgstr "arg0, ...: Een lijst met argumenten die vereist zijn door de aangeroepen service." #. yAaks #: sf_services.xhp @@ -20255,7 +20255,7 @@ "par_id841627475900817\n" "help.text" msgid "If the first argument refers to an event manager, then arg0 is mandatory and must be the UNO object representing the event provided as argument to the user macro." -msgstr "" +msgstr "Als het eerste argument verwijst naar een gebeurtenismanager, dan is arg0 verplicht en moet het het UNO-object zijn dat de gebeurtenis vertegenwoordigt die als argument voor de gebruikersmacro is opgegeven." #. wuR7S #: sf_services.xhp @@ -20264,7 +20264,7 @@ "bas_id981582898174133\n" "help.text" msgid "' To be done once" -msgstr "" +msgstr "' Eenmaal uitvoeren" #. oqovE #: sf_services.xhp @@ -20273,7 +20273,7 @@ "bas_id311582715700844\n" "help.text" msgid "' Refers to the \"ScriptForge.Array\" service or SF_Array" -msgstr "" +msgstr "' Verwijst naar de service \"ScriptForge.Array\" of SF_Array" #. KvcPo #: sf_services.xhp @@ -20282,7 +20282,7 @@ "bas_id61582715759468\n" "help.text" msgid "' Returns a new empty dictionary class instance; \"ScriptForge.\" is optional" -msgstr "" +msgstr "' Retourneert een nieuwe lege instantie van de woordenboekklasse; \"ScriptForge.\" is optioneel" #. pMGcR #: sf_services.xhp @@ -20291,7 +20291,7 @@ "bas_id901582715797722\n" "help.text" msgid "' Refers to the Calc service, implemented in the associated SFDocuments library" -msgstr "" +msgstr "'Verwijst naar de Calc-service, geïmplementeerd in de bijbehorende SFDocuments-bibliotheek" #. BoXHx #: sf_services.xhp @@ -20300,7 +20300,7 @@ "bas_id361582715845747\n" "help.text" msgid "' Returns a Timer class instance starting immediately" -msgstr "" +msgstr "' Retourneert een instantie van een Timer-klasse die onmiddellijk begint" #. 9bmdn #: sf_services.xhp @@ -20309,7 +20309,7 @@ "bas_id571596298708062\n" "help.text" msgid "' Refers to the DocumentEvent service implemented in the associated SFDocuments library" -msgstr "" +msgstr "'Verwijst naar de DocumentEvent-service die is geïmplementeerd in de bijbehorende SFDocuments-bibliotheek" #. DFhat #: sf_services.xhp @@ -20318,7 +20318,7 @@ "bas_id121613492254532\n" "help.text" msgid "' Returns the instance of the Document class that fired the event" -msgstr "" +msgstr "'Retourneert de instantie van de Document-klasse die de gebeurtenis heeft geactiveerd" #. zhCyY #: sf_services.xhp @@ -20327,7 +20327,7 @@ "par_id321627570607194\n" "help.text" msgid "Python scripts support keyword arguments when calling CreateScriptService. The following example illustrates this concept by instantiating the Timer and Document services using keyword arguments." -msgstr "" +msgstr "Python-scripts ondersteunen trefwoordargumenten bij het aanroepen van CreateScriptService. Het volgende voorbeeld illustreert dit concept door de services Timer en Document te instantiëren met behulp van trefwoordargumenten." #. jah7F #: sf_services.xhp @@ -20336,7 +20336,7 @@ "par_id901627576693156\n" "help.text" msgid "To make writing Python scripts more fluid, ScriptForge provides the Basic service which allows Python scripts to call a collection of methods with the same syntax and meaning as their homonymous native Basic functions." -msgstr "" +msgstr "Om het schrijven van Python-scripts vloeiender te maken, biedt ScriptForge de service Basic, waarmee Python-scripts een verzameling methoden kunnen aanroepen met dezelfde syntaxis en betekenis als hun gelijknamige native Basic-functies." #. SDQ7m #: sf_services.xhp @@ -20345,7 +20345,7 @@ "par_id41627644806288\n" "help.text" msgid "The following example instantiates the Basic service and calls the MsgBox method, which is equivalent to the MsgBox function available in Basic:" -msgstr "" +msgstr "In het volgende voorbeeld wordt de service Basic geïnstantieerd en wordt de methode MsgBox aangeroepen, wat gelijk is aan de functie MsgBox die beschikbaar is in Basic:" #. zVgQm #: sf_services.xhp @@ -20354,7 +20354,7 @@ "par_id581627645023307\n" "help.text" msgid "Beware that the Basic service has to be instantiated in Python scripts using the CreateScriptService method." -msgstr "" +msgstr "Pas op dat de Basic-service moet worden geïnstantieerd in Python-scripts met behulp van de methode CreateScriptService." #. LCVem #: sf_session.xhp @@ -20363,7 +20363,7 @@ "tit\n" "help.text" msgid "ScriptForge.Session service" -msgstr "" +msgstr "Service ScriptForge.Session" #. DxnDG #: sf_session.xhp @@ -20372,7 +20372,7 @@ "hd_id901582814720985\n" "help.text" msgid "ScriptForge.Session service" -msgstr "" +msgstr "Service ScriptForge.Session" #. yTgFK #: sf_session.xhp @@ -20381,7 +20381,7 @@ "par_id861582814720987\n" "help.text" msgid "The Session service gathers various general-purpose methods about:" -msgstr "" +msgstr "De service Session verzamelt verschillende algemene methoden over:" #. a2DCM #: sf_session.xhp @@ -20390,7 +20390,7 @@ "par_id34158281472051\n" "help.text" msgid "the installation or execution environment" -msgstr "" +msgstr "de installatie- of uitvoeringsomgeving" #. cf5WG #: sf_session.xhp @@ -20399,7 +20399,7 @@ "par_id411582814720361\n" "help.text" msgid "UNO introspection" -msgstr "" +msgstr "UNO-introspectie" #. fBApv #: sf_session.xhp @@ -20408,7 +20408,7 @@ "par_id321582814720863\n" "help.text" msgid "the invocation of external scripts or programs" -msgstr "" +msgstr "het aanroepen van externe scripts of programma's" #. 63uDb #: sf_session.xhp @@ -20417,7 +20417,7 @@ "hd_id91582814720116\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. 8BEnm #: sf_session.xhp @@ -20426,7 +20426,7 @@ "hd_id291582814720762\n" "help.text" msgid "Constants" -msgstr "" +msgstr "Constanten" #. zcRQu #: sf_session.xhp @@ -20435,7 +20435,7 @@ "par_id82158281472034\n" "help.text" msgid "Below is a list of constants available to ease the designation of the library containing a Basic or Python script to invoke. Use them as session.CONSTANT." -msgstr "" +msgstr "Hieronder vindt u een lijst met constanten die beschikbaar zijn om de aanduiding van de bibliotheek met een aan te roepen Basic- of Python-script te vergemakkelijken. Gebruik ze als session.CONSTANT." #. yyF2R #: sf_session.xhp @@ -20444,7 +20444,7 @@ "par_id9158281472045\n" "help.text" msgid "Value" -msgstr "" +msgstr "Waarde" #. Wd88w #: sf_session.xhp @@ -20453,7 +20453,7 @@ "par_id241582814720636\n" "help.text" msgid "Where to find the library?" -msgstr "" +msgstr "Waar vind je de bibliotheek?" #. k58kN #: sf_session.xhp @@ -20462,7 +20462,7 @@ "par_id361582814720116\n" "help.text" msgid "Applicable" -msgstr "" +msgstr "Toepasbaar" #. DJspw #: sf_session.xhp @@ -20471,7 +20471,7 @@ "par_id451582814720105\n" "help.text" msgid "in the document" -msgstr "" +msgstr "in het document" #. Q2KtM #: sf_session.xhp @@ -20480,7 +20480,7 @@ "par_id73158281472032\n" "help.text" msgid "in any shared library" -msgstr "" +msgstr "in een gedeelde bibliotheek" #. E7meg #: sf_session.xhp @@ -20489,7 +20489,7 @@ "par_id391582814720487\n" "help.text" msgid "in My Macros" -msgstr "" +msgstr "in MijnMacro's" #. MiuWT #: sf_session.xhp @@ -20498,7 +20498,7 @@ "par_id56158281472073\n" "help.text" msgid "in an extension installed for the current user" -msgstr "" +msgstr "in een extensie geïnstalleerd voor de huidige gebruiker" #. SAMnM #: sf_session.xhp @@ -20516,7 +20516,7 @@ "par_id981582814720125\n" "help.text" msgid "in an extension installed for all users" -msgstr "" +msgstr "in een extensie geïnstalleerd voor alle gebruikers" #. gCi9j #: sf_session.xhp @@ -20525,7 +20525,7 @@ "par_id93158281472047\n" "help.text" msgid "in an extension but the installation parameters are unknown" -msgstr "" +msgstr "in een extensie maar de installatieparameters zijn onbekend" #. mLURi #: sf_session.xhp @@ -20534,7 +20534,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the Session Service" -msgstr "" +msgstr "Lijst met methoden in de service Session" #. JvBuZ #: sf_session.xhp @@ -20543,7 +20543,7 @@ "par_id491613061572993\n" "help.text" msgid "Execute... methods in Session service behave as follows:
    Arguments are passed by value. Changes made by the called function to the arguments do not update their values in the calling script.
    A single value or an array of values is returned to the calling script." -msgstr "" +msgstr "Execute...-methoden in de service Session gedragen zich als volgt:
    Argumenten worden doorgegeven op basis van waarde. Wijzigingen die door de aangeroepen functie in de argumenten zijn aangebracht, werken hun waarden niet bij in het aanroepende script.
    Een enkele waarde of een reeks waarden wordt teruggestuurd naar het aanroepende script." #. 72GZi #: sf_session.xhp @@ -20552,7 +20552,7 @@ "par_id451582815407230\n" "help.text" msgid "Execute the Basic script given its name and location and fetch its result if any." -msgstr "" +msgstr "Voer het Basic-script uit met de naam en locatie en haal het eventuele resultaat op." #. yFnSG #: sf_session.xhp @@ -20561,7 +20561,7 @@ "par_id921600856780901\n" "help.text" msgid "If the script returns nothing, which is the case of procedures defined with Sub, the returned value is Empty." -msgstr "" +msgstr "Als het script niets retourneert, wat het geval is bij procedures die zijn gedefinieerd met Sub, is de geretourneerde waarde Empty." #. VTyCE #: sf_session.xhp @@ -20570,7 +20570,7 @@ "par_id631582815407231\n" "help.text" msgid "scope: String specifying where the script is stored. It can be either \"document\" (constant session.SCRIPTISEMBEDDED) or \"application\" (constant session.SCRIPTISAPPLICATION)." -msgstr "" +msgstr "scope: Tekenreeks die aangeeft waar het script wordt opgeslagen. Het kan \"document\" (constant session.SCRIPTISEMBEDDED) of \"application\" (constant session.SCRIPTISAPPLICATION) zijn." #. SCCpE #: sf_session.xhp @@ -20579,7 +20579,7 @@ "par_id691582815407231\n" "help.text" msgid "script: String specifying the script to be called in the format \"library.module.method\" as a case-sensitive string." -msgstr "" +msgstr "script: Tekenreeks die het aan te roepen script specificeert in de indeling \"library.module.method\" als hoofdlettergevoelige tekenreeks." #. hS5x4 #: sf_session.xhp @@ -20588,7 +20588,7 @@ "par_id741626828862265\n" "help.text" msgid "The library is loaded in memory if necessary." -msgstr "" +msgstr "De bibliotheek wordt indien nodig in het geheugen geladen." #. D8AL6 #: sf_session.xhp @@ -20597,7 +20597,7 @@ "par_id981626828863001\n" "help.text" msgid "The module must not be a class module." -msgstr "" +msgstr "De module mag geen klassenmodule zijn." #. VsUFD #: sf_session.xhp @@ -20606,7 +20606,7 @@ "par_id721626828863257\n" "help.text" msgid "The method may be a Sub or a Function." -msgstr "" +msgstr "De methode kan een Sub of een Function zijn." #. eExjm #: sf_session.xhp @@ -20615,7 +20615,7 @@ "par_id881582815407231\n" "help.text" msgid "args: The arguments to be passed to the called script." -msgstr "" +msgstr "args: De argumenten die moeten worden doorgegeven aan het aangeroepen script." #. mg5WG #: sf_session.xhp @@ -20624,7 +20624,7 @@ "par_id21626809513802\n" "help.text" msgid "Consider the following Basic function named DummyFunction that is stored in \"My Macros\" in the \"Standard\" library inside a module named \"Module1\"." -msgstr "" +msgstr "Overweeg de volgende basisfunctie met de naam DummyFunction die is opgeslagen in \"MijnMacro's\" in de bibliotheek \"Standard\" in een module met de naam \"Module1\"." #. PMyrB #: sf_session.xhp @@ -20633,7 +20633,7 @@ "par_id551626810319766\n" "help.text" msgid "The function simply takes in two integer values v1 and v2 and return the sum of all values starting in v1 and ending in v2." -msgstr "" +msgstr "De functie neemt eenvoudig twee gehele waarden v1 en v2 en retourneert de som van alle waarden die beginnen in v1 en eindigen op v2." #. Gx6fV #: sf_session.xhp @@ -20642,7 +20642,7 @@ "par_id461626810470057\n" "help.text" msgid "The examples below show how to call DummyFunction from within Basic and Python scripts." -msgstr "" +msgstr "De onderstaande voorbeelden laten zien hoe u DummyFunction aanroept vanuit Basic- en Python-scripts." #. Yr22N #: sf_session.xhp @@ -20651,7 +20651,7 @@ "par_id111582816585181\n" "help.text" msgid "Execute a Calc function using its English name and based on the given arguments.
    If the arguments are arrays, the function is executed as an array formula." -msgstr "" +msgstr "Voer een Calc-functie uit met de Engelse naam en op basis van de gegeven argumenten.
    Als de argumenten matrixen zijn, wordt de functie uitgevoerd als een matrixformule." #. EDU9x #: sf_session.xhp @@ -20660,7 +20660,7 @@ "par_id771582816585183\n" "help.text" msgid "calcfunction: The name of the Calc function to be called, in English." -msgstr "" +msgstr "calcfunction: De naam van de aan te roepen Calc-functie, in het Engels." #. FJJJh #: sf_session.xhp @@ -20669,7 +20669,7 @@ "par_id371582816585183\n" "help.text" msgid "args: The arguments to be passed to the called Calc function. Each argument must be either a string, a numeric value or an array of arrays combining those types." -msgstr "" +msgstr "args: De argumenten die moeten worden doorgegeven aan de aangeroepen Calc-functie. Elk argument moet een tekenreeks, een numerieke waarde of een reeks matrixen zijn die deze typen combineren." #. XMfUD #: sf_session.xhp @@ -20678,7 +20678,7 @@ "bas_id881582816585185\n" "help.text" msgid "' Generates an error." -msgstr "" +msgstr "' Genereert een fout." #. ygESx #: sf_session.xhp @@ -20687,7 +20687,7 @@ "par_id571582818023245\n" "help.text" msgid "Execute the Python script given its location and name, fetch its result if any. Result can be a single value or an array of values." -msgstr "" +msgstr "Voer het Python-script uit gezien de locatie en naam, haal het eventuele resultaat op. Het resultaat kan een enkele waarde of een reeks waarden zijn." #. SB2gx #: sf_session.xhp @@ -20696,7 +20696,7 @@ "par_id71600856817410\n" "help.text" msgid "If the script is not found, or if it returns nothing, the returned value is Empty." -msgstr "" +msgstr "Als het script niet wordt gevonden, of als het niets retourneert, is de geretourneerde waarde Empty." #. jdWTU #: sf_session.xhp @@ -20705,7 +20705,7 @@ "par_id791582818023246\n" "help.text" msgid "scope: One of the applicable constants listed above. The default value is session.SCRIPTISSHARED." -msgstr "" +msgstr "scope: Een van de toepasselijke constanten wordt hierboven vermeld. De standaardwaarde is session.SCRIPTISSHARED." #. ELfda #: sf_session.xhp @@ -20714,7 +20714,7 @@ "par_id71582818023247\n" "help.text" msgid "script: Either \"library/module.py$method\" or \"module.py$method\" or \"myExtension.oxt|myScript|module.py$method\" as a case-sensitive string." -msgstr "" +msgstr "script: Ofwel \"library/module.py$method\" of \"module.py$method\" of \"myExtension.oxt|myScript|module.py$method\" als hoofdlettergevoelige tekenreeks." #. P6ZKD #: sf_session.xhp @@ -20723,7 +20723,7 @@ "par_id501613061041313\n" "help.text" msgid "library: The folder path to the Python module." -msgstr "" +msgstr "library: Het mappad naar de Python-module." #. ktFHu #: sf_session.xhp @@ -20732,7 +20732,7 @@ "par_id771613061043097\n" "help.text" msgid "myScript: The folder containing the Python module." -msgstr "" +msgstr "myScript: De map met de Python-module" #. ANBoy #: sf_session.xhp @@ -20741,7 +20741,7 @@ "par_id301613061123849\n" "help.text" msgid "module.py: The Python module." -msgstr "" +msgstr "module.py: De Python-module" #. f4B8C #: sf_session.xhp @@ -20750,7 +20750,7 @@ "par_id241613061044560\n" "help.text" msgid "method: The Python function." -msgstr "" +msgstr "method: De Python-functie." #. ByFdE #: sf_session.xhp @@ -20759,7 +20759,7 @@ "par_id711582818023247\n" "help.text" msgid "args: The arguments to be passed to the called script." -msgstr "" +msgstr "args: De argumenten die moeten worden doorgegeven aan het aangeroepen script." #. ckvXs #: sf_session.xhp @@ -20768,7 +20768,7 @@ "par_id701626817164878\n" "help.text" msgid "Consider the Python function odd_integers defined below that creates a list with odd integer values between v1 and v2. Suppose this function is stored in a file named my_macros.py in your user scripts folder." -msgstr "" +msgstr "Overweeg de hieronder gedefinieerde Python-functie odd_integers die een lijst maakt met oneven integere waarden tussen v1 en v2. Stel dat deze functie is opgeslagen in een bestand met de naam my_macros.py in de map met gebruikersscripts." #. o6DUm #: sf_session.xhp @@ -20777,7 +20777,7 @@ "par_id751626817335715\n" "help.text" msgid "Read the help page Python Scripts Organization and Location to learn more about where Python scripts can be stored." -msgstr "" +msgstr "Lees de helppagina Python Scripts Organisatie en Locatie voor meer informatie over waar Python-scripts kunnen worden opgeslagen." #. vqBm9 #: sf_session.xhp @@ -20786,7 +20786,7 @@ "par_id121626817725471\n" "help.text" msgid "The following examples show how to call the function odd_integers from within Basic and Python scripts." -msgstr "" +msgstr "De volgende voorbeelden laten zien hoe u de functie odd_integers aanroept vanuit Basic- en Python-scripts." #. pbmij #: sf_session.xhp @@ -20795,7 +20795,7 @@ "par_id111582816585087\n" "help.text" msgid "Returns the current PDF export settings defined in the PDF Options dialog, which can be accessed by choosing File - Export as - Export as PDF." -msgstr "" +msgstr "Retourneert de huidige PDF-exportinstellingen die zijn gedefinieerd in het dialoogvenster PDF-opties, dat toegankelijk is door Bestand - Exporteren als - Exporteren als PDF te kiezen." #. K7j2q #: sf_session.xhp @@ -20804,7 +20804,7 @@ "par_id931638383270026\n" "help.text" msgid "Export options set with the PDF Options dialog are kept for future use. Hence GetPDFExportOptions returns the settings currently defined. In addition, use SetPDFExportOptions to change current PDF export options." -msgstr "" +msgstr "Exportopties die zijn ingesteld met het dialoogvenster PDF-opties worden bewaard voor toekomstig gebruik. Daarom retourneert GetPDFExportOptions de instellingen die momenteel zijn gedefinieerd. Gebruik daarnaast SetPDFExportOptions om de huidige PDF-exportopties te wijzigen." #. uFCEq #: sf_session.xhp @@ -20813,7 +20813,7 @@ "par_id801638383659558\n" "help.text" msgid "This method returns a Dictionary object wherein each key represent export options and the corresponding values are the current PDF export settings." -msgstr "" +msgstr "Deze methode retourneert een Dictionary-object waarin elke sleutel exportopties vertegenwoordigt en de bijbehorende waarden de huidige PDF-exportinstellingen zijn." #. 6kXBe #: sf_session.xhp @@ -20822,7 +20822,7 @@ "par_id751638383457198\n" "help.text" msgid "Read the PDF Export wiki page to learn more about all available options." -msgstr "" +msgstr "Lees de Wiki-pagina the PDF Export voor meer informatie over alle beschikbare opties." #. Lv4iA #: sf_session.xhp @@ -20831,7 +20831,7 @@ "par_id111587477335982\n" "help.text" msgid "Returns True if an UNO object contains the given method. Returns False when the method is not found or when an argument is invalid." -msgstr "" +msgstr "Retourneert True als een UNO-object de opgegeven methode bevat. Retourneert False wanneer de methode niet wordt gevonden of wanneer een argument ongeldig is." #. HAw32 #: sf_session.xhp @@ -20840,7 +20840,7 @@ "par_id921587477335673\n" "help.text" msgid "unoobject: The object to inspect." -msgstr "" +msgstr "unoobject: Het te inspecteren object." #. DDw6g #: sf_session.xhp @@ -20849,7 +20849,7 @@ "par_id631587477566016\n" "help.text" msgid "methodname: the method as a case-sensitive string" -msgstr "" +msgstr "methodname: de methode als een hoofdlettergevoelige tekenreeks" #. gDBRB #: sf_session.xhp @@ -20858,7 +20858,7 @@ "par_id191587477832959\n" "help.text" msgid "Returns True if a UNO object has the given property. Returns False when the property is not found or when an argument is invalid." -msgstr "" +msgstr "Retourneert True als een UNO-object de gegeven eigenschap heeft. Retourneert False wanneer de eigenschap niet wordt gevonden of wanneer een argument ongeldig is." #. 54oXs #: sf_session.xhp @@ -20867,7 +20867,7 @@ "par_id121587477832805\n" "help.text" msgid "unoobject: The object to inspect." -msgstr "" +msgstr "unoobject: Het te inspecteren object." #. hCTCk #: sf_session.xhp @@ -20876,7 +20876,7 @@ "par_id701587477832750\n" "help.text" msgid "propertyname: the property as a case-sensitive string" -msgstr "" +msgstr "propertyname: de eigenschap als een hoofdlettergevoelige tekenreeks" #. QWaTF #: sf_session.xhp @@ -20885,7 +20885,7 @@ "par_id97160112964017\n" "help.text" msgid "Open a Uniform Resource Locator (URL) in the default browser." -msgstr "" +msgstr "Open een Uniform Resource Locator (URL) in de standaardbrowser." #. 4tFWV #: sf_session.xhp @@ -20894,7 +20894,7 @@ "par_id241601129640549\n" "help.text" msgid "url: The URL to open." -msgstr "" +msgstr "url: De te openen URL." #. hJqsF #: sf_session.xhp @@ -20903,7 +20903,7 @@ "par_id311582819697897\n" "help.text" msgid "Executes an arbitrary system command and returns True if it was launched successfully." -msgstr "" +msgstr "Voert een willekeurige systeemopdracht uit en retourneert True als die succesvol is gestart." #. D483F #: sf_session.xhp @@ -20912,7 +20912,7 @@ "par_id461582819697898\n" "help.text" msgid "command: The command to execute. This may be an executable file or a document which is registered with an application so that the system knows what application to launch for that document. The command must be expressed in the current SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "command: De uit te voeren opdracht . Dit kan een uitvoerbaar bestand zijn of een document dat bij een toepassing is geregistreerd, zodat het systeem weet welke toepassing voor dat document moet worden gestart. De opdracht moet worden uitgedrukt in de huidige notatie SF_FileSystem.FileNaming." #. b8hbC #: sf_session.xhp @@ -20921,7 +20921,7 @@ "par_id611582819697899\n" "help.text" msgid "parameters: A list of space separated parameters as a single string. The method does not validate the given parameters, but only passes them to the specified command." -msgstr "" +msgstr "parameters: Een lijst met door spaties gescheiden parameters als een enkele tekenreeks. De methode valideert de gegeven parameters niet, maar geeft ze alleen door aan de opgegeven opdracht." #. 2hTM7 #: sf_session.xhp @@ -20930,7 +20930,7 @@ "par_id131601030349755\n" "help.text" msgid "Send a message - with optional attachments - to recipients from the user's mail client. The message may be edited by the user before sending or, alternatively, be sent immediately." -msgstr "" +msgstr "Stuur een bericht - met optionele bijlagen - naar ontvangers vanuit de e-mailclient van de gebruiker. Het bericht kan door de gebruiker worden bewerkt voordat het wordt verzonden of, als alternatief, onmiddellijk worden verzonden." #. FCn8e #: sf_session.xhp @@ -20939,7 +20939,7 @@ "par_id701601030349896\n" "help.text" msgid "recipient: An email address (the \"To\" recipient)." -msgstr "" +msgstr "recipient: Naar e-mailadres (de \"Aan\"-ontvanger)." #. BdMiD #: sf_session.xhp @@ -20948,7 +20948,7 @@ "par_id571601030349904\n" "help.text" msgid "cc: A comma-separated list of email addresses (the \"carbon copy\" recipients)." -msgstr "" +msgstr "cc: Een door komma's gescheiden lijst van e-mailadressen (de ontvangers onder \"Kopie\")." #. ADjaV #: sf_session.xhp @@ -20957,7 +20957,7 @@ "par_id961601031043346\n" "help.text" msgid "bcc: A comma-separated list of email addresses (the \"blind carbon copy\" recipients)." -msgstr "" +msgstr "bcc: Een door komma's gescheiden lijst van e-mailadressen (de ontvangers onder \"Blinde kopie\")." #. zAkWZ #: sf_session.xhp @@ -20966,7 +20966,7 @@ "par_id891601031050814\n" "help.text" msgid "subject: the header of the message." -msgstr "" +msgstr "subject: het onderwerp van het bericht." #. 69CFR #: sf_session.xhp @@ -20975,7 +20975,7 @@ "par_id191601031056673\n" "help.text" msgid "body: The contents of the message as an unformatted text." -msgstr "" +msgstr "body: De inhoud van het bericht als niet-opgemaakte tekst." #. McuEx #: sf_session.xhp @@ -20984,7 +20984,7 @@ "par_id511601031063269\n" "help.text" msgid "filenames: a comma-separated list of file names. Each file name must respect the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filenames: een door komma's gescheiden lijst met bestandsnamen. Elke bestandsnaam moet de notatie SF_FileSystem.FileNaming respecteren." #. h9Urq #: sf_session.xhp @@ -20993,7 +20993,7 @@ "par_id161601032784063\n" "help.text" msgid "editmessage: When True (default), the message is edited before being sent." -msgstr "" +msgstr "editmessage: Indien True (standaard), wordt het bericht bewerkt voordat het wordt verzonden." #. g7zLC #: sf_session.xhp @@ -21002,7 +21002,7 @@ "par_id111582816583005\n" "help.text" msgid "Modifies the PDF export settings defined in the PDF Options dialog, which can be accessed by choosing File - Export as - Export as PDF." -msgstr "" +msgstr "Wijzigt de PDF-exportinstellingen die zijn gedefinieerd in het dialoogvenster PDF-opties, dat toegankelijk is door Bestand - Exporteren als - Exporteren als PDF te kiezen." #. T2DkW #: sf_session.xhp @@ -21011,7 +21011,7 @@ "par_id181638385131806\n" "help.text" msgid "Calling this method changes the actual values set in the PDF Options dialog, which are used by the ExportAsPDF method from the Document service." -msgstr "" +msgstr "Door deze methode aan te roepen, worden de werkelijke waarden gewijzigd die zijn ingesteld in het dialoogvenster PDF-opties, die worden gebruikt door de methode ExportAsPDF van de service Document." #. FBrKg #: sf_session.xhp @@ -21020,7 +21020,7 @@ "par_id391638385313847\n" "help.text" msgid "This method returns True when successful." -msgstr "" +msgstr "Deze methode retourneert True indien succesvol." #. 9BqH3 #: sf_session.xhp @@ -21029,7 +21029,7 @@ "par_id751638383457321\n" "help.text" msgid "Read the PDF Export wiki page to learn more about all available options." -msgstr "" +msgstr "Lees de Wiki-pagina PDF Export voor meer informatie over alle beschikbare opties." #. JhhXU #: sf_session.xhp @@ -21038,7 +21038,7 @@ "par_id771582816585233\n" "help.text" msgid "pdfoptions: Dictionary object that defines the PDF export settings to be changed. Each key-value pair represents an export option and the value that will be set in the dialog." -msgstr "" +msgstr "pdfoptions: Dictionary object dat de PDF-exportinstellingen definieert die moeten worden gewijzigd. Elk sleutel/waarde-paar vertegenwoordigt een exportoptie en de waarde die in het dialoogvenster wordt ingesteld." #. 8DKZK #: sf_session.xhp @@ -21047,7 +21047,7 @@ "par_id141638386087986\n" "help.text" msgid "The following example changes the maximum image resolution to 150 dpi and exports the current document as a PDF file." -msgstr "" +msgstr "In het volgende voorbeeld wordt de maximale afbeeldingsresolutie gewijzigd in 150 dpi en wordt het huidige document geëxporteerd als een PDF-bestand." #. HtzHP #: sf_session.xhp @@ -21056,7 +21056,7 @@ "par_id321587478024997\n" "help.text" msgid "Returns a list of the methods callable from an UNO object. The list is a zero-based array of strings and may be empty." -msgstr "" +msgstr "Retourneert een lijst met de methoden die kunnen worden aangeroepen vanuit een UNO-object. De lijst is een op nul gebaseerde reeks tekenreeksen en kan leeg zijn." #. DX8qb #: sf_session.xhp @@ -21065,7 +21065,7 @@ "par_id251587478024311\n" "help.text" msgid "unoobject: The object to inspect." -msgstr "" +msgstr "unoobject: Het te inspecteren object." #. sL6Ri #: sf_session.xhp @@ -21074,7 +21074,7 @@ "par_id141587478343306\n" "help.text" msgid "Returns a list of the properties of an UNO object. The list is a zero-based array of strings and may be empty." -msgstr "" +msgstr "Retourneert een lijst met de eigenschappen van een UNO-object. De lijst is een op nul gebaseerde reeks tekenreeksen en kan leeg zijn." #. CFZRP #: sf_session.xhp @@ -21083,7 +21083,7 @@ "par_id241587478343323\n" "help.text" msgid "unoobject: The object to inspect." -msgstr "" +msgstr "unoobject: Het te inspecteren object." #. Cm4eK #: sf_session.xhp @@ -21092,7 +21092,7 @@ "par_id371582820251347\n" "help.text" msgid "Identify the type of a UNO object as a string." -msgstr "" +msgstr "Identificeer het type van een UNO-object als een tekenreeks." #. Cs3VC #: sf_session.xhp @@ -21101,7 +21101,7 @@ "par_id921582820251349\n" "help.text" msgid "unoobject: The object to identify." -msgstr "" +msgstr "unoobject: Het te identificeren object." #. UAy4i #: sf_session.xhp @@ -21110,7 +21110,7 @@ "par_id341582821057373\n" "help.text" msgid "Get some web content from a URI." -msgstr "" +msgstr "Haal wat webinhoud op uit een URI." #. BU5XR #: sf_session.xhp @@ -21119,7 +21119,7 @@ "par_id771582821057374\n" "help.text" msgid "uri: URI address of the web service." -msgstr "" +msgstr "uri: URI-adres van de webservice." #. gn6AM #: sf_string.xhp @@ -21128,7 +21128,7 @@ "tit\n" "help.text" msgid "ScriptForge.String service (SF_String)" -msgstr "" +msgstr "ScriptForge.String service (SF_String)" #. ZhvDP #: sf_string.xhp @@ -21137,7 +21137,7 @@ "hd_id521580038927003\n" "help.text" msgid "ScriptForge.String service" -msgstr "" +msgstr "ScriptForge.String service" #. yaisH #: sf_string.xhp @@ -21146,7 +21146,7 @@ "par_id351579602570526\n" "help.text" msgid "The String service provides a collection of methods for string processing. These methods can be used to:" -msgstr "" +msgstr "De service String service heeft een aantal methoden voor het werken met tekenreeksen. Deze methoden kunnen gebruikt worden om:" #. oNvbV #: sf_string.xhp @@ -21155,7 +21155,7 @@ "par_id611611952070366\n" "help.text" msgid "Validate the contents of strings" -msgstr "" +msgstr "De inhoud van tekenreeksen te valideren" #. UmFAv #: sf_string.xhp @@ -21164,7 +21164,7 @@ "par_id611611952070376\n" "help.text" msgid "Format strings by trimming, justifying or wrapping their contents" -msgstr "" +msgstr "De tekenreeks verbeteren door het verwijderen van spaties, het uitvullen of teruglopen van tekst" #. EZKAi #: sf_string.xhp @@ -21173,7 +21173,7 @@ "par_id611611952070367\n" "help.text" msgid "Use regular expressions to search and replace substrings" -msgstr "" +msgstr "Met reguliere expressies naar teksten zoeken en die vervangen" #. D2qPU #: sf_string.xhp @@ -21182,7 +21182,7 @@ "par_id611611952070368\n" "help.text" msgid "Apply hash algorithms on strings, etc." -msgstr "" +msgstr "Hash algoritmes toepassen, enz." #. Nd4es #: sf_string.xhp @@ -21191,7 +21191,7 @@ "hd_id961579603699855\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definities" #. dQjPv #: sf_string.xhp @@ -21200,7 +21200,7 @@ "hd_id441579603838777\n" "help.text" msgid "Line breaks" -msgstr "" +msgstr "Regeleinden" #. ePyj2 #: sf_string.xhp @@ -21209,7 +21209,7 @@ "par_id791611946942340\n" "help.text" msgid "The String service recognizes the following line breaks:" -msgstr "" +msgstr "De service String herkent de volgende regeleinden:" #. o2TiZ #: sf_string.xhp @@ -21218,7 +21218,7 @@ "par_id151611947117831\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolische naam" #. fEbm9 #: sf_string.xhp @@ -21227,7 +21227,7 @@ "par_id721611947117831\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-code" #. yqVHd #: sf_string.xhp @@ -21236,7 +21236,7 @@ "par_id761611947117831\n" "help.text" msgid "Line feed
    Vertical tab
    Carriage return
    Line feed + Carriage return
    File separator
    Group separator
    Record separator
    Next line
    Line separator
    Paragraph separator" -msgstr "" +msgstr "Line feed
    Verticale tab
    Carriage return
    Line feed + Carriage return
    Bestand scheidingsteken
    Groep scheidingsteken
    Record scheidingsteken
    Volgende regel
    Regel scheidingsteken
    Paragraaf scheidingsteken" #. WCvgW #: sf_string.xhp @@ -21245,7 +21245,7 @@ "hd_id161579604225813\n" "help.text" msgid "Whitespaces" -msgstr "" +msgstr "Witruimtes" #. mFfbq #: sf_string.xhp @@ -21254,7 +21254,7 @@ "par_id401611948279056\n" "help.text" msgid "The String service recognizes the following whitespaces:" -msgstr "" +msgstr "De service String herkent de volgende witruimtes:" #. U3GSy #: sf_string.xhp @@ -21263,7 +21263,7 @@ "par_id151611947117893\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolische naam" #. ZsSFF #: sf_string.xhp @@ -21272,7 +21272,7 @@ "par_id721611947117855\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-code" #. TXAFP #: sf_string.xhp @@ -21281,7 +21281,7 @@ "par_id761611947117835\n" "help.text" msgid "Space
    Horizontal tab
    Line feed
    Vertical tab
    Form feed
    Carriage return
    Next line
    No-break space
    Line separator
    Paragraph separator" -msgstr "" +msgstr "Spatie
    Horizontale tab
    Line feed
    Verticale tab
    Form feed
    Carriage return
    Volgende regel
    Harde spatie
    Regel scheidingsteken
    Paragraaf scheidingsteken" #. UPByW #: sf_string.xhp @@ -21290,7 +21290,7 @@ "hd_id191580480825160\n" "help.text" msgid "Escape sequences" -msgstr "" +msgstr "Escape-reeksen" #. JD6CK #: sf_string.xhp @@ -21299,7 +21299,7 @@ "par_id971611949145057\n" "help.text" msgid "Below is a list of escape sequences that can be used in strings." -msgstr "" +msgstr "De volgende escape-reeksen kunnen in tekenreeksen worden gebruikt:" #. D4DjE #: sf_string.xhp @@ -21308,7 +21308,7 @@ "par_id151611947117287\n" "help.text" msgid "Escape Sequence" -msgstr "" +msgstr "Escape-reeks" #. xzDai #: sf_string.xhp @@ -21317,7 +21317,7 @@ "par_id721611947117732\n" "help.text" msgid "Symbolic name" -msgstr "" +msgstr "Symbolische naam" #. rrxV4 #: sf_string.xhp @@ -21326,7 +21326,7 @@ "par_id721611947117144\n" "help.text" msgid "ASCII number" -msgstr "" +msgstr "ASCII-code" #. fS24a #: sf_string.xhp @@ -21335,7 +21335,7 @@ "par_id761611947119834\n" "help.text" msgid "Line feed
    Carriage return
    Horizontal tab" -msgstr "" +msgstr "Line feed
    Carriage return
    Horizontale tab" #. wAbkt #: sf_string.xhp @@ -21344,7 +21344,7 @@ "par_id251611949474763\n" "help.text" msgid "To have the escape sequence \"\\n\" interpreted as an actual string, simply use \"\\\\n\" instead of \"\\\" & Chr(10)." -msgstr "" +msgstr "Om de escape-reeks \"\\n\" als deel van een tekenreeks te gebruiken, gebruik \"\\\\n\" en niet \"\\\" & Chr(10)." #. AYQbH #: sf_string.xhp @@ -21353,7 +21353,7 @@ "hd_id771579606799550\n" "help.text" msgid "Non-printable characters:" -msgstr "" +msgstr "Niet-afdrukbare tekens:" #. WXEDi #: sf_string.xhp @@ -21362,7 +21362,7 @@ "par_id531579606877342\n" "help.text" msgid "Characters defined in the Unicode Character Database as “Other” or “Separator” are considered as non-printable characters." -msgstr "" +msgstr "Niet-afdrukbare tekens zijn bijvoorbeeld de in de Unicode Character Database gedefinieerde “Other” en “Separator”." #. EsBdD #: sf_string.xhp @@ -21371,7 +21371,7 @@ "par_id221611949584320\n" "help.text" msgid "Control characters (ascii code <= 0x1F) are also considered as non-printable." -msgstr "" +msgstr "Ook besturingstekens (ASCII-code <= 0x1F) worden als niet-afdrukbare tekens beschouwd." #. GfNfK #: sf_string.xhp @@ -21380,7 +21380,7 @@ "hd_id661579604944268\n" "help.text" msgid "Quotes inside strings:" -msgstr "" +msgstr "Aanhalingstekens in tekenreeksen:" #. 6KLF9 #: sf_string.xhp @@ -21389,7 +21389,7 @@ "par_id551579605035332\n" "help.text" msgid "To add quotes in strings use \\' (single quote) or \\\" (double quote). For example:" -msgstr "" +msgstr "Om een aanhalingsteken in een tekenreeks te gebruiken, gebruik een \\' (enkel aanhalingsteken) of \\\" (dubbel aanhalingsteken). Voorbeeld:" #. BKoHN #: sf_string.xhp @@ -21398,7 +21398,7 @@ "par_id201611949691285\n" "help.text" msgid "The string [str\\'i\\'ng] is interpreted as [str'i'ng]" -msgstr "" +msgstr "De tekenreeks [str\\'i\\'ng] wordt geïnterpreteerd als [str'i'ng]" #. eRosR #: sf_string.xhp @@ -21407,7 +21407,7 @@ "par_id201611949691323\n" "help.text" msgid "The string [str\\\"i\\\"ng] is interpreted as [str\"i\"ng]" -msgstr "" +msgstr "De tekenreeks [str\\\"'i\\\"ng] wordt geïnterpreteerd als [str\"i\"ng]" #. FtzhT #: sf_string.xhp @@ -21416,7 +21416,7 @@ "hd_id201586594659135\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. 4WFve #: sf_string.xhp @@ -21425,7 +21425,7 @@ "par_id141609955500101\n" "help.text" msgid "Before using the ScriptForge.String service the ScriptForge library needs to be loaded using:" -msgstr "" +msgstr "Voordat de service ScriptForge.String gebruikt kan worden moet de ScriptForge bibliotheek worden geladen met:" #. znLHV #: sf_string.xhp @@ -21434,7 +21434,7 @@ "par_id271627158844922\n" "help.text" msgid "Loading the library will create the SF_String object that can be used to call the methods in the String service." -msgstr "" +msgstr "Door het laden van de bibliotheek wordt een object SF_String aangemaakt dat gebruikt kan worden voor het aanroepen van de methoden van de service String." #. e2Gty #: sf_string.xhp @@ -21443,7 +21443,7 @@ "par_id63158659509728\n" "help.text" msgid "The following code snippets show the three ways to call methods from the String service (the Capitalize method is used as an example):" -msgstr "" +msgstr "De volgende stukjes code tonen manieren om de methoden in de service String aan te roepen (de methode Capitalize dient als voorbeeld):" #. UE3DL #: sf_string.xhp @@ -21452,7 +21452,7 @@ "par_id761627158463235\n" "help.text" msgid "The code snippet below illustrates how to invoke methods from the String service in Python scripts. The IsIPv4 method is used as an example." -msgstr "" +msgstr "Het volgende stukje code toont aan hoe u in Python-scripts de methoden in de service String aan kunt roepen (de methode IsIPv4 dient als voorbeeld):" #. GfEcK #: sf_string.xhp @@ -21461,7 +21461,7 @@ "hd_id651584978211886\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. qKhL4 #: sf_string.xhp @@ -21470,7 +21470,7 @@ "par_id241611950267068\n" "help.text" msgid "The SF_String object provides the following properties for Basic scripts:" -msgstr "" +msgstr "Het object SF_String heeft de volgende eigenschappen:" #. FDjPb #: sf_string.xhp @@ -21479,7 +21479,7 @@ "par_id271584978211792\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #. HGYbF #: sf_string.xhp @@ -21488,7 +21488,7 @@ "par_id241584978211550\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. 5qXzL #: sf_string.xhp @@ -21497,7 +21497,7 @@ "par_id621584978211403\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. 6DG3u #: sf_string.xhp @@ -21506,7 +21506,7 @@ "par_id71584978715562\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YJA6w #: sf_string.xhp @@ -21515,7 +21515,7 @@ "par_id581584978715701\n" "help.text" msgid "Carriage return: Chr(13)" -msgstr "" +msgstr "Carriage return: Chr(13)" #. NCbTs #: sf_string.xhp @@ -21524,7 +21524,7 @@ "par_id211584978211383\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. xht7K #: sf_string.xhp @@ -21533,7 +21533,7 @@ "par_id691584978211774\n" "help.text" msgid "Carriage return + Linefeed: Chr(13) & Chr(10)" -msgstr "" +msgstr "Carriage return + Linefeed: Chr(13) + Chr(10)" #. ennLs #: sf_string.xhp @@ -21542,7 +21542,7 @@ "par_id671584978666689\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. pdykp #: sf_string.xhp @@ -21551,7 +21551,7 @@ "par_id951584978666296\n" "help.text" msgid "Linefeed: Chr(10)" -msgstr "" +msgstr "Line feed: Chr(10)" #. TTF6v #: sf_string.xhp @@ -21560,7 +21560,7 @@ "par_id421584978666327\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 9djV3 #: sf_string.xhp @@ -21569,7 +21569,7 @@ "par_id901584978666158\n" "help.text" msgid "Carriage return + Linefeed, which can be
    1) Chr(13) & Chr(10) or
    2) Linefeed: Chr(10)
    depending on the operating system." -msgstr "" +msgstr "Carriage return + Line feed, kan zijn
    1) Chr(13) Chr(10) of
    2) Line feed: Chr(10)
    afhankelijk van het besturingssysteem." #. EMV7g #: sf_string.xhp @@ -21578,7 +21578,7 @@ "par_id541584978666991\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. VrjGQ #: sf_string.xhp @@ -21587,7 +21587,7 @@ "par_id741584978666508\n" "help.text" msgid "Horizontal tabulation: Chr(9)" -msgstr "" +msgstr "Horizontale tabulatie: Chr(9)" #. Ee5CF #: sf_string.xhp @@ -21596,7 +21596,7 @@ "par_id461584978880380\n" "help.text" msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by SF_String.sfLF." -msgstr "" +msgstr "U kunt deze eigenschappen gebruiken om de overeenkomende tekens te herkennen of te vervangen in tekenreeksen. Voorbeeld, de Line feed kan vervangen worden door SF_String.sfLF." #. TFfR3 #: sf_string.xhp @@ -21605,7 +21605,7 @@ "par_id151611951803163\n" "help.text" msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution." -msgstr "" +msgstr "Het eerste argument van de meeste methoden is de tekenreeks. Deze wordt altijd bij referentie doorgegeven en wordt niet gewijzigd. Als de tekenreeks wordt gewijzigd dan wordt er een nieuwe tekenreeks geretourneerd, voorbeelden zijn de methoden Capitalize en Escape." #. PYcny #: sf_string.xhp @@ -21614,7 +21614,7 @@ "par_id371627158142730\n" "help.text" msgid "Because Python has comprehensive built-in string support, most of the methods in the String service are available for Basic scripts only. The methods available for Basic and Python are: HashStr, IsADate, IsEmail, IsFileName, IsIBAN, IsIPv4, IsLike, IsSheetName, IsUrl, SplitNotQuoted and Wrap." -msgstr "" +msgstr "Omdat Python al een uitgebreide ondersteuning biedt voor het werken met tekenreeksen, zijn de meeste methoden in de service String alleen beschikbaar voor Basic-scripts. Voor beide beschikbaar zijn: HashStr, IsADate, IsEmail, IsFileName, IsIBAN, IsIPv4, IsLike, IsSheetName, IsUrl, SplitNotQuoted en Wrap." #. jaBZR #: sf_string.xhp @@ -21623,7 +21623,7 @@ "par_id271579683706571\n" "help.text" msgid "Capitalizes the first character from each word in the input string." -msgstr "" +msgstr "Maakt van elke eerste letter van elk woord in de tekenreeks een hoofdletter." #. ibgky #: sf_string.xhp @@ -21632,7 +21632,7 @@ "par_id941582304592013\n" "help.text" msgid "inputstr: The string to be capitalized." -msgstr "" +msgstr "inputstr: De tekenreeks die gewijzigd moet worden." #. DB982 #: sf_string.xhp @@ -21641,7 +21641,7 @@ "par_id891582384556756\n" "help.text" msgid "Counts the number of occurrences of a substring or a regular expression within a string." -msgstr "" +msgstr "Telt het aantal keren dat een deel van een tekenreeks of een reguliere expressie voorkomt in de tekenreeks." #. DxK5L #: sf_string.xhp @@ -21650,7 +21650,7 @@ "par_id571582384689863\n" "help.text" msgid "inputstr: The input string to be examined" -msgstr "" +msgstr "inputstr: De tekenreeks waarin gezocht moet worden." #. QUeur #: sf_string.xhp @@ -21659,7 +21659,7 @@ "par_id601582384696486\n" "help.text" msgid "substring: The substring or the regular expression to be used during search" -msgstr "" +msgstr "substring: De tekenreeks of reguliere expressie waarnaar gezocht moet worden" #. vGiqm #: sf_string.xhp @@ -21668,7 +21668,7 @@ "par_id451582384703719\n" "help.text" msgid "isregex: Use True if the substring is a regular expression (Default = False)" -msgstr "" +msgstr "isregex: Gebruik True als de tekenreeks waarnaar gezocht moet worden een reguliere expressie is (Standaard = False)" #. WiFme #: sf_string.xhp @@ -21686,7 +21686,7 @@ "bas_id371582384749769\n" "help.text" msgid "'Counts the occurrences of the substring \"or\" inside the input string (returns 2)" -msgstr "" +msgstr "'Telt het aantal keren dat \"or\" voorkomt in de tekenreeks (uitkomst 2)" #. XXCR4 #: sf_string.xhp @@ -21695,7 +21695,7 @@ "bas_id561582384801586\n" "help.text" msgid "'Counts the number of words with only lowercase letters (returns 7)" -msgstr "" +msgstr "'Telt het aantal woorden met alleen kleine letters (uitkomst 7)" #. aJNDg #: sf_string.xhp @@ -21704,7 +21704,7 @@ "par_id131612223767126\n" "help.text" msgid "To learn more about regular expressions, refer to the Python's documentation on Regular Expression Operations." -msgstr "" +msgstr "Raadpleeg de Python documentatie voor meer informatie over reguliere expressies." #. CCzMc #: sf_string.xhp @@ -21713,7 +21713,7 @@ "par_id581579687739629\n" "help.text" msgid "Returns True if a string ends with a specified substring." -msgstr "" +msgstr "Retourneert True als de tekenreeks eindigt met een bepaalde tekenreeks." #. cAmFW #: sf_string.xhp @@ -21722,7 +21722,7 @@ "par_id21612306392239\n" "help.text" msgid "The function returns False when either the string or the substring have a length = 0 or when the substring is longer than the string." -msgstr "" +msgstr "De functie retourneert False als een van beide tekenreeksen leeg is of wanneer ''substring'' langer is dan ''inputstr''." #. qk5nE #: sf_string.xhp @@ -21731,7 +21731,7 @@ "par_id191579861552201\n" "help.text" msgid "inputstr: The string to be tested." -msgstr "" +msgstr "inputstr: De te testen tekenreeks." #. ErigR #: sf_string.xhp @@ -21740,7 +21740,7 @@ "par_id211579861561473\n" "help.text" msgid "substring: The substring to be searched at the end of inputstr." -msgstr "" +msgstr "substring: De tekenreeks waarnaar gezocht moet worden, of die aan het einde van de inputstr staat." #. 4DKkW #: sf_string.xhp @@ -21776,7 +21776,7 @@ "par_id921585921441429\n" "help.text" msgid "Converts linebreaks and tabs contained in the input string to their equivalent escaped sequence (\\\\, \\n, \\r, \\t)." -msgstr "" +msgstr "Converteert regeleinden en tabs in een invoertekenreeks naar de overeenkomende escape-reeks (\\\\, \\n, \\r, \\t)." #. kBiBE #: sf_string.xhp @@ -21785,7 +21785,7 @@ "par_id9158592144110\n" "help.text" msgid "inputstr: The string to be converted." -msgstr "" +msgstr "inputstr: De te wijzigen tekenreeks." #. cpLKD #: sf_string.xhp @@ -21794,7 +21794,7 @@ "bas_id901585921441483\n" "help.text" msgid "'Returns the string \"abc\\n\\tdef\\\\n\"" -msgstr "" +msgstr "'Retourneert de tekenreeks \"abc\\n\\tdef\\\\n\"" #. ADN8M #: sf_string.xhp @@ -21803,7 +21803,7 @@ "par_id271579868053137\n" "help.text" msgid "Replaces Tab characters Chr(9) by space characters to replicate the behavior of tab stops." -msgstr "" +msgstr "Vervangt de Tab-tekens Chr(9) door spaties om het gedrag van tab-stops te kopiëren." #. Eb23Z #: sf_string.xhp @@ -21812,7 +21812,7 @@ "par_id951579868064344\n" "help.text" msgid "If a line break is found, a new line is started and the character counter is reset." -msgstr "" +msgstr "Als er een regeleinde is gevonden, beginnen op een nieuwe regel en de teller resetten." #. E73Ko #: sf_string.xhp @@ -21821,7 +21821,7 @@ "par_id231579868290408\n" "help.text" msgid "inputstr: The string to be expanded" -msgstr "" +msgstr "inputstr: De uit te breiden tekenreeks." #. 9dyYc #: sf_string.xhp @@ -21830,7 +21830,7 @@ "par_id281579868299807\n" "help.text" msgid "tabsize: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)" -msgstr "" +msgstr "tabsize: Deze parameter wordt gebruikt om het aantal Tab-stops te bepalen met de formule: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Standaard = 8)" #. GUoE8 #: sf_string.xhp @@ -21839,7 +21839,7 @@ "par_id161579874552729\n" "help.text" msgid "Replaces all non-printable characters in the input string by a given character." -msgstr "" +msgstr "Vervangt alle niet-afdrukbare tekens in de invoer door een bepaald teken." #. GpHwp #: sf_string.xhp @@ -21848,7 +21848,7 @@ "par_id431579874633865\n" "help.text" msgid "inputstr: The string to be searched" -msgstr "" +msgstr "inputstr: De te doorzoeken tekenreeks." #. GttDN #: sf_string.xhp @@ -21857,7 +21857,7 @@ "par_id31579874656437\n" "help.text" msgid "replacedby: Zero, one or more characters that will replace all non-printable characters in inputstr (Default = \"\")" -msgstr "" +msgstr "replacedby: Nul, een of meer tekens die alle niet-afdrukbare tekens gaan vervangen in de inputstr (Standaard = \"\")" #. W44TL #: sf_string.xhp @@ -21866,7 +21866,7 @@ "par_id1001579876228707\n" "help.text" msgid "Finds in a string a substring matching a given regular expression." -msgstr "" +msgstr "Vindt in een tekenreeks een tekenreeks die overeenkomt met een bepaalde reguliere expressie." #. aq28M #: sf_string.xhp @@ -21875,7 +21875,7 @@ "par_id131579876314120\n" "help.text" msgid "inputstr: The string to be searched" -msgstr "" +msgstr "inputstr: De te doorzoeken tekenreeks" #. hRrBB #: sf_string.xhp @@ -21884,7 +21884,7 @@ "par_id751579876371545\n" "help.text" msgid "regex: The regular expression" -msgstr "" +msgstr "regex: De reguliere expressie" #. y2Fqs #: sf_string.xhp @@ -21893,7 +21893,7 @@ "par_id881579876394584\n" "help.text" msgid "start: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of start will point to the first character of the found substring. If no matching substring is found, start will be set to 0." -msgstr "" +msgstr "start: De positie in de tekenreeks waar het zoeken moet beginnen. Deze parameter wordt bij referentie doorgegeven, na uitvoering bevat start de positie van het eerste teken van de gevonden tekenreeks. Indien er geen tekenreeks gevonden wordt, is de waarde van start na uitvoering 0." #. yZMDg #: sf_string.xhp @@ -21911,7 +21911,7 @@ "par_id841579876412287\n" "help.text" msgid "forward: Determines the direction of the search. If True, search moves forward. If False search moves backwards (Default = True)" -msgstr "" +msgstr "forward: Geeft de richting van het zoeken aan. True betekent dat van voren naar achteren wordt gezocht. False betekent dat van achteren naar voren wordt gezocht (Standaard is True)" #. SkaCi #: sf_string.xhp @@ -21920,7 +21920,7 @@ "par_id451612309155653\n" "help.text" msgid "At the first iteration, if forward = True, then start should be equal to 1, whereas if forward = False then start should be equal to Len(inputstr)" -msgstr "" +msgstr "Bij de eerste keer uitvoering, als forward = True, dan zou start 1 moeten zijn, als forward = False dan zou start gelijk moeten zijn aan Len(inputstr)" #. gv3oo #: sf_string.xhp @@ -21929,7 +21929,7 @@ "par_id221612309579001\n" "help.text" msgid "In the example above, the new value of lStart can be used to keep searching the same input string by setting the Start parameter to lStart + Len(result) at the next iteration." -msgstr "" +msgstr "In bovenstaand voorbeeld, de nieuwe waarde van lStart kan worden gebruikt om verder te zoeken op dezelfde tekenreeks in dezelfde tekenreeks door de waarde van Start parameter te verhogen met Len(result). Dit om geen overlappende tekenreeks te vinden." #. qAkN4 #: sf_string.xhp @@ -21938,7 +21938,7 @@ "par_id471601048983628\n" "help.text" msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more." -msgstr "" +msgstr "Hash-functies worden gebruikt in sommige cryptografische algoritmen, in digitale handtekeningen, berichtauthenticatiecodes, manipulatiedetectie, vingerafdrukken, checksums (berichtintegriteitscontrole), hashtabellen, wachtwoordopslag en nog veel meer." #. HupGD #: sf_string.xhp @@ -21947,7 +21947,7 @@ "par_id301601048983765\n" "help.text" msgid "The HashStr method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits." -msgstr "" +msgstr "De methode HashStr retourneert het resultaat van een hash-functie die is toegepast op een gegeven tekenreeks en met een gespecificeerd algoritme, als een tekenreeks van kleine hexadecimale cijfers." #. ZRZEF #: sf_string.xhp @@ -21956,7 +21956,7 @@ "par_id631601048983149\n" "help.text" msgid "The hash algorithms supported are: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512." -msgstr "" +msgstr "De ondersteunde hash-algoritmen zijn: MD5, SHA1, SHA224, SHA256, SHA384 en SHA512." #. yUmmb #: sf_string.xhp @@ -21965,7 +21965,7 @@ "par_id621601048983210\n" "help.text" msgid "inputstr: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes." -msgstr "" +msgstr "inputstr: De tekenreeks om te hashen. Het wordt verondersteld te zijn gecodeerd in UTF-8. Het hash-algoritme beschouwt de tekenreeks als een stroom van bytes." #. nuQRb #: sf_string.xhp @@ -21974,7 +21974,7 @@ "par_id941601048983822\n" "help.text" msgid "algorithm: One of the supported algorithms listed above, passed as a string." -msgstr "" +msgstr "algorithm: Een van de hierboven vermelde ondersteunde algoritmen, doorgegeven als een tekenreeks." #. TXGmB #: sf_string.xhp @@ -21983,7 +21983,7 @@ "par_id221579879516929\n" "help.text" msgid "Encodes the input string into the HTML character codes, replacing special characters by their & counterparts." -msgstr "" +msgstr "Codeert de invoerreeks in de HTML-tekencodes, waarbij speciale tekens worden vervangen door hun &-tegenhangers." #. YNfid #: sf_string.xhp @@ -21992,7 +21992,7 @@ "par_id341612351999692\n" "help.text" msgid "For example, the character é would be replaced by é or an equivalent numerical HTML code." -msgstr "" +msgstr "Het teken é zou bijvoorbeeld worden vervangen door é of een gelijkwaardige numerieke HTML-code." #. CGFQH #: sf_string.xhp @@ -22001,7 +22001,7 @@ "bas_id501579879570781\n" "help.text" msgid "inputstr: The string to encode." -msgstr "" +msgstr "inputstr: De te coderen tekenreeks." #. jpv97 #: sf_string.xhp @@ -22010,7 +22010,7 @@ "par_id171579880990533\n" "help.text" msgid "Returns True if the input string is a valid date according to a specified date format." -msgstr "" +msgstr "Retourneert True als de invoertekenreeks een geldige datum is volgens een opgegeven datumnotatie." #. tBGBH #: sf_string.xhp @@ -22019,7 +22019,7 @@ "par_id151579881091821\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False" -msgstr "" +msgstr "inputstr: De tekenreeks die moet worden gecontroleerd. Indien leeg, retourneert de methode False" #. nmTv3 #: sf_string.xhp @@ -22028,7 +22028,7 @@ "par_id991579881107670\n" "help.text" msgid "dateformat: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\"" -msgstr "" +msgstr "dateformat: De datumnotatie, als tekenreeks. Dit kan \"YYYY-MM-DD\" (standaard), \"DD-MM-YYYY\" of \"MM-DD-YYYY\" zijn" #. GvZLC #: sf_string.xhp @@ -22037,7 +22037,7 @@ "par_id291579881117126\n" "help.text" msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space." -msgstr "" +msgstr "Het streepje (-) mag worden vervangen door een punt (.), een schuine streep (/) of een spatie." #. yCA3T #: sf_string.xhp @@ -22046,7 +22046,7 @@ "par_id51579881125801\n" "help.text" msgid "If the format is invalid, the method returns False." -msgstr "" +msgstr "Als het opmaak ongeldig is, retourneert de methode False." #. qFmWW #: sf_string.xhp @@ -22055,7 +22055,7 @@ "par_id211612370427721\n" "help.text" msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the IsDate built-in function." -msgstr "" +msgstr "Deze methode controleert het formaat van de invoertekenreeks zonder kalenderspecifieke controles uit te voeren. Daarom test het de invoerreeks niet voor schrikkeljaren of maanden met 30 of 31 dagen. Raadpleeg daarvoor de ingebouwde functie IsDate." #. DJQFQ #: sf_string.xhp @@ -22064,7 +22064,7 @@ "par_id181612371147364\n" "help.text" msgid "The example below shows the difference between the methods IsADate (ScriptForge) and the IsDate (built-in) function." -msgstr "" +msgstr "Het onderstaande voorbeeld toont het verschil tussen de methoden IsADate (ScriptForge) en de functie IsDate (ingebouwd)." #. hAADi #: sf_string.xhp @@ -22073,7 +22073,7 @@ "par_id161579881600317\n" "help.text" msgid "Returns True if all characters in the string are alphabetic." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks alfabetisch zijn." #. Cpeo3 #: sf_string.xhp @@ -22082,7 +22082,7 @@ "par_id251579881615469\n" "help.text" msgid "Alphabetic characters are those characters defined in the Unicode Character Database as Letter." -msgstr "" +msgstr "Alfabetische tekens zijn de tekens die zijn gedefinieerd in de Unicode Character Database als Letter." #. a9rTa #: sf_string.xhp @@ -22091,7 +22091,7 @@ "par_id11579881691826\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. KaLGv #: sf_string.xhp @@ -22100,7 +22100,7 @@ "par_id421579883181382\n" "help.text" msgid "Returns True if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks alfabetisch zijn, cijfers of \"_\" (underscore). Het eerste teken mag geen cijfer zijn." #. BAEB4 #: sf_string.xhp @@ -22109,7 +22109,7 @@ "par_id31579884464101\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. qAZpA #: sf_string.xhp @@ -22118,7 +22118,7 @@ "par_id671580039484786\n" "help.text" msgid "Returns True if all characters in the string are Ascii characters." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks Ascii-tekens zijn." #. 3DNou #: sf_string.xhp @@ -22127,7 +22127,7 @@ "par_id791580039528838\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. iuPF4 #: sf_string.xhp @@ -22136,7 +22136,7 @@ "par_id861580044805749\n" "help.text" msgid "Returns True if all characters in the string are digits." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks cijfers zijn." #. yU7cc #: sf_string.xhp @@ -22145,7 +22145,7 @@ "par_id41580044873043\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. J8Ykx #: sf_string.xhp @@ -22154,7 +22154,7 @@ "par_id521580045221758\n" "help.text" msgid "Returns True if the string is a valid email address." -msgstr "" +msgstr "Retourneert True als de tekenreeks een geldig e-mailadres is." #. 8Pxsn #: sf_string.xhp @@ -22163,7 +22163,7 @@ "par_id841580045280071\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. R6MsU #: sf_string.xhp @@ -22172,7 +22172,7 @@ "par_id41580047039666\n" "help.text" msgid "Returns True if the string is a valid filename in a given operating system." -msgstr "" +msgstr "Retourneert True als de tekenreeks een geldige bestandsnaam is in een bepaald besturingssysteem." #. aQbRF #: sf_string.xhp @@ -22181,7 +22181,7 @@ "par_id801580047079938\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. jWMpJ #: sf_string.xhp @@ -22190,7 +22190,7 @@ "par_id781580047088954\n" "help.text" msgid "osname: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"." -msgstr "" +msgstr "osname: De naam van het besturingssysteem, als een tekenreeks. Dit kan \"WINDOWS\", \"LINUX\", \"MACOSX\" of \"SOLARIS\" zijn." #. GnrxA #: sf_string.xhp @@ -22199,7 +22199,7 @@ "par_id991612372824234\n" "help.text" msgid "The default value is the current operating system on which the script is running." -msgstr "" +msgstr "De standaardwaarde is het huidige besturingssysteem waarop het script wordt uitgevoerd." #. FPuAV #: sf_string.xhp @@ -22208,7 +22208,7 @@ "par_id911580047551929\n" "help.text" msgid "Returns True if all characters in the string are hexadecimal digits." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks hexadecimale cijfers zijn." #. hWqAh #: sf_string.xhp @@ -22217,7 +22217,7 @@ "par_id331580047594144\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. kEz4y #: sf_string.xhp @@ -22226,7 +22226,7 @@ "par_id521612377109554\n" "help.text" msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"." -msgstr "" +msgstr "De hexadecimale cijfers kunnen worden voorafgegaan door \"0x\" of \"&H\"." #. 3WKNf #: sf_string.xhp @@ -22235,7 +22235,7 @@ "par_id791584008420941\n" "help.text" msgid "Returns True if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive." -msgstr "" +msgstr "Retourneert True als de tekenreeks een geldig internationaal bankrekeningnummer (IBAN) is. De vergelijking is niet hoofdlettergevoelig." #. DnC6i #: sf_string.xhp @@ -22244,7 +22244,7 @@ "par_id951880048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. VgT3x #: sf_string.xhp @@ -22253,7 +22253,7 @@ "par_id631619526542367\n" "help.text" msgid "True if the string contains a valid IBAN number." -msgstr "" +msgstr "True als de tekenreeks een geldig IBAN-nummer bevat." #. CcTNk #: sf_string.xhp @@ -22262,7 +22262,7 @@ "par_id791580048420941\n" "help.text" msgid "Returns True if the string is a valid IP(v4) address." -msgstr "" +msgstr "Retourneert True als de tekenreeks een geldig IP(v4)-adres is." #. rMpXB #: sf_string.xhp @@ -22271,7 +22271,7 @@ "par_id981580048466565\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. yWHew #: sf_string.xhp @@ -22280,7 +22280,7 @@ "par_id831580049093038\n" "help.text" msgid "Returns True if the whole input string matches a given pattern containing wildcards." -msgstr "" +msgstr "Retourneert True als de hele invoertekenreeks overeenkomt met een bepaald patroon dat jokertekens bevat." #. PzigS #: sf_string.xhp @@ -22289,7 +22289,7 @@ "par_id141580049142548\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. XEBzh #: sf_string.xhp @@ -22298,7 +22298,7 @@ "par_id31580049154551\n" "help.text" msgid "pattern: The pattern as a string. Wildcards are:" -msgstr "" +msgstr "pattern: Het patroon als een tekenreeks. Jokertekens zijn:" #. ZCzDP #: sf_string.xhp @@ -22307,7 +22307,7 @@ "par_id181612441703306\n" "help.text" msgid "\"?\" represents any single character;" -msgstr "" +msgstr "\"?\" staat voor één willekeurig teken" #. CFPcW #: sf_string.xhp @@ -22316,7 +22316,7 @@ "par_id861612377611438\n" "help.text" msgid "\"*\" represents zero, one, or multiple characters." -msgstr "" +msgstr "\"*\" staat voor geen, één of meer tekens" #. eLYBF #: sf_string.xhp @@ -22334,7 +22334,7 @@ "par_id581580050048679\n" "help.text" msgid "Returns True if all characters in the string are in lowercase. Non-alphabetic characters are ignored." -msgstr "" +msgstr "Retourneert True als alle alfabetische tekens in de tekenreeks kleine letters zijn." #. nWGvX #: sf_string.xhp @@ -22343,7 +22343,7 @@ "par_id751580050122938\n" "help.text" msgid "InputStr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "InputStr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. BzD3y #: sf_string.xhp @@ -22352,7 +22352,7 @@ "par_id231580051650488\n" "help.text" msgid "Returns True if all characters in the string are printable." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks afdrukbaar zijn." #. gUhut #: sf_string.xhp @@ -22361,7 +22361,7 @@ "par_id721580051706431\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. HYBp5 #: sf_string.xhp @@ -22370,7 +22370,7 @@ "par_id281580052400960\n" "help.text" msgid "Returns True if the whole input string matches a given regular expression." -msgstr "" +msgstr "Retourneert True als de hele invoertekenreeks overeenkomt met een bepaalde reguliere expressie." #. ZuBxC #: sf_string.xhp @@ -22379,7 +22379,7 @@ "par_id161580052454770\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. mi4mi #: sf_string.xhp @@ -22388,7 +22388,7 @@ "par_id581580052467973\n" "help.text" msgid "regex: The regular expression. If empty, the method returns False." -msgstr "" +msgstr "regex: De reguliere expressie. Indien leeg, retourneert de methode False." #. vmqZM #: sf_string.xhp @@ -22406,7 +22406,7 @@ "par_id1001589460240467\n" "help.text" msgid "Returns True if the input string is a valid Calc sheet name." -msgstr "" +msgstr "Retourneert True als de invoertekenreeks een geldige Calc-bladnaam is." #. xPFLm #: sf_string.xhp @@ -22415,7 +22415,7 @@ "par_id671589460240552\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. uE5gz #: sf_string.xhp @@ -22424,7 +22424,7 @@ "par_id551612442002823\n" "help.text" msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character." -msgstr "" +msgstr "Een bladnaam mag de tekens [ ] * ? : / \\ of het teken ' (apostrof) als eerste of laatste teken." #. ALdgg #: sf_string.xhp @@ -22433,7 +22433,7 @@ "par_id371580293093655\n" "help.text" msgid "Returns True if the first character of every word is in uppercase and the other characters are in lowercase." -msgstr "" +msgstr "Retourneert True als het eerste teken van elk woord in hoofdletters is en de andere tekens in kleine letters." #. uVF9U #: sf_string.xhp @@ -22442,7 +22442,7 @@ "par_id471580293142283\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. 7Ryzp #: sf_string.xhp @@ -22451,7 +22451,7 @@ "par_id801580128672004\n" "help.text" msgid "Returns True if all characters in the string are in uppercase. Non alphabetic characters are ignored." -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks in hoofdletters zijn. Niet-alfabetische tekens worden genegeerd." #. HFDCW #: sf_string.xhp @@ -22460,7 +22460,7 @@ "par_id391580128736809\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. BTRpG #: sf_string.xhp @@ -22469,7 +22469,7 @@ "par_id531580132067813\n" "help.text" msgid "Returns True if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported." -msgstr "" +msgstr "Retourneert True als de tekenreeks een geldig absoluut URL-adres (Uniform Resource Locator) is. Alleen de protocollen http, https en ftp worden ondersteund." #. HrFqG #: sf_string.xhp @@ -22478,7 +22478,7 @@ "par_id321580132113593\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. wBAqG #: sf_string.xhp @@ -22487,7 +22487,7 @@ "par_id41580132491698\n" "help.text" msgid "Returns True if all characters in the string are whitespaces" -msgstr "" +msgstr "Retourneert True als alle tekens in de tekenreeks spaties zijn." #. JDD85 #: sf_string.xhp @@ -22496,7 +22496,7 @@ "par_id801580132535511\n" "help.text" msgid "inputstr: The string to be checked. If empty, the method returns False." -msgstr "" +msgstr "inputstr: De te controleren tekenreeks. Indien leeg, de methode retourneert False." #. 7EBbA #: sf_string.xhp @@ -22505,7 +22505,7 @@ "par_id891580133307100\n" "help.text" msgid "Returns the input string center-justified." -msgstr "" +msgstr "Retourneert de invoertekenreeks gecentreerd uitgevuld." #. TLmnE #: sf_string.xhp @@ -22514,7 +22514,7 @@ "par_id571612380829021\n" "help.text" msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total length with the character padding." -msgstr "" +msgstr "De voorloop- en volgspaties worden verwijderd en de overige tekens worden links en rechts aangevuld tot een opgegeven totale length met het teken padding." #. 4uuQT #: sf_string.xhp @@ -22523,7 +22523,7 @@ "par_id911580133391827\n" "help.text" msgid "inputstr: The string to be center-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: De tekenreeks die in het midden moet worden uitgelijnd. Indien leeg, retourneert de methode een lege tekenreeks." #. jHJNT #: sf_string.xhp @@ -22532,7 +22532,7 @@ "par_id671580133694946\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: De lengte van de resulterende tekenreeks (standaard is de lengte van de invoertekenreeks)." #. A3qof #: sf_string.xhp @@ -22541,7 +22541,7 @@ "par_id511612381090109\n" "help.text" msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Als de opgegeven lengte korter is dan de in het midden uitgevulde invoertekenreeks, wordt de geretourneerde tekenreeks afgekapt." #. fys4j #: sf_string.xhp @@ -22550,7 +22550,7 @@ "par_id101580133705268\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Het enkele teken dat als opvulling moet worden gebruikt (standaard is de Ascii-spatie \" \")." #. 4zk3p #: sf_string.xhp @@ -22559,7 +22559,7 @@ "par_id911580135466348\n" "help.text" msgid "Returns the input string left-justified." -msgstr "" +msgstr "Retourneert de invoerreeks links uitgelijnd." #. 9KeCE #: sf_string.xhp @@ -22568,7 +22568,7 @@ "par_id431612381917641\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total length with the character padding." -msgstr "" +msgstr "De voorste spaties worden verwijderd en de overige tekens worden rechts aangevuld tot een opgegeven totale length met het teken padding." #. UQXSM #: sf_string.xhp @@ -22577,7 +22577,7 @@ "par_id281580135523448\n" "help.text" msgid "inputstr: The string to be left-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: De tekenreeks die links moet worden uitgelijnd. Indien leeg, retourneert de methode een lege tekenreeks." #. EAwAa #: sf_string.xhp @@ -22586,7 +22586,7 @@ "par_id431580135534910\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: De lengte van de resulterende tekenreeks (standaard = de lengte van de invoertekenreeks)." #. ntKXx #: sf_string.xhp @@ -22595,7 +22595,7 @@ "par_id161612381664182\n" "help.text" msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Als de opgegeven lengte korter is dan de links uitgelijnde invoertekenreeks, wordt de geretourneerde tekenreeks afgekapt." #. wBnmv #: sf_string.xhp @@ -22604,7 +22604,7 @@ "par_id221580135568475\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Het enkele teken dat als opvulling moet worden gebruikt (standaard = de Ascii-spatie \" \")." #. TTokb #: sf_string.xhp @@ -22613,7 +22613,7 @@ "par_id821580136091225\n" "help.text" msgid "Returns the input string right-justified." -msgstr "" +msgstr "Retourneert de invoerreeks rechts uitgelijnd." #. 4fG7c #: sf_string.xhp @@ -22622,7 +22622,7 @@ "par_id771612382000293\n" "help.text" msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total length with the character padding." -msgstr "" +msgstr "De voorste spaties worden verwijderd en de overige tekens worden aan de linkerkant aangevuld tot een opgegeven totale length met het teken padding." #. KxskT #: sf_string.xhp @@ -22631,7 +22631,7 @@ "par_id201580136154170\n" "help.text" msgid "inputstr: The string to be right-justified. If empty, the method returns an empty string." -msgstr "" +msgstr "inputstr: De tekenreeks die rechts moet worden uitgelijnd. Indien leeg, retourneert de methode een lege tekenreeks." #. FboQc #: sf_string.xhp @@ -22640,7 +22640,7 @@ "par_id71580136164632\n" "help.text" msgid "length: The length of the resulting string (default = the length of the input string)." -msgstr "" +msgstr "length: De lengte van de resulterende tekenreeks (standaard = de lengte van de invoertekenreeks)." #. dshKE #: sf_string.xhp @@ -22649,7 +22649,7 @@ "par_id191612381732163\n" "help.text" msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated." -msgstr "" +msgstr "Als de opgegeven lengte korter is dan de rechts uitgelijnde invoertekenreeks, wordt de geretourneerde tekenreeks afgekapt." #. LtcVG #: sf_string.xhp @@ -22658,7 +22658,7 @@ "par_id751580136200680\n" "help.text" msgid "padding: The single character to be used as padding (default = the Ascii space \" \")." -msgstr "" +msgstr "padding: Het enkele teken dat als opvulling moet worden gebruikt (standaard = de Ascii-spatie \" \")." #. Wn55u #: sf_string.xhp @@ -22667,7 +22667,7 @@ "par_id251580136888958\n" "help.text" msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes." -msgstr "" +msgstr "Retourneert de invoertekenreeks tussen enkele of dubbele aanhalingstekens. Bestaande aanhalingstekens blijven ongewijzigd, inclusief aanhalingstekens vooraan en/of achteraan." #. YBvt4 #: sf_string.xhp @@ -22676,7 +22676,7 @@ "par_id811580136944674\n" "help.text" msgid "inputstr: The string to quote." -msgstr "" +msgstr "inputstr: De te behandelen tekenreeks." #. GynWV #: sf_string.xhp @@ -22685,7 +22685,7 @@ "par_id581599129397412\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar: Ofwel het enkele (') of dubbele (\") aanhalingsteken (standaard)." #. fY3PC #: sf_string.xhp @@ -22694,7 +22694,7 @@ "par_id911612382537087\n" "help.text" msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes." -msgstr "" +msgstr "Deze methode kan handig zijn bij het voorbereiden van een tekenreeksveld dat moet worden opgeslagen in een csv-achtig bestand, waarvoor tekstwaarden moeten worden ingesloten tussen enkele of dubbele aanhalingstekens." #. 8Rr4M #: sf_string.xhp @@ -22703,7 +22703,7 @@ "par_id951580139124650\n" "help.text" msgid "Replaces all occurrences of the characters specified in the Before parameter by the corresponding characters specified in After." -msgstr "" +msgstr "Vervangt alle tekens die zijn opgegeven in de parameter Before door de overeenkomstige tekens die zijn opgegeven in After." #. 5hn2y #: sf_string.xhp @@ -22712,7 +22712,7 @@ "par_id1001612384040018\n" "help.text" msgid "If the length of Before is greater than the length of After, the residual characters in Before are replaced by the last character in After." -msgstr "" +msgstr "Als de lengte van Before groter is dan de lengte van After, worden de resterende tekens in Before vervangen door het laatste teken in After." #. DD2CL #: sf_string.xhp @@ -22721,7 +22721,7 @@ "par_id11580139160633\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: De invoertekenreeks waarop vervangingen zullen plaatsvinden." #. DvaRE #: sf_string.xhp @@ -22730,7 +22730,7 @@ "par_id111580139169795\n" "help.text" msgid "before: A string with the characters that will be searched in the input string for replacement." -msgstr "" +msgstr "before: Een tekenreeks met de tekens die in de invoertekenreeks worden gezocht voor vervanging." #. N46b3 #: sf_string.xhp @@ -22739,7 +22739,7 @@ "par_id851580139182113\n" "help.text" msgid "after: A string with the new characters that will replace those defined in before." -msgstr "" +msgstr "after: Een tekenreeks met de nieuwe tekens die de tekens vervangen die zijn gedefinieerd in before." #. CDuCC #: sf_string.xhp @@ -22748,7 +22748,7 @@ "bas_id921580139218457\n" "help.text" msgid "' Replaces accented characters" -msgstr "" +msgstr "' Vervangt tekens met accenten" #. 5ww5A #: sf_string.xhp @@ -22757,7 +22757,7 @@ "par_id151612442904499\n" "help.text" msgid "The SF_String service provides useful public constants for the Latin character sets, as shown in the example below:" -msgstr "" +msgstr "De service SF_String biedt nuttige openbare constanten voor de Latijnse tekensets, zoals in het onderstaande voorbeeld:" #. 9SPjv #: sf_string.xhp @@ -22766,7 +22766,7 @@ "par_id671580140272818\n" "help.text" msgid "Replaces all occurrences of a given regular expression by a new string." -msgstr "" +msgstr "Vervangt alle exemplaren van een bepaalde reguliere expressie door een nieuwe tekenreeks." #. ujCyu #: sf_string.xhp @@ -22775,7 +22775,7 @@ "par_id471580140311626\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: De invoertekenreeks waarop vervangingen plaatsvinden." #. o2DS2 #: sf_string.xhp @@ -22784,7 +22784,7 @@ "par_id651580140322666\n" "help.text" msgid "regex: The regular expression." -msgstr "" +msgstr "regex: De reguliere expressie." #. itEEd #: sf_string.xhp @@ -22793,7 +22793,7 @@ "par_id891580140334754\n" "help.text" msgid "newstr: The replacing string." -msgstr "" +msgstr "newstr: De vervangende tekenreeks." #. gJRAr #: sf_string.xhp @@ -22811,7 +22811,7 @@ "bas_id961612384647003\n" "help.text" msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")" -msgstr "" +msgstr "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (elke kleine letter wordt vervangen door \"x\")" #. rkMsv #: sf_string.xhp @@ -22820,7 +22820,7 @@ "bas_id751612384623936\n" "help.text" msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")" -msgstr "" +msgstr "' \"x x x x x, x x x.\" (elke woord wordt vervangen door \"x\")" #. 2Gd5C #: sf_string.xhp @@ -22829,7 +22829,7 @@ "par_id51580146471894\n" "help.text" msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings." -msgstr "" +msgstr "Vervangt in een tekenreeks enkele of alle exemplaren van een matrix tekenreeksen door een reeks nieuwe tekenreeksen." #. SDpot #: sf_string.xhp @@ -22838,7 +22838,7 @@ "par_id831580146504326\n" "help.text" msgid "inputstr: The input string on which replacements will occur." -msgstr "" +msgstr "inputstr: De invoerreeks waarop vervangingen zullen plaatsvinden." #. UfuEm #: sf_string.xhp @@ -22847,7 +22847,7 @@ "par_id411580146514927\n" "help.text" msgid "oldstr: A single string or an array of strings. Zero-length strings are ignored." -msgstr "" +msgstr "oldstr: Een enkele tekenreeks of een matrix met tekenreeksen. Tekenreeksen met een lengte van nul worden genegeerd." #. Ukr3F #: sf_string.xhp @@ -22856,7 +22856,7 @@ "par_id591580146532966\n" "help.text" msgid "newstr: The replacing string or the array of replacing strings." -msgstr "" +msgstr "newstr: De vervangende tekenreeks of de matrix met vervangende tekenreeksen." #. 7BQ7F #: sf_string.xhp @@ -22865,7 +22865,7 @@ "par_id611612384873347\n" "help.text" msgid "If oldstr is an array, each occurrence of any of the items in oldstr is replaced by newstr." -msgstr "" +msgstr "Als oldstr een matrix is, wordt elk voorkomen van een van de items in oldstr vervangen door newstr." #. AfRz6 #: sf_string.xhp @@ -22874,7 +22874,7 @@ "par_id611612384880820\n" "help.text" msgid "If oldstr and newstr are arrays, replacements occur one by one up to the UBound(newstr)." -msgstr "" +msgstr "Als oldstr en newstr matrixen zijn, vinden vervangingen één voor één plaats tot aan de UBound(newstr)." #. E39aH #: sf_string.xhp @@ -22883,7 +22883,7 @@ "par_id241612385058264\n" "help.text" msgid "If oldstr has more entries than newstr, then the residual elements in oldstr are replaced by the last element in newstr." -msgstr "" +msgstr "Als oldstr meer items heeft dan newstr, dan worden de resterende elementen in oldstr vervangen door het laatste element in newstr ." #. MkqW5 #: sf_string.xhp @@ -22892,7 +22892,7 @@ "par_id701580146547619\n" "help.text" msgid "occurrences: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced." -msgstr "" +msgstr "occurrences:Het maximale aantal vervangingen. De standaardwaarde is 0, wat betekent dat alle exemplaren worden vervangen." #. QX33p #: sf_string.xhp @@ -22901,7 +22901,7 @@ "par_id741612385380533\n" "help.text" msgid "When oldstr is an array, the occurrence parameter is computed separately for each item in the array." -msgstr "" +msgstr "Als oldstr een matrix is, wordt de parameter occurrence afzonderlijk berekend voor elk item in de matrix." #. aWrvA #: sf_string.xhp @@ -22919,7 +22919,7 @@ "par_id901580147558931\n" "help.text" msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes." -msgstr "" +msgstr "Retourneert een tekenreeks met een leesbare representatie van het argument, afgekapt op een bepaalde lengte. Dit is vooral handig voor het opsporen van fouten of loggen." #. cU3Ev #: sf_string.xhp @@ -22928,7 +22928,7 @@ "par_id11612386054691\n" "help.text" msgid "If the anyvalue parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"." -msgstr "" +msgstr "Als de parameter anyvalue een object is, wordt deze tussen vierkante haken \"[\" en \"]\" geplaatst." #. gVB32 #: sf_string.xhp @@ -22937,7 +22937,7 @@ "par_id491612386081802\n" "help.text" msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r." -msgstr "" +msgstr "In tekenreeksen worden tabs en regeleinden vervangen door \\t, \\n of \\r." #. SfUGD #: sf_string.xhp @@ -22946,7 +22946,7 @@ "par_id921612386089103\n" "help.text" msgid "If the final length exceeds the maxlength parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation." -msgstr "" +msgstr "Als de uiteindelijke lengte de parameter maxlength overschrijdt, wordt het laatste deel van de tekenreeks vervangen door \" ... (N)\", waarbij N de totale lengte is van de oorspronkelijke tekenreeks vóór afkappen." #. zLfNR #: sf_string.xhp @@ -22955,7 +22955,7 @@ "par_id91580147593626\n" "help.text" msgid "anyvalue: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc." -msgstr "" +msgstr "anyvalue: De invoerwaarde die moet worden weergegeven. Het kan elke waarde zijn, zoals een tekenreeks, een matrix, een Basic-object, een UNO-object, enz." #. hdDFi #: sf_string.xhp @@ -22964,7 +22964,7 @@ "par_id811580147609322\n" "help.text" msgid "maxlength: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation." -msgstr "" +msgstr "maxlength: De maximale lengte van de resulterende tekenreeks. De standaardwaarde is 0, wat betekent dat er geen limiet is aan de lengte van de resulterende weergave." #. Ape7i #: sf_string.xhp @@ -22973,7 +22973,7 @@ "par_id641612386659292\n" "help.text" msgid "Note that the representation of data types such as Arrays and ScriptForge.Dictionary object instances include both the data type and their values:" -msgstr "" +msgstr "Merk op dat de weergave van gegevenstypen zoals matrixen en ScriptForge.Dictionary-objectinstanties, zowel het gegevenstype als hun waarden omvat:" #. ZFFAD #: sf_string.xhp @@ -22982,7 +22982,7 @@ "bas_id971612386906463\n" "help.text" msgid "' An example with a Basic built-in Array" -msgstr "" +msgstr "' Een voorbeeld met een Basic ingebouwde matrix" #. GEZzM #: sf_string.xhp @@ -22991,7 +22991,7 @@ "bas_id401612386876329\n" "help.text" msgid "' An example with a ScriptForge Array" -msgstr "" +msgstr "' Een voorbeeld met een ScriptForge matrix" #. mZ3ar #: sf_string.xhp @@ -23000,7 +23000,7 @@ "bas_id551612386931680\n" "help.text" msgid "' An example with a ScriptForge Dictionary" -msgstr "" +msgstr "' Een voorbeeld met een ScriptForge woordenboek" #. vvADG #: sf_string.xhp @@ -23009,7 +23009,7 @@ "par_id411580312925741\n" "help.text" msgid "Returns the input string in reversed order." -msgstr "" +msgstr "Retourneert de invoertekenreeks in omgekeerde volgorde." #. EEyG6 #: sf_string.xhp @@ -23018,7 +23018,7 @@ "par_id141612387177873\n" "help.text" msgid "This method is equivalent to the built-in StrReverse Basic function." -msgstr "" +msgstr "Deze methode is gelijk aan de ingebouwde Basic-functie StrReverse." #. ZEarP #: sf_string.xhp @@ -23027,7 +23027,7 @@ "par_id961612387463144\n" "help.text" msgid "To use the StrReverse function, the statement Option VBASupport 1 must be present in the module." -msgstr "" +msgstr "Om de functie StrReverse te gebruiken, moet de instructie Optie VBASupport 1 aanwezig zijn in de module." #. pSyL6 #: sf_string.xhp @@ -23036,7 +23036,7 @@ "par_id241580312964497\n" "help.text" msgid "inputstr: The string to be reversed." -msgstr "" +msgstr "inputstr: De om te keren tekenreeks." #. KBFDk #: sf_string.xhp @@ -23045,7 +23045,7 @@ "par_id721580210762286\n" "help.text" msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters." -msgstr "" +msgstr "Retourneert een op nul gebaseerde matrix van tekenreeksen met de regels in de invoertekenreeks. Elk item in de matrix wordt verkregen door de invoertekenreeks te splitsen bij nieuwe regeltekens." #. nuUF6 #: sf_string.xhp @@ -23054,7 +23054,7 @@ "par_id481580210806878\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: De te splitsen tekenreeks." #. FEFUw #: sf_string.xhp @@ -23063,7 +23063,7 @@ "par_id231580210820309\n" "help.text" msgid "keepbreaks: When True, line breaks are preserved in the output array (default = False)." -msgstr "" +msgstr "keepbreaks: Indien True, worden regeleinden behouden in de uitvoermatrix (standaard = False)." #. HAG8Q #: sf_string.xhp @@ -23072,7 +23072,7 @@ "par_id471580211762739\n" "help.text" msgid "Splits a string into an array of elements using a specified delimiter." -msgstr "" +msgstr "Splitst een tekenreeks in een matrix van elementen met een opgegeven scheidingsteken." #. zsADB #: sf_string.xhp @@ -23081,7 +23081,7 @@ "par_id281612388034501\n" "help.text" msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Als een subtekenreeks tussen aanhalingstekens een scheidingsteken bevat, wordt dit genegeerd. Dit is handig bij het ontleden van CSV-achtige records die tekenreeksen tussen aanhalingstekens bevatten." #. JKAaG #: sf_string.xhp @@ -23090,7 +23090,7 @@ "par_id881580211809490\n" "help.text" msgid "inputstr: The string to be split." -msgstr "" +msgstr "inputstr: De te splitsen tekenreeks." #. zFjwe #: sf_string.xhp @@ -23099,7 +23099,7 @@ "par_id811580211821162\n" "help.text" msgid "delimiter: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character." -msgstr "" +msgstr "delimiter: Een tekenreeks van een of meer tekens die als scheidingsteken wordt gebruikt. Het standaardscheidingsteken is het Ascii-spatieteken \" \"." #. 3rGRu #: sf_string.xhp @@ -23108,7 +23108,7 @@ "par_id181580211833778\n" "help.text" msgid "occurrences: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings." -msgstr "" +msgstr "occurrences: Het maximum aantal subtekenreeksen dat moet worden geretourneerd. De standaardwaarde is 0, wat betekent dat er geen limiet is voor het aantal geretourneerde tekenreeksen." #. W2og7 #: sf_string.xhp @@ -23117,7 +23117,7 @@ "par_id421599123777334\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote." -msgstr "" +msgstr "quotechar: Ofwel het enkele (') of dubbele (\") aanhalingsteken." #. DiYMJ #: sf_string.xhp @@ -23126,7 +23126,7 @@ "par_id661627251379676\n" "help.text" msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them." -msgstr "" +msgstr "Let op de verschillen tussen Basic en Python bij het weergeven van tekenreeksen. In Basic worden bijvoorbeeld twee \"\"-tekens in een tekenreeks geïnterpreteerd als een enkel \"-teken. In Python kunnen tekenreeksen tussen enkele aanhalingstekens \"-tekens bevatten zonder ze te verdubbelen." #. 6Q2tJ #: sf_string.xhp @@ -23135,7 +23135,7 @@ "par_id771580212837884\n" "help.text" msgid "Returns True if the first characters of a string are identical to a given substring." -msgstr "" +msgstr "Retourneert True als de eerste tekens van een tekenreeks identiek zijn aan een bepaalde subtekenreeks." #. BYx4G #: sf_string.xhp @@ -23144,7 +23144,7 @@ "par_id781612393174350\n" "help.text" msgid "This method returns False if either the input string or the substring have a length = 0 or when the substring is longer than the input string." -msgstr "" +msgstr "Deze methode retourneert False als ofwel de invoertekenreeks of de subtekenreeks een lengte = 0 heeft of wanneer de subtekenreeks langer is dan de invoertekenreeks." #. jrzxu #: sf_string.xhp @@ -23153,7 +23153,7 @@ "par_id271580212876135\n" "help.text" msgid "inputstr: The string to be tested." -msgstr "" +msgstr "inputstr: De te testen tekenreeks." #. tE9WD #: sf_string.xhp @@ -23162,7 +23162,7 @@ "par_id571580212889462\n" "help.text" msgid "substring: The substring to be searched at the start of inputstr." -msgstr "" +msgstr "substring: De subtekenreeks die moet worden doorzocht aan het begin van inputstr." #. ZeQP4 #: sf_string.xhp @@ -23180,7 +23180,7 @@ "par_id911580295999690\n" "help.text" msgid "Returns the input string without its leading and trailing whitespaces." -msgstr "" +msgstr "Retourneert de invoertekenreeks zonder de voorloop- en volgspaties." #. BESEu #: sf_string.xhp @@ -23189,7 +23189,7 @@ "par_id541580296044377\n" "help.text" msgid "inputstr: The string to trim." -msgstr "" +msgstr "inputstr: De in te korten tekenreeks." #. 9t9vX #: sf_string.xhp @@ -23198,7 +23198,7 @@ "par_id61580483096936\n" "help.text" msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character." -msgstr "" +msgstr "Converteert elke escape-reeks (\\\\, \\n, \\r, \\t) in de invoertekenreeks naar het bijbehorende Ascii-teken." #. mzTsG #: sf_string.xhp @@ -23207,7 +23207,7 @@ "par_id971580483124743\n" "help.text" msgid "inputstr: The string to be converted." -msgstr "" +msgstr "inputstr: De te converteren tekenreeks." #. BoYHV #: sf_string.xhp @@ -23216,7 +23216,7 @@ "par_id831580213634029\n" "help.text" msgid "Removes the single or double quotes enclosing the input string." -msgstr "" +msgstr "Verwijdert de enkele of dubbele aanhalingstekens die de invoertekenreeks omsluiten." #. Ae8c5 #: sf_string.xhp @@ -23225,7 +23225,7 @@ "par_id811612393585600\n" "help.text" msgid "This is useful when parsing CSV-like records that contain quoted strings." -msgstr "" +msgstr "Dit is handig bij het ontleden van CSV-achtige records die tekenreeksen tussen aanhalingstekens bevatten." #. BhVvp #: sf_string.xhp @@ -23234,7 +23234,7 @@ "par_id761580213677493\n" "help.text" msgid "inputstr: The string to unquote." -msgstr "" +msgstr "inputstr: De tekenreeks waarvan de aanhalingstekens moeten worden verwijderd." #. gRUHA #: sf_string.xhp @@ -23243,7 +23243,7 @@ "par_id211599129509890\n" "help.text" msgid "quotechar: Either the single (') or double (\") quote (default)." -msgstr "" +msgstr "quotechar: Ofwel het enkele (') of dubbele (\") aanhalingsteken (standaard)." #. nGq4Q #: sf_string.xhp @@ -23252,7 +23252,7 @@ "bas_id371580213702598\n" "help.text" msgid "' s = \"Some text\" (without enclosing quotes)" -msgstr "" +msgstr "' s = \"Wat tekst\" (zonder aanhalingstekens)" #. Fp8ip #: sf_string.xhp @@ -23261,7 +23261,7 @@ "bas_id51580213693694\n" "help.text" msgid "' The string below does not have enclosing quotes, so it remains unchanged" -msgstr "" +msgstr "' Onderstaande tekenreeks heeft geen aanhalingstekens, dus deze blijft ongewijzigd" #. A4Eki #: sf_string.xhp @@ -23270,7 +23270,7 @@ "bas_id961612393917830\n" "help.text" msgid "' s = \"Some text\" (unchanged)" -msgstr "" +msgstr "'s = \"Wat tekst\" (ongewijzigd)" #. ULtxx #: sf_string.xhp @@ -23279,7 +23279,7 @@ "bas_id461612394182689\n" "help.text" msgid "' Quotes inside the string are not removed" -msgstr "" +msgstr "' Aanhalingstekens binnen de tekenreeks worden niet verwijderd" #. 8w4ia #: sf_string.xhp @@ -23288,7 +23288,7 @@ "bas_id961612394171208\n" "help.text" msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)" -msgstr "" +msgstr "' s = \"The \"\"true\"\" meaning\" (ongewijzigd)" #. JGhWK #: sf_string.xhp @@ -23297,7 +23297,7 @@ "par_id871585834468102\n" "help.text" msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters." -msgstr "" +msgstr "Converteert de invoertekenreeks naar een matrix met subtekenreeksen, zodat elk item in de matrix maximaal een bepaald aantal tekens heeft." #. 4G9FU #: sf_string.xhp @@ -23306,7 +23306,7 @@ "par_id21612394465120\n" "help.text" msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks." -msgstr "" +msgstr "In de praktijk retourneert deze methode een op nul gebaseerde matrix van uitvoerregels, zonder nieuwe regels aan het einde, behalve de reeds bestaande regeleinden." #. qgd6X #: sf_string.xhp @@ -23315,7 +23315,7 @@ "par_id601612395193333\n" "help.text" msgid "Tabs are expanded using the same procedure performed by the ExpandTabs method." -msgstr "" +msgstr "Tabbladen worden uitgevouwen met dezelfde procedure die wordt uitgevoerd door de methode ExpandTabs." #. kTwEG #: sf_string.xhp @@ -23324,7 +23324,7 @@ "par_id641612394826616\n" "help.text" msgid "Symbolic line breaks are replaced by their equivalent Ascii characters." -msgstr "" +msgstr "Symbolische regeleinden worden vervangen door hun equivalente Ascii-tekens." #. y7VvP #: sf_string.xhp @@ -23333,7 +23333,7 @@ "par_id361612394859733\n" "help.text" msgid "If the wrapped output has no content, the returned array is empty." -msgstr "" +msgstr "Als de verpakte uitvoer geen inhoud heeft, is de geretourneerde matrix leeg." #. SNRzH #: sf_string.xhp @@ -23342,7 +23342,7 @@ "par_id251585834468498\n" "help.text" msgid "inputstr: The string to wrap." -msgstr "" +msgstr "inputstr: De in te pakken tekenreeks." #. MiptC #: sf_string.xhp @@ -23351,7 +23351,7 @@ "par_id351585834773177\n" "help.text" msgid "width: The maximum number of characters in each line (Default = 70)." -msgstr "" +msgstr "width: Het maximum aantal tekens in elke regel (standaard is 70)." #. epG6z #: sf_string.xhp @@ -23360,7 +23360,7 @@ "par_id741585834874500\n" "help.text" msgid "tabsize: Before wrapping the text, the existing TAB Chr(9) characters are replaced with spaces. The argument tabsize defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)." -msgstr "" +msgstr "tabsize: Voordat de tekst ingepakt wordt, worden de bestaande TAB-tekens Chr(9) vervangen door spaties. Het argument tabsize definieert de TAB-stops bij TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (standaard is 8)." #. HjZDB #: sf_textstream.xhp @@ -23369,7 +23369,7 @@ "tit\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Service ScriptForge.TextStream" #. cEA5U #: sf_textstream.xhp @@ -23378,7 +23378,7 @@ "bm_id351585330787295\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Service ScriptForge.TextStream" #. nBJsE #: sf_textstream.xhp @@ -23387,7 +23387,7 @@ "par_id511585330787205\n" "help.text" msgid "The TextStream service is used to sequentially read from and write to files opened or created using the ScriptForge.FileSystem service." -msgstr "" +msgstr "De service TextStream wordt gebruikt om achtereenvolgens te lezen van en te schrijven naar bestanden die zijn geopend of gemaakt met de service ScriptForge.FileSystem." #. TeRTa #: sf_textstream.xhp @@ -23396,7 +23396,7 @@ "par_id41613596903894\n" "help.text" msgid "The methods OpenTextFile and CreateTextFile from the FileSystem service return an instance of the TextStream service." -msgstr "" +msgstr "De methoden OpenTextFile en CreateTextFile van de service FileSystem retourneren een instantie van de service TextStream." #. MVFWC #: sf_textstream.xhp @@ -23405,7 +23405,7 @@ "par_id161585330787262\n" "help.text" msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system." -msgstr "" +msgstr "Lijnscheidingstekens kunnen door de gebruiker worden opgegeven. Bij invoerbewerkingen worden CR, LF of CR+LF ondersteund. Bij uitvoerbewerkingen is het standaardregelscheidingsteken het scheidingsteken dat door het besturingssysteem wordt gebruikt." #. GDkir #: sf_textstream.xhp @@ -23414,7 +23414,7 @@ "par_id831613598137669\n" "help.text" msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the SF_String.sfNEWLINE property." -msgstr "" +msgstr "Het regelscheidingsteken voor het besturingssysteem waarop de macro wordt uitgevoerd, kan worden geopend met behulp van de eigenschap SF_String.sfNEWLINE." #. SvXzF #: sf_textstream.xhp @@ -23423,7 +23423,7 @@ "par_id851613597445432\n" "help.text" msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run." -msgstr "" +msgstr "Alle bewerkingen die nodig zijn om te lezen van of te schrijven naar een bestand (openen, lezen/schrijven en sluiten) worden verondersteld te gebeuren tijdens dezelfde macro-run." #. dc5KN #: sf_textstream.xhp @@ -23432,7 +23432,7 @@ "hd_id83158533078741\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. AuQX2 #: sf_textstream.xhp @@ -23441,7 +23441,7 @@ "par_id351613598192725\n" "help.text" msgid "The examples below in Basic and Python use the OpenTextFile method to create an instance of the TextStream Service." -msgstr "" +msgstr "Onderstaande voorbeelden in Basic en Python gebruiken de methode OpenTextFile om een instantie van de service TextStream te maken." #. UUudg #: sf_textstream.xhp @@ -23450,7 +23450,7 @@ "par_id371585330787197\n" "help.text" msgid "The file must be closed with the CloseFile method after all read or write operations have been executed:" -msgstr "" +msgstr "Het bestand moet worden gesloten met de methode CloseFile nadat alle lees- of schrijfbewerkingen zijn uitgevoerd:" #. zNveN #: sf_textstream.xhp @@ -23459,7 +23459,7 @@ "par_id891582733781994\n" "help.text" msgid "Optionally, the resources used by the TextStream instance can be released using the Dispose method:" -msgstr "" +msgstr "Optioneel kunnen de bronnen die worden gebruikt door de instantie TextStream worden vrijgegeven met behulp van de methode Dispose:" #. nsGCZ #: sf_textstream.xhp @@ -23468,7 +23468,7 @@ "par_id121612917368946\n" "help.text" msgid "The methods in the TextStream service are mostly based on the XTextInputStream and XTextOutputStream UNO interfaces." -msgstr "" +msgstr "De methoden in de service TextStream zijn meestal gebaseerd op de UNO-interfaces XTextInputStream en XTextOutputStream." #. JAmgD #: sf_textstream.xhp @@ -23477,7 +23477,7 @@ "hd_id941585330787948\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. aN9zM #: sf_textstream.xhp @@ -23486,7 +23486,7 @@ "par_id631585330787267\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. vwGC5 #: sf_textstream.xhp @@ -23495,7 +23495,7 @@ "par_id401585330787370\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. GpL38 #: sf_textstream.xhp @@ -23504,7 +23504,7 @@ "par_id581585330787700\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. 6FDuM #: sf_textstream.xhp @@ -23513,7 +23513,7 @@ "par_id551585330787608\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. ECkTm #: sf_textstream.xhp @@ -23522,7 +23522,7 @@ "par_id181585330787752\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. YFkaY #: sf_textstream.xhp @@ -23531,7 +23531,7 @@ "par_id901585330787680\n" "help.text" msgid "Used in read mode. A True value indicates that the end of the file has been reached. A test using this property should precede calls to the ReadLine method." -msgstr "" +msgstr "Gebruikt in leesmodus. Een waarde True geeft aan dat het einde van het bestand is bereikt. Een test die deze eigenschap gebruikt, moet voorafgaan aan aanroepen van de ReadLine-methode." #. EFEnA #: sf_textstream.xhp @@ -23540,7 +23540,7 @@ "par_id561585330787568\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. cVCoJ #: sf_textstream.xhp @@ -23549,7 +23549,7 @@ "par_id741585330787777\n" "help.text" msgid "The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "De tekenset die moet worden gebruikt. De standaardcodering is \"UTF-8\"." #. p5s3X #: sf_textstream.xhp @@ -23558,7 +23558,7 @@ "par_id641585330787207\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. JjEqX #: sf_textstream.xhp @@ -23567,7 +23567,7 @@ "par_id281585330787614\n" "help.text" msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the FileNaming property of the FileSystem service." -msgstr "" +msgstr "Retourneert de naam van het huidige bestand in URL-indeling of in de indeling van het eigen besturingssysteem, afhankelijk van de huidige waarde van de eigenschap FileNaming van de service FileSystem." #. goEnw #: sf_textstream.xhp @@ -23576,7 +23576,7 @@ "par_id111585330787410\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. MZS6Z #: sf_textstream.xhp @@ -23585,7 +23585,7 @@ "par_id861585330787417\n" "help.text" msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"." -msgstr "" +msgstr "Geeft de invoer-/uitvoermodus aan. Mogelijke waarden zijn \"READ\", \"WRITE\" of \"APPEND\"." #. 7nTb9 #: sf_textstream.xhp @@ -23594,7 +23594,7 @@ "par_id87158533078795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. j45gC #: sf_textstream.xhp @@ -23603,7 +23603,7 @@ "par_id561585330787741\n" "help.text" msgid "Returns the number of lines read or written so far." -msgstr "" +msgstr "Retourneert het aantal regels dat tot nu toe is gelezen of geschreven." #. CLAvQ #: sf_textstream.xhp @@ -23612,7 +23612,7 @@ "par_id531585330787157\n" "help.text" msgid "No" -msgstr "" +msgstr "Nee" #. rdA5M #: sf_textstream.xhp @@ -23621,7 +23621,7 @@ "par_id691585330787279\n" "help.text" msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system." -msgstr "" +msgstr "Stelt of retourneert het huidige scheidingsteken dat tussen twee opeenvolgende geschreven regels moet worden ingevoegd. De standaardwaarde is het native lijnscheidingsteken in het huidige besturingssysteem." #. dCeHZ #: sf_textstream.xhp @@ -23630,7 +23630,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "Ga voor meer informatie over de namen van karaktersets naar de internetpagina IANA's Character Set. Let op dat %PRODUCTNAME niet alle bestaande tekensets implementeert." #. hKJkD #: sf_textstream.xhp @@ -23639,7 +23639,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the TextStream Service" -msgstr "" +msgstr "Lijst met methoden in de TextStream-service" #. DBBKM #: sf_textstream.xhp @@ -23648,7 +23648,7 @@ "par_id421585330787675\n" "help.text" msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns True if the file was successfully closed." -msgstr "" +msgstr "Sluit de huidige invoer- of uitvoerstroom en leegt de uitvoerbuffer indien relevant. Retourneert True als het bestand succesvol is afgesloten." #. MCW3q #: sf_textstream.xhp @@ -23657,7 +23657,7 @@ "par_id65158533078799\n" "help.text" msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed." -msgstr "" +msgstr "Retourneert alle resterende regels in de tekststroom als een enkele tekenreeks. Regeleinden worden niet verwijderd." #. Vr34D #: sf_textstream.xhp @@ -23666,7 +23666,7 @@ "par_id71613600347125\n" "help.text" msgid "The resulting string can be split in lines either by using the Split built-in Basic function if the line delimiter is known, or with the SF_String.SplitLines method." -msgstr "" +msgstr "De resulterende tekenreeks kan in regels worden gesplitst met behulp van de ingebouwde functie Split als het regelscheidingsteken bekend is, of met de methode SF_String.SplitLines." #. VRLGn #: sf_textstream.xhp @@ -23675,7 +23675,7 @@ "par_id91585330787373\n" "help.text" msgid "For large files, using the ReadAll method wastes memory resources. In such cases it is recommended to read the file line by line using the ReadLine method." -msgstr "" +msgstr "Voor grote bestanden verspilt het gebruik van de methode ReadAll geheugenbronnen. In dergelijke gevallen wordt aanbevolen om het bestand regel voor regel te lezen met behulp van de methode ReadLine." #. BuBVA #: sf_textstream.xhp @@ -23684,7 +23684,7 @@ "par_id921613595637851\n" "help.text" msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):" -msgstr "" +msgstr "Beschouw het tekstbestand \"Students.txt\" met de volgende inhoud (een naam in elke regel):" #. hk7q4 #: sf_textstream.xhp @@ -23693,7 +23693,7 @@ "par_id391613596019750\n" "help.text" msgid "The examples below in Basic and Python use the ReadAll and SplitLines methods to read the contents of the file into an array of strings:" -msgstr "" +msgstr "De onderstaande voorbeelden in Basic en Python gebruiken de methoden ReadAll en SplitLines om de inhoud van het bestand in een matrix met tekenreeksen te lezen:" #. BuRJE #: sf_textstream.xhp @@ -23702,7 +23702,7 @@ "bas_id251613595640550\n" "help.text" msgid "'Loads the FileSystem service" -msgstr "" +msgstr "'Laadt de service FileSystem" #. L2a3D #: sf_textstream.xhp @@ -23711,7 +23711,7 @@ "bas_id181613595641087\n" "help.text" msgid "'Opens the text file with the names to be read" -msgstr "" +msgstr "'Opent het tekstbestand met de te lezen namen" #. 7Fq9E #: sf_textstream.xhp @@ -23720,7 +23720,7 @@ "par_id871585330787885\n" "help.text" msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string." -msgstr "" +msgstr "Retourneert de volgende regel in de tekststroom als een tekenreeks. Regeleinden worden verwijderd uit de geretourneerde tekenreeks." #. 6iDcF #: sf_textstream.xhp @@ -23729,7 +23729,7 @@ "par_id431613600221626\n" "help.text" msgid "The AtEndOfStream test should precede the ReadLine method like in the example below." -msgstr "" +msgstr "De test AtEndOfStream moet voorafgaan aan de methode ReadLine, zoals in het onderstaande voorbeeld." #. GRRkq #: sf_textstream.xhp @@ -23738,7 +23738,7 @@ "par_id171585330787774\n" "help.text" msgid "An error will be raised if the AtEndOfStream was reached during the previous ReadLine or SkipLine method call." -msgstr "" +msgstr "Er wordt een fout gegenereerd als de AtEndOfStream werd bereikt tijdens de vorige methodeaanroep ReadLine of SkipLine." #. mAty4 #: sf_textstream.xhp @@ -23747,7 +23747,7 @@ "par_id11585330787847\n" "help.text" msgid "Skips the next line in the input stream when reading a TextStream file." -msgstr "" +msgstr "Slaat de volgende regel in de invoerstroom over bij het lezen van een bestand TextStream." #. FDMJB #: sf_textstream.xhp @@ -23756,7 +23756,7 @@ "par_id441613600704766\n" "help.text" msgid "This method can result in AtEndOfStream being set to True." -msgstr "" +msgstr "Deze methode kan ertoe leiden dat AtEndOfStream wordt ingesteld op True." #. D4JVb #: sf_textstream.xhp @@ -23765,7 +23765,7 @@ "par_id141585330787657\n" "help.text" msgid "Writes a specified number of empty lines to the output stream." -msgstr "" +msgstr "Schrijft een opgegeven aantal lege regels naar de uitvoerstroom." #. YsBUm #: sf_textstream.xhp @@ -23774,7 +23774,7 @@ "par_id291585330787357\n" "help.text" msgid "lines: The number of empty lines to write to the file." -msgstr "" +msgstr "lines: Het aantal lege regels dat naar het bestand moet worden geschreven." #. GCPCC #: sf_textstream.xhp @@ -23783,7 +23783,7 @@ "par_id101585330787215\n" "help.text" msgid "Writes the given string to the output stream as a single line." -msgstr "" +msgstr "Schrijft de gegeven tekenreeks naar de uitvoerstroom als een enkele regel." #. Eska7 #: sf_textstream.xhp @@ -23792,7 +23792,7 @@ "par_id421613601002074\n" "help.text" msgid "The character defined in the NewLine property is used as the line delimiter." -msgstr "" +msgstr "Het teken dat is gedefinieerd in de eigenschap NewLine wordt gebruikt als regelscheidingsteken." #. LXFPE #: sf_textstream.xhp @@ -23801,7 +23801,7 @@ "par_id491585330787650\n" "help.text" msgid "line: The line to write, may be empty." -msgstr "" +msgstr "line: De te schrijven regel mag leeg zijn." #. PM5Bx #: sf_textstream.xhp @@ -23810,7 +23810,7 @@ "par_id821626894480105\n" "help.text" msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until lastValue is reached." -msgstr "" +msgstr "De onderstaande voorbeelden in Basic en Python maken een tekstbestand in CSV-indeling, waarin elke regel een waarde en zijn vierkant bevat totdat lastValue is bereikt." #. 39u4o #: sf_textstream.xhp @@ -23819,7 +23819,7 @@ "bas_id21613321528612\n" "help.text" msgid "'Instantiates the FileSystem Service" -msgstr "" +msgstr "'Maakt de service FileSystem aan'" #. FnTiG #: sf_textstream.xhp @@ -23828,7 +23828,7 @@ "bas_id191613321529277\n" "help.text" msgid "'Creates a text file" -msgstr "" +msgstr "'Maakt een tekstbestand aan" #. f5RSB #: sf_textstream.xhp @@ -23837,7 +23837,7 @@ "bas_id641613321530181\n" "help.text" msgid "'Writes the Value and Value squared, separated by \";\"" -msgstr "" +msgstr "'Schrijft de Waarde en de Waarde in het kwadraat, gescheiden door \";\"" #. FCowk #: sf_textstream.xhp @@ -23846,7 +23846,7 @@ "bas_id141613321530960\n" "help.text" msgid "myFile.WriteLine(\"Value;Value Squared\")" -msgstr "" +msgstr "myFile.WriteLine(\"Value;Value Squared\")" #. m9Mo4 #: sf_textstream.xhp @@ -23855,7 +23855,7 @@ "bas_id881613321532598\n" "help.text" msgid "'Closes the file and free resources" -msgstr "" +msgstr "'Sluit het bestand en maak bronnen vrij" #. PCSPY #: sf_timer.xhp @@ -23864,7 +23864,7 @@ "tit\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Service ScriptForge.Timer" #. cxRDS #: sf_timer.xhp @@ -23873,7 +23873,7 @@ "hd_id731582733781114\n" "help.text" msgid "ScriptForge.Timer service" -msgstr "" +msgstr "Service ScriptForge.Timer" #. WyVvH #: sf_timer.xhp @@ -23882,7 +23882,7 @@ "par_id961582733781662\n" "help.text" msgid "The Timer service measures the amount of time it takes to run user scripts." -msgstr "" +msgstr "De service Timer meet de hoeveelheid tijd die nodig is om gebruikersscripts uit te voeren." #. qDa8E #: sf_timer.xhp @@ -23891,7 +23891,7 @@ "par_id181582733781323\n" "help.text" msgid "A Timer measures durations. It can be:" -msgstr "" +msgstr "Een Timer meet de tijdsduur. Het kan zijn:" #. ErpLm #: sf_timer.xhp @@ -23900,7 +23900,7 @@ "par_id711582733781252\n" "help.text" msgid "Started, to indicate when to start measuring time." -msgstr "" +msgstr "Gestart, om aan te geven wanneer te beginnen met het meten van de tijd." #. NAAFg #: sf_timer.xhp @@ -23909,7 +23909,7 @@ "par_id631582733781431\n" "help.text" msgid "Suspended, to pause measuring running time." -msgstr "" +msgstr "Opgeschort, om de looptijdmeting te stoppen." #. nt9Qc #: sf_timer.xhp @@ -23918,7 +23918,7 @@ "par_id691582733781498\n" "help.text" msgid "Resumed, to continue tracking running time after the Timer has been suspended." -msgstr "" +msgstr "Hervat om de looptijd voort te zetten nadat de timer is onderbroken." #. DVCBM #: sf_timer.xhp @@ -23927,7 +23927,7 @@ "par_id31582733781344\n" "help.text" msgid "Restarted, which will cancel previous measurements and start the Timer at zero." -msgstr "" +msgstr "Opnieuw gestart, waardoor eerdere metingen worden geannuleerd en de Timer op nul begint." #. dm7yA #: sf_timer.xhp @@ -23936,7 +23936,7 @@ "par_id991582733781280\n" "help.text" msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds" -msgstr "" +msgstr "De tijdsduur wordt uitgedrukt in seconden met een precisie van 3 decimalen (milliseconden). Een waarde van 12.345 betekent 12 seconden en 345 milliseconden" #. CVhDR #: sf_timer.xhp @@ -23945,7 +23945,7 @@ "hd_id201582733781265\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. SCYEX #: sf_timer.xhp @@ -23954,7 +23954,7 @@ "par_id891610734806133\n" "help.text" msgid "The example below creates a Timer object named myTimer and starts it immediately." -msgstr "" +msgstr "Het onderstaande voorbeeld maakt een object Timer met de naam myTimer en start het onmiddellijk." #. CnZqc #: sf_timer.xhp @@ -23963,7 +23963,7 @@ "par_id891582733781994\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Het wordt aanbevolen om na gebruik middelen vrij te maken:" #. 8h3fp #: sf_timer.xhp @@ -23972,7 +23972,7 @@ "hd_id521582733781450\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. dVncX #: sf_timer.xhp @@ -23981,7 +23981,7 @@ "par_id71582733781260\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. hFnkK #: sf_timer.xhp @@ -23990,7 +23990,7 @@ "par_id711582733781103\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "AlleenLezen" #. NvqK9 #: sf_timer.xhp @@ -23999,7 +23999,7 @@ "par_id76158273378122\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. 7zFYh #: sf_timer.xhp @@ -24008,7 +24008,7 @@ "par_id751582733781926\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. T92or #: sf_timer.xhp @@ -24017,7 +24017,7 @@ "par_id621582733781588\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 9yDgM #: sf_timer.xhp @@ -24026,7 +24026,7 @@ "par_id731582733781476\n" "help.text" msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)" -msgstr "" +msgstr "De werkelijke looptijd die is verstreken sinds de start of tussen start en stop (houdt geen rekening met opgeschorte tijd)" #. ThAaG #: sf_timer.xhp @@ -24035,7 +24035,7 @@ "par_id301582733781498\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. tqpDU #: sf_timer.xhp @@ -24044,7 +24044,7 @@ "par_id401582733781608\n" "help.text" msgid "True when timer is started or suspended" -msgstr "" +msgstr "Waar indien de timer wordt gestart of onderbroken" #. pSPgk #: sf_timer.xhp @@ -24053,7 +24053,7 @@ "par_id181582733781551\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. SGyi4 #: sf_timer.xhp @@ -24062,7 +24062,7 @@ "par_id161582733781328\n" "help.text" msgid "True when timer is started and suspended" -msgstr "" +msgstr "True indien de timer wordt gestart en onderbroken" #. qoNpD #: sf_timer.xhp @@ -24071,7 +24071,7 @@ "par_id651582733781874\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. E45MD #: sf_timer.xhp @@ -24080,7 +24080,7 @@ "par_id171582733781456\n" "help.text" msgid "The actual time elapsed while suspended since start or between start and stop" -msgstr "" +msgstr "De werkelijke verstreken tijd tijdens de onderbreking sinds de start of tussen start en stop" #. gxF8S #: sf_timer.xhp @@ -24089,7 +24089,7 @@ "par_id141582733781303\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. FeCob #: sf_timer.xhp @@ -24098,7 +24098,7 @@ "par_id411582733781932\n" "help.text" msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)" -msgstr "" +msgstr "De werkelijke verstreken tijd sinds start of tussen start en stop (inclusief schorsingen en looptijd)" #. Mav4g #: sf_timer.xhp @@ -24107,7 +24107,7 @@ "hd_id141582734141895\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. P8RQj #: sf_timer.xhp @@ -24116,7 +24116,7 @@ "par_id291582734377752\n" "help.text" msgid "All methods do not require arguments and return a Boolean value." -msgstr "" +msgstr "Alle methoden hebben geen argumenten nodig en retourneren een booleaanse waarde." #. onEib #: sf_timer.xhp @@ -24125,7 +24125,7 @@ "par_id311582734894257\n" "help.text" msgid "If the returned value is False, then nothing happened." -msgstr "" +msgstr "Als de geretourneerde waarde False is, is er niets gebeurd." #. U82Do #: sf_timer.xhp @@ -24134,7 +24134,7 @@ "par_id871582734180676\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. 6oGwx #: sf_timer.xhp @@ -24143,7 +24143,7 @@ "par_id971582734180676\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. ZMfpe #: sf_timer.xhp @@ -24152,7 +24152,7 @@ "par_id911582734180676\n" "help.text" msgid "Returned value" -msgstr "" +msgstr "Geretourneerde waarde" #. 6DJTP #: sf_timer.xhp @@ -24161,7 +24161,7 @@ "par_id301582734180676\n" "help.text" msgid "Resumes the Timer if it has been suspended" -msgstr "" +msgstr "Hervat de Timer als deze is onderbroken" #. ixF7A #: sf_timer.xhp @@ -24170,7 +24170,7 @@ "par_id661582734180676\n" "help.text" msgid "False if the timer is not suspended" -msgstr "" +msgstr "False als de timer niet is onderbroken" #. AAozF #: sf_timer.xhp @@ -24179,7 +24179,7 @@ "par_id821582734649305\n" "help.text" msgid "Terminates the Timer and discards its current property values, restarting as a new clean Timer" -msgstr "" +msgstr "Beëindigt de Timer en verwijdert de huidige eigenschapswaarden, herstart als een nieuwe schone Timer" #. UtCTT #: sf_timer.xhp @@ -24188,7 +24188,7 @@ "par_id761582734649305\n" "help.text" msgid "False if the timer is inactive" -msgstr "" +msgstr "False als de timer inactief is" #. AkgAy #: sf_timer.xhp @@ -24197,7 +24197,7 @@ "par_id641582734802443\n" "help.text" msgid "Starts a new clean timer" -msgstr "" +msgstr "Start een nieuwe timer" #. B4gTh #: sf_timer.xhp @@ -24206,7 +24206,7 @@ "par_id921582734802443\n" "help.text" msgid "False if the timer is already started" -msgstr "" +msgstr "False als de timer al is gestart" #. D7CoH #: sf_timer.xhp @@ -24215,7 +24215,7 @@ "par_id81582734905507\n" "help.text" msgid "Suspends a running timer" -msgstr "" +msgstr "Onderbreekt een lopende timer" #. YbeSJ #: sf_timer.xhp @@ -24224,7 +24224,7 @@ "par_id661582734905507\n" "help.text" msgid "False if the timer is not started or already suspended" -msgstr "" +msgstr "False als de timer niet is gestart of al is onderbroken" #. sgXra #: sf_timer.xhp @@ -24233,7 +24233,7 @@ "par_id861582734996722\n" "help.text" msgid "Stops a running timer" -msgstr "" +msgstr "Stopt een lopende timer" #. WkCCC #: sf_timer.xhp @@ -24242,7 +24242,7 @@ "par_id381582734996722\n" "help.text" msgid "False if the timer is neither started nor suspended" -msgstr "" +msgstr "False als de timer niet is gestart of onderbroken" #. DuD3h #: sf_timer.xhp @@ -24251,7 +24251,7 @@ "par_id731626871820490\n" "help.text" msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the Timer service." -msgstr "" +msgstr "De onderstaande voorbeelden in Basic en Python illustreren het gebruik van de methoden en eigenschappen in de service Timer." #. UgBnC #: sf_timer.xhp @@ -24260,7 +24260,7 @@ "bas_id141582735926821\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as suspended time" -msgstr "" +msgstr "'De tijd die is verstreken terwijl het dialoogvenster open is, wordt geteld als onderbroken tijd" #. 4jHcj #: sf_timer.xhp @@ -24269,7 +24269,7 @@ "bas_id901582735961725\n" "help.text" msgid "'The time elapsed while the Dialog box is open will be counted as running time" -msgstr "" +msgstr "'De tijd die is verstreken terwijl het dialoogvenster open is, wordt geteld als looptijd" #. 7QhZU #: sf_timer.xhp @@ -24278,7 +24278,7 @@ "bas_id941610739926687\n" "help.text" msgid "'Shows the final time measurements" -msgstr "" +msgstr "'Toont de laatste tijdmetingen'" #. J6XGB #: sf_timer.xhp @@ -24287,7 +24287,7 @@ "par_id281610740093006\n" "help.text" msgid "If you call the Terminate method, subsequent calls for the Continue method will not resume time measurement. Similarly, after a Timer has been terminated, calling the Start method will restart it as if it were a clean new Timer." -msgstr "" +msgstr "Als u de methode Terminate aanroept, wordt de tijdmeting niet hervat bij volgende aanroepen van de methode Continue. Evenzo, nadat een Timer is beëindigd, zal het aanroepen van de methode Start deze herstarten alsof het een nieuwe Timer is." #. DSYKj #: sf_timer.xhp @@ -24296,7 +24296,7 @@ "par_id391626872019832\n" "help.text" msgid "Beware that the Wait function in Basic takes in a duration argument in milliseconds whereas the sleep function in Python uses seconds in its argument." -msgstr "" +msgstr "Pas op dat de functie Wait in Basic een argument voor tijdsduur in milliseconden opneemt, terwijl de functie sleep in Python seconden in zijn argument gebruikt." #. bHEyr #: sf_timer.xhp @@ -24305,7 +24305,7 @@ "hd_id431610989623086\n" "help.text" msgid "Working with Multiple Timers" -msgstr "" +msgstr "Werken met meerdere timers" #. dr779 #: sf_timer.xhp @@ -24314,7 +24314,7 @@ "par_id741610989639201\n" "help.text" msgid "It is possible to instantiate multiple Timer services in parallel, which gives flexibility in measuring time in different parts of the code." -msgstr "" +msgstr "Het is mogelijk om meerdere services Timer parallel te instantiëren, wat flexibiliteit geeft bij het meten van tijd in verschillende delen van de code." #. ueLgB #: sf_timer.xhp @@ -24323,7 +24323,7 @@ "par_id921610989722908\n" "help.text" msgid "The following example illustrates how to create two Timer objects and start them separately." -msgstr "" +msgstr "Het volgende voorbeeld illustreert hoe u twee Timer-objecten kunt maken en deze afzonderlijk kunt starten." #. PtA4E #: sf_timer.xhp @@ -24332,7 +24332,7 @@ "bas_id481610989853679\n" "help.text" msgid "'Starts myTimerA" -msgstr "" +msgstr "'Start myTimerA" #. VUdGW #: sf_timer.xhp @@ -24341,7 +24341,7 @@ "bas_id331610989849501\n" "help.text" msgid "'Starts myTimerB" -msgstr "" +msgstr "'Start myTimerB" #. t98Fv #: sf_timer.xhp @@ -24350,7 +24350,7 @@ "bas_id931610989837747\n" "help.text" msgid "'Terminate both timers" -msgstr "" +msgstr "'Beëindig beide timers" #. dphFv #: sf_ui.xhp @@ -24359,7 +24359,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Service ScriptForge.UI" #. QWA6E #: sf_ui.xhp @@ -24368,7 +24368,7 @@ "hd_id371587913266310\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Service ScriptForge.UI" #. cAtxQ #: sf_ui.xhp @@ -24377,7 +24377,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "De service UI (User Interface) vereenvoudigt de identificatie en de manipulatie van de verschillende vensters die de hele %PRODUCTNAME-toepassing vormen:" #. nTqj5 #: sf_ui.xhp @@ -24386,7 +24386,7 @@ "par_id591587913266547\n" "help.text" msgid "Windows selection" -msgstr "" +msgstr "Vensterselectie" #. 45jFA #: sf_ui.xhp @@ -24395,7 +24395,7 @@ "par_id511587913266292\n" "help.text" msgid "Windows moving and resizing" -msgstr "" +msgstr "Vensters verplaatsen en vergroten/verkleinen" #. UKRyn #: sf_ui.xhp @@ -24404,7 +24404,7 @@ "par_id51587913266596\n" "help.text" msgid "Statusbar settings" -msgstr "" +msgstr "Statusbalk-instellingen" #. oj2kC #: sf_ui.xhp @@ -24413,7 +24413,7 @@ "par_id401599404339702\n" "help.text" msgid "Display of a floating progress bar" -msgstr "" +msgstr "Weergave van een zwevende voortgangsbalk" #. iE5hR #: sf_ui.xhp @@ -24422,7 +24422,7 @@ "par_id761587913266388\n" "help.text" msgid "Creation of new windows" -msgstr "" +msgstr "Maken van nieuwe vensters" #. Dxuyy #: sf_ui.xhp @@ -24431,7 +24431,7 @@ "par_id591587913266489\n" "help.text" msgid "Access to the underlying \"documents\"" -msgstr "" +msgstr "Toegang tot de onderliggende \"documenten\"" #. W5BL2 #: sf_ui.xhp @@ -24440,7 +24440,7 @@ "par_id181620312953395\n" "help.text" msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script." -msgstr "" +msgstr "De service UI is het startpunt voor het openen, creëren of benaderen van de inhoud van nieuwe of bestaande documenten vanuit een gebruikersscript." #. ERvRF #: sf_ui.xhp @@ -24449,7 +24449,7 @@ "hd_id881587913266307\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definities" #. L8Ate #: sf_ui.xhp @@ -24458,7 +24458,7 @@ "par_id741587913266919\n" "help.text" msgid "A window can be designated using various ways:" -msgstr "" +msgstr "Een venster kan op verschillende manieren worden aangewezen:" #. Bhs9h #: sf_ui.xhp @@ -24467,7 +24467,7 @@ "par_id291587913946648\n" "help.text" msgid "a full path and file name" -msgstr "" +msgstr "een volledig pad en bestandsnaam" #. CK62z #: sf_ui.xhp @@ -24476,7 +24476,7 @@ "par_id991587914045862\n" "help.text" msgid "the last component of the full file name or even only the last component without its suffix" -msgstr "" +msgstr "het laatste onderdeel van de volledige bestandsnaam of zelfs alleen het laatste onderdeel zonder het achtervoegsel" #. 8qLrG #: sf_ui.xhp @@ -24485,7 +24485,7 @@ "par_id541587914079744\n" "help.text" msgid "the title of the window" -msgstr "" +msgstr "de titel van het venster" #. rdSGt #: sf_ui.xhp @@ -24494,7 +24494,7 @@ "par_id191587914134221\n" "help.text" msgid "for new documents, something like \"Untitled 1\"" -msgstr "" +msgstr "voor nieuwe documenten, zoiets als \"Geen titel 1\"" #. GrAxe #: sf_ui.xhp @@ -24503,7 +24503,7 @@ "par_id911587914185746\n" "help.text" msgid "one of the special windows \"BASICIDE\" and \"WELCOMESCREEN\"" -msgstr "" +msgstr "een van de speciale vensters \"BASICIDE\" en \"WELCOMESCREEN\"" #. n5ZLz #: sf_ui.xhp @@ -24512,7 +24512,7 @@ "par_id181587914255236\n" "help.text" msgid "The window name is case-sensitive." -msgstr "" +msgstr "De naam van het venster is hoofdlettergevoelig." #. CC5D5 #: sf_ui.xhp @@ -24521,7 +24521,7 @@ "hd_id541588520711430\n" "help.text" msgid "Document object" -msgstr "" +msgstr "Object 'Document'" #. utsAW #: sf_ui.xhp @@ -24530,7 +24530,7 @@ "par_id841588521238711\n" "help.text" msgid "The methods CreateDocument, CreateBaseDocument, GetDocument and OpenDocument, described below, generate document objects. When a window contains a document, an instance of the Document class represents that document. A counterexample the Basic IDE is not a document but is a window in our terminology. Additionally a document has a type: Calc, Impress, Writer, ..." -msgstr "" +msgstr "De methoden CreateDocument, CreateBaseDocument, GetDocument en OpenDocument, hieronder beschreven, genereren documentobjecten. Als een venster een document bevat, vertegenwoordigt een instantie van de klasse Document dat document. Een tegenvoorbeeld de Basic-IDE is geen document maar een venster in onze terminologie. Daarnaast heeft een document een type: Calc, Impress, Writer, ..." #. CbJ8H #: sf_ui.xhp @@ -24539,7 +24539,7 @@ "par_id331588521254916\n" "help.text" msgid "The specific properties and methods applicable on documents are implemented in a document class." -msgstr "" +msgstr "De specifieke eigenschappen en methoden die van toepassing zijn op documenten zijn geïmplementeerd in een documentklasse." #. CEisb #: sf_ui.xhp @@ -24548,7 +24548,7 @@ "par_id971588521292976\n" "help.text" msgid "The implementation of the document objects class is done in the SFDocuments associated library. See its \"Document\" service." -msgstr "" +msgstr "De implementatie van de documentobjectenklasse wordt gedaan in de SFDocuments geassocieerde bibliotheek. Zie de service \"Document\"." #. 8NGPA #: sf_ui.xhp @@ -24557,7 +24557,7 @@ "hd_id91587913266988\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. 2tFG6 #: sf_ui.xhp @@ -24566,7 +24566,7 @@ "hd_id841587913266618\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. m8i6L #: sf_ui.xhp @@ -24575,7 +24575,7 @@ "par_id521587913266568\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. 48SHW #: sf_ui.xhp @@ -24584,7 +24584,7 @@ "par_id421587913266368\n" "help.text" msgid "ReadOnly" -msgstr "" +msgstr "AlleenLezen" #. GpADs #: sf_ui.xhp @@ -24593,7 +24593,7 @@ "par_id631587914939732\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. nB9z5 #: sf_ui.xhp @@ -24602,7 +24602,7 @@ "par_id951587913266220\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. c5EiC #: sf_ui.xhp @@ -24611,7 +24611,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. vQ8TT #: sf_ui.xhp @@ -24620,7 +24620,7 @@ "par_id351587913266349\n" "help.text" msgid "a valid and unique WindowName for the currently active window. When the window cannot be identified, a zero-length string is returned." -msgstr "" +msgstr "een geldige en unieke WindowName voor het huidige actieve venster. Wanneer het venster niet kan worden geïdentificeerd, wordt een tekenreeks met lengte nul geretourneerd." #. DiCRC #: sf_ui.xhp @@ -24629,7 +24629,7 @@ "par_id658517913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Bjyuv #: sf_ui.xhp @@ -24638,7 +24638,7 @@ "par_id153587913266349\n" "help.text" msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents." -msgstr "" +msgstr "De lijst met de momenteel geopende documenten. Speciale vensters worden genegeerd. Deze lijst bestaat uit een op nul gebaseerde eendimensionale matrix van bestandsnamen (in SF_FileSystem.FileNaming-notatie) of venstertitels voor niet-opgeslagen documenten." #. BH9YJ #: sf_ui.xhp @@ -24647,7 +24647,7 @@ "hd_id511620762163390\n" "help.text" msgid "Constants" -msgstr "" +msgstr "Constanten" #. ziD2D #: sf_ui.xhp @@ -24656,7 +24656,7 @@ "par_id761620761856238\n" "help.text" msgid "Name" -msgstr "" +msgstr "Name" #. eBD6E #: sf_ui.xhp @@ -24665,7 +24665,7 @@ "par_id591620761856238\n" "help.text" msgid "Value" -msgstr "" +msgstr "Waarde" #. 2DU4R #: sf_ui.xhp @@ -24674,7 +24674,7 @@ "par_id711620761856238\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschrijving" #. adCUF #: sf_ui.xhp @@ -24683,7 +24683,7 @@ "par_id341620761856238\n" "help.text" msgid "Macros are always executed" -msgstr "" +msgstr "Macro's worden altijd uitgevoerd" #. 7hEDg #: sf_ui.xhp @@ -24692,7 +24692,7 @@ "par_id101620761893011\n" "help.text" msgid "Macros are never executed" -msgstr "" +msgstr "Macro's worden nooit uitgevoerd" #. 6Jgt7 #: sf_ui.xhp @@ -24701,7 +24701,7 @@ "par_id11620761899780\n" "help.text" msgid "Macro execution depends on user settings" -msgstr "" +msgstr "Macro-uitvoering is afhankelijk van gebruikersinstellingen" #. BTUQ4 #: sf_ui.xhp @@ -24710,7 +24710,7 @@ "par_id311620312548992\n" "help.text" msgid "The examples below show a MsgBox with the names of all currently open documents." -msgstr "" +msgstr "De onderstaande voorbeelden tonen een MsgBox met de namen van alle momenteel geopende documenten." #. DfpBz #: sf_ui.xhp @@ -24719,7 +24719,7 @@ "par_id881608131596153\n" "help.text" msgid "List of Methods in the UI Service" -msgstr "" +msgstr "Lijst met methoden in de UI-service" #. 4fc2p #: sf_ui.xhp @@ -24728,7 +24728,7 @@ "par_id431620322170443\n" "help.text" msgid "Note, as an exception, that the methods marked (*) are not applicable to Base documents." -msgstr "" +msgstr "Merk op dat bij uitzondering de methoden gemarkeerd met (*) niet van toepassing zijn op Base-documenten." #. 778Fh #: sf_ui.xhp @@ -24737,7 +24737,7 @@ "par_id201587913266596\n" "help.text" msgid "Make the specified window active. The method returns True if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection." -msgstr "" +msgstr "Maak het aangegeven venster actief. De methode retourneert True als het aangegeven venster is gevonden en kan worden geactiveerd. Er is geen verandering in de eigenlijke gebruikersinterface als er geen venster overeenkomt met de selectie." #. w9DR4 #: sf_ui.xhp @@ -24746,7 +24746,7 @@ "par_id381587913266946\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname: Zie bovenstaande definities." #. 5kwSb #: sf_ui.xhp @@ -24755,7 +24755,7 @@ "par_id13159655484952\n" "help.text" msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a Document service instance." -msgstr "" +msgstr "Creëert en bewaart een nieuw %PRODUCTNAME-Base-document dat een lege database van het opgegeven type insluit. De methode retourneert een service-instantie Document." #. gqGpB #: sf_ui.xhp @@ -24764,7 +24764,7 @@ "par_id441596554849949\n" "help.text" msgid "filename : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning" -msgstr "" +msgstr "filename : Identificeert het bestand dat moet worden gemaakt. Het moet de notatie SF_FileSystem.FileNaming volgen. Als het bestand al bestaat, wordt het zonder waarschuwing overschreven." #. Jub7D #: sf_ui.xhp @@ -24773,7 +24773,7 @@ "par_id381596554849698\n" "help.text" msgid "embeddeddatabase : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"." -msgstr "" +msgstr "embeddeddatabase : \"HSQLDB\" (standaard), \"FIREBIRD\" of \"CALC\"." #. BWgpN #: sf_ui.xhp @@ -24782,7 +24782,7 @@ "par_id521596554849185\n" "help.text" msgid "registrationname : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning." -msgstr "" +msgstr "registrationname : De naam die wordt gebruikt om de nieuwe database op te slaan in het databaseregister. When = \"\" (standaard), er vindt geen registratie plaats. Als de naam al bestaat, wordt deze zonder waarschuwing overschreven." #. AFin6 #: sf_ui.xhp @@ -24791,7 +24791,7 @@ "par_id181629364905056\n" "help.text" msgid "calcfilename : Only when embeddeddatabase = \"CALC\", calcfilename represents the file containing the tables as Calc sheets. The file must exist or an error is raised." -msgstr "" +msgstr "calcfilename : Alleen wanneer embeddeddatabase = \"CALC\", vertegenwoordigt calcfilename het bestand dat de tabellen bevat als Calc-bladen. Het bestand moet bestaan, anders treedt er een fout op." #. GtB5n #: sf_ui.xhp @@ -24800,7 +24800,7 @@ "par_id651588521753997\n" "help.text" msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object." -msgstr "" +msgstr "Maak een nieuw %PRODUCTNAME-document van een bepaald type of op basis van een bepaald sjabloon. De methode retourneert een documentobject." #. JnBPt #: sf_ui.xhp @@ -24809,7 +24809,7 @@ "par_id51588521753302\n" "help.text" msgid "documenttype : \"Calc\", \"Writer\", etc. If absent, the templatefile argument must be present." -msgstr "" +msgstr "documenttype : \"Calc\", \"Writer\", enz. Indien afwezig, moet het argument templatefile aanwezig zijn." #. BQ6UD #: sf_ui.xhp @@ -24818,7 +24818,7 @@ "par_id401588522663325\n" "help.text" msgid "templatefile : The full FileName of the template to build the new document on. If the file does not exist, the argument is ignored. The FileSystem service provides the TemplatesFolder and UserTemplatesFolder properties to help to build the argument." -msgstr "" +msgstr "templatefile : De volledige FileName van de sjabloon om het nieuwe document op te bouwen. Als het bestand niet bestaat, wordt het argument genegeerd. De service FileSystem biedt de eigenschappen TemplatesFolder en UserTemplatesFolder om het argument op te bouwen." #. VeNQg #: sf_ui.xhp @@ -24827,7 +24827,7 @@ "par_id131588522824366\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden: indien True, open het nieuwe document op de achtergrond (standaard = False). Om met voorzichtigheid te gebruiken: activering of sluiting achteraf kan alleen programmatisch gebeuren." #. gWFt9 #: sf_ui.xhp @@ -24836,7 +24836,7 @@ "par_id701620762417802\n" "help.text" msgid "In both examples below, the first call to CreateDocument method creates a blank Calc document, whereas the second creates a document from a template file." -msgstr "" +msgstr "In beide onderstaande voorbeelden creëert de eerste aanroep van de methode CreateDocument een leeg Calc-document, terwijl de tweede een document maakt vanuit een sjabloonbestand." #. TxY93 #: sf_ui.xhp @@ -24845,7 +24845,7 @@ "par_id201588520551463\n" "help.text" msgid "Returns a document object referring to either the active window, a given window or the active document." -msgstr "" +msgstr "Retourneert een documentobject dat verwijst naar het actieve venster, een bepaald venster of het actieve document." #. xgMAv #: sf_ui.xhp @@ -24854,7 +24854,7 @@ "par_id851588520551368\n" "help.text" msgid "windowname: See the definitions above. If this argument is absent, the active window is used. UNO objects of types com.sun.star.lang.XComponent or com.sun.star.comp.dba.ODatabaseDocument are also accepted. Thus passing ThisComponent or ThisDatabaseDocument as argument creates a new SFDocuments.Document, Base or Calc service." -msgstr "" +msgstr "windowname: Zie de definities hierboven. Als dit argument ontbreekt, wordt het actieve venster gebruikt. UNO-objecten van het type com.sun.star.lang.XComponent of com.sun.star.comp.dba.ODatabaseDocument worden ook geaccepteerd. Door ThisComponent of ThisDatabaseDocument als argument door te geven, ontstaat er een nieuwe service SFDocuments. Document, Base of Calc." #. AAjDB #: sf_ui.xhp @@ -24863,7 +24863,7 @@ "par_id521620330287071\n" "help.text" msgid "To access the name of the currently active window, refer to the ActiveWindow property." -msgstr "" +msgstr "Raadpleeg de eigenschap ActiveWindow om toegang te krijgen tot de naam van het huidige actieve venster." #. CYsyC #: sf_ui.xhp @@ -24872,7 +24872,7 @@ "par_id24158798644169\n" "help.text" msgid "Maximizes the active window or the given window." -msgstr "" +msgstr "Maximaliseert het actieve venster of het gegeven venster." #. hD4TC #: sf_ui.xhp @@ -24881,7 +24881,7 @@ "par_id951587986441954\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is maximized." -msgstr "" +msgstr "windowname: zie de definities hierboven. Als dit argument ontbreekt, wordt het actieve venster gemaximaliseerd." #. vzDdG #: sf_ui.xhp @@ -24890,7 +24890,7 @@ "par_id871587986592696\n" "help.text" msgid "Minimizes the active window or the given window." -msgstr "" +msgstr "Minimaliseert het actieve venster of het aangegeven venster." #. Enys5 #: sf_ui.xhp @@ -24899,7 +24899,7 @@ "par_id751587986592626\n" "help.text" msgid "windowname: see the definitions above. If this argument is absent, the active window is minimized." -msgstr "" +msgstr "windowname: zie de definities hierboven. Als dit argument ontbreekt, wordt het actieve venster geminimaliseerd." #. WHDDQ #: sf_ui.xhp @@ -24908,7 +24908,7 @@ "par_id691596555746539\n" "help.text" msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object." -msgstr "" +msgstr "Open een bestaand %PRODUCTNAME-Base-document. De methode retourneert een documentobject." #. q2E3C #: sf_ui.xhp @@ -24917,7 +24917,7 @@ "par_id231596555746385\n" "help.text" msgid "filename: Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning" -msgstr "" +msgstr "filename: Identificeert het te openen bestand. Het moet de notatie SF_FileSystem.FileNaming hebben. Als het bestand al bestaat, wordt het zonder waarschuwing overschreven" #. mtpoL #: sf_ui.xhp @@ -24926,7 +24926,7 @@ "par_id711596555746281\n" "help.text" msgid "registrationname: The name to use to find the database in the databases register. It is ignored if FileName <> \"\"." -msgstr "" +msgstr "registrationname: De naam die moet worden gebruikt om de database in het databaseregister te vinden. Het wordt genegeerd als FileName <> \"\"." #. TqAd2 #: sf_ui.xhp @@ -24935,7 +24935,7 @@ "id721596556313545\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "macroexecution: 0 = gedrag wordt bepaald door de gebruikersconfiguratie, 1 = macro's zijn niet uitvoerbaar, 2 = macro's zijn uitvoerbaar." #. Dok5e #: sf_ui.xhp @@ -24944,7 +24944,7 @@ "par_id941620762989833\n" "help.text" msgid "To improve code readability you can use predefined constants for the macroexecution argument, as in the examples above." -msgstr "" +msgstr "Om de leesbaarheid van de code te verbeteren, kunt u vooraf gedefinieerde constanten gebruiken voor het argument macroexecution , zoals in de bovenstaande voorbeelden." #. LBgGQ #: sf_ui.xhp @@ -24953,7 +24953,7 @@ "par_id541588523635283\n" "help.text" msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns Nothing (in Basic) / None (in Python) if the opening failed, even when the failure is caused by a user decision." -msgstr "" +msgstr "Opent een bestaand %PRODUCTNAME-document met de gegeven opties. Retourneert een documentobject of een van zijn subklassen. De methode retourneert Nothing (in Basic) / None (in Python) als de opening is mislukt, zelfs als de fout wordt veroorzaakt door een gebruikersbeslissing." #. 8tjbg #: sf_ui.xhp @@ -24962,7 +24962,7 @@ "par_id481588523635890\n" "help.text" msgid "filename: Identifies the file to open. It must follow the FileNaming notation of the FileSystem service." -msgstr "" +msgstr "filename: Identificeert het te openen bestand. Het moet de notatie FileNaming volgen van de service FileSystem." #. PWvQz #: sf_ui.xhp @@ -24971,7 +24971,7 @@ "par_id451588523635507\n" "help.text" msgid "password: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password." -msgstr "" +msgstr "password: Te gebruiken wanneer het document is beveiligd. Als het onjuist of afwezig is terwijl het document is beveiligd, wordt de gebruiker gevraagd een wachtwoord in te voeren." #. 2jjFK #: sf_ui.xhp @@ -24980,7 +24980,7 @@ "par_id611588524329781\n" "help.text" msgid "readonly: Default = False." -msgstr "" +msgstr "readonly: Standaard = False." #. BcyEp #: sf_ui.xhp @@ -24989,7 +24989,7 @@ "par_id641588523635497\n" "help.text" msgid "hidden: if True, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically." -msgstr "" +msgstr "hidden: indien True, opent het nieuwe document op de achtergrond (standaard = False). Om met voorzichtigheid te gebruiken: activering of sluiting achteraf kan alleen programmatisch gebeuren." #. sbgeH #: sf_ui.xhp @@ -24998,7 +24998,7 @@ "par_id981588524474719\n" "help.text" msgid "macroexecution: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable." -msgstr "" +msgstr "macroexecution: 0 = gedrag wordt bepaald door de gebruikersconfiguratie, 1 = macro's zijn niet uitvoerbaar, 2 = macro's zijn uitvoerbaar." #. AF7iF #: sf_ui.xhp @@ -25007,7 +25007,7 @@ "par_id611588524584693\n" "help.text" msgid "filtername: The name of a filter that should be used for loading the document. If present, the filter must exist." -msgstr "" +msgstr "filtername: De naam van een filter dat moet worden gebruikt voor het laden van het document. Indien aanwezig, moet het filter aanwezig zijn." #. MKueU #: sf_ui.xhp @@ -25016,7 +25016,7 @@ "par_id191588524634348\n" "help.text" msgid "filteroptions: An optional string of options associated with the filter." -msgstr "" +msgstr "filteroptions: Een optionele tekenreeks met opties die aan het filter zijn gekoppeld." #. qMTrj #: sf_ui.xhp @@ -25025,7 +25025,7 @@ "par_id751587986945965\n" "help.text" msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling Resize without arguments restores it." -msgstr "" +msgstr "Verkleint en/of verplaatst het actieve venster. Afwezige en negatieve argumenten worden genegeerd. Als het venster geminimaliseerd of gemaximaliseerd is, zal het aanroepen van Resize het zonder argumenten herstellen." #. 6NUcv #: sf_ui.xhp @@ -25034,7 +25034,7 @@ "par_id441587986945696\n" "help.text" msgid "left, top: Distances of the top-left corner from top and left edges of the screen, in pixels." -msgstr "" +msgstr "left, top: Afstanden van de linkerbovenhoek tot de boven- en linkerrand van het scherm, in pixels." #. AdcjG #: sf_ui.xhp @@ -25043,7 +25043,7 @@ "par_id601587987453825\n" "help.text" msgid "width, height: New dimensions of the window, in pixels." -msgstr "" +msgstr "width, height: Nieuwe afmetingen van het venster, in pixels." #. vDNVH #: sf_ui.xhp @@ -25052,7 +25052,7 @@ "par_id801587987507028\n" "help.text" msgid "In the following examples, the width and height of the window are changed while top and left are left unchanged." -msgstr "" +msgstr "In de volgende voorbeelden worden de breedte en hoogte van het venster gewijzigd terwijl top en links ongewijzigd blijven." #. HP2Jb #: sf_ui.xhp @@ -25061,7 +25061,7 @@ "par_id21620332301809\n" "help.text" msgid "To resize a window that is not active, first activate it using the Activate method." -msgstr "" +msgstr "Om de grootte van een inactief venster te wijzigen, activeert u het eerst met de methode Activate." #. NnBWM #: sf_ui.xhp @@ -25070,7 +25070,7 @@ "par_id281587996421580\n" "help.text" msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state." -msgstr "" +msgstr "Geef een tekst en een voortgangsbalk weer in de statusbalk van het actieve venster. Alle volgende oproepen in dezelfde macro-run verwijzen naar dezelfde statusbalk van hetzelfde venster, zelfs als het venster niet meer zichtbaar is. Een aanroep zonder argumenten zet de statusbalk terug naar de normale status." #. rDr2L #: sf_ui.xhp @@ -25079,7 +25079,7 @@ "par_id71587996421829\n" "help.text" msgid "text: An optional text to be displayed in front of the progress bar." -msgstr "" +msgstr "text: Een optionele tekst die vóór de voortgangsbalk moet worden weergegeven." #. hbCpG #: sf_ui.xhp @@ -25088,7 +25088,7 @@ "par_id881587996421777\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage: een optionele voortgangsgraad tussen 0 en 100." #. qbGdy #: sf_ui.xhp @@ -25097,7 +25097,7 @@ "bas_id651620332601083\n" "help.text" msgid "' Resets the statusbar" -msgstr "" +msgstr "' Herstelt de statusbalk" #. oQfWc #: sf_ui.xhp @@ -25106,7 +25106,7 @@ "par_id571598864255776\n" "help.text" msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog." -msgstr "" +msgstr "Geeft een niet-modaal dialoogvenster weer. Geef de titel, een verklarende tekst en een voortgangspercentage op dat op een voortgangsbalk moet worden weergegeven. Het dialoogvenster blijft zichtbaar totdat de methode zonder argumenten wordt aangeroepen of totdat de gebruiker het dialoogvenster handmatig sluit." #. drhV6 #: sf_ui.xhp @@ -25115,7 +25115,7 @@ "par_id441598864535695\n" "help.text" msgid "title : The title appearing on top of the dialog box. Default = \"ScriptForge\"." -msgstr "" +msgstr "title : De titel die bovenaan het dialoogvenster verschijnt. Standaard = \"ScriptForge\"." #. jvrZV #: sf_ui.xhp @@ -25124,7 +25124,7 @@ "par_id311598864255297\n" "help.text" msgid "text: An optional text to be displayed above the progress bar." -msgstr "" +msgstr "text: Een optionele tekst die boven de voortgangsbalk moet worden weergegeven." #. Qj3N3 #: sf_ui.xhp @@ -25133,7 +25133,7 @@ "par_id881598864255424\n" "help.text" msgid "percentage: an optional degree of progress between 0 and 100." -msgstr "" +msgstr "percentage: een optionele voortgangsgraad tussen 0 en 100." #. rVBX3 #: sf_ui.xhp @@ -25142,7 +25142,7 @@ "bas_id651620333289753\n" "help.text" msgid "' Closes the Progress Bar window" -msgstr "" +msgstr "' Sluit het venster met de voortgangsbalk" #. u3gZ8 #: sf_ui.xhp @@ -25151,7 +25151,7 @@ "pyc_id761620333269236\n" "help.text" msgid "# Closes the Progress Bar window" -msgstr "" +msgstr "# Sluit het venster met de voortgangsbalk" #. ZEG6t #: sf_ui.xhp @@ -25160,7 +25160,7 @@ "par_id431588587119925\n" "help.text" msgid "Returns True if the given window could be identified." -msgstr "" +msgstr "Retourneert True als het opgegeven venster kon worden geïdentificeerd." #. rkJbT #: sf_ui.xhp @@ -25169,7 +25169,7 @@ "par_id45158858711917\n" "help.text" msgid "windowname: see the definitions above." -msgstr "" +msgstr "windowname: Zie bovenstaande definities." #. NyP5B #: sf_writer.xhp @@ -25178,7 +25178,7 @@ "tit\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Service SFDocuments.Writer" #. 5i7vz #: sf_writer.xhp @@ -25187,7 +25187,7 @@ "hd_id731582733781114\n" "help.text" msgid "SFDocuments.Writer service" -msgstr "" +msgstr "Service SFDocuments.Writer" #. dUwYw #: sf_writer.xhp @@ -25196,7 +25196,7 @@ "par_id381589189355849\n" "help.text" msgid "The SFDocuments shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents." -msgstr "" +msgstr "De gedeelde bibliotheek SFDocuments biedt een aantal methoden en eigenschappen om het beheer en de verwerking van %PRODUCTNAME-documenten te vergemakkelijken." #. FvF79 #: sf_writer.xhp @@ -25205,7 +25205,7 @@ "par_id351591014177269\n" "help.text" msgid "Some methods are generic for all types of documents and are inherited from the SF_Document module, whereas other methods that are specific for Writer documents are defined in the SF_Writer module." -msgstr "" +msgstr "Sommige methoden zijn generiek voor alle soorten documenten en worden overgenomen van de module SF_Document, terwijl andere methoden die specifiek zijn voor Writer-documenten worden gedefinieerd in de module SF_Writer." #. ojZFF #: sf_writer.xhp @@ -25214,7 +25214,7 @@ "par_id591589189364267\n" "help.text" msgid "The SF_Writer module is focused on:" -msgstr "" +msgstr "De module SF_Writer is gericht op:" #. LTpqJ #: sf_writer.xhp @@ -25223,7 +25223,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Service aanroep" #. 3LPrN #: sf_writer.xhp @@ -25232,7 +25232,7 @@ "par_id591589191059889\n" "help.text" msgid "The Writer service is closely related to the UI service of the ScriptForge library. Below are a few examples of how the Writer service can be invoked." -msgstr "" +msgstr "De service Writer is nauw verwant aan de UI-service van de ScriptForge-bibliotheek. Hieronder staan een paar voorbeelden van hoe de service Writer kan worden aangeroepen." #. NvcUB #: sf_writer.xhp @@ -25241,7 +25241,7 @@ "par_id551621623999947\n" "help.text" msgid "The code snippet below creates a Writer service instance that corresponds to the currently active Writer document." -msgstr "" +msgstr "Het onderstaande codefragment maakt een Writer service-instantie die overeenkomt met het momenteel actieve Writer-document." #. 4P2m8 #: sf_writer.xhp @@ -25250,7 +25250,7 @@ "par_id341621467500466\n" "help.text" msgid "Another way to create an instance of the Writer service is using the UI service. In the following example, a new Writer document is created and oDoc is a Writer service instance:" -msgstr "" +msgstr "Een andere manier om een instantie van de service Writer te maken, is door de UI-service te gebruiken. In het volgende voorbeeld wordt een nieuw Writer-document gemaakt en is oDoc een Writer service-instantie:" #. dENpx #: sf_writer.xhp @@ -25259,7 +25259,7 @@ "par_id921621467621019\n" "help.text" msgid "Or using the OpenDocument method from the UI service:" -msgstr "" +msgstr "Of gebruik de methode OpenDocument van de UI-service:" #. WopGb #: sf_writer.xhp @@ -25268,7 +25268,7 @@ "par_id741621467697967\n" "help.text" msgid "It is also possible to instantiate the Writer service using the CreateScriptService method:" -msgstr "" +msgstr "Het is ook mogelijk om de service Writer te instantiëren met behulp van de methode CreateScriptService:" #. WTDbw #: sf_writer.xhp @@ -25277,7 +25277,7 @@ "par_id271621467810774\n" "help.text" msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered." -msgstr "" +msgstr "In het bovenstaande voorbeeld is \"MijnBestand.odt\" de naam van een geopend documentvenster. Als dit argument niet wordt opgegeven, wordt het actieve venster beschouwd." #. EEAZF #: sf_writer.xhp @@ -25286,7 +25286,7 @@ "par_id71158288562139\n" "help.text" msgid "It is recommended to free resources after use:" -msgstr "" +msgstr "Het wordt aanbevolen om na gebruik middelen vrij te maken:" #. wPWMP #: sf_writer.xhp @@ -25295,7 +25295,7 @@ "par_id231611610666018\n" "help.text" msgid "However, if the document was closed using the CloseDocument method, it becomes unnecessary to free resources using the command described above." -msgstr "" +msgstr "Als het document echter is gesloten met behulp van de methode CloseDocument, wordt het niet nodig om bronnen vrij te maken met de hierboven beschreven opdracht." #. 7JvGW #: sf_writer.xhp @@ -25304,7 +25304,7 @@ "par_id71611090922315\n" "help.text" msgid "The use of the prefix \"SFDocuments.\" while calling the service is optional." -msgstr "" +msgstr "Het gebruik van het voorvoegsel \"SFDocuments.\" tijdens het aanroepen van de service is optioneel." #. EcQjk #: sf_writer.xhp @@ -25313,7 +25313,7 @@ "hd_id291631196803182\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definities" #. ausGU #: sf_writer.xhp @@ -25322,7 +25322,7 @@ "hd_id351582885195476\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #. VB9Jj #: sf_writer.xhp @@ -25331,7 +25331,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Methoden" #. ioXEB #: sf_writer.xhp @@ -25340,7 +25340,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the Writer Service" -msgstr "" +msgstr "Lijst met methoden in de Writer-service" #. 3uC2J #: sf_writer.xhp @@ -25349,7 +25349,7 @@ "par_id501623063693649\n" "help.text" msgid "Depending on the parameters provided this method will return:" -msgstr "" +msgstr "Afhankelijk van de parameters retourneert deze methode:" #. YpgWy #: sf_writer.xhp @@ -25358,7 +25358,7 @@ "par_id611623063742045\n" "help.text" msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in the document (if the form argument is absent)" -msgstr "" +msgstr "Een zero-based matrix (of een tuple in Python) met de namen van alle forms die een aangegeven werkblad bevat (indien er bij de aanroep geen argument form is)" #. CNfBX #: sf_writer.xhp @@ -25367,7 +25367,7 @@ "par_id641623063744536\n" "help.text" msgid "A SFDocuments.Form service instance representing the form specified as argument." -msgstr "" +msgstr "Een instantie van de service SFDocuments.Form die staat voor het form als dat als argument wordt gebruikt." #. ULjtu #: sf_writer.xhp @@ -25376,7 +25376,7 @@ "par_id821623076570573\n" "help.text" msgid "This method is applicable only for Writer documents. Calc and Base documents have their own Forms method in the Calc and Base services, respectively." -msgstr "" +msgstr "Deze methode is alleen voor Writer-documenten. Calc en Base documenten hebben hun eigen methode Forms respectievelijk in de service Calc en de service Base." #. ty8pu #: sf_writer.xhp @@ -25385,7 +25385,7 @@ "par_id451623063459286\n" "help.text" msgid "form: The name or index corresponding to a form stored in the document. If this argument is absent, the method will return a list with the names of all forms available in the document." -msgstr "" +msgstr "form: De naam of index die overeenkomt met een formulier dat in het document is opgeslagen. Als dit argument ontbreekt, retourneert de methode een lijst met de namen van alle formulieren die in het document beschikbaar zijn." #. 7Ywp9 #: sf_writer.xhp @@ -25394,7 +25394,7 @@ "par_id251623063305557\n" "help.text" msgid "In the following examples, the first line gets the names of all forms in the document and the second line retrieves the Form object of the form named \"Form_A\"." -msgstr "" +msgstr "In de volgende voorbeelden haalt de eerste regel de namen op van alle formulieren in het document en haalt de tweede regel het object Form op van het formulier met de naam \"Form_A\"." #. y684J #: sf_writer.xhp @@ -25403,7 +25403,7 @@ "par_id31592919577984\n" "help.text" msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the SetPrinter method of the Document service. Returns True when successful." -msgstr "" +msgstr "Stuur de inhoud van het document naar de printer. De printer kan eerder standaard gedefinieerd zijn, door de gebruiker of door de SetPrinter methode van de Document-service. Retourneert True wanneer succesvol." #. CKDb5 #: sf_writer.xhp @@ -25412,7 +25412,7 @@ "par_id441592919577809\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages" -msgstr "" +msgstr "pages: De pagina's die als een tekenreeks moeten worden afgedrukt, zoals in de gebruikersinterface. Voorbeeld: \"1-4;10;15-18\". Standaard = alle pagina's" #. mYCkV #: sf_writer.xhp @@ -25421,7 +25421,7 @@ "par_id221636020923278\n" "help.text" msgid "copies: The number of copies, default is 1." -msgstr "" +msgstr "copies: Het aantal exemplaren, standaard is 1." #. aFEAa #: sf_writer.xhp @@ -25430,7 +25430,7 @@ "par_id121636020926764\n" "help.text" msgid "printbackground: Prints the background image when True (default)." -msgstr "" +msgstr "printbackground: Drukt de achtergrondafbeelding af indien True (standaard)." #. D4krC #: sf_writer.xhp @@ -25439,7 +25439,7 @@ "par_id261636020927276\n" "help.text" msgid "printblankpages: When False (default), omits empty pages." -msgstr "" +msgstr "printblankpages: Wanneer False (standaard), worden lege pagina's weggelaten." #. LFSzm #: sf_writer.xhp @@ -25448,7 +25448,7 @@ "par_id021636020927484\n" "help.text" msgid "printevenpages: Prints even pages when True (default)." -msgstr "" +msgstr "printevenpages: Drukt zelfs pagina's af wanneer True (standaard)." #. iewN5 #: sf_writer.xhp @@ -25457,7 +25457,7 @@ "par_id391636020927676\n" "help.text" msgid "printoddpages: Print odd pages when True (default)." -msgstr "" +msgstr "printoddpages: Print oneven pagina's wanneer True (standaard)." #. 4mYCT #: sf_writer.xhp @@ -25466,4 +25466,4 @@ "par_id121636021103996\n" "help.text" msgid "printimages: Print graphic objects when True (default)." -msgstr "" +msgstr "printimages: Grafische objecten afdrukken wanneer True (standaard)." diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -1526,7 +1526,7 @@ "par_id31455954\n" "help.text" msgid "954 Variable expected" -msgstr "954 Variable verwacht" +msgstr "954 Variabele verwacht" #. ovp3T #: 00000003.xhp @@ -1580,7 +1580,7 @@ "par_id31455960\n" "help.text" msgid "960 Variable not found" -msgstr "960 Variable niet gevonden" +msgstr "960 Variabele niet gevonden" #. 3xV2f #: 00000003.xhp @@ -2192,7 +2192,7 @@ "par_id3154118\n" "help.text" msgid "Examples for variable declarations:" -msgstr "Voorbeelden van variabelendeclaraties:" +msgstr "Voorbeelden van declaraties:" #. Jqt8W #: 01020100.xhp @@ -2228,7 +2228,7 @@ "par_idm1341205936\n" "help.text" msgid "Dim c As Boolean 'Declares c as a Boolean variable that can be TRUE or FALSE'" -msgstr "Dim c As Boolean \"Beschouwt c als een Booleaanse variabele, die TRUE of False kan zijn\"" +msgstr "Dim c As Boolean 'Beschouwt c als een Booleaanse variabele, die TRUE of FALSE kan zijn" #. PWdLi #: 01020100.xhp @@ -2282,7 +2282,7 @@ "par_id521619551687371\n" "help.text" msgid "The Variant type is a special data type that can store any kind of value. To learn more, refer to the section The Variant type below." -msgstr "Het type Variant is een datatype dat elke mogelijke waarde kan bevatten. Lees het gedeelte Het Variant type." +msgstr "Het type Variant is een datatype dat elke mogelijke waarde kan bevatten. Lees het gedeelte Het Variant-type." #. RENXG #: 01020100.xhp @@ -2291,7 +2291,7 @@ "hd_id3149331\n" "help.text" msgid "Forcing Variable Declarations" -msgstr "Variabelendeclaraties afdwingen" +msgstr "Declaratie van variabelen afdwingen" #. PcGki #: 01020100.xhp @@ -2453,7 +2453,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 "Enkele variabelen kunnen positieve of negatieve waarden aannemen die variëren van 3,402823 x 10E38 tot 1,401298 x 10E-45. Enkele variabelen zijn variabelen met een drijvende komma, waarbij de decimale precisie afneemt naarmate het niet-decimale deel van het getal toeneemt. Enkele variabelen zijn geschikt voor wiskundige berekeningen met gemiddelde precisie. Berekeningen kosten meer tijd dan voor variabelen met gehele getallen, maar zijn sneller dan berekeningen met dubbele variabelen. Een enkele variabele vereist 4 bytes geheugen. Het declaratieteken is \"!\"." +msgstr "Variabelen kunnen positieve of negatieve waarden aannemen die variëren van 3,402823 x 10E38 tot 1,401298 x 10E-45. Het zijn variabelen met een drijvende komma, waarbij de decimale precisie afneemt naarmate het niet-decimale deel van het getal toeneemt. Ze zijn geschikt voor wiskundige berekeningen met gemiddelde precisie. Berekeningen kosten meer tijd dan voor variabelen met gehele getallen, maar zijn sneller dan berekeningen met double variabelen. Een variabele vereist 4 bytes geheugen. Het declaratieteken is \"!\"." #. X2BBe #: 01020100.xhp @@ -2471,7 +2471,7 @@ "par_id3150953\n" "help.text" msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"." -msgstr "Dubbele variabelen kunnen positieve of negatieve waarden aannemen variërend van 1,79769313486232 x 10E308 tot 4,94065645841247 x 10E-324. Dubbele variabelen zijn variabelen met een drijvende komma, waarbij de decimale precisie afneemt naarmate het niet-decimale deel van het getal toeneemt. Dubbele variabelen zijn geschikt voor nauwkeurige berekeningen. Berekeningen kosten meer tijd dan voor enkele variabelen. Een dubbele variabele vereist 8 bytes geheugen. Het declaratieteken is \"#\"." +msgstr "Double variabelen kunnen positieve of negatieve waarden aannemen variërend van 1,79769313486232 x 10E308 tot 4,94065645841247 x 10E-324. Double variabelen zijn variabelen met een drijvende komma, waarbij de decimale precisie afneemt naarmate het niet-decimale deel van het getal toeneemt. Double variabelen zijn geschikt voor nauwkeurige berekeningen. Berekeningen kosten meer tijd dan voor normale variabelen. Een double variabele vereist 8 bytes geheugen. Het declaratieteken is \"#\"." #. KYBFy #: 01020100.xhp @@ -2480,7 +2480,7 @@ "par_idm1341130144\n" "help.text" msgid "Dim Variable#" -msgstr "Dim Variable#" +msgstr "Dim Variabele#" #. vFZcZ #: 01020100.xhp @@ -2696,7 +2696,7 @@ "par_id711619622934043\n" "help.text" msgid "Arguments with type Variant or Any passed in function calls are not checked for their types." -msgstr "De argumenten in de aanroep van een functie met type Variant en Any worden niet op type gecontroleerd." +msgstr "De argumenten in de aanroep van een functie met type Variant en Any worden niet op type gecontroleerd." #. qFpUB #: 01020100.xhp @@ -2777,7 +2777,7 @@ "par_id3149546\n" "help.text" msgid "Arrays must be declared with the Dim statement. There are several ways to define the index range of an array:" -msgstr "Matrices moeten gedeclareerd worden met de Dim-instructie. Het indexbereik van een matrix kan op verschillende manieren gedefinieerd worden." +msgstr "Matrices moeten gedeclareerd worden met de instructie Dim. Het indexbereik van een matrix kan op verschillende manieren gedefinieerd worden." #. w9moW #: 01020100.xhp @@ -3614,7 +3614,7 @@ "par_id3154686\n" "help.text" msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)" -msgstr "Lange regels kunnen in verschillende delen opgesplitst worden door een spatie en een onderstrepingsteken _ als de laatste twee tekens van een regel in te voegen. De regel wordt hierdoor met de volgende regel verbonden zodat één logische regel ontstaat. (Als 'Option Compatible' in dezelfde BASIC-module gebruikt wordt, is de functie voor regeldoorgang ook geldig voor opmerkingsregels.)" +msgstr "Lange regels kunnen in verschillende delen opgesplitst worden door een spatie en een onderstrepingsteken _ als de laatste twee tekens van een regel in te voegen. De regel wordt hierdoor met de volgende regel verbonden zodat één logische regel ontstaat. (Als 'Option Compatible' in dezelfde BASIC-module gebruikt wordt, is de functie voor regeldoorloop ook geldig voor opmerkingsregels.)" #. BmtEY #: 01030200.xhp @@ -3623,7 +3623,7 @@ "par_id3151042\n" "help.text" msgid "If you press the Run BASIC icon on the Macro bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution." -msgstr "Wanneer u op het pictogramRun BASIC drukt op de werkbalkMacro , start het programma bij de eerste lijn van de BASIC-editor. Het programma begint bij de eerste Subroutine of Functie en dan stopt het programma. Het \"Sub Main\" krijgt geen voorrang op de uitvoering van het programma." +msgstr "Wanneer u op het pictogram Run BASIC drukt op de werkbalk Macro, start het programma bij de eerste lijn van de BASIC-editor. Het programma begint bij de eerste Subroutine of Functie en dan stopt het programma. Het \"Sub Main\" krijgt geen voorrang op de uitvoering van het programma." #. YrvUy #: 01030200.xhp @@ -3821,7 +3821,7 @@ "hd_id3159224\n" "help.text" msgid "Breakpoints and Single Step Execution" -msgstr "Onderbrekingspunten en Stap voor stap-uitvoering" +msgstr "Onderbrekingspunten en uitvoering Stap voor stap" #. Fb5tF #: 01030300.xhp @@ -3830,7 +3830,7 @@ "par_id3150682\n" "help.text" msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position." -msgstr "Stap voor Stap-uitvoering (stapsgewijze uitvoering) maakt het u mogelijk om elke regel in uw programma op fouten te controleren. Op deze manier worden fouten gemakkelijk opgespoord aangezien u het resultaat van elke stap direct kunt zien. Een aanwijzer in de onderbrekingspunt-kolom van het venster Bewerken geeft de huidige regel aan. Bovendien kunt u een onderbrekingspunt instellen als u wilt dat het programma op een specifieke plaats wordt onderbroken." +msgstr "De stapsgewijze uitvoering maakt het mogelijk om elke regel in uw programma op fouten te controleren. Op deze manier worden fouten gemakkelijk opgespoord aangezien u het resultaat van elke stap direct kunt zien. Een aanwijzer in de onderbrekingspunt-kolom van het venster Bewerken geeft de huidige regel aan. Bovendien kunt u een onderbrekingspunt instellen als u wilt dat het programma op een specifieke plaats wordt onderbroken." #. ChbMW #: 01030300.xhp @@ -3848,7 +3848,7 @@ "par_id3155805\n" "help.text" msgid "The single step execution using the Single Step icon causes the program to branch into procedures and functions." -msgstr "De Stap voor stap-uitvoering met behulp van het pictogram Stap voor stap zorgt ervoor dat het programma procedures en functies doorloopt." +msgstr "De uitvoering met behulp van het pictogram Stap voor stap zorgt ervoor dat het programma procedures en functies doorloopt." #. GmkFd #: 01030300.xhp @@ -3857,7 +3857,7 @@ "par_id3151110\n" "help.text" msgid "The procedure step execution using the Procedure Step icon causes the program to skip over procedures and functions as a single step." -msgstr "De Procedurestap-uitvoering met behulp van het pictogram Procedurestap zorgt ervoor dat het programma als één enkele stap over procedures en functies stapt." +msgstr "De uitvoering met behulp van het pictogram Procedurestap zorgt ervoor dat het programma als één enkele stap over procedures en functies stapt." #. fcUGR #: 01030300.xhp @@ -3992,7 +3992,7 @@ "hd_id3150594\n" "help.text" msgid "List of Run-Time Errors" -msgstr "Lijst van Runtime-fouten." +msgstr "Lijst van Run-time fouten" #. DTrbM #: 01030400.xhp @@ -4262,7 +4262,7 @@ "par_id3147009\n" "help.text" msgid "Choose whether you want to export the library as an extension or as a basic library." -msgstr "Kies of u de bibliotheek als een extensie of als een basisbibliotheek wilt exporteren." +msgstr "Kies of u de bibliotheek als een extensie of als een Basic bibliotheek wilt exporteren." #. PP8cN #: 01030400.xhp @@ -4685,7 +4685,7 @@ "par_id501599831822339\n" "help.text" msgid "...New document created with File - New or with the New icon. Note that this event also fires when Basic IDE opens." -msgstr "...Nieuw document gemaakt met Bestand- Nieuw of met het pictogram Nieuw. Merk op dat deze gebeurtenis ook plaats vindt als BASIC IDE opent." +msgstr "...Nieuw document gemaakt met Bestand - Nieuw of met het pictogram Nieuw. Merk op dat deze gebeurtenis ook plaatsvindt als BASIC IDE opent." #. HBjid #: 01040000.xhp @@ -4820,7 +4820,7 @@ "par_id331599838046012\n" "help.text" msgid "Document layout is getting removed." -msgstr "De documentlay-out wordt verwijderd." +msgstr "De lay-out van het document wordt verwijderd." #. 7FemV #: 01040000.xhp @@ -5261,7 +5261,7 @@ "par_id131600158369191\n" "help.text" msgid "Most events relate to documents, except OnStartApp, OnCloseApp, OnCreate and OnLoadFinished that occur at application level. OnSubComponentOpened, and OnSubComponentClosed events are fired by database's forms." -msgstr "De meeste gebeurtenissen hebben betrekking op documenten, behalve OnStartApp, OnCloseApp, OnCreate en OnLoadFinished die plaatsvinden op applicatieniveau. OnSubComponentOpened en OnSubComponentClosed-gebeurtenissen worden geactiveerd door de formulieren van de database." +msgstr "De meeste gebeurtenissen hebben betrekking op documenten, behalve OnStartApp, OnCloseApp, OnCreate en OnLoadFinished die plaatsvinden op applicatieniveau. De gebeurtenissen OnSubComponentOpened en OnSubComponentClosed worden geactiveerd door de formulieren van de database." #. e6gAF #: 01040000.xhp @@ -5396,7 +5396,7 @@ "par_id341600162682135\n" "help.text" msgid "In addition to assigning macros to events, one can monitor events triggered in %PRODUCTNAME documents." -msgstr "Naast het toewijzen van macro's aan gebeurtenissen, kan men gebeurtenissen volgen die geactiveerd zijn inv%PRODUCTNAME documenten." +msgstr "Naast het toewijzen van macro's aan gebeurtenissen, kan men gebeurtenissen volgen die geactiveerd zijn in %PRODUCTNAME documenten." #. XcdRk #: 01050000.xhp @@ -6476,7 +6476,7 @@ "par_id3147546\n" "help.text" msgid "Specify the source of the graphics for a button or an image control. Click \"...\" to select a file." -msgstr "Specificeer de bron van de graphics voor een knop of afbeeldingselement. Klik op '...' om een bestand te selecteren." +msgstr "Specificeer de bron van de grafische afbeeldingen voor een knop of afbeeldingselement. Klik op '...' om een bestand te selecteren." #. iPZoL #: 01170101.xhp @@ -7970,7 +7970,7 @@ "hd_id3152895\n" "help.text" msgid "Run-Time Functions" -msgstr "Runtime-functies" +msgstr "Runtime functies" #. Row63 #: 03000000.xhp @@ -8060,7 +8060,7 @@ "hd_id3154927\n" "help.text" msgid "MsgBox Statement" -msgstr "MsgBox-instructie" +msgstr "Instructie MsgBox" #. iLRSC #: 03010101.xhp @@ -8096,7 +8096,7 @@ "par_id3147228\n" "help.text" msgid "buttons: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. buttons represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:" -msgstr "buttons: Een geheel getal die het dialoogtype aangeeft, als ook het aantal en type van de te tonen knoppen en het icoon-type. buttons staat voor een combinatie van patronen van bits, daar mee wordt bedoeld, een combinatie van elementen kan worden gedefinieerd bij optellen van de respectievelijke waarden:" +msgstr "buttons: Een geheel getal die het dialoogtype aangeeft, als ook het aantal en type van de te tonen knoppen en het pictogram-type. buttons staat voor een combinatie van patronen van bits, daar mee wordt bedoeld, een combinatie van elementen kan worden gedefinieerd bij optellen van de respectievelijke waarden:" #. xuEUm #: 03010101.xhp @@ -8294,7 +8294,7 @@ "hd_id3153379\n" "help.text" msgid "MsgBox Function" -msgstr "MsgBox-functie" +msgstr "Functie MsgBox" #. 27uTq #: 03010102.xhp @@ -8636,7 +8636,7 @@ "hd_id3148932\n" "help.text" msgid "InputBox Function" -msgstr "InputBox-functie" +msgstr "Functie InputBox" #. S674v #: 03010201.xhp @@ -8654,7 +8654,7 @@ "par_id3151100\n" "help.text" msgid "The InputBox statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, InputBox returns a zero-length string (\"\")." -msgstr "De InputBox-instructie is een gemakkelijke methode voor het invoeren van tekst via een dialoogvesnter. Bevestig de invoer door op OK te klikken of Enter te drukken. De invoer wordt teruggegeven als resultaatwaarde van de functie. Als u het dialoogvenster sluit met Annuleren geeft InputBox een lege tekenreeks (\"\") terug." +msgstr "De InputBox-instructie is een gemakkelijke methode voor het invoeren van tekst via een dialoogvenster. Bevestig de invoer door op OK te klikken of Enter te drukken. De invoer wordt teruggegeven als resultaatwaarde van de functie. Als u het dialoogvenster sluit met Annuleren geeft InputBox een lege tekenreeks (\"\") terug." #. fcMCj #: 03010201.xhp @@ -8789,7 +8789,7 @@ "hd_id3149180\n" "help.text" msgid "Blue Function" -msgstr "Blauw-functie" +msgstr "Functie Blauw" #. G3QmN #: 03010301.xhp @@ -8915,7 +8915,7 @@ "hd_id3148947\n" "help.text" msgid "Green Function" -msgstr "Groen-functie" +msgstr "Functie Groen" #. bmBSR #: 03010302.xhp @@ -9041,7 +9041,7 @@ "hd_id3148947\n" "help.text" msgid "Red Function" -msgstr "Rood-functie" +msgstr "Functie Rood" #. UCdBi #: 03010303.xhp @@ -9176,7 +9176,7 @@ "hd_id3149670\n" "help.text" msgid "QBColor Function" -msgstr "QBColor-functie" +msgstr "Functie QBColor" #. yVSAA #: 03010304.xhp @@ -9428,7 +9428,7 @@ "hd_id3150792\n" "help.text" msgid "RGB Function" -msgstr "RGB-functie" +msgstr "Functie RGB" #. iRBsy #: 03010305.xhp @@ -9581,7 +9581,7 @@ "par_id3150398\n" "help.text" msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory." -msgstr "Speciale functies ondersteunen het creëren van \"relatieve\" bestanden, die kunnen worden gebruikt om bepaalde records op te slaan en ze direct te herladen door een recordnummer te specificeren. Bestand I/O functies helpen bij het beheren van uw bestanden door u te voorzien van specifieke informatie. Deze functies geven de bestandsgrootte, actuele padinstellingen of de bestanden van een subdirectory en zijn respectievelijke subdirectories terug of kunnen zelfs bepalen wanneer het bestand of directory was gemaakt of voor het laatst werd gewijzigd." +msgstr "Speciale functies ondersteunen het creëren van \"relatieve\" bestanden, die kunnen worden gebruikt om bepaalde records op te slaan en ze direct te herladen door een recordnummer te specificeren. Bestand I/O functies helpen bij het beheren van uw bestanden door u te voorzien van specifieke informatie. Deze functies geven de bestandsgrootte, actuele padinstellingen of de bestanden van een subdirectory en zijn respectievelijke submappen terug of kunnen zelfs bepalen wanneer het bestand of directory was gemaakt of voor het laatst werd gewijzigd." #. CEWGw #: 03020100.xhp @@ -9671,7 +9671,7 @@ "bm_id3150400\n" "help.text" msgid "FreeFile function" -msgstr "FreeFile-functie" +msgstr "Functie FreeFile" #. RGVUt #: 03020102.xhp @@ -9680,7 +9680,7 @@ "hd_id3150400\n" "help.text" msgid "FreeFile Function" -msgstr "functie FreeFile" +msgstr "Functie FreeFile" #. jM79E #: 03020102.xhp @@ -9707,7 +9707,7 @@ "par_id3155854\n" "help.text" msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it." -msgstr "Deze functie moet direct vóór een Open-instructie worden gebruikt. FreeFile geeft het volgende beschikbare bestandsnummer terug, maar zal het niet reserveren." +msgstr "Deze functie moet direct vóór een instructie Open worden gebruikt. FreeFile geeft het volgende beschikbare bestandsnummer terug, maar zal het niet reserveren." #. xWgio #: 03020103.xhp @@ -9734,7 +9734,7 @@ "hd_id3150791\n" "help.text" msgid "Open Statement" -msgstr "Open-instructie" +msgstr "Instructie Open" #. Etqck #: 03020103.xhp @@ -9815,7 +9815,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 "bestandnummer: Een getal tussen 0-511 dat een vrij gegevenskanaal aangeeft. U kunt commando's via het gegevenskanaal doorgeven om het bestand te benaderen. Het bestandsnummer moet met de functie FreeFile worden bepaald direct voor de instructie Open." +msgstr "bestandsnummer: Een getal tussen 0-511 dat een vrij gegevenskanaal aangeeft. U kunt commando's via het gegevenskanaal doorgeven om het bestand te benaderen. Het bestandsnummer moet met de functie FreeFile worden bepaald direct voor de instructie Open." #. LgCLi #: 03020103.xhp @@ -9905,7 +9905,7 @@ "hd_id3154141\n" "help.text" msgid "Reset Statement" -msgstr "Herstellen" +msgstr "Instructie Reset" #. iLCKn #: 03020104.xhp @@ -9923,7 +9923,7 @@ "par_id971587473488701\n" "help.text" msgid "Reset Statement diagram" -msgstr "Diagram herstellen" +msgstr "Diagram instructie Reset" #. BXAjN #: 03020104.xhp @@ -10319,7 +10319,7 @@ "tit\n" "help.text" msgid "Line Input# Statement" -msgstr "Regel instructie Input#" +msgstr "Instructie Line Input#" #. CCEuD #: 03020203.xhp @@ -10337,7 +10337,7 @@ "hd_id3153361\n" "help.text" msgid "Line Input# Statement" -msgstr "Regel instructie Input#" +msgstr "Instructie Line Input#" #. 5FZ8D #: 03020203.xhp @@ -10382,7 +10382,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 "Met de Line Input#-instructie kunt u tekenreeksen uit een geopend bestand in een variabele inlezen. Tekenreeksvariabelen worden regel na regel gelezen tot het eerste harde regeleinde (Asc: 13) of regeleinde (Asc: 10). Regeleinde-tekens worden niet opgenomen in de resulterende tekenreeks." +msgstr "Met de instructie Line Input# kunt u tekenreeksen uit een geopend bestand in een variabele inlezen. Tekenreeksvariabelen worden regel na regel gelezen tot het eerste harde regeleinde (Asc: 13) of regeleinde (Asc: 10). Regeleinde-tekens worden niet opgenomen in de resulterende tekenreeks." #. fhFEa #: 03020204.xhp @@ -10481,7 +10481,7 @@ "par_id3146974\n" "help.text" msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the Len clause of the Open statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to." -msgstr "Opmerking voor relationele bestanden: Als de inhoud van deze variabele niet overeenstemt met de lengte van een record zoals die gespecificeerd is in de Len-variable van de Open-insstructie, wordt de ruimte vanaf het einde van de nieuw geschreven gegevens tot de volgende record gevuld met de bestaande gegevens in het bestand." +msgstr "Opmerking voor relationele bestanden: Als de inhoud van deze variabele niet overeenstemt met de lengte van een record zoals die gespecificeerd is in de variabele Len van de Open-instructie, wordt de ruimte vanaf het einde van de nieuw geschreven gegevens tot de volgende record gevuld met de bestaande gegevens in het bestand." #. RNpLH #: 03020204.xhp @@ -10634,7 +10634,7 @@ "hd_id3154598\n" "help.text" msgid "Eof Function" -msgstr "Eof-functie" +msgstr "Functie Eof" #. ZBjAi #: 03020301.xhp @@ -10697,7 +10697,7 @@ "hd_id3148663\n" "help.text" msgid "Loc Function" -msgstr "Loc-functie" +msgstr "Functie Loc" #. xBjCr #: 03020302.xhp @@ -10787,7 +10787,7 @@ "hd_id3156024\n" "help.text" msgid "Lof Function" -msgstr "Lof-functie" +msgstr "Functie Lof" #. 3PR3T #: 03020303.xhp @@ -10841,7 +10841,7 @@ "hd_id3154367\n" "help.text" msgid "Seek Function" -msgstr "Seek-functie" +msgstr "Functie Seek" #. GFYoD #: 03020304.xhp @@ -11066,7 +11066,7 @@ "hd_id3150178\n" "help.text" msgid "ChDir Statement" -msgstr "ChDir-instructie" +msgstr "Instructie ChDir" #. yr6FQ #: 03020401.xhp @@ -11075,7 +11075,7 @@ "par_id3153126\n" "help.text" msgid "Changes the current directory or drive." -msgstr "Wijzigt de huidige directory of schijf." +msgstr "Wijzigt de huidige map of schijf." #. 9njBT #: 03020401.xhp @@ -11111,7 +11111,7 @@ "par_id3150543\n" "help.text" msgid "Text: Any string expression that specifies the directory path or drive." -msgstr "Tekst: Elke tekenreeks die het directorypad of de schijf specificeert." +msgstr "Tekst: Elke tekenreeks die het bestandspad of de schijf specificeert." #. 8bbhs #: 03020401.xhp @@ -11327,7 +11327,7 @@ "par_id3161831\n" "help.text" msgid "Text: Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in URL notation." -msgstr "Tekst: Elke tekenreeks die het zoekpad, de map of het bestand specificeert. Dit argument kan alleen gespecificeerd worden wanneer u de Dir-functie voor het eerst aanroept. Als u wilt, kunt u het pad in URL-notatie invoeren." +msgstr "Tekst: Elke tekenreeks die het zoekpad, de map of het bestand specificeert. Dit argument kan alleen gespecificeerd worden wanneer u de functie Dir voor het eerst aanroept. Als u wilt, kunt u het pad in URL-notatie invoeren." #. Curme #: 03020404.xhp @@ -11372,7 +11372,7 @@ "par_id3159156\n" "help.text" msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")." -msgstr "Voer het pad en de naam van een bestand volledig in om te controleren of het bestaat. Als de bestands- of mapnaam niet bestaat, geeft de Dir-functie een tekenreeks met lengte nul (\"\")." +msgstr "Voer het pad en de naam van een bestand volledig in om te controleren of het bestaat. Als de bestand of mapnaam niet bestaat, geeft de functie Dir een tekenreeks met lengte nul (\"\")." #. 9UQgN #: 03020404.xhp @@ -11444,7 +11444,7 @@ "hd_id3153380\n" "help.text" msgid "FileAttr Function" -msgstr "FileAttr-functie" +msgstr "Functie FileAttr" #. eWQDF #: 03020405.xhp @@ -11633,7 +11633,7 @@ "hd_id3154840\n" "help.text" msgid "FileCopy Statement" -msgstr "Filecopy-functie" +msgstr "Functie Filecopy" #. cgLqA #: 03020406.xhp @@ -11723,7 +11723,7 @@ "hd_id3153361\n" "help.text" msgid "FileDateTime Function" -msgstr "FileDateTime-functie" +msgstr "Functie FileDateTime" #. 8fZwF #: 03020407.xhp @@ -11804,7 +11804,7 @@ "hd_id3153126\n" "help.text" msgid "FileLen Function" -msgstr "FileLen-functie" +msgstr "Functie FileLen" #. aJChP #: 03020408.xhp @@ -11894,7 +11894,7 @@ "hd_id3150984\n" "help.text" msgid "GetAttr Function" -msgstr "GetAttr-functie" +msgstr "Functie GetAttr" #. WnrAC #: 03020409.xhp @@ -12110,7 +12110,7 @@ "hd_id3153360\n" "help.text" msgid "Kill Statement" -msgstr "Kill-instructie" +msgstr "Instructie Kill" #. gJGP8 #: 03020410.xhp @@ -12173,7 +12173,7 @@ "hd_id3156421\n" "help.text" msgid "MkDir Statement" -msgstr "MkDir-functie" +msgstr "Functie MkDir" #. Fu6rt #: 03020411.xhp @@ -12191,7 +12191,7 @@ "par_id3147000\n" "help.text" msgid "Creates a new directory on a data medium." -msgstr "Creeërt een nieuwe directory op een gegevensmedium." +msgstr "Maakt een nieuwe directory aan op een gegevensmedium." #. 83LPA #: 03020411.xhp @@ -12218,7 +12218,7 @@ "par_id3153311\n" "help.text" msgid "If the path is not determined, the directory is created in the current directory." -msgstr "Als het pad niet kan worden bepaald, zal de gespecificeerde directory in de huidige directory worden gemaakt." +msgstr "Als het pad niet kan worden bepaald, zal de gespecificeerde map in de huidige map worden gemaakt." #. KEaAA #: 03020411.xhp @@ -12227,7 +12227,7 @@ "par_id3149762\n" "help.text" msgid "' Example for functions of the file organization" -msgstr "' Voorbeeld voor de functies die het bestand ordenenen" +msgstr "' Voorbeeld voor de functies die het bestand ordenen" #. N8bbr #: 03020411.xhp @@ -12263,7 +12263,7 @@ "par_id3154217\n" "help.text" msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?" -msgstr "If Dir(sSubDir1,16)=\"\" Then ' Bestaat de directory?" +msgstr "If Dir(sSubDir1,16)=\"\" Then ' Bestaat de map?" #. r3XxL #: 03020411.xhp @@ -12272,7 +12272,7 @@ "par_id3147228\n" "help.text" msgid "MsgBox sFile,0,\"Create directory\"" -msgstr "MsgBox sFile,0,\"Maak de directory\"" +msgstr "MsgBox sFile,0,\"Maak de map\"" #. BQuXv #: 03020411.xhp @@ -12317,7 +12317,7 @@ "par_id3153952\n" "help.text" msgid "' Rename in the same directory" -msgstr "' Hernoemen in dezelfde directory" +msgstr "' Hernoemen in dezelfde map" #. Gp3Gn #: 03020411.xhp @@ -12380,7 +12380,7 @@ "hd_id3143268\n" "help.text" msgid "Name Statement" -msgstr "Name-instructie" +msgstr "Instructie Name" #. H2NFb #: 03020412.xhp @@ -12389,7 +12389,7 @@ "par_id3154346\n" "help.text" msgid "Renames an existing file or directory." -msgstr "Hernoemt een bestaand bestand of bestaande directory." +msgstr "Hernoemt een bestaand bestand of bestaande map." #. Hdf54 #: 03020412.xhp @@ -12461,7 +12461,7 @@ "hd_id3148947\n" "help.text" msgid "RmDir Statement" -msgstr "RmDir-instructie" +msgstr "Instructie RmDir" #. VRYbm #: 03020413.xhp @@ -12470,7 +12470,7 @@ "par_id3149457\n" "help.text" msgid "Deletes an existing directory from a data medium." -msgstr "Verwijdert een bestaande directory van een gegevensmedium." +msgstr "Verwijdert een bestaande map van een gegevensmedium." #. nTJ5u #: 03020413.xhp @@ -12497,7 +12497,7 @@ "par_id3153192\n" "help.text" msgid "If the path is not determined, the RmDir Statement searches for the directory that you want to delete in the current path. If it is not found there, an error message appears." -msgstr "Als het pad niet is opgegeven zal de RmDir-instructie naar de gespecificeerde directory in het huidige pad zoeken. Als het daar niet wordt gevonden, zal een foutboodschap verschijnen." +msgstr "Als het pad niet is opgegeven zal de instructie RmDir naar de gespecificeerde map in het huidige pad zoeken. Als het daar niet wordt gevonden, zal een foutboodschap verschijnen." #. WL5Nt #: 03020414.xhp @@ -12524,7 +12524,7 @@ "hd_id3147559\n" "help.text" msgid "SetAttr Statement" -msgstr "SetAttr-instructie" +msgstr "Instructie SetAttr" #. XPYqB #: 03020414.xhp @@ -12686,7 +12686,7 @@ "hd_id3148946\n" "help.text" msgid "FileExists Function" -msgstr "FileExists-functie" +msgstr "Functie FileExists" #. FkmEu #: 03020415.xhp @@ -13037,7 +13037,7 @@ "hd_id3153345\n" "help.text" msgid "Day Function" -msgstr "Day-functie" +msgstr "Functie Day" #. BBAea #: 03030103.xhp @@ -13163,7 +13163,7 @@ "hd_id3153127\n" "help.text" msgid "Month Function" -msgstr "Month-functie" +msgstr "Functie Month" #. fCRok #: 03030104.xhp @@ -13451,7 +13451,7 @@ "par_id451619720094202\n" "help.text" msgid "The VBA constants listed above are only available if VBA support has been enabled. For more information, read the VBASupport Statement help page." -msgstr "De bovenstaande VBA-constanten zijn alleen beschikbaar als de ondersteuning voor is ingeschakeld. Meer informatie: instructie VBASupport." +msgstr "De bovenstaande VBA-constanten zijn alleen beschikbaar als de ondersteuning ervan is ingeschakeld. Meer informatie: instructie VBASupport." #. CPXVo #: 03030105.xhp @@ -13613,7 +13613,7 @@ "hd_id3148664\n" "help.text" msgid "Year Function" -msgstr "Year-functie" +msgstr "Functie Year" #. My6Uq #: 03030106.xhp @@ -13676,7 +13676,7 @@ "par_id3163712\n" "help.text" msgid "Number: Integer expression that contains the serial date number that is used to calculate the year." -msgstr "Getal: Integer die het serieële datumgetal bevat waaruit het jaar wordt berekend." +msgstr "Getal: Integer die het seriële datumgetal bevat waaruit het jaar wordt berekend." #. iJ8tY #: 03030106.xhp @@ -13739,7 +13739,7 @@ "hd_id3150620\n" "help.text" msgid "CDateToIso Function" -msgstr "CDateTolso-functie" +msgstr "Functie CDateTolso" #. YAouB #: 03030107.xhp @@ -13865,7 +13865,7 @@ "hd_id3153127\n" "help.text" msgid "CDateFromIso Function" -msgstr "CDateFromlso" +msgstr "Functie CDateFromlso" #. AaWgB #: 03030108.xhp @@ -13883,7 +13883,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 "Het jaardeel moet bestaan uit twee (alleen ondersteun in JJMMDD-opmaak zonder scheidingstekens voor comptabiliteit) of tenminste vier cijfers. Bij vier cijfers moeten voorloopnullen worden ingegeven als de absolute waarde minder is dan 1000, het kan negatief zijn beginnend met een minteken als de gepasseerde datum een jaar voor het het gewone tijdperk (BCE) ligt en het can meer dan vier cijfers bevatten als de absolute waarde hoger is dan 9999. De opgemaakte tekenreeks kan in het bereik \"-327680101\" tot \"327671231\", of \"-32768-01-01\" tot \"32767-12-31\" liggen." +msgstr "Het jaardeel moet bestaan uit twee (alleen ondersteun in JJMMDD-opmaak zonder scheidingstekens voor comptabiliteit) of tenminste vier cijfers. Bij vier cijfers moeten voorloopnullen worden ingegeven als de absolute waarde minder is dan 1000, het kan negatief zijn beginnend met een minteken als de gepasseerde datum een jaar voor het het gewone tijdperk (BCE) ligt en het kan meer dan vier cijfers bevatten als de absolute waarde hoger is dan 9999. De opgemaakte tekenreeks kan in het bereik \"-327680101\" tot \"327671231\", of \"-32768-01-01\" tot \"32767-12-31\" liggen." #. ACdxD #: 03030108.xhp @@ -13901,7 +13901,7 @@ "par_id3148553\n" "help.text" msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the CDateToIso Function to convert such date number to a string representation in the proleptic Gregorian calendar." -msgstr "Bij het omzetten van een seriële datum naar een af te drukken tekenreeks voor de opdracht Afdrukken en Berichtvenster, wordt de standaardkalender van de locale instellingen gebruikt en de over te nemen datum 15-10-1582 kan naar de Juliaanse kalender overschakelen, wat kan leiden tot een andere datum dan verwacht. Gebruik de CDateToIso Function om dergelijke datumgetallen te converteren naar een tekenreeks in de proleptische Gregoriaanse kalender." +msgstr "Bij het omzetten van een seriële datum naar een af te drukken tekenreeks voor de opdracht Afdrukken en Berichtvenster, wordt de standaardkalender van de locale instellingen gebruikt en de over te nemen datum 15-10-1582 kan naar de Juliaanse kalender overschakelen, wat kan leiden tot een andere datum dan verwacht. Gebruik de functie CDateTo om dergelijke datumgetallen te converteren naar een tekenreeks in de proleptische Gregoriaanse kalender." #. xDmcF #: 03030108.xhp @@ -14738,7 +14738,7 @@ "hd_id3150620\n" "help.text" msgid "CDateFromUnoDateTime Function" -msgstr "CDateFromUnoDateTime-functie" +msgstr "Functie CDateFromUnoDateTime" #. GgYqn #: 03030116.xhp @@ -14828,7 +14828,7 @@ "par_idN10542\n" "help.text" msgid "DateDiff Function" -msgstr "DateDiff-functie" +msgstr "Functie DateDiff" #. kAC7A #: 03030120.xhp @@ -15170,7 +15170,7 @@ "par_idN10542\n" "help.text" msgid "DatePart Function" -msgstr "DatePart-functie" +msgstr "Functie DatePart" #. i4c5k #: 03030130.xhp @@ -15260,7 +15260,7 @@ "bm_id3156042\n" "help.text" msgid "Hour function" -msgstr "Hour-functie" +msgstr "Functie Hour" #. 6thEB #: 03030201.xhp @@ -15269,7 +15269,7 @@ "hd_id3156042\n" "help.text" msgid "Hour Function" -msgstr "Hour-functie" +msgstr "Functie Hour" #. AEpQ4 #: 03030201.xhp @@ -15386,7 +15386,7 @@ "bm_id3155419\n" "help.text" msgid "Minute function" -msgstr "Minute-functie" +msgstr "functie Minute" #. aYEXJ #: 03030202.xhp @@ -15584,7 +15584,7 @@ "bm_id3153346\n" "help.text" msgid "Second function" -msgstr "Second-functie" +msgstr "Functie Second" #. sesGV #: 03030204.xhp @@ -15593,7 +15593,7 @@ "hd_id3153346\n" "help.text" msgid "Second Function" -msgstr "Second-functie" +msgstr "Functie Second" #. 7idcY #: 03030204.xhp @@ -15710,7 +15710,7 @@ "bm_id3143271\n" "help.text" msgid "TimeSerial function" -msgstr "TimeSerial-functie" +msgstr "Functie TimeSerial" #. SMCrm #: 03030205.xhp @@ -15719,7 +15719,7 @@ "hd_id3143271\n" "help.text" msgid "TimeSerial Function" -msgstr "TimeSerial-functie" +msgstr "Functie TimeSerial" #. 6jATi #: 03030205.xhp @@ -15917,7 +15917,7 @@ "hd_id3149670\n" "help.text" msgid "TimeValue Function" -msgstr "TimeValue-functie" +msgstr "Functie TimeValue" #. F7fEy #: 03030206.xhp @@ -15926,7 +15926,7 @@ "par_id3153361\n" "help.text" msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times." -msgstr "Berekent een seriële tijdwaarde uit de gespecificeerde uur, minuut en seconde - parameters meegegeven als tekenreeksen - die de tijd in een enkele numerie waarde voorstellen. Deze waarde kan worden gebruikt om het verschil tussen tijden te berekenen." +msgstr "Berekent een seriële tijdwaarde uit de gespecificeerde uur, minuut en seconde - parameters meegegeven als tekenreeksen - die de tijd in een enkele numerieke waarde voorstellen. Deze waarde kan worden gebruikt om het verschil tussen tijden te berekenen." #. ruJCh #: 03030206.xhp @@ -16295,7 +16295,7 @@ "par_id051620171022382581\n" "help.text" msgid "Boolean constants" -msgstr "Boleaanse constanten" +msgstr "Booleaanse constanten" #. YZCRB #: 03040000.xhp @@ -16511,7 +16511,7 @@ "par_id111512312705893\n" "help.text" msgid "The following constants are available when VBA compatibility mode is enabled" -msgstr "De volgende constantes zijn beschikbaar wanneer de VBA compatibiliteit modus geactiveerd is" +msgstr "De volgende constanten zijn beschikbaar wanneer de VBA compatibiliteit modus geactiveerd is" #. 8kxFA #: 03040000.xhp @@ -16817,7 +16817,7 @@ "hd_id3157896\n" "help.text" msgid "Erl Function" -msgstr "Erl-functie" +msgstr "Functie Erl" #. jDwdD #: 03050100.xhp @@ -16934,7 +16934,7 @@ "hd_id3156343\n" "help.text" msgid "Err Function" -msgstr "Err-functie" +msgstr "Functie Err" #. fYQVz #: 03050200.xhp @@ -17051,7 +17051,7 @@ "hd_id3159413\n" "help.text" msgid "Error Function" -msgstr "Error-functie" +msgstr "Functie Error" #. rMs2R #: 03050300.xhp @@ -17177,7 +17177,7 @@ "hd_id3146795\n" "help.text" msgid "On Error GoTo ... Resume Statement" -msgstr "On Error GoTo ...-instructie" +msgstr "Instructie On Error GoTo ..." #. WtSRF #: 03050500.xhp @@ -18212,7 +18212,7 @@ "hd_id3156042\n" "help.text" msgid "\"-\" Operator" -msgstr "\"-\"-operator" +msgstr "Operator \"-\"" #. FBBhn #: 03070100.xhp @@ -18302,7 +18302,7 @@ "hd_id3147573\n" "help.text" msgid "\"*\" Operator" -msgstr "\"*\"-operator" +msgstr "Operator \"*\"" #. gRpRu #: 03070200.xhp @@ -18392,7 +18392,7 @@ "hd_id3145316\n" "help.text" msgid "\"+\" Operator" -msgstr "\"+\"-operator" +msgstr "Operator \"+\"" #. kK3XR #: 03070300.xhp @@ -18482,7 +18482,7 @@ "hd_id3150669\n" "help.text" msgid "\"/\" Operator" -msgstr "\"/\"-operator" +msgstr "Operator \"/\"" #. EDugT #: 03070400.xhp @@ -18572,7 +18572,7 @@ "hd_id3145315\n" "help.text" msgid "\"^\" Operator" -msgstr "\"^\"-operator" +msgstr "Operator \"^\"" #. YERQd #: 03070500.xhp @@ -18941,7 +18941,7 @@ "par_id3148947\n" "help.text" msgid "Atn (Number As Double) As Double" -msgstr "Atn (Number As Double) As Double" +msgstr "Atn (Getal als dubbel) Als dubbel" #. nnJyb #: 03080101.xhp @@ -18950,7 +18950,7 @@ "par_id3150359\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. rLBjg #: 03080101.xhp @@ -19112,7 +19112,7 @@ "par_id3145172\n" "help.text" msgid "Cos (Number As Double) As Double" -msgstr "Cos (Number As Double) As Double" +msgstr "Cos (Getal als Dubbel) als Dubbel" #. 5SNwE #: 03080102.xhp @@ -19121,7 +19121,7 @@ "par_id3150449\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. jbCKb #: 03080102.xhp @@ -19283,7 +19283,7 @@ "par_id3154909\n" "help.text" msgid "Sin (Number As Double) As Double" -msgstr "Sin (Number As Double) As Double" +msgstr "Sin (Getal als Dubbel) als Dubbel" #. q3Gct #: 03080103.xhp @@ -19292,7 +19292,7 @@ "par_id3150870\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. VeDqk #: 03080103.xhp @@ -19319,7 +19319,7 @@ "par_id3149664\n" "help.text" msgid "degrees=(radians*180)/Pi" -msgstr "degrees=(radians*180)/Pi" +msgstr "graden=(radialen*180)/Pi" #. PZTcG #: 03080103.xhp @@ -19328,7 +19328,7 @@ "par_id3153143\n" "help.text" msgid "radians=(degrees*Pi)/180" -msgstr "radians=(degrees*Pi)/180" +msgstr "radialen=(graden*Pi)/180" #. EFgfE #: 03080103.xhp @@ -19454,7 +19454,7 @@ "par_id3151042\n" "help.text" msgid "Tan (Number As Double) As Double" -msgstr "Tan (Number As Double) As Double" +msgstr "Tan (Getal als dubbel) als dubbel" #. XMyAh #: 03080104.xhp @@ -19463,7 +19463,7 @@ "par_id3156281\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. BJjuJ #: 03080104.xhp @@ -19490,7 +19490,7 @@ "par_id3155414\n" "help.text" msgid "degrees=(radians*180)/Pi" -msgstr "degrees=(radians*180)/Pi" +msgstr "graden=(radialen*180)/Pi" #. hDLbM #: 03080104.xhp @@ -19499,7 +19499,7 @@ "par_id3146975\n" "help.text" msgid "radians=(degrees*Pi)/180" -msgstr "radians=(degrees*Pi)/180" +msgstr "radialen=(graden*Pi)/180" #. AEqBK #: 03080104.xhp @@ -19589,7 +19589,7 @@ "par_id3148550\n" "help.text" msgid "$[officename] Basic supports the following exponential and logarithmic functions." -msgstr "De volgende exponentiele en logaritmische functies worden ondersteund in $[officename] BASIC." +msgstr "De volgende exponentiële en logaritmische functies worden ondersteund in $[officename] BASIC." #. F4Kod #: 03080201.xhp @@ -19616,7 +19616,7 @@ "hd_id3150616\n" "help.text" msgid "Exp Function" -msgstr "Exp-functie" +msgstr "Functie Exp" #. Zu9Dr #: 03080201.xhp @@ -19661,7 +19661,7 @@ "par_id3149670\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. ohN8G #: 03080201.xhp @@ -19679,7 +19679,7 @@ "par_id3150793\n" "help.text" msgid "Number: Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values." -msgstr "Getal: Een numerieke expressie die de macht specificeert waarmee e (de basis van natuurlijke logaritmen) moet worden verhoogd. De macht moet voor zowel enkel-precisie getallen kleiner dan of gelijk aan 88.02969 en dubbel-precisie getallen kleiner dan of gelijk aan 709.782712893 zijn, aangezien $[officename] BASIC een overloop-fout teruggeeft voor getallen die deze waarden overschrijden." +msgstr "Getal: Een numerieke expressie die de macht specificeert waarmee e (de basis van natuurlijke logaritmen) moet worden verhoogd. De macht moet voor zowel enkele-precisie getallen kleiner dan of gelijk aan 88.02969 en double-precisie getallen kleiner dan of gelijk aan 709.782712893 zijn, aangezien $[officename] BASIC een overloop-fout teruggeeft voor getallen die deze waarden overschrijden." #. qVvq3 #: 03080201.xhp @@ -19769,7 +19769,7 @@ "par_id3150791\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. fCeUd #: 03080202.xhp @@ -19877,7 +19877,7 @@ "bm_id3150616\n" "help.text" msgid "Randomize statement" -msgstr "Randomize-instructie" +msgstr "Instructie Randomize" #. GzBbR #: 03080301.xhp @@ -19886,7 +19886,7 @@ "hd_id3150616\n" "help.text" msgid "Randomize Statement" -msgstr "Randomize-Instructie " +msgstr "Instructie Randomize " #. rWksA #: 03080301.xhp @@ -20048,7 +20048,7 @@ "par_id3154365\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. 4W4JJ #: 03080302.xhp @@ -20075,7 +20075,7 @@ "par_id3147318\n" "help.text" msgid "The Rnd function returns decimal fractions ranging from 0 (included) to 1 (excluded) according to a uniform distribution. It uses the Mersenne Twister 19937 random-number generator. To generate random integers in a given range, use a formula like in the example below. A Randomize statement with a defined seed value can be used beforehand, if a predictable sequence of numbers is desired." -msgstr "De functie Rnd geeft een decimale fractie terug tussen 0 (inbegrepen) en 1 (niet inbegrepen) overeenkomstig een willekeurige verdeling. De functie maakt gebruik van de Mesenne Twister 19937 willekeurige-getalgenerator. Gebruik voor het genereren van willekeurige gehele getallen een formule volgens onderstaand voorbeeld. Als een voorspelbare reeks van getallen vereist is, kan ervoor een instructie Randomize met een gedefinieerd startwaarde worden gebruikt." +msgstr "De functie Rnd geeft een decimale fractie terug tussen 0 (inbegrepen) en 1 (niet inbegrepen) overeenkomstig een willekeurige verdeling. De functie maakt gebruik van de Mesenne Twister 19937 getalgenerator. Gebruik voor het genereren van willekeurige gehele getallen een formule volgens onderstaand voorbeeld. Als een onvoorspelbare reeks van getallen vereist is, kan ervoor een instructie Randomize met een gedefinieerd startwaarde worden gebruikt." #. CoRrB #: 03080302.xhp @@ -20219,7 +20219,7 @@ "par_id3156343\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. RB3SF #: 03080401.xhp @@ -20336,7 +20336,7 @@ "par_id3148947\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. T274X #: 03080501.xhp @@ -20444,7 +20444,7 @@ "par_id3150400\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. byiBG #: 03080502.xhp @@ -20552,7 +20552,7 @@ "par_id3150400\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. PjX9r #: 03080503.xhp @@ -20660,7 +20660,7 @@ "hd_id3159201\n" "help.text" msgid "Abs Function" -msgstr "Abs-functie" +msgstr "Functie Abs" #. vGAGF #: 03080601.xhp @@ -20705,7 +20705,7 @@ "par_id3149670\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. Duhzt #: 03080601.xhp @@ -20822,7 +20822,7 @@ "hd_id3148474\n" "help.text" msgid "Sgn Function" -msgstr "Sgn-functie" +msgstr "Functie Sgn" #. 7BADP #: 03080701.xhp @@ -21038,7 +21038,7 @@ "hd_id3150616\n" "help.text" msgid "Hex Function" -msgstr "Hex-functie" +msgstr "Functie Hex" #. X79sx #: 03080801.xhp @@ -21164,7 +21164,7 @@ "hd_id3155420\n" "help.text" msgid "Oct Function" -msgstr "Oct-functie" +msgstr "Functie Oct" #. ApoGj #: 03080802.xhp @@ -21245,7 +21245,7 @@ "tit\n" "help.text" msgid "Controlling Program Execution" -msgstr "Programmauitvoering sturen" +msgstr "Programma-uitvoering sturen" #. AjaX7 #: 03090000.xhp @@ -21272,7 +21272,7 @@ "par_id3156152\n" "help.text" msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements." -msgstr "Normaal gesproken werkt een programma van boven naar beneden. In sommige gevallen wilt u echter bepaalde procedures binnen het programma alleen uitvoeren als aan specifieke voorwaarden wordt voldaan. Of u wilt een gedeelte van het programma binnen een subprocedure of functie herhalen. In dat geval kunt u de zogenaamde \"Loops\" gebruiken om delen van een programma net zoveel keer te herhalen als nodig of totdat aan een bepaalde voorwaarde wordt voldaan. Dit soort stuur-instructies worden geklassificeerd als Conditionele-, Loop- of Jump-instructies." +msgstr "Normaal gesproken werkt een programma van boven naar beneden. In sommige gevallen wilt u echter bepaalde procedures binnen het programma alleen uitvoeren als aan specifieke voorwaarden wordt voldaan. Of u wilt een gedeelte van het programma binnen een subprocedure of functie herhalen. In dat geval kunt u de zogenaamde \"Loops\" gebruiken om delen van een programma net zoveel keer te herhalen als nodig of totdat aan een bepaalde voorwaarde wordt voldaan. Dit soort stuur-instructies worden geclassificeerd als Conditionele-, Loop- of Jump-instructies." #. SVVdP #: 03090100.xhp @@ -21740,7 +21740,7 @@ "par_id541598638231139\n" "help.text" msgid "IIf evaluates both ExpressionTrue and ExpressionFalse even if it returns only one of them. If one of the expressions results in error, the function returns the error. For example, do not use IIF to bypass a possible division by zero result." -msgstr "IIf evalueert zowel ExpressionTrue als ExpressionFalse zelfs als er maar één van wordt geretourneerd. Als een van de expressies een fout oplevert, retourneert de functie de fout. Gebruik IIF bijvoorbeeld niet om een mogelijke deling door nul te omzeilen." +msgstr "IIf evalueert zowel ExpressieWaar als ExpressieOnwaar zelfs als er maar één van wordt geretourneerd. Als een van de expressies een fout oplevert, retourneert de functie de fout. Gebruik IIF bijvoorbeeld niet om een mogelijke deling door nul te omzeilen." #. vGAma #: 03090103.xhp @@ -21830,7 +21830,7 @@ "hd_id3156116\n" "help.text" msgid "Do...Loop Statement" -msgstr "Do...Loop-instructie" +msgstr "Instructie Do...Loop" #. iC6SG #: 03090201.xhp @@ -21974,7 +21974,7 @@ "hd_id3149205\n" "help.text" msgid "For...Next Statement" -msgstr "For...Next-instructie" +msgstr "Instructie For...Next" #. AFEvH #: 03090202.xhp @@ -22091,7 +22091,7 @@ "par_id3156281\n" "help.text" msgid "step: Sets the value by which to increase or decrease the loop counter. If step is not specified, the loop counter is incremented by 1. In this case, end must be greater than start. If you want to decrease counter, end must be less than start, and step must be assigned a negative value." -msgstr "stap: Stelt de waarde in waarmee de lusteller moet worden verhoogd of verlaagd. Als stap niet is opgegeven, wordt de lusteller verhoogd met 1. In dit geval moet end groter zijn dan start. Als u teller wilt verkleinen, moet einde kleiner zijn dan start, en moet aan stap een negatieve waarde worden toegewezen." +msgstr "stap: Stelt de waarde in waarmee de lussenteller moet worden verhoogd of verlaagd. Als stap niet is opgegeven, wordt de lussenteller verhoogd met 1. In dit geval moet end groter zijn dan start. Als u teller wilt verkleinen, moet einde kleiner zijn dan start, en moet aan stap een negatieve waarde worden toegewezen." #. VMWd9 #: 03090202.xhp @@ -22280,7 +22280,7 @@ "hd_id3150400\n" "help.text" msgid "While...Wend Statement" -msgstr "While...Wend-instructie" +msgstr "Instructie While...Wend" #. QMYRt #: 03090203.xhp @@ -22298,7 +22298,7 @@ "par_id3151041\n" "help.text" msgid "Unlike the Do...Loop statement, you cannot cancel a While...Wend loop with Exit. Never exit a While...Wend loop with GoTo, since this can cause a run-time error." -msgstr "Anders dan bij de instructie Do...Loop, kunt u een While...Wend niet beëindigen met Exit. Beëindig nooit een While...Wend met GoTo, omdat dit een run-time error kan veroorzaken." +msgstr "Anders dan bij de instructie Do...Loop, kunt u een While...Wend niet beëindigen met Exit. Beëindig nooit een While...Wend met GoTo, omdat dit een run-time fout kan veroorzaken." #. s8j22 #: 03090203.xhp @@ -22595,7 +22595,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 "Gebruik de instructie GoTo om $[officename] Basic te instrueren om de uitvoering van het programma op een andere plaats binnen de procedure voort te zetten. De positie moet worden aangegeven met een label. Om een label in te stellen, wijst u een naam toe en sluit u deze af met een dubbele punt (\":\")." +msgstr "Gebruik de instructie GoTo om $[officename] Basic te instrueren om de uitvoering van het programma op een andere plaats binnen de procedure voort te zetten. De positie moet worden aangegeven met een label. Om een label in te stellen, wijst u een naam toe en sluit u deze af met een dubbele punt (\":\")." #. 8o2aP #: 03090302.xhp @@ -22604,7 +22604,7 @@ "par_id3155416\n" "help.text" msgid "You cannot use the GoTo statement to jump out of a Sub or Function." -msgstr "U kunt de instructie GoTo niet gebruiken om uit een Sub of Function te springen." +msgstr "U kunt de instructie GoTo niet gebruiken om uit een Sub of Function te springen." #. s9tCK #: 03090302.xhp @@ -22694,7 +22694,7 @@ "par_id3154366\n" "help.text" msgid "On expression GoSub Label1[, Label2[, Label3[,...]]]" -msgstr "Bij de uitdrukking GoSub Label1[, Label2[, Label3[,...]]]" +msgstr "Bij de uitdrukking GoSub Label1[, Label2[, Label3[,...]]]" #. osLES #: 03090303.xhp @@ -22703,7 +22703,7 @@ "par_id3150769\n" "help.text" msgid "On expression GoTo Label1[, Label2[, Label3[,...]]]" -msgstr "Bij de uitdrukking GoSub Label1[, Label2[, Label3[,...]]]" +msgstr "Bij de uitdrukking GoSub Label1[, Label2[, Label3[,...]]]" #. eLCEK #: 03090303.xhp @@ -23072,7 +23072,7 @@ "hd_id3148473\n" "help.text" msgid "Declare Statement" -msgstr "Declare-instructie" +msgstr "Instructie Declare" #. prHYx #: 03090403.xhp @@ -23216,7 +23216,7 @@ "hd_id3150771\n" "help.text" msgid "End Statement" -msgstr "End-instructie" +msgstr "Instructie End" #. s5S7Q #: 03090404.xhp @@ -23405,7 +23405,7 @@ "hd_id3143270\n" "help.text" msgid "FreeLibrary Function" -msgstr "FreeLibrary-functie" +msgstr "Functie FreeLibrary" #. BBTbS #: 03090405.xhp @@ -23477,7 +23477,7 @@ "tit\n" "help.text" msgid "Function Statement" -msgstr "Instructie Funtion" +msgstr "Instructie Function" #. BAraQ #: 03090406.xhp @@ -23720,7 +23720,7 @@ "hd_id3153311\n" "help.text" msgid "Stop Statement" -msgstr "Stop-instructie" +msgstr "Instructie Stop" #. mFJE4 #: 03090408.xhp @@ -23972,7 +23972,7 @@ "hd_id3153311\n" "help.text" msgid "With Statement" -msgstr "With-instructie" +msgstr "Instructie With" #. 3GcPs #: 03090411.xhp @@ -24044,7 +24044,7 @@ "hd_id3152924\n" "help.text" msgid "Exit Statement" -msgstr "Exit-instructie" +msgstr "Instructie Exit" #. Kmb47 #: 03090412.xhp @@ -24080,7 +24080,7 @@ "par_id3148797\n" "help.text" msgid "Only valid within a For...Next loop to exit the loop. Program execution continues with the first statement that follows the Next statement. In nested statements, the control is transferred to the loop in the next higher level." -msgstr "Alleen geldig binnen een For...Next-lus om de lus te beëindigen.De programma-uitvoering vervolgt met de eerste instructie volgend op de Next-instructie. In geneste insturcties wordt de controle overgedragen aan de lus in het volgende hogere niveau." +msgstr "Alleen geldig binnen een For...Next-lus om de lus te beëindigen. De programma-uitvoering vervolgt met de eerste instructie volgend op de Next-instructie. In geneste instructies wordt de controle overgedragen aan de lus in het volgende hogere niveau." #. T2hCJ #: 03090412.xhp @@ -24386,7 +24386,7 @@ "par_idN10548\n" "help.text" msgid "CDec Function" -msgstr "CDec-functie" +msgstr "Functie CDec" #. aEBmF #: 03100060.xhp @@ -24476,7 +24476,7 @@ "par_idN1054B\n" "help.text" msgid "CVar Function" -msgstr "CVar-functie" +msgstr "Functie CVar" #. cGuyq #: 03100070.xhp @@ -24485,7 +24485,7 @@ "par_idN1055B\n" "help.text" msgid "Converts a string expression or numeric expression to a variant expression." -msgstr "Converteert een tekenreeks of numerieke expressie naar een variantexpressie." +msgstr "Converteert een tekenreeks of numerieke expressie naar een variant-expressie." #. i9KSb #: 03100070.xhp @@ -24917,7 +24917,7 @@ "hd_id3153750\n" "help.text" msgid "CDbl Function" -msgstr "CDbl-functie" +msgstr "Functie CDbl" #. EwDaU #: 03100400.xhp @@ -24962,7 +24962,7 @@ "par_id3145068\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. LM9Ye #: 03100400.xhp @@ -25187,7 +25187,7 @@ "hd_id3153311\n" "help.text" msgid "CLng Function" -msgstr "CLng-functie" +msgstr "Functie CLng" #. aLcQC #: 03100600.xhp @@ -25286,7 +25286,7 @@ "hd_id3146958\n" "help.text" msgid "Const Statement" -msgstr "Const-instructie" +msgstr "Instructie Const" #. xPBxj #: 03100700.xhp @@ -25475,7 +25475,7 @@ "hd_id3153753\n" "help.text" msgid "CSng Function" -msgstr "CSng-functie" +msgstr "Functie CSng" #. 8RgCe #: 03100900.xhp @@ -25574,7 +25574,7 @@ "hd_id3146958\n" "help.text" msgid "CStr Function" -msgstr "CStr-functie" +msgstr "Functie CStr" #. 3CEMW #: 03101000.xhp @@ -25646,7 +25646,7 @@ "hd_id3150358\n" "help.text" msgid "Expression Types and Conversion Returns" -msgstr "Expressieypes en conversie geven terug" +msgstr "Expressietypes en conversie geven terug" #. gA73v #: 03101000.xhp @@ -25781,7 +25781,7 @@ "hd_id3145759\n" "help.text" msgid "DefBool Statement" -msgstr "DefBool-instructie" +msgstr "Instructie DefBool" #. JCPLq #: 03101100.xhp @@ -25871,7 +25871,7 @@ "par_idN1057D\n" "help.text" msgid "DefCur Statement" -msgstr "DefCur-instructie" +msgstr "Instructie DefCur" #. d4KGm #: 03101110.xhp @@ -25880,7 +25880,7 @@ "par_idN1058D\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range." -msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de DefCur-instructie het standaardtype variabele ingesteld, volgens een letterbereik." +msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de instructie DefCur het standaardtype variabele ingesteld, volgens een letterbereik." #. UJUeE #: 03101110.xhp @@ -25925,7 +25925,7 @@ "par_idN1057D\n" "help.text" msgid "DefErr Statement" -msgstr "DefErr-instructie" +msgstr "Instructie DefErr" #. yQsoP #: 03101120.xhp @@ -25934,7 +25934,7 @@ "par_idN1058D\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range." -msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de DefErr-instructie het standaardtype variabele ingesteld, volgens een letterbereik." +msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de instructie DefErr het standaardtype variabele ingesteld, volgens een letterbereik." #. b8Tvs #: 03101120.xhp @@ -25970,7 +25970,7 @@ "par_idN10577\n" "help.text" msgid "DefSng Statement" -msgstr "DefSng-instructie" +msgstr "Instructie DefSng" #. f46uc #: 03101130.xhp @@ -25979,7 +25979,7 @@ "par_idN10587\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range." -msgstr "Als er geen type-aanduidingsteken of sleutelwoord is gespecificeerd, stelt de DefSng-instructie het standaardtype variabele in volgens een letterreeks." +msgstr "Als er geen type-aanduidingsteken of sleutelwoord is gespecificeerd, stelt de instructie DefSng het standaardtype variabele in volgens een letterreeks." #. FEQfu #: 03101130.xhp @@ -26024,7 +26024,7 @@ "par_idN10577\n" "help.text" msgid "DefStr Statement" -msgstr "DefStr-instructie" +msgstr "Instructie DefStr" #. hqQDQ #: 03101140.xhp @@ -26033,7 +26033,7 @@ "par_idN10587\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range." -msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de DefStr-instructie het standaardtype variabele ingesteld, volgens een letterbereik." +msgstr "Als er geen type-aanduidingsteken of sleutelwoord gespecificeerd is, wordt met de instructie DefStr het standaardtype variabele ingesteld, volgens een letterbereik." #. LCyE8 #: 03101140.xhp @@ -26078,7 +26078,7 @@ "hd_id3150504\n" "help.text" msgid "DefDate Statement" -msgstr "DefDate-instructie" +msgstr "Instructie DefDate" #. 7EJB8 #: 03101300.xhp @@ -26132,7 +26132,7 @@ "hd_id3147242\n" "help.text" msgid "DefDbl Statement" -msgstr "DefDbl-instructie" +msgstr "Instructie DefDbl" #. gJGCw #: 03101400.xhp @@ -26186,7 +26186,7 @@ "hd_id3149811\n" "help.text" msgid "DefInt Statement" -msgstr "DefInt-instructie" +msgstr "Instructie DefInt" #. 8QFfR #: 03101500.xhp @@ -26240,7 +26240,7 @@ "hd_id3148538\n" "help.text" msgid "DefLng Statement" -msgstr "DefLng-instructie" +msgstr "Instructie DefLng" #. RECCG #: 03101600.xhp @@ -26294,7 +26294,7 @@ "hd_id3149811\n" "help.text" msgid "DefObj Statement" -msgstr "DefObj-instructie" +msgstr "Instructie DefObj" #. vzCDm #: 03101700.xhp @@ -26339,7 +26339,7 @@ "hd_id3143267\n" "help.text" msgid "DefVar Statement" -msgstr "DefVar-instructie" +msgstr "Instructie DefVar" #. rLx6D #: 03102000.xhp @@ -26447,7 +26447,7 @@ "par_id3149412\n" "help.text" msgid "Dim variable [(start To end)] [As typename][, variable2[char] [(start To end)] [,...]]" -msgstr "Dim variable [(start To end)] [As typename][, variable2[char] [(start To end)] [,...]]" +msgstr "Dim variabele [(start aan einde)] [As typename][, variabele2[char] [(start aan einde)] [,...]]" #. JBuCh #: 03102100.xhp @@ -26555,7 +26555,7 @@ "par_id3155937\n" "help.text" msgid "Single: Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)." -msgstr "Single: Single-precisie zwevende-kommavariabele (3,402823 x 10E38 - 1,401298 x 10E-45)." +msgstr "Single: Enkele-precisie zwevende-kommavariabele (3,402823 x 10E38 - 1,401298 x 10E-45)." #. TcSDB #: 03102100.xhp @@ -26654,7 +26654,7 @@ "par_id3149924\n" "help.text" msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables." -msgstr "$[officename] BASIC ondersteunt één-dimensionale of multi-dimensionele arrays, gedefinieerd door een gespecificeerd type variabele. Arrays zijn geschikt als het programma overzichten bevat of tabellen die moeten worden bewerkt. Het voordeel van arrays is dat het mogelijk is om individuele elementen volgens indices te adresseren, die kunnen worden geformuleerd als numerieke expressies of variabelen." +msgstr "$[officename] BASIC ondersteunt eendimensionale en multi-dimensionele arrays, gedefinieerd door een gespecificeerd type variabele. Arrays zijn geschikt als het programma overzichten bevat of tabellen die moeten worden bewerkt. Het voordeel van arrays is dat het mogelijk is om individuele elementen volgens indices te adresseren, die kunnen worden geformuleerd als numerieke expressies of variabelen." #. ZuZBj #: 03102100.xhp @@ -26726,7 +26726,7 @@ "par_id3149036\n" "help.text" msgid "' Two-dimensional data field" -msgstr "' Twee-dimensioneel gegevensveld" +msgstr "' Tweedimensionaal gegevensveld" #. C4SQS #: 03102100.xhp @@ -26762,7 +26762,7 @@ "hd_id3150398\n" "help.text" msgid "ReDim Statement" -msgstr "ReDim-instructie" +msgstr "Instructie ReDim" #. F9HMw #: 03102101.xhp @@ -26789,7 +26789,7 @@ "par_id3156214\n" "help.text" msgid "ReDim [Preserve] variable [(start To end)] [As type-name][, variable2 [(start To end)] [As type-name][,...]]" -msgstr "ReDim [Preserve] variable [(start To end)] [As type-name][, variable2 [(start To end)] [As type-name][,...]]" +msgstr "ReDim [Preserve] variabele [(start aan einde)] [As type-name][, variabele2 [(start aan einde)] [As type-name][,...]]" #. 5wDoD #: 03102101.xhp @@ -27050,7 +27050,7 @@ "hd_id3153394\n" "help.text" msgid "IsEmpty Function" -msgstr "IsEmpty-functie" +msgstr "Functie IsEmpty" #. CvCEz #: 03102400.xhp @@ -27239,7 +27239,7 @@ "hd_id3155555\n" "help.text" msgid "IsNull Function" -msgstr "IsNull-functie" +msgstr "Functie IsNull" #. sJ5h3 #: 03102600.xhp @@ -27347,7 +27347,7 @@ "hd_id3145136\n" "help.text" msgid "IsNumeric Function" -msgstr "IsNumeric-functie" +msgstr "Functie IsNumeric" #. 2YPjv #: 03102700.xhp @@ -27608,7 +27608,7 @@ "hd_id3156027\n" "help.text" msgid "LBound Function" -msgstr "LBound-functie" +msgstr "Functie LBound" #. tPdvo #: 03102900.xhp @@ -27707,7 +27707,7 @@ "par_id3149670\n" "help.text" msgid "Long" -msgstr "Long" +msgstr "Lang" #. Svuit #: 03103000.xhp @@ -27788,7 +27788,7 @@ "hd_id3147242\n" "help.text" msgid "Let Statement" -msgstr "Let-instructie" +msgstr "Instructie Let" #. SiQNq #: 03103100.xhp @@ -27950,7 +27950,7 @@ "par_id3145787\n" "help.text" msgid "For i% = 1 To 10 ' This results in a run-time error" -msgstr "For i% = 1 To 10 ' Dit resulteert in een uitvoeringsfout" +msgstr "For i% = 1 To 10 ' Dit resulteert in een run-time fout" #. tBjCk #: 03103350.xhp @@ -28067,7 +28067,7 @@ "hd_id3153311\n" "help.text" msgid "Public Statement" -msgstr "Public-instructie" +msgstr "Instructie Public" #. f5QpN #: 03103400.xhp @@ -28076,7 +28076,7 @@ "par_id3150669\n" "help.text" msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules." -msgstr "Dimensioneert een variabele of een matrix op moduleniveau (niet binnen een subroutine of functie), zodat de variabele en de matrix geldig zijn in alle bibliotheken en modules." +msgstr "Past de dimensie van een variabele of een matrix op moduleniveau aan (niet binnen een subroutine of functie), zodat de variabele en de matrix geldig zijn in alle bibliotheken en modules." #. MQDAq #: 03103400.xhp @@ -28193,7 +28193,7 @@ "hd_id3149798\n" "help.text" msgid "Static Statement" -msgstr "Static-instructie" +msgstr "Instructie Static" #. eod6b #: 03103500.xhp @@ -28211,7 +28211,7 @@ "par_id3147264\n" "help.text" msgid "The Static statement cannot be used to define variable arrays. Arrays must be specified according to a fixed size." -msgstr "De Static-instructie kan niet worden gebruikt om variabele arrays te definiëren. Arrays moeten worden gespecificeerd overeenkomstig een vaste grootte." +msgstr "De instructie Static kan niet worden gebruikt om variabele arrays te definiëren. Arrays moeten worden gespecificeerd overeenkomstig een vaste grootte." #. SXakp #: 03103500.xhp @@ -28301,7 +28301,7 @@ "hd_id3143267\n" "help.text" msgid "TypeName Function; VarType Function" -msgstr "TypeName-functie; VarType-functie" +msgstr "Functies TypeName, VarType" #. w43wu #: 03103600.xhp @@ -28571,7 +28571,7 @@ "par_id211588241663649\n" "help.text" msgid "expression: A computable combination of terms such as a formula or an object property or method." -msgstr "expression: Een berekenbare combinatie van termen, zoals een formule of een objecteigenschap of -methode." +msgstr "expression: Een berekenbare combinatie van termen, zoals een formule of een objecteigenschap of methode." #. kSZDp #: 03103700.xhp @@ -28634,7 +28634,7 @@ "hd_id3145136\n" "help.text" msgid "FindObject Function" -msgstr "FindObject-functie" +msgstr "Functie FindObject" #. aFznu #: 03103800.xhp @@ -28742,7 +28742,7 @@ "hd_id3146958\n" "help.text" msgid "FindPropertyObject Function" -msgstr "FindPropertyObject-functie" +msgstr "Functie FindPropertyObject" #. pkBYN #: 03103900.xhp @@ -28823,7 +28823,7 @@ "hd_id3153527\n" "help.text" msgid "IsMissing Function" -msgstr "IsMissing-functie" +msgstr "Functie IsMissing" #. ZMKxG #: 03104000.xhp @@ -29201,7 +29201,7 @@ "hd_id3149987\n" "help.text" msgid "HasUnoInterfaces Function" -msgstr "HasUnoInterfaces-functie" +msgstr "Functie HasUnoInterfaces" #. JUPxm #: 03104400.xhp @@ -29282,7 +29282,7 @@ "hd_id3146117\n" "help.text" msgid "IsUnoStruct Function" -msgstr "IsUnoStruct-functie" +msgstr "Functie IsUnoStruct" #. fN4db #: 03104500.xhp @@ -29336,7 +29336,7 @@ "par_idN10644\n" "help.text" msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct" -msgstr "MsgBox bIsStruct ' Geeft Onwaar weer omdat oEenvoudigeBestandsToegang GEEN struct is" +msgstr "MsgBox bIsStruct ' Geeft Onwaar weer omdat oSimpleFileAccess GEEN struct is" #. LG9EY #: 03104500.xhp @@ -29363,7 +29363,7 @@ "par_idN1065B\n" "help.text" msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct" -msgstr "MsgBox bIsStruct ' Geeft Onwaar weer omdat oEenvBestandsToegang GEEN struct is." +msgstr "MsgBox bIsStruct ' Geeft Onwaar weer omdat 42 GEEN struct is." #. dBKzM #: 03104600.xhp @@ -29831,7 +29831,7 @@ "par_id3145609\n" "help.text" msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters." -msgstr "Gebruik de Asc-functie om toetsen door waarden te vervangen. Als Asc een lege tekenreeks tegenkomt, rapporteert $[officename] BASIC een runtime-fout. In aanvulling op de afdrukbare 7-bits ASCII tekens (Codes 0-127) kan de ASCII-functie ook worden gebruikt om niet-afdrukbare toetscodes in ASCII-code te ontdekken. Deze functie kan ook 16-bits unicode-tekens verwerken." +msgstr "Gebruik de Asc-functie om toetsen door waarden te vervangen. Als Asc een lege tekenreeks tegenkomt, rapporteert $[officename] BASIC een run-time fout. In aanvulling op de afdrukbare 7-bits ASCII tekens (Codes 0-127) kan de ASCII-functie ook worden gebruikt om niet-afdrukbare toetscodes in ASCII-code te ontdekken. Deze functie kan ook 16-bits unicode-tekens verwerken." #. VF7kK #: 03120101.xhp @@ -30146,7 +30146,7 @@ "par_id3143228\n" "help.text" msgid "Double" -msgstr "Double" +msgstr "Dubbel" #. 9YWca #: 03120104.xhp @@ -30326,7 +30326,7 @@ "par_id3145609\n" "help.text" msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535." -msgstr "Gebruik de functies AscW om toetsen te vervangen door Unicode-waarden. Als de functie AscW een lege tekenreeks krijgt, meldt %PRODUCTNAME Basic een run-time error. Uitvoerwaarden liggen tussen 0 en 65535." +msgstr "Gebruik de functies AscW om toetsen te vervangen door Unicode-waarden. Als de functie AscW een lege tekenreeks krijgt, meldt %PRODUCTNAME Basic een run-time fout. Uitvoerwaarden liggen tussen 0 en 65535." #. YACEd #: 03120111.xhp @@ -30686,7 +30686,7 @@ "hd_id3153539\n" "help.text" msgid "Format Function" -msgstr "Format-functie" +msgstr "Functie Format" #. AfW2N #: 03120301.xhp @@ -31046,7 +31046,7 @@ "hd_id3152363\n" "help.text" msgid "LCase Function" -msgstr "LCase-functie" +msgstr "Functie LCase" #. dkB32 #: 03120302.xhp @@ -31136,7 +31136,7 @@ "hd_id3149346\n" "help.text" msgid "Left Function" -msgstr "Left-functie" +msgstr "Functie Left" #. DVEfF #: 03120303.xhp @@ -31226,7 +31226,7 @@ "hd_id3143268\n" "help.text" msgid "LSet Statement" -msgstr "LSet-functie" +msgstr "Functie LSet" #. 2y5bo #: 03120304.xhp @@ -31343,7 +31343,7 @@ "hd_id3147574\n" "help.text" msgid "LTrim Function" -msgstr "LTrim-functie" +msgstr "Functie LTrim" #. mFiGU #: 03120305.xhp @@ -31415,7 +31415,7 @@ "hd_id3143268\n" "help.text" msgid "Mid Function, Mid Statement" -msgstr "Mid-functie, Mid-Instructie" +msgstr "Functie Mid, Instructie Mid" #. oznEx #: 03120306.xhp @@ -31532,7 +31532,7 @@ "hd_id3153311\n" "help.text" msgid "Right Function" -msgstr "Right-functie" +msgstr "Functie Right" #. w9pxb #: 03120307.xhp @@ -31550,7 +31550,7 @@ "par_id3149763\n" "help.text" msgid "See also: Left Function." -msgstr "Zie ook: Left-functie." +msgstr "Zie ook: Functie Left." #. A3Rzn #: 03120307.xhp @@ -31631,7 +31631,7 @@ "hd_id3153345\n" "help.text" msgid "RSet Statement" -msgstr "RSet-instructie" +msgstr "Instructie RSet" #. 9BREa #: 03120308.xhp @@ -31766,7 +31766,7 @@ "hd_id3154286\n" "help.text" msgid "RTrim Function" -msgstr "RTrim-functie" +msgstr "Functie RTrim" #. eXjba #: 03120309.xhp @@ -31784,7 +31784,7 @@ "par_id3153062\n" "help.text" msgid "See also: LTrim Function" -msgstr "Zie ook: LTrim-functie" +msgstr "Zie ook: Functie LTrim" #. 3KFbV #: 03120309.xhp @@ -31838,7 +31838,7 @@ "hd_id3153527\n" "help.text" msgid "UCase Function" -msgstr "UCase-functie" +msgstr "Functie UCase" #. vSKnv #: 03120310.xhp @@ -31856,7 +31856,7 @@ "par_id3150771\n" "help.text" msgid "See also: LCase Function" -msgstr "Zie ook: LCase-functie" +msgstr "Zie ook: Functie LCase" #. PDUSQ #: 03120310.xhp @@ -31928,7 +31928,7 @@ "hd_id3150616\n" "help.text" msgid "Trim Function" -msgstr "Trim-functie" +msgstr "Functie Trim" #. gJTc8 #: 03120311.xhp @@ -31991,7 +31991,7 @@ "hd_id3152801\n" "help.text" msgid "ConvertToURL Function" -msgstr "ConvertToUrl-functie" +msgstr "Functie ConvertToUrl" #. 9Xdmw #: 03120312.xhp @@ -32063,7 +32063,7 @@ "hd_id3153894\n" "help.text" msgid "ConvertFromURL Function" -msgstr "ConvertFromUrl-functie" +msgstr "Functie ConvertFromURL" #. wiX8u #: 03120313.xhp @@ -32126,7 +32126,7 @@ "hd_id3156027\n" "help.text" msgid "Split Function" -msgstr "Split-functie" +msgstr "Functie Split" #. LmvGz #: 03120314.xhp @@ -32207,7 +32207,7 @@ "hd_id3149416\n" "help.text" msgid "Join Function" -msgstr "Join-functie" +msgstr "Functie Join" #. DQFTH #: 03120315.xhp @@ -32261,7 +32261,7 @@ "tit\n" "help.text" msgid "Editing String Length" -msgstr "Stringlengte Bewerken" +msgstr "Tekenreekslengte Bewerken" #. aZQ3y #: 03120400.xhp @@ -32306,7 +32306,7 @@ "hd_id3155934\n" "help.text" msgid "InStr Function" -msgstr "InStr-functie" +msgstr "Functie InStr" #. b3faC #: 03120401.xhp @@ -32414,7 +32414,7 @@ "par_id3153361\n" "help.text" msgid "To avoid a run-time error, do not set the Compare parameter if the first optional parameter is omitted." -msgstr "De parameter Vergelijk moet, om een runtime-fout te vermijden, niet worden ingesteld als de parameter Start is weggelaten." +msgstr "De parameter Vergelijk moet, om een run-time fout te vermijden, niet worden ingesteld als de parameter Start is weggelaten." #. gRVcn #: 03120401.xhp @@ -32468,7 +32468,7 @@ "hd_id3154136\n" "help.text" msgid "Len Function" -msgstr "Len-functie" +msgstr "Functie Len" #. zQW3g #: 03120402.xhp @@ -32576,7 +32576,7 @@ "hd_id3156027\n" "help.text" msgid "StrComp Function" -msgstr "StrComp-functie" +msgstr "Functie StrComp" #. 8buFG #: 03120403.xhp @@ -32828,7 +32828,7 @@ "par_id3153361\n" "help.text" msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted." -msgstr "De parameter Vergelijk moet, om een runtime-fout te vermijden, niet worden ingesteld als de parameter Start is weggelaten." +msgstr "De parameter Vergelijk moet, om een run-time fout te vermijden, niet worden ingesteld als de parameter Start is weggelaten." #. yABaM #: 03120411.xhp @@ -32846,7 +32846,7 @@ "par_id3154125\n" "help.text" msgid "iPos = InStrRev(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive" -msgstr "iPos = InStrRev(sInput,\"the\",10,1) ' Geeft 1 terug, het zoeken is hoofdlettergevoeling" +msgstr "iPos = InStrRev(sInput,\"the\",10,1) ' Geeft 1 terug, het zoeken is hoofdlettergevoelig" #. caoEj #: 03120411.xhp @@ -32855,7 +32855,7 @@ "par_id051920170322141162\n" "help.text" msgid "iPos = InStrRev(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive" -msgstr "iPos = InStrRev(sInput,\"the\",10,0) ' Geeft 0 terug, het zoeken is hoofdlettergevoeling" +msgstr "iPos = InStrRev(sInput,\"the\",10,0) ' Geeft 0 terug, het zoeken is hoofdlettergevoelig" #. HSqzK #: 03120411.xhp @@ -32891,7 +32891,7 @@ "hd_id3155934\n" "help.text" msgid "StrReverse Function [VBA]" -msgstr "StrReverse [VBA]-functie" +msgstr "Functie StrReverse [VBA]" #. HnA2J #: 03120412.xhp @@ -32981,7 +32981,7 @@ "hd_id3143284\n" "help.text" msgid "Beep Statement" -msgstr "Beep-instructie" +msgstr "Instructie Beep" #. uh3FV #: 03130100.xhp @@ -33233,7 +33233,7 @@ "hd_id3154136\n" "help.text" msgid "Wait Statement" -msgstr "Wait-instructie" +msgstr "Instructie Wait" #. a6kxb #: 03130600.xhp @@ -33242,7 +33242,7 @@ "par_id3149236\n" "help.text" msgid "Interrupts the program execution for the amount of time that you specify in milliseconds." -msgstr "Onderbeekt de uitvoering van het programma voor de bepaalde tijd in milliseconden." +msgstr "Onderbreekt de uitvoering van het programma voor de bepaalde tijd in milliseconden." #. o7Bum #: 03130600.xhp @@ -33359,7 +33359,7 @@ "par_id251546102545124\n" "help.text" msgid "Wait statement" -msgstr "Wait-instructie" +msgstr "Instructie Wait" #. UAAuS #: 03130700.xhp @@ -33386,7 +33386,7 @@ "hd_id3147143\n" "help.text" msgid "GetSystemTicks Function" -msgstr "GetSystemTicks-functie" +msgstr "Functie GetSystemTicks" #. 3fFGL #: 03130700.xhp @@ -33476,7 +33476,7 @@ "hd_id3155364\n" "help.text" msgid "Environ Function" -msgstr "Environ-functie" +msgstr "Functie Environ" #. BGRpE #: 03130800.xhp @@ -33557,7 +33557,7 @@ "par_id3145419\n" "help.text" msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\"" -msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory voor tijdelijke bestanden:\"" +msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Map voor tijdelijke bestanden:\"" #. 83ZGB #: 03131000.xhp @@ -33584,7 +33584,7 @@ "hd_id3157898\n" "help.text" msgid "GetSolarVersion Function" -msgstr "GetSolarVersion-functie" +msgstr "Functie GetSolarVersion" #. nmGAh #: 03131000.xhp @@ -33665,7 +33665,7 @@ "hd_id3153539\n" "help.text" msgid "TwipsPerPixelX Function" -msgstr "TwipsPerPixeIX-functie" +msgstr "Functie TwipsPerPixeIX" #. bmYpd #: 03131300.xhp @@ -33746,7 +33746,7 @@ "hd_id3150040\n" "help.text" msgid "TwipsPerPixelY Function" -msgstr "TwipsPerPixelY-functie" +msgstr "Functie TwipsPerPixelY" #. DZE99 #: 03131400.xhp @@ -33827,7 +33827,7 @@ "hd_id3150499\n" "help.text" msgid "CreateUnoStruct Function" -msgstr "CreateUnoStruct-functie" +msgstr "Functie CreateUnoStruct" #. XVkg2 #: 03131500.xhp @@ -33989,7 +33989,7 @@ "hd_id3153255\n" "help.text" msgid "GetProcessServiceManager Function" -msgstr "GetProcessServiceManager-functie" +msgstr "Functie GetProcessServiceManager" #. L2WEC #: 03131700.xhp @@ -34043,7 +34043,7 @@ "hd_id3150040\n" "help.text" msgid "CreateUnoDialog Function" -msgstr "CreateUnoDialog-functie" +msgstr "Functie CreateUnoDialog" #. ryoxW #: 03131800.xhp @@ -34241,7 +34241,7 @@ "hd_id3155150\n" "help.text" msgid "CreateUnoListener Function" -msgstr "CreateUnoListener-functie" +msgstr "Functie CreateUnoListener" #. KPYNU #: 03132000.xhp @@ -34331,7 +34331,7 @@ "par_id3148922\n" "help.text" msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs." -msgstr "Het voorvoegsel roept geregistreerde Listeners uit BASIC-subroutines op. Het BASIC-runtimesysteem zoekt naar BASIC-subroutines of -functies met de naam \"VoorvoegselListenerMethode\" en roept ze op wanneer ze gevonden worden. Zo niet, dan treedt er een runtime-fout op." +msgstr "Het voorvoegsel roept geregistreerde Listeners uit BASIC-subroutines op. Het BASIC-runtimesysteem zoekt naar BASIC-subroutines of -functies met de naam \"VoorvoegselListenerMethode\" en roept ze op wanneer ze gevonden worden. Zo niet, dan treedt er een run-time fout op." #. jUJqF #: 03132000.xhp @@ -34529,7 +34529,7 @@ "par_id3150940\n" "help.text" msgid "Listener methods must always be implemented to avoid Basic run-time errors." -msgstr "Listener-methodes moeten altijd geïmplementeerd worden om Basic-runtimefouten te vermijden." +msgstr "Listener-methodes moeten altijd geïmplementeerd worden om Basic run-time fouten te vermijden." #. DkK8h #: 03132100.xhp @@ -34808,7 +34808,7 @@ "hd_id3150682\n" "help.text" msgid "CreateUnoValue Function" -msgstr "CreateUnoValue-functie" +msgstr "Functie CreateUnoValue" #. abSpa #: 03132300.xhp @@ -34952,7 +34952,7 @@ "bm_id4761192\n" "help.text" msgid "GetDefaultContext function" -msgstr "GetDefaultContext function" +msgstr "GetDefaultContext functie" #. 9Eu6p #: 03132500.xhp @@ -34961,7 +34961,7 @@ "par_idN10580\n" "help.text" msgid "GetDefaultContext Function" -msgstr "GetDefaultContext-functie" +msgstr "Functie GetDefaultContext" #. WkwpA #: 03132500.xhp @@ -35114,7 +35114,7 @@ "hd_id3150499\n" "help.text" msgid "FV Function [VBA]" -msgstr "FV-functie [VBA]" +msgstr "Functie FV [VBA]" #. xLDE6 #: 03140001.xhp @@ -35195,7 +35195,7 @@ "par_id061420170142332315\n" "help.text" msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units." -msgstr "Print myFV ' geeft 4234,00 valuta-eenheden. De waarde aan het eind van de investering bedraagt 4234,00 aluta-eenheden." +msgstr "Print myFV ' geeft 4234,00 valuta-eenheden. De waarde aan het eind van de investering bedraagt 4234,00 valuta-eenheden." #. mTaud #: 03140001.xhp @@ -35204,7 +35204,7 @@ "par_id061420170153186192\n" "help.text" msgid "FV function in CALC" -msgstr "FV-functie in CALC" +msgstr "Functie FV in CALC" #. oxTJD #: 03140002.xhp @@ -35231,7 +35231,7 @@ "hd_id3150499\n" "help.text" msgid "IPmt Function [VBA]" -msgstr "IPmt-functie [VBA]" +msgstr "Functie IPmt [VBA]" #. NhJBQ #: 03140002.xhp @@ -35330,7 +35330,7 @@ "par_id061420170153186192\n" "help.text" msgid "IPMT function in CALC" -msgstr "IPMT-functie in CALC" +msgstr "Functie IPMT in CALC" #. dif5D #: 03140003.xhp @@ -35357,7 +35357,7 @@ "hd_id3150499\n" "help.text" msgid "IRR Function [VBA]" -msgstr "IRR-functie [VBA]" +msgstr "Functie IRR [VBA]" #. GC4DC #: 03140003.xhp @@ -35402,7 +35402,7 @@ "par_id061420170153186192\n" "help.text" msgid "IRR function in CALC" -msgstr "IR-functie in CALC" +msgstr "Functie IR in CALC" #. htBbj #: 03140004.xhp @@ -35429,7 +35429,7 @@ "hd_id3150499\n" "help.text" msgid "MIRR Function [VBA]" -msgstr "MIRR-functie [VBA]" +msgstr "Functie MIRR [VBA]" #. iEx4J #: 03140004.xhp @@ -35483,7 +35483,7 @@ "par_id061420170153186192\n" "help.text" msgid "MIRR function in CALC" -msgstr "GIR-functie in CALC" +msgstr "Functie GIR in CALC" #. m3ULW #: 03140005.xhp @@ -37643,7 +37643,7 @@ "par_id3154068\n" "help.text" msgid "Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros." -msgstr "Toont de geopende $[officename]-documenten en -toepassingen. Klik op de naam van de locatie waar u de macro's wilt opslaan." +msgstr "Toont de geopende documenten en toepassingen van $[officename]. Klik op de naam van de locatie waar u de macro's wilt opslaan." #. DEuBS #: 05060700.xhp @@ -38588,7 +38588,7 @@ "bas_id731592358351744\n" "help.text" msgid "Function MySQRTPI(arg as double) as double" -msgstr "Function MySQRTPI(arg as double) as double" +msgstr "Functie MySQRTPI(arg as double) als dubbel" #. HHyMW #: calc_functions.xhp @@ -39425,7 +39425,7 @@ "par_id681592355799718\n" "help.text" msgid "QUOTIENT" -msgstr "QUOTIENT / QUOTIENT" +msgstr "QUOTIENT / QUOTIENT" #. AC3Lz #: calc_functions.xhp @@ -39569,7 +39569,7 @@ "tit\n" "help.text" msgid "Option ClassModule" -msgstr "Option ClassModule" +msgstr "Optie ClassModule" #. HFQ4r #: classmodule.xhp @@ -39578,7 +39578,7 @@ "N0082\n" "help.text" msgid "Option ClassModule" -msgstr "Option ClassModule" +msgstr "Optie ClassModule" #. WS3B9 #: classmodule.xhp @@ -39614,7 +39614,7 @@ "N0086\n" "help.text" msgid "Option ClassModule" -msgstr "Option ClassModule" +msgstr "Optie ClassModule" #. UoERn #: classmodule.xhp @@ -39686,7 +39686,7 @@ "N0108\n" "help.text" msgid "Refer to Identifying the Operating System and Getting Session Information for class module simple examples." -msgstr "Bekijk als voorbeelden Identificatie van het besturingssysteem en Sessie-informatie ophalen." +msgstr "Bekijk als voorbeelden Identificatie van het besturingssysteem en Sessie-informatie ophalen." #. JQJqh #: classmodule.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/scalc/00.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/scalc/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/scalc/00.po 2022-07-15 19:12:51.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-09-27 19:09+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: HanV \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1556093595.000000\n" #. E9tti @@ -725,7 +725,7 @@ "par_id3148645\n" "help.text" msgid "Choose Format - Rows - Hide." -msgstr "Kies Opmaak - Rijen - Rij verbergen." +msgstr "Kies Opmaak - Rijen - Verbergen." #. Ky3bX #: 00000405.xhp @@ -734,7 +734,7 @@ "par_id3153728\n" "help.text" msgid "Choose Format - Columns - Hide." -msgstr "Kies Opmaak - Kolommen - Kolom verbergen." +msgstr "Kies Opmaak - Kolommen - Verbergen." #. LbHeW #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565421340.000000\n" #. sZfWF @@ -16594,7 +16594,7 @@ "par_id3150798\n" "help.text" msgid "MMULT(Array 1; Array 2)" -msgstr "PRODUCTMAT(Matrix 1; Matrix 2)" +msgstr "PRODUCTMAT(Matrix1; Matrix2)" #. DqghH #: 04060107.xhp @@ -16603,7 +16603,7 @@ "par_id3150812\n" "help.text" msgid "Array 1 represents the first array used in the array product." -msgstr "Matrix 1 vertegenwoordigt de eerste matrix die in het matrixproduct wordt gebruikt." +msgstr "Matrix1 vertegenwoordigt de eerste matrix die in het matrixproduct wordt gebruikt." #. FDfwg #: 04060107.xhp @@ -16612,7 +16612,7 @@ "par_id3152553\n" "help.text" msgid "Array 2 represents the second array with the same number of rows." -msgstr "Matrix 2 vertegenwoordigt de tweede array met hetzelfde aantal rijen." +msgstr "Matrix2 vertegenwoordigt de tweede array met hetzelfde aantal rijen." #. CuGxm #: 04060107.xhp @@ -16621,7 +16621,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 "Selecteer een vierkant bereik. Kies de MMULT-functie. Selecteer Matrix 1,selecteer vervolgens Matrix 2. Schakel met behulp van de Functie-assistent, het selectievak Matrix in. Klik op OK. De uitvoermatrix verschijnt in het eerste geselecteerde bereik.." +msgstr "Selecteer een vierkant bereik. Kies de PRODUCTMAT-functie. Selecteer Matrix1, selecteer vervolgens Matrix2. Schakel met behulp van de Functie-assistent, het selectievak Matrix in. Klik op OK. De uitvoermatrix verschijnt in het eerste geselecteerde bereik.." #. vPBWq #: 04060107.xhp @@ -16747,7 +16747,7 @@ "par_id3152839\n" "help.text" msgid "LINEST(data_Y [; data_X [; linearType [; stats]]])" -msgstr "LIJNSCH(Gegevens Y [; Gegevens X [; Lijntype [; Statistieken]]])" +msgstr "LIJNSCH(Gegevens_Y [; Gegevens_X [; Lineairtype [; Statistieken]]])" #. M2QFp #: 04060107.xhp @@ -17215,7 +17215,7 @@ "par_id3163123\n" "help.text" msgid "LOGEST(DataY [; DataX [; FunctionType [; Stats]]])" -msgstr "LOGSCH(Gegevens Y [; Gegevens X [; Lijntype [; Statistieken]]])" +msgstr "LOGSCH(GegevensY [; GegevensX [; FunctieType [; Statistieken]]])" #. 8jgzC #: 04060107.xhp @@ -17557,7 +17557,7 @@ "par_id3166122\n" "help.text" msgid "TREND(DataY [; DataX [; NewDataX [; LinearType]]])" -msgstr "TREND(Gegevens Y [; Gegevens X [; Nieuwe gegevens X [; Lijntype]]])" +msgstr "TREND(GegevensY [; GegevensX [; NieuweGegevensX [; Lineairtype]]])" #. qeK4r #: 04060107.xhp @@ -17638,7 +17638,7 @@ "par_id3166377\n" "help.text" msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])" -msgstr "GROEI(Gegevens Y [; [ Gegevens X ] [; [ Nieuwe gegevens ] [; Functietype ] ] ])" +msgstr "GROEI(GegevensY [; [ GegevensX ] [; [ NieuweGegevensX ] [; Functietype ] ] ])" #. CA3qD #: 04060107.xhp @@ -43407,7 +43407,7 @@ "par_id3148645\n" "help.text" msgid "Select the rows or columns that you want to hide, and then choose Format - Rows - Hide or Format - Columns - Hide." -msgstr "Selecteer de rijen en kolommen die u wilt verbergen, en kies daarna Opmaak - Rijen - Rij verbergen of Opmaak - Kolommen - Kolom verbergen." +msgstr "Selecteer de rijen en kolommen die u wilt verbergen, en kies daarna Opmaak - Rijen - Verbergen of Opmaak - Kolommen - Verbergen." #. nuUMt #: 05030300.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/schart/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/schart/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/schart/01.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564161004.000000\n" #. DsZFP @@ -2156,7 +2156,7 @@ "par_id8202154\n" "help.text" msgid "The first element of the third row of the LINEST output is the value of r2. See the LINEST function for details on proper use and an explanation of the other output parameters." -msgstr "Het eerste element van de derde rij van de LIJNSCH-uitvoer is de waarde van r2. Zie de LIJNSCH-functie voor bijzonderheden over het juiste gebruik en een verklaring van de overige uitvoerparameters." +msgstr "Het eerste element van de derde rij van de LIJNSCH-uitvoer is de waarde van r2. Zie de functie LIJNSCH voor bijzonderheden over het juiste gebruik en een verklaring van de overige uitvoerparameters." #. RU3Fv #: 04050100.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/sdraw/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/sdraw/guide.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547981233.000000\n" #. cZbDh @@ -1076,7 +1076,7 @@ "bm_id3147436\n" "help.text" msgid "eyedropper toolcolors; replacingreplacing;colors in bitmapsmetafiles;replacing colorsbitmaps;replacing colorsGIF images;replacing colors" -msgstr "pipetkleuren; vervangenvervangen;kleuren in bitmapsmetabestanden;kleuren vervangenbitmaps;kleuren vervangenGIF-beelden;kleuren vervangen" +msgstr "paletkleuren; vervangenvervangen;kleuren in bitmapsmetabestanden;kleuren vervangenbitmaps;kleuren vervangenGIF-beelden;kleuren vervangen" #. seBAr #: eyedropper.xhp @@ -1094,7 +1094,7 @@ "par_id3156286\n" "help.text" msgid "You can replace colors in bitmaps with the Color Replacer tool." -msgstr "U kunt kleuren in afbeeldingen vervangen met de Pipet." +msgstr "U kunt kleuren in afbeeldingen vervangen met het Palet." #. ArA6H #: eyedropper.xhp @@ -1121,7 +1121,7 @@ "par_id3148488\n" "help.text" msgid "Similarly, you can use the Color Replacer to make a color on your image transparent." -msgstr "Op dezelfde wijze kunt u met de Pipet een kleur in uw afbeelding transparant maken." +msgstr "Op dezelfde wijze kunt u met het Palet een kleur in uw afbeelding transparant maken." #. ecY64 #: eyedropper.xhp @@ -1130,7 +1130,7 @@ "hd_id3150205\n" "help.text" msgid "To replace colors with the Color Replacer tool" -msgstr "Kleuren vervangen met de Pipet" +msgstr "Kleuren vervangen met het Palet" #. vr8bG #: eyedropper.xhp @@ -1148,7 +1148,7 @@ "par_id3150202\n" "help.text" msgid "Choose Tools - Color Replacer." -msgstr "Kies Extra - Pipet." +msgstr "Kies Extra - Palet." #. gyRmY #: eyedropper.xhp @@ -1157,7 +1157,7 @@ "par_id3155531\n" "help.text" msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon." -msgstr "Klik op het pictogram Pipet en plaats de muisaanwijzer op de kleur die u in de afbeelding wilt vervangen. De kleur verschijnt in het vak naast het pictogram Pipet." +msgstr "Klik op het pictogram Palet en plaats de muisaanwijzer op de kleur die u in de afbeelding wilt vervangen. De kleur verschijnt in het vak naast het pictogram Palet." #. tpTWi #: eyedropper.xhp @@ -1211,7 +1211,7 @@ "par_id3157871\n" "help.text" msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the Color Replacer tool and repeat your selection." -msgstr "Als u het kleurselectiegebied wilt vergroten of verkleinen, vermeerdert of vermindert u de tolerantie van het Pipet en herhaalt u uw selectie." +msgstr "Als u het kleurselectiegebied wilt vergroten of verkleinen, vermeerdert of vermindert u de tolerantie van het Palet en herhaalt u uw selectie." #. CwACD #: eyedropper.xhp @@ -1220,7 +1220,7 @@ "par_id3146878\n" "help.text" msgid "Color Replacer" -msgstr "Pipet" +msgstr "Palet" #. eY2vA #: gradient.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565254456.000000\n" #. 3B8ZN @@ -3713,7 +3713,7 @@ "par_id3154329\n" "help.text" msgid "Inch" -msgstr "Inch" +msgstr "Duim" #. iaQSr #: 00000020.xhp @@ -4973,7 +4973,7 @@ "par_id31456456938\n" "help.text" msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture." -msgstr " Specificeert of de achtergrond van de afbeelding als transparant moet worden opgeslagen. Alleen objecten zullen in de GIF-afbeelding zichtbaar zijn. Gebruik de Pipet om de transparante kleur in de afbeelding in te stellen." +msgstr " Specificeert of de achtergrond van de afbeelding als transparant moet worden opgeslagen. Alleen objecten zullen in de GIF-afbeelding zichtbaar zijn. Gebruik het Palet om de transparante kleur in de afbeelding in te stellen." #. DGtgZ #: 00000200.xhp @@ -15098,4 +15098,4 @@ "par_id4925907652612821\n" "help.text" msgid " Command+Option+Shift+V Crtl+Alt+Shift+V " -msgstr " Command+Option+Shift+V Crtl+Alt+Shift+V " +msgstr " Commando+Optie+Shift+V Crtl+Alt+Shift+V " diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: HanV \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565254635.000000\n" #. 3u8hR @@ -8762,7 +8762,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 "Om regeleindes in alinea-einden te veranderen, typt u \\n in zowel de vakken Zoeken als Vervangen en voert u vervolgens een zoekactie uit en vervangt u." +msgstr "Om regeleinden in alinea-einden te veranderen, typt u \\n in zowel de vakken Zoeken als Vervangen en voert u vervolgens een zoekactie uit en vervangt u." #. UvYSH #: 02100001.xhp @@ -36860,7 +36860,7 @@ "tit\n" "help.text" msgid "Color Replacer" -msgstr "Pipet" +msgstr "Palet" #. F8J8n #: 06030000.xhp @@ -36869,7 +36869,7 @@ "hd_id3156324\n" "help.text" msgid "Color Replacer" -msgstr "Pipet" +msgstr "Palet" #. tQEGW #: 06030000.xhp @@ -36878,7 +36878,7 @@ "par_id3145138\n" "help.text" msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics." -msgstr "Opent het dialoogvenster Pipet, waar u kleuren kunt vervangen in bitmap- en metafile-afbeeldingen." +msgstr "Opent het dialoogvenster Palet, waar u kleuren kunt vervangen in bitmap- en metafile-afbeeldingen." #. ZQBzV #: 06030000.xhp @@ -36905,7 +36905,7 @@ "par_id3145669\n" "help.text" msgid "Color Replacer" -msgstr "Pipet" +msgstr "Palet" #. a3Cw7 #: 06030000.xhp @@ -36923,7 +36923,7 @@ "hd_id3149827\n" "help.text" msgid "Color Replacer color" -msgstr "Kleur voor pipet" +msgstr "Kleur voor palet" #. G6i5f #: 06030000.xhp @@ -36932,7 +36932,7 @@ "par_id3146957\n" "help.text" 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 "Geeft de kleur in de afbeelding weer die direct onder de muisaanwijzer ligt. Dit werkt alleen als het Pipet geselecteerd is." +msgstr "Geeft de kleur in de afbeelding weer die direct onder de muisaanwijzer ligt. Dit werkt alleen als het Palet geselecteerd is." #. u7NWe #: 06030000.xhp @@ -37004,7 +37004,7 @@ "par_id3149903\n" "help.text" msgid "Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image." -msgstr "Geeft de kleur weer die u wilt vervangen in de geselecteerde afbeelding. Klik hier om de uitgangskleur in te stellen, klik op het pictogram Pipet en klik dan op een kleur in de geselecteerde afbeelding." +msgstr "Geeft de kleur weer die u wilt vervangen in de geselecteerde afbeelding. Klik hier om de uitgangskleur in te stellen, klik op het pictogram Palet en klik dan op een kleur in de geselecteerde afbeelding." #. d9qoj #: 06030000.xhp @@ -38156,7 +38156,7 @@ "par_id551613146766115\n" "help.text" msgid "internationals" -msgstr "internationals" +msgstr "internationalen" #. BWFWa #: 06040200.xhp @@ -41117,7 +41117,7 @@ "par_id111571327198482\n" "help.text" msgid "The dialog let you organize %PRODUCTNAME modules and dialogs into libraries. You can also import and export Basic libraries into files or extensions." -msgstr "Met dit dialoogvenster kunt u %PRODUCTNAME modules en dialoogvensters in bibliotheken beheren. U kunt ook basisbibliotheken importeren en exporteren naar bestanden of extensies." +msgstr "Met dit dialoogvenster kunt u %PRODUCTNAME modules en dialoogvensters in bibliotheken beheren. U kunt ook Basic bibliotheken importeren en exporteren naar bestanden of extensies." #. jarWv #: 06130300.xhp @@ -41369,7 +41369,7 @@ "par_id8968169\n" "help.text" msgid "Opens a dialog to export the selected library either as an extension or as a Basic library." -msgstr "Opent een dialoogvenster om de geselecteerde bibliotheek te exporteren als een extensie of als een basisbibliotheek." +msgstr "Opent een dialoogvenster om de geselecteerde bibliotheek te exporteren als een extensie of als een Basic bibliotheek." #. UkFBg #: 06130500.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/02.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/02.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563870099.000000\n" #. Edm6o @@ -8492,7 +8492,7 @@ "par_id441601902102235\n" "help.text" msgid "Before record action" -msgstr "Before record action" +msgstr "Voor de actie van opnemen" #. DWmSK #: 01170202.xhp @@ -8501,7 +8501,7 @@ "par_id51601902106123\n" "help.text" msgid "Before record change" -msgstr "Before record change" +msgstr "Voor de wijziging van opnemen" #. kwyVg #: 01170202.xhp @@ -8510,7 +8510,7 @@ "par_id451601902107636\n" "help.text" msgid "Before submitting" -msgstr "Before submitting" +msgstr "Voor het indienen" #. dtBgY #: 01170202.xhp @@ -8519,7 +8519,7 @@ "par_id821601902108413\n" "help.text" msgid "Before update" -msgstr "Before update" +msgstr "Voor de update" #. DfeUE #: 01170202.xhp @@ -8528,7 +8528,7 @@ "par_id81601902108958\n" "help.text" msgid "Fill parameters" -msgstr "Fill parameters" +msgstr "Parameters invullen" #. Jj9wR #: 01170203.xhp @@ -11264,7 +11264,7 @@ "tit\n" "help.text" msgid "Character Highlighting Color" -msgstr "Character Highlighting Color" +msgstr "Kleur gebruikt om teken te markeren" #. 5GRDP #: 02160000.xhp @@ -17726,7 +17726,7 @@ "par_id3149346\n" "help.text" msgid "Double-click this field to open the Available Master Slides dialog in which you can select the style for the current slide. You can select a different paper format or background." -msgstr "Dubbelklik op dit veld om het dialoogvenster Beschikbare modeldia's te openen waarin u de stijl voor de huidige dia kunt selecteren. U kunt een ander papierformaat of achtergrond kiezen." +msgstr "Dubbelklik op dit veld om het dialoogvenster Beschikbare diamodellen te openen waarin u de stijl voor de huidige dia kunt selecteren. U kunt een ander papierformaat of achtergrond kiezen." #. DLgbQ #: 20020000.xhp @@ -17735,7 +17735,7 @@ "par_id3147008\n" "help.text" msgid "Double-click this field to open the Available Master Slides dialog in which you select the style for the current page. You can select a different paper format or background." -msgstr "Dubbelklik op dit veld om het dialoogvenster Beschikbare modeldia's te openen waarin u de stijl voor de huidige pagina kunt selecteren. U kunt een ander papierformaat of achtergrond kiezen." +msgstr "Dubbelklik op dit veld om het dialoogvenster Beschikbare diamodellen te openen waarin u de stijl voor de huidige pagina kunt selecteren. U kunt een ander papierformaat of achtergrond kiezen." #. AMiFU #: 20030000.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-05-22 12:46+0000\n" -"Last-Translator: HanV \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: vpanter \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563870108.000000\n" #. kyYMn @@ -2156,7 +2156,7 @@ "par_id1754509\n" "help.text" msgid "[SumCost] + IF(ISBLANK([field]);0;[field])" -msgstr "[SumCost] + IF(ISBLANK([field]);0;[field])" +msgstr "[SumCost] + IF(ISBLANK([veld]);0;[veld])" #. tGCiz #: rep_navigator.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565254691.000000\n" #. iharT @@ -18446,7 +18446,7 @@ "hd_id3093440\n" "help.text" msgid "Recording a Macro " -msgstr "Recording a Macro " +msgstr "Een macro opnemen " #. mCnpB #: macro_recording.xhp @@ -18482,7 +18482,7 @@ "par_id3149399\n" "help.text" msgid "If Tools - Macros - Record Macro menu item is missing, make sure that macro recording feature is enabled in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "Als het menu-item Extra - Macro's - Macro opnemen ontbreekt, zorg ervoor dat macro opnamefunctie is ingeschakeld in %PRODUCTNAME - voorkeuren Extra - Opties- %PRODUCTNAME - Geavanceerd." +msgstr "Als het menu-item Extra - Macro's - Macro opnemen ontbreekt, zorg ervoor dat macro opnamefunctie is ingeschakeld in %PRODUCTNAME - voorkeuren Extra - Opties - %PRODUCTNAME - Geavanceerd." #. nAGMJ #: macro_recording.xhp @@ -19787,7 +19787,7 @@ "par_id0804200804174819\n" "help.text" msgid "The most recent versions of %PRODUCTNAME can load and save the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." -msgstr "De meest recente versies van %PRODUCTNAME kunnen de Microsoft Office Open XML-document formaten met de extensies docx, xlsx en pptx laden en opslaan. Dezelfde versies kunnen ook een aantal Excel Visual Basic scripts uitvoeren, als u deze functie bij %PRODUCTNAME - Voorkeuren Extra- Opties - Laden/Opslaan - VBA-eigenschappen." +msgstr "De meest recente versies van %PRODUCTNAME kunnen de Microsoft Office Open XML-document formaten met de extensies docx, xlsx en pptx laden en opslaan. Dezelfde versies kunnen ook een aantal Excel Visual Basic scripts uitvoeren, als u deze functie bij %PRODUCTNAME - Voorkeuren Extra - Opties - Laden/Opslaan - VBA-eigenschappen." #. DnADu #: ms_import_export_limitations.xhp @@ -24251,7 +24251,7 @@ "par_id3159876\n" "help.text" msgid "%PRODUCTNAME uses the installed fonts of your system. In a text document you can select from all printable fonts. In an HTML document or in Web layout, only fonts that are visible on screen are offered. In spreadsheets and drawings you can select from all installed fonts." -msgstr "%PRODUCTNAME gebruikt de geïnstalleerde lettertypen van uw systeem. In een tekstdocument kunt u uit alle af te drukken lettertypen selecteren. In een HTMLdocument of in Weblay-out, worden alleen lettertypen die zichtbaar zijn op het scherm aangeboden. In werkbladen en tekeningen kunt u uit alle geïnstalleerde lettertypen kiezen." +msgstr "%PRODUCTNAME gebruikt de geïnstalleerde lettertypen van uw systeem. In een tekstdocument kunt u uit alle af te drukken lettertypen selecteren. In een HTMLdocument of in Web-layout, worden alleen lettertypen die zichtbaar zijn op het scherm aangeboden. In werkbladen en tekeningen kunt u uit alle geïnstalleerde lettertypen kiezen." #. 7teWd #: spadmin.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" "Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -2858,7 +2858,7 @@ "par_id3146148\n" "help.text" msgid "Set the Black color value or key (black) as expressed in the CMYK color model." -msgstr "Stelt de kleurwaarde Key (zwart) in zoals in het CMYK-kleurenmodel wordt uitgedrukt." +msgstr "Stelt de kleurwaarde Sleutel (zwart) in zoals in het CMYK-kleurenmodel wordt uitgedrukt." #. UG3Cc #: 01010600.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/simpress/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/simpress/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/simpress/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/simpress/01.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562959457.000000\n" #. mu9aV @@ -914,7 +914,7 @@ "hd_id3153932\n" "help.text" msgid "Placement" -msgstr "Verplaatsing" +msgstr "Plaatsing" #. GGKfZ #: 02120000.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/smath/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/smath/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/smath/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/smath/01.po 2022-07-15 19:12:51.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-05-14 14:16+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564160263.000000\n" #. QmNGE @@ -5306,7 +5306,7 @@ "par_id3150706\n" "help.text" msgid "Use the icon to insert the is included in set operator with two placeholders. You can also enter in directly into the Commands window." -msgstr "Gebruik het pictogram om de verzamelingsoperator element vanen twee tijdelijke aanduidingen in te voegen. U kunt ook in rechtstreeks in het venster Opdrachten invoeren." +msgstr "Gebruik het pictogram om de verzamelingsoperator element van en twee tijdelijke aanduidingen in te voegen. U kunt ook in rechtstreeks in het venster Opdrachten invoeren." #. BCTht #: 03090800.xhp @@ -5324,7 +5324,7 @@ "par_id3150984\n" "help.text" msgid "is not included in" -msgstr "niet element van" +msgstr "geen element van" #. 2G8CQ #: 03090800.xhp @@ -5333,7 +5333,7 @@ "par_id3150997\n" "help.text" msgid "Use this icon to insert the is not included in set operator with two placeholders. You can also enter notin in the Commands window." -msgstr "Gebruik dit pictogram om de verzamelingsoperator niet element van en twee tijdelijke aanduidingen in te voegen. U kunt ook notin in het venster Opdrachten invoeren." +msgstr "Gebruik dit pictogram om de verzamelingsoperator geen element van en twee tijdelijke aanduidingen in te voegen. U kunt ook notin in het venster Opdrachten invoeren." #. DDPUD #: 03090800.xhp @@ -5351,7 +5351,7 @@ "par_id3149688\n" "help.text" msgid "includes" -msgstr "omvat" +msgstr "bevat" #. FL7zo #: 03090800.xhp @@ -5387,7 +5387,7 @@ "par_id3154829\n" "help.text" msgid "Use this icon to insert an empty set. Enter emptyset in the Commands window, in order to insert an empty set into your document." -msgstr "Gebruik dit pictogram om een lege verzameling in te voegen. Voer emptyset in het venster Opdrachten in om een lege verzameling in uw document in te voegen." +msgstr "Gebruik dit pictogram om een lege verzameling in te voegen. Voer lege verzameling in het venster Opdrachten in om een lege verzameling in uw document in te voegen." #. noALs #: 03090800.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/00.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564160792.000000\n" #. E9tti @@ -1940,7 +1940,7 @@ "par_id3148437\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Wrap tab." -msgstr "Kies tabbladOpmaak - Frame en OLE-object - Eigenschappen, tabblad Omloop." +msgstr "Kies tabblad Opmaak - Frame en OLE-object - Eigenschappen, tabblad Omloop." #. AC2Dm #: 00000405.xhp @@ -1985,7 +1985,7 @@ "par_id3156130\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Hyperlink tab." -msgstr "Kies tabbladOpmaak - Frame en OLE-object - Eigenschappen, tabblad Hyperlink." +msgstr "Kies tabblad Opmaak - Frame en OLE-object - Eigenschappen, tabblad Hyperlink." #. ttao8 #: 00000405.xhp @@ -2012,7 +2012,7 @@ "par_id3145636\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Options tab." -msgstr "Kies tabbladOpmaak - Frame en OLE-object - Eigenschappen, tabblad Opties." +msgstr "Kies tabblad Opmaak - Frame en OLE-object - Eigenschappen, tabblad Opties." #. BVcWP #: 00000405.xhp @@ -2057,7 +2057,7 @@ "par_id3154323\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Macro tab." -msgstr "Kies tabbladOpmaak - Frame en OLE-object - Eigenschappen, tabblad Macro." +msgstr "Kies tabblad Opmaak - Frame en OLE-object - Eigenschappen, tabblad Macro." #. RUiBn #: 00000405.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 10:09+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564344900.000000\n" #. sZfWF @@ -122,7 +122,7 @@ "par_id3154102\n" "help.text" msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the Database tab page under Insert - Field - More Fields." -msgstr "Gedurende het afdrukken vervangt de informatie uit de database de overeenkomstige databasevelden (tijdelijke aanduidingen). Voor meer informatie over het invoegen van databasevelden gaat u naar het tabblad Database via Invoegen - Velden - Overige." +msgstr "Gedurende het afdrukken vervangt de informatie uit de database de overeenkomstige databasevelden (tijdelijke aanduidingen). Voor meer informatie over het invoegen van databasevelden gaat u naar het tabblad Database via Invoegen - Veld - Meer velden." #. TUvZD #: 01150000.xhp @@ -203,7 +203,7 @@ "par_id3149034\n" "help.text" msgid "Specify the number of the first record to be printed." -msgstr "Specificeert het nummer van het eerste record dat moet afgedrukt worden." +msgstr "Specificeert het nummer van het eerste record dat afgedrukt moet worden." #. AQKFV #: 01150000.xhp @@ -221,7 +221,7 @@ "par_id3145758\n" "help.text" msgid "Specify the number of the last record to be printed." -msgstr "Specificeert het nummer van de laatste record dat moet afgedrukt worden." +msgstr "Specificeert het nummer van de laatste record dat afgedrukt moet worden." #. Zjw9y #: 01150000.xhp @@ -7916,7 +7916,7 @@ "par_id3147524\n" "help.text" msgid "Inserts a text field that is hidden when the condition that you specify is met. To use this function, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View and clear the Hidden text check box." -msgstr "Voegt een tekstveld in dat verborgen is wanneer aan de door u opgegeven voorwaarde is voldaan. Om deze functie te gebruiken, kiest u %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME Writer - View en schakel het selectievakje Verborgen tekst uit." +msgstr "Voegt een tekstveld in dat verborgen is wanneer aan de door u opgegeven voorwaarde is voldaan. Om deze functie te gebruiken, kiest u %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME Writer - Beeld en schakel het selectievakje Verborgen tekst uit." #. BMoMs #: 04090003.xhp @@ -7943,7 +7943,7 @@ "par_id3154192\n" "help.text" msgid "Combine characters" -msgstr "Tekens samenvoegen" +msgstr "Tekens combineren" #. ZvbFD #: 04090003.xhp @@ -8150,7 +8150,7 @@ "par_id3145771\n" "help.text" msgid "Enter the characters that you want to combine. You can combine a maximum of 6 characters. This option is only available for the Combine characters field type." -msgstr "Voer de tekens in die u wilt samenvoegen . U kunt maximaal 6 tekens samenvoegen. Deze optie is alleen beschikbaar voor het veldtype Tekens samenvoegen." +msgstr "Voer de tekens in die u wilt samenvoegen . U kunt maximaal 6 tekens samenvoegen. Deze optie is alleen beschikbaar voor het veldtype Tekens combineren." #. Ai2hU #: 04090003.xhp @@ -19247,7 +19247,7 @@ "par_id3154735\n" "help.text" msgid "Enter the color tolerance for the Color Replacer as a percentage. To increase the color range that the Color Replacer selects, enter a high percentage." -msgstr "Voer de kleurtolerantie voor de pipet als een percentage in. Voer een hoger percentage in om te zorgen dat de pipet een groter kleurbereik selecteert." +msgstr "Voer de kleurtolerantie voor het palet als een percentage in. Voer een hoger percentage in om te zorgen dat het kleurbereik groter is." #. 6TUPo #: 05060300.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -14981,7 +14981,7 @@ "par_id3149825\n" "help.text" msgid "You can save a $[officename] Writer document in HTML format, so that you can view it in a web browser. If you want, you can associate a page break with a specific heading paragraph style to generate a separate HTML page each time the style appears in the document. $[officename] Writer automatically creates a page containing hyperlinks to each of these pages." -msgstr "U kunt een $[officename] Writer-document in HTML-indeling opslagen, zodat u het in een webbrowser kunt bekijken. U kunt desgewenst een pagina-einde aan een specifiek opmaakprofiel voor kopalinea's koppelen, zodat er telkens wanneer het profiel in het document verschijnt, een afzonderlijke HTML-pagina gegenereerd wordt. $[officename] Writer maakt automatisch een pagina met hyperlinks naar elk van deze pagina's." +msgstr "U kunt een $[officename] Writer-document in HTML-indeling opslaan, zodat u het in een webbrowser kunt bekijken. U kunt desgewenst een pagina-einde aan een specifiek opmaakprofiel voor kopalinea's koppelen, zodat telkens wanneer het profiel in het document staat, er een nieuwe HTML-pagina gegenereerd wordt. $[officename] Writer maakt automatisch een pagina aan met hyperlinks naar elk van deze pagina's." #. wLERk #: send2html.xhp @@ -14990,7 +14990,7 @@ "par_id3155922\n" "help.text" msgid "When you save a text document in HTML format, any graphics in the document are saved into the HTML document as embedded data streams. $[officename] tries to keep the original format of graphics, i.e. JPEG pictures or SVG images will be saved into HTML as such. All other graphic formats are saved as PNG." -msgstr "Wanneer u een tekstdocument in HTML opmaak opslaat, zullen alle afbeeldingen in het document opgeslagen worden als ingebedde gegevensstromen. $[officename] probeert het originele formaat van de afbeeldingen te bewaren, bijvoorbeeld JPEG of SVG afbeeldingen worden als zodanig opgeslagen in HTML. Alle andere grafische formaten worden opgeslagen als PNG." +msgstr "Wanneer u een tekstdocument in HTML-indeling opslaat, zullen alle afbeeldingen in het document opgeslagen worden als ingebedde gegevensstromen. $[officename] probeert het originele formaat van de afbeeldingen te bewaren, bijvoorbeeld JPEG of SVG afbeeldingen worden als zodanig opgeslagen in HTML. Alle andere grafische formaten worden opgeslagen als PNG." #. GYXrF #: send2html.xhp @@ -15008,7 +15008,7 @@ "par_id3156100\n" "help.text" msgid "Choose File - Send - Create HTML Document." -msgstr "Kies File - Verzenden - HTML-document maken." +msgstr "Kies Bestand - Verzenden - HTML-document maken." #. pPvuf #: send2html.xhp @@ -15017,7 +15017,7 @@ "par_id3149281\n" "help.text" msgid "In the Styles box, select the paragraph style that you want to use to generate a new HTML page." -msgstr "In het vak Opmaakprofielen selecteert u het alinea-opmaakprofiel dat u wilt gebruiken om een nieuwe HTML-pagina te genereren." +msgstr "In het vak Sjablonen selecteert u het alinea-opmaakprofiel dat u wilt gebruiken om een nieuwe HTML-pagina te genereren." #. XoGne #: send2html.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter.po libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter.po --- libreoffice-7.3.4/translations/source/nl/helpcontent2/source/text/swriter.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/helpcontent2/source/text/swriter.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2022-06-06 18:38+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1551389492.000000\n" #. x2qZ6 @@ -2714,7 +2714,7 @@ "par_id3154263\n" "help.text" msgid "$[officename] Writer lets you design and produce text documents that can include graphics, tables, or charts. You can then save the documents in a variety of formats, including the standardized OpenDocument format (ODF), Microsoft Word .doc format, or HTML. And you can easily export your document to the Portable Document Format (PDF)." -msgstr "$[officename] Writer laat u tekstdocumenten ontwerpen en produceren die afbeeldingen, tabellen, of diagrammen kunnen bevatten. U kunt de documenten opslaan in een groot scala aan indelingen, inclusief het gestandaardiseerde OpenDocument format (ODF), Microsoft Word .doc-indeling of HTML. En u kunt uw document eenvoudig exporteren naar het Portable Document Format (PDF)." +msgstr "$[officename] Writer laat u tekstdocumenten ontwerpen en produceren die afbeeldingen, tabellen en diagrammen kunnen bevatten. U kunt de documenten opslaan in een groot scala aan indelingen, inclusief het gestandaardiseerde OpenDocument format (ODF), Microsoft Word .doc-indeling of HTML. En u kunt uw document eenvoudig exporteren naar het Portable Document Format (PDF)." #. 4BzDB #: main0503.xhp @@ -2786,7 +2786,7 @@ "par_id3145610\n" "help.text" msgid "$[officename] Writer contains numerous desktop publishing and drawing tools to assist you in creating professionally styled documents, such as brochures, newsletters and invitations. You can format your documents with multi-column layouts, frames, graphics, tables, and other objects." -msgstr "$[officename] Writer bevat tal van desktop publishing en tekentools om u te helpen bij het maken van professioneel gestileerde documenten, zoals brochures, nieuwsbrieven en uitnodigingen. U kunt uw documenten opmaken met lay-outs met meerdere kolommen, frames, afbeeldingen, tabellen, en andere objecten." +msgstr "$[officename] Writer bevat tal van desktop publishing en tekentools om u te helpen bij het maken van professioneel gestileerde documenten, zoals brochures, nieuwsbrieven en uitnodigingen. U kunt uw documenten opmaken met lay-outs met meerdere kolommen, frames, afbeeldingen, tabellen en andere objecten." #. EpFCE #: main0503.xhp @@ -2840,7 +2840,7 @@ "par_id3151243\n" "help.text" msgid "You can insert pictures with different formats into a text document, including graphics with a JPG or GIF format. In addition, the Gallery provides a collection of clipart graphics, and the Fontwork Gallery creates stunning font effects." -msgstr "U kunt afbeeldingen invoegen in verschillende indelingen in een tekstdocument, inclusief afbeeldingen in een JPG- of GIF-indeling. In aanvulling daarop verschaft de Galerij een collectie van clipart-afbeeldingen, en de Fontwork-galerij maakt verbazende lettertype-effecten." +msgstr "U kunt afbeeldingen invoegen in verschillende indelingen in een tekstdocument, inclusief afbeeldingen in een JPG- of GIF-indeling. In aanvulling daarop verschaft de Galerij een collectie van clipart-afbeeldingen en de Fontwork-galerij maakt verbazende lettertype-effecten." #. pNEHk #: main0503.xhp diff -Nru libreoffice-7.3.4/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -10044,7 +10044,7 @@ "Label\n" "value.text" msgid "Snap to Page Margins" -msgstr "Vangen aan paginamarges" +msgstr "Vangen aan diamarges" #. GdPUt #: DrawImpressCommands.xcu @@ -10914,7 +10914,7 @@ "Label\n" "value.text" msgid "Go to First Page" -msgstr "Naar de eerste pagina" +msgstr "Naar de eerste dia" #. pK2xk #: DrawImpressCommands.xcu @@ -10954,7 +10954,7 @@ "Label\n" "value.text" msgid "Go to Previous Page" -msgstr "Naar vorige pagina" +msgstr "Naar vorige dia" #. GXaQT #: DrawImpressCommands.xcu @@ -10994,7 +10994,7 @@ "Label\n" "value.text" msgid "Go to Next Page" -msgstr "Naar volgende pagina" +msgstr "Naar volgende dia" #. ELGDQ #: DrawImpressCommands.xcu @@ -11034,7 +11034,7 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "Naar laatste pagina" +msgstr "Naar laatste dia" #. RG79F #: DrawImpressCommands.xcu @@ -18324,7 +18324,7 @@ "Label\n" "value.text" msgid "%PRODUCTNAME ~Help" -msgstr "~Help voor %PRODUCTNAME (F1)" +msgstr "~Help voor %PRODUCTNAME" #. PpNqG #: GenericCommands.xcu @@ -18854,7 +18854,7 @@ "Label\n" "value.text" msgid "Entire Page" -msgstr "Hele pagina" +msgstr "Hele dia" #. Es6QK #: GenericCommands.xcu @@ -19074,7 +19074,7 @@ "Label\n" "value.text" msgid "Rectangle, Rounded" -msgstr "Afgeronde rechthoek" +msgstr "Rechthoek, afgerond" #. 5CDYv #: GenericCommands.xcu @@ -19786,7 +19786,7 @@ "Label\n" "value.text" msgid "Unordered List" -msgstr "Ongeordende lijst" +msgstr "Ongeordende lijst aan/uit" #. XoWcu #: GenericCommands.xcu @@ -20716,7 +20716,7 @@ "Label\n" "value.text" msgid "Page Width" -msgstr "Paginabreedte" +msgstr "Diabreedte" #. aPYJv #: GenericCommands.xcu @@ -21816,7 +21816,7 @@ "Label\n" "value.text" msgid "~Hyperlink..." -msgstr "H~yperlink (Ctrl+K)..." +msgstr "H~yperlink..." #. TE7TG #: GenericCommands.xcu @@ -22446,7 +22446,7 @@ "Label\n" "value.text" msgid "Rounded Rectangle, Unfilled" -msgstr "Afgeronde rechthoek, ongevuld" +msgstr "Rechthoek, afgerond, ongevuld." #. okfb9 #: GenericCommands.xcu @@ -22476,7 +22476,7 @@ "Label\n" "value.text" msgid "Rounded Square" -msgstr "Afgerond vierkant" +msgstr "Vierkant, afgerond" #. Ebx9J #: GenericCommands.xcu @@ -22506,7 +22506,7 @@ "Label\n" "value.text" msgid "Rounded Square, Unfilled" -msgstr "Afgerond vierkant, ongevuld" +msgstr "Vierkant, afgerond, ongevuld" #. Kv7Tf #: GenericCommands.xcu @@ -26596,7 +26596,7 @@ "Label\n" "value.text" msgid "Signatu~re Line..." -msgstr "O~ndertekeninsgregel..." +msgstr "O~ndertekeningsregel..." #. azmKp #: GenericCommands.xcu @@ -27326,7 +27326,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "Overgenomen cirkels en ellipsen" +msgstr "Overgeërfde cirkels en ellipsen" #. NvwkC #: ImpressWindowState.xcu @@ -27536,7 +27536,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "Overgenomen rechthoeken" +msgstr "Overgeërfde rechthoeken" #. DQRc7 #: ImpressWindowState.xcu diff -Nru libreoffice-7.3.4/translations/source/nl/sc/messages.po libreoffice-7.3.5/translations/source/nl/sc/messages.po --- libreoffice-7.3.4/translations/source/nl/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: vpanter \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564829506.000000\n" #. kBovX @@ -6010,7 +6010,7 @@ #: sc/inc/scfuncs.hrc:731 msgctxt "SC_OPCODE_IS_ERR" msgid "Returns TRUE if the value is an error value not equal to #N/A." -msgstr "Resulteert in WAAR als de waarde een foutwaarde is, die niet gelijk is aan #NV." +msgstr "Resulteert in WAAR als de waarde een foutwaarde is, die niet gelijk is aan #N/B." #. 6Gdng #: sc/inc/scfuncs.hrc:732 @@ -6370,7 +6370,7 @@ #: sc/inc/scfuncs.hrc:891 msgctxt "SC_OPCODE_IF_NA" msgid "Returns value if not a #N/A error, else alternative." -msgstr "Retourneert een waarde als niet een #N/A fout, anders alternatief." +msgstr "Retourneert een waarde als niet een #N/B fout, anders alternatief." #. vUvwA #: sc/inc/scfuncs.hrc:892 @@ -6394,7 +6394,7 @@ #: sc/inc/scfuncs.hrc:895 msgctxt "SC_OPCODE_IF_NA" msgid "The alternative to be returned, should value be a #N/A error." -msgstr "Het gegeven alternatief moet #N/A foutwaarde zijn." +msgstr "Het gegeven alternatief moet #N/B foutwaarde zijn." #. xUnPu #: sc/inc/scfuncs.hrc:901 @@ -14322,7 +14322,7 @@ #: sc/inc/scfuncs.hrc:3453 msgctxt "SC_OPCODE_ERROR_TYPE_ODF" msgid "Returns a number corresponding to one of the error values or #N/A if no error exists" -msgstr "Geeft als resultaat een getal dat overeenkomt met één van de foutwaarden of #N/A als er geen fout bestaat" +msgstr "Geeft als resultaat een getal dat overeenkomt met één van de foutwaarden of #N/B als er geen fout bestaat" #. jWN8r #: sc/inc/scfuncs.hrc:3454 @@ -25253,97 +25253,97 @@ msgstr "~Weergave" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Afbeeldin_g" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Afbeeldin_g" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenen" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenen" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Ob~ject" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Afdrukken" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Af~drukken" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "F_ormulier" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensie" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensie" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "E_xtra" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "E~xtra" @@ -25702,139 +25702,139 @@ msgstr "Afbeeldin_g" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Schikken" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "K_leur" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Raster" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Taal" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Beoo_rdelen" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Opmerkingen" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Vergelijken" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Beel_d" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Te_kenen" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Be_werken" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Schikken" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Beel_d" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Groe_peren" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Le_ttertype" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Uitlijning" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Beel_d" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Invoegen" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "F_rame" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Schikken" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Raster" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "Beel_d" diff -Nru libreoffice-7.3.4/translations/source/nl/scaddins/messages.po libreoffice-7.3.5/translations/source/nl/scaddins/messages.po --- libreoffice-7.3.4/translations/source/nl/scaddins/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/scaddins/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559976857.000000\n" #. i8Y7Z @@ -5058,7 +5058,7 @@ #: scaddins/inc/strings.hrc:65 msgctxt "ANALYSIS_FUNCNAME_Tbilleq" msgid "TBILLEQ" -msgstr "SCHATKIST.OBL" +msgstr "SCHATK.OBL" #. 3nkLF #: scaddins/inc/strings.hrc:66 @@ -5424,49 +5424,49 @@ #: scaddins/inc/strings.hrc:126 msgctxt "ANALYSIS_FUNCNAME_Imtan" msgid "IMTAN" -msgstr "IMTAN" +msgstr "C.TAN" #. LAvtq #: scaddins/inc/strings.hrc:127 msgctxt "ANALYSIS_FUNCNAME_Imsec" msgid "IMSEC" -msgstr "IMSEC" +msgstr "C.SEC" #. z2LA2 #: scaddins/inc/strings.hrc:128 msgctxt "ANALYSIS_FUNCNAME_Imcsc" msgid "IMCSC" -msgstr "IMCOSEC" +msgstr "C.COSEC" #. QMh3f #: scaddins/inc/strings.hrc:129 msgctxt "ANALYSIS_FUNCNAME_Imcot" msgid "IMCOT" -msgstr "IMCOT" +msgstr "C.COT" #. dDt5m #: scaddins/inc/strings.hrc:130 msgctxt "ANALYSIS_FUNCNAME_Imsinh" msgid "IMSINH" -msgstr "IMSINH" +msgstr "C.SINH" #. AbhV7 #: scaddins/inc/strings.hrc:131 msgctxt "ANALYSIS_FUNCNAME_Imcosh" msgid "IMCOSH" -msgstr "IMCOSH" +msgstr "C.COSH" #. uAUF5 #: scaddins/inc/strings.hrc:132 msgctxt "ANALYSIS_FUNCNAME_Imsech" msgid "IMSECH" -msgstr "IMSECH" +msgstr "C.SECH" #. U5b99 #: scaddins/inc/strings.hrc:133 msgctxt "ANALYSIS_FUNCNAME_Imcsch" msgid "IMCSCH" -msgstr "IMCOSECHYP" +msgstr "C.COSECH" #. CF5gh #: scaddins/inc/strings.hrc:134 diff -Nru libreoffice-7.3.4/translations/source/nl/sd/messages.po libreoffice-7.3.5/translations/source/nl/sd/messages.po --- libreoffice-7.3.4/translations/source/nl/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562579951.000000\n" #. WDjkB @@ -3196,7 +3196,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:320 msgctxt "copydlg|label1" msgid "Placement" -msgstr "Verplaatsing" +msgstr "Plaatsing" #. 3Dyw2 #: sd/uiconfig/sdraw/ui/copydlg.ui:354 @@ -3226,7 +3226,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:422 msgctxt "copydlg|label2" msgid "Enlargement" -msgstr "Grootte" +msgstr "Uitbreiding" #. ENMbc #: sd/uiconfig/sdraw/ui/copydlg.ui:456 @@ -4173,109 +4173,109 @@ msgstr "~Tabel" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Afbeelding" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Afbeeldin~g" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenen" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenen" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Object" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "F_ormulier" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Diamodel" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Diamodel" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensie" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensie" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "E_xtra" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "E~xtra" @@ -7062,109 +7062,109 @@ msgstr "~Tabel" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Afbeelding" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Afbeeldin~g" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Te_kenen" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Tekenen" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Object" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Ob~ject" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "F_ormulier" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulier" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Model" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Model" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensie" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensie" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "E_xtra" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "E~xtra" diff -Nru libreoffice-7.3.4/translations/source/nl/sfx2/messages.po libreoffice-7.3.5/translations/source/nl/sfx2/messages.po --- libreoffice-7.3.4/translations/source/nl/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: vpanter \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561713292.000000\n" #. bHbFE @@ -3163,7 +3163,7 @@ #: sfx2/uiconfig/ui/developmenttool.ui:410 msgctxt "developmenttool|services" msgid "Services" -msgstr "Services" +msgstr "Diensten" #. H7pYE #: sfx2/uiconfig/ui/developmenttool.ui:460 diff -Nru libreoffice-7.3.4/translations/source/nl/starmath/messages.po libreoffice-7.3.5/translations/source/nl/starmath/messages.po --- libreoffice-7.3.4/translations/source/nl/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562579978.000000\n" #. GrDhX @@ -992,19 +992,19 @@ #: starmath/inc/strings.hrc:115 msgctxt "RID_OPER_FROMX_HELP" msgid "General operator Subscript Bottom" -msgstr "Algemene operator Subscript Bottom" +msgstr "Bovenkant algemene operator subscript" #. HaUqv #: starmath/inc/strings.hrc:116 msgctxt "RID_OPER_TOX_HELP" msgid "General operator Superscript Top" -msgstr "Algemene operator Superscript Top" +msgstr "Bovenkant algemene operator superscript" #. Pch4L #: starmath/inc/strings.hrc:117 msgctxt "RID_OPER_FROMTOX_HELP" msgid "General operator Sup/Sub script" -msgstr "Algemene operator Sup/Sub-script" +msgstr "Algemene operator Sup/Subscript" #. 4eGMf #: starmath/inc/strings.hrc:118 @@ -1016,7 +1016,7 @@ #: starmath/inc/strings.hrc:119 msgctxt "RID_SUM_FROMX_HELP" msgid "Sum Subscript Bottom" -msgstr "Subscript beneden" +msgstr "Som subscript beneden" #. C3yFy #: starmath/inc/strings.hrc:120 @@ -1088,19 +1088,19 @@ #: starmath/inc/strings.hrc:131 msgctxt "RID_LIM_FROMX_HELP" msgid "Limes Subscript Bottom" -msgstr "Subscript beneden" +msgstr "Limiet subscript beneden" #. CbG7y #: starmath/inc/strings.hrc:132 msgctxt "RID_LIM_TOX_HELP" msgid "Limes Superscript Top" -msgstr "Limes superscript boven" +msgstr "Limiet superscript boven" #. EWw4P #: starmath/inc/strings.hrc:133 msgctxt "RID_LIM_FROMTOX_HELP" msgid "Limes Sup/Sub script" -msgstr "Som Sup/Subscript" +msgstr "Limiet Sup/Subscript" #. wL7Ae #: starmath/inc/strings.hrc:134 @@ -1226,19 +1226,19 @@ #: starmath/inc/strings.hrc:154 msgctxt "RID_IIINT_FROMX_HELP" msgid "Triple Integral Subscript Bottom" -msgstr "Onderkant integraal driedubbel Subscript" +msgstr "Onderkant integraal drievoudig subscript" #. B9bYA #: starmath/inc/strings.hrc:155 msgctxt "RID_IIINT_TOX_HELP" msgid "Triple Integral Superscript Top" -msgstr "Bovenkant integraal dubbel Superscript" +msgstr "Bovenkant integraal drievoudig superscript" #. tBhDK #: starmath/inc/strings.hrc:156 msgctxt "RID_IIINT_FROMTOX_HELP" msgid "Triple Integral Sup/Sub script" -msgstr "Integraal dubbel Sup/Supscript" +msgstr "Integraal drievoudig Sup/Supscript" #. FAhtN #: starmath/inc/strings.hrc:157 @@ -1250,19 +1250,19 @@ #: starmath/inc/strings.hrc:158 msgctxt "RID_LINT_FROMX_HELP" msgid "Curve Integral Subscript Bottom" -msgstr "Onderkant boogintegraal dubbel Subscript" +msgstr "Onderkant dubbele boogintegraal subscript" #. x9KBD #: starmath/inc/strings.hrc:159 msgctxt "RID_LINT_TOX_HELP" msgid "Curve Integral Superscript Top" -msgstr "Bovenkant integraal dubbel Superscript" +msgstr "Bovenkant boogintegraal dubbel Superscript" #. FRxLN #: starmath/inc/strings.hrc:160 msgctxt "RID_LINT_FROMTOX_HELP" msgid "Curve Integral Sup/Sub script" -msgstr "Integraal dubbel Sup/Supscript" +msgstr "Boogintegraal dubbel Sup/Supscript" #. u6fSm #: starmath/inc/strings.hrc:161 @@ -1280,13 +1280,13 @@ #: starmath/inc/strings.hrc:163 msgctxt "RID_LLINT_TOX_HELP" msgid "Double Curve Integral Superscript Top" -msgstr "Bovenkant integraal dubbel Superscript" +msgstr "Bovenkant dubbele boogintegraal subscript" #. Fb8Ag #: starmath/inc/strings.hrc:164 msgctxt "RID_LLINT_FROMTOX_HELP" msgid "Double Curve Integral Sup/Sub script" -msgstr "Integraal dubbel Sup/Supscript" +msgstr "Boogintegraal dubbel Sup/Supscript" #. SGAUu #: starmath/inc/strings.hrc:165 @@ -1298,19 +1298,19 @@ #: starmath/inc/strings.hrc:166 msgctxt "RID_LLLINT_FROMX_HELP" msgid "Triple Curve Integral Subscript Bottom" -msgstr "Onderkant boogintegraal driedubbel Subscript" +msgstr "Onderkant drievoudige boogintegraal subscript" #. hDzUB #: starmath/inc/strings.hrc:167 msgctxt "RID_LLLINT_TOX_HELP" msgid "Triple Curve Integral Superscript Top" -msgstr "Bovenkant integraal dubbel Superscript" +msgstr "Bovenkant drievoudige boogintegraal subscript" #. 53vdH #: starmath/inc/strings.hrc:168 msgctxt "RID_LLLINT_FROMTOX_HELP" msgid "Triple Curve Integral Sup/Sub script" -msgstr "Integraal dubbel Sup/Supscript" +msgstr "Drievoudig boogintegraal Sup/Supscript" #. L2GPS #: starmath/inc/strings.hrc:169 @@ -1418,7 +1418,7 @@ #: starmath/inc/strings.hrc:186 msgctxt "RID_BOLDX_HELP" msgid "Bold Font" -msgstr "Vet" +msgstr "Vet lettertype" #. 9HXmb #: starmath/inc/strings.hrc:187 @@ -1466,13 +1466,13 @@ #: starmath/inc/strings.hrc:194 msgctxt "RID_COLORX_AQUA_HELP" msgid "Color Aqua" -msgstr "Kleur: Aqua" +msgstr "Aqua" #. 6zGQ2 #: starmath/inc/strings.hrc:195 msgctxt "RID_COLORX_FUCHSIA_HELP" msgid "Color Fuchsia" -msgstr "Kleur: Fuchsia" +msgstr "Fuchsia" #. em3aA #: starmath/inc/strings.hrc:196 @@ -1532,79 +1532,79 @@ #: starmath/inc/strings.hrc:205 msgctxt "RID_COLORX_RGB_HELP" msgid "Color RGB" -msgstr "Kleuren RGB" +msgstr "RGB" #. FHLCx #: starmath/inc/strings.hrc:206 msgctxt "RID_COLORX_RGBA_HELP" msgid "Color RGBA" -msgstr "Kleur: RGBA" +msgstr "RGBA" #. UxFDW #: starmath/inc/strings.hrc:207 msgctxt "RID_COLORX_HEX_HELP" msgid "Color hexadecimal" -msgstr "Kleur: hexadecimaal" +msgstr "hexadecimaal" #. MGdCv #: starmath/inc/strings.hrc:208 msgctxt "RID_COLORX_CORAL_HELP" msgid "Color Coral" -msgstr "Kleur: Koraal" +msgstr "Koraal" #. gPCCe #: starmath/inc/strings.hrc:209 msgctxt "RID_COLORX_CRIMSON_HELP" msgid "Color Crimson" -msgstr "Kleur: Karmozijnrood" +msgstr "Karmozijnrood" #. oDRbR #: starmath/inc/strings.hrc:210 msgctxt "RID_COLORX_MIDNIGHT_HELP" msgid "Color Midnight blue" -msgstr "Kleur: Nachtblauw" +msgstr "Nachtblauw" #. 4aCMu #: starmath/inc/strings.hrc:211 msgctxt "RID_COLORX_VIOLET_HELP" msgid "Color Violet" -msgstr "Kleur: Violet" +msgstr "Violet" #. Qivdb #: starmath/inc/strings.hrc:212 msgctxt "RID_COLORX_ORANGE_HELP" msgid "Color Orange" -msgstr "Kleur: Oranje" +msgstr "Oranje" #. CVygm #: starmath/inc/strings.hrc:213 msgctxt "RID_COLORX_ORANGERED_HELP" msgid "Color Orangered" -msgstr "Kleur: Oranjerode" +msgstr "Oranjerood" #. LbfRK #: starmath/inc/strings.hrc:214 msgctxt "RID_COLORX_SEAGREEN_HELP" msgid "Color Seagreen" -msgstr "Kleur: Zeegroen" +msgstr "Zeegroen" #. DKivY #: starmath/inc/strings.hrc:215 msgctxt "RID_COLORX_INDIGO_HELP" msgid "Color Indigo" -msgstr "Kleur: Indigo" +msgstr "Indigo" #. TZQzN #: starmath/inc/strings.hrc:216 msgctxt "RID_COLORX_HOTPINK_HELP" msgid "Color Hot pink" -msgstr "Kleur: Felroze" +msgstr "Felroze" #. GHgTB #: starmath/inc/strings.hrc:217 msgctxt "RID_COLORX_LAVENDER_HELP" msgid "Color Lavender" -msgstr "Kleur: Lavendel" +msgstr "Lavendel" #. HQmw7 #: starmath/inc/strings.hrc:218 @@ -2060,7 +2060,7 @@ #: starmath/inc/strings.hrc:293 msgctxt "RID_WIDEHARPOONX_HELP" msgid "Large Harpoon" -msgstr "Grote harpoen" +msgstr "Lange harpoen" #. 5Ce5n #: starmath/inc/strings.hrc:294 @@ -2348,7 +2348,7 @@ #: starmath/inc/strings.hrc:343 msgctxt "STR_LIME" msgid "lime" -msgstr "citroengeel" +msgstr "Limoen" #. MERnK #: starmath/inc/strings.hrc:344 @@ -3513,7 +3513,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:818 msgctxt "spacingdialog|1title" msgid "Spacing" -msgstr "Afstand" +msgstr "Afstand(en)" #. CUx6t #: starmath/uiconfig/smath/ui/spacingdialog.ui:867 diff -Nru libreoffice-7.3.4/translations/source/nl/svtools/messages.po libreoffice-7.3.5/translations/source/nl/svtools/messages.po --- libreoffice-7.3.4/translations/source/nl/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: HanV \n" "Language-Team: Dutch \n" "Language: nl\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559888382.000000\n" #. fLdeV @@ -5320,7 +5320,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:598 msgctxt "graphicexport|extended_tip|savetransparencycb" msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture." -msgstr " Specificeert of de achtergrond van de afbeelding als transparant moet worden opgeslagen. Alleen objecten zullen in de GIF-afbeelding zichtbaar zijn. Gebruik de Pipet om de transparante kleur in de afbeelding in te stellen." +msgstr "Specificeert of de achtergrond van de afbeelding als transparant moet worden opgeslagen. Alleen objecten zullen in de GIF-afbeelding zichtbaar zijn. Gebruik het Palet om de transparante kleur in de afbeelding in te stellen." #. ZPmXf #: svtools/uiconfig/ui/graphicexport.ui:607 diff -Nru libreoffice-7.3.4/translations/source/nl/svx/messages.po libreoffice-7.3.5/translations/source/nl/svx/messages.po --- libreoffice-7.3.4/translations/source/nl/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: vpanter \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -7691,7 +7691,7 @@ #: include/svx/strings.hrc:1386 msgctxt "STR_IMAGE_CAPACITY" msgid "$(CAPACITY) kiB" -msgstr "$(CAPACITY) kiB" +msgstr "$(CAPACITY) kB" #. Xgeqc #: include/svx/strings.hrc:1387 @@ -12401,7 +12401,7 @@ #: svx/source/dialog/page.hrc:39 msgctxt "RID_SVXSTRARY_PAPERSIZE_STD" msgid "Long Bond" -msgstr "Long Bond" +msgstr "Long Bond (papier formaat)" #. JMsqY #: svx/source/dialog/page.hrc:40 @@ -15573,7 +15573,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:503 msgctxt "dockingcolorreplace|pipette" msgid "Pipette" -msgstr "Pipet" +msgstr "Palet" #. CQGvD #: svx/uiconfig/ui/dockingcolorreplace.ui:508 @@ -15585,13 +15585,13 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:552 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 "Geeft de kleur in de afbeelding weer die direct onder de muisaanwijzer ligt. Dit werkt alleen als het Pipet geselecteerd is." +msgstr "Geeft de kleur in de afbeelding weer die direct onder de muisaanwijzer ligt. Dit werkt alleen als het Palet geselecteerd is." #. gbska #: svx/uiconfig/ui/dockingcolorreplace.ui:569 msgctxt "dockingcolorreplace|extended_tip|DockingColorReplace" msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics." -msgstr "Opent het dialoogvenster Pipet, waar u kleuren kunt vervangen in rasterafbeeldingen en metafile-afbeeldingen." +msgstr "Opent het dialoogvenster Palet, waar u kleuren kunt vervangen in rasterafbeeldingen en metafile-afbeeldingen." #. cXHxL #: svx/uiconfig/ui/dockingfontwork.ui:47 @@ -16887,7 +16887,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:429 msgctxt "floatingcontour|TBI_PIPETTE" msgid "Pipette" -msgstr "Pipet" +msgstr "Palet" #. A6v7a #: svx/uiconfig/ui/floatingcontour.ui:433 @@ -16905,7 +16905,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:457 msgctxt "floatingcontour|extended_tip|spinbutton" msgid "Enter the color tolerance for the Color Replacer as a percentage. To increase the color range that the Color Replacer selects, enter a high percentage." -msgstr "Voer de kleurtolerantie voor de pipet als een percentage in. Voer een hoger percentage in om te zorgen dat de pipet een groter kleurbereik selecteert." +msgstr "Voer de kleurtolerantie voor het palet als een percentage in. Voer een hoger percentage in om te zorgen dat het kleurbereik groter is." #. CFqCa #: svx/uiconfig/ui/floatingcontour.ui:497 diff -Nru libreoffice-7.3.4/translations/source/nl/sw/messages.po libreoffice-7.3.5/translations/source/nl/sw/messages.po --- libreoffice-7.3.4/translations/source/nl/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562579985.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Verplaatst het geselecteerde alinea-opmaakprofiel één niveau lager in de indexhiërarchie." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stijl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Opmaakprofielen" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Maakt indexitems van specifieke alinea-opmaakprofielen." @@ -13955,37 +13955,37 @@ msgstr "Databases wisselen" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definiëren" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Gebruikte databases" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Beschikbare databases" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Bladeren..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opent een dialoogvenster Bestand openen waarin u een databasebestand (*.odb) kunt selecteren. Het geselecteerde bestand wordt aan de lijst Beschikbare databases toegevoegd." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Gebruik de knop Bladeren om een database-bestand te selecteren." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Geeft de databases weer die momenteel in gebruik zijn." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Geeft een lijst van databases die zijn geregistreerd in %PRODUCTNAME ." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Databases wisselen" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database op document toegepast:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Wijzig de gegevensbronnen voor het huidige document." @@ -20073,109 +20073,109 @@ msgstr "Gebruik het huidige _document" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Gebruikt het huidige Writer-document als de basis voor de standaardbrief." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Een nieu_w document aanmaken" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Maakt een nieuw Writer-document dat voor de standaardbrief gebruikt kan worden." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Begin vanuit _een bestaand document" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Selecteer een bestaand Writer-document dat als basis voor de standaardbrief gebruikt moet worden." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Begin vanuit een s_jabloon" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selecteer de sjabloon met behulp waarvan u uw standaardbrief wilt maken." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Begin van_uit een onlangs opgeslagen startdocument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Gebruik een bestaande standaardbrief als de basis voor een nieuwe." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selecteer het document." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Bladeren..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Zoek het Writer-document dat u wilt gebruiken en klik vervolgens op Openen." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B_laderen..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Open een dialoogvenster om een sjabloon te selecteren." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "De gegevensbron van het huidige document is niet geregistreerd. Wissel de database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Database wisselen..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Begindocument voor standaardbrief selecteren" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Specificeer het document dat u als basis voor de standaardbrief wilt gebruiken." @@ -22318,49 +22318,49 @@ msgstr "Object" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opties" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Omloop" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Randen" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Vlak" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparantie" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Bijwerken" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Toont statistieken voor het huidige document." diff -Nru libreoffice-7.3.4/translations/source/nl/vcl/messages.po libreoffice-7.3.5/translations/source/nl/vcl/messages.po --- libreoffice-7.3.4/translations/source/nl/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nl/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-05-18 09:18+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562579992.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Drukt meerdere pagina's op een vel papier af." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Gebruikergedefinieerd" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Selecteer hoeveel pagina's per vel papier afgedrukt moeten worden." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pagina's:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selecteer een aantal rijen." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "door" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selecteer een aantal kolommen." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marge:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selecteer de marge tussen individuele pagina's op elk blad papier." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "tussen pagina's" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Afstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selecteer de marge tussen de af te drukken pagina's en de papierrand." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "naar bladrand" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Volgorde:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Van links naar rechts, dan naar beneden" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Van boven naar beneden, dan naar rechts" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Van boven naar beneden, dan naar links" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Van rechts naar links, dan naar beneden" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Selecteer de volgorde waarin de pagina's moeten worden afgedrukt." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Teken een rand om elke pagina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Instellen om een rand om ieder pagina te tekenen." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Selecteer om het document in brochureformaat af te drukken." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Sorteringsvoorbeeld" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Wijzig de indeling van de pagina's die op elk blad worden afgedrukt. Het voorbeeld toont hoe elk blad eruit zal zien." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_eer" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Pagina-opmaak" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Algemeen" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Drukt het huidige document, de huidige selectie of de opgegeven pagina's af. U kunt ook de afdrukopties voor het huidige document instellen." diff -Nru libreoffice-7.3.4/translations/source/nn/chart2/messages.po libreoffice-7.3.5/translations/source/nn/chart2/messages.po --- libreoffice-7.3.4/translations/source/nn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-01 13:38+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547916233.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Vel talet på linjer for diagramtypen «Søyle og linje»." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Vel ein grunntype for diagrammet." diff -Nru libreoffice-7.3.4/translations/source/nn/cui/messages.po libreoffice-7.3.5/translations/source/nn/cui/messages.po --- libreoffice-7.3.4/translations/source/nn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-02-06 20:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566134353.000000\n" #. GyY9M @@ -15068,7 +15068,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:39 msgctxt "extended_tip|matchcase" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. MkLv3 #: cui/uiconfig/ui/optjsearchpage.ui:50 @@ -15080,7 +15080,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:58 msgctxt "extended_tip|matchfullhalfwidth" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. FPFmB #: cui/uiconfig/ui/optjsearchpage.ui:69 @@ -15092,7 +15092,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:77 msgctxt "extended_tip|matchhiraganakatakana" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. vx6x8 #: cui/uiconfig/ui/optjsearchpage.ui:88 @@ -15104,7 +15104,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:96 msgctxt "extended_tip|matchcontractions" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. DLxj9 #: cui/uiconfig/ui/optjsearchpage.ui:107 @@ -15116,7 +15116,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:115 msgctxt "extended_tip|matchminusdashchoon" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. SWosj #: cui/uiconfig/ui/optjsearchpage.ui:126 @@ -15128,7 +15128,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:134 msgctxt "extended_tip|matchrepeatcharmarks" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. 62963 #: cui/uiconfig/ui/optjsearchpage.ui:145 @@ -15140,7 +15140,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:153 msgctxt "extended_tip|matchvariantformkanji" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. ghXPH #: cui/uiconfig/ui/optjsearchpage.ui:164 @@ -15152,7 +15152,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:172 msgctxt "extended_tip|matcholdkanaforms" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. Wxc7u #: cui/uiconfig/ui/optjsearchpage.ui:183 @@ -15164,7 +15164,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:191 msgctxt "extended_tip|matchdiziduzu" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. mAzGZ #: cui/uiconfig/ui/optjsearchpage.ui:202 @@ -15176,7 +15176,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:210 msgctxt "extended_tip|matchbavahafa" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. MJAYD #: cui/uiconfig/ui/optjsearchpage.ui:221 @@ -15188,7 +15188,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:229 msgctxt "extended_tip|matchtsithichidhizi" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. CDA8F #: cui/uiconfig/ui/optjsearchpage.ui:240 @@ -15200,7 +15200,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:248 msgctxt "extended_tip|matchhyuiyubyuvyu" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. MsCme #: cui/uiconfig/ui/optjsearchpage.ui:259 @@ -15212,7 +15212,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:267 msgctxt "extended_tip|matchseshezeje" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. nRKqj #: cui/uiconfig/ui/optjsearchpage.ui:278 @@ -15224,7 +15224,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:286 msgctxt "extended_tip|matchiaiya" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. 4i3uv #: cui/uiconfig/ui/optjsearchpage.ui:297 @@ -15236,7 +15236,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:305 msgctxt "extended_tip|matchkiku" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. eEXX5 #: cui/uiconfig/ui/optjsearchpage.ui:316 @@ -15248,7 +15248,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:324 msgctxt "extended_tip|matchprolongedsoundmark" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handsamast som like i eit søk." #. rPGGZ #: cui/uiconfig/ui/optjsearchpage.ui:339 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisk" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Høg kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oksygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klassisk" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Vel stilen for symbola i verktøylinjer og dialogvindauge." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikon_stil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Legg til fleire ikontema via utvidingar" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikonstil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Krev omstart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Bruk _maskinvareakselerasjon" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Brukar maskinvarefunksjonar direkte frå grafikkortet for å betra skjermvisinga." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Bruk _kantutjamning" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Dersom det er støtta, kan du slå av og på kantutjamning på bilete. Når det er på, vil dei fleste typar bilete sjå jamnare og mindre kunstige ut." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Bruk Skia for all oppteikning" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Tving fram Skia-programgjengjeving" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Treng omstart. Slår du på denne kan du ikkje bruka grafikkdrivar." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia er slått på." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr ">Skia er slått av." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Biletvising" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Vis _førehandsvising av skrifter" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 namna på skrifttypar som kan veljast saman med den aktuelle skrifta. Dette gjeld for eksempel skrifter i boksen «Skrif» på verktøylinja Formatering." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Utjamning av skrift på skjermen" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Vel for å jamna ut måten teksten dukkar opp på skjermen på." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_frå:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Skriv inn den minste skriftstorleiken som skal brukast i utjamning." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Skriftlister" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Køyr grafikktestar" diff -Nru libreoffice-7.3.4/translations/source/nn/dbaccess/messages.po libreoffice-7.3.5/translations/source/nn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/nn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-01 13:38+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563635504.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Laga ein _ny database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Vel for å laga ein ny database." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Innebygd database:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Opna ei eksisterande database_fil" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Vel for å opna ei databasefil frå ei liste over tidlegare brukte filer eller frå eit dialogvindauge for å velja filer." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Tidlegare brukt:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Vel ei databasefil som skal opnast frå lista over tidlegare brukte filer. Trykk «Fullfør» for å opna fila og avslutta vegvisaren." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Opna" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Opnar eit dialogvindauge der du kan velja ei databasefil. Trykk «Opna» eller «OK» for å opna den valde fila og avslutta vegvisaren." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Kopla til ein _database" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Vel for å oppretta eit databasedokument for ei eksisterande databasekopling." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Vel databasetypen for den eksisterande databasekoplinga." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Det er ikkje råd å laga ein ny database fordi korkje HSQLDB eller Firebird er tilgjengelege i dette oppsettet." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Databasevegvisaren lagar ei databasefil som inneheld informasjon om ein database." diff -Nru libreoffice-7.3.4/translations/source/nn/desktop/messages.po libreoffice-7.3.5/translations/source/nn/desktop/messages.po --- libreoffice-7.3.4/translations/source/nn/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-06-21 20:43+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1536333213.000000\n" #. v2iwK @@ -1001,7 +1001,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:389 msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog" msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions." -msgstr "Utvidingshandteraren kan leggja til, fjerna, kopla på eller av og oppdatera %PRODUCTNAME-utvidingar." +msgstr "Utvidingshandsamaren kan leggja til, fjerna, kopla på eller av og oppdatera %PRODUCTNAME-utvidingar." #. EGwkP #: desktop/uiconfig/ui/installforalldialog.ui:12 diff -Nru libreoffice-7.3.4/translations/source/nn/extensions/messages.po libreoffice-7.3.5/translations/source/nn/extensions/messages.po --- libreoffice-7.3.4/translations/source/nn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-12-01 13:38+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556107818.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Oppdater skjemaet" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Hent" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Send" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Fleirdelt" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kort ÅÅ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kort ÅÅÅÅ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lang)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/ÅÅ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/ÅÅ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ÅÅ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/ÅÅÅÅ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/ÅÅÅÅ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ÅÅÅÅ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ÅÅ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ÅÅÅÅ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ikkje merkt" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Merkt" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ikkje definert" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alle postane" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Post i bruk" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Gjeldande side" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nei" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Overordna skjema" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ingen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkel" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Fleire linjer" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Område" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vassrett" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Loddrett" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Avbryt" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hjelp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Den valde oppføringa" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posisjonen til den valde oppføringa" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enkel linje" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Fleirlinja" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Fleirlinja med formatering" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ingen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vassrett" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Loddrett" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Begge" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Flat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Oppe til venstre" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Midt på til venstre" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Nede til venstre" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Oppe til høgre" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Midt på til høgre" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Nede til høgre" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Over til venstre" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Over midt på" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Over til høgre" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Under til venstre" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Under midt på" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Under til høgre" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Sentrert" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Ta vare på" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Byt ut" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Fald saman" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nei" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Behald storleiksforholdet" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Tilpass til storleiken" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Frå venstre til høgre" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Frå høgre til venstre" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Bruk innstillingar frå overordna objekt" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Aldri" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Når i fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Alltid" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Til avsnitt" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Som teikn" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Til ramme" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Til teikn" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Til side" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Til celle" diff -Nru libreoffice-7.3.4/translations/source/nn/fpicker/messages.po libreoffice-7.3.5/translations/source/nn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/nn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-06-21 20:43+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" @@ -216,55 +216,55 @@ msgstr "Endringsdato" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Opna" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Spel" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fil_namn:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Fil_type:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "S_kriveverna" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Lagra med passord" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatisk filetternamn" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Rediger _filterinnstillingar" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Krypter med GPG-nøkkel" diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2022-07-15 19:12:51.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-10-20 13:08+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563873716.000000\n" #. WcTKB @@ -1013,7 +1013,7 @@ "par_id11630542436346\n" "help.text" msgid "Range objects have a property named TableBorder2 that can be used to format range borders as it is done in the Format - Cells - Borders dialog in the Line Arrangement section." -msgstr "Områdeobjekt har ein eigenskap som heiter TableBorder2. Denne kan brukast til å formatere områdegrenselinjer slik det vert gjort i fana Kantlinjer i dialogvindauget Format → Celler → Kantlinjer ." +msgstr "Områdeobjekt har ein eigenskap som heiter TableBorder2. Denne kan brukast til å formatera områdegrenselinjer slik det vert gjort i fana Kantlinjer i dialogvindauget Format → Celler → Kantlinjer ." #. A25aA #: calc_borders.xhp @@ -1175,7 +1175,7 @@ "par_id3153726\n" "help.text" msgid "If you do not see the Toolbox bar, click the arrow next to the Insert Controls icon to open the Toolbox bar." -msgstr "Dersom du ikkje ser verktøylinja Verktøykasse, kan du trykkja på pila ved sida av ikonet Set inn kontrollelement for å opna ho." +msgstr "Dersom du ikkje ser verktøylinja Verktøykasse, kan du trykkja på pila ved sida av ikonet Set inn kontrollelement for å opna ho." #. cBdmB #: create_dialog.xhp @@ -1904,7 +1904,7 @@ "par_id4601940\n" "help.text" msgid "The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs." -msgstr "I dialogvindaugeredigeringa til Basic IDE vil verktøylinja «Språk» innehalda kontrollar du kan bruka til å slå på og handtera dialogvindauge som kan omsetjast." +msgstr "I dialogvindaugeredigeringa til Basic IDE vil verktøylinja «Språk» innehalda kontrollar du kan bruka til å slå på og handsama dialogvindauge som kan omsetjast." #. eGsqR #: translation.xhp @@ -1922,7 +1922,7 @@ "par_id6998809\n" "help.text" msgid "Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages." -msgstr "Vel språket du ønskjer å omsetja til. Trykk knappen «Handter språk» for å leggja til støtte for fleire språk." +msgstr "Vel språket du ønskjer å omsetja til. Trykk knappen «Handsam språk» for å leggja til støtte for fleire språk." #. KQ48Z #: translation.xhp @@ -2012,7 +2012,7 @@ "par_id7359233\n" "help.text" msgid "Click the Manage Languages iconManage Language icon on the Language toolbar or on the Toolbox bar." -msgstr "Klikk på knappen Handter språk Ikonet for handter språk på verktøylinja for språk eller på verktøylinja." +msgstr "Klikk på knappen Handter språk Ikonet for handsaming av språk på verktøylinja for språk eller på verktøylinja." #. MHDVd #: translation.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/python.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/python.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566316183.000000\n" #. naSFZ @@ -2687,7 +2687,7 @@ "N0238\n" "help.text" msgid "Python standard output file is not available when running Python macros from Tools - Macros - Run Macro menu. Refer to Input/Output to Screen for more information." -msgstr "Standard utdatafil for Python er ikkje tilgjengeleg når du køyrer Python-makroar frå Verktøy → Makroar → Køyr Makro. Du finn meir om dette på Input/Output to Screen." +msgstr "Standard utdatafil for Python er ikkje tilgjengeleg når du køyrer Python-makroar frå Verktøy → Makroar → Køyr makro. Du finn meir om dette på Input/Output to Screen." #. WuGCs #: python_programming.xhp @@ -2885,7 +2885,7 @@ "N0286\n" "help.text" msgid "See Creating a Listener" -msgstr "See Laga ein lyttar" +msgstr "Sjå Laga ein lyttar" #. LNUaK #: python_programming.xhp @@ -3038,7 +3038,7 @@ "N0435\n" "help.text" msgid "Python standard output file is not available when running Python macros from Tools – Macros - Run Macro... menu. Presenting the output of a module requires the Python interactive console. Features such as input(), print(), repr() and str() are available from the Python shell." -msgstr "Python sine standard utdatafiler er ikkje tilgjengelge når Python-makroar vert køyrde frå menyen Verktøy → Makroar → Køyr makro. For å visa utdata frå ein modul, må ein bruka Python sin interaktive konsoll. Funksjonar som input(), print(), repr() and str() er tilgjengelege frå Python-skalet." +msgstr "Python sine standard utdatafiler er ikkje tilgjengelge når Python-makroar vert køyrde frå menyen Verktøy → Makroar → Køyr makro. For å visa utdata frå ein modul, må ein bruka Python sin interaktive konsoll. Funksjonar som input(), print(), repr() og str() er tilgjengelege frå Python-skalet." #. NHHFB #: python_screen.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2022-07-15 19:12:51.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-10-04 19:51+0200\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1557251498.000000\n" #. 6Kkin @@ -716,7 +716,7 @@ "tit\n" "help.text" msgid "Save Source As" -msgstr "Lagra kjelda som " +msgstr "Lagra kjelda som" #. QL8Bk #: 11150000.xhp @@ -752,7 +752,7 @@ "par_id3151110\n" "help.text" msgid "Save Source As" -msgstr "Lagra kjelda som " +msgstr "Lagra kjelda som" #. GG5kY #: 11160000.xhp @@ -806,7 +806,7 @@ "tit\n" "help.text" msgid "Manage Breakpoints" -msgstr "Handter avbrotspunkta" +msgstr "Handsaming av avbrotspunkt" #. 9xPeD #: 11170000.xhp @@ -815,7 +815,7 @@ "hd_id3156183\n" "help.text" msgid "Manage Breakpoints" -msgstr "Handter avbrotspunkt" +msgstr "Handsaming av avbrotspunkta" #. XqJ6C #: 11170000.xhp @@ -842,7 +842,7 @@ "par_id3145383\n" "help.text" msgid "Manage Breakpoints" -msgstr "Handter avbrotspunkta" +msgstr "Handsaming av avbrotspunkta" #. VEXGo #: 11170000.xhp @@ -851,7 +851,7 @@ "par_id3154897\n" "help.text" msgid "Manage Breakpoints dialog" -msgstr "Dialogvindauge for å handtera brotpunkt" +msgstr "Dialogvindauge for å handsama brotpunkt" #. sBFuo #: 11180000.xhp @@ -860,7 +860,7 @@ "tit\n" "help.text" msgid "Import Dialog" -msgstr "Importdialog" +msgstr "Dialogvindauget for import" #. DpFcB #: 11180000.xhp @@ -869,7 +869,7 @@ "hd_id3156183\n" "help.text" msgid "Import Dialog" -msgstr "Importdialog" +msgstr "Dialogvindauget for Import" #. XBChu #: 11180000.xhp @@ -887,7 +887,7 @@ "par_id0929200903505211\n" "help.text" msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported." -msgstr "Dersom den importerte dialogvindauget har eit namn som finst frå før, vil du sjå eit dialogvindauge der du kan bestemma om du vil gje det importerte dialogvindauget eit anna namn. I tilfelle vil dialogvindauget få det neste ledige «automatiske» namnet på same måten som når ein lagar eit nytt dialogvindauge. Du kan også velja å erstatta det eksisterande dialogvindauget med det importerte. Klikkar du «Avbryt», vert dialogvindauget ikkje importert." +msgstr "Dersom det importerte dialogvindauget har eit namn som finst frå før, vil du sjå eit dialogvindauge der du kan bestemma om du vil gje det importerte dialogvindauget eit anna namn. I tilfelle vil dialogvindauget få det neste ledige «automatiske» namnet på same måten som når ein lagar eit nytt dialogvindauge. Du kan også velja å erstatta det eksisterande dialogvindauget med det importerte. Klikkar du «Avbryt», vert dialogvindauget ikkje importert." #. n6QpJ #: 11180000.xhp @@ -950,7 +950,7 @@ "par_id3145383\n" "help.text" msgid "Import Dialog" -msgstr "Importdialog" +msgstr "Dialogvindauget for import" #. csTtJ #: 11190000.xhp @@ -1751,7 +1751,7 @@ "hd_id2954191\n" "help.text" msgid "Manage Language" -msgstr "Handter språk" +msgstr "Handsama språk" #. BPnzG #: 20000000.xhp @@ -1760,7 +1760,7 @@ "par_id2320017\n" "help.text" msgid "Manage Language icon" -msgstr "Ikon for å handtera språk" +msgstr "Ikon for å handsama språk" #. adqA5 #: 20000000.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" -"Last-Translator: Kolbjørn Stuestøl \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -1418,7 +1418,7 @@ "par_id91582558644287\n" "help.text" msgid "Build a set, as a zero-based array, by applying the difference operator on the two input arrays. Resulting items originate from the first array and not from the second.
    The resulting array is sorted in ascending order.
    Both input arrays must be filled homogeneously, their items must be scalars of the same type. Empty and Null items are forbidden.
    Text comparison can be case sensitive or not." -msgstr "Bygg eit sett som ei null-basert matrise, ved å bruka differensoperatoren på dei to inndatamatrisene. Resulterande element kjem frå den første matrisa og ikkje frå den andre.
    Den resulterande matrisa vert sortert i stigande rekkjefølgje.
    Begge inndatamatrisene må fyllast homogent, elementa må vera skalarer av same type. Elementa Empty og Null kan ikkje brukast.
    Tekstsamanlikning kan skilja mellom store og små bokstavar eller ikkje." +msgstr "Bygg eit sett som ei null-basert matrise, ved å bruka differensoperatoren på dei to inndatamatrisene. Resulterande element kjem frå den første matrisa og ikkje frå den andre.
    Den resulterande matrisa vert sortert i stigande rekkjefølgje.
    Begge inndatamatrisene må fyllast homogent, elementa må vera skalarar av same type. Elementa Empty og Null kan ikkje brukast.
    Tekstsamanlikning kan skilja mellom store og små bokstavar eller ikkje." #. FTb9n #: sf_array.xhp @@ -1724,7 +1724,7 @@ "par_id211582562721860\n" "help.text" msgid "Look in a one dimension array for a number, a string or a date. Text comparison can be case-sensitive or not.
    If the array is sorted it must be filled homogeneously, which means that all items must be scalars of the same type (Empty and Null items are forbidden).
    The result of the method is unpredictable when the array is announced as sorted and actually is not.
    A binary search is performed on sorted arrays. Otherwise, arrays are simply scanned from top to bottom and Empty and Null items are ignored.

    The method returns LBound(input array) - 1 if the search was not successful." -msgstr "Sjå etter eit tal, ein streng eller ein dato i ei eindimensjonal matrise. Tekstsamanlikning kan skilja mellom store og små bokstavar, eller ikkje.
    Viss matrisa er sortert, må ho vera utfylt homogent, altså at alle elementa må vera skalarer av same type (Empty og Null kan ikkje brukast).
    Når matrisa er sett til å vera sortert men ikkje er det, er det uråd å vita resultatet på førehand.
    Det vert brukt binært søk på sorterte matriser. Elles vert matriser ganske enkelt skanna frå topp til botn. Elementa Empty og Null vert ikkje tekne med.

    Metoden returnerer LBound(input array) - 1 viss søket ikkje var vellukka." +msgstr "Sjå etter eit tal, ein streng eller ein dato i ei eindimensjonal matrise. Tekstsamanlikning kan skilja mellom store og små bokstavar, eller ikkje.
    Viss matrisa er sortert, må ho vera utfylt homogent, altså at alle elementa må vera skalarar av same type (Empty og Null kan ikkje brukast).
    Når matrisa er sett til å vera sortert men ikkje er det, er det uråd å vita resultatet på førehand.
    Det vert brukt binært søk på sorterte matriser. Elles vert matriser ganske enkelt skanna frå topp til botn. Elementa Empty og Null vert ikkje tekne med.

    Metoden returnerer LBound(input array) - 1 viss søket ikkje var vellukka." #. Bm5Um #: sf_array.xhp @@ -7639,7 +7639,7 @@ "par_id111625692871642\n" "help.text" msgid "This service does not provide access to forms or reports in the Base document that contains the database. To access forms in a Base document, refer to the method FormDocuments of the Base service." -msgstr "" +msgstr "Denne tenesta gjev ikkje tilgang til skjema eller rapportar i Base-dokumentet som inneheld databasen. For å få tilgang til eit Base-dokument, sjå metoden FormDocuments i tenesta Base." #. Snu6R #: sf_database.xhp @@ -7675,7 +7675,7 @@ "par_id891599407280007\n" "help.text" msgid "To make SQL statements more readable, you may use square brackets \"[ ]\" to enclose names of tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS). But beware that enclosing characters are mandatory in this context." -msgstr "" +msgstr "For å gjera SQL-setningar enklare å lesa, kan du bruka hakeparentesar «[ ]» rundt namn på tabellar, spørjingar og felt i staden for å bruka andre omsluttande teikn som kan vera spesifikke for visse Relational Database Management Systems (RDBMS). Men merk at omsluttande teikn er obligatorisk i denne samanhengen." #. CAFnK #: sf_database.xhp @@ -7693,7 +7693,7 @@ "par_id541599408159668\n" "help.text" msgid "To create a instance of the Database service you can use the CreateScriptService method:" -msgstr "" +msgstr "For å laga eit eksemplar av tenesta Database kan du bruka metoden CreateScriptService:" #. ArhV5 #: sf_database.xhp @@ -7702,7 +7702,7 @@ "par_id551625693442959\n" "help.text" msgid "In the syntax described above you can use either \"SFDatabases.Database\" or simply \"Database\" as the first argument of the CreateScriptService method." -msgstr "" +msgstr "I syntaksen omtalt ovanfor, kan du bruka anten «SFDatabases.Database» eller ganske enkelt «Database» som det første argumentet i metoden CreateScriptService." #. S7oNc #: sf_database.xhp @@ -7711,7 +7711,7 @@ "par_id111615146818256\n" "help.text" msgid "filename: The name of the Base file. Must be expressed using SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filnamn: Namnet på Base-fila. Må uttrykkjast ved hjelp av SF_FileSystem.FileNaming-notasjon." #. fUxEZ #: sf_database.xhp @@ -7720,7 +7720,7 @@ "par_id771615146944307\n" "help.text" msgid "registrationname: The name of a registered database. If filename is provided, this argument should not be used." -msgstr "" +msgstr "registreringsnamn: Namnet på ein registrert database. Dette argumentet bør ikkje brukast viss det er gjeve eit filnamn." #. J2NA3 #: sf_database.xhp @@ -7729,7 +7729,7 @@ "par_id491615147048748\n" "help.text" msgid "Conversely, if a registrationname is specified, the filename parameter should not be defined." -msgstr "" +msgstr "Omvendt, viss det er gjeve eit registreringsnamn, bør ikkje parameteren filnamn definerast." #. YQF4D #: sf_database.xhp @@ -7738,7 +7738,7 @@ "par_id841615147168279\n" "help.text" msgid "readonly: Determines if the database will be opened as readonly (Default = True)." -msgstr "" +msgstr "skriveverna: Bestemmer om databasen skal opnast som skriveverna. (Standard = Sann)." #. 9FEG5 #: sf_database.xhp @@ -7747,7 +7747,7 @@ "par_id291615147236001\n" "help.text" msgid "user, password: Additional connection parameters to the database server." -msgstr "" +msgstr "brukar, passord: Fleire tilkoplingsparameter til databasetenaren." #. ZG5pH #: sf_database.xhp @@ -7756,7 +7756,7 @@ "bas_id871625698095504\n" "help.text" msgid "' Run queries, SQL statements, ..." -msgstr "" +msgstr "' Køyr spørjingar, SQL-uttrykk, …" #. uWJrQ #: sf_database.xhp @@ -7765,7 +7765,7 @@ "pyc_id791625698186675\n" "help.text" msgid "# Run queries, SQL statements, ..." -msgstr "" +msgstr "# Køyr spørjingar, SQL-uttrykk, …" #. Z2VVg #: sf_database.xhp @@ -7783,7 +7783,7 @@ "par_id901599408410712\n" "help.text" msgid "It is also possible to access the database associated with a Base document using the ScriptForge.UI service, as shown in the examples below:" -msgstr "" +msgstr "Det er også råd å få tilgang til databasen som er knytt til eit Base-dokument ved hjelp av tenesta ScriptForge.UI som vist i eksempelet nedanfor:" #. T6mkQ #: sf_database.xhp @@ -7801,7 +7801,7 @@ "bas_id921599408791887\n" "help.text" msgid "' Run queries, SQL statements, ..." -msgstr "" +msgstr "' Køyr spørjingar, SQL-uttrykk, …" #. FsCDs #: sf_database.xhp @@ -7810,7 +7810,7 @@ "pyc_id731625699527917\n" "help.text" msgid "# User and password are supplied below, if needed" -msgstr "" +msgstr "' Brukar og passord vert oppgjeve nedanfor om nødvendig" #. BDNDo #: sf_database.xhp @@ -7819,7 +7819,7 @@ "pyc_id201625699438702\n" "help.text" msgid "# Run queries, SQL statements, ..." -msgstr "" +msgstr "# Køyr spørjingar, SQL-uttrykk, …" #. AVkg5 #: sf_database.xhp @@ -8010,7 +8010,7 @@ "par_id441596554849949\n" "help.text" msgid "expression: A SQL expression in which the field names are surrounded with square brackets." -msgstr "" +msgstr "uttrykk: Eit SQL-uttrykk der feltnamna er omgjevne av hakeparentesar." #. c2Rzq #: sf_database.xhp @@ -8019,7 +8019,7 @@ "par_id381596554849698\n" "help.text" msgid "tablename: A table name (without square brackets)." -msgstr "" +msgstr "tabellnamn: Eit tabellnamn (utan hakeparentesar)." #. cjGPp #: sf_database.xhp @@ -8028,7 +8028,7 @@ "par_id521596554849185\n" "help.text" msgid "criteria: A WHERE clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets." -msgstr "" +msgstr "kriteria: Ein WHERE-setning utan «WHERE»-nøkkelordet, der feltnamna er omgjevne av hakeparentesar." #. AGBFS #: sf_database.xhp @@ -8091,7 +8091,7 @@ "par_id671599488113986\n" "help.text" msgid "expression: A SQL expression in which the field names are surrounded with square brackets." -msgstr "" +msgstr "uttrykk: Eit SQL-uttrykk der feltnamna er omgjevne av hakeparentesar." #. eGbAr #: sf_database.xhp @@ -8100,7 +8100,7 @@ "par_id441599488113247\n" "help.text" msgid "tablename: A table name (without square brackets)." -msgstr "" +msgstr "tabellnamn: Eit tabellnamn (utan hakeparentesar)." #. F9xaH #: sf_database.xhp @@ -8109,7 +8109,7 @@ "par_id40159948811316\n" "help.text" msgid "criteria: A WHERE clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets." -msgstr "" +msgstr "kriteria: Ein WHERE-setning utan «WHERE»-nøkkelordet, der feltnamna er omgjevne av hakeparentesar." #. SusUk #: sf_database.xhp @@ -8118,7 +8118,7 @@ "par_id71599488689029\n" "help.text" msgid "orderclause: An ORDER BY clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets." -msgstr "" +msgstr "ordeclause: Ein ORDER BY-setning utan nøkkelorda «ORDER BY». Feltnamn må vera omgjevne av hakeparentesar." #. CPoBx #: sf_database.xhp @@ -8154,7 +8154,7 @@ "par_id451599489278429\n" "help.text" msgid "sqlcommand: A table or query name (without square brackets) or a SELECT SQL statement." -msgstr "" +msgstr "sqlkommando: Eit tabell- eller spørjingsnamn (utan hakeparentesar) eller eit SELECT SQL-uytrykk." #. xAbDx #: sf_database.xhp @@ -8163,7 +8163,7 @@ "par_id271599489278141\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. Default is False. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "direkte_sql: Når denne er Sann, vert SQL-kommandoen sendt til databasemotoren utan førehandsanalyse. Standard er Usann. Argumentet vert ignorert for tabellar. For spørjingar er det brukte alternativet det som vart sett då spørjinga vart definert." #. DEzQD #: sf_database.xhp @@ -8172,7 +8172,7 @@ "par_id941599489278747\n" "help.text" msgid "header: When True, the first row of the returned array contains the column headers." -msgstr "" +msgstr "header (overskrift): Når denne er Sann inneheld den første rada i den returnerte matrisa kolonneoverskriftene." #. P2SMx #: sf_database.xhp @@ -8181,7 +8181,7 @@ "par_id591599489278926\n" "help.text" msgid "maxrows: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows." -msgstr "" +msgstr "maxrows (maks-rader): Det høgste talet på rader som kan returnerast. Standard er null, som tyder at det er inga grense for kor mange rader som kan returnerast." #. 3XZPf #: sf_database.xhp @@ -8244,7 +8244,7 @@ "par_id701599490609473\n" "help.text" msgid "sqlcommand: A query name (without square brackets) or a SQL statement." -msgstr "" +msgstr "sqlkommando: Eit spørjingsnamn (utan hakeparentesar) eller eit SQL-uttrykk." #. uNMDN #: sf_database.xhp @@ -8253,7 +8253,7 @@ "par_id51599490609377\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. (Default = False). For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Når denne er Sann, vert SQL-kommandoen sendt til databasemotoren utan førehandsanalyse. (Standard er Usann). For spørjingar er det brukte alternativet det som vart sett då spørjinga vart definert." #. BC4Sc #: sf_dialog.xhp @@ -9144,7 +9144,7 @@ "par_id21598187900349\n" "help.text" msgid "Replaces all fixed text strings in a dialog by their translated versions based on a L10N service instance. This method translates the following strings:" -msgstr "" +msgstr "Bytar ut alle faste tekststrengar i eit dialogvindauge med den omsette versjonen basert på ein førekomst av tenesta L10N . Denne metode omsett desse strengane:" #. JixXU #: sf_dialog.xhp @@ -9153,7 +9153,7 @@ "par_id641625855723650\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "Metoden returnerer Sann viss han lukkast." #. v5Zt5 #: sf_dialog.xhp @@ -9162,7 +9162,7 @@ "par_id61637871260604\n" "help.text" msgid "To create a list of translatable strings in a dialog use the AddTextsFromDialog method from the L10N service." -msgstr "" +msgstr "Bruk metoden AddTextsFromDialog frå tenesta L10N for å laga ei liste over strengar som kan omsetjast i eit dialogvindauge." #. ECNVg #: sf_dialog.xhp @@ -9171,7 +9171,7 @@ "par_id451598185776205\n" "help.text" msgid "l10n: A L10N service instance from which translated strings will be retrieved." -msgstr "" +msgstr "l10n: Ein førekomst av tenesta L10N som dei omsette strengane vert henta frå." #. MeJAT #: sf_dialog.xhp @@ -9180,7 +9180,7 @@ "par_id951620300689850\n" "help.text" msgid "The following example loads translated strings and applies them to the dialog \"MyDialog\"." -msgstr "" +msgstr "Dei neste eksempla lastar inn omsette strengar og brukar dei i dialogvindauget «MinDialog»:" #. p3KMX #: sf_dialog.xhp @@ -9189,7 +9189,7 @@ "par_id901637872163895\n" "help.text" msgid "Read the L10N service help page to learn more about how PO and POT files are handled." -msgstr "" +msgstr "Les hjelpsida L10N service for å læra meir om korleis PO. og POT-filer vert handsama." #. ARCGg #: sf_dialog.xhp @@ -9630,7 +9630,7 @@ "par_id151598177605296\n" "help.text" msgid "Specifies the number of rows in a ListBox, a ComboBox or a TableControl." -msgstr "" +msgstr "Spesifiserer talet på rader i ein listeboks, ein komboboks eller ein tabellkontroll." #. kaaLt #: sf_dialogcontrol.xhp @@ -9648,7 +9648,7 @@ "par_id251588334016874\n" "help.text" msgid "Specifies which item is selected in a ListBox, a ComboBox or a TableControl." -msgstr "" +msgstr "Spesifiserer kva for element som er merkt i ein listeboks, ein komboboks eller ein tabellkontroll." #. azv7C #: sf_dialogcontrol.xhp @@ -10233,7 +10233,7 @@ "par_id441598543254951\n" "help.text" msgid "One-dimensional array with the data of the currently selected row." -msgstr "" +msgstr "Eindimensjonal tabell med dataa frå den merkte rada." #. a9AMF #: sf_dialogcontrol.xhp @@ -10802,7 +10802,7 @@ "par_id541638553960464\n" "help.text" msgid "Fills a TableControl with the given data. All preexisting data is cleared before inserting the new data passed as argument." -msgstr "" +msgstr "Fyller ein TableControl (tabellkontroll) med dei gjevne dataa. Alle data som finst frå før vert fjerna før dei nye dataa vert vidaresende som argument." #. Vmmag #: sf_dialogcontrol.xhp @@ -10811,7 +10811,7 @@ "par_id551638554058131\n" "help.text" msgid "When the TableControl is added to the dialog, it is possible to use the Basic IDE to define whether column and row headers will be shown in the table. If the TableControl has column and/or row headers, the first column and/or row in the provided data array are used as labels for the table headers." -msgstr "" +msgstr "Når TableControl vert lagt til i dialogvindauget, er det mogleg å bruka Basic IDE for å definere om kolonne- og radoverskrifter skal visast i tabellen. Viss TableControl har kolonne- og/eller radoverskrifter, vert den første kolonnen og/eller rada i den gjevne datamatrisa som etikettar for tabelloverskriftene." #. qn4UN #: sf_dialogcontrol.xhp @@ -10820,7 +10820,7 @@ "par_id411638569396108\n" "help.text" msgid "This method returns True when successful." -msgstr "" +msgstr "Denne metoden returnerer Sann viss han lukkast." #. LESVB #: sf_dialogcontrol.xhp @@ -10829,7 +10829,7 @@ "par_id1001584541257133\n" "help.text" msgid "dataarray: Data to be entered into the table represented as an Array of Arrays in Basic or a tuple of tuples in Python. The data must include column and row headers if they are to be displayed by the TableControl." -msgstr "" +msgstr "datamatrise: Data som skal skrivast inn i tabellen representert som ei matrise av matriser i Basic eller ein tuple av tuplar i Python. Dataa må innehalda kolonne- og radoverskrifter viss dei skal visast av TableControl (tabellkontrollen)." #. 6AKaJ #: sf_dialogcontrol.xhp @@ -10838,7 +10838,7 @@ "par_id1001584541257025\n" "help.text" msgid "widths: Array containing the relative widths of each column. In other words, widths = Array(1, 2) means that the second column is twice as wide as the first one. If the number of values in the array is smaller than the number of columns in the table, then the last value in the array is used to define the width of the remaining columns." -msgstr "" +msgstr "widths: Matrise som inneheld dei relative breiddene på kvar kolonne. Med andre ord: widths = Array(1, 2) betyr at den andre kolonnen er dobbelt så brei som den første. Viss talet på verdiar i matrisa er mindre enn talet på kolonnar, vert den siste verdien i matrisa brukt som breidde på resten av kolonnane." #. AEGq3 #: sf_dialogcontrol.xhp @@ -10847,7 +10847,7 @@ "par_id1001584541257007\n" "help.text" msgid "alignments: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns." -msgstr "" +msgstr "alignments: Definerer justeringa i kvar kolonne som ein streng der kvart teikn kan vera «L» (venstre), «C» (senter), «R» (høgre) eller « » (mellomrom, standard, betyr venstre for strenger og høgre for talverdiar). Viss lengda på strengen er kortare enn talet på kolonnar i tabellen, vert det siste teiknet i strengen brukt for å definera justeringa for resten av kolonnane." #. FCNEg #: sf_dialogcontrol.xhp @@ -10856,7 +10856,7 @@ "par_id381638569172413\n" "help.text" msgid "The following example assumes that the dialog myDialog has a TableControl named Grid1 with \"Show header row\" and \"Show column row\" properties set to \"Yes\"." -msgstr "" +msgstr "Det følgjande eksempelet går ut frå at dialogvindauget myDialog har ein TableControl kalla Grid1 med eigenskapane «Vis radoverskrift» og «Vis kolonnerad» sett til «Ja»." #. N9Byz #: sf_dialogcontrol.xhp @@ -10865,7 +10865,7 @@ "par_id171638650502346\n" "help.text" msgid "The Value property returns the selected row in the table. If no row is selected, an empty Array object is returned. The following code snippet shows how to test if any row is selected in the table." -msgstr "" +msgstr "Eigenskapen Value returnerer den valde rada i tabellen. Viss inga rad er vald, vert eit tomt matriseobjekt returnert. Kodesnutten nedanfor viser korleis du kan testa om det er ei vald rad i tabellen." #. C3f3k #: sf_dialogcontrol.xhp @@ -10874,7 +10874,7 @@ "bas_id361638651540588\n" "help.text" msgid "MsgBox \"No row selected.\"" -msgstr "" +msgstr "MsgBox \"Inga rad er vald.\"" #. iQ94A #: sf_dialogcontrol.xhp @@ -10883,7 +10883,7 @@ "bas_id781638651541028\n" "help.text" msgid "MsgBox \"Row \" & oTable.ListIndex & \" is selected.\"" -msgstr "" +msgstr "MsgBox \"Rada \" & oTable.ListIndex & \" er vald.\"" #. yyATt #: sf_dialogcontrol.xhp @@ -10892,7 +10892,7 @@ "pyc_id111638569958471\n" "help.text" msgid "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")" -msgstr "" +msgstr "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")" #. HNmmm #: sf_dialogcontrol.xhp @@ -10982,7 +10982,7 @@ "par_id971582884636922\n" "help.text" msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic Collection object, however with more features. For example, Collection objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string." -msgstr "" +msgstr "Dictionary-tenesta liknar på det innebygde %PRODUCTNAME Basic Collection-objektet, men med fleire funksjonar. For eksempel har ikkje Collection-objekta henting av nøklar. Dessutan har Dictionary tilleggsfunksjonar som å byta ut nøklar, teste om ein spesifikk nøkkel finst frå før og å konvertera Dictionary til eit matrise-objekt eller ein JSON-streng." #. RkMHR #: sf_dictionary.xhp @@ -11018,7 +11018,7 @@ "par_id551626869252987\n" "help.text" msgid "The example below creates an empty instance of the Dictionary service and uses the Python native update method to populate it with the contents of a Python dict object." -msgstr "" +msgstr "Eksemplet nedanfor lagar eit tomt eksemplar av tenesta Dictionary og brukar metoden Python native update for å fylla det med innhaldet i eit Python dict-objekt ." #. bnDdK #: sf_dictionary.xhp @@ -11027,7 +11027,7 @@ "pyc_id61626869417128\n" "help.text" msgid "# Initialize myDict as an empty dict object" -msgstr "" +msgstr "# Initialiser myDict som eit tomt ordliste-objekt" #. Zijqj #: sf_dictionary.xhp @@ -11036,7 +11036,7 @@ "pyc_id921626869402748\n" "help.text" msgid "# Load the values of dico into myDict" -msgstr "" +msgstr "# Les dico-verdiane inn i myDict" #. G4WCE #: sf_dictionary.xhp @@ -11045,7 +11045,7 @@ "par_id981626869718081\n" "help.text" msgid "It is possible to create an instance of the Dictionary service using a Python dict object as argument as shown in the following example." -msgstr "" +msgstr "Det er mogleg å laga eit eksemplar av tenest Dictionary med Python-objektet dict som argument som vist i det følgjande eksempelet." #. ymvAC #: sf_dictionary.xhp @@ -11054,7 +11054,7 @@ "pyc_id201626869185236\n" "help.text" msgid "# Initialize myDict with the content of dico" -msgstr "" +msgstr "# Initialiser myDict med innhaldet frå dico" #. UHQFC #: sf_dictionary.xhp @@ -11063,7 +11063,7 @@ "par_id211626699007613\n" "help.text" msgid "Because Python has built-in dictionary support, most of the methods in the Dictionary service are available for Basic scripts only. Exceptions are ConvertToPropertyValues and ImportFromPropertyValues that are supported in both Basic and Python." -msgstr "" +msgstr "Fordi Python har innebygd ordbokstøtte, er dei fleste metodane i tenesta Dictionary berre tilgjengeleg for Basic-skript. Unnatak er ConvertToPropertyValues og ImportFromPropertyValues som vert støtta i både Basic og Python." #. Dd4Pp #: sf_dictionary.xhp @@ -11225,7 +11225,7 @@ "par_id341582887670030\n" "help.text" msgid "key: String value used to identify the Item. The key is not case-sensitive." -msgstr "" +msgstr "nøkkel: Strengverdi som vert brukt for å identifisera elementet. Nøkkelen skil ikkje mellom store og små bokstavar." #. UFFFG #: sf_dictionary.xhp @@ -11234,7 +11234,7 @@ "par_id401582887670030\n" "help.text" msgid "item: Any value, including an array, a Basic object, a UNO object, a dictionary, etc." -msgstr "" +msgstr "element: Kva verdi som helst, også ei matrise, eit Basic-objekt, eit UNO-objekt, ei ordbok og så vidare." #. aNDWv #: sf_dictionary.xhp @@ -11297,7 +11297,7 @@ "par_id8816012968362\n" "help.text" msgid "indent: When indent is a positive number or a text, JSON array elements and object members are pretty-printed with that indentation level. A negative indent value will add new lines with no indentation. The default value is an empty string \"\" which selects the most compact representation. Using a positive integer for indent indents that many spaces per level. When indent is a string, such as Chr(9) or Tab(1), the Tab character is used to indent each level." -msgstr "" +msgstr "Innrykk: Når Indent er eit positivt tal eller ein tekst, vert JSON-matriseelement og objektelement skrivne ut med dette innrykket. Ein negativ verdi for Indent vil leggja til nye linjer utan innrykk. Standardverdien er ein tom streng \"\" som vel den mest kompakte representasjonen. Bruk av eit positivt heiltal for Indent vil setja inn så mange innrykk på nivået som talet seier. NårIndent er ein streng, for eksempel Chr(9 eller Tab(1), vert tabulator-teiknet brukt for innrykk på kvart nivå." #. sQuKi #: sf_dictionary.xhp @@ -11306,7 +11306,7 @@ "par_id151582889470596\n" "help.text" msgid "Stores the contents of the dictionary into an array of PropertyValues." -msgstr "" +msgstr "Lagrar innhaldet i ordlista i ei matrise med PropertyValues." #. rTa2V #: sf_dictionary.xhp @@ -11351,7 +11351,7 @@ "par_id771626700938786\n" "help.text" msgid "Note in the example below that a Python dictionary needs to be passed as the second argument of the CreateScriptService method." -msgstr "" +msgstr "Merk i eksempelet nedanfor at ei Python-ordliste må sendast vidare som det andre argumentet i metoden CreateScriptService." #. wTUQt #: sf_dictionary.xhp @@ -11378,7 +11378,7 @@ "par_id971582889812917\n" "help.text" msgid "key: The key to be looked up in the dictionary." -msgstr "" +msgstr "nøkkel: Nøkkelen som skal slåast opp i ordboka." #. UAkEx #: sf_dictionary.xhp @@ -11432,7 +11432,7 @@ "par_id69160139198061\n" "help.text" msgid "inputstr: The string to import." -msgstr "" +msgstr "inputStr: Strengen som skal importerast." #. GDAGm #: sf_dictionary.xhp @@ -11441,7 +11441,7 @@ "par_id201601391980268\n" "help.text" msgid "overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Beware that dictionary keys are not case-sensitive while names are case-sensitive in JSON strings." -msgstr "" +msgstr "overskriv: Når denne er Sann, kan det finnast oppføringar med det same namnet i ordlista. Verdiane vert i tilfelle overskrive. Når denne er Usann (standard), vil like verdiar setja opp ein feil. Hugs at ordboksnøklane ikkje skil mellom store og små bokstavar i JSON-strengar." #. aBFC5 #: sf_dictionary.xhp @@ -11468,7 +11468,7 @@ "par_id751588941968522\n" "help.text" msgid "propertyvalues: A zero-based 1-dimensional array containing com.sun.star.beans.PropertyValue objects. This parameter may also be a single propertyvalue object not contained in an Array." -msgstr "" +msgstr "propertyvalue: Ei null-baseret eindimensional matrise som inneheld com.sun.star.beans.PropertyValue-objekt. Denne parameteren kan også vera eit PropertyValue-objekt som ikkje er i ei matrise." #. g5bHm #: sf_dictionary.xhp @@ -11477,7 +11477,7 @@ "par_id21588941968131\n" "help.text" msgid "overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Note that dictionary keys are not case-sensitive in Basic, whereas names are case-sensitive in sets of property values and in Python dictionaries." -msgstr "" +msgstr "overwrite: Når denne er Sann, kan det finnast oppføringar med det same namnet i ordlista. Verdiane vert i tilfelle overskrivne. Når denne er Usann (standard), vil like verdiar setja opp ein feil. Hugs at ordboksnøklane ikkje skil mellom store og små bokstavar, medan grupper av eigenskapsverdiar i Python gjer det." #. GKtsH #: sf_dictionary.xhp @@ -11486,7 +11486,7 @@ "par_id641626703615898\n" "help.text" msgid "The examples below first create an array with two PropertyValue objects and then convert it to a dictionary." -msgstr "" +msgstr "Eksempla nedanfor lagar først ei matrise med to PropertyValue-objekt og deretter konverterer ho til ei ordliste." #. 3rJRP #: sf_dictionary.xhp @@ -11504,7 +11504,7 @@ "par_id551582890399669\n" "help.text" msgid "key: Not case-sensitive. Must exist in the dictionary, otherwise an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Skil ikkje mellom små og store bokstavar. Må finnast i ordboka, elles vert det sett ein UNKNOWNKEYERROR." #. rGqyT #: sf_dictionary.xhp @@ -11526,12 +11526,13 @@ #. EhVL2 #: sf_dictionary.xhp +#, fuzzy msgctxt "" "sf_dictionary.xhp\n" "par_id551582890366999\n" "help.text" msgid "key: Not case-sensitive. Must exist in the dictionary, otherwise an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Skil ikkje mellom små og store bokstavar. Må finnast i ordboka, elles vert det sett ein UNKNOWNKEYERROR." #. GyK3j #: sf_dictionary.xhp @@ -11558,7 +11559,7 @@ "par_id991582895615535\n" "help.text" msgid "key: String value representing the key whose value will be replaced. Not case-sensitive. If the key does not exist in the dictionary, an UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Strengverdi som representerer nøkkelen som verdien skal erstattast med. Skil ikkje mellom store og små bokstavar. Viss nøkkelen ikkje finst i ordlista, vert det sett opp ein UNKNOWNKEYERROR-feil." #. FA4hz #: sf_dictionary.xhp @@ -11567,7 +11568,7 @@ "par_id721582895615186\n" "help.text" msgid "value: The new value of the item referred to with the key parameter." -msgstr "" +msgstr "value: Den nye verdien for elementet det vert referert til med Key-parameteren." #. Y46D4 #: sf_dictionary.xhp @@ -11585,7 +11586,7 @@ "par_id911582896597619\n" "help.text" msgid "key: String value representing the key to be replaced. Not case-sensitive. If the key does not exist in the dictionary, a UNKNOWNKEYERROR error is raised." -msgstr "" +msgstr "key: Strengverdi som representerer nøkkelen som verdien skal erstattast med. Skil ikkje mellom store og små bokstavar. Viss nøkkelen ikkje finst i ordlista, oppstår det ein UNKNOWNKEYERROR-feil." #. Dku2D #: sf_dictionary.xhp @@ -11594,7 +11595,7 @@ "par_id531582896597989\n" "help.text" msgid "value: String value for the new key. Not case-sensitive. If the new key already exists in the dictionary, an DUPLICATEKEYERROR error is raised." -msgstr "" +msgstr "value: Strengverdi for den nye nøkkelen. Skil ikkje mellom store og små bokstavar. Viss nøkkelen finst frå før i ordlista, oppstår det ein DUPLICATEKEYERROR-feil." #. jasej #: sf_document.xhp @@ -12098,7 +12099,7 @@ "par_id156589200123048\n" "help.text" msgid "Exports the document directly as a PDF file to the specified location. Returns True if the PDF file was successfully created." -msgstr "" +msgstr "Eksporterer dokumentet direkte som ei PDF-fil til den gjevne plasseringa. Returnerer Sann viss PDF-fila vart laga." #. PBk4E #: sf_document.xhp @@ -12107,7 +12108,7 @@ "par_id811638276067119\n" "help.text" msgid "The export options can be set either manually using the File - Export As - Export as PDF dialog or by calling the methods GetPDFExportOptions and SetPDFExportOptions from the Session service." -msgstr "" +msgstr "Innstillingane for eksport kan setjast anten manuelt med dialogvindauget Fil → Eksporter som → Eksporter som PDF eller ved å kalla opp metodane GetPDFExportOptions og SetPDFExportOptions frå tenesta Session." #. SFwEd #: sf_document.xhp @@ -12116,7 +12117,7 @@ "par_id211635436910641\n" "help.text" msgid "filename: The full path and file name of the PDF to be created. It must follow the SF_FileSystem.FileNaming notation." -msgstr "" +msgstr "filnamn: Den fullstendige stien og filnamnet på PDF-fila som skal lagast. Det må følgja notasjonen i SF_FileSystem.FileNaming." #. E6KyY #: sf_document.xhp @@ -12125,7 +12126,7 @@ "par_id141635436912005\n" "help.text" msgid "overwrite: Specifies if the destination file can be overwritten (Default = False). An error will occur if overwrite is set to False and the destination file already exists." -msgstr "" +msgstr "overskriv: Spesifiserer om målcella kan overskrivast (Standard = Usann). Det kjem opp ei feilmelding viss overwrite er sett til Usann og målfila finst frå før." #. d9RRn #: sf_document.xhp @@ -12134,7 +12135,7 @@ "par_id141635436913587\n" "help.text" msgid "pages: String specifying which pages will be exported. This argument uses the same notation as in the dialog File - Export As - Export as PDF." -msgstr "" +msgstr "sider: Streng som spesifiserer kva for sider som skal eksporterast. Dette argument brukar den same notasjonen som i dialogvindauget Filer → Eksporter som → Eksporter som PDF." #. kBDPk #: sf_document.xhp @@ -12143,7 +12144,7 @@ "par_id141635436919655\n" "help.text" msgid "password: Specifies a password to open the PDF file." -msgstr "" +msgstr "password: Spesifiserer eit passord for å opna PDF-fila." #. joeXi #: sf_document.xhp @@ -12152,7 +12153,7 @@ "par_id141635436913365\n" "help.text" msgid "watermark: Text to be used as watermark in the PDF file, which will be drawn in every page of the resulting PDF." -msgstr "" +msgstr "vassmerke: Tekst som skal brukast som vassmerke i PDF-fila og som vert sett inn på kvar side i PDF-dokumentet." #. NmChF #: sf_document.xhp @@ -12161,7 +12162,7 @@ "par_id301638234284727\n" "help.text" msgid "The following example exports the current document as a PDF file, defines a password and overwrites the destination file if it already exists." -msgstr "" +msgstr "Eksempelet nedanfor eksporterer det gjeldande dokumentet som ei PDF-fil, definerer eit passord og overskriv målfila viss denne finst frå før." #. wEW7B #: sf_document.xhp @@ -12170,7 +12171,7 @@ "par_id311638276257020\n" "help.text" msgid "The code snippet below gets the current PDF export options and uses them to create the PDF file." -msgstr "" +msgstr "Kodesnutten nedanfor hentar dei gjeldande innstillingane for eksport av PDF og brukar desse for å laga PDF-fila." #. 7uUWr #: sf_document.xhp @@ -12179,7 +12180,7 @@ "bas_id851638277174798\n" "help.text" msgid "' Sets to True the option to export comments as PDF notes" -msgstr "" +msgstr "' Set innstillinga for eksport av merknadar som PDF-notat til Sann." #. HNC9m #: sf_document.xhp @@ -12188,7 +12189,7 @@ "par_id156589200121138\n" "help.text" msgid "This method sends the contents of the document to the default printer or to the printer defined by the SetPrinter method." -msgstr "" +msgstr "Denne metoden sender innhaldet i dokument til standardskrivaren eller til den skrivaren som er definert med metoden SetPrinter." #. CJxTR #: sf_document.xhp @@ -12197,7 +12198,7 @@ "par_id981611169416934\n" "help.text" msgid "Returns True if the document was successfully printed." -msgstr "" +msgstr "Returnerer Sann viss utskrivinga av dokumentet lukkast." #. uQMeV #: sf_document.xhp @@ -12206,7 +12207,7 @@ "par_id211635436910093\n" "help.text" msgid "pages: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages." -msgstr "" +msgstr "sider: Sidene som skal skrivast ut som ein streng, som i brukargrensesnittet. Eksempel: «1-4;10;15-18». Standard er alle sidene." #. EHtFi #: sf_document.xhp @@ -12215,7 +12216,7 @@ "par_id141635436912146\n" "help.text" msgid "copies: The number of copies. Default is 1." -msgstr "" +msgstr "kopiar: Talet på kopiar. Standard er 1." #. Nmwv9 #: sf_document.xhp @@ -12269,7 +12270,7 @@ "par_id751611153375195\n" "help.text" msgid "The example above actually runs the UNO command .uno:SelectData. Hence, to use the RunCommand method it is necessary to remove the \".uno:\" substring." -msgstr "" +msgstr "Eksempelet ovanfor køyrer faktisk UNO-kommandoen uno:SelectData. Difor er det nødvendig å bruka metoden RunCommand (Køyr kommando) for å fjerna delstrengen «uno:»." #. JRHRS #: sf_document.xhp @@ -12458,7 +12459,7 @@ "par_id911298505147502\n" "help.text" msgid "Defines the printer options for the document." -msgstr "" +msgstr "Definerer innstillingane for utskriving av dokument." #. zoaQX #: sf_document.xhp @@ -12467,7 +12468,7 @@ "par_id381651114800685\n" "help.text" msgid "Returns True when successful." -msgstr "" +msgstr "Returnerer Sann når han lukkast." #. hGfVh #: sf_document.xhp @@ -12476,7 +12477,7 @@ "par_id301589205741697\n" "help.text" msgid "printer: The name of the printer queue where to print to. When absent, the default printer is set." -msgstr "" +msgstr "printer: Namnet på utskriftskøen det skal skrivast til. Når denne manglar, vert standardskrivaren sett." #. mRrfG #: sf_document.xhp @@ -12485,7 +12486,7 @@ "par_id851985205147348\n" "help.text" msgid "orientation: Either PORTRAIT or LANDSCAPE. When absent, left unchanged with respect to the printer settings." -msgstr "" +msgstr "papirretning: Anten PORTRAIT (ståande) eller LANDSCAPE (liggjande). Når denne manglar vert feltet ikkje endra i høve til skrivarinnstillingane." #. ENyZH #: sf_document.xhp @@ -12494,7 +12495,7 @@ "par_id821985205147330\n" "help.text" msgid "paperformat: Specifies the paper format as a string value that can be either A3, A4, A5, LETTER, LEGAL or TABLOID. Left unchanged when absent." -msgstr "" +msgstr "papirformat: Spesifiserer papirformatet som ein strengverdi som kan vera anten A3, A4, A5, LETTER, LEGAL eller TABLOID. Vert ikkje endra om denne manglar." #. WCH7E #: sf_exception.xhp @@ -12980,7 +12981,7 @@ "par_id111621624672183\n" "help.text" msgid "Displays the list of arguments in a readable form in the Python shell (APSO) console. Arguments are separated by a TAB character (simulated by spaces)." -msgstr "" +msgstr "Viser lisa med argument i konsollen for Python-shell (APSOs) i ei leseleg form. Argumenta vert skilde med eit tabulatortikn (simulert med mellomrom)." #. ujSFu #: sf_exception.xhp @@ -12989,7 +12990,7 @@ "par_id841621426229467\n" "help.text" msgid "The same string is added to the ScriptForge debug console." -msgstr "" +msgstr "Den same strengen vert lagt til i feilfinningskonsollen for ScriptForges." #. ixNfF #: sf_exception.xhp @@ -12998,7 +12999,7 @@ "par_id391126449167833\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type. The maximum length of each individual argument is 1024 characters." -msgstr "" +msgstr "arg0[, arg1, ...]: Kva tal på argument som helst av vilkårleg type. Maksimal lengd på kvart einskild argument er 1024 teikn." #. f5WaM #: sf_exception.xhp @@ -13007,7 +13008,7 @@ "par_id261123015276160\n" "help.text" msgid "In python use simply the builtin print() statement." -msgstr "" +msgstr "I Python brukar du det innebygde uttrykket print()." #. CUoch #: sf_exception.xhp @@ -13412,7 +13413,7 @@ "par_id931626652451855\n" "help.text" msgid "The use of the shortcut \"~\" (tilde), which is common in Linux-based operating systems, is not supported to express a path to a folder and file name. Instead of using \"~/Documents/my_file.odt\" use the full path \"/home/user/Documents/my_file.odt\"." -msgstr "" +msgstr "Bruk av snarvegen «~» (tilde), som er vanleg i Linux-baserte operativsystem, for å uttrykkja ein bane til ei mappe og filnamn, vert ikkje støtta. I staden for å bruka \"~/Dokument/mi_fil.odt\" brukar du heile stien: \"/home/user/Dokument/mi_fil.odt\"." #. mao7x #: sf_filesystem.xhp @@ -13682,7 +13683,7 @@ "par_id90158393307695\n" "help.text" msgid "foldername: The path with which name will be combined. The specified path does not need to be an existing folder." -msgstr "" +msgstr "foldername: Stien som name skal kombinerast med. Den gjevne stien treng ikkje vera til ei mappe som finst frå før." #. xFCWJ #: sf_filesystem.xhp @@ -13691,7 +13692,7 @@ "par_id891583933076975\n" "help.text" msgid "name: The name of the file to be appended to foldername. This parameter uses the notation of the current operating system." -msgstr "" +msgstr "name: Namnet på fila som skal føyast til foldername. Denne parameteren brukar notasjonen til det gjeldande operativsystemet." #. DwTpc #: sf_filesystem.xhp @@ -13709,7 +13710,7 @@ "par_id631601119001315\n" "help.text" msgid "Depending on the value of the comparecontents argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents." -msgstr "" +msgstr "Avhengig av verdien til argumentet comparecontents, kan samanlikninga mellom begge filene anten berre vera basert på filattributt (for eksempel den sist endra datoen), eller basert på filinnhaldet." #. MGA4A #: sf_filesystem.xhp @@ -13718,7 +13719,7 @@ "par_id481601118910755\n" "help.text" msgid "filename1, filename2: The files to compare." -msgstr "" +msgstr "filename1, filename2: Filene som skal samanliknast." #. aKfwh #: sf_filesystem.xhp @@ -13727,7 +13728,7 @@ "par_id111601118910848\n" "help.text" msgid "comparecontents: When True, the contents of the files are compared (default = False)." -msgstr "" +msgstr "comparecontents: Når Sann, vert innhaldet av filene samanlikna (standard = Usann)." #. EZNG5 #: sf_filesystem.xhp @@ -13745,7 +13746,7 @@ "par_id401612998805699\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Det oppstår ein feil viss parameteren source brukar jokerteikn og det ikkje er samsvar med noko fil." #. AZCsn #: sf_filesystem.xhp @@ -13763,7 +13764,7 @@ "par_id1001584541257789\n" "help.text" msgid "source: It can be a FileName or a NamePattern indicating one or more files to be copied." -msgstr "" +msgstr "source: Det kan vera eit FileName eller eit NamePattern som peikar på éi eller fleire filer som skal kopierast." #. ycEpt #: sf_filesystem.xhp @@ -13772,7 +13773,7 @@ "par_id111584542310166\n" "help.text" msgid "destination: It can be either a FileName specifying where the single source file is to be copied, or a FolderName into which the multiple files from source are to be copied." -msgstr "" +msgstr "destination: Kan vera anten eit FileName som spesifiserer kvar den enkle source-fila skal kopierast til, eller eit FolderName som fleire filer frå source skal kopierast til." #. frwD2 #: sf_filesystem.xhp @@ -13781,7 +13782,7 @@ "par_id491612999134752\n" "help.text" msgid "If destination does not exist, it is created." -msgstr "" +msgstr "Viss destination ikkje finst, vert det laga." #. z3Tok #: sf_filesystem.xhp @@ -13790,7 +13791,7 @@ "par_id591612999166788\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Det er ikkje tillate å bruka jokerteikn i destination." #. zFyVX #: sf_filesystem.xhp @@ -13799,7 +13800,7 @@ "par_id251584542431558\n" "help.text" msgid "overwrite: If True (default), files may be overwritten. The method will fail if destination is readonly, regardless of the value specified in overwrite." -msgstr "" +msgstr "overwrite: Viss Sann (standard), kan filene overskrivast. Metoden vil ikkje lukkast viss destination er skriveverna, same kva verdi som er sett i overwrite." #. uRMe8 #: sf_filesystem.xhp @@ -13808,7 +13809,7 @@ "par_id691626216252568\n" "help.text" msgid "In the examples below the first line copies a single file whereas the second line copies multiple files using wildcards." -msgstr "" +msgstr "I eksempla nedanfor kopierer den første linja ei enkelt fil, medan den anden linja kopierer fleire filer med jokerteikn." #. GevfF #: sf_filesystem.xhp @@ -13817,7 +13818,7 @@ "par_id411626216328023\n" "help.text" msgid "Beware that subfolders and their contents are not copied when wildcards are used in the source argument." -msgstr "" +msgstr "Ver merksam på at undermapper og innhaldet i dei ikkje vert kopiert når det er brukt jokerteikn i argumentet source." #. TdGi7 #: sf_filesystem.xhp @@ -13835,7 +13836,7 @@ "par_id21612999775377\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Det oppstår ein feil viss parameteren source brukar jokerteikn og det ikkje er samsvar med noko mappe." #. m3Hzh #: sf_filesystem.xhp @@ -13853,7 +13854,7 @@ "par_id851584544734202\n" "help.text" msgid "source: It can be a FolderName or a NamePattern indicating one or more folders to be copied." -msgstr "" +msgstr "source: Kan vera eit FolderName eller NamePattern som peikar på éi eller fleire mapper som skal kopierast." #. msqGq #: sf_filesystem.xhp @@ -13862,7 +13863,7 @@ "par_id321584544734273\n" "help.text" msgid "destination: Specifies the FolderName into which the single or multiple folders defined in source are to be copied." -msgstr "" +msgstr "destination: Spesifiserer det FolderName som éi eller fleire mapper, definert i source, skal kopierast til." #. iLKYc #: sf_filesystem.xhp @@ -13871,7 +13872,7 @@ "par_id491612999134762\n" "help.text" msgid "If destination does not exist, it is created." -msgstr "" +msgstr "Viss destination ikkje finst, vert det laga." #. TvYDS #: sf_filesystem.xhp @@ -13880,7 +13881,7 @@ "par_id591612999166740\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Det er ikkje tillate å bruka jokerteikn i destination." #. 3A2C2 #: sf_filesystem.xhp @@ -13889,7 +13890,7 @@ "par_id251584542431525\n" "help.text" msgid "overwrite: If True (default), files may be overwritten. The method will fail if destination is readonly, regardless of the value specified in overwrite." -msgstr "" +msgstr "overwrite: Viss Sann (standard), kan filene overskrivast. Metoden vil ikkje lukkast viss destination er skriveverna, same kva verdi som er sett i overwrite." #. 7CxBB #: sf_filesystem.xhp @@ -13898,7 +13899,7 @@ "par_id751626216627481\n" "help.text" msgid "In the examples below all files, folders and subfolders are copied." -msgstr "" +msgstr "I eksempla nedanfor vert alle filer, mapper og undermapper kopierte." #. fNBgH #: sf_filesystem.xhp @@ -13925,7 +13926,7 @@ "par_id491584540675469\n" "help.text" msgid "foldername: A string representing the folder to be created. If the folder already exists, an exception will be raised." -msgstr "" +msgstr "foldername: Ein streng som representerer mappa som skal lagast. Viss mappa finst frå før, vert det sett opp eit unnatak." #. 2zcfH #: sf_filesystem.xhp @@ -13934,7 +13935,7 @@ "par_id731585322689518\n" "help.text" msgid "Creates a specified file and returns a TextStream service instance that can be used to write to the file." -msgstr "" +msgstr "Lagar ei spesifisert fil og returnerer tenesta TextStream som kan brukast for å skriva til fila." #. YMZDA #: sf_filesystem.xhp @@ -13952,7 +13953,7 @@ "par_id901585322689715\n" "help.text" msgid "filename: The name of the file to be created." -msgstr "" +msgstr "filename: Namnet på fila som skal lagast." #. gEJA4 #: sf_filesystem.xhp @@ -13961,7 +13962,7 @@ "par_id501585322689209\n" "help.text" msgid "overwrite: Boolean value that determines if filename can be overwritten (default = True)." -msgstr "" +msgstr "overwrite: Boolsk verdi som bestemmer om filename kan overskrivast (standard = Sann)." #. CkbhC #: sf_filesystem.xhp @@ -13970,7 +13971,7 @@ "par_id551585322689192\n" "help.text" msgid "encoding: The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "encoding: Teiknsettet som skal brukast. Standard = «UTF-8»." #. eoE92 #: sf_filesystem.xhp @@ -13997,7 +13998,7 @@ "par_id21612999775356\n" "help.text" msgid "An error will also occur if the filename parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Det oppstår også ein feil viss parameteren filename brukar jokerteikn og det ikkje er samsvar med filene." #. TWJRd #: sf_filesystem.xhp @@ -14024,7 +14025,7 @@ "par_id441584882040860\n" "help.text" msgid "filename: It can be a FileName or a NamePattern indicating one or more files to be deleted." -msgstr "" +msgstr "filename: Det kan vera eit FileName eller eit NamePattern som indikerer éi eller fleire filer som skal slettast." #. FnaSi #: sf_filesystem.xhp @@ -14033,7 +14034,7 @@ "par_id851626217167909\n" "help.text" msgid "In the examples below only files are deleted, subfolders are not deleted." -msgstr "" +msgstr "I eksempla nedanfor vert berre filer sletta. Undermapper vert ikkje sletta." #. c9ZCd #: sf_filesystem.xhp @@ -14051,7 +14052,7 @@ "par_id21612999775346\n" "help.text" msgid "An error will also occur if the foldername parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Det oppstår også ein feil viss parameteren foldername brukar jokerteikn og det ikkje er samsvar med filene." #. GsqDD #: sf_filesystem.xhp @@ -14078,7 +14079,7 @@ "par_id451584882542247\n" "help.text" msgid "foldername: It can be a FolderName or a NamePattern indicating one or more folders to be deleted." -msgstr "" +msgstr "foldername: Det kan vera eit FolderName eller NamePattern som indikerer éi eller fleire mapper som skal slettast." #. cCnG9 #: sf_filesystem.xhp @@ -14087,7 +14088,7 @@ "par_id651626217314709\n" "help.text" msgid "In the examples below only folders and their contents are deleted. Files in the parent folder \"C:\\Temp\" are not deleted." -msgstr "" +msgstr "I eksempla nedanfor vert berre mapper og innhaldet i dei sletta. Filer i i den overordna mappa «C:\\Temp» vert ikkje sletta." #. ZbyLn #: sf_filesystem.xhp @@ -14105,7 +14106,7 @@ "par_id91613003122613\n" "help.text" msgid "If the filename parameter is actually an existing folder name, the method returns False." -msgstr "" +msgstr "Viss parameteren filename er eit mappenamn som finst frå før, returnerer metoden Usann." #. fr2Ei #: sf_filesystem.xhp @@ -14114,7 +14115,7 @@ "par_id361583764426547\n" "help.text" msgid "filename: A string representing the file to be tested." -msgstr "" +msgstr "filename: Ein streng som representerer fila som skal testast." #. ChDCL #: sf_filesystem.xhp @@ -14132,7 +14133,7 @@ "par_id641613003790120\n" "help.text" msgid "If the argument foldername specifies a folder that does not exist, an exception is raised." -msgstr "" +msgstr "Viss argumentet foldername spesifiserer ei mappe som ikkje finst, vert det sett eit unnatak." #. nFaPD #: sf_filesystem.xhp @@ -14150,7 +14151,7 @@ "par_id731583944543140\n" "help.text" msgid "foldername: A string representing a folder. The folder must exist. This argument must not designate a file." -msgstr "" +msgstr "foldername: Ein streng som representerer ei mappe. Mappa må finnast. Dette argument må ikkje visa til ei fil." #. EM5cJ #: sf_filesystem.xhp @@ -14159,7 +14160,7 @@ "par_id591585648450060\n" "help.text" msgid "filter: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")." -msgstr "" +msgstr "filter: Ein streng som inneheld jokerteikn («?» og «*») som vert brukt i den resulterande lista over filer (standard = \"\")." #. zG7ec #: sf_filesystem.xhp @@ -14168,7 +14169,7 @@ "par_id51583765642590\n" "help.text" msgid "Returns True if the specified FolderName is valid and exists, otherwise the method returns False." -msgstr "" +msgstr "Returnerer Sann viss det spesifiserte foldername er gyldig og fila finst, elles returnerer metoden Usann." #. 9xtCG #: sf_filesystem.xhp @@ -14177,7 +14178,7 @@ "par_id151613004111990\n" "help.text" msgid "If the foldername parameter is actually an existing file name, the method returns False." -msgstr "" +msgstr "Viss parameteren foldername faktisk er eit filnamn, returnerer metoden Usann." #. qrf4A #: sf_filesystem.xhp @@ -14186,7 +14187,7 @@ "par_id1001583765642211\n" "help.text" msgid "foldername: A string representing the folder to be tested." -msgstr "" +msgstr "foldername: Ein streng som representerer mappa som skal testast." #. eAFVs #: sf_filesystem.xhp @@ -14195,7 +14196,7 @@ "par_id521584110618989\n" "help.text" msgid "Returns the BaseName (equal to the last component) of a folder or file name, without its extension." -msgstr "" +msgstr "Returnerer filnamnet eller mappenamnet BaseName (same som den siste komponenten) utan filutvidinga." #. YnBXv #: sf_filesystem.xhp @@ -14204,7 +14205,7 @@ "par_id731613004316790\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "Metoden kontrollerer ikkje om den spesifiserte fila eller mappa finst frå før." #. 3FPjB #: sf_filesystem.xhp @@ -14213,7 +14214,7 @@ "par_id691584110618308\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Ein streng som representerer filnamnet med stien." #. jwFaP #: sf_filesystem.xhp @@ -14222,7 +14223,7 @@ "par_id1001626271201609\n" "help.text" msgid "In the examples below, the first GetBaseName method call corresponds to a folder, so the function returns the last component of the path. The second call receives a file name as input, so the name of the file is returned without its extension." -msgstr "" +msgstr "I eksempla nedanfor kallar den første metoden GetBaseName opp ei mappe, slik at funksjonen returnerer den siste komponenten i stien. Det andre oppkallet mottek eit filnamn som inndata, slik at namnet på fila vert returnert utan filetternamnet." #. A56XC #: sf_filesystem.xhp @@ -14231,7 +14232,7 @@ "par_id831584032680866\n" "help.text" msgid "Returns the extension part of a file or folder name without the dot \".\" character." -msgstr "" +msgstr "Returnerer filtypen for ei fil eller ei mappe utan teiknet punktum «.»." #. pdCJv #: sf_filesystem.xhp @@ -14240,7 +14241,7 @@ "par_id941613060736524\n" "help.text" msgid "The method does not check for the existence of the specified file or folder." -msgstr "" +msgstr "Metoden kontrollerer ikkje om den spesifiserte fila eller mappa finst frå før." #. Aqvwt #: sf_filesystem.xhp @@ -14249,7 +14250,7 @@ "par_id561613060896361\n" "help.text" msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned." -msgstr "" +msgstr "Viss denne metoden vert brukt på eit mappenamn eller ei fil utan filetternam, vert det returnert ein tom streng." #. NzK5z #: sf_filesystem.xhp @@ -14258,7 +14259,7 @@ "par_id821584032680311\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Ein streng som representerer filnamnet med stien." #. Am6Bu #: sf_filesystem.xhp @@ -14267,7 +14268,7 @@ "par_id48160068505010\n" "help.text" msgid "The builtin FileLen Basic function returns the number of bytes contained in a file as a Long value, i.e. up to 2GB." -msgstr "" +msgstr "Den innebygde Basic-funksjonen FileLen returnerer talet på byte i ei fil som ein Long-verdi, det vil seia opp til 2GB." #. 2FHpa #: sf_filesystem.xhp @@ -14276,7 +14277,7 @@ "par_id571613061005426\n" "help.text" msgid "The GetFileLen method can handle files with much larger sizes by returning a Currency value." -msgstr "" +msgstr "Metoden GetFileLen kan handsama mykje større filer ved å returnera verdien Currency." #. PK2Fo #: sf_filesystem.xhp @@ -14285,7 +14286,7 @@ "par_id161600685050367\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Ein streng som representerer ei fil som finst frå før." #. o2GGJ #: sf_filesystem.xhp @@ -14294,7 +14295,7 @@ "par_id191584811478936\n" "help.text" msgid "Returns the last modified date of a given file." -msgstr "" +msgstr "Returnerer datoen ei gjeve fil sist vart endra." #. VMB4i #: sf_filesystem.xhp @@ -14303,7 +14304,7 @@ "par_id25158481147822\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Ein streng som representerer ei fil som finst frå før." #. VEZR6 #: sf_filesystem.xhp @@ -14312,7 +14313,7 @@ "par_id711584032366587\n" "help.text" msgid "Returns the last component of a file or folder name in native operating system format." -msgstr "" +msgstr "Returnerer den siste komponenten i eit fil- eller mappenamn i formatet brukt av operativsystemet." #. 4vAvz #: sf_filesystem.xhp @@ -14321,7 +14322,7 @@ "par_id541613061300811\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "Metoden kontrollerer ikkje om den spesifiserte fila eller mappa finst frå før." #. iajZD #: sf_filesystem.xhp @@ -14330,7 +14331,7 @@ "par_id671584032366193\n" "help.text" msgid "filename: A string representing the file name and its path." -msgstr "" +msgstr "filename: Ein streng som representerer filnamnet med stien." #. ffxFe #: sf_filesystem.xhp @@ -14339,7 +14340,7 @@ "par_id871584113432747\n" "help.text" msgid "Returns a string containing the name of the parent folder of a specified file or folder name." -msgstr "" +msgstr "Returnerer ein streng som inneheld namnet på den overordna mappa for den gjevne fila eller mappa." #. 2eBgA #: sf_filesystem.xhp @@ -14348,7 +14349,7 @@ "par_id611613061603039\n" "help.text" msgid "The method does not check if the specified file or folder exists." -msgstr "" +msgstr "Metoden kontrollerer ikkje om den spesifiserte fila eller mappa finst frå før." #. YUAQ3 #: sf_filesystem.xhp @@ -14357,7 +14358,7 @@ "par_id471584113432231\n" "help.text" msgid "filename: A string with the file or folder name to be analyzed." -msgstr "" +msgstr "filname: Ein streng med det fil- eller mappenamnet som skal analyserast." #. Uc93M #: sf_filesystem.xhp @@ -14366,7 +14367,7 @@ "par_id82158385117289\n" "help.text" msgid "Returns a randomly generated temporary file name that is useful for performing operations that require a temporary file." -msgstr "" +msgstr "Returnerer eit tilfeldig generert mellombels filnamn som kan vera nyttig for å utføra operasjonar som krev ei mellombels fil" #. FS3qq #: sf_filesystem.xhp @@ -14375,7 +14376,7 @@ "par_id391613061770924\n" "help.text" msgid "The returned file name does not have any suffix. The folder part of the returned string is the system's temporary folder." -msgstr "" +msgstr "Det returnerte filnamnet har ingen filtype. Mappedelen av den returnerte strengen er den mellombels mappa til systemet." #. W7gF7 #: sf_filesystem.xhp @@ -14384,7 +14385,7 @@ "par_id971613061774934\n" "help.text" msgid "The method does not create the temporary file." -msgstr "" +msgstr "Metoden lagar ikkje den mellombels fila." #. ch2AJ #: sf_filesystem.xhp @@ -14393,7 +14394,7 @@ "par_id58160104251423\n" "help.text" msgid "Hash functions are used by some cryptographic algorithms, in digital signatures, message authentication codes, fraud detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more." -msgstr "" +msgstr "Hash-funksjonar vert brukte av nokre kryptografiske algoritmar, i digitale signaturar, meldings-godkjenningskodar, svindeloppdaging, fingeravtrykk, kontrollsummar (kontroll av meldingsintegritet), hash-tabellar, lagring av passord og meir." #. qxDnP #: sf_filesystem.xhp @@ -14402,7 +14403,7 @@ "par_id301601042791356\n" "help.text" msgid "The HashFile method returns the result of a hash function, applied on a given file and using a specified algorithm. The returned value is a string of lower-case hexadecimal digits." -msgstr "" +msgstr "Metoden HashFile returnerer resultatet av ein hash-funksjon som er brukt på ei gjeven fil og med ein gjeven algoritme. Den returnerte verdien er ein streng av heksadesimale siffer skrive med små bokstavar." #. eAW33 #: sf_filesystem.xhp @@ -14411,7 +14412,7 @@ "par_id861601043268484\n" "help.text" msgid "The hash algorithms supported are: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512." -msgstr "" +msgstr "Dei støtta hash-algoritmene er: MD5, SHA1, SHA224, SHA256, SHA384 og SHA512." #. s5ZiA #: sf_filesystem.xhp @@ -14420,7 +14421,7 @@ "par_id28160104251451\n" "help.text" msgid "filename: A string representing an existing file." -msgstr "" +msgstr "filename: Ein streng som representerer ei fil som finst frå før." #. Eomhm #: sf_filesystem.xhp @@ -14429,7 +14430,7 @@ "par_id71601042959846\n" "help.text" msgid "algorithm: One of the supported algorithms." -msgstr "" +msgstr "algoritme: Ein av dei støtta algoritmane." #. HzFs2 #: sf_filesystem.xhp @@ -14438,7 +14439,7 @@ "par_id51584791330688\n" "help.text" msgid "Moves one or more files from one location to another. Returns True if at least one file has been moved or False if an error occurred." -msgstr "" +msgstr "Flyttar éi eller fleire filer frå éin stad til ein annan. Returnerer Sann viss minst éi fil er flytt, eller Usann viss det oppstod ein feil." #. RFrNE #: sf_filesystem.xhp @@ -14447,7 +14448,7 @@ "par_id631613062890648\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any files." -msgstr "" +msgstr "Det oppstår ein feil viss parameteren source brukar jokerteikn og det ikkje er samsvar med noko fil." #. ETmEP #: sf_filesystem.xhp @@ -14456,7 +14457,7 @@ "par_id241613062902777\n" "help.text" msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred." -msgstr "" +msgstr "Metoden stoppar straks når det oppstår ein feil. Metoden rullar ikkje tilbake, og angrar heller ikkje endringar som vart gjort før feilen oppstod." #. DbC6F #: sf_filesystem.xhp @@ -14465,7 +14466,7 @@ "par_id721584791330406\n" "help.text" msgid "source: It can be a FileName or NamePattern to designate one or more files to be moved." -msgstr "" +msgstr "source: Kan vera eit FileName eller eit NamePattern som peikar på éi eller fleire mapper som skal flyttast." #. BHa7Y #: sf_filesystem.xhp @@ -14474,7 +14475,7 @@ "par_id291584791330181\n" "help.text" msgid "destination: If source is a FileName then this parameter indicates the new path and file name of the moved file." -msgstr "" +msgstr "destination: Viss source er eit FileName så peikar denne parameteren på den nye stien og filnamnet til den fila som er flytt." #. ZzA3Y #: sf_filesystem.xhp @@ -14483,7 +14484,7 @@ "par_id31613063334246\n" "help.text" msgid "If the move operation involves multiple files, then destination must be a folder name. If it does not exist, it is created." -msgstr "" +msgstr "Viss flytteoperasjonen gjeld fleire filer, må destination vera eit mappenamn. Viss mappa ikkje finst, vert ho laga." #. 39oR8 #: sf_filesystem.xhp @@ -14492,7 +14493,7 @@ "par_id391613063494599\n" "help.text" msgid "If source and destination have the same parent folder, the method will rename the source." -msgstr "" +msgstr "Viss source og destination har den same overordna mappa, vil metoden gje nytt namn til source." #. 7bzK4 #: sf_filesystem.xhp @@ -14501,7 +14502,7 @@ "par_id941613063476533\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Det er ikkje tillate å bruka jokerteikn i destination." #. Bysqd #: sf_filesystem.xhp @@ -14510,7 +14511,7 @@ "par_id91626272612758\n" "help.text" msgid "In the following examples only files are moved, subfolders are not." -msgstr "" +msgstr "I eksempla nedanfor vert berre filene flytta, ikkje undermappene." #. iYBMe #: sf_filesystem.xhp @@ -14528,7 +14529,7 @@ "par_id411613072570664\n" "help.text" msgid "An error will also occur if the source parameter uses wildcard characters and does not match any folders." -msgstr "" +msgstr "Det oppstår ein feil viss parameteren source brukar jokerteikn og det ikkje er samsvar med noko mappe." #. F2DaD #: sf_filesystem.xhp @@ -14546,7 +14547,7 @@ "par_id541584791330777\n" "help.text" msgid "source: It can be a FolderName or NamePattern to designate one or more folders to be moved." -msgstr "" +msgstr "source: Kan vera eit FolderName eller NamePattern som spesifiserer éi eller fleire mapper som skal flyttast." #. 4Ampu #: sf_filesystem.xhp @@ -14555,7 +14556,7 @@ "par_id551584791330279\n" "help.text" msgid "destination: If the move operation involves a single folder, then destination is the name and path of the moved folder and it must not exist." -msgstr "" +msgstr "destination: Viss flyttinga involverer éi enkelt mappe, er destination namnet og stien til den flytte mappa, som ikkje må finnast frå før." #. dD7SB #: sf_filesystem.xhp @@ -14564,7 +14565,7 @@ "par_id11613072890641\n" "help.text" msgid "If multiple folders are being moved, then destination designates where the folders in source will be moved into. If destination does not exist, it is created." -msgstr "" +msgstr "Viss fleire mapper vert flytte, bestemmer destination kvar mappene i source skal flyttast til. Viss destination ikkje finst frå før, vert det laga." #. A69QS #: sf_filesystem.xhp @@ -14573,7 +14574,7 @@ "par_id301613072928159\n" "help.text" msgid "Wildcard characters are not allowed in destination." -msgstr "" +msgstr "Det er ikkje tillate å bruka jokerteikn i destination." #. JNTia #: sf_filesystem.xhp @@ -14600,7 +14601,7 @@ "par_id951613073135036\n" "help.text" msgid "The method returns a Null object (in Basic) or None (in Python) if an error occurred." -msgstr "" +msgstr "Denne metoden returnerer eit Null-objekt (i Basic) eller None (i Python) viss det kjem opp ein feil." #. mxuwo #: sf_filesystem.xhp @@ -14609,7 +14610,7 @@ "par_id551585320922678\n" "help.text" msgid "filename: Identifies the file to open." -msgstr "" +msgstr "filename: Identifiserer fila som skal opnast." #. tsRLR #: sf_filesystem.xhp @@ -14618,7 +14619,7 @@ "par_id671585320922388\n" "help.text" msgid "iomode: Indicates the input/output mode. It can be one of three constants: svc.ForReading (default), svc.ForWriting, or svc.ForAppending." -msgstr "" +msgstr "iomode: Indikerer input/output modus. Det kan vera éin av dei tre konstantane: svc.ForReading (standard), svc.ForWriting eller svc.ForAppending." #. z27vT #: sf_filesystem.xhp @@ -14627,7 +14628,7 @@ "par_id21585321398586\n" "help.text" msgid "create: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:" -msgstr "" +msgstr "create: Boolsk verdi som indikerer om ei ny fil kan lagast viss det gjevne filename ikkje finst frå før:" #. VDFAi #: sf_filesystem.xhp @@ -14654,7 +14655,7 @@ "par_id771585321576210\n" "help.text" msgid "encoding: The character set to be used. The default encoding is \"UTF-8\"." -msgstr "" +msgstr "encoding: Teiknsettet som skal brukast. Standard = «UTF-8»." #. FuYwe #: sf_filesystem.xhp @@ -14681,7 +14682,7 @@ "par_id481583670342502\n" "help.text" msgid "defaultfile: This argument is a string composed of a folder and file name:" -msgstr "" +msgstr "defaultfile: Dette argumentet er ein streng som er sett saman av eit mappe- og eit filnamn:" #. fyVCs #: sf_filesystem.xhp @@ -14708,7 +14709,7 @@ "par_id981583670342502\n" "help.text" msgid "mode: A string value that can be either \"OPEN\" (for input files) or \"SAVE\" (for output files). The default value is \"OPEN\"." -msgstr "" +msgstr "mode: Ein strengverdi som kan vera anten \"OPEN\" (for inndata-filer) eller \"SAVE\" (for utdata-filer). Standardverdien er \"OPEN\"." #. uvwDP #: sf_filesystem.xhp @@ -14717,7 +14718,7 @@ "par_id31583670342502\n" "help.text" msgid "filter: The extension of the files displayed when the dialog is opened (default = no filter)." -msgstr "" +msgstr "filter: Namneutvidinga på dei filene som vert viste når dialogvindauget er ope (standard=ikkje filter)." #. niaGR #: sf_filesystem.xhp @@ -14726,7 +14727,7 @@ "par_id881626276134300\n" "help.text" msgid "The examples below open a file picker with the \"txt\" filter applied." -msgstr "" +msgstr "Eksempla nedanfor opnar ein filveljar med \"txt\"-filteret slått på." #. HkwaR #: sf_filesystem.xhp @@ -14744,7 +14745,7 @@ "par_id951583671701872\n" "help.text" msgid "defaultfolder: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)." -msgstr "" +msgstr "defaultfolder: Ein streng som inneheld det mappenamnet som vert vist når dialogvindauget vert opna (standard = sen sist valde mappa)." #. ymABK #: sf_filesystem.xhp @@ -14753,7 +14754,7 @@ "par_id821583671701764\n" "help.text" msgid "freetext: Text to display in the dialog (default = \"\")." -msgstr "" +msgstr "freetext: Teksten som skal visast i dialogvindauget (standard = \"\")." #. 4FFby #: sf_filesystem.xhp @@ -14762,7 +14763,7 @@ "bas_id921583671701610\n" "help.text" msgid "aFolder = FSO.PickFolder(\"C:\\Documents\", \"Choose a folder or press Cancel\")" -msgstr "" +msgstr "aFolder = FSO.PickFolder(\"C:\\Documents\", \"Vel ei mappe eller trykk på Avbryt\")" #. ENDba #: sf_filesystem.xhp @@ -14771,7 +14772,7 @@ "pyc_id631626276402296\n" "help.text" msgid "aFolder = fso.PickFolder(r\"C:\\Documents\", \"Choose a folder or press Cancel\")" -msgstr "" +msgstr "aFolder = fso.PickFolder(r\"C:\\Documents\", \"Vel ei mappe eller trykk på Avbryt\")" #. xdfBh #: sf_filesystem.xhp @@ -14780,7 +14781,7 @@ "par_id431584016761996\n" "help.text" msgid "Returns a zero-based array of strings corresponding to the folders stored in a given foldername." -msgstr "" +msgstr "Returnerer ei null-basert matrise av strengar som svarar til dei mappene som er lagra i eit gjeve foldername." #. LVNZq #: sf_filesystem.xhp @@ -14789,7 +14790,7 @@ "par_id431613075267241\n" "help.text" msgid "The list may be filtered with wildcards." -msgstr "" +msgstr "Lista kan vera filtrert med jokerteikn." #. 7pDiA #: sf_filesystem.xhp @@ -14798,7 +14799,7 @@ "par_id701584016761945\n" "help.text" msgid "foldername: A string representing a folder. The folder must exist. foldername must not designate a file." -msgstr "" +msgstr "foldername: Ein streng som representerer ei mappe. Mappa må finnast. foldername må ikkje visa til ei fil." #. Xmg8b #: sf_filesystem.xhp @@ -14807,7 +14808,7 @@ "par_id471585648674921\n" "help.text" msgid "filter: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")." -msgstr "" +msgstr "filter: Ein streng som inneheld jokerteikn («?» og «*») som vert brukt i den resulterande lista over mapper (standard = \"\")." #. XQG8t #: sf_form.xhp @@ -14816,7 +14817,7 @@ "tit\n" "help.text" msgid "SFDocuments.Form service" -msgstr "" +msgstr "Tenesta SFDocuments.Form" #. kanuY #: sf_form.xhp @@ -14825,7 +14826,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDocuments.Form service" -msgstr "" +msgstr "Tenesta SFDocuments. Form" #. LDpRB #: sf_form.xhp @@ -14834,7 +14835,7 @@ "par_id931583589764919\n" "help.text" msgid "The Form service provides methods and properties to manage forms in %PRODUCTNAME documents. This service supports forms in Base, Calc and Writer documents and allows to:" -msgstr "" +msgstr "Tenesta Form har metodar og eigenskapar for å administrera skjema i %PRODUCTNAME-dokument. Denne tenesta har støtte for skjema i Base-, Calc- og Writer-dokument og tillet:" #. U3zGB #: sf_form.xhp @@ -14843,7 +14844,7 @@ "par_id381618172063851\n" "help.text" msgid "Open and activate forms." -msgstr "" +msgstr "Opna og aktiver skjema." #. SC6Yb #: sf_form.xhp @@ -14852,7 +14853,7 @@ "par_id261618172129782\n" "help.text" msgid "Navigate through records shown by the form." -msgstr "" +msgstr "Naviger gjennom postane som vert viste i skjemaet." #. krQfB #: sf_form.xhp @@ -14861,7 +14862,7 @@ "par_id281618172141607\n" "help.text" msgid "Get access to the controls inside the form." -msgstr "" +msgstr "Få tilgang til kontrollelementa i skjemaet." #. itKdZ #: sf_form.xhp @@ -14870,7 +14871,7 @@ "par_id371618172155483\n" "help.text" msgid "Get access to subforms of a parent form." -msgstr "" +msgstr "Få tilgang til underskjema til eit overordna skjema." #. QcJ24 #: sf_form.xhp @@ -14879,7 +14880,7 @@ "par_id351616768789190\n" "help.text" msgid "The SFDocuments.Form service is available from %PRODUCTNAME 7.2 onwards." -msgstr "" +msgstr "Tenesta SFDocuments.Form er tilgjengeleg frå %PRODUCTNAME 7.2 og seinare." #. Ga5NU #: sf_form.xhp @@ -14888,7 +14889,7 @@ "par_id451616765867881\n" "help.text" msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the Form service provides quick access to the linked database through the SFDatabases.Database service." -msgstr "" +msgstr "Skjema vert til vanleg brukte i %PRODUCTNAME-dokument for å laga brukargrensesnitt kopla til relasjonsdatabasar. Difor gjev tenesta Form rask tilgang til den tilkopla databasen gjennom tenesta SFDatabases .Database." #. rGB5M #: sf_form.xhp @@ -14897,7 +14898,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDocuments.Form service is closely related to the SFDocuments.FormControl service." -msgstr "" +msgstr "Tenesta SFDocuments.Form er nært knytt til tenesta SFDocuments.FormControl." #. 3HUmh #: sf_form.xhp @@ -14906,7 +14907,7 @@ "hd_id161616766330804\n" "help.text" msgid "Definitions" -msgstr "" +msgstr "Definisjonar" #. GYDbT #: sf_form.xhp @@ -14915,7 +14916,7 @@ "par_id951618172906010\n" "help.text" msgid "Forms are usually created in Base documents, but they can be added to Writer and Calc documents as well." -msgstr "" +msgstr "Skjema vert til vanleg laga i Base-dokument, men de kan også leggjast til i Writer- og Calc-dokument." #. nKUdb #: sf_form.xhp @@ -14924,7 +14925,7 @@ "par_id671618173380680\n" "help.text" msgid "In Base, each form you create using the Insert - Form functionality or through the Form Wizard is actually a FormDocument that can be handled with the Form service. Base documents can contain an unlimited number of form documents." -msgstr "" +msgstr "I Base er kvart skjema som er laga med funksjonen Set inn → Skjema… eller med skjemavegvisaren eit FormDocument som kan handsamast ved hjelp av tenesta Form. Det er inga grense for kor mange skjemadokument grunndokumenta kan innehalda." #. kegBD #: sf_form.xhp @@ -14933,7 +14934,7 @@ "par_id841618177362626\n" "help.text" msgid "Below is an example showing the hierarchy of all the elements involved in accessing forms and subforms in a Base document. Suppose you have a Base file named Employees.odb and inside it you created a form document to add new employees to the database. The form document contains a main form named EmployeeData that gives access to a table. There is also a subform WorksAtPlant that allows you to associate the new employee to one of the plants of the company." -msgstr "" +msgstr "Nedanfor er eit eksempel som viser hierarkiet til alle elementa som er involverte i tilgang til skjema og underskjema i eit basisdokument. Gå ut frå at du har ei basisfil med namnet Employees.odb der du har laga eit skjemadokument for å leggja til nye tilsette i databasen. Skjemadokumentet inneheld eit hovudskjema kalla EmployeeData som gir tilgang til ein tabell. Det finst også eit underskjema WorksAtPlant som du kan bruka til å kopla den nye medarbeidaren til ei av avdelingane i selskapet." #. izkiB #: sf_form.xhp @@ -14942,7 +14943,7 @@ "bas_id151618176848874\n" "help.text" msgid "Employees.odb (Base document)" -msgstr "" +msgstr "Employees.odb (Tilsette) (Base-dokument)" #. cz2fJ #: sf_form.xhp @@ -14951,7 +14952,7 @@ "bas_id941618176869485\n" "help.text" msgid "|-- EmployeeData (Main Form)" -msgstr "" +msgstr "|-- EmployeeData (TilsetteData) (Hovudskjema)" #. k8nxK #: sf_form.xhp @@ -15059,7 +15060,7 @@ "par_id481618179851104\n" "help.text" msgid "A form in a Calc file must have a unique name inside its sheet. Hence, the Forms method requires two arguments, the first indicating the sheet name and the second specifying the form name." -msgstr "" +msgstr "Eit skjema i ei Calc-fil må ha eit unikt namn i tabellen. Difor krev metoden Forms to argument, det første som viser tabellnamnet og det andre som viser skjemanamnet." #. i9Um4 #: sf_form.xhp @@ -15068,7 +15069,7 @@ "par_id51622028165429\n" "help.text" msgid "This is achieved identically using Python:" -msgstr "" +msgstr "Dette oppnår du på same måte med Python:" #. 2fB94 #: sf_form.xhp @@ -15077,7 +15078,7 @@ "hd_id201618180055756\n" "help.text" msgid "In Base documents" -msgstr "" +msgstr "I Base-dokument" #. J3Btp #: sf_form.xhp @@ -15086,7 +15087,7 @@ "par_id711616768164987\n" "help.text" msgid "A FormDocument inside a Base document is accessed by its name. The following example opens the form document named thisFormDocument and accesses the form MainForm:" -msgstr "" +msgstr "Eit FormDocument i eit Base-dokument vert opna med namnet. Eksempelet nedanfor opnar skjemadokumentet kalla thisFormDocument og får tilgang til skjemaet MainForm" #. pbtEM #: sf_form.xhp @@ -15095,7 +15096,7 @@ "bas_id271598171225874\n" "help.text" msgid "' The statement below is necessary only if the form hasn't been opened yet" -msgstr "" +msgstr "' Uttrykket nedanfor er nødvendig berre viss skjemaet ikkje er opna." #. EDADK #: sf_form.xhp @@ -15104,7 +15105,7 @@ "bas_id51616768358888\n" "help.text" msgid "' Or, alternatively, to access the form by its index ..." -msgstr "" +msgstr "' Eller alternativt for å få tilgang til skjemaet med indeksen for det …" #. 2v2aG #: sf_form.xhp @@ -15113,7 +15114,7 @@ "par_id991618249636036\n" "help.text" msgid "To perform any action on a form using the Form service, the FormDocument must have been opened either manually by the user or programmatically in a user script. The latter can be done by calling the OpenFormDocument method of the Base service." -msgstr "" +msgstr "For å utføra ei handling på eit skjema ved å bruka tenesta Form, må FormDocument vera opna anten manuelt av brukaren eller av programmet i eit brukarskript. Det siste kan ein gjera ved å kalla opp metoden OpenFormDocument i tenesta Base." #. DDerZ #: sf_form.xhp @@ -15122,7 +15123,7 @@ "par_id11618180564274\n" "help.text" msgid "To access a given subform of a form use the SubForms method. Note that in the example below mySubForm is a new instance of the Form service." -msgstr "" +msgstr "For å få tilgang til eit gjeve underskjema brukar du metoden SubForms. Merk at i eksempelet nedanfor er mySubForm ein ny førekomst av tenesta Form." #. e7fcY #: sf_form.xhp @@ -15131,7 +15132,7 @@ "par_id681622028653480\n" "help.text" msgid "Previous examples translate in Python as:" -msgstr "" +msgstr "Dei tidlegare eksempla vert omsette i Python som:" #. ebc4K #: sf_form.xhp @@ -15140,7 +15141,7 @@ "pyc_id811622808499801\n" "help.text" msgid "# The statement below is necessary only if the form hasn't been opened yet" -msgstr "" +msgstr "# Uttrykket nedanfor er nødvendig berre viss skjemaet ikkje er opna." #. GdyX6 #: sf_form.xhp @@ -15491,7 +15492,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing interactions with the form. Refer to XForm and DataForm in the API documentation for detailed information." -msgstr "" +msgstr "UNO-objektet som representerer samhandlingar med skjemaet. Du finn detaljert informasjon i API-dokumentasjonen XForm og DataFoirm." #. cwE3k #: sf_form.xhp @@ -15500,7 +15501,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Hendingseigenskapar" #. eTuoa #: sf_form.xhp @@ -15509,7 +15510,7 @@ "par_id41612629140856\n" "help.text" msgid "The properties below return or set URI strings that define the script triggered by the event." -msgstr "" +msgstr "Eigenskapane nedanfor returnerer eller set URI-strengar som definerer eit skript som vert opna av hendinga." #. fdses #: sf_form.xhp @@ -15518,7 +15519,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Namn" #. DsQGQ #: sf_form.xhp @@ -15545,7 +15546,7 @@ "par_id111612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. GAgms #: sf_form.xhp @@ -15554,7 +15555,7 @@ "par_id1001612629836902\n" "help.text" msgid "Before record change" -msgstr "" +msgstr "Før endring av post" #. Mr9ns #: sf_form.xhp @@ -15563,7 +15564,7 @@ "par_id291612629836294\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. DwhZn #: sf_form.xhp @@ -15572,7 +15573,7 @@ "par_id62161262983683\n" "help.text" msgid "Fill parameters" -msgstr "" +msgstr "Fyllparameterar" #. DrMbU #: sf_form.xhp @@ -15581,7 +15582,7 @@ "par_id81612629836634\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. eAJAN #: sf_form.xhp @@ -15590,7 +15591,7 @@ "par_id881612629836744\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Før nullstilling" #. Y9d6z #: sf_form.xhp @@ -15599,7 +15600,7 @@ "par_id591612629836830\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. LKxEu #: sf_form.xhp @@ -15608,7 +15609,7 @@ "par_id161612629836775\n" "help.text" msgid "Before record action" -msgstr "" +msgstr "Før posthandlinga" #. Zyx2S #: sf_form.xhp @@ -15617,7 +15618,7 @@ "par_id891612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 2HBeC #: sf_form.xhp @@ -15626,7 +15627,7 @@ "par_id461612629836679\n" "help.text" msgid "Before submitting" -msgstr "" +msgstr "Før sendinga" #. 2fJrZ #: sf_form.xhp @@ -15635,7 +15636,7 @@ "par_id131612629836291\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. BX4AH #: sf_form.xhp @@ -15644,7 +15645,7 @@ "par_id151612629836151\n" "help.text" msgid "Confirm deletion" -msgstr "" +msgstr "Stadfest sletting" #. W9izF #: sf_form.xhp @@ -15653,7 +15654,7 @@ "par_id211612629836725\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. pDvPB #: sf_form.xhp @@ -15662,7 +15663,7 @@ "par_id361612629836624\n" "help.text" msgid "After record change" -msgstr "" +msgstr "Etter endring av post" #. WprGG #: sf_form.xhp @@ -15671,7 +15672,7 @@ "par_id311612629836481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. Xn2CS #: sf_form.xhp @@ -15680,7 +15681,7 @@ "par_id721612629836752\n" "help.text" msgid "Error occurred" -msgstr "" +msgstr "Det oppstod ein feil" #. B3zCy #: sf_form.xhp @@ -15689,7 +15690,7 @@ "par_id981612629836116\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. L3Ac6 #: sf_form.xhp @@ -15698,7 +15699,7 @@ "par_id381612629836635\n" "help.text" msgid "When loading" -msgstr "" +msgstr "Ved lasting" #. 9Z9vv #: sf_form.xhp @@ -15707,7 +15708,7 @@ "par_id711612629836704\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. XL4Js #: sf_form.xhp @@ -15716,7 +15717,7 @@ "par_id35161262983642\n" "help.text" msgid "When reloading" -msgstr "" +msgstr "Ved lasting på nytt" #. P6DEi #: sf_form.xhp @@ -15725,7 +15726,7 @@ "par_id44161677878329\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. ywCsh #: sf_form.xhp @@ -15734,7 +15735,7 @@ "par_id661616778783899\n" "help.text" msgid "Before reloading" -msgstr "" +msgstr "Før lasting på nytt" #. eGnRj #: sf_form.xhp @@ -15743,7 +15744,7 @@ "par_id651616778529764\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. E6JUH #: sf_form.xhp @@ -15752,7 +15753,7 @@ "par_id311616778529570\n" "help.text" msgid "After resetting" -msgstr "" +msgstr "Etter tilbakestilling" #. VDAk5 #: sf_form.xhp @@ -15761,7 +15762,7 @@ "par_id601616778529481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 99FfH #: sf_form.xhp @@ -15770,7 +15771,7 @@ "par_id351616778529352\n" "help.text" msgid "After record action" -msgstr "" +msgstr "Etter posthandling" #. CxndA #: sf_form.xhp @@ -15779,7 +15780,7 @@ "par_id711616778529292\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. DTDCq #: sf_form.xhp @@ -15788,7 +15789,7 @@ "par_id981616778529250\n" "help.text" msgid "When unloading" -msgstr "" +msgstr "Ved utlasting" #. iWroa #: sf_form.xhp @@ -15797,7 +15798,7 @@ "par_id521616778529932\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. pVPR9 #: sf_form.xhp @@ -15806,7 +15807,7 @@ "par_id511616778529291\n" "help.text" msgid "Before unloading" -msgstr "" +msgstr "Før utlasting" #. cTdFS #: sf_form.xhp @@ -15815,7 +15816,7 @@ "par_id961618181634322\n" "help.text" msgid "To learn more about URI strings, refer to the Scripting Framework URI Specification." -msgstr "" +msgstr "Du finn meir om URI-strengar i Scripting Framework URI Specification." #. bkBH8 #: sf_form.xhp @@ -15824,7 +15825,7 @@ "par_id921606472825856\n" "help.text" msgid "List of methods in the Form service" -msgstr "" +msgstr "Liste over metodar i tenesta Form" #. KwDij #: sf_form.xhp @@ -15833,7 +15834,7 @@ "par_id871583933076448\n" "help.text" msgid "Sets the focus on the current Form instance. Returns True if focusing was successful." -msgstr "" +msgstr "Set fokus på det gjeldande førekomsten av Form. Returner Sann viss fokuseringa lukkast." #. 9qj5F #: sf_form.xhp @@ -15842,7 +15843,7 @@ "par_id81616858956290\n" "help.text" msgid "The behavior of the Activate method depends on the type of document where the form is located:" -msgstr "" +msgstr "Verkemåten til metoden Activate er avhengig av kva type dokument skjemaet er i:" #. YVgyr #: sf_form.xhp @@ -15851,7 +15852,7 @@ "par_id761616858967361\n" "help.text" msgid "In Writer documents: Sets the focus on that document." -msgstr "" +msgstr "I Writer-dokument: Set fokus på dokumentet." #. HKFTw #: sf_form.xhp @@ -15860,7 +15861,7 @@ "par_id931616859010103\n" "help.text" msgid "In Calc documents: Sets the focus on the sheet to which the form belongs." -msgstr "" +msgstr "I Calc-dokument: Set fokus på det arket som skjemaet er i." #. 6jx5G #: sf_form.xhp @@ -15869,7 +15870,7 @@ "par_id41616859019478\n" "help.text" msgid "In Base documents: Sets the focus on the FormDocument the Form refers to." -msgstr "" +msgstr "I Base-dokument: Set fokus på det FormDocument Form visar til." #. J5C7y #: sf_form.xhp @@ -15887,7 +15888,7 @@ "bas_id21618228468066\n" "help.text" msgid "'Gets hold of the form that will be activated" -msgstr "" +msgstr "' Mottek skjemaet som vert aktivert" #. M2Wks #: sf_form.xhp @@ -15896,7 +15897,7 @@ "bas_id201618228487565\n" "help.text" msgid "'Activates the form" -msgstr "" +msgstr "' Aktivere skjemaet" #. YHxMm #: sf_form.xhp @@ -15914,7 +15915,7 @@ "par_id501616860541195\n" "help.text" msgid "Closes the form document containing the actual Form instance. The Form instance is disposed." -msgstr "" +msgstr "Lukker det skjemadokumentet som inneheld den aktuelle førekomsten av Form. Førekomsten av Form vert sletta." #. CcCpD #: sf_form.xhp @@ -15923,7 +15924,7 @@ "par_id611618229004669\n" "help.text" msgid "This method only closes form documents located in Base documents. If the form is stored in a Writer or Calc document, calling CloseFormDocument will have no effect." -msgstr "" +msgstr "Denne metoden lukkar berre skjemadokument i Base-dokument. Viss skjemaet er lagra i eit Writer- eller Calc-dokument, er oppkall av CloseFormDocument utan verknad." #. a8CxQ #: sf_form.xhp @@ -15932,7 +15933,7 @@ "par_id161584541257982\n" "help.text" msgid "The value returned by the Controls method depends on the arguments provided:" -msgstr "" +msgstr "Verdien som vert returnert av metoden Controls er avhengig av dei gjevne argumenta:" #. YkyY2 #: sf_form.xhp @@ -15941,7 +15942,7 @@ "par_id421598179770993\n" "help.text" msgid "If the method is called without arguments, then it returns the list of the controls contained in the form. Beware that the returned list does not contain any subform controls." -msgstr "" +msgstr "Viss metoden vert kalla opp utan argument, vil lista returnera lista over kontrollelemen som finst i skjemaet. Merk at lista ikkje inneheld kontrollelement for underskjema." #. SsiUX #: sf_form.xhp @@ -15950,7 +15951,7 @@ "par_id81598185229301\n" "help.text" msgid "If the optional ControlName argument is provided, the method returns a FormControl class instance referring to the specified control." -msgstr "" +msgstr "Viss det valfrie argumentet ControlName er gjeve, returnerer metoden ein klasse-førekomst av FormControl som visar til det gjevne kontrollelementet." #. 7CFJU #: sf_form.xhp @@ -15959,7 +15960,7 @@ "par_id1001584541257789\n" "help.text" msgid "controlname : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array." -msgstr "" +msgstr "controlname: Eit gyldig kontrollnamn som ein streng (som skil mellom små og store bokstavar). Viss denne manglar vert lista over kontrollnamn returnert som ei nullbasert matrise." #. unh4B #: sf_form.xhp @@ -15968,7 +15969,7 @@ "par_id291616861407907\n" "help.text" msgid "Return a SFDatabases.Database instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document." -msgstr "" +msgstr "Returnerer ein førekomst av SFDatabases.Database som gjev tilgang til å utføra SQL-kommandoar på den databasen det gjeldande skjemaet er knytt til og/eller lagra i." #. fZRst #: sf_form.xhp @@ -15977,7 +15978,7 @@ "par_id991616861417207\n" "help.text" msgid "Each form has its own database connection, except in Base documents where they all share the same connection." -msgstr "" +msgstr "Kvart skjema har si eiga databasetilkopling, bortsett frå i Base-dokument der alle deler same tilkoplinga." #. wFSWb #: sf_form.xhp @@ -15986,7 +15987,7 @@ "par_id701616861134906\n" "help.text" msgid "user, password: The login optional parameters (Default = \"\")." -msgstr "" +msgstr "user, password: Dei valfrie parameterane for pålogging (Standard = \"\")." #. 83Jju #: sf_form.xhp @@ -15995,7 +15996,7 @@ "par_id771616861842867\n" "help.text" msgid "The form cursor is positioned on the first record. Returns True if successful." -msgstr "" +msgstr "Skjemamarkøren er plassert på den første posten. Returnerer Sann viss det lukkast." #. rapRE #: sf_form.xhp @@ -16004,7 +16005,7 @@ "par_id331616863143187\n" "help.text" msgid "The form cursor is positioned on the last record. Returns True if successful." -msgstr "" +msgstr "Skjemamarkøren er plassert på den siste posten. Returnerer Sann viss det lukkast." #. HZELb #: sf_form.xhp @@ -16013,7 +16014,7 @@ "par_id361616863143954\n" "help.text" msgid "The form cursor is positioned on the new record area. Returns True if successful." -msgstr "" +msgstr "Skjemamarkøren er plassert på området for ny post. Returnerer Sann viss det lukkast." #. 2QwcR #: sf_form.xhp @@ -16022,7 +16023,7 @@ "par_id541616863143461\n" "help.text" msgid "The form cursor is positioned on the next record. Returns True if successful." -msgstr "" +msgstr "Skjemamarkøren er plassert på den neste posten. Returnerer Sann viss det lukkast." #. a2gGn #: sf_form.xhp @@ -16031,7 +16032,7 @@ "par_id271616863582607\n" "help.text" msgid "offset: The number of records to go forward (Default = 1)." -msgstr "" +msgstr "offset: Talet på postar som du skal gå framover (standard = 1)." #. e6huC #: sf_form.xhp @@ -16040,7 +16041,7 @@ "par_id616168637945\n" "help.text" msgid "The form cursor is positioned on the previous record. Returns True if successful." -msgstr "" +msgstr "Skjemamarkøren er plassert på den førre posten. Returnerer Sann viss det lukkast." #. tAnVw #: sf_form.xhp @@ -16049,7 +16050,7 @@ "par_id751616863794125\n" "help.text" msgid "offset: The number of records to go backwards (Default = 1)." -msgstr "" +msgstr "offset: Talet på postar som du skal gå bakover (standard = 1)." #. Kp4Wo #: sf_form.xhp @@ -16058,7 +16059,7 @@ "par_id811616864216529\n" "help.text" msgid "Reloads the current data from the database and refreshes the form. The cursor is positioned on the first record. Returns True if successful." -msgstr "" +msgstr "Lastar inn gjeldande data frå databasen på nytt og oppdaterer skjemaet. Markøren er plassert på den første posten. Returnerer Sann viss det lukkast." #. 5gBGr #: sf_form.xhp @@ -16067,7 +16068,7 @@ "par_id891616864510614\n" "help.text" msgid "The value returned by the Subforms method depends on the arguments provided:" -msgstr "" +msgstr "Verdien som vert returnert av metoden Subforms avhenger av dei gjevne argumenta:" #. 4yG2j #: sf_form.xhp @@ -16076,7 +16077,7 @@ "par_id951616864510585\n" "help.text" msgid "If the method is called without any arguments, then it returns the list of subforms contained in the current form or subform instance." -msgstr "" +msgstr "Viss metoden som er kalla utan argument vert kalla opp, returnerer han lista over underskjema i det gjeldande skjemaet eller i eit underskjema." #. AD3Q6 #: sf_form.xhp @@ -16085,7 +16086,7 @@ "par_id591616864510445\n" "help.text" msgid "If the optional subform argument is provided, the method returns a new SFDocuments.Form instance based on the specified form/subform name or index." -msgstr "" +msgstr "Viss det valfrie argumentet subform er oppgjeve, returnerer metoden eit nyt eksemplar av SFDocuments.Form basert på namnet på eller indeksen til det spesifiserte skjemaet/underskjemaet." #. GCRsS #: sf_form.xhp @@ -16094,7 +16095,7 @@ "par_id341616864510747\n" "help.text" msgid "subform: A subform stored in the current Form class instance given by its name or index." -msgstr "" +msgstr "subform: Eit underskjema lagra i den gjeldande klasseførekomsten Form gjeve ved namnet eller indeksen." #. uKm6R #: sf_form.xhp @@ -16103,7 +16104,7 @@ "par_id211618230389251\n" "help.text" msgid "When this argument is absent, the method returns a list of available subforms as a zero-based array. If the form has a single subform, you can set subform = 0 to get access to it." -msgstr "" +msgstr "Når dette argumentet manglar, returnerer metoden ei liste over tilgjengelege underskjema som ei null-basert matrise. Viss skjemaet har eitt enkelt underskjema, kan du setja subform = 0 for å få tilgang til det." #. CfGgB #: sf_formcontrol.xhp @@ -16112,7 +16113,7 @@ "tit\n" "help.text" msgid "SFDocuments.FormControl service" -msgstr "" +msgstr "Tenesta SFDocuments.FormControl" #. vND8Z #: sf_formcontrol.xhp @@ -16121,7 +16122,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDocuments.FormControl service" -msgstr "" +msgstr " Teenesta SFDocuments.FormControl" #. XFkrG #: sf_formcontrol.xhp @@ -16130,7 +16131,7 @@ "par_id931583589764919\n" "help.text" msgid "The FormControl service provides access to the controls that belong to a form, a subform or a table control of a FormDocument. Each instance of the FormControl service refers to a single control in the form. This service allows users to:" -msgstr "" +msgstr "Tenesta FormControl gjev tilgang til kontrollane knytte til eit skjema, underskjema eller ein tabellkontroll for eit FormDocument. Kvar førekomst av FormControl-tenesta refererer til eitt enkelt kontrollelement i skjemaet. Denne tenesta tillet brukarane å:" #. irNFC #: sf_formcontrol.xhp @@ -16139,7 +16140,7 @@ "par_id451618771561326\n" "help.text" msgid "Get and set the properties of the control represented by the FormControl instance." -msgstr "" +msgstr "Finn og set eigenskapane for kontrollelementet representert av førekomsten FormControl." #. S5aH9 #: sf_formcontrol.xhp @@ -16148,7 +16149,7 @@ "par_id601618771565183\n" "help.text" msgid "Access the current value displayed by the control." -msgstr "" +msgstr "Få tilgang til den gjeldande verdien vist av kontrollelementet." #. P5xzV #: sf_formcontrol.xhp @@ -16157,7 +16158,7 @@ "par_id981618771567951\n" "help.text" msgid "Set the focus on the desired control." -msgstr "" +msgstr "Set fokus på det ønskte kontrollelementet." #. LUDRM #: sf_formcontrol.xhp @@ -16166,7 +16167,7 @@ "par_id301616939922857\n" "help.text" msgid "To use the FormControl service in a particular form, subform or table control, all controls must have unique names." -msgstr "" +msgstr "For å bruka tenesta FormControl i eit bestemt skjema, underskjema eller ein bestemt tabellkontrol, må alle kontrollane ha eintydige namn." #. JMFEb #: sf_formcontrol.xhp @@ -16175,7 +16176,7 @@ "par_id541618771629112\n" "help.text" msgid "Radio buttons that share the same group name must also have unique control names." -msgstr "" +msgstr "Radioknappar som høyrer til same gruppa, må også ha eintydige kontrollnamn." #. mAwyv #: sf_formcontrol.xhp @@ -16184,7 +16185,7 @@ "par_id51618771641273\n" "help.text" msgid "The main purpose of the FormControl service is setting and getting the properties and values displayed by the controls in a form." -msgstr "" +msgstr "Hovudføremålet med tenesta FormControl er å setja og henta eigenskapar og verdiar viste av kontrollelement i eit skjema." #. K2Bgc #: sf_formcontrol.xhp @@ -16194,6 +16195,8 @@ "help.text" msgid "All controls have a Value property. However, its contents will vary according to the control type. For more information, read The Value Property below." msgstr "" +"Alle kontrollelement har eigenskapen Value. Innhaldet vil variera etter kva type kontrollelementet er. Du finn meir om dette nedanfor under \n" +"eigenskapen Value ." #. kF29h #: sf_formcontrol.xhp @@ -16202,7 +16205,7 @@ "par_id881618771651907\n" "help.text" msgid "It is also possible to format the controls via the XControlModel and XControlView properties." -msgstr "" +msgstr "Det er også mogleg å formatera kontrollelementa gjennom eigenskapane XControlModel og XControlView." #. WEST9 #: sf_formcontrol.xhp @@ -16211,7 +16214,7 @@ "par_id891598188164936\n" "help.text" msgid "The SFDocuments.FormControl service is closely related to the SFDocuments.Form service." -msgstr "" +msgstr "Tenesta SFDialogs.FormControl er i nær slekt med tenesta SFDocuments.Form." #. rUEuw #: sf_formcontrol.xhp @@ -16229,7 +16232,7 @@ "par_id361598174756160\n" "help.text" msgid "The FormControl service is invoked from an existing Form service instance through its Controls method." -msgstr "" +msgstr "Tenesta FormControl vert kalla opp frå ein eksisterande tenesteførekomst av Form gjennom metoden Controls." #. 56bE7 #: sf_formcontrol.xhp @@ -16238,7 +16241,7 @@ "pyc_id721622556808773\n" "help.text" msgid "control.Value = 'Current Time = ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" -msgstr "" +msgstr "control.Value = 'Current Time = ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())" #. FaP92 #: sf_formcontrol.xhp @@ -16247,7 +16250,7 @@ "par_id781618772761258\n" "help.text" msgid "To learn more about how to open a FormDocument and get access to its forms, refer to the SFDocuments.Form service help page." -msgstr "" +msgstr "Viss du vil læra meir om korleis opna eit FormDocument og få tilgang til skjemaa der, kan du sjå i hjelpsida for tenesta SFDocuments.Form." #. qeXCN #: sf_formcontrol.xhp @@ -16256,7 +16259,7 @@ "par_id951598174966322\n" "help.text" msgid "Alternatively a FormControl instance can be retrieved via the SFDocuments.FormEvent service, which returns the SFDocuments.FormControl class instance that triggered the event." -msgstr "" +msgstr "Alternativt kan ein førekomst av FormControl hentast gjennom tenesta SFDocuments.FormEvent som returnerer klassehendinga SFDocuments.FormControl som utløyste hendinga." #. bSfxy #: sf_formcontrol.xhp @@ -16265,7 +16268,7 @@ "bas_id801598175242937\n" "help.text" msgid "' oControl now represents the instance of the FormControl class that triggered the current event" -msgstr "" +msgstr "' oControl representerer no førekomsten av klassen FormControl, som utløyste den gjeldande hendinga" #. EgCtB #: sf_formcontrol.xhp @@ -16274,7 +16277,7 @@ "par_id251598176312571\n" "help.text" msgid "Note that in previous examples, the prefix \"SFDocuments.\" may be omitted." -msgstr "" +msgstr "Merk at i dei tidlegare eksempla kan prefikset \"SFDocuments.\" sløyfast." #. 7gE8Y #: sf_formcontrol.xhp @@ -16283,7 +16286,7 @@ "par_id951618773412097\n" "help.text" msgid "The FormEvent service is used exclusively to create instances of the SFDocuments.Form and SFDocuments.FormControl services when a form or control event takes place." -msgstr "" +msgstr "Tenesta FormEvent vert brukt berre til å laga førekomstar av tenestene SFDocuments.Form og SFDocuments.FormControl når når det dukkar opp ei skjema- eller kontrollhending." #. AppFj #: sf_formcontrol.xhp @@ -16292,7 +16295,7 @@ "hd_id71598455687512\n" "help.text" msgid "Control types" -msgstr "" +msgstr "Kontrollelementtypar" #. ezcW8 #: sf_formcontrol.xhp @@ -16301,7 +16304,7 @@ "par_id851598455863395\n" "help.text" msgid "The FormControl service is available for the following control types:" -msgstr "" +msgstr "Tenesta FormControl er tilgjengeleg for desse kontrollelementtypane:" #. BESBv #: sf_formcontrol.xhp @@ -16310,7 +16313,7 @@ "hd_id651583668365757\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenskapar" #. VrBfK #: sf_formcontrol.xhp @@ -16319,7 +16322,7 @@ "par_id871583668386455\n" "help.text" msgid "Name" -msgstr "" +msgstr "Namn" #. hDr9G #: sf_formcontrol.xhp @@ -16337,7 +16340,7 @@ "par_id271583668474014\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. dXwGN #: sf_formcontrol.xhp @@ -16346,7 +16349,7 @@ "par_id291598538799794\n" "help.text" msgid "Applicable to" -msgstr "" +msgstr "Gjeld for" #. bEQWc #: sf_formcontrol.xhp @@ -16364,7 +16367,7 @@ "par_id371583668519172\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. PszFp #: sf_formcontrol.xhp @@ -16373,7 +16376,7 @@ "par_id771583668386455\n" "help.text" msgid "Specifies the action triggered when the button is clicked. Accepted values are: none, submitForm, resetForm, refreshForm, moveToFirst, moveToLast, moveToNext, moveToPrev, saveRecord, moveToNew, deleteRecord, undoRecord." -msgstr "" +msgstr "Spesifiserer handlinga som vert utløyst når det vert trykt på knappen. Godkjente verdiar er: none, submitForm, resetForm, refreshForm, moveToFirst, moveToLast, moveToNext, moveToPrev, saveRecord, moveToNew, deleteRecord, undoRecord." #. fmzNT #: sf_formcontrol.xhp @@ -16382,7 +16385,7 @@ "par_id541583839708548\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 62Bud #: sf_formcontrol.xhp @@ -16391,7 +16394,7 @@ "par_id731583839708412\n" "help.text" msgid "Specifies the text displayed by the control." -msgstr "" +msgstr "Spesifiserer teksten som vert vist av kontrollelementet." #. nFFDY #: sf_formcontrol.xhp @@ -16400,7 +16403,7 @@ "par_id411616942306677\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. 8H6BR #: sf_formcontrol.xhp @@ -16409,7 +16412,7 @@ "par_id461616942306745\n" "help.text" msgid "Specifies the rowset field mapped onto the current control." -msgstr "" +msgstr "Spesifiserer «rowset»-feltet knytt til den gjeldande kontrollen." #. AJUH6 #: sf_formcontrol.xhp @@ -16418,7 +16421,7 @@ "par_id761584027709516\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Enqxp #: sf_formcontrol.xhp @@ -16427,7 +16430,7 @@ "par_id261598539120502\n" "help.text" msgid "All" -msgstr "" +msgstr "Alt" #. FsCJK #: sf_formcontrol.xhp @@ -16436,7 +16439,7 @@ "par_id971584027709752\n" "help.text" msgid "One of the control types listed above." -msgstr "" +msgstr "Ein av kontrollelementtypane lista opp ovanfor." #. DH84k #: sf_formcontrol.xhp @@ -16445,7 +16448,7 @@ "par_id31583839767743\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. pRrwC #: sf_formcontrol.xhp @@ -16454,7 +16457,7 @@ "par_id111583839767195\n" "help.text" msgid "Specifies whether a command button is the default OK button." -msgstr "" +msgstr "Spesifiserer om ein av kommandoknappane er standardknappen «OK»." #. 2dP2A #: sf_formcontrol.xhp @@ -16463,7 +16466,7 @@ "par_id241616942739459\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. Sukx9 #: sf_formcontrol.xhp @@ -16472,7 +16475,7 @@ "par_id271616942739359\n" "help.text" msgid "Specifies the default value used to initialize a control in a new record." -msgstr "" +msgstr "Spesifiserer standardverdien som skal brukast for å initialisere eit kontrollelement i ein ny post." #. nFBUQ #: sf_formcontrol.xhp @@ -16481,7 +16484,7 @@ "par_id771583839920487\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. fQYqd #: sf_formcontrol.xhp @@ -16490,7 +16493,7 @@ "par_id891598539196786\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (unnateke \"HiddenControl\")" #. MmDQ5 #: sf_formcontrol.xhp @@ -16499,7 +16502,7 @@ "par_id451583839920858\n" "help.text" msgid "Specifies if the control is accessible with the cursor." -msgstr "" +msgstr "Spesifiserer om kontrollelementet er tilgjengeleg med markøren." #. VDkDh #: sf_formcontrol.xhp @@ -16508,7 +16511,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 8X3Ho #: sf_formcontrol.xhp @@ -16517,7 +16520,7 @@ "par_id721588333908708\n" "help.text" msgid "Specifies the format used to display dates and times. It must be one of following strings:" -msgstr "" +msgstr "Spesifiserer formatet som vert brukt for å visa datoar og klokkeslett. Det må vera ein av desse strengane:" #. 6CqCN #: sf_formcontrol.xhp @@ -16526,7 +16529,7 @@ "par_id891598456980194\n" "help.text" msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"." -msgstr "" +msgstr "For datoar: \"Standard (kort)\", \"Standard (kort ÅÅ)\", \"Standard (kort ÅÅÅÅ)\", \"Standard (lang)\", \"DD/MM/ÅÅ\", \"MM/DD/ÅÅ\", \"ÅÅ/MM/DD\", \"DD/MM/ÅÅÅÅ\", \"MM/DD/ÅÅÅÅ\" , \"ÅÅÅÅ/MM/DD\", \"ÅÅ-MM-DD\", \"ÅÅÅÅ-MM-DD\"." #. f6gni #: sf_formcontrol.xhp @@ -16535,7 +16538,7 @@ "par_id221598456991070\n" "help.text" msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"." -msgstr "" +msgstr "For klokkeslett: \"24t kort\", \"24t lang\", \"12t kort\", \"12t lang\"." #. RqjAh #: sf_formcontrol.xhp @@ -16544,7 +16547,7 @@ "par_id501583774433513\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. E4aHX #: sf_formcontrol.xhp @@ -16553,7 +16556,7 @@ "par_id151598177605296\n" "help.text" msgid "Returns the number of rows in a ListBox or a ComboBox." -msgstr "" +msgstr "Returnerer talet på rader i eit listefelt eller ein kombinasjonsboks." #. ApC5v #: sf_formcontrol.xhp @@ -16562,7 +16565,7 @@ "par_id271588334016191\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. XQ3AV #: sf_formcontrol.xhp @@ -16571,7 +16574,7 @@ "par_id251588334016874\n" "help.text" msgid "Specifies which item is selected in a ListBox or ComboBox. In case of multiple selection, the index of the first item is returned or only one item is set." -msgstr "" +msgstr "Spesifiserer kva for element som er merkt i eit listefelt eller ein kombinasjonsboks. I tilfelle det er merkt fleire element, vert indeksen for det første elementet returnert eller det vert sett berre eitt element." #. 5DjjX #: sf_formcontrol.xhp @@ -16580,7 +16583,7 @@ "par_id891616944120697\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. nNqW5 #: sf_formcontrol.xhp @@ -16589,7 +16592,7 @@ "par_id901616944120614\n" "help.text" msgid "Specifies the data contained in a ComboBox or a ListBox as a zero-based array of string values." -msgstr "" +msgstr "Spesifiserer dataa som er i ein kombinasjonsboks eller eit listefelt som ei nullbasert matrise av strengverdiar." #. rvVZ7 #: sf_formcontrol.xhp @@ -16598,7 +16601,7 @@ "par_id21616944586559\n" "help.text" msgid "Combined with ListSourceType, may also contain the name of a table, a query or a complete SQL statement." -msgstr "" +msgstr "Kombinert med ListSourceType kan det også innehalda namnet på ein tabell, ei spørjing eller eit fullstendig SQL-uttrykk." #. jqgF5 #: sf_formcontrol.xhp @@ -16607,7 +16610,7 @@ "par_id821616944631740\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. sqr2g #: sf_formcontrol.xhp @@ -16616,7 +16619,7 @@ "par_id131616944631625\n" "help.text" msgid "Specifies the type of data contained in a combobox or a listbox." -msgstr "" +msgstr "Spesifiserer datatypen som er i ein kombinasjonsboks eller eit listefelt." #. Fdm4C #: sf_formcontrol.xhp @@ -16625,7 +16628,7 @@ "par_id881616944631341\n" "help.text" msgid "It must be one of the com.sun.star.form.ListSourceType.* constants." -msgstr "" +msgstr "Det må vera ein av konstantane i com.sun.star.form.ListSourceType.*." #. BQ7JE #: sf_formcontrol.xhp @@ -16634,7 +16637,7 @@ "par_id961598457655506\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. EV4jD #: sf_formcontrol.xhp @@ -16643,7 +16646,7 @@ "par_id2159845765568\n" "help.text" msgid "Specifies if the control is read-only." -msgstr "" +msgstr "Spesifiserer om kontrollelementet er skriveverna." #. CXDED #: sf_formcontrol.xhp @@ -16652,7 +16655,7 @@ "par_id621598457951781\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. e7HnA #: sf_formcontrol.xhp @@ -16661,7 +16664,7 @@ "par_id821598457951782\n" "help.text" msgid "Specifies whether the user can select multiple items in a listbox." -msgstr "" +msgstr "Spesifiserer om brukaren kan velja fleire element i ein listeboks." #. TZuvX #: sf_formcontrol.xhp @@ -16670,7 +16673,7 @@ "par_id351598458170114\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. AtLKa #: sf_formcontrol.xhp @@ -16679,7 +16682,7 @@ "par_id151598539764402\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. EuBGK #: sf_formcontrol.xhp @@ -16688,7 +16691,7 @@ "par_id621598458170392\n" "help.text" msgid "The name of the control." -msgstr "" +msgstr "Namnet på kontrollelementet" #. SNTgh #: sf_formcontrol.xhp @@ -16697,7 +16700,7 @@ "par_id161598458580581\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. CTjAM #: sf_formcontrol.xhp @@ -16706,7 +16709,7 @@ "par_id181598539807426\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. z8w8o #: sf_formcontrol.xhp @@ -16715,7 +16718,7 @@ "par_id801598458580456\n" "help.text" msgid "Depending on the parent type, a form, a subform or a tablecontrol, returns the parent SFDocuments.Form or SFDocuments.FormControl class object instance." -msgstr "" +msgstr "Avhengig av den overordna typen, returnerer eit skjema, eit underskjema eller eit tabellkontrollelement den overordna klasseobjekt-førekomsten SFDocuments.Form eller SFDocuments. FormControl." #. fyoXF #: sf_formcontrol.xhp @@ -16724,7 +16727,7 @@ "par_id971598458773352\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. RnXeR #: sf_formcontrol.xhp @@ -16733,7 +16736,7 @@ "par_id451598458773588\n" "help.text" msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the control. The filename must comply with the FileNaming attribute of the ScriptForge.FileSystem service." -msgstr "" +msgstr "Spesifiserer at filnamnet som inneheld punktgrafikk eller ein annan type grafikk som skal visast på det gjevne kontrollelementet. Filnamnet må vera i samsvar med attributten FileNaming til ScriptForge.FileSystem." #. PHBtj #: sf_formcontrol.xhp @@ -16742,7 +16745,7 @@ "par_id251616946015886\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. oYA7V #: sf_formcontrol.xhp @@ -16751,7 +16754,7 @@ "par_id91616946015258\n" "help.text" msgid "A control is said required when the underlying data must not contain a null value." -msgstr "" +msgstr "Eit kontrollelement vert kalla nødvendig når dei underliggjande dataa ikkje kan innehalda verdien null." #. NbTpX #: sf_formcontrol.xhp @@ -16760,7 +16763,7 @@ "par_id781598516764550\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Rv448 #: sf_formcontrol.xhp @@ -16769,7 +16772,7 @@ "par_id11159851676440\n" "help.text" msgid "Gives access to the text being displayed by the control." -msgstr "" +msgstr "Gjev tilgang til teksten som vert vist av kontrollelementet." #. 7kxit #: sf_formcontrol.xhp @@ -16778,7 +16781,7 @@ "par_id411598517275112\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. MNqBi #: sf_formcontrol.xhp @@ -16787,7 +16790,7 @@ "par_id171598539985022\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (unnateke \"HiddenControl\")" #. VXR9Y #: sf_formcontrol.xhp @@ -16796,7 +16799,7 @@ "par_id651598517275384\n" "help.text" msgid "Specifies the text that appears as a tooltip when you hover the mouse pointer over the control." -msgstr "" +msgstr "Spesifiserer teksten som vert vist som eit verktøytips når du held musepeikaren over kontrollelementet." #. Awzep #: sf_formcontrol.xhp @@ -16805,7 +16808,7 @@ "par_id821598517418463\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 6S5EL #: sf_formcontrol.xhp @@ -16814,7 +16817,7 @@ "par_id141598517418822\n" "help.text" msgid "Specifies if the checkbox control may appear dimmed (grayed) or not." -msgstr "" +msgstr "Bestemmer om kontrollelementet for avkryssingsboksen kan vera nedtona (gråa ut) eller ikkje." #. mCQFz #: sf_formcontrol.xhp @@ -16823,7 +16826,7 @@ "par_id701598517671373\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. mHxWu #: sf_formcontrol.xhp @@ -16832,7 +16835,7 @@ "par_id1001598540024225\n" "help.text" msgid "This property depends on the current control type. Refer to The Value property for more information." -msgstr "" +msgstr "Denne eigenskapen avhenger av gjeldende kontrollelementtype. For meir informasjon, sjå The Value property." #. ybVim #: sf_formcontrol.xhp @@ -16841,7 +16844,7 @@ "par_id661598517730941\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. G52FE #: sf_formcontrol.xhp @@ -16850,7 +16853,7 @@ "par_id761598540042290\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Alle (unnateke \"HiddenControl\")" #. 5juZG #: sf_formcontrol.xhp @@ -16859,7 +16862,7 @@ "par_id881598517730836\n" "help.text" msgid "Specifies if the control is hidden or visible." -msgstr "" +msgstr "Bestemmer om kontrollelementet skal vera gøymt eller synleg." #. FAYCA #: sf_formcontrol.xhp @@ -16868,7 +16871,7 @@ "par_id451598177924437\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. UZ7ug #: sf_formcontrol.xhp @@ -16877,7 +16880,7 @@ "par_id94159817792441\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    objekt" #. 65CSA #: sf_formcontrol.xhp @@ -16886,7 +16889,7 @@ "par_id311598540066789\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. 25EFH #: sf_formcontrol.xhp @@ -16895,7 +16898,7 @@ "par_id191598177924897\n" "help.text" msgid "The UNO object representing the control model. Refer to XControlModel and UnoControlModel in the API documentation for more information." -msgstr "" +msgstr "UNO-objektet som representer modellen for kontrollelementet. Sjå detaljert informasjon i UnoControlModel og UnoControlModel i dokumentasjonen for API-en ( Application Programming Interface)." #. FzDR6 #: sf_formcontrol.xhp @@ -16904,7 +16907,7 @@ "par_id811598178083501\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. Bdvyd #: sf_formcontrol.xhp @@ -16913,7 +16916,7 @@ "par_id981598178083938\n" "help.text" msgid "UNO
    object" -msgstr "" +msgstr "UNO
    objekt" #. DFQ5P #: sf_formcontrol.xhp @@ -16922,7 +16925,7 @@ "par_id551598540079329\n" "help.text" msgid "All" -msgstr "" +msgstr "Alle" #. XahSM #: sf_formcontrol.xhp @@ -16931,7 +16934,7 @@ "par_id731598178083442\n" "help.text" msgid "The UNO object representing the control view. Refer to XControl and UnoControl in the API documentation for more information." -msgstr "" +msgstr "UNO-objektet som representer modellen for kontrollelementet. Sjå detaljert informasjon i XControl og UnoControl i dokumentasjonen for API-en ( Application Programming Interface)." #. pqsod #: sf_formcontrol.xhp @@ -16940,7 +16943,7 @@ "hd_id81598540704978\n" "help.text" msgid "The Value property" -msgstr "" +msgstr "Value-eigenskapen" #. PbEBw #: sf_formcontrol.xhp @@ -16949,7 +16952,7 @@ "par_id10159854325492\n" "help.text" msgid "Control type" -msgstr "" +msgstr "Kontrollelementtype" #. bsmCC #: sf_formcontrol.xhp @@ -16958,7 +16961,7 @@ "par_id741598543254158\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. MWgHB #: sf_formcontrol.xhp @@ -16976,7 +16979,7 @@ "par_id741598543254108\n" "help.text" msgid "Applicable to toggle buttons only." -msgstr "" +msgstr "Gjeld berre for å slå knappar av og på." #. jpLCR #: sf_formcontrol.xhp @@ -16985,7 +16988,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "" +msgstr "Boolsk eller heiltal" #. ErAZY #: sf_formcontrol.xhp @@ -16994,7 +16997,7 @@ "par_id521598543254630\n" "help.text" msgid "0, False: not checked
    1, True: checked
    2: grayed out, don't know (applicable if TripleState is True)" -msgstr "" +msgstr "0, False: ikkje kontrollert
    1, True: kontrollertt
    2: gråa ut, veit ikkje (gjeld viss TripleState er True)" #. 3frrW #: sf_formcontrol.xhp @@ -17003,7 +17006,7 @@ "par_id331598543254947\n" "help.text" msgid "The selected value, as a String. The ListIndex property is an alternate option to access the index of the selected value." -msgstr "" +msgstr "Den valde verdien som ein streng. Eigenskapen ListIndex er ei alternativ innstilling for å få tilgang til den valde verdien." #. faEEm #: sf_formcontrol.xhp @@ -17012,7 +17015,7 @@ "par_id5159854325443\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numerisk" #. VyagB #: sf_formcontrol.xhp @@ -17021,7 +17024,7 @@ "par_id971598543254757\n" "help.text" msgid "A file name formatted in accordance with the FileNaming property of the ScriptForge.FileSystem service" -msgstr "" +msgstr "Eit filnamn formatert etter eigenskapen FileNaming i tenesta ScriptForge.FileSystem" #. CaGtr #: sf_formcontrol.xhp @@ -17030,7 +17033,7 @@ "par_id221598543254760\n" "help.text" msgid "String or Numeric" -msgstr "" +msgstr "Streng eller numerisk" #. gtxJY #: sf_formcontrol.xhp @@ -17039,7 +17042,7 @@ "par_id42159854325422\n" "help.text" msgid "String or array of strings" -msgstr "" +msgstr "Streng eller ei matrise av strengar" #. kBH32 #: sf_formcontrol.xhp @@ -17048,7 +17051,7 @@ "par_id601598543254780\n" "help.text" msgid "The selected row(s) as a single string or an array of strings. Only a single value can be set. If the box is linked to a database, this property gets or sets the underlying data. Otherwise it gets or sets the data being displayed." -msgstr "" +msgstr "Den valde rada eller dei valde radene som ein enkelt streng eller ei matrise av strengar. Berre éin verdi kan setjast. Viss feltet er lenkja til databasen, vil denne eigenskapen henta eller setja dei underliggjande dataa. Ellers hentar eller set han dataa som vert viste." #. f7EZX #: sf_formcontrol.xhp @@ -17057,7 +17060,7 @@ "par_id461598543254909\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numerisk" #. DrhU9 #: sf_formcontrol.xhp @@ -17066,7 +17069,7 @@ "par_id851598543254624\n" "help.text" msgid "Each button has its own name. Multiple RadioButton controls are linked together when they share the same group name. If a RadioButton is set to True, the other related buttons are automatically set to False" -msgstr "" +msgstr "Kvar knapp har sit eige namn. Fleire radioknapp-kontrollar er knytte saman når dei har felles gruppenamn. Viss ein radioknapp er sett til True, vert dei andre knappane i gruppa automatisk sette til False." #. WEsqT #: sf_formcontrol.xhp @@ -17075,7 +17078,7 @@ "par_id531598543254869\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numerisk" #. LxeLY #: sf_formcontrol.xhp @@ -17084,7 +17087,7 @@ "par_id21598543254994\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Må vera innføre dei førehandsdefinerte grensene" #. mpoa7 #: sf_formcontrol.xhp @@ -17093,7 +17096,7 @@ "par_id951616947400919\n" "help.text" msgid "Numeric" -msgstr "" +msgstr "Numerisk" #. x6ZLt #: sf_formcontrol.xhp @@ -17102,7 +17105,7 @@ "par_id48161694740085\n" "help.text" msgid "Must be within the predefined bounds" -msgstr "" +msgstr "Må vera innføre dei førehandsdefinerte grensene" #. UZLYC #: sf_formcontrol.xhp @@ -17111,7 +17114,7 @@ "par_id441598543254738\n" "help.text" msgid "The text appearing in the field" -msgstr "" +msgstr "Teksten som vert vist i feltet" #. WBHoJ #: sf_formcontrol.xhp @@ -17120,7 +17123,7 @@ "hd_id421612628828054\n" "help.text" msgid "Event properties" -msgstr "" +msgstr "Hendingseigenskapar" #. tqnsA #: sf_formcontrol.xhp @@ -17129,7 +17132,7 @@ "par_id41612629140856\n" "help.text" msgid "The properties below return or set URI strings that define the script triggered by the event." -msgstr "" +msgstr "Eigenskapane nedanfor returnerer eller set URI-strengar som definerer eit skript som vert opna av hendinga." #. 7Azyz #: sf_formcontrol.xhp @@ -17138,7 +17141,7 @@ "par_id961612628879819\n" "help.text" msgid "Name" -msgstr "" +msgstr "Namn" #. N4btE #: sf_formcontrol.xhp @@ -17165,7 +17168,7 @@ "par_id91612707166532\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. HVTKN #: sf_formcontrol.xhp @@ -17174,7 +17177,7 @@ "par_id291612707166258\n" "help.text" msgid "Execute action" -msgstr "" +msgstr "Utfør handling" #. T5CTw #: sf_formcontrol.xhp @@ -17183,7 +17186,7 @@ "par_id79161270716675\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. qs3LA #: sf_formcontrol.xhp @@ -17192,7 +17195,7 @@ "par_id831612707166731\n" "help.text" msgid "While adjusting" -msgstr "" +msgstr "Ved justering" #. vUbN6 #: sf_formcontrol.xhp @@ -17201,7 +17204,7 @@ "par_id301616948330694\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. PopWN #: sf_formcontrol.xhp @@ -17210,7 +17213,7 @@ "par_id901616948330305\n" "help.text" msgid "Approve action" -msgstr "" +msgstr "Godta handling" #. PmE7k #: sf_formcontrol.xhp @@ -17219,7 +17222,7 @@ "par_id821616948330888\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. rjQCJ #: sf_formcontrol.xhp @@ -17228,7 +17231,7 @@ "par_id111616948330257\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Før nullstilling" #. octLi #: sf_formcontrol.xhp @@ -17237,7 +17240,7 @@ "par_id271616948330553\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. D7yir #: sf_formcontrol.xhp @@ -17246,7 +17249,7 @@ "par_id451616948330759\n" "help.text" msgid "Before updating" -msgstr "" +msgstr "Før oppdatering" #. YM7Nt #: sf_formcontrol.xhp @@ -17255,7 +17258,7 @@ "par_id71616948330769\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. pHG54 #: sf_formcontrol.xhp @@ -17264,7 +17267,7 @@ "par_id211616948330895\n" "help.text" msgid "Changed" -msgstr "" +msgstr "Endra" #. UaRoN #: sf_formcontrol.xhp @@ -17273,7 +17276,7 @@ "par_id121616948330654\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. tfW7M #: sf_formcontrol.xhp @@ -17282,7 +17285,7 @@ "par_id2216169483303\n" "help.text" msgid "Error occurred" -msgstr "" +msgstr "Det oppstod ein feil" #. vDFhJ #: sf_formcontrol.xhp @@ -17291,7 +17294,7 @@ "par_id111612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. NN9FK #: sf_formcontrol.xhp @@ -17300,7 +17303,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Når han får fokus" #. tLp7Y #: sf_formcontrol.xhp @@ -17309,7 +17312,7 @@ "par_id291612629836294\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. DDcCF #: sf_formcontrol.xhp @@ -17318,7 +17321,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Når han mistar fokus" #. EBVQM #: sf_formcontrol.xhp @@ -17327,7 +17330,7 @@ "par_id51612707354544\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. PLPUr #: sf_formcontrol.xhp @@ -17336,7 +17339,7 @@ "par_id211612707354899\n" "help.text" msgid "Item status changed" -msgstr "" +msgstr "Elementstatus endra" #. zBci2 #: sf_formcontrol.xhp @@ -17345,7 +17348,7 @@ "par_id81612629836634\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. vPrAA #: sf_formcontrol.xhp @@ -17354,7 +17357,7 @@ "par_id881612629836744\n" "help.text" msgid "Key pressed" -msgstr "" +msgstr "Taste trykt" #. 8cFqR #: sf_formcontrol.xhp @@ -17363,7 +17366,7 @@ "par_id591612629836830\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 6rrBt #: sf_formcontrol.xhp @@ -17372,7 +17375,7 @@ "par_id161612629836775\n" "help.text" msgid "Key released" -msgstr "" +msgstr "Taste sleppt" #. 7Pzmy #: sf_formcontrol.xhp @@ -17381,7 +17384,7 @@ "par_id891612629836630\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 2pMWG #: sf_formcontrol.xhp @@ -17390,7 +17393,7 @@ "par_id461612629836679\n" "help.text" msgid "Mouse moved while key presses" -msgstr "" +msgstr "Musa flytt medan ein tast er trykt" #. SGYBr #: sf_formcontrol.xhp @@ -17399,7 +17402,7 @@ "par_id131612629836291\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. AJGQd #: sf_formcontrol.xhp @@ -17408,7 +17411,7 @@ "par_id151612629836151\n" "help.text" msgid "Mouse inside" -msgstr "" +msgstr "Mus innanfor" #. 6cFkB #: sf_formcontrol.xhp @@ -17417,7 +17420,7 @@ "par_id211612629836725\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. tfmtf #: sf_formcontrol.xhp @@ -17426,7 +17429,7 @@ "par_id361612629836624\n" "help.text" msgid "Mouse outside" -msgstr "" +msgstr "Mus utanfor" #. 6E7WA #: sf_formcontrol.xhp @@ -17435,7 +17438,7 @@ "par_id311612629836481\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. CeNku #: sf_formcontrol.xhp @@ -17444,7 +17447,7 @@ "par_id721612629836752\n" "help.text" msgid "Mouse moved" -msgstr "" +msgstr "Mus flytt" #. iSxsS #: sf_formcontrol.xhp @@ -17453,7 +17456,7 @@ "par_id981612629836116\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. 9yirD #: sf_formcontrol.xhp @@ -17462,7 +17465,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Museknapp trykt ned" #. b6pFV #: sf_formcontrol.xhp @@ -17471,7 +17474,7 @@ "par_id711612629836704\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. D5vXU #: sf_formcontrol.xhp @@ -17480,7 +17483,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Museknapp sleppt opp" #. 9Ui2H #: sf_formcontrol.xhp @@ -17489,7 +17492,7 @@ "par_id31616948666215\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. mdLSp #: sf_formcontrol.xhp @@ -17498,7 +17501,7 @@ "par_id951616948666674\n" "help.text" msgid "After resetting" -msgstr "" +msgstr "Etter tilbakestilling" #. jb4at #: sf_formcontrol.xhp @@ -17507,7 +17510,7 @@ "par_id811612707606330\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. m3Rb7 #: sf_formcontrol.xhp @@ -17516,7 +17519,7 @@ "par_id621612707606219\n" "help.text" msgid "Text modified" -msgstr "" +msgstr "Tekst endra" #. bfgkG #: sf_formcontrol.xhp @@ -17525,7 +17528,7 @@ "par_id41616948721642\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. imn6B #: sf_formcontrol.xhp @@ -17534,7 +17537,7 @@ "par_id311616948721872\n" "help.text" msgid "After updating" -msgstr "" +msgstr "Etter oppdatering" #. tcpN5 #: sf_formcontrol.xhp @@ -17543,7 +17546,7 @@ "par_id961618181634181\n" "help.text" msgid "To learn more about URI strings, refer to the Scripting Framework URI Specification." -msgstr "" +msgstr "Du kan finna meir om URI-strengar i Scripting Framework URI Specification." #. RpNkd #: sf_formcontrol.xhp @@ -17552,7 +17555,7 @@ "par_id891611613601554\n" "help.text" msgid "List of Methods in the FormControl Service" -msgstr "" +msgstr "Liste over metodar i tenesta FormControl" #. CKZDf #: sf_formcontrol.xhp @@ -17561,7 +17564,7 @@ "par_id161584541257982\n" "help.text" msgid "This method is applicable only to controls of the TableControl type. The returned value depends on the arguments provided." -msgstr "" +msgstr "Denne metoden gjeld berre for kontrollelement av typen TableControl (tabelkontrol). Den returnerte verdien avhenger av dei gjevne parameterane." #. DB3PG #: sf_formcontrol.xhp @@ -17570,7 +17573,7 @@ "par_id701618777636827\n" "help.text" msgid "If the optional argument controlname is absent, then a zero-based Array containing the names of all controls is returned." -msgstr "" +msgstr "Viss det valfrie argumentet controlname manglar, vert det returnert ei nullbasert matrise med namna på alle kontrollelementa." #. GgAeu #: sf_formcontrol.xhp @@ -17579,7 +17582,7 @@ "par_id851618777715892\n" "help.text" msgid "On the other hand, if a controlname is provided, the method returns a FormControl class instance corresponding to the specified control." -msgstr "" +msgstr "På den andre sida, viss controlname er gjeve, returnerer metoden ein klasse-førekomst av FormControl som svarar til det gjevne kontrollelementet." #. eoLJG #: sf_formcontrol.xhp @@ -17588,7 +17591,7 @@ "par_id1001584541257789\n" "help.text" msgid "controlname: A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array." -msgstr "" +msgstr "controlname: Eit gyldig kontrollelementnamn som ein streng (som skil mellom små og store bokstavar). Viss denne manglar vert lista over kontrollelementnamn returnert som ei nullbasert matrise." #. F4Sdy #: sf_formcontrol.xhp @@ -17597,7 +17600,7 @@ "bas_id471618778075117\n" "help.text" msgid "' Returns an Array with the names of all controls in \"myTableControl\"" -msgstr "" +msgstr "' Returnerer ei matrise med namna på alle kontrollelementa i «myTableControl»" #. YoHSo #: sf_formcontrol.xhp @@ -17606,7 +17609,7 @@ "par_id931618778110273\n" "help.text" msgid "' Returns a FormControl class instance corresponding to \"myCheckBox\"" -msgstr "" +msgstr "' Returnerer klasseførekomsten FormControl som svarar til «myCheckBox»" #. AGA7Z #: sf_formcontrol.xhp @@ -17669,7 +17672,7 @@ "pyc_id991622562833004\n" "help.text" msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods" -msgstr "" +msgstr "bas = CreateScriptService('ScriptForge.Basic') # Basic-liknande metodar" #. 8jneo #: sf_formcontrol.xhp @@ -17705,7 +17708,7 @@ "pyc_id991622562822004\n" "help.text" msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods" -msgstr "" +msgstr "bas = CreateScriptService('ScriptForge.Basic') # Basic-liknande metodar" #. TNTT9 #: sf_formcontrol.xhp @@ -17714,7 +17717,7 @@ "pyc_id441622562080419\n" "help.text" msgid "bas.MsgBox('Selected option: ' + control.Caption)" -msgstr "" +msgstr "bas.MsgBox('Vald innstilling: ' + control.Caption)" #. czP76 #: sf_intro.xhp @@ -17824,7 +17827,7 @@ "par_id31623411828158\n" "help.text" msgid "Visit %PRODUCTNAME Python Scripts Help for more information on Python scripting using %PRODUCTNAME." -msgstr "" +msgstr "Sjå Hjelp til %PRODUCTNAME Python-skript for å sjå fleire opplysningar om bruk av Python-skript i %PRODUCTNAME." #. CZiTF #: sf_intro.xhp @@ -18348,7 +18351,7 @@ "par_id91585843652832\n" "help.text" msgid "This service implements the methods listed below:" -msgstr "" +msgstr "Denne tenesta implementerer desse metodane:" #. fBXDW #: sf_l10n.xhp @@ -18366,7 +18369,7 @@ "par_id81637866601151\n" "help.text" msgid "AddTextsFromDialog: Extracts all strings from a Dialog service instance." -msgstr "" +msgstr "AddTextsFromDialog: Trekkjer ut alle strengane frå ein førekomst av tenesta Dialog." #. cm7fq #: sf_l10n.xhp @@ -18420,7 +18423,7 @@ "par_id331585843652877\n" "help.text" msgid "foldername: The folder containing the PO files. It must be expressed in the FileSystem.FileNaming notation." -msgstr "" +msgstr "foldername: Mappa som inneheld PO-filene. Namnet må oppfylla krava i FileSystem.FileNaming." #. oQD4m #: sf_l10n.xhp @@ -18429,7 +18432,7 @@ "par_id581585843652789\n" "help.text" msgid "locale: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only." -msgstr "" +msgstr "locale: Ein streng på forma «la-CO» (language-COUNTRY = språk-LAND) eller på form «la» (language = språk)." #. Z5Pb3 #: sf_l10n.xhp @@ -18465,7 +18468,7 @@ "par_id391625855630975\n" "help.text" msgid "The example above will result in an runtime error if the PO file for the current locale does not exist in the specified folder." -msgstr "" +msgstr "Eksempelet ovanfor vil resultera i ein køyretidsfeil vis den gjeldande lokale PO-fila ikkje finst i den gjevne mappa." #. Ab7iH #: sf_l10n.xhp @@ -18501,7 +18504,7 @@ "par_id281625854773330\n" "help.text" msgid "The examples above can be translated to Python as follows:" -msgstr "" +msgstr "Eksempla ovanfor kan omsetjast til Python slik:" #. 6mcLb #: sf_l10n.xhp @@ -18622,12 +18625,13 @@ #. 5Fs5v #: sf_l10n.xhp +#, fuzzy msgctxt "" "sf_l10n.xhp\n" "par_id641625855725050\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "Metoden returnerer Sann viss han lukkast." #. gyUYQ #: sf_l10n.xhp @@ -18636,7 +18640,7 @@ "par_id391585843652753\n" "help.text" msgid "context: The key to retrieve the translated string with the GetText method. This parameter has a default value of \"\"." -msgstr "" +msgstr "context: Nøkkelen for å henta den omsette strengen med metoden GetText . Denne parameteren har standardverdien \"\"." #. YVUWx #: sf_l10n.xhp @@ -18645,7 +18649,7 @@ "par_id581585844419114\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. The msgid becomes the key to retrieve the translated string via GetText method when context is empty." -msgstr "" +msgstr "msgid: Den ikkje omsette strengen, som er teksten som finst i programkoden. Denne må ikkje vera tom. msgid vert nøkkelen for å henta den omsette strengen ved hjelp av metoden GetText når context er tom." #. 7FDE9 #: sf_l10n.xhp @@ -18654,7 +18658,7 @@ "par_id311614361926844\n" "help.text" msgid "The msgid string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime." -msgstr "" +msgstr "Strengen msgid kan innehalda kor mange plasshaldarar som helst (%1 %2 %3 …) for dynamisk endring av strengen under køyring." #. ioGmP #: sf_l10n.xhp @@ -18663,7 +18667,7 @@ "par_id541585844475331\n" "help.text" msgid "comment: Optional comment to be added alongside the string to help translators." -msgstr "" +msgstr "comment: Valfri merknad som vert lagt til ved sida av strengen for å hjelpa omsetjarane." #. TAyPG #: sf_l10n.xhp @@ -18681,7 +18685,7 @@ "par_id1001585843659821\n" "help.text" msgid "Automatically extracts strings from a dialog and adds them to the list of localizable text strings. The following strings are extracted:" -msgstr "" +msgstr "Trekkjer automatisk ut strengar frå eit dialogvindauge og legg dei til i lista over tekststrengar som kan lokaliserast. Desse strengane vert trekte ut:" #. bS7ZL #: sf_l10n.xhp @@ -18690,7 +18694,7 @@ "par_id621637863440015\n" "help.text" msgid "The title of the dialog." -msgstr "" +msgstr "Tittelen på dialogvindauget." #. EBFAC #: sf_l10n.xhp @@ -18699,7 +18703,7 @@ "par_id61637863440399\n" "help.text" msgid "The caption of the following control types: Button, CheckBox, FixedLine, FixedText, GroupBox and RadioButton." -msgstr "" +msgstr "Tittelen på desse kontrollelementtypane: knapp avkryssingsfelt, fast linje, fast tekst, gruppefelt og radioknapp." #. uCL85 #: sf_l10n.xhp @@ -18708,7 +18712,7 @@ "par_id251637863440626\n" "help.text" msgid "Static strings in ListBoxes and ComboBoxes." -msgstr "" +msgstr "Statiske strengar i listefelt og kombinasjonsfelt." #. HWkAU #: sf_l10n.xhp @@ -18717,7 +18721,7 @@ "par_id811637863596791\n" "help.text" msgid "The tooltip or help text displayed when the mouse hovers over the control." -msgstr "" +msgstr "Det verktøytipset eller hjelpteksten som kjem fram når musepeikaren vert halde over kontrollelementet." #. gKbEN #: sf_l10n.xhp @@ -18726,7 +18730,7 @@ "par_id641625855723650\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "Metoden returnerer Sann viss han lukkast." #. Kcowa #: sf_l10n.xhp @@ -18735,7 +18739,7 @@ "par_id731637863894577\n" "help.text" msgid "The dialog from which strings will be extracted must not be open when the method is called." -msgstr "" +msgstr "Dialogvindauget som strengane skal trekkjast ut frå, må ikkje vera open når metoden vert kalla opp." #. 75EGY #: sf_l10n.xhp @@ -18744,7 +18748,7 @@ "par_id911637864050221\n" "help.text" msgid "When a L10N service instance is created from an existing PO file, use the GetTextsFromL10N method from the Dialog service to automatically load all translated strings into the dialog." -msgstr "" +msgstr "Når ein førekomst av tenesta L10N vert laga frå ri PO-fil som finst frå før, brukar du metoden GetTextsFromL10N frå tenesta Dialog for automatisk å lesa inn alle omsette strengar i dialogvindauget." #. ejhbN #: sf_l10n.xhp @@ -18753,7 +18757,7 @@ "par_id391585843652113\n" "help.text" msgid "dialog: a Dialog service instance corresponding to the dialog from which strings will be extracted." -msgstr "" +msgstr "dialog: ein førekomst av tenesta Dialog som svarar til det dialogvindauget som strengane skal trekkjast ut frå." #. QzWzG #: sf_l10n.xhp @@ -18762,7 +18766,7 @@ "par_id461614364298983\n" "help.text" msgid "The following example extracts all strings from the dialog \"MyDialog\" stored in the \"Standard\" library and exports them to a POT file:" -msgstr "" +msgstr "Dei neste eksempla trekkjer alle strengane ut frå dialogvindauget \"MyDialog\" som er lagra i biblioteket \"Standard\" og eksporterer dei til ei POT-fil:" #. DqFBf #: sf_l10n.xhp @@ -18780,7 +18784,7 @@ "par_id711586102939257\n" "help.text" msgid "To build a set of strings you can use either a succession of AddText method calls, or by a successful invocation of the L10N service with the foldername argument present. It is also possible to use a combination of both techniques." -msgstr "" +msgstr "For å byggja eit sett med strengar, kan du bruka anten ei rekkje oppkall av metoden AddText, eller ved ei vellukka aktivering av L10N-tenesta med foldername-argumentet. Det er også mogleg å bruka ein kombinasjon av begge teknikkane." #. Pb4VF #: sf_l10n.xhp @@ -18789,7 +18793,7 @@ "par_id641625855725141\n" "help.text" msgid "The method returns True if successful." -msgstr "" +msgstr "Metoden returnerer Sann viss han lukkast." #. BsmCX #: sf_l10n.xhp @@ -18798,7 +18802,7 @@ "par_id31586102707537\n" "help.text" msgid "filename: The output file in FileSystem.FileNaming notation." -msgstr "" +msgstr "filename: Utdata-fila i notasjonen FileSystem.FileNaming." #. jQV77 #: sf_l10n.xhp @@ -18807,7 +18811,7 @@ "par_id851586102707579\n" "help.text" msgid "header: Comments that will be added on top of the generated POT file." -msgstr "" +msgstr "header: merknadar som vert lagde til øvst i den genererte POT-fila." #. YhYbQ #: sf_l10n.xhp @@ -18816,7 +18820,7 @@ "par_id111614364686973\n" "help.text" msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the header argument." -msgstr "" +msgstr "Ikkje ta med innleiande #-teikn. Viss du vil dela overskrifta på fleire linjer, set du inn escape-sekvensen (\\n) der det passar. Det vert lagt til ei standardoverskrift ved sida av teksten som er gjeve i argumentet header." #. E2Loj #: sf_l10n.xhp @@ -18825,7 +18829,7 @@ "par_id5158610270728\n" "help.text" msgid "encoding: The character set to be used (Default = \"UTF-8\")." -msgstr "" +msgstr "encoding: Teiknsettet som skal brukast (standard = \"UTF-8\")." #. uDu7z #: sf_l10n.xhp @@ -18843,7 +18847,7 @@ "par_id891586165768715\n" "help.text" msgid "Gets the translated string corresponding to the given msgid argument." -msgstr "" +msgstr "Hentar den omsette strengen som svarar til det gjevne argumentet msgid." #. NzGZC #: sf_l10n.xhp @@ -18879,7 +18883,7 @@ "par_id421614967136502\n" "help.text" msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut _ used for GetText is the only exception to this rule, hence it can be safely used in Basic and Python scripts." -msgstr "" +msgstr "I ScriptForge-biblioteket er alle metodar som byrjar med teiknet «_», reservert berre for intern bruk. Snarvegen _ som vert brukt i GetText er det einaste unnataket frå denne regelen, og kan såleis trygt brukast i Basic-skript." #. 2ZVAQ #: sf_l10n.xhp @@ -18888,7 +18892,7 @@ "par_id51586165768525\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime." -msgstr "" +msgstr "msgid: Den ikkje-omsette strengen, som er teksten som vert vist i programkoden. Denne må ikkje vera tom. Han kan innehalda kor mange plasshaldarar (%1 %2 %3 ...) som helst som kan brukast til å setja inn tekst dynamisk under køyringa." #. dALxK #: sf_l10n.xhp @@ -18897,7 +18901,7 @@ "par_id11614365537450\n" "help.text" msgid "Besides using a single msgid string, this method also accepts the following formats:" -msgstr "" +msgstr "I tillegg til å bruka ein enkeltmsgid-streng, godtar denne metoden også desse formata:" #. Q7Bbm #: sf_l10n.xhp @@ -18906,7 +18910,7 @@ "par_id961614365557277\n" "help.text" msgid "The context string with which the method will retrieve the msgid in the PO file, or;" -msgstr "" +msgstr "Strengen context som metoden brukar til å henta msgid i PO-fila, eller;" #. rTDrq #: sf_l10n.xhp @@ -18915,7 +18919,7 @@ "par_id981614365589866\n" "help.text" msgid "A combination context|msgid, instructing the method to retrieve the msgid using specified context value. The second part of the argument is used to improve code readability." -msgstr "" +msgstr "Ein kombinasjon contekst| msgid som seier at metoden skal henta msgid ved hjelp av gjeven contekst-verdi. Den andre delen av argumentet vert brukt til å gjera koden lettare å lesa." #. dW6RE #: sf_l10n.xhp @@ -18924,7 +18928,7 @@ "par_id571586165768106\n" "help.text" msgid "args: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered." -msgstr "" +msgstr "args: Verdiar som skal setjast inn i plasshaldarane. Alle variabeltypar er tillatne, men berre strengar, tal og datoar vil vert tekne omsyn til." #. cCZDK #: sf_l10n.xhp @@ -18942,7 +18946,7 @@ "tit\n" "help.text" msgid "ScriptForge Method Signatures" -msgstr "" +msgstr "ScriptForge metodesignaturar" #. ycA6s #: sf_methods.xhp @@ -18951,7 +18955,7 @@ "hd_id31529004750471\n" "help.text" msgid "ScriptForge Method Signatures" -msgstr "" +msgstr "ScriptForge metodesignaturar" #. gEAos #: sf_methods.xhp @@ -18960,7 +18964,7 @@ "bm_id491529070339774\n" "help.text" msgid "ScriptForge; Method signatures" -msgstr "" +msgstr "ScriptForge; metodesignaturar" #. Xq2N5 #: sf_methods.xhp @@ -24488,7 +24492,7 @@ "par_id991587914045862\n" "help.text" msgid "the last component of the full file name or even only the last component without its suffix" -msgstr "den siste komponenten i det fulle filnamnet, eller endatil den siste komponenten utan filutvidinga" +msgstr "den siste komponenten i det fulle filnamnet, eller endatil den siste komponenten utan filetternamnet" #. 8qLrG #: sf_ui.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -86,7 +86,7 @@ "par_id3145366\n" "help.text" msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the RGB function." -msgstr "I $[officename] Basic vert fargar handterte som heiltal av typen Long. Returverdien etter fargespurnader er også alltid eit heiltal av typen Long. Når du definerer eigenskapar, kan du bruka RGB-koden som vert konvertert til eit heiltal ved hjelp av RGB-funksjonen." +msgstr "I $[officename] Basic vert fargar handsama som heiltal av typen Long. Returverdien etter fargespørjingar er også alltid eit heiltal av typen Long. Når du definerer eigenskapar, kan du bruka RGB-koden som vert konvertert til eit heiltal ved hjelp av RGB-funksjonen." #. mWfzF #: 00000002.xhp @@ -104,7 +104,7 @@ "par_id3154013\n" "help.text" msgid "In $[officename] Basic, a method parameter or a property expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under %PRODUCTNAME - PreferencesTools - Options - (Document Type) - General." -msgstr "I $[officename] Basic kan ein metodeparameter eller eineigenskap som brukar måleeiningar verta spesifisert anten som eit heiltal eller eit langt heiltal utan måleeining, eller som ein streng som inneheld ei måleeining. Dersom det ikkje er overført ei eining til metoden, vert standardeininga for det aktive dokumentet brukt. Viss parameteren inneheld ein streng med måleeininga, vert denne måleeininga brukt i staden for standardeininga. Standardeininga for ein dokumenttype kan setjast i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → (Dokumenttype) → Generelt." +msgstr "I $[officename] Basic kan ein metodeparameter eller ein eigenskap som brukar måleeiningar verta spesifisert anten som eit heiltal eller eit langt heiltal utan måleeining, eller som ein streng som inneheld ei måleeining. Dersom det ikkje er overført ei eining til metoden, vert standardeininga for det aktive dokumentet brukt. Viss parameteren inneheld ein streng med måleeininga, vert denne måleeininga brukt i staden for standardeininga. Standardeininga for ein dokumenttype kan setjast i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → (Dokumenttype) → Generelt." #. zfF2y #: 00000002.xhp @@ -176,7 +176,7 @@ "par_id3150324\n" "help.text" msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (/) is used as a path separator. For example, a file referred to as C:\\Users\\alice\\Documents\\My File.odt on the local host in \"Windows notation\" becomes file:///C:/Users/alice/Documents/My%20File.odt in URL notation." -msgstr "I URL-notasjonen er ein del spesialteikn ulovlege å bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skråstrek (/) som skiljeteikn mellom stiane. Ei fil som for eksempel vert skrive som C:users\\alise\\dokument\\fila mi.odt på ein Windowsmaskin, vert til file:///C:users/alise/dokument/fila%20mi.odt i URL-notasjon. " +msgstr "I URL-notasjonen er ein del spesialteikn ulovlege å bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skråstrek (/) som skiljeteikn mellom stiane. Ei fil som for eksempel vert skrive som C:users\\alise\\dokument\\fila mi.odt på ein Windowsmaskin, vert til file:///C:users/alise/dokument/fila%20mi.odt i URL-notasjon." #. E5zgb #: 00000003.xhp @@ -2840,7 +2840,7 @@ "par_id3156357\n" "help.text" msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:" -msgstr "Konstantane har ein fast verdi. Dei kan definerast berre ein gong i programmet og verdien kan ikkje endrast seinare. " +msgstr "Konstantane har ein fast verdi. Dei kan definerast berre ein gong i programmet og verdien kan ikkje endrast seinare." #. rKYeH #: 01020200.xhp @@ -3839,7 +3839,7 @@ "par_id3147303\n" "help.text" msgid "Double-click in the breakpoint column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted." -msgstr "Dobbeltklikk på kolonnen brotpunkt til venstre i redigeringsvindauget for å slå brotpunktet for den gjeldande linja av eller på. Programmet vert avbrote når det kjem til eit brotpunkt. " +msgstr "Dobbeltklikk på kolonnen brotpunkt til venstre i redigeringsvindauget for å slå brotpunktet for den gjeldande linja av eller på. Programmet vert avbrote når det kjem til eit brotpunkt." #. Jhx92 #: 01030300.xhp @@ -3848,7 +3848,7 @@ "par_id3155805\n" "help.text" msgid "The single step execution using the Single Step icon causes the program to branch into procedures and functions." -msgstr "Du kan følgja programmet steg for steg gjennom prosedyrar og funksjonar ved å klikka på knappen Stegvis. " +msgstr "Du kan følgja programmet steg for steg gjennom prosedyrar og funksjonar ved å klikka på knappen Stegvis." #. GmkFd #: 01030300.xhp @@ -3857,7 +3857,7 @@ "par_id3151110\n" "help.text" msgid "The procedure step execution using the Procedure Step icon causes the program to skip over procedures and functions as a single step." -msgstr "Køyrer du programmet via knappen Prosedyresteg vil kvar prosedyre og funksjon verta handtert som eitt enkelt steg." +msgstr "Køyrer du programmet via knappen Prosedyresteg, vert kvar prosedyre og funksjon handsama som eitt enkelt steg." #. fcUGR #: 01030300.xhp @@ -5360,7 +5360,7 @@ "par_id3155909\n" "help.text" msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the Save In listbox." -msgstr "Vel om du vil fjerna ei global tildeling eller ei tildeling som gjeld berre for det gjeldande dokumentet ved å merkja alternativet i listeboksen Lagra i. " +msgstr "Vel om du vil fjerna ei global tildeling eller ei tildeling som gjeld berre for det gjeldande dokumentet ved å merkja alternativet i listeboksen Lagra i." #. 7ZkYK #: 01040000.xhp @@ -5558,7 +5558,7 @@ "par_id3153965\n" "help.text" msgid "Opens the Macro Organizer dialog." -msgstr "Opens the Organiser makroar dialog." +msgstr "Opnar dialogvindauget Organiser makroar." #. EHXTp #: 01050100.xhp @@ -5648,7 +5648,7 @@ "hd_id3154491\n" "help.text" msgid "Editing the Value of a Watched Variable" -msgstr "Redigera verdien av ein overvaka variabel " +msgstr "Redigera verdien av ein overvaka variabel" #. FQF6P #: 01050100.xhp @@ -5693,7 +5693,7 @@ "tit\n" "help.text" msgid "Manage Breakpoints" -msgstr "Handter avbrotspunkta" +msgstr "Handsaming av avbrotspunkt" #. SuyRz #: 01050300.xhp @@ -5702,7 +5702,7 @@ "hd_id3154927\n" "help.text" msgid "Manage Breakpoints" -msgstr "Handtera brotpunkt" +msgstr "Handsama brotpunkt" #. JksJ4 #: 01050300.xhp @@ -6458,7 +6458,7 @@ "par_id4591814\n" "help.text" msgid "The default value is FALSE." -msgstr "Normalverdien er USANN. " +msgstr "Normalverdien er USANN." #. VDs3B #: 01170101.xhp @@ -7097,7 +7097,7 @@ "par_id594195\n" "help.text" msgid "The default value is TRUE." -msgstr "Normalverdien er SANN. " +msgstr "Normalverdien er SANN." #. UFPCV #: 01170101.xhp @@ -7133,7 +7133,7 @@ "par_id4601580\n" "help.text" msgid "The default value is 0." -msgstr "Normalverdien er 0. " +msgstr "Normalverdien er 0." #. ydxCG #: 01170101.xhp @@ -7259,7 +7259,7 @@ "par_id7687307\n" "help.text" msgid "The default value is TRUE." -msgstr "Normalverdien er SANN. " +msgstr "Normalverdien er SANN." #. kEF3n #: 01170101.xhp @@ -7286,7 +7286,7 @@ "par_id2396313\n" "help.text" msgid "The default value is TRUE." -msgstr "Normalverdien er SANN. " +msgstr "Normalverdien er SANN." #. XLMGF #: 01170101.xhp @@ -8231,7 +8231,7 @@ "par_id3153765\n" "help.text" msgid "Second button in the dialog as default button." -msgstr "Andre knappen i dialogvindauget som standardknapp. " +msgstr "Andre knappen i dialogvindauget som standardknapp." #. DCz69 #: 03010101.xhp @@ -9572,7 +9572,7 @@ "par_id3153360\n" "help.text" msgid "Use File I/O functions to create and manage user-defined (data) files." -msgstr "I/O-funksjonane vert brukte for å laga og handtera sjølvvalde (data)filer." +msgstr "I/O-funksjonane vert brukte for å laga og handsama sjølvvalde (data)filer." #. FtKxL #: 03020000.xhp @@ -11039,7 +11039,7 @@ "par_id3147264\n" "help.text" msgid "The functions and statements for managing files are described here." -msgstr "Funksjonane og uttrykka som er brukte for å handtera filer er omtalte her." +msgstr "Funksjonane og uttrykka som er brukte for å handsama filer er omtalte her." #. vYVej #: 03020401.xhp @@ -11174,7 +11174,7 @@ "par_id3145785\n" "help.text" msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement." -msgstr "Lagringsmediumet må vera tildelt ein stor bokstav. I Windows er bokstavane som kan brukast avgrensa av innstillingane i LASTDRV. Viss lagringsmediumet er tildelt ein streng med fleire bokstavar, vert berre den første bokstaven brukt. Viss du prøver å få tilgang til eit lagringsmedium som ikkje finst, får du ei feilmelding som du kan handtera med OnError-uttrykket." +msgstr "Lagringsmediumet må vera tildelt ein stor bokstav. I Windows er bokstavane som kan brukast avgrensa av innstillingane i LASTDRV. Viss lagringsmediumet er tildelt ein streng med fleire bokstavar, vert berre den første bokstaven brukt. Viss du prøver å få tilgang til eit lagringsmedium som ikkje finst, får du ei feilmelding som du kan handsama med OnError-uttrykket." #. X2QkD #: 03020402.xhp @@ -12083,7 +12083,7 @@ "par_id3155415\n" "help.text" msgid "On Error GoTo ErrorHandler ' Define target for error handler" -msgstr "On Error GoTo ErrorHandler ' Definerer målet for feilhandteraren" +msgstr "On Error GoTo ErrorHandler ' Definerer målet for feilhandsamaren" #. HtCzT #: 03020410.xhp @@ -12659,7 +12659,7 @@ "par_id3148645\n" "help.text" msgid "On Error GoTo ErrorHandler ' Define target for error handler" -msgstr "On Error GoTo ErrorHandler ' Definerer målet for feilhandteraren" +msgstr "On Error GoTo ErrorHandler ' Definerer målet for feilhandsamaren" #. MCJgJ #: 03020415.xhp @@ -17006,7 +17006,7 @@ "par_id3147426\n" "help.text" msgid "On Error Goto ErrorHandler REM Set up error handler" -msgstr "On Error Goto ErrorHandler REM Set opp feilhandteraren" +msgstr "On Error Goto ErrorHandler REM Set opp feilhandsamaren" #. oqyWf #: 03050200.xhp @@ -17222,7 +17222,7 @@ "par_id3149482\n" "help.text" msgid "GoTo 0: Disables the error handler in the current procedure." -msgstr "GoTo 0: Koplar ut feilhandteraren i den gjeldande prosedyren." +msgstr "GoTo 0: Koplar ut feilhandsamaren i den gjeldande prosedyren." #. YAREs #: 03050500.xhp @@ -19931,7 +19931,7 @@ "par_id3149670\n" "help.text" msgid "Number: Any integer value. Used as seed to initialize the random-number generator. Equal seeds result in equal random-number sequences by the Rnd function. If the parameter is omitted, the Randomize statement will be ignored." -msgstr "Tal: Kva heiltal som helst. Vert brukt som utgangspunkt for oppsettet av slumpgeneratoren. Like frø gjev same sekvensen av tilfeldige tal i funksjonen Rnd. Viss parameteren vert sløyfa, vert uttrykket Randomize ignorert. " +msgstr "Tal: Kva heiltal som helst. Vert brukt som utgangspunkt for oppsettet av slumpgeneratoren. Like frø gjev same sekvensen av tilfeldige tal i funksjonen Rnd. Viss parameteren vert sløyfa, vert uttrykket Randomize ignorert." #. sowvF #: 03080301.xhp @@ -21785,7 +21785,7 @@ "tit\n" "help.text" msgid "Loops" -msgstr "Loops" +msgstr "Løkker" #. vamnD #: 03090200.xhp @@ -21794,7 +21794,7 @@ "hd_id3153990\n" "help.text" msgid "Loops" -msgstr "Loops" +msgstr "Løkker" #. gDVek #: 03090200.xhp @@ -26141,7 +26141,7 @@ "par_id3153126\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Set standard variabeltype ifølgje eit bokstavområde viss det ikkje er " +msgstr "Set standard variabeltype i høve til eit bokstavområde viss det ikkje er spesifisert eit deklarasjonsteikn eller eit nøkkelord." #. oWGT8 #: 03101400.xhp @@ -26195,7 +26195,7 @@ "par_id3149762\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Set standard variabeltype ifølgje eit bokstavområde viss det ikkje er " +msgstr "Set standard variabeltype i høve til eit bokstavområde viss det ikkje er spesifisert eit deklarasjonsteikn eller eit nøkkelord." #. zxFQy #: 03101500.xhp @@ -26249,7 +26249,7 @@ "par_id3149514\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Set standard variabeltype ifølgje eit bokstavområde viss det ikkje er " +msgstr "Set standard variabeltype i høve til eit bokstavområde viss det ikkje er spesifisert eit deklarasjonsteikn eller eit nøkkelord." #. Dn2Xk #: 03101600.xhp @@ -26303,7 +26303,7 @@ "par_id3147573\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Set standard variabeltype ifølgje eit bokstavområde viss det ikkje er " +msgstr "Set standard variabeltype i høve til eit bokstavområde viss det ikkje er spesifisert eit deklarasjonsteikn eller eit nøkkelord." #. Ds9qa #: 03101700.xhp @@ -26348,7 +26348,7 @@ "par_id3153825\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Set standard variabeltype ifølgje eit bokstavområde viss det ikkje er " +msgstr "Set standard variabeltype i høve til eit bokstavområde viss det ikkje er spesifisert eit deklarasjonsteikn eller eit nøkkelord." #. TJouG #: 03102000.xhp @@ -29219,7 +29219,7 @@ "par_id3154232\n" "help.text" msgid "Returns True, if all stated Uno interfaces are supported, otherwise False is returned." -msgstr "Returnerer SANN dersom det er støtte for alle dei nemnde Uno-grensesnitta, elles USANN. " +msgstr "Returnerer SANN dersom det er støtte for alle dei nemnde Uno-grensesnitta, elles USANN." #. ryDXE #: 03104400.xhp @@ -29831,7 +29831,7 @@ "par_id3145609\n" "help.text" msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters." -msgstr "Bruk Stigande-funksjonen for å byta ut nøklar med verdiar. Viss Stigande-funksjonen vert brukt på ein tom streng, vil $[officename] Basic gje tilbake ein køyretidsfeil. I tillegg til 7-bit ASCII-teikn (kode 0 - 127), kan ASCII-funksjonen også oppdaga teikn som ikkje kan skrivast ut i ASCII-koden. Funksjonen kan også handtera 16-bit unicode." +msgstr "Bruk Stigande-funksjonen for å byta ut nøklar med verdiar. Viss Stigande-funksjonen vert brukt på ein tom streng, vil $[officename] Basic gje tilbake ein køyretidsfeil. I tillegg til 7-bit ASCII-teikn (kode 0 - 127), kan ASCII-funksjonen også oppdaga teikn som ikkje kan skrivast ut i ASCII-koden. Funksjonen kan også handsama 16-bit unicode." #. VF7kK #: 03120101.xhp @@ -30236,7 +30236,7 @@ "par_id3147573\n" "help.text" msgid "Cbyte( expression )" -msgstr "Cbyte( expression )" +msgstr "Cbyte( uttrykk )" #. c9ZeV #: 03120105.xhp @@ -33953,7 +33953,7 @@ "par_idN1062B\n" "help.text" msgid "fName = FileOpenDialog (\"Please select a file\")" -msgstr "fName = FileOpenDialog (\"Please select a file\")" +msgstr "fName = FileOpenDialog (\"Vel ei fil\")" #. 3e67q #: 03131600.xhp @@ -34709,7 +34709,7 @@ "par_id3153194\n" "help.text" msgid "index = allindexes.getByName(\"Table of Contents1\")" -msgstr "index = allindexes.getByName(\"Table of Contents1\")" +msgstr "index = allindexes.getByName(\"Innhaldsliste\")" #. wXzGW #: 03132200.xhp @@ -34844,7 +34844,7 @@ "par_id3154760\n" "help.text" msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence." -msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MinBasicVerdi ) ' for å få ein bytesekvens " +msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MinBasicVerdi ) ' for å få ein bytesekvens" #. rSTG8 #: 03132300.xhp @@ -36338,7 +36338,7 @@ "par_id240720170117398814\n" "help.text" msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years." -msgstr "REM ved byrjinga av år 1 og har ein verdi på 1.000 kr. etter 5 år. " +msgstr "REM ved byrjinga av år 1 og har ein verdi på 1.000 kr. etter 5 år." #. 4BUi9 #: 03140011.xhp @@ -36446,7 +36446,7 @@ "par_id240720170144223210\n" "help.text" msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years." -msgstr "REM ved byrjinga av år 1 og har ein verdi på 1.000 kr. etter 5 år. " +msgstr "REM ved byrjinga av år 1 og har ein verdi på 1.000 kr. etter 5 år." #. 898Jk #: 03140012.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2022-07-15 19:12:51.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-10-25 12:48+0200\n" -"PO-Revision-Date: 2022-04-26 12:56+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2022-06-06 18:38+0000\n" +"Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547757460.000000\n" #. NXy6S @@ -3659,7 +3659,7 @@ "par_idN108A5\n" "help.text" msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the Filter box" -msgstr "Dersom CSV-fila har ei anna filutviding, merkjer du fila og vel deretter «Tekst CSV» i feltet Filter." +msgstr "Dersom CSV-fila har eit anna filetternamn, merkjer du fila og vel deretter «Tekst CSV» i feltet Filter." #. FEBAD #: csv_files.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/scalc.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/scalc.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/scalc.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/scalc.po 2022-07-15 19:12:51.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-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-05-18 09:26+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1494395712.000000\n" #. ZxQeC @@ -680,7 +680,7 @@ "par_id0906201507414091\n" "help.text" msgid "This menu contains commands to modify and manage a sheet and its elements." -msgstr "Denne menyen inneheld funksjonar for å handtera ark og arkelement." +msgstr "Denne menyen inneheld funksjonar for å handsama ark og arkelement." #. qH2va #: main0116.xhp @@ -1535,7 +1535,7 @@ "par_id3149457\n" "help.text" msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets." -msgstr "$[officename] Calc er eit rekneark som du kan bruka til å rekna ut, analysera og handtera data. Du kan òg opna og arbeida med rekneark frå Microsoft Excel." +msgstr "$[officename] Calc er eit rekneark som du kan bruka til å rekna ut, analysera og handsama data. Du kan òg opna og arbeida med rekneark frå Microsoft Excel." #. 6iQ5x #: main0503.xhp @@ -1580,7 +1580,7 @@ "par_id3156444\n" "help.text" msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios." -msgstr "Ein nyttig funksjon er å kunna visa resultata dersom du endra ein enkelt faktor i utrekningar som er sette saman av fleire faktorar. Du kan for eksempel sjå korleis endringar i nedbetalingstida for eit lån påverkar renta eller avdraga. Du kan òg handtera store tabellar med førehandslaga scenario." +msgstr "Ein nyttig funksjon er å kunna visa resultata dersom du endra ein enkelt faktor i utrekningar som er sette saman av fleire faktorar. Du kan for eksempel sjå korleis endringar i nedbetalingstida for eit lån påverkar renta eller avdraga. Du kan òg handsama store tabellar med førehandslaga scenario." #. JRYyA #: main0503.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sdatabase.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/sdatabase.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/sdatabase.po 2022-07-15 19:12:51.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-11-19 15:44+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.12.2\n" +"X-Generator: LibreOffice\n" #. ugSgG #: 02000000.xhp @@ -463,7 +463,7 @@ "par_id3152474\n" "help.text" msgid "In the top of the query Design View window, the icons of the Query Design Bar and the Design bar are displayed." -msgstr "Øvst i vindauget Utformingsvising ser du ikona for verktøylinjene Spørjingsutforming og Utforming." +msgstr "Øvst i vindauget «Utformingsvising» finn du ikona for verktøylinjene Spørjingsutforming og Utforming." #. hYsxY #: 02010100.xhp @@ -2290,7 +2290,7 @@ "par_id31509641\n" "help.text" msgid "DateTime" -msgstr "DateTime" +msgstr "DatoKlokkeslett" #. FqZXM #: 02010100.xhp @@ -2785,7 +2785,7 @@ "hd_id0305200912031976\n" "help.text" msgid "Natural" -msgstr "Natural" +msgstr "Naturleg" #. 44FEn #: 02010101.xhp @@ -2839,7 +2839,7 @@ "hd_id3157910\n" "help.text" msgid "FormWizard" -msgstr "FormWizard" +msgstr "Skjemavegvisar" #. GDZow #: 04000000.xhp @@ -7060,7 +7060,7 @@ "par_idN105CD\n" "help.text" msgid "File extension" -msgstr "Filutviding" +msgstr "Filetternamn" #. 4UxAN #: dabapropadd.xhp @@ -7069,7 +7069,7 @@ "par_idN10803\n" "help.text" msgid "Select the format for the text file. The extension that you select affects some of the default settings in this dialog." -msgstr "Vel formatet for tekstfila. Filutvidinga du vel vil påverka nokre av innstillingane i dette dialogvindauget." +msgstr "Vel formatet for tekstfila. Filetternamnet du vel vil påverka nokre av innstillingane i dette dialogvindauget." #. KEi9S #: dabapropcon.xhp @@ -7213,7 +7213,7 @@ "par_idN1057C\n" "help.text" msgid "Ensure that the *.dbf file name extension of the dBASE files is lowercase." -msgstr "Pass på at filutvidinga *.dbf for dBASE er skrive med små bokstavar." +msgstr "Pass på at filetternamnet *.dbf for dBASE er skrive med små bokstavar." #. 3FEHH #: dabapropgen.xhp @@ -7285,7 +7285,7 @@ "par_idN105BC\n" "help.text" msgid "Enter the path to the spreadsheet document that you want to use as a database." -msgstr "" +msgstr "Skriv inn stien til reknearkdokumentet som du vil bruka som database." #. sHbo7 #: dabapropgen.xhp @@ -7294,7 +7294,7 @@ "par_idN105BF\n" "help.text" msgid "Name of the ODBC data source on your system" -msgstr "" +msgstr "Namnet på ODBC-datakjelda på systemet ditt" #. oEcfz #: dabapropgen.xhp @@ -7303,7 +7303,7 @@ "par_idN105C3\n" "help.text" msgid "Enter the name of the ODBC data source." -msgstr "" +msgstr "Skriv inn namnet på ODBC-datakjelda." #. GNzhk #: dabapropgen.xhp @@ -7312,7 +7312,7 @@ "par_idN105C6\n" "help.text" msgid "User name" -msgstr "" +msgstr "Brukarnamn" #. SiH7S #: dabapropgen.xhp @@ -7321,7 +7321,7 @@ "par_idN105CA\n" "help.text" msgid "Enter the user name that is required to access the database." -msgstr "" +msgstr "Skriv inn brukarnamnet du må ha for å få tilgang til databasen." #. YDXqp #: dabapropgen.xhp @@ -7330,7 +7330,7 @@ "par_idN105CD\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Krev passord" #. Az64m #: dabapropgen.xhp @@ -7339,7 +7339,7 @@ "par_idN105D1\n" "help.text" msgid "If checked, the user will be asked to enter the password that is required to access the database." -msgstr "" +msgstr "Viss denne er kryssa av, vert brukaren spurd om å oppgi passordet som krevst for å få tilgang til databasen." #. pQT6Z #: dabapropgen.xhp @@ -7348,7 +7348,7 @@ "hd_id7806329\n" "help.text" msgid "Name of the database" -msgstr "" +msgstr "Namnet på databasen" #. HAijN #: dabapropgen.xhp @@ -7357,7 +7357,7 @@ "par_id5589159\n" "help.text" msgid "Enter the name of the database." -msgstr "" +msgstr "Skriv inn namnet på databasen." #. 8Bxuy #: dabapropgen.xhp @@ -7366,7 +7366,7 @@ "par_idN105D4\n" "help.text" msgid "Name of the MySQL database" -msgstr "" +msgstr "Namnet på MySQL-databasen" #. e9p3M #: dabapropgen.xhp @@ -7375,7 +7375,7 @@ "par_idN105D8\n" "help.text" msgid "Enter the name of the MySQL database that you want to use as a data source." -msgstr "" +msgstr "Skriv inn namnet på MySQL-databasen som skal brukast som datakjelde." #. UECFe #: dabapropgen.xhp @@ -7384,7 +7384,7 @@ "par_idN105DB\n" "help.text" msgid "Name of the Oracle database" -msgstr "" +msgstr "Namnet på Oracle-databasen" #. dd99x #: dabapropgen.xhp @@ -7393,7 +7393,7 @@ "par_idN105DF\n" "help.text" msgid "Enter the name of the Oracle database that you want to use as a data source." -msgstr "" +msgstr "Skriv inn namnet på Oracle-databasen som skal brukast som datakjelde." #. dzDEB #: dabapropgen.xhp @@ -7402,7 +7402,7 @@ "par_idN105E9\n" "help.text" msgid "Microsoft Access database file" -msgstr "" +msgstr "Microsoft Access-databasefil" #. p9EGJ #: dabapropgen.xhp @@ -7411,7 +7411,7 @@ "par_idN105ED\n" "help.text" msgid "Enter the name of the Microsoft Access database file that you want to use as a data source." -msgstr "" +msgstr "Skriv inn namnet på Microsoft Access-databasefila som skal brukast som datakjelde." #. s7mEP #: dabapropgen.xhp @@ -7420,7 +7420,7 @@ "par_idN105F0\n" "help.text" msgid "Host name" -msgstr "" +msgstr "Vertsnamn" #. WpRBM #: dabapropgen.xhp @@ -7429,7 +7429,7 @@ "par_idN105F4\n" "help.text" msgid "Enter the host name for the LDAP data source." -msgstr "" +msgstr "Skriv inn vertsnamnet for LDAP-datakjelda." #. NsdZh #: dabapropgen.xhp @@ -7438,7 +7438,7 @@ "par_idN105F7\n" "help.text" msgid "Data source URL" -msgstr "" +msgstr "Nettadresse for datakjelda" #. kB6vt #: dabapropgen.xhp @@ -7447,7 +7447,7 @@ "par_idN105FB\n" "help.text" msgid "Enter the location of the JDBC data source as a URL." -msgstr "" +msgstr "Skriv inn plasseringa til JDBC-datakjelda som ei nettadresse." #. 2qqXH #: dabapropgen.xhp @@ -7456,7 +7456,7 @@ "par_idN105FE\n" "help.text" msgid "JDBC driver class" -msgstr "" +msgstr "JDBC-drivarklasse" #. 4kGAN #: dabapropgen.xhp @@ -7465,7 +7465,7 @@ "par_idN10602\n" "help.text" msgid "Enter the name of the JDBC driver class that connects to the data source." -msgstr "" +msgstr "Skriv inn namnet på JDBC-drivarklassen som skal brukast til å kopla til datakjelda." #. uprKx #: dabapropgen.xhp @@ -7474,7 +7474,7 @@ "par_idN10605\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Testklasse" #. SL9De #: dabapropgen.xhp @@ -7483,7 +7483,7 @@ "par_idN10609\n" "help.text" msgid "Tests the database connection through the JDBC driver class." -msgstr "" +msgstr "Testar databasetilkoplinga gjennom JDBC-drivarklassen." #. LXtcL #: dabapropgen.xhp @@ -7492,7 +7492,7 @@ "par_idN10613\n" "help.text" msgid "Choose a database" -msgstr "" +msgstr "Vel ein database" #. QNz26 #: dabapropgen.xhp @@ -7501,7 +7501,7 @@ "par_idN10617\n" "help.text" msgid "Select a database from the list or click Create to create a new database." -msgstr "" +msgstr "Vel ein database frå lista, eller trykk Lag ein ny database for å laga ein ny database." #. BhD6X #: dabawiz00.xhp @@ -7510,7 +7510,7 @@ "tit\n" "help.text" msgid "Database Wizard" -msgstr "" +msgstr "Databasevegvisar" #. dYT7e #: dabawiz00.xhp @@ -7519,7 +7519,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)jdbc; database settings (Base)odbc; database settings (Base)spreadsheets;as databases (base)" -msgstr "" +msgstr "vegvisarar;databasar (Base)Databasevegvisar (Base)databasar; format (Base)MySQL-databasar (Base)MariaDB-databasar (Base)dBASE; databaseinnstillingar (Base)jdbc;databaseinnstillingarodbc; databaseinnstillingarrekneark;som databasar (Base)" #. 5pnX6 #: dabawiz00.xhp @@ -7528,7 +7528,7 @@ "par_idN105B4\n" "help.text" msgid "Database Wizard" -msgstr "" +msgstr "Databasevegvisar" #. 4L7fe #: dabawiz00.xhp @@ -7537,7 +7537,7 @@ "par_id9856563\n" "help.text" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "" +msgstr "Databasevegvisaren lagar e idatabasefil som inneheld informasjon om ein database." #. MP58w #: dabawiz00.xhp @@ -7546,7 +7546,7 @@ "par_idN105D5\n" "help.text" msgid "Depending on the type of operation and the type of database, the Database Wizard consists of a varying number of steps." -msgstr "" +msgstr "Kor mange steg databasevegvisaren vil visa, er avhengig av type operasjon og type database." #. BvAbd #: dabawiz00.xhp @@ -7555,7 +7555,7 @@ "par_idN105DB\n" "help.text" msgid "If you create a new database file, the wizard contains two steps." -msgstr "" +msgstr "Viss du lagar ei ny databasefil, inneheld vegvisaren to steg." #. 75qWp #: dabawiz00.xhp @@ -7564,7 +7564,7 @@ "par_idN105DF\n" "help.text" msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more." -msgstr "" +msgstr "Viss du opnar databasevegvisaren for å laga ei databasefil for ei eksisterande databasekopling, kan det vere fleire steg som bestemmer søkjevegar, autentiseringsinformasjon og meir." #. A9JMA #: dabawiz00.xhp @@ -7573,7 +7573,7 @@ "par_idN105F2\n" "help.text" msgid "Set up text file connection" -msgstr "" +msgstr "Set opp tekstfiltilkopling" #. FWLbE #: dabawiz00.xhp @@ -7582,7 +7582,7 @@ "par_idN10601\n" "help.text" msgid "Set up Microsoft Access connection" -msgstr "" +msgstr "Set opp Microsoft Access-tilkopling" #. LE9Go #: dabawiz00.xhp @@ -7591,7 +7591,7 @@ "par_idN1062E\n" "help.text" msgid "Set up ADO connection" -msgstr "" +msgstr "Set opp ADO-tilkopling" #. BU6uL #: dabawiz00.xhp @@ -7600,7 +7600,7 @@ "par_idN1070F\n" "help.text" msgid "Set up dBASE connection" -msgstr "" +msgstr "Set opp dBASE-tilkopling" #. TBaXt #: dabawiz00.xhp @@ -7609,7 +7609,7 @@ "par_idN1063D\n" "help.text" msgid "Set up JDBC connection" -msgstr "" +msgstr "Set opp JDBC-tilkopling" #. F3Gju #: dabawiz00.xhp @@ -7618,7 +7618,7 @@ "par_idN1064C\n" "help.text" msgid "Set up Oracle database connection" -msgstr "" +msgstr "Set opp Oracle-databasetilkopling" #. atGau #: dabawiz00.xhp @@ -7627,7 +7627,7 @@ "par_idN1066A\n" "help.text" msgid "ODBC settings" -msgstr "" +msgstr "ODBC-innstillingar" #. wGT7W #: dabawiz00.xhp @@ -7636,7 +7636,7 @@ "par_idN10679\n" "help.text" msgid "Set up Spreadsheet connection" -msgstr "" +msgstr "Set opp reknearkkopling" #. menWz #: dabawiz01.xhp @@ -7645,7 +7645,7 @@ "tit\n" "help.text" msgid "Database Selection" -msgstr "" +msgstr "Databaseval" #. cE94h #: dabawiz01.xhp @@ -7654,7 +7654,7 @@ "bm_id2082583\n" "help.text" msgid "databases; connecting (Base)" -msgstr "" +msgstr "databasar; tilkopling (Base)" #. 6LQ8F #: dabawiz01.xhp @@ -7663,7 +7663,7 @@ "par_idN1054D\n" "help.text" msgid "Select Database" -msgstr "" +msgstr "Vel database" #. MNcgG #: dabawiz01.xhp @@ -7672,7 +7672,7 @@ "par_idN1055D\n" "help.text" msgid "Creates a new database, opens a database file, or connects to an existing database." -msgstr "" +msgstr "Lagar ein ny database, opnar ei databasefil eller lagar kopling til ein eksisterande database." #. 3gKji #: dabawiz01.xhp @@ -7681,7 +7681,7 @@ "par_idN10585\n" "help.text" msgid "Create a new database" -msgstr "" +msgstr "Lag ein ny database" #. QsxqK #: dabawiz01.xhp @@ -7690,7 +7690,7 @@ "par_idN10589\n" "help.text" msgid "Select to create a new database. This option uses the HSQL database engine with default settings. The final page of the wizard appears next." -msgstr "" +msgstr "Trykk her for å laga ein ny database. Dette valet bruker HSQL-databasemotoren med standardinnstillingane. Neste vindauge er det siste i vegvisaren." #. FMbMQ #: dabawiz01.xhp @@ -7699,7 +7699,7 @@ "par_id8584246\n" "help.text" msgid "External web page about HSQL." -msgstr "" +msgstr "Ekstern nettstad om HSQL." #. RzgCQ #: dabawiz01.xhp @@ -7708,7 +7708,7 @@ "par_idN105F9\n" "help.text" msgid "Open an existing database file" -msgstr "" +msgstr "Opna ei eksisterande databasefil" #. SrmuV #: dabawiz01.xhp @@ -7717,7 +7717,7 @@ "par_idN105FD\n" "help.text" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." -msgstr "" +msgstr "Trykk her for å opna ei databasefil frå ei liste over tidlegare brukte filer eller frå eit dialogvindauge for å velja filer." #. HNAd8 #: dabawiz01.xhp @@ -7726,7 +7726,7 @@ "par_idN10614\n" "help.text" msgid "Recently used" -msgstr "" +msgstr "Tidlegare brukte" #. ZGuNR #: dabawiz01.xhp @@ -7735,7 +7735,7 @@ "par_idN10618\n" "help.text" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Vel ei databasefil som skal opnast frå lista over nylig brukte filer. Trykk «Fullfør» for å opna fila og avslutta vegvisaren." #. ACzer #: dabawiz01.xhp @@ -7744,7 +7744,7 @@ "par_idN1062F\n" "help.text" msgid "Open" -msgstr "" +msgstr "Opna" #. 9WBfN #: dabawiz01.xhp @@ -7753,7 +7753,7 @@ "par_idN10633\n" "help.text" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Opnar eit dialogvindauge der du kan velja ei databasefil. Trykk «Opna» eller «OK» for å opna den valde fila og avslutta vegvisaren." #. rLwWT #: dabawiz01.xhp @@ -7762,7 +7762,7 @@ "par_idN1058C\n" "help.text" msgid "Connect to an existing database" -msgstr "" +msgstr "Lag kopling til ein eksisterande database" #. tF4HK #: dabawiz01.xhp @@ -7771,7 +7771,7 @@ "par_idN10590\n" "help.text" msgid "Select to create a database document for an existing database connection." -msgstr "" +msgstr "Trykk her for å oppretta eit databasedokument for ei eksisterande databasetilkopling." #. M4MGu #: dabawiz01.xhp @@ -7780,7 +7780,7 @@ "par_idN10593\n" "help.text" msgid "Database type" -msgstr "" +msgstr "Databasetype" #. jypBq #: dabawiz01.xhp @@ -7789,7 +7789,7 @@ "par_idN10597\n" "help.text" msgid "Select the database type for the existing database connection." -msgstr "" +msgstr "Vel databasetypen for den eksisterande databasetilkoplinga." #. xNvnU #: dabawiz01.xhp @@ -7798,7 +7798,7 @@ "par_idN1059A\n" "help.text" msgid "The Outlook, Evolution, KDE Address Book, and Seamonkey database types do not need additional information. For other database types, the wizard contains additional pages to specify the required information." -msgstr "" +msgstr "Databasetypane Outlook, Evolution, KDE adressebok og Seamonkey treng ikkje meir informasjon. For andre databasetypar inneheld vegvisaren fleire sider for å spesifisere den nødvendige informasjonen." #. 4RN7W #: dabawiz01.xhp @@ -7807,7 +7807,7 @@ "par_idN10611\n" "help.text" msgid "The next wizard page is one of the following pages:" -msgstr "" +msgstr "Den neste vegvisarsida er ei av desse sidene:" #. 9fLay #: dabawiz01.xhp @@ -7816,7 +7816,7 @@ "par_idN1061C\n" "help.text" msgid "Set up text file connection" -msgstr "" +msgstr "Set opp tekstfiltilkopling" #. DeFrC #: dabawiz01.xhp @@ -7825,7 +7825,7 @@ "par_idN1062B\n" "help.text" msgid "Set up Microsoft Access or Microsoft Access 2007 connection" -msgstr "" +msgstr "Set opp tilkopling til Microsoft Access- eller Microsoft Access 2007" #. NCWx8 #: dabawiz01.xhp @@ -7834,7 +7834,7 @@ "par_idN1063A\n" "help.text" msgid "Set up LDAP connection" -msgstr "" +msgstr "Set opp LDAP-tilkopling" #. 6qgTE #: dabawiz01.xhp @@ -7843,7 +7843,7 @@ "par_idN10658\n" "help.text" msgid "Set up ADO connection" -msgstr "" +msgstr "Set opp ADO-tilkopling" #. oiGwh #: dabawiz01.xhp @@ -7852,7 +7852,7 @@ "par_idN10667\n" "help.text" msgid "Set up JDBC connection" -msgstr "" +msgstr "Set opp JDBC-tilkopling" #. N55Na #: dabawiz01.xhp @@ -7861,7 +7861,7 @@ "par_idN10676\n" "help.text" msgid "Set up Oracle database connection" -msgstr "" +msgstr "Set opp Oracle-databasetilkopling" #. c4YLM #: dabawiz01.xhp @@ -7870,7 +7870,7 @@ "par_idN10694\n" "help.text" msgid "ODBC settings" -msgstr "" +msgstr "ODBC-innstillingar" #. zpfrv #: dabawiz01.xhp @@ -7879,7 +7879,7 @@ "par_idN106A3\n" "help.text" msgid "Set up Spreadsheet connection" -msgstr "" +msgstr "Set opp reknearktilkopling" #. SJaiE #: dabawiz02.xhp @@ -7888,7 +7888,7 @@ "tit\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Lagra og hald fram" #. Hjhen #: dabawiz02.xhp @@ -7897,7 +7897,7 @@ "par_idN10544\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Lagra og hald fram" #. CECqo #: dabawiz02.xhp @@ -7906,7 +7906,7 @@ "par_idN10554\n" "help.text" msgid "Specifies whether you want to register the database, open the database for editing, or insert a new table." -msgstr "" +msgstr "Bestemmer om du vil registrera databasen, opna databasen for redigering eller setja inn ein ny tabell." #. v3hCS #: dabawiz02.xhp @@ -7915,7 +7915,7 @@ "par_idN10557\n" "help.text" msgid "Yes, register the Database for me" -msgstr "" +msgstr "Ja, registrer databasen for meg" #. 6iEY2 #: dabawiz02.xhp @@ -7924,7 +7924,7 @@ "par_idN105B4\n" "help.text" msgid "Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the View - Data Sources window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge." -msgstr "" +msgstr "Vel å registrera databasen i brukarkopien din av %PRODUCTNAME. Når registreringa er utført, vert databasen vist i vindauget Vis → Datakjelder. Databasen må vera registrert for at du skal kunna setja inn databasefelta i eit dokument (Set inn → Felt → Fleire felt) eller i ei brevfletting." #. BDPbo #: dabawiz02.xhp @@ -7933,7 +7933,7 @@ "par_idN105B7\n" "help.text" msgid "No, do not register the database" -msgstr "" +msgstr "Nei, ikkje registrer databasen." #. PHFCG #: dabawiz02.xhp @@ -7942,7 +7942,7 @@ "par_idN105BB\n" "help.text" msgid "Select to keep the database information only within the created database file." -msgstr "" +msgstr "Vel for å halda databaseinformasjonen i den oppretta databasefila." #. xJFV8 #: dabawiz02.xhp @@ -7951,7 +7951,7 @@ "par_idN1055B\n" "help.text" msgid "Open the database for editing" -msgstr "" +msgstr "Opna databasen for redigering" #. 2oDVV #: dabawiz02.xhp @@ -7960,7 +7960,7 @@ "par_idN105C6\n" "help.text" msgid "Select to display the database file, where you can edit the database structure." -msgstr "" +msgstr "Kryss av for å visa databasefila slik at du kan redigera databasestrukturen." #. uUaJe #: dabawiz02.xhp @@ -7969,7 +7969,7 @@ "par_idN1055F\n" "help.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Lag tabellar ved hjelp av tabellvegvisaren" #. CihhJ #: dabawiz02.xhp @@ -7978,7 +7978,7 @@ "par_idN105D1\n" "help.text" msgid "Select to call the Table Wizard after the Database Wizard is finished." -msgstr "" +msgstr "Vel for å kalla opp tabellvegvisaren etter at databasevegvisaren er fullført." #. YnZ24 #: dabawiz02access.xhp @@ -7987,7 +7987,7 @@ "tit\n" "help.text" msgid "Microsoft Access Connection" -msgstr "" +msgstr "Microsoft Access-tilkopling" #. uUAxL #: dabawiz02access.xhp @@ -8302,7 +8302,7 @@ "bm_id3726920\n" "help.text" msgid "JDBC; databases (Base)databases; JDBC (Base)" -msgstr "" +msgstr "JDBC; databasar (Base)databasar; JDBC (Base)" #. nSDvF #: dabawiz02jdbc.xhp @@ -8311,7 +8311,7 @@ "par_idN105FC\n" "help.text" msgid "JDBC Connection" -msgstr "" +msgstr "JDBC-tilkobling" #. 4vvDv #: dabawiz02jdbc.xhp @@ -8320,7 +8320,7 @@ "par_idN10600\n" "help.text" msgid "Specifies the options to access a JDBC database." -msgstr "" +msgstr "Spesifiserer innstillingane for å få tilgang til ein JDBC-database." #. MAM5R #: dabawiz02jdbc.xhp @@ -8329,7 +8329,7 @@ "par_idN10623\n" "help.text" msgid "JDBC Examples" -msgstr "" +msgstr "JDBC-eksempel" #. FAkVF #: dabawiz02jdbc.xhp @@ -8338,7 +8338,7 @@ "par_idN10627\n" "help.text" msgid "You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL." -msgstr "" +msgstr "Du kan bruka ein JDBC-drivarklasse for å kopla til ein JDBC-database frå %PRODUCTNAME. Drivarklassen vert levert av databaseprodusenten. To eksempel på JDBC-databasar er Oracle og MySQL." #. ehUZi #: dabawiz02jdbc.xhp @@ -8347,7 +8347,7 @@ "par_idN1062D\n" "help.text" msgid "The driver classes must be added to %PRODUCTNAME in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "Drivarklassane må leggjast til i %PRODUCTNAME i %PRODUCTNAME → PreferencesVerktøy → Innstillingar → %PRODUCTNAME → Avansert." #. KTrhC #: dabawiz02jdbc.xhp @@ -8356,7 +8356,7 @@ "par_idN10634\n" "help.text" msgid "Oracle database" -msgstr "" +msgstr "Oracle-database" #. Br2JC #: dabawiz02jdbc.xhp @@ -8365,7 +8365,7 @@ "par_idN10638\n" "help.text" msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver." -msgstr "" +msgstr "Du kan bruka ein JDBC-drivar for å få tilgang til ein Oracle-database frå Solaris eller Linux. For tilgang til databasen frå Windows, treng du ein ODBC-drivar." #. pei94 #: dabawiz02jdbc.xhp @@ -8374,7 +8374,7 @@ "par_idN1064B\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site." -msgstr "" +msgstr "På UNIX må du vera sikker på å at Oracle-databaseklienten er installert med JDBC-støtte. JDBC-drivarklassen til Oracle-klienten versjon 8.x for Solaris er i mappa /produkt/jdbc/lib/classes111.zip. Du kan også henta den siste versjon av drivaren ned frå Oracle si heimeside." #. DifQh #: dabawiz02jdbc.xhp @@ -8383,7 +8383,7 @@ "par_idN10661\n" "help.text" msgid "In the Data source URL box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information." -msgstr "" +msgstr "I boksen Nettadresse til datakjelda kan du skriva inn plasseringa av Oracle-databasetenaren. Syntaksen for nettadressa er avhengig av databasetypen. Sjå på dokumentasjonen som kom med JDBC-drivaren for fleire opplysningar." #. BBFrJ #: dabawiz02jdbc.xhp @@ -8392,7 +8392,7 @@ "par_idN10668\n" "help.text" msgid "For an Oracle database, the syntax of the URL is:" -msgstr "" +msgstr "For ein Oracle-database er syntaksen for nettadressa:" #. 7tbob #: dabawiz02jdbc.xhp @@ -8401,7 +8401,7 @@ "par_idN1066B\n" "help.text" msgid "oracle:thin:@hostname:port:database_name" -msgstr "" +msgstr "oracle:thin:@vertnamn:port:database_namn" #. RiDDR #: dabawiz02jdbc.xhp @@ -8410,7 +8410,7 @@ "par_idN10674\n" "help.text" msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "vertsnamn er namnet på maskinen som køyrer Oracle-databasen. Du kan også byta ut vertsnamn med IP-adressa til tenaren." #. sFfhQ #: dabawiz02jdbc.xhp @@ -8419,7 +8419,7 @@ "par_idN10678\n" "help.text" msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address." -msgstr "" +msgstr "port er porten der Oracle-databasen lyttar. Spør databaseadministratoren for å få det rette passordet." #. GDkVv #: dabawiz02jdbc.xhp @@ -8428,7 +8428,7 @@ "par_idN1067C\n" "help.text" msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name." -msgstr "" +msgstr "database_namn er namnet på Oracle-databasen. Spør databaseadministratoren om det rette namnet." #. aQiqR #: dabawiz02jdbc.xhp @@ -8437,7 +8437,7 @@ "par_idN1067F\n" "help.text" msgid "MySQL database" -msgstr "" +msgstr "MySQL-database" #. FEV5u #: dabawiz02jdbc.xhp @@ -8446,7 +8446,7 @@ "par_idN10683\n" "help.text" msgid "The driver for the MySQL database is available on the MySQL web site." -msgstr "" +msgstr "Drivaren for MySQL-databasen er tilgjengeleg på nettstaden til MySQL." #. p2v67 #: dabawiz02jdbc.xhp @@ -8455,7 +8455,7 @@ "par_idN10689\n" "help.text" msgid "The syntax for a MySQL database is:" -msgstr "" +msgstr "Syntaksen for ein MySQL-database er:" #. wEDsL #: dabawiz02jdbc.xhp @@ -8464,7 +8464,7 @@ "par_idN1068C\n" "help.text" msgid "mysql://hostname:port/database_name" -msgstr "" +msgstr "mysql://vertsnamn:port/database_namn" #. m5Kcx #: dabawiz02jdbc.xhp @@ -8473,7 +8473,7 @@ "par_idN10695\n" "help.text" msgid "hostname is the name of the machine that runs the MySQL database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "vertsnamn er namnet på maskinen som køyrer MySQL-databasen. Du kan også byta ut vertsnamn med IP-adressa til tenaren." #. LCpew #: dabawiz02jdbc.xhp @@ -8482,7 +8482,7 @@ "par_idN10699\n" "help.text" msgid "port is the default port for MySQL databases, namely 3306." -msgstr "" +msgstr "port er standardporten for MySQL-databasar, nemleg 3306." #. q2DuM #: dabawiz02jdbc.xhp @@ -8491,7 +8491,7 @@ "par_idN1069D\n" "help.text" msgid "database_name is the name of the database." -msgstr "" +msgstr "database_namn er namnet på databasen." #. YYgSg #: dabawiz02jdbc.xhp @@ -8500,7 +8500,7 @@ "par_idN106A0\n" "help.text" msgid "Data source URL" -msgstr "" +msgstr "Nettadresse for datakjelda" #. EcdaK #: dabawiz02jdbc.xhp @@ -8509,7 +8509,7 @@ "par_idN106A4\n" "help.text" msgid "Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql:///\". For more information on the JDBC driver, consult the documentation that came with the driver." -msgstr "" +msgstr "Skriv inn adressa til databasen. Viss du for eksempel brukar MySQL JDBC-drivaren, kan du skriva inn «mysql:///». Du finn meir informasjon om JDBC-drivaren i dokumentasjonen som følgde med drivaren." #. eVBSr #: dabawiz02jdbc.xhp @@ -8518,7 +8518,7 @@ "par_idN106BB\n" "help.text" msgid "JDBC Driver Class" -msgstr "" +msgstr "JDBC-drivarklasse" #. vFsoP #: dabawiz02jdbc.xhp @@ -8527,7 +8527,7 @@ "par_idN106BF\n" "help.text" msgid "Enter the name of the JDBC driver." -msgstr "" +msgstr "Skriv inn namnet på JDBC-drivaren." #. VHjhA #: dabawiz02jdbc.xhp @@ -8536,7 +8536,7 @@ "par_id7953733\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 "" +msgstr "Før du kan bruka ein JDBC-drivar, må du leggja til klassestien. Vel %PRODUCTNAME → Innstillingar Verktøy → Innstillingar -%PRODUCTNAME → Avansert og trykk på knappen Klassesti. Etter at du har lagt til stinformasjonen, start %PRODUCTNAME på nytt." #. f8fUr #: dabawiz02jdbc.xhp @@ -8545,7 +8545,7 @@ "par_idN106CE\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Testklasse" #. 8VBbq #: dabawiz02jdbc.xhp @@ -8554,7 +8554,7 @@ "par_idN106E4\n" "help.text" msgid "Tests the connection with the current settings." -msgstr "" +msgstr "Testar tilkoplinga med dei gjeldande innstillingane." #. FGezr #: dabawiz02jdbc.xhp @@ -8563,7 +8563,7 @@ "par_idN106E7\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Autentisering" #. Y4EFA #: dabawiz02mysql.xhp @@ -8572,7 +8572,7 @@ "tit\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "MariaDB- og MySQL-tilkoplingar" #. bVNAZ #: dabawiz02mysql.xhp @@ -8581,7 +8581,7 @@ "bm_id861587404584956\n" "help.text" msgid "MariaDB settings (Base)MySQL settings (Base)" -msgstr "" +msgstr "MariaDB, innstillingar (Base)MySQL, innstillingar (Base)" #. MseiS #: dabawiz02mysql.xhp @@ -8590,7 +8590,7 @@ "par_idN10549\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "MariaDB- og MySQL-tilkopling" #. 5FPU6 #: dabawiz02mysql.xhp @@ -8599,7 +8599,7 @@ "par_idN1054D\n" "help.text" msgid "Specifies the options for MariaDB and MySQL databases." -msgstr "" +msgstr "Spesifiserer innstillingane for MariaDB- og MySQL-databasane." #. Bmcwo #: dabawiz02mysql.xhp @@ -8608,7 +8608,7 @@ "hd_id661587405298284\n" "help.text" msgid "Direct Connection for MariaDB and MySQL databases" -msgstr "" +msgstr "Direkte tilkopling for MariaDB- og MySQL-databasar" #. vd9VD #: dabawiz02mysql.xhp @@ -8617,7 +8617,7 @@ "hd_id321587405303769\n" "help.text" msgid "Database name" -msgstr "" +msgstr "Databasenamn" #. 6LAsi #: dabawiz02mysql.xhp @@ -8626,7 +8626,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 "Skriv inn namnet på MariaDB- eller MySQL-databasen. Spør databaseadministratoren om det rette namnet." #. jbdZp #: dabawiz02mysql.xhp @@ -8635,7 +8635,7 @@ "hd_id561587405334695\n" "help.text" msgid "Server URL" -msgstr "" +msgstr "Tenaradresse" #. SshYk #: dabawiz02mysql.xhp @@ -8644,7 +8644,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 "Skriv inn adressa til databasetenaren. Dette er namnet på maskinen som køyrer MariaDB- eller MySQL-databasen. Du kan også byte ut vertsnamnet med IP-adressa til tenaren." #. MZQiq #: dabawiz02mysql.xhp @@ -8653,7 +8653,7 @@ "hd_id171587405349438\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Portnummer" #. J2SR3 #: dabawiz02mysql.xhp @@ -8662,7 +8662,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 "Skriv inn portnummeret for databasetenaren. Spør databaseadministratoren om rett portadresse. Standard portnummer for MySQL- eller MariaDB-databasar er 3306." #. ovKhU #: dabawiz02mysql.xhp @@ -8671,7 +8671,7 @@ "hd_id121587407845730\n" "help.text" msgid "Named Pipe" -msgstr "" +msgstr "Namngjeve datakanal" #. Rq89B #: dabawiz02mysql.xhp @@ -8680,7 +8680,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 "Dersom MariaDB- eller MySQL-databasen har tilgang via ein namngjeve datakanal, skriv du inn namnet." #. wF6bj #: dabawiz02mysql.xhp @@ -8689,7 +8689,7 @@ "hd_id161587405553671\n" "help.text" msgid "Socket" -msgstr "" +msgstr "Sokkel" #. e8DB2 #: dabawiz02mysql.xhp @@ -8698,7 +8698,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 "Dersom MariaDB- eller MySQL-databasen har tilgang via ein sokkel, skriv du inn sokkel-ID-en." #. fpBNu #: dabawiz02mysql.xhp @@ -8707,7 +8707,7 @@ "par_idN10562\n" "help.text" msgid "Connect using ODBC (Open Database Connectivity)" -msgstr "" +msgstr "Kopla til med ODBC (Open Database Connectivity)" #. E7sE2 #: dabawiz02mysql.xhp @@ -8716,7 +8716,7 @@ "par_idN10566\n" "help.text" msgid "Connects to an existing ODBC data source that was set on a system level." -msgstr "" +msgstr "Koplar til ei eksisterande ODBC-datakjelde som er sett på systemnivå." #. AXrwJ #: dabawiz02mysql.xhp @@ -8725,7 +8725,7 @@ "par_idN10569\n" "help.text" msgid "Connect using JDBC (Java Database Connectivity)" -msgstr "" +msgstr "Kopla til med JDBC (Java Database Connectivity)" #. i9TrE #: dabawiz02mysql.xhp @@ -8734,7 +8734,7 @@ "par_idN1056D\n" "help.text" msgid "Connects to an existing JDBC data source that was set on a system level." -msgstr "" +msgstr "Koplar til ei eksisterande JDBC-datakjelde som vart sett på systemnivå." #. FUG3D #: dabawiz02mysql.xhp @@ -8743,7 +8743,7 @@ "par_idN10570\n" "help.text" msgid "The next wizard page depends on your choice of ODBC or JDBC:" -msgstr "" +msgstr "Den neste sida i vegvisaren er avhengig av om du har vald ODBC eller JDBC:" #. VYcYK #: dabawiz02mysql.xhp @@ -8752,7 +8752,7 @@ "par_idN10573\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-tilkopling" #. DABkC #: dabawiz02mysql.xhp @@ -8761,7 +8761,7 @@ "par_idN10582\n" "help.text" msgid "JDBC Connection" -msgstr "" +msgstr "JDBC-tilkopling" #. ujaGF #: dabawiz02mysql.xhp @@ -8770,7 +8770,7 @@ "par_idN10591\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Autentisering" #. HF588 #: dabawiz02odbc.xhp @@ -8779,7 +8779,7 @@ "tit\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-tilkopling" #. sGNau #: dabawiz02odbc.xhp @@ -8788,7 +8788,7 @@ "bm_id3149031\n" "help.text" msgid "ODBC;database (Base)databases;ODBC (Base)" -msgstr "" +msgstr "ODBC;database (Base)databasar;ODBC (Base)" #. SNzJc #: dabawiz02odbc.xhp @@ -8797,7 +8797,7 @@ "par_idN1053D\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-tilkopling" #. nb3Qq #: dabawiz02odbc.xhp @@ -8806,7 +8806,7 @@ "par_idN10541\n" "help.text" msgid "Specifies the settings for ODBC databases." -msgstr "" +msgstr "Spesifiserer innstillingane for ODBC-databasar." #. WhLBW #: dabawiz02odbc.xhp @@ -8815,7 +8815,7 @@ "par_id8856776\n" "help.text" msgid "To edit or add records to a database table in $[officename], the table must have a unique index field." -msgstr "" +msgstr "For å kunna redigera eller leggja til postar til ein databasetabell i $[officename], må tabellen ha eit eintydig indekseringsfelt." #. xs2Yc #: dabawiz02odbc.xhp @@ -8824,7 +8824,7 @@ "par_id8034302\n" "help.text" msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux." -msgstr "" +msgstr "Prøv å bruka JDBC-drivar på Solaris- og Linux-platformer i staden for ein ODBC-drivar. Sjå http://www.unixodbc.org om korleis setja opp ODBC på Solaris eller Linux." #. PxZ9T #: dabawiz02odbc.xhp @@ -8833,7 +8833,7 @@ "par_id8560136\n" "help.text" msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC." -msgstr "" +msgstr "Når du koplar til ein Microsoft Access-database i Windows, bør du bruka ADO- eller Acess-databasegrensesnittet i staden for ODBC." #. vme6U #: dabawiz02odbc.xhp @@ -8842,7 +8842,7 @@ "par_id2082583\n" "help.text" msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard." -msgstr "" +msgstr "Drivarar til ODBC vert leverte og halde ved like av databaseleverandøren. $[officename] støttar berre ODBC 3-standarden." #. wCexE #: dabawiz02odbc.xhp @@ -8851,7 +8851,7 @@ "par_idN10552\n" "help.text" msgid "Name of the ODBC database" -msgstr "" +msgstr "Namnet på ODBC-databasen" #. eubaF #: dabawiz02odbc.xhp @@ -8860,7 +8860,7 @@ "par_idN10556\n" "help.text" msgid "Enter the path to the database file." -msgstr "" +msgstr "Skriv inn stien til databasefila." #. 7KKFy #: dabawiz02odbc.xhp @@ -8869,7 +8869,7 @@ "par_idN10559\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Bla gjennom" #. CSCAZ #: dabawiz02odbc.xhp @@ -8878,7 +8878,7 @@ "par_idN1055D\n" "help.text" msgid "Click to open an ODBC data source selection dialog:" -msgstr "" +msgstr "Trykk for å opna eit dialogvindauge der du kan velja ei ODBC-datakjelde." #. 48ubg #: dabawiz02odbc.xhp @@ -8887,7 +8887,7 @@ "par_idN10560\n" "help.text" msgid "Choose a data source" -msgstr "" +msgstr "Vel ei datakjelde" #. FhAAU #: dabawiz02odbc.xhp @@ -8896,7 +8896,7 @@ "par_idN10564\n" "help.text" msgid "Select a data source to which you want to connect using ODBC. Then click OK." -msgstr "" +msgstr "Vel ei datakjelde som du vil kopla til ved hjelp av ODBC. Trykk deretter OK." #. WaAZB #: dabawiz02odbc.xhp @@ -8905,7 +8905,7 @@ "par_idN10567\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Autentisering" #. RL7sk #: dabawiz02oracle.xhp @@ -8914,7 +8914,7 @@ "tit\n" "help.text" msgid "Oracle Database Connection" -msgstr "" +msgstr "Oracle-databasekopling" #. 8H3zh #: dabawiz02oracle.xhp @@ -8923,7 +8923,7 @@ "bm_id5900753\n" "help.text" msgid "Oracle databases (base)" -msgstr "" +msgstr "Oracle-databasar (base)" #. W6aaT #: dabawiz02oracle.xhp @@ -8932,7 +8932,7 @@ "par_idN105A4\n" "help.text" msgid "Oracle Database Connection" -msgstr "" +msgstr "Oracle-databasekopling" #. DbqoE #: dabawiz02oracle.xhp @@ -8941,7 +8941,7 @@ "par_idN105A8\n" "help.text" msgid "Specifies the options to access an Oracle database." -msgstr "" +msgstr "Spesifiserer innstillingar for tilgang til ein Oracle-database." #. FMq7o #: dabawiz02oracle.xhp @@ -8950,7 +8950,7 @@ "par_idN105BD\n" "help.text" msgid "Oracle database" -msgstr "" +msgstr "Oracle-database" #. 8qHyA #: dabawiz02oracle.xhp @@ -8959,7 +8959,7 @@ "par_idN105C1\n" "help.text" msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver." -msgstr "" +msgstr "Du kan bruka ein JDBC-drivar for å få tilgang til ein Oracle-database frå Solaris eller Linux. For tilgang til databasen frå Windows, treng du ein ODBC-drivar." #. sSDYq #: dabawiz02oracle.xhp @@ -8968,7 +8968,7 @@ "par_idN105D4\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site." -msgstr "" +msgstr "På UNIX må du vera sikker på å at Oracle-databaseklienten er installert med JDBC-støtte. JDBC-drivarklassen til Oracle-klienten versjon 8.x for Solaris er i mappa /produkt/jdbc/lib/classes111.zip. Du kan også henta den siste versjon av drivaren ned frå Oracle si heimeside." #. 5rxmX #: dabawiz02oracle.xhp @@ -8977,7 +8977,7 @@ "par_idN10608\n" "help.text" msgid "Name of the Oracle database" -msgstr "" +msgstr "Namnet på Oracle-databasen" #. DxYWQ #: dabawiz02oracle.xhp @@ -8986,7 +8986,7 @@ "par_idN1060C\n" "help.text" msgid "Enter the name of the Oracle database. Ask your database administrator for the correct name." -msgstr "" +msgstr "Skriv inn namnet på Oracle-databasen. Spør databaseadministratoren om det rette namnet." #. WKBSR #: dabawiz02oracle.xhp @@ -8995,7 +8995,7 @@ "par_idN1060F\n" "help.text" msgid "Server URL" -msgstr "" +msgstr "Tenaradresse" #. vXDGs #: dabawiz02oracle.xhp @@ -9004,7 +9004,7 @@ "par_idN10613\n" "help.text" msgid "Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "Skriv inn adressa til databasetenaren. Dette er namnet på maskinen som køyrer Oracle-databasen. Du kan også bytte ut vertsnamn med IP-adressa til tenaren." #. EEESV #: dabawiz02oracle.xhp @@ -9013,7 +9013,7 @@ "par_idN10616\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Portnummer" #. PBuEW #: dabawiz02oracle.xhp @@ -9022,7 +9022,7 @@ "par_idN1061A\n" "help.text" msgid "Enter the port number for the database server. Ask your database administrator for the correct port address." -msgstr "" +msgstr "Skriv inn portnummeret for Oracle-databasen. Spør databaseadministratoren etter den rette portadressa." #. rYRxW #: dabawiz02oracle.xhp @@ -9031,7 +9031,7 @@ "par_idN1061D\n" "help.text" msgid "Oracle JDBC Driver Class" -msgstr "" +msgstr "Oracle JDBC-drivarklasse" #. ouDxa #: dabawiz02oracle.xhp @@ -9040,7 +9040,7 @@ "par_idN10621\n" "help.text" msgid "Enter the name of the JDBC driver." -msgstr "" +msgstr "Skriv inn namnet på JDBC-drivaren." #. JumUz #: dabawiz02oracle.xhp @@ -9049,7 +9049,7 @@ "par_idN10630\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Testklasse" #. NdF7k #: dabawiz02oracle.xhp @@ -9058,7 +9058,7 @@ "par_idN10634\n" "help.text" msgid "Tests the connection with the current settings." -msgstr "" +msgstr "Testar koplinga med dei gjeldande innstillingane." #. UwteE #: dabawiz02oracle.xhp @@ -9067,7 +9067,7 @@ "par_idN10637\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Autentisering" #. XoiBM #: dabawiz02spreadsheet.xhp @@ -9076,7 +9076,7 @@ "tit\n" "help.text" msgid "Spreadsheet Database Connection" -msgstr "" +msgstr "Kopling til reknearkdatabase" #. cwGbM #: dabawiz02spreadsheet.xhp @@ -9085,7 +9085,7 @@ "par_idN1053A\n" "help.text" msgid "Set up Spreadsheet connection" -msgstr "" +msgstr "Set opp reknearktilkoplinga" #. fZnvG #: dabawiz02spreadsheet.xhp @@ -9094,7 +9094,7 @@ "par_idN1053E\n" "help.text" msgid "Location and file name" -msgstr "" +msgstr "Plassering og filnamn" #. 6TKT4 #: dabawiz02spreadsheet.xhp @@ -9103,7 +9103,7 @@ "par_idN10542\n" "help.text" msgid "Enter the path and file name to the spreadsheet file." -msgstr "" +msgstr "Skriv inn stien til og namnet på reknearkfila." #. XtNjY #: dabawiz02spreadsheet.xhp @@ -9112,7 +9112,7 @@ "par_idN10545\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Bla gjennom" #. JfUMC #: dabawiz02spreadsheet.xhp @@ -9121,7 +9121,7 @@ "par_idN10549\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Trykk for å opna eit dialogvindauge der du kan velja ei fil." #. JAmAi #: dabawiz02spreadsheet.xhp @@ -9130,7 +9130,7 @@ "par_idN1054C\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Krev passord" #. 3HzmH #: dabawiz02spreadsheet.xhp @@ -9139,7 +9139,7 @@ "par_idN10550\n" "help.text" msgid "Select to request a password from the user of the database document." -msgstr "" +msgstr "Merk for å be om eit passord frå brukaren av databasedokumentet." #. xngE4 #: dabawiz02text.xhp @@ -9148,7 +9148,7 @@ "tit\n" "help.text" msgid "Text File Connection" -msgstr "" +msgstr "Tekstfiltilkopling" #. dfWU7 #: dabawiz02text.xhp @@ -9157,7 +9157,7 @@ "bm_id2517166\n" "help.text" msgid "tables in databases;importing text formats (Base)text databases (Base)" -msgstr "" +msgstr "tabellar i databasar;importera tekstformat (Base)tekstdatabasar (Base)" #. htUUB #: dabawiz02text.xhp @@ -9166,7 +9166,7 @@ "par_idN1054F\n" "help.text" msgid "Set up a connection to text files" -msgstr "" +msgstr "Set opp ei tilkopling til tekstfiler" #. MD2eT #: dabawiz02text.xhp @@ -9175,7 +9175,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the settings for importing a database in text format." -msgstr "" +msgstr "Spesifiserer innstillingane for import av ein database i tekstformat." #. 6yKNw #: dabawiz02text.xhp @@ -9184,7 +9184,7 @@ "par_idN10568\n" "help.text" msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks." -msgstr "" +msgstr "I ein database i tekstformat vert data lagra i ei uformatert ASCII-fil, der kvar datapost er éi rad. Datafelta er skilde med separatorar. Tekst i datafelta er skild med hermeteikn." #. puYrF #: dabawiz02text.xhp @@ -9193,7 +9193,7 @@ "par_idN1056B\n" "help.text" msgid "Path to text files" -msgstr "" +msgstr "Sti til tekstfiler" #. LkFcD #: dabawiz02text.xhp @@ -9202,7 +9202,7 @@ "par_idN1056F\n" "help.text" msgid "Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database." -msgstr "" +msgstr "Skriv inn stien til tekstfilene. Viss du vil bruka berre ei enkelt tekstfil, kan fila ha kva filetternamn som helst. Viss du vil ha med alle filene i ei mappe, må alle filene ha filetternamnet «*.csv» for å verta gjenkjende som filer i ein tekstdatabase." #. DwHAY #: dabawiz02text.xhp @@ -9211,7 +9211,7 @@ "par_idN10572\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Bla gjennom" #. tU8mG #: dabawiz02text.xhp @@ -9220,7 +9220,7 @@ "par_idN10576\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Trykk for å opna eit dialogvindauge der du kan velja ei fil." #. MmGr4 #: dabawiz02text.xhp @@ -9229,7 +9229,7 @@ "par_idN10616\n" "help.text" msgid "Plain text files (*.txt)" -msgstr "" +msgstr "Reine tekstfiler (*.txt)" #. ztjWn #: dabawiz02text.xhp @@ -9238,7 +9238,7 @@ "par_idN1061A\n" "help.text" msgid "Click to access txt files." -msgstr "" +msgstr "Trykk for å få tilgang til txt-filer." #. E5S76 #: dabawiz02text.xhp @@ -9247,7 +9247,7 @@ "par_idN10643\n" "help.text" msgid "'Comma separated value' files (*.csv)" -msgstr "" +msgstr "Filer med kommaseparerte verdiar (*.csv)" #. 2fDr2 #: dabawiz02text.xhp @@ -9256,7 +9256,7 @@ "par_idN10647\n" "help.text" msgid "Click to access csv files." -msgstr "" +msgstr "Trykk for å få tilgang til csv-filer." #. EVBCK #: dabawiz02text.xhp @@ -9265,7 +9265,7 @@ "par_idN10666\n" "help.text" msgid "Custom" -msgstr "" +msgstr "Tilpassa" #. 3Z5fx #: dabawiz02text.xhp @@ -9274,7 +9274,7 @@ "par_idN1066A\n" "help.text" msgid "Click to access custom files. Enter the extension in the text box." -msgstr "" +msgstr "Trykk for å få tilgang til eigendefinerte filer. Skriv inn filetternamnet i tekstboksen." #. rts2F #: dabawiz02text.xhp @@ -9283,7 +9283,7 @@ "par_idN10581\n" "help.text" msgid "Field separator" -msgstr "" +msgstr "Feltskiljeteikn" #. 3G6QU #: dabawiz02text.xhp @@ -9292,7 +9292,7 @@ "par_idN10585\n" "help.text" msgid "Enter or select the character that separates data fields in the text file." -msgstr "" +msgstr "Skriv inn eller vel teiknet som skil datafelt i tekstfila." #. 8rxWL #: dabawiz02text.xhp @@ -9301,7 +9301,7 @@ "par_idN1059C\n" "help.text" msgid "Text separator" -msgstr "" +msgstr "Tekstskiljeteikn" #. ejFpV #: dabawiz02text.xhp @@ -9310,7 +9310,7 @@ "par_idN105A0\n" "help.text" msgid "Enter or select the character that identifies a text field in the text file. You cannot use the same character as the field separator." -msgstr "" +msgstr "Skriv inn eller vel teiknet som identifiserer eit tekstfelt i tekstfila. Du kan ikkje bruka det same teiknet som er brukt som feltskiljeteikn." #. rSTcV #: dabawiz02text.xhp @@ -9319,7 +9319,7 @@ "par_idN105B8\n" "help.text" msgid "Decimal separator" -msgstr "" +msgstr "Desimalskiljeteikn" #. apBAu #: dabawiz02text.xhp @@ -9328,7 +9328,7 @@ "par_idN105BC\n" "help.text" msgid "Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5)." -msgstr "" +msgstr "Skriv inn eller vel teiknet som skal brukast som desimalteikn i tekstfila. Eksempel: komma (0,5) eller punktum (0.5)." #. CyhGN #: dabawiz02text.xhp @@ -9337,7 +9337,7 @@ "par_idN105D3\n" "help.text" msgid "Thousands separator" -msgstr "" +msgstr "Tusenskiljeteikn" #. 6TTiq #: dabawiz02text.xhp @@ -9346,7 +9346,7 @@ "par_idN105D7\n" "help.text" msgid "Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000)." -msgstr "" +msgstr "Skriv inn eller vel teiknet som er brukt som tusenskiljeteikn i tekstfila. Eksempel: punktum (1.000) eller mellomrom (1 000)." #. YSNPt #: dabawiz03auth.xhp @@ -9355,7 +9355,7 @@ "tit\n" "help.text" msgid "Set up user authentication" -msgstr "" +msgstr "Set opp brukarautentisering" #. EhtLD #: dabawiz03auth.xhp @@ -9364,7 +9364,7 @@ "par_idN1053A\n" "help.text" msgid "Set up user authentication" -msgstr "" +msgstr "Set opp brukarautentisering" #. TGHfv #: dabawiz03auth.xhp @@ -9373,7 +9373,7 @@ "par_idN1053E\n" "help.text" msgid "Some databases require a user name and password." -msgstr "" +msgstr "Nokre databasar krev brukarnamn og passord." #. 6YqKR #: dabawiz03auth.xhp @@ -9382,7 +9382,7 @@ "par_idN10541\n" "help.text" msgid "User name" -msgstr "" +msgstr "Brukarnamn" #. q5JV4 #: dabawiz03auth.xhp @@ -9391,7 +9391,7 @@ "par_idN10545\n" "help.text" msgid "Enter the user name to access the database." -msgstr "" +msgstr "Skriv inn brukarnamnet for å få tilgang til databasen." #. cAFEU #: dabawiz03auth.xhp @@ -9400,7 +9400,7 @@ "par_idN10548\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Krev passord" #. wctGK #: dabawiz03auth.xhp @@ -9409,7 +9409,7 @@ "par_idN1054C\n" "help.text" msgid "Select to prompt a user for a password to access the database." -msgstr "" +msgstr "Vel denne for å be ein brukar om eit passord for å få tilgang til databasen." #. xnkR8 #: dabawiz03auth.xhp @@ -9418,7 +9418,7 @@ "par_idN10549\n" "help.text" msgid "Test Connection" -msgstr "" +msgstr "Test tilkoplinga" #. jkqUK #: dabawiz03auth.xhp @@ -9427,7 +9427,7 @@ "par_idN10546\n" "help.text" msgid "Check if the configured connection can be used to access the database." -msgstr "" +msgstr "Kontroller om den oppsette tilkoplinga kan brukast for å få tilgang til databasen." #. dF4Mp #: dabawiz03auth.xhp @@ -9436,7 +9436,7 @@ "par_idN1054F\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Lagra og hald fram" #. cLmBi #: main.xhp @@ -9537,7 +9537,7 @@ "par_idN1083B\n" "help.text" msgid "The Database Wizard helps you to create a database file and to register a new database within %PRODUCTNAME." -msgstr "" +msgstr "Bruk databasevegvisaren for å laga ei databasefil og for å registrera ein ny database i %PRODUCTNAME." #. 2jPWg #: main.xhp @@ -9573,7 +9573,7 @@ "tit\n" "help.text" msgid "Menus" -msgstr "" +msgstr "Menyar" #. 2Cnz5 #: menubar.xhp @@ -9582,7 +9582,7 @@ "par_idN10552\n" "help.text" msgid "Menus" -msgstr "" +msgstr "Menyar" #. xRQaH #: menubar.xhp @@ -9591,7 +9591,7 @@ "par_idN10562\n" "help.text" msgid "In the database window, you see a new set of menu commands for working on the current database file." -msgstr "" +msgstr "I databasevindauget ser du eit nytt sett av menykommandoar for å arbeida på den gjeldande databasefila." #. ELZ6P #: menuedit.xhp @@ -9600,7 +9600,7 @@ "tit\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Rediger" #. EeRCy #: menuedit.xhp @@ -9609,7 +9609,7 @@ "par_idN1054D\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Rediger" #. pGydt #: menuedit.xhp @@ -9618,7 +9618,7 @@ "par_idN1055D\n" "help.text" msgid "The Edit menu of a database window." -msgstr "" +msgstr "Rediger-menyen i eit databasevindauge." #. 9Djqz #: menuedit.xhp @@ -9627,7 +9627,7 @@ "par_idN10560\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Kopier" #. foKkC #: menuedit.xhp @@ -9636,7 +9636,7 @@ "par_idN10564\n" "help.text" msgid "Copies the selected object to the clipboard." -msgstr "" +msgstr "Kopier det valde objektet til utklippstavla." #. rEEsQ #: menuedit.xhp @@ -9645,7 +9645,7 @@ "par_idN10567\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Lim inn" #. Go5ji #: menuedit.xhp @@ -9654,7 +9654,7 @@ "par_idN1056B\n" "help.text" msgid "Inserts an item from the clipboard. If you want, you can insert forms and reports, including subfolders, from one database file to another." -msgstr "" +msgstr "Limer inn eit element frå utklippstavla. Du kan lima inn skjema og rapportar, inkludert undermapper, frå ein database til ein annan." #. CU3BC #: menuedit.xhp @@ -9663,7 +9663,7 @@ "par_idN1056E\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Lim inn utval" #. AxkJA #: menuedit.xhp @@ -9672,7 +9672,7 @@ "par_idN10572\n" "help.text" msgid "Inserts an item from the clipboard. If you want, you can insert forms and reports, including subfolders, from one database file to another." -msgstr "" +msgstr "Limar inn eit element frå utklippstavla. Du kan lima inn skjema og rapportar, inkludert undermapper, frå ein database til ein annan." #. zGGGW #: menuedit.xhp @@ -9681,7 +9681,7 @@ "par_idN105D7\n" "help.text" msgid "Select All" -msgstr "" +msgstr "Merk alt" #. sL6Wv #: menuedit.xhp @@ -9690,7 +9690,7 @@ "par_idN105DB\n" "help.text" msgid "Selects all entries, including subfolders, in the lower part of the database window." -msgstr "" +msgstr "Vel alle oppføringane, inkludert undermapper, i den nedre delen av databasevindauget." #. LMbBp #: menuedit.xhp @@ -9699,7 +9699,7 @@ "hd_id3153683\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Rediger" #. MnMPd #: menuedit.xhp @@ -9708,7 +9708,7 @@ "par_id3147209\n" "help.text" msgid "Opens a window where you can edit the selected table, query, form, or report." -msgstr "" +msgstr "Opnar eit vindauge der du kan redigera den valde tabellen, spørjinga, skjemaet eller rapporten." #. NCnUw #: menuedit.xhp @@ -9717,7 +9717,7 @@ "hd_id3145315\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Slett" #. TmCdC #: menuedit.xhp @@ -9726,7 +9726,7 @@ "par_id3153666\n" "help.text" msgid "Deletes the selected table, query, form, or report." -msgstr "" +msgstr "Slettar den merkte tabellen, spørjinga, rapporten eller det merkte skjemaet." #. uuDM2 #: menuedit.xhp @@ -9735,7 +9735,7 @@ "par_idN1057C\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Gje nytt namn" #. 7W5uU #: menuedit.xhp @@ -9744,7 +9744,7 @@ "par_idN10580\n" "help.text" msgid "Renames the selected object. Depending on the database, some names, characters, and name length might be invalid." -msgstr "" +msgstr "Gjev nytt namn til det valde objektet. Avhengig av databasen kan nokre namn, teikn og namnelengder vera ugyldige." #. CGeTi #: menuedit.xhp @@ -9753,7 +9753,7 @@ "par_idN1058A\n" "help.text" msgid "Open" -msgstr "" +msgstr "Opna" #. 7NkEK #: menuedit.xhp @@ -9762,7 +9762,7 @@ "par_idN1058E\n" "help.text" msgid "Opens the selected object in the last saved state." -msgstr "" +msgstr "Opnar det valde objektet slik det sist vart lagra." #. GoDcA #: menuedit.xhp @@ -9771,7 +9771,7 @@ "par_idN10591\n" "help.text" msgid "Create as View" -msgstr "" +msgstr "Opprett som vising" #. sF34n #: menuedit.xhp @@ -9780,7 +9780,7 @@ "par_idN105A7\n" "help.text" msgid "Converts the selected query to a view. The original query remains in your database file and an additional view is generated on the database server. You must have write permission to add a view to a database." -msgstr "" +msgstr "Gjer om den valde spørjinga til ei vising. Den opphavlege spørjinga vert verande i databasefila og det nye utsnittet vert lagra på databasetenaren. Du må ha skriverettar i databasen for å leggja til ei vising." #. s7wwJ #: menuedit.xhp @@ -9789,7 +9789,7 @@ "par_idN105AA\n" "help.text" msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time." -msgstr "" +msgstr "Dei fleste databasar brukar spørjingar for å filtrera eller sortera databasetabellar for å visa oppføringar på datamaskinen. Visingar har den same funksjonaliteten som spørjingar, men på tenarsida. Viss databasen din er på ein tenar som støttar visingar, kan du bruka visingar til å filtrera oppføringar på tenaren for å gjera visingstida kortare." #. 7NDGC #: menuedit.xhp @@ -9798,7 +9798,7 @@ "par_idN105AD\n" "help.text" msgid "Form Wizard" -msgstr "" +msgstr "Skjemavegvisar" #. LZsjA #: menuedit.xhp @@ -9807,7 +9807,7 @@ "par_idN105B1\n" "help.text" msgid "Starts the Form Wizard for the selected table, query, or view." -msgstr "" +msgstr "Opnar skjemavegvisaren for den valde tabellen, spørjinga eller utsnittet." #. BUWRg #: menuedit.xhp @@ -9816,7 +9816,7 @@ "par_idN105C2\n" "help.text" msgid "Report Wizard" -msgstr "" +msgstr "Rapportvegvisaren" #. U7xE3 #: menuedit.xhp @@ -9825,7 +9825,7 @@ "par_idN105C6\n" "help.text" msgid "Starts the Report Wizard for the selected table, query, or view." -msgstr "" +msgstr "Opnar rapportvegvisaren for den valde tabellen, spørjinga eller utsnittet." #. yNkzG #: menuedit.xhp @@ -9834,7 +9834,7 @@ "par_idN105DE\n" "help.text" msgid "Database" -msgstr "" +msgstr "Database" #. EDR8A #: menuedit.xhp @@ -9843,7 +9843,7 @@ "par_idN105E2\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Opnar ein undermeny." #. wBPBE #: menuedit.xhp @@ -9852,7 +9852,7 @@ "par_idN105E5\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenskapar" #. xrED8 #: menuedit.xhp @@ -9861,7 +9861,7 @@ "par_idN105E9\n" "help.text" msgid "Opens the Database Properties dialog." -msgstr "" +msgstr "Opnar dialogvindauget for databaseeigenskapar." #. CFEiW #: menuedit.xhp @@ -9870,7 +9870,7 @@ "par_idN105EC\n" "help.text" msgid "Connection Type" -msgstr "" +msgstr "Tilkoplingstype" #. mhCAw #: menuedit.xhp @@ -9879,7 +9879,7 @@ "par_idN105F0\n" "help.text" msgid "Opens the Connection Type Wizard." -msgstr "" +msgstr "Opnar vegvisaren for tilkoplingstype." #. Rwk4Y #: menuedit.xhp @@ -9888,7 +9888,7 @@ "par_idN105F3\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Avanserte eigenskapar" #. SAkPC #: menuedit.xhp @@ -9897,7 +9897,7 @@ "par_idN105F7\n" "help.text" msgid "Opens the Advanced Properties dialog." -msgstr "" +msgstr "Opnar dialogvindauget for avanserte eigenskapar." #. 7BAav #: menufile.xhp @@ -9906,7 +9906,7 @@ "tit\n" "help.text" msgid "File" -msgstr "" +msgstr "Fil" #. wm7a2 #: menufile.xhp @@ -9915,7 +9915,7 @@ "par_idN1054D\n" "help.text" msgid "File" -msgstr "" +msgstr "Fil" #. WXK3P #: menufile.xhp @@ -9924,7 +9924,7 @@ "par_idN1055D\n" "help.text" msgid "The File menu of a database window. Only entries specific to databases are listed." -msgstr "" +msgstr "Fil-menyen i eit databasevindauge. Berre oppføringar som er spesifikke for databasar vert viste." #. 9qysH #: menufile.xhp @@ -9933,7 +9933,7 @@ "par_idN105C0\n" "help.text" msgid "Save" -msgstr "" +msgstr "Lagra" #. qTva3 #: menufile.xhp @@ -9942,7 +9942,7 @@ "par_idN105C4\n" "help.text" msgid "Saves the current database file, query, form or report. For the database file, you see the file save dialog. For the other objects, you see the Save dialog." -msgstr "" +msgstr "Lagrar den gjeldande databasefila, spørjinga, skjemaet eller rapporten. For databasefila kjem dialogvindauget fil lagra opp. For dei andre dialogvindauget Lagra." #. FAvuD #: menufile.xhp @@ -9951,7 +9951,7 @@ "par_idN105D5\n" "help.text" msgid "Save As" -msgstr "" +msgstr "Lagra som" #. LDiQh #: menufile.xhp @@ -9960,7 +9960,7 @@ "par_idN105D9\n" "help.text" msgid "Saves the current database file with another name. In the file save dialog, select a path and file name to save." -msgstr "" +msgstr "Lagrar den gjeldande databasefila med eit anna namn. Vel sti og filnamn i dialogvindauget fil lagra" #. s3muV #: menufile.xhp @@ -9969,7 +9969,7 @@ "par_idN105EA\n" "help.text" msgid "Export" -msgstr "" +msgstr "Eksporter" #. AXuZV #: menufile.xhp @@ -9978,7 +9978,7 @@ "par_idN105EE\n" "help.text" msgid "Exports the selected report or form to a text document. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Eksporterer den merkte rapporten eller det merkte skjemaet til eit tekstdokument. Ein dynamisk rapport vert eksportert som ein kopi av databasen på eksporttidspunktet." #. vdU9E #: menufile.xhp @@ -9987,7 +9987,7 @@ "par_idN105F1\n" "help.text" msgid "Send" -msgstr "" +msgstr "Send" #. GiW9D #: menufile.xhp @@ -9996,7 +9996,7 @@ "par_idN105F5\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Opnar ein undermeny." #. EAusx #: menufile.xhp @@ -10005,7 +10005,7 @@ "par_idN105F8\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "E-postdokument" #. Qxg2W #: menufile.xhp @@ -10014,7 +10014,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 "Opnar standardprogrammet for e-post for å senda ein ny e-post. Databasefila vert teke med som eit vedlegg. Du kan skriva inn emne, mottakarane og ein e-posttekst." #. 9WihT #: menufile.xhp @@ -10023,7 +10023,7 @@ "par_idN105FF\n" "help.text" msgid "Report as Email" -msgstr "" +msgstr "Rapport som e-post" #. XWAoV #: menufile.xhp @@ -10032,7 +10032,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 "Opnar standardprogrammet for e-post for å senda ein ny e-post. Den valde rapporten vert tatt med som eit vedlegg. Du kan skriva inn emne, mottakarar og ein e-posttekst. Ein dynamisk rapport vert lagt ved som ein kopi av databaseinnhaldet ved eksporttidspunktet." #. 9cSVg #: menufile.xhp @@ -10041,7 +10041,7 @@ "par_idN10606\n" "help.text" msgid "Report to Text Document" -msgstr "" +msgstr "Rapport til tekstdokument" #. SMD5C #: menufile.xhp @@ -10050,7 +10050,7 @@ "par_idN1060A\n" "help.text" msgid "Exports the selected report to a text document. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Eksporterer den valde rapporten til eit tekstdokument. Ein dynamisk rapport vert eksportert som ein kopi av databaseinnhaldet ved eksporttidspunktet." #. AhvCD #: menufilesave.xhp @@ -10059,7 +10059,7 @@ "tit\n" "help.text" msgid "Save" -msgstr "" +msgstr "Lagra" #. bMiRZ #: menufilesave.xhp @@ -10068,7 +10068,7 @@ "par_idN10547\n" "help.text" msgid "Save" -msgstr "" +msgstr "Lagra" #. BGNgM #: menufilesave.xhp @@ -10077,7 +10077,7 @@ "par_idN1054B\n" "help.text" msgid "In this dialog, you can specify the position and name of a form that you save within a database file. The dialog opens automatically when you save a form the first time." -msgstr "" +msgstr "I dette dialogvindauget kan du spesifisera plasseringa og namnet på eit skjema som du lagrar i ei databasefil. Dialogvindauget vert opna automatisk når du lagrar eit skjema første gongen." #. CDw7n #: menufilesave.xhp @@ -10086,7 +10086,7 @@ "par_idN10564\n" "help.text" msgid "Create New Directory" -msgstr "" +msgstr "Opprett ny mappe" #. LPGUc #: menufilesave.xhp @@ -10095,7 +10095,7 @@ "par_idN10568\n" "help.text" msgid "Click to create a new folder within the database file." -msgstr "" +msgstr "Trykk for å laga ei ny mappe i databasefila." #. P9r94 #: menufilesave.xhp @@ -10104,7 +10104,7 @@ "par_idN1057F\n" "help.text" msgid "Up One Level" -msgstr "" +msgstr "Eitt nivå opp" #. 3Es6N #: menufilesave.xhp @@ -10113,7 +10113,7 @@ "par_idN10583\n" "help.text" msgid "Click to go up one level in the folder hierarchy." -msgstr "" +msgstr "Trykk for å gå eitt nivå opp i mappehierarkiet." #. fsR7X #: menufilesave.xhp @@ -10122,7 +10122,7 @@ "par_idN1059A\n" "help.text" msgid "File name" -msgstr "" +msgstr "Filnamn" #. vgBAe #: menufilesave.xhp @@ -10131,7 +10131,7 @@ "par_idN1059E\n" "help.text" msgid "Enter the file name for the saved form." -msgstr "" +msgstr "Skriv inn filnamnet for det lagra skjemaet." #. AFEqC #: menufilesave.xhp @@ -10140,7 +10140,7 @@ "par_idN105B5\n" "help.text" msgid "Save" -msgstr "" +msgstr "Lagra" #. 48d8x #: menufilesave.xhp @@ -10149,7 +10149,7 @@ "par_idN105B9\n" "help.text" msgid "Click to save the form to the database file." -msgstr "" +msgstr "Klikk for å lagra skjemaet i databasefila." #. oxGKs #: menuinsert.xhp @@ -10158,7 +10158,7 @@ "tit\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Set inn" #. CETrU #: menuinsert.xhp @@ -10167,7 +10167,7 @@ "par_idN1054D\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Set inn" #. NAACF #: menuinsert.xhp @@ -10176,7 +10176,7 @@ "par_idN1055D\n" "help.text" msgid "The Insert menu of a database window." -msgstr "" +msgstr "«Set inn»-menyen i eit databasevindauge." #. JCkjX #: menuinsert.xhp @@ -10185,7 +10185,7 @@ "par_idN10560\n" "help.text" msgid "Form" -msgstr "" +msgstr "Skjema" #. FoJp3 #: menuinsert.xhp @@ -10194,7 +10194,7 @@ "par_idN10576\n" "help.text" msgid "Opens a new text document in form mode." -msgstr "" +msgstr "Opnar eit nytt tekstdokument i skjemamodus." #. Gfck8 #: menuinsert.xhp @@ -10203,7 +10203,7 @@ "par_idN1058B\n" "help.text" msgid "Report" -msgstr "" +msgstr "Rapport" #. MT4CQ #: menuinsert.xhp @@ -10212,7 +10212,7 @@ "par_idN1058F\n" "help.text" msgid "Starts the Report Builder window for the selected table, view, or query." -msgstr "" +msgstr "Startar Rapportbyggjaren for den valde tabellen, det valde utsnittet eller den valde spørjinga." #. 99GPr #: menuinsert.xhp @@ -10221,7 +10221,7 @@ "par_idN105A0\n" "help.text" msgid "Query (Design View)" -msgstr "" +msgstr "Spørjing (utformingsvising)" #. nSGAS #: menuinsert.xhp @@ -10230,7 +10230,7 @@ "par_idN105A4\n" "help.text" msgid "Opens a new query in design mode." -msgstr "" +msgstr "Opnar ei ny spørjing i utformingsmodus." #. HBCDy #: menuinsert.xhp @@ -10239,7 +10239,7 @@ "par_idN105A7\n" "help.text" msgid "Query (SQL View)" -msgstr "" +msgstr "Spørjing (SQL-vising)" #. xMKBY #: menuinsert.xhp @@ -10248,7 +10248,7 @@ "par_idN105AB\n" "help.text" msgid "Opens a new query in SQL mode." -msgstr "" +msgstr "Opnar ei ny spørjing i SQL-modus." #. hePEE #: menuinsert.xhp @@ -10257,7 +10257,7 @@ "par_idN105AE\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Tabellutforming" #. eSSzA #: menuinsert.xhp @@ -10266,7 +10266,7 @@ "par_idN105C4\n" "help.text" msgid "Opens the table design view." -msgstr "" +msgstr "Opnar visinga for utforming av tabellar." #. dDYAD #: menuinsert.xhp @@ -10275,7 +10275,7 @@ "par_idN105C7\n" "help.text" msgid "View Design" -msgstr "" +msgstr "Utsnittsutforming" #. E2CpK #: menuinsert.xhp @@ -10284,7 +10284,7 @@ "par_idN10669\n" "help.text" msgid "Opens a new view in design mode." -msgstr "" +msgstr "Opnar ei ny vising i utformingsmodus." #. EcAYG #: menuinsert.xhp @@ -10293,7 +10293,7 @@ "par_idN105E0\n" "help.text" msgid "View (Simple)" -msgstr "" +msgstr "Utsnitt (enkelt)" #. 5diz4 #: menuinsert.xhp @@ -10302,7 +10302,7 @@ "par_idN105F6\n" "help.text" msgid "Opens a new view in SQL mode." -msgstr "" +msgstr "Opnar ei ny vising i SQL-modus." #. UAFhR #: menuinsert.xhp @@ -10311,7 +10311,7 @@ "par_idN105F9\n" "help.text" msgid "Folder" -msgstr "" +msgstr "Mappe" #. KMLGR #: menuinsert.xhp @@ -10320,7 +10320,7 @@ "par_idN1060F\n" "help.text" msgid "Opens a dialog where you can save a new folder in the database file." -msgstr "" +msgstr "Opnar eit dialogvindauge der du kan lagra ei ny mappe i databasefila." #. eMZgB #: menutools.xhp @@ -10329,7 +10329,7 @@ "tit\n" "help.text" msgid "Tools" -msgstr "" +msgstr "Verktøy" #. icE2E #: menutools.xhp @@ -10338,7 +10338,7 @@ "par_idN1054D\n" "help.text" msgid "Tools" -msgstr "" +msgstr "Verktøy" #. 2XuD9 #: menutools.xhp @@ -10347,7 +10347,7 @@ "par_idN1055D\n" "help.text" msgid "The Tools menu of a database window." -msgstr "" +msgstr "Verktøy-menyen i eit databasevindauge." #. yQdGR #: menutools.xhp @@ -10356,7 +10356,7 @@ "par_idN10560\n" "help.text" msgid "Relationships" -msgstr "" +msgstr "Relasjonar" #. DKgXb #: menutools.xhp @@ -10365,7 +10365,7 @@ "par_idN10576\n" "help.text" msgid "Opens the Relation Design view and checks whether the database connection supports relations." -msgstr "" +msgstr "Opnar dialogvindauget Relasjonsutforming og ser etter om databasekoplinga støttar relasjonar." #. B2YV6 #: menutools.xhp @@ -10374,7 +10374,7 @@ "par_idN1058A\n" "help.text" msgid "User Administration" -msgstr "" +msgstr "Brukaradministrasjon" #. bBBaA #: menutools.xhp @@ -10383,7 +10383,7 @@ "par_idN1058E\n" "help.text" msgid "Opens the User Administration dialog if the database supports this feature." -msgstr "" +msgstr "Opnar dialogvindauget «Brukaradministrering» viss databasen støttar dette." #. VThyT #: menutools.xhp @@ -10392,7 +10392,7 @@ "hd_id3153880\n" "help.text" msgid "Table Filter" -msgstr "" +msgstr "Tabellfilter" #. koDKE #: menutools.xhp @@ -10401,7 +10401,7 @@ "par_id3153252\n" "help.text" msgid "Opens the Table Filter dialog where you can specify which tables of the database to show or to hide." -msgstr "" +msgstr "Opnar dialogvindauget «Tabellfilter» der du kan bestemma kva tabellar i databasen som skal vera synlege eller gøymde." #. YTER3 #: menutools.xhp @@ -10410,7 +10410,7 @@ "par_id3150670\n" "help.text" msgid "Select the tables that you want to filter in the Filter list." -msgstr "" +msgstr "Vel dei tabellane som du vil filtrera i lista Filter." #. ADDYD #: menutools.xhp @@ -10419,7 +10419,7 @@ "par_id3150985\n" "help.text" msgid "If you select the topmost table in a hierarchy, all of the tables in the hierarchy are selected." -msgstr "" +msgstr "Viss du vel den øvste tabellen i eit hierarki, vert alle tabellane i hierarkiet merkte." #. evFBu #: menutools.xhp @@ -10428,7 +10428,7 @@ "par_id3152349\n" "help.text" msgid "If you select a table that is at a lower level in the hierarchy, the tables that occur above it in the hierarchy are not selected." -msgstr "" +msgstr "Viss du vel ein tabell på eit lågare nivå i hierarkiet, vert tabellane over han i hierarkiet ikkje merkte." #. 4AdAz #: menutools.xhp @@ -10437,7 +10437,7 @@ "par_idN105BC\n" "help.text" msgid "SQL" -msgstr "" +msgstr "SQL" #. nwpGA #: menutools.xhp @@ -10446,7 +10446,7 @@ "par_idN105C0\n" "help.text" msgid "Opens the SQL dialog where you can enter SQL statements." -msgstr "" +msgstr "Opnar dialogvindauget «SQL», der du kan skriva inn SQL-setningar." #. CqteP #: menuview.xhp @@ -10455,7 +10455,7 @@ "tit\n" "help.text" msgid "View" -msgstr "" +msgstr "Vis" #. hK2VC #: menuview.xhp @@ -10464,7 +10464,7 @@ "par_idN1054D\n" "help.text" msgid "View" -msgstr "" +msgstr "Vis" #. 3Z8JA #: menuview.xhp @@ -10473,7 +10473,7 @@ "par_idN1055D\n" "help.text" msgid "The View menu of a database window." -msgstr "" +msgstr "«Vis»-menyen i eit databasevindauge." #. 2AidF #: menuview.xhp @@ -10482,7 +10482,7 @@ "par_idN10560\n" "help.text" msgid "Database Objects" -msgstr "" +msgstr "Databaseobjekt" #. 8Bvnx #: menuview.xhp @@ -10491,7 +10491,7 @@ "par_idN10564\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Opnar ein undermeny." #. ayFXZ #: menuview.xhp @@ -10500,7 +10500,7 @@ "par_idN10567\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Skjema" #. uByBf #: menuview.xhp @@ -10509,7 +10509,7 @@ "par_idN1056B\n" "help.text" msgid "Selects the forms container and shows all forms in the detail view." -msgstr "" +msgstr "Vel skjemabehaldaren og vis alle skjemaa i den detaljerte visinga." #. 8i64Y #: menuview.xhp @@ -10518,7 +10518,7 @@ "par_idN1056E\n" "help.text" msgid "Reports" -msgstr "" +msgstr "Rapportar" #. oBrpX #: menuview.xhp @@ -10527,7 +10527,7 @@ "par_idN10572\n" "help.text" msgid "Selects the reports container and shows all reports in the detail view." -msgstr "" +msgstr "Vel rapportbehaldaren og viser alle rapportane i den detaljerte visinga." #. 2BQEW #: menuview.xhp @@ -10536,7 +10536,7 @@ "par_idN10575\n" "help.text" msgid "Queries" -msgstr "" +msgstr "Spørjingar" #. eyZ6P #: menuview.xhp @@ -10545,7 +10545,7 @@ "par_idN10579\n" "help.text" msgid "Selects the queries container and shows all queries in the detail view." -msgstr "" +msgstr "Vel spørjingsplasshaldaren og viser alle spørjingane i den detaljerte visinga." #. Ytm9B #: menuview.xhp @@ -10554,7 +10554,7 @@ "par_idN1057C\n" "help.text" msgid "Tables" -msgstr "" +msgstr "Tabellar" #. Cy23D #: menuview.xhp @@ -10563,7 +10563,7 @@ "par_idN10580\n" "help.text" msgid "Selects the tables container and shows all tables in the detail view." -msgstr "" +msgstr "Vel tabellbehaldaren og viser alle tabellane i den detaljerte visinga." #. pjk7X #: menuview.xhp @@ -10572,7 +10572,7 @@ "par_idN10583\n" "help.text" msgid "Sort" -msgstr "" +msgstr "Sorter" #. eTkp4 #: menuview.xhp @@ -10581,7 +10581,7 @@ "par_idN10587\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Opnar ein undermeny." #. sDVoW #: menuview.xhp @@ -10590,7 +10590,7 @@ "par_idN1058A\n" "help.text" msgid "Ascending" -msgstr "" +msgstr "Stigande" #. Xojrk #: menuview.xhp @@ -10599,7 +10599,7 @@ "par_idN1058E\n" "help.text" msgid "Sorts the entries in the detail view in ascending order." -msgstr "" +msgstr "Sorter postane i detaljvisinga i stigande rekkjefølgje." #. BbycS #: menuview.xhp @@ -10608,7 +10608,7 @@ "par_idN10591\n" "help.text" msgid "Descending" -msgstr "" +msgstr "Synkande" #. vX7Fc #: menuview.xhp @@ -10617,7 +10617,7 @@ "par_idN10595\n" "help.text" msgid "Sorts the entries in the detail view in descending order." -msgstr "" +msgstr "Sorter postane i detaljvisinga i fallande rekkjefølgje." #. wXJzD #: menuview.xhp @@ -10626,7 +10626,7 @@ "par_idN10598\n" "help.text" msgid "Preview" -msgstr "" +msgstr "Førehandsvising" #. 3HEV9 #: menuview.xhp @@ -10635,7 +10635,7 @@ "par_idN1059C\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Opnar ein undermeny." #. yeDpx #: menuview.xhp @@ -10644,7 +10644,7 @@ "par_idN1059F\n" "help.text" msgid "None" -msgstr "" +msgstr "Ingen" #. GAT5A #: menuview.xhp @@ -10653,7 +10653,7 @@ "par_idN105B5\n" "help.text" msgid "Disables the preview in the database window." -msgstr "" +msgstr "Slår av førehandsvisinga i databasevindauget." #. gC6sB #: menuview.xhp @@ -10662,7 +10662,7 @@ "par_idN105B8\n" "help.text" msgid "Document Information" -msgstr "" +msgstr "Dokumentinformasjon" #. NJ2Q8 #: menuview.xhp @@ -10671,7 +10671,7 @@ "par_idN105BC\n" "help.text" msgid "The preview window displays the document information of a form or report." -msgstr "" +msgstr "Vindauget med førehandsvisinga viser dokumentinformasjonen for eit skjema eller ein rapport." #. KrBDr #: menuview.xhp @@ -10680,7 +10680,7 @@ "par_idN105BF\n" "help.text" msgid "Document" -msgstr "" +msgstr "Dokument" #. GE5Rx #: menuview.xhp @@ -10689,7 +10689,7 @@ "par_idN105C3\n" "help.text" msgid "The preview displays the document of a form or report." -msgstr "" +msgstr "Førehandsvisinga viser dokumentet til eit skjema eller ein rapport." #. yek7q #: menuview.xhp @@ -10698,7 +10698,7 @@ "par_idN105C6\n" "help.text" msgid "Refresh Tables" -msgstr "" +msgstr "Oppdater tabellar" #. 79t9N #: menuview.xhp @@ -10707,7 +10707,7 @@ "par_idN105CA\n" "help.text" msgid "Refreshes the tables. " -msgstr "" +msgstr "Oppdater tabellane." #. eDFFK #: tablewizard00.xhp @@ -10716,7 +10716,7 @@ "tit\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Tabellvegvisar" #. CU3Fy #: tablewizard00.xhp @@ -10725,7 +10725,7 @@ "bm_id6009094\n" "help.text" msgid "wizards;database tables (Base)Table Wizard (Base)" -msgstr "" +msgstr "vegvisarar;databasetabellar (Base)Tabellvegvisar (Base)" #. TStMh #: tablewizard00.xhp @@ -10734,7 +10734,7 @@ "par_idN1054C\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Tabellvegvisar" #. rBE4D #: tablewizard00.xhp @@ -10743,7 +10743,7 @@ "par_idN1055C\n" "help.text" msgid "The Table Wizard helps you to create a database table." -msgstr "" +msgstr "Tabellvegvisaren hjelper deg med å laga ein databasetabell." #. UBG57 #: tablewizard00.xhp @@ -10752,7 +10752,7 @@ "par_idN105AF\n" "help.text" msgid "Table Wizard - Select fields" -msgstr "" +msgstr "Tabellvegvisar → Vel felt" #. GgEVx #: tablewizard01.xhp @@ -10761,7 +10761,7 @@ "tit\n" "help.text" msgid "Table Wizard - Select Fields" -msgstr "" +msgstr "Tabellvegvisar → Vel felt" #. ZFKJc #: tablewizard01.xhp @@ -10770,7 +10770,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Select Fields" -msgstr "" +msgstr "Tabellvegvisar → Vel felt" #. 4HLFY #: tablewizard01.xhp @@ -10779,7 +10779,7 @@ "par_idN10556\n" "help.text" msgid "Select fields from the provided sample tables as a starting point to create your own table." -msgstr "" +msgstr "Vel felt frå dei innebygde eksempeltabellane som utgangspunkt for å laga din eigen tabell." #. csKoV #: tablewizard01.xhp @@ -10788,7 +10788,7 @@ "par_idN10559\n" "help.text" msgid "Business" -msgstr "" +msgstr "Næringsliv" #. TRDAu #: tablewizard01.xhp @@ -10797,7 +10797,7 @@ "par_idN1055D\n" "help.text" msgid "Select the business category to see only business sample tables." -msgstr "" +msgstr "Vel forretningskategorien for å berre sjå eksempel frå dette området." #. dCJP5 #: tablewizard01.xhp @@ -10806,7 +10806,7 @@ "par_idN10560\n" "help.text" msgid "Private" -msgstr "" +msgstr "Privat" #. 9fJfk #: tablewizard01.xhp @@ -10815,7 +10815,7 @@ "par_idN10564\n" "help.text" msgid "Select the private category to see only private sample tables." -msgstr "" +msgstr "Vel privatkategorien for berre å sjå private eksempeltabellar." #. dEiyC #: tablewizard01.xhp @@ -10824,7 +10824,7 @@ "par_idN10567\n" "help.text" msgid "Sample tables" -msgstr "" +msgstr "Eksempeltabellar" #. AhZXR #: tablewizard01.xhp @@ -10833,7 +10833,7 @@ "par_idN1056B\n" "help.text" msgid "Select one of the sample tables. Then select fields from that table from the left list box. Repeat this step until you have selected all the fields that you need." -msgstr "" +msgstr "Vel ein av eksempeltabellane. Vel så felt frå denne tabellen frå listeboksen til venstre. Gjenta dette heilt til du har alle felta du treng." #. jJf8M #: tablewizard01.xhp @@ -10842,7 +10842,7 @@ "par_idN1059E\n" "help.text" msgid "Selected Fields" -msgstr "" +msgstr "Valde felt" #. pj8q2 #: tablewizard01.xhp @@ -10851,7 +10851,7 @@ "par_idN105A4\n" "help.text" msgid "Displays all fields that will be included in the new table." -msgstr "" +msgstr "Viser alle felta som skal vera med i den nye tabellen." #. 4LVS2 #: tablewizard01.xhp @@ -10860,7 +10860,7 @@ "par_idN105A9\n" "help.text" msgid "Table Wizard - Set types and formats" -msgstr "" +msgstr "Tabellvegvisar → Set typar og format" #. EYiHW #: tablewizard02.xhp @@ -10869,7 +10869,7 @@ "tit\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "" +msgstr "Tabellvegvisar → Set typar og format" #. yC4de #: tablewizard02.xhp @@ -10878,7 +10878,7 @@ "par_idN10552\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "" +msgstr "Tabellvegvisar → Set typar og format" #. r3sex #: tablewizard02.xhp @@ -10887,7 +10887,7 @@ "par_idN10562\n" "help.text" msgid "Specifies the field information for your selected fields." -msgstr "" +msgstr "Spesifiserer feltinformasjonen for dei valde felta." #. GmqTu #: tablewizard02.xhp @@ -10896,7 +10896,7 @@ "par_idN10565\n" "help.text" msgid "Selected fields" -msgstr "" +msgstr "Valde felt" #. 3HRfy #: tablewizard02.xhp @@ -10905,7 +10905,7 @@ "par_idN10569\n" "help.text" msgid "Select a field in order to edit the field information." -msgstr "" +msgstr "Merk eit felt for å redigera feltinformasjonen." #. C6Hj6 #: tablewizard02.xhp @@ -10914,7 +10914,7 @@ "par_idN10574\n" "help.text" msgid "−" -msgstr "" +msgstr "−" #. uhA3i #: tablewizard02.xhp @@ -10923,7 +10923,7 @@ "par_idN10578\n" "help.text" msgid "Remove the selected field from the list box." -msgstr "" +msgstr "Fjern det merkte feltet frå listeboksen." #. bDhR7 #: tablewizard02.xhp @@ -10932,7 +10932,7 @@ "par_idN1057B\n" "help.text" msgid "+" -msgstr "" +msgstr "+" #. oRB9f #: tablewizard02.xhp @@ -10941,7 +10941,7 @@ "par_idN1057F\n" "help.text" msgid "Add a new data field to the list box." -msgstr "" +msgstr "Legg til eit nytt datafelt i listeboksen." #. t3DZP #: tablewizard02.xhp @@ -10950,7 +10950,7 @@ "par_idN10582\n" "help.text" msgid "Field information" -msgstr "" +msgstr "Feltinformasjon" #. 32RqX #: tablewizard02.xhp @@ -10959,7 +10959,7 @@ "par_idN10586\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Feltnamn" #. CemcB #: tablewizard02.xhp @@ -10968,7 +10968,7 @@ "par_idN1058A\n" "help.text" msgid "Displays the name of the selected data field. If you want, you can enter a new name." -msgstr "" +msgstr "Viser namnet på det merkte datafeltet. Om ønskjeleg kan du skriva inn eit nytt namn på feltet." #. iACxs #: tablewizard02.xhp @@ -10977,7 +10977,7 @@ "par_idN1058D\n" "help.text" msgid "Field type" -msgstr "" +msgstr "Felttype" #. FpeCt #: tablewizard02.xhp @@ -10986,7 +10986,7 @@ "par_idN10591\n" "help.text" msgid "Select a field type." -msgstr "" +msgstr "Vel ein felttype." #. dBDH3 #: tablewizard02.xhp @@ -10995,7 +10995,7 @@ "hd_id5486922\n" "help.text" msgid "AutoValue" -msgstr "" +msgstr "Autoverdi" #. mhvS4 #: tablewizard02.xhp @@ -11004,7 +11004,7 @@ "par_id4198736\n" "help.text" msgid "If set to Yes, the values for this data field are generated by the database engine." -msgstr "" +msgstr "Viss sett til «Ja», vert verdiane for dette datafeltet genererte av databasemotoren." #. c4BZi #: tablewizard02.xhp @@ -11013,7 +11013,7 @@ "par_idN106A0\n" "help.text" msgid "Entry required" -msgstr "" +msgstr "Krev innskriving" #. wEMRe #: tablewizard02.xhp @@ -11022,7 +11022,7 @@ "par_idN106A6\n" "help.text" msgid "If set to Yes, this field must not be empty." -msgstr "" +msgstr "Viss sett til «Ja» må dette feltet ikkje vera tomt." #. aEK5E #: tablewizard02.xhp @@ -11031,7 +11031,7 @@ "par_idN10594\n" "help.text" msgid "Length" -msgstr "" +msgstr "Lengd" #. 2XC9L #: tablewizard02.xhp @@ -11040,7 +11040,7 @@ "par_idN10598\n" "help.text" msgid "Specifies the number of characters for the data field." -msgstr "" +msgstr "Spesifiserer talet på teikn i datafeltet." #. 6BjNy #: tablewizard02.xhp @@ -11049,7 +11049,7 @@ "par_idN1059B\n" "help.text" msgid "Decimal places" -msgstr "" +msgstr "Desimalplassar" #. egEhC #: tablewizard02.xhp @@ -11058,7 +11058,7 @@ "par_idN1059F\n" "help.text" msgid "Specifies the number of decimal places for the data field. This option is only available for numerical or decimal data fields." -msgstr "" +msgstr "Spesifiserer talet på desimalar i datafeltet. Dette valet er berre tilgjengeleg for numeriske felt og desimalfelt." #. Nu72A #: tablewizard02.xhp @@ -11067,7 +11067,7 @@ "par_idN105A2\n" "help.text" msgid "Default value" -msgstr "" +msgstr "Standardverdi" #. 3GME6 #: tablewizard02.xhp @@ -11076,7 +11076,7 @@ "par_idN105A6\n" "help.text" msgid "Specifies the default value for a Yes/No field." -msgstr "" +msgstr "Spesifiserer standardverdien for eit «Ja/Nei»-felt." #. pJiM3 #: tablewizard02.xhp @@ -11085,7 +11085,7 @@ "par_idN10730\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "Auto-auking-uttrykk" #. FDNak #: tablewizard02.xhp @@ -11094,7 +11094,7 @@ "par_id6706747\n" "help.text" msgid "Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field. For example, the following MySQL statement used the AUTO_INCREMENT statement to increase the \"id\" field each time the statement creates a data field:" -msgstr "" +msgstr "Skriv inn SQL-kommandoen som fortel datakjelda at ho automatisk skal auka eit gjeve heiltalsdatafelt. For eksempel vil denne MySQL-setninga bruka «AUTO_INCREMENT»-uttrykket for å auka «id»-feltet kvar gong setninga lagar eit datafelt:" #. JETWU #: tablewizard02.xhp @@ -11103,7 +11103,7 @@ "par_id8946501\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" -msgstr "" +msgstr "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" #. 8FrJs #: tablewizard02.xhp @@ -11112,7 +11112,7 @@ "par_id4846949\n" "help.text" msgid "For this example, you must enter AUTO_INCREMENT into the Auto-increment statement box." -msgstr "" +msgstr "I dette dette eksempelet må du skriva inn AUTO_INCREMENT i setningsboksen for autoauke." #. c3dzF #: tablewizard02.xhp @@ -11121,7 +11121,7 @@ "par_idN105A9\n" "help.text" msgid "Table Wizard - Set primary key" -msgstr "" +msgstr "Tabellvegvisar → Angje primærnøkkel" #. 347MF #: tablewizard03.xhp @@ -11130,7 +11130,7 @@ "tit\n" "help.text" msgid "Table Wizard - Set Primary Key" -msgstr "" +msgstr "Tabellvegvisar → Angje primærnøkkel" #. NjMtW #: tablewizard03.xhp @@ -11139,7 +11139,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Set Primary Key" -msgstr "" +msgstr "Tabellvegvisar → Angje primærnøkkel " #. jbfcH #: tablewizard03.xhp @@ -11148,7 +11148,7 @@ "par_idN10556\n" "help.text" msgid "Specifies a field in the table to be used as a primary key." -msgstr "" +msgstr "Spesifiserer eit felt i tabellen som skal brukast som primærnøkkel." #. GAk3T #: tablewizard03.xhp @@ -11157,7 +11157,7 @@ "par_idN10559\n" "help.text" msgid "Create a primary key" -msgstr "" +msgstr "Lag ein primærnøkkel" #. jEViE #: tablewizard03.xhp @@ -11166,7 +11166,7 @@ "par_idN1055D\n" "help.text" msgid "Select to create a primary key. Add a primary key to every database table to uniquely identify each record. For some database systems within %PRODUCTNAME, a primary key is mandatory for editing the tables." -msgstr "" +msgstr "Merk av for å laga ein primærnøkkel. Dette legg til ein primærnøkkel til kvar databasetabell for å eintydig kunne identifisere kvar post. For nokre databasesystem i %PRODUCTNAME er ein primærnøkkel nødvendig for å redigera tabellane." #. ZEDQ9 #: tablewizard03.xhp @@ -11175,7 +11175,7 @@ "par_idN10560\n" "help.text" msgid "Automatically add a primary key" -msgstr "" +msgstr "Legg automatisk til ein primærnøkkel" #. oqASw #: tablewizard03.xhp @@ -11184,7 +11184,7 @@ "par_idN10564\n" "help.text" msgid "Select to automatically add a primary key as an additional field." -msgstr "" +msgstr "Merk av for å leggja til ein primærnøkkel automatisk som eit ekstra felt." #. JGWGR #: tablewizard03.xhp @@ -11193,7 +11193,7 @@ "par_idN10567\n" "help.text" msgid "Use an existing field as a primary key" -msgstr "" +msgstr "Bruk eit eksisterande felt som primærnøkkel" #. ndknB #: tablewizard03.xhp @@ -11202,7 +11202,7 @@ "par_idN1056B\n" "help.text" msgid "Select to use an existing field with unique values as a primary key." -msgstr "" +msgstr "Vel for å bruka eit eksisterande felt med unike verdiar som primærnøkkel." #. fMF7v #: tablewizard03.xhp @@ -11211,7 +11211,7 @@ "par_idN1056E\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Feltnamn" #. Z7naB #: tablewizard03.xhp @@ -11220,7 +11220,7 @@ "par_idN10572\n" "help.text" msgid "Select the field name." -msgstr "" +msgstr "Vel feltnamnet." #. bGGBe #: tablewizard03.xhp @@ -11229,7 +11229,7 @@ "par_idN10575\n" "help.text" msgid "Auto value" -msgstr "" +msgstr "Autoverdi" #. pFSnC #: tablewizard03.xhp @@ -11238,7 +11238,7 @@ "par_idN10579\n" "help.text" msgid "Select to automatically insert a value and increment the field's value for each new record. The database must support automatic incrementation in order to use the Auto value feature." -msgstr "" +msgstr "Vel for å setja inn ein verdi automatisk og auka feltverdien for alle nye postar. Databasen må ha støtte for automatisk auke for å bruka funksjonen Autoverdi." #. EuZFN #: tablewizard03.xhp @@ -11247,7 +11247,7 @@ "par_idN1057C\n" "help.text" msgid "Define primary key by several fields" -msgstr "" +msgstr "Definerer primærnøkkel ut frå fleire felt" #. 7AfGE #: tablewizard03.xhp @@ -11256,7 +11256,7 @@ "par_idN10580\n" "help.text" msgid "Select to create a primary key from a combination of several existing fields." -msgstr "" +msgstr "Vel for å laga ein primærnøkkel frå ein kombinasjon av fleire eksisterande felt." #. ymUtk #: tablewizard03.xhp @@ -11265,7 +11265,7 @@ "par_idN10583\n" "help.text" msgid "Available fields" -msgstr "" +msgstr "Tilgjengelege felt" #. sVEFU #: tablewizard03.xhp @@ -11274,7 +11274,7 @@ "par_idN10587\n" "help.text" msgid "Select a field and click > to add it to the list of primary key fields." -msgstr "" +msgstr "Merk eit felt og trykk «>» for å leggja det til i primærnøkkelfeltlista." #. yivEE #: tablewizard03.xhp @@ -11283,7 +11283,7 @@ "par_idN1059A\n" "help.text" msgid "Primary key fields" -msgstr "" +msgstr "Primærnøkkelfelt" #. XoNRs #: tablewizard03.xhp @@ -11292,7 +11292,7 @@ "par_idN1059E\n" "help.text" msgid "Select a field and click < to remove it from the list of primary key fields. The primary key is created as a concatenation of the fields in this list, from top to bottom." -msgstr "" +msgstr "Merk eit felt og klikk «<» for å fjerna det frå primærnøkkelfeltlista. Primærnøkkelen vert laga frå ei samanslåing av felta i lista, ovanfrå og nedover." #. GBnsP #: tablewizard03.xhp @@ -11301,7 +11301,7 @@ "par_idN105A1\n" "help.text" msgid "Table Wizard - Create table" -msgstr "" +msgstr "Tabellvegvisar → Lag tabell" #. GNFKT #: tablewizard04.xhp @@ -11310,7 +11310,7 @@ "tit\n" "help.text" msgid "Table Wizard - Create Table" -msgstr "" +msgstr "Tabellvegvisar → Lag tabell" #. VhZ3v #: tablewizard04.xhp @@ -11319,7 +11319,7 @@ "par_idN10543\n" "help.text" msgid "Table Wizard - Create Table" -msgstr "" +msgstr "Tabellvegvisar → Lag tabell" #. CEdhG #: tablewizard04.xhp @@ -11328,7 +11328,7 @@ "par_idN10553\n" "help.text" msgid "Enter a name for the table and specify whether you want to modify the table after the wizard is finished." -msgstr "" +msgstr "Skriv inn eit tabellnamn og spesifiser om du vil forandra tabellen når vegvisaren er ferdig." #. DYQqm #: tablewizard04.xhp @@ -11337,7 +11337,7 @@ "par_idN10556\n" "help.text" msgid "Table name" -msgstr "" +msgstr "Tabellnamn" #. XbyrT #: tablewizard04.xhp @@ -11346,7 +11346,7 @@ "par_idN1055A\n" "help.text" msgid "Specifies the table name." -msgstr "" +msgstr "Spesifiser tabellnamnet." #. ANGE9 #: tablewizard04.xhp @@ -11355,7 +11355,7 @@ "par_idN105E4\n" "help.text" msgid "Catalog of the table" -msgstr "" +msgstr "Katalogen til tabellen" #. EJ9oq #: tablewizard04.xhp @@ -11364,7 +11364,7 @@ "par_idN105EA\n" "help.text" msgid "Select the catalog for the table. (Available only if the database supports catalogs)" -msgstr "" +msgstr "Vel katalogen for tabellen. (Dette valet er berre tilgjengeleg viss databasen støttar katalogar)." #. 2ADuK #: tablewizard04.xhp @@ -11373,7 +11373,7 @@ "par_idN10605\n" "help.text" msgid "Schema of the table" -msgstr "" +msgstr "Skjemaet til tabellen" #. pfjij #: tablewizard04.xhp @@ -11382,7 +11382,7 @@ "par_idN1060B\n" "help.text" msgid "Select the schema for the table. (Available only if the database supports schemas)" -msgstr "" +msgstr "Vel skjemaet for tabellen. (Dette valet er berre tilgjengeleg viss databasen støttar skjema)." #. DEPmh #: tablewizard04.xhp @@ -11391,7 +11391,7 @@ "par_idN1055D\n" "help.text" msgid "Modify the table design" -msgstr "" +msgstr "Endra tabellutforminga" #. SgDTD #: tablewizard04.xhp @@ -11400,7 +11400,7 @@ "par_idN10561\n" "help.text" msgid "Select to save and edit the table design." -msgstr "" +msgstr "Vel for å lagra og redigera tabellutforminga." #. JBjXz #: tablewizard04.xhp @@ -11409,7 +11409,7 @@ "par_idN10564\n" "help.text" msgid "Insert data immediately" -msgstr "" +msgstr "Set inn data med ein gong" #. sFBFY #: tablewizard04.xhp @@ -11418,7 +11418,7 @@ "par_idN10568\n" "help.text" msgid "Select to save the table design and open the table to enter data." -msgstr "" +msgstr "Vel for å lagra tabellutforminga og opna tabellen for å skriva inn data." #. RBiFw #: tablewizard04.xhp @@ -11427,7 +11427,7 @@ "par_idN1056B\n" "help.text" msgid "Create a form based on this table" -msgstr "" +msgstr "Lag eit skjema basert på denne tabellen" #. LCcFV #: tablewizard04.xhp @@ -11436,7 +11436,7 @@ "par_idN1056F\n" "help.text" msgid "Select to create a form based on this table. The form is created on a text document with the last used settings of the Form Wizard." -msgstr "" +msgstr "Kryss av for å laga eit skjema basert på denne tabellen. Skjemaet vert laga i eit tekstdokument med dei sist brukte innstillingane i skjemavegvisaren." #. wHGrL #: tablewizard04.xhp @@ -11445,7 +11445,7 @@ "par_idN10580\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Tabellvegvisaren" #. PAxTq #: toolbars.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/00.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/00.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/00.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-05 10:40+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566334736.000000\n" #. 3B8ZN @@ -851,7 +851,7 @@ "par_id11525000863861\n" "help.text" msgid "EPUB is standard for electronic book files with the extension .epub that can be downloaded and read on devices like smartphones, tablets, computers, or e-readers." -msgstr "EPUB er standard for elektroniske bokfiler med filutvidinga .epub som kan lastast ned og lesast på utstyr som for eksempel smarttelefon, lesebrett, datamaskiner eller liknande." +msgstr "EPUB er standard for elektroniske bokfiler med filetternamnet .epub som kan lastast ned og lesast på utstyr som for eksempel smarttelefon, lesebrett, datamaskiner eller liknande." #. FDzf7 #: 00000002.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/01.po 2022-07-15 19:12:51.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: 2022-01-10 12:21+0100\n" -"PO-Revision-Date: 2022-05-22 12:46+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565284139.000000\n" #. 3u8hR @@ -2462,7 +2462,7 @@ "par_id3155892\n" "help.text" msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a *.doc or *.docx extension for $[officename] to use the appropriate filter." -msgstr "Pass på at filetternamnet svarar til filtypen til dokumentet. For eksempel må eit Microsoft Word-dokument ha filutvidinga .doc eller *.docx for at $[officename] skal kunna bruka rett filter." +msgstr "Pass på at filetternamnet svarar til filtypen til dokumentet. For eksempel må eit Microsoft Word-dokument ha filetternamnet .doc eller *.docx for at $[officename] skal kunna bruka rett filter." #. e5NCe #: 01020103.xhp @@ -49606,7 +49606,7 @@ "par_id971525023515891\n" "help.text" msgid "For custom metadata, you must provide a file with same name as the original filename and with extension as \".xmp\". The provided metadata will override the internal document metadata. In the example above, the custom metadata must exist in the MyText directory as MyText.xmp." -msgstr "For tilpassa metadata må du ha ei fil med det same namnet som det opphavlege filnamnet og med filutvidinga «.xmp». Dei innskrivne metadataa vil overskriva metadataa i det interne dokumentet. I eksempelet ovanfor må dei tilpassa metadataa finnast i mappa MinTekst som MinTekst.xmp." +msgstr "For tilpassa metadata må du ha ei fil med det same namnet som det opphavlege filnamnet og med filetternamnet «.xmp». Dei innskrivne metadataa vil overskriva metadataa i det interne dokumentet. I eksempelet ovanfor må dei tilpassa metadataa finnast i mappa MinTekst som MinTekst.xmp." #. hJcGh #: ref_epub_export.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/guide.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/shared/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/shared/guide.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-05-22 12:46+0000\n" +"PO-Revision-Date: 2022-06-06 18:38+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565441449.000000\n" #. iharT @@ -4082,7 +4082,7 @@ "par_id00tablehead\n" "help.text" msgid " Filter Name API Name Media Type (Extension) " -msgstr " Filternamne API-namn Mediatype (filutviding) " +msgstr " Filternamne API-namn Mediatype (filetternamn) " #. TDrTw #: convertfilters.xhp @@ -10636,7 +10636,7 @@ "hd_id7146824\n" "help.text" msgid "Automatic extension to the file name" -msgstr "Automatisk filutviding til filnamnet" +msgstr "Automatisk filetternamn til filnamnet" #. zjh6c #: doc_save.xhp @@ -18853,7 +18853,7 @@ "bm_id101608800218434\n" "help.text" msgid "paths;template filescategories;in templatesfile extensions;in templates" -msgstr "stiar;malfilerkategoriar;i malarfilutvidingar;i malar" +msgstr "stiar;malfilerkategoriar;i malarfiletternam;i malar" #. XoCwL #: manage_templates.xhp @@ -18898,7 +18898,7 @@ "par_id451607988966808\n" "help.text" msgid "The Template Manager recognizes template files by their file extension. The following extensions are recognized:" -msgstr "Malhandsamaren kjenner igjen malfiler ut frå filutvidinga. Desse utvidingane vert kjende igjen:" +msgstr "Malhandsamaren kjenner igjen malfiler ut frå filetternamnet. Desse utvidingane vert kjende igjen:" #. m82BQ #: manage_templates.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-03-13 21:39+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547658069.000000\n" #. S83CC @@ -104,7 +104,7 @@ "par_id31472951\n" "help.text" msgid "The Status bar displays \"3D scene selected\". The 3D scenes are built from objects which have dimensions in x, y, and z coordinates. Examples are the objects inserted by the 3D Objects toolbar, and rectangles, ellipses, or text that got created by the Rectangle, Ellipse, or Text icons left on the Drawing toolbar, or any Custom Shapes, and that got converted to 3D by using the context menu \"Convert - To 3D\". These 3D scenes can be entered (for example, by pressing F3), and the objects can be rotated in 3D. Microsoft Office doesn't know these real 3D objects. When exporting these 3D scenes to Microsoft Office formats, a snapshot of the current view will be exported as a bitmap. 3D bars in charts are of this type, too." -msgstr "Statuslinja viser «3D-scene vald». 3D-scener er bygd opp av objekt som har dimensjonane sett med x-, y- og z-koordinat. Eksempel på dette er objekt som er sett inn med verktøylinja for 3D-objekt, rektangel, ellipsar og tekst som er laga med rektangel-, ellipse- eller tekst-knappane til venstre på verktøylinja for teikning eller andre tilpassa figurar som er omforma til 3D med sprettoppmenyen «Gjer om til 3D». Desse 3D-scenene kan leggjast til, for eksempel ved at du trykkjer F3, og objekta kan roterast i 3D. Microsoft Office kan ikkje handtera desse 3D-objekta. Når desse scenene vert eksporterte til Microsoft Office-format, vert det gjeldande 3D-objektet byt ut med eit punktbilete. Det same gjeld 3D-stolpar i diagram." +msgstr "Statuslinja viser «3D-scene vald». 3D-scener er bygd opp av objekt som har dimensjonane sett med x-, y- og z-koordinat. Eksempel på dette er objekt som er sett inn med verktøylinja for 3D-objekt, rektangel, ellipsar og tekst som er laga med rektangel-, ellipse- eller tekst-knappane til venstre på verktøylinja for teikning eller andre tilpassa figurar som er omforma til 3D med sprettoppmenyen «Gjer om til 3D». Desse 3D-scenene kan leggjast til, for eksempel ved at du trykkjer F3, og objekta kan roterast i 3D. Microsoft Office kan ikkje handsama desse 3D-objekta. Når desse scenene vert eksporterte til Microsoft Office-format, vert det gjeldande 3D-objektet byt ut med eit punktbilete. Det same gjeld 3D-stolpar i diagram." #. xz9Bd #: 3d_create.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.3.4/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2022-07-15 19:12:51.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-06-04 13:10+0200\n" -"PO-Revision-Date: 2021-08-30 13:39+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1497373371.000000\n" #. kypzs @@ -302,7 +302,7 @@ "par_490\n" "help.text" msgid "Program blocks and lists are different" -msgstr "Programblokker og lister vert handterte ulikt" +msgstr "Programblokker og lister vert handsama ulikt" #. FLEGH #: LibreLogo.xhp diff -Nru libreoffice-7.3.4/translations/source/nn/sc/messages.po libreoffice-7.3.5/translations/source/nn/sc/messages.po --- libreoffice-7.3.4/translations/source/nn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-12 16:39+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563564342.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Vis" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Bilete" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Bilete" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Teikna" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Teikna" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Skriv ut" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Skriv ut" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Skjema" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Skjema" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Utviding" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "_Utviding" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Verktøy" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "V~erktøy" @@ -25702,139 +25702,139 @@ msgstr "_Bilete" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Still opp" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Farge" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Rutenett" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Språk" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Korrektur" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Merknadar" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Samanlikn" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Vis" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Teikna" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "R_edigér" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Still opp" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Vis" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Grupper" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Skrifttype" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Justering" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Vis" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Sett _inn" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Ramme" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Still opp" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Rutenett" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Vis" diff -Nru libreoffice-7.3.4/translations/source/nn/sd/messages.po libreoffice-7.3.5/translations/source/nn/sd/messages.po --- libreoffice-7.3.4/translations/source/nn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566133701.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabell" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Bilete" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Bilete" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Teikna" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Teikna" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Skjema" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Skjema" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Hovud" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Hovud" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ut_viding" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ut~viding" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verk_tøy" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Verk~tøy" @@ -7062,109 +7062,109 @@ msgstr "~Tabell" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Bilete" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "_Bilete" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Teikna" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Teikna" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Skjema" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Skjema" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Hovud" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Hovud" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "_3D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "~3D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Ut_viding" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Ut~viding" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verk_tøy" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Verktøy" diff -Nru libreoffice-7.3.4/translations/source/nn/sw/messages.po libreoffice-7.3.5/translations/source/nn/sw/messages.po --- libreoffice-7.3.4/translations/source/nn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-06 20:39+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562841891.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Flyttear den valde avsnittsstilen ein plass ned i indeks-hierarkiet." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilar" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Lagar oppføringar i register/innhaldslister ut frå spesifiserte avsnittsstilar." @@ -13955,37 +13955,37 @@ msgstr "Byt database" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Vel" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Databasar i bruk" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Tilgjengelege _databasar" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Bla gjennom …" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Opnar eit dialogvindauge der du kan velja ei databasefil (*.odb). Den valde fila vert lagd til i lista over tilgjengelege databasar." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Bruk «Bla gjennom»-knappen for å velja ei databasefil." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Viser databasane som er i bruk." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Lister ut dei databasane som er registrerte i %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Byt database" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database brukt i dokumentet:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Byt datakjelde for dokumentet." @@ -20073,109 +20073,109 @@ msgstr "Bruk _gjeldande dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Bruk det opne Writer-dokumentet som grunnlag for brevflettingsdokumentet." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Lag eit _nytt dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Lag eit nytt Writer-dokument som skal brukast til brevfletting." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Byrja med eit _eksisterande dokument" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Vel eit eksisterande Writer-dokument som grunnlag for brevflettingsdokumentet." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Byrja frå ein _mal" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Vel kva for mal du vil laga brevflettingsdokumentet ut frå." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Byrja frå eit _tidlegare lagra startdokument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Bruk eit eksisterande brevflettingsdokument som grunnlag for eit nytt brevflettingsdokument." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vel dokumentet." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Bla gjennom …" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Finn Writer-dokumentet du vil bruka, og klikk på Opna." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B_la gjennom …" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Opna eit dialogvindauge for å velja mal." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datakjelda til det gjeldande dokumentet er ikkje registrert. Byt database." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Byt database …" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Vel startdokument for brevflettinga" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Vel dokumentet du vil bruka som grunnlag for brevflettingsdokumentet." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Type" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Val" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Linjebryting" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlenkje" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kantlinjer" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Område" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Gjennomsikt" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27056,7 +27056,7 @@ msgstr "Oppdater" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Viser statistikk for den gjeldande fila." diff -Nru libreoffice-7.3.4/translations/source/nn/vcl/messages.po libreoffice-7.3.5/translations/source/nn/vcl/messages.po --- libreoffice-7.3.4/translations/source/nn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-02-06 20:39+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566134044.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Skriv ut fleire sider på kvart ark." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Tilpassa" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Bruk denne knappen for å bla gjennom sider." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sider:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Vel filformat." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ved" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Vel filformat." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marg:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Vel ein database og ein tabell." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mellom sider" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Avstand:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Vel ein database og ein tabell." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "til arkkanten" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Rekkjefølgje:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "venstre til høgre og ned" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Ovanfrå og ned, deretter mot høgre" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Ovanfrå og ned, deretter mot venstre" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Høgre til venstre og ned" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Vel ein database og ein tabell." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Teikna ein kant rundt kvar side" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Vel ein database og ein tabell." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosjyre" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Vel for å skriva ut dokumentet i brosjyreformat." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Førehandsvis sorteringa" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Endra oppstillinga av sider som skal skrivast ut på kvart papirark. Du kan sjå korleis oppstillinga vert på førehandsvisinga." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_eir" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sideutforming" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Generelt" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Skriv ut dokumentet, merkt tekst eller dei sidene du oppgjev. Du kan også setja opp utskriftsval for dokumentet." diff -Nru libreoffice-7.3.4/translations/source/nr/chart2/messages.po libreoffice-7.3.5/translations/source/nr/chart2/messages.po --- libreoffice-7.3.4/translations/source/nr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3733,7 +3733,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/cui/messages.po libreoffice-7.3.5/translations/source/nr/cui/messages.po --- libreoffice-7.3.4/translations/source/nr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17642,176 +17642,152 @@ msgid "Automatic" msgstr "N~gokuzenzakalela" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/dbaccess/messages.po libreoffice-7.3.5/translations/source/nr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/nr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3398,75 +3398,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Iziko ledatha Elifihlakeleko" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Kusetjenziswe Kungasikade" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3474,7 +3474,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/extensions/messages.po libreoffice-7.3.5/translations/source/nr/extensions/messages.po --- libreoffice-7.3.4/translations/source/nr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -305,579 +305,565 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Fumana" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posa" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL " #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Itheksithi:" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Istandadi (ubufitjhani)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Istandadi (ubufitjhani)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Istandadi (ubufitjhani)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Istandadi (ubude)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Khetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ILanga laNjesi" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Awa" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Iye" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Jama" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nganalitho" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Yinye" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vundlileko" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Jamileko" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Ok~onakeleko" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Kulungile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Sula" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Siza" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Ilayini yinye" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Ilayini ekanengi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Yenza amalayini amanengi ngokulungisa" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nganalitho" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vundlileko" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Jamileko" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Kokubili" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Spara" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ngesinceleni phezulu" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ngesinceleni phakathi" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ngesinceleli ngenzasi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Ngesidleni phezulu" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Ngesidleni phakathi" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Ngesidleni ngenzasi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ngehla ngesinceleni" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ngehla phakathi" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ngehla ngesidleni" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ngenzasi ngesinceleni" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ngenzasi phakathi" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ngenzasi ngesidleni" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Sekabeni" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Bulunga" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Jamiselela" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Rhirika" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Awa" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Faka emudeni" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ngesinceleni ukuya ngesidleni" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Ukusuka ngesidleni ukuya ngesinceleni" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Kanengi" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ukwenza Ipharagrafu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "NjengeKharektha" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ekhasini" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ukufreyimela" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ukwenza Ikharektha" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ekhasini" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/nr/fpicker/messages.po libreoffice-7.3.5/translations/source/nr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/nr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,61 +213,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Ibizo lefayili:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Umhlobo ~wefayili" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Fundwa kwaphela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Bulunga ngephaswed" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Ukukhulisa igama lefayili okuzenzakalelako" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Hlela ~ubujamo bezinga lokusebenza" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/sc/messages.po libreoffice-7.3.5/translations/source/nr/sc/messages.po --- libreoffice-7.3.4/translations/source/nr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26211,97 +26211,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26689,156 +26689,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Hlela" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Umbala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Gridi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ilimi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Imibono" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Umbono" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Hlela" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Hlela" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Umbono" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Iinqhema" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ifonti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Inqophiso" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Umbono" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Faka" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Isakhiwo" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Hlela" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Gridi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/nr/sd/messages.po libreoffice-7.3.5/translations/source/nr/sd/messages.po --- libreoffice-7.3.4/translations/source/nr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4269,109 +4269,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7240,109 +7240,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/sw/messages.po libreoffice-7.3.5/translations/source/nr/sw/messages.po --- libreoffice-7.3.4/translations/source/nr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10815,20 +10815,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Indlela:" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14448,39 +14448,39 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Hlathulula" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Z~uma ngethungelelwano..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14488,31 +14488,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20847,111 +20847,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Z~uma ngethungelelwano..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Z~uma ngethungelelwano..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23150,53 +23150,53 @@ msgstr "~Ilwazi ledatha" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Umhlobo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Ukukhetha" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Dlulisa igama" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ama-haephalink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Imikhawulo" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Khanyela" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28133,7 +28133,7 @@ msgstr "Lungisa" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nr/vcl/messages.po libreoffice-7.3.5/translations/source/nr/vcl/messages.po --- libreoffice-7.3.4/translations/source/nr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2355,171 +2355,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Umhkuba:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ngoku" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Amabhrotjha" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/chart2/messages.po libreoffice-7.3.5/translations/source/nso/chart2/messages.po --- libreoffice-7.3.4/translations/source/nso/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3728,7 +3728,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/cui/messages.po libreoffice-7.3.5/translations/source/nso/cui/messages.po --- libreoffice-7.3.4/translations/source/nso/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Pedi \n" @@ -17590,177 +17590,152 @@ msgid "Automatic" msgstr "Boitirišo" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~Phapano e phagamego" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/dbaccess/messages.po libreoffice-7.3.5/translations/source/nso/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/nso/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3423,75 +3423,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Datapeisi yeo e dikologilwego" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Dirišitšwego morago bjale" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Bula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3499,7 +3499,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/extensions/messages.po libreoffice-7.3.5/translations/source/nso/extensions/messages.po --- libreoffice-7.3.4/translations/source/nso/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,574 +304,560 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Hwetša" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Fetilego" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Sengwalwa" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Motheo (kopana)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Motheo (kopana)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Motheo (kopana)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Motheo (telele)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Kgetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Letšatšikgwedi la bjale" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Aowa" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ee" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Ema" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ga di gona" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "O tee" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Mohuta" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Rapamego" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Tsepamego" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Tirelwa" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Go lokile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Khansela" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Thušo" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Mothaladi o tee" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Methaladi e mentši" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Methaladi e mentši e nago le go fometa" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ga di gona" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Rapamego" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Tsepamego" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Bobedi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Papetla" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Lanngele godimo" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Lanngele bogareng" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Lanngele tlase" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Lagoja godimo" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Lagoja bogareng" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Lagoja tlase" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Godimo go lanngele" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Godimo bogareng" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Godimo go lagoja" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Tlase go lagoja" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Tlase bogareng" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Tlase go lagoja" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Beilwe gare" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Boloka" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Tšeela legato" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Phuhlama" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Aowa" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Lekantšha mothalading" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "La nngele go ya go la go ja" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "La go ja go ya go la nngele" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Šomiša dipeakanyo tša go akaretša" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Ka mehla" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Go Temana" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "E le tlhaka" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Go letlakala" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Go foreimi" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Go tlhaka" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Go letlakala" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/nso/fpicker/messages.po libreoffice-7.3.5/translations/source/nso/fpicker/messages.po --- libreoffice-7.3.4/translations/source/nso/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -218,61 +218,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Leina la faele:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Mohu~ta wa faele:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Bala feela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Boloka ka lentšuph~etišo" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Koketšo ya leina la faele ya boitirišo" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Lokiš~a dipeakanyo tša filthara" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/sc/messages.po libreoffice-7.3.5/translations/source/nso/sc/messages.po --- libreoffice-7.3.4/translations/source/nso/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26124,97 +26124,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26603,158 +26603,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Beakanya" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Mmala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Kriti" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Leleme" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Poeletšo" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Ditshwaotshwao" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Tebelelo" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Lokiša" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Beakanya" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Tebelelo" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Dihlopha" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fonte" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Tsepanyo" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Tebelelo" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Tsenya" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Mmediya" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Foreimi" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Beakanya" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Kriti" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/nso/sd/messages.po libreoffice-7.3.5/translations/source/nso/sd/messages.po --- libreoffice-7.3.4/translations/source/nso/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4241,109 +4241,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7225,109 +7225,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/sw/messages.po libreoffice-7.3.5/translations/source/nso/sw/messages.po --- libreoffice-7.3.4/translations/source/nso/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10765,20 +10765,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Ditaele" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14359,38 +14359,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Hlalosa" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Praosa..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14398,31 +14398,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20730,111 +20730,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Praosa..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Praosa..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23019,50 +23019,50 @@ msgstr "Sedirišwa" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Mohuta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Dikgetho" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Phuthela" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Lomaganyo-kgolo" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Mellwane" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Lefelo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ponagatšo" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makhro" @@ -27953,7 +27953,7 @@ msgstr "Mpshafatša" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/nso/vcl/messages.po libreoffice-7.3.5/translations/source/nso/vcl/messages.po --- libreoffice-7.3.4/translations/source/nso/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/nso/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2345,170 +2345,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Setlwaedi" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ka" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Diporoutšhara" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/oc/chart2/messages.po libreoffice-7.3.5/translations/source/oc/chart2/messages.po --- libreoffice-7.3.4/translations/source/oc/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-20 04:10+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556857465.000000\n" #. NCRDD @@ -3604,7 +3604,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/oc/cui/messages.po libreoffice-7.3.5/translations/source/oc/cui/messages.po --- libreoffice-7.3.4/translations/source/oc/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556857952.000000\n" #. GyY9M @@ -5176,7 +5176,7 @@ #: cui/uiconfig/ui/areatabpage.ui:106 msgctxt "areatabpage|btnbitmap" msgid "Image" -msgstr "" +msgstr "Imatge" #. ELAno #: cui/uiconfig/ui/areatabpage.ui:112 @@ -8908,7 +8908,7 @@ #: cui/uiconfig/ui/entrycontextmenu.ui:52 msgctxt "entrycontextmenu|restoreDefault" msgid "Restore _Default Command" -msgstr "" +msgstr "Restablir la comanda per _defaut" #. FoFqz #: cui/uiconfig/ui/eventassigndialog.ui:8 @@ -17134,176 +17134,152 @@ msgid "Automatic" msgstr "Automatic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contraste elevat" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxigèn" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_til de las icònas :" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Ajustatz mai de tèmas d’icònas via las extensions" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estil d’icònas" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Reaviada necessària" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utilizar l'acceleracion _materiala" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Utilizar lo lissat_ge" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Rendut dels imatges" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "_Afichar l'apercebut de las poliças" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "_Lissar la poliça d'ecran" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "a _partir de :" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas de las poliças" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" @@ -18605,113 +18581,113 @@ #: cui/uiconfig/ui/qrcodegen.ui:115 msgctxt "qrcodegen|edit_name" msgid "www.libreoffice.org" -msgstr "" +msgstr "oc.libreoffice.org" #. DnXM6 #: cui/uiconfig/ui/qrcodegen.ui:118 msgctxt "qr text" msgid "The text from which to generate the code." -msgstr "" +msgstr "Lo tèxte del qual se deu generar lo còdi." #. 4FXDa #. Text to be stored in the QR #: cui/uiconfig/ui/qrcodegen.ui:132 msgctxt "qrcodegen|label_text" msgid "URL/Text:" -msgstr "" +msgstr "URL o tèxte :" #. FoKEY #. Set Margin around QR #: cui/uiconfig/ui/qrcodegen.ui:147 msgctxt "qrcodegen|label_margin" msgid "Margin:" -msgstr "" +msgstr "Marges :" #. cBGCb #. Select type #: cui/uiconfig/ui/qrcodegen.ui:162 msgctxt "qrcodegen|label_type" msgid "Type:" -msgstr "" +msgstr "Tipe :" #. QaD48 #: cui/uiconfig/ui/qrcodegen.ui:179 msgctxt "qrcodegen|QrCode" msgid "QR Code" -msgstr "" +msgstr "Còdi QR" #. HGShQ #: cui/uiconfig/ui/qrcodegen.ui:180 msgctxt "qrcodegen|BarCode" msgid "Barcode" -msgstr "" +msgstr "Còdi de barras" #. C3VYY #: cui/uiconfig/ui/qrcodegen.ui:184 msgctxt "type" msgid "The type of code to generate." -msgstr "" +msgstr "Lo tipe de còdi de generar." #. 8QtFq #. Error Correction Level of QR code #: cui/uiconfig/ui/qrcodegen.ui:205 msgctxt "qrcodegen|label_ecc" msgid "Error correction:" -msgstr "" +msgstr "Correccion d’error :" #. SPWn3 #: cui/uiconfig/ui/qrcodegen.ui:237 msgctxt "edit margin" msgid "The margin surrounding the code." -msgstr "" +msgstr "Lo marge qu’enròda lo còdi." #. vUJPT #: cui/uiconfig/ui/qrcodegen.ui:254 msgctxt "qrcodegen|ErrorCorrection" msgid "Low" -msgstr "" +msgstr "Febla" #. GeYR9 #: cui/uiconfig/ui/qrcodegen.ui:266 msgctxt "button_low" msgid "7% of codewords can be restored." -msgstr "" +msgstr "7% dels còdis se pòdon restaurar." #. 2gaf5 #: cui/uiconfig/ui/qrcodegen.ui:277 msgctxt "qrcodegen|ErrorCorrection" msgid "Medium" -msgstr "" +msgstr "Mejana" #. 3A5XB #: cui/uiconfig/ui/qrcodegen.ui:289 msgctxt "button_medium" msgid "15% of codewords can be restored." -msgstr "" +msgstr "15% dels còdis se pòdon restaurar." #. GBf3R #: cui/uiconfig/ui/qrcodegen.ui:300 msgctxt "qrcodegen|ErrorCorrection" msgid "Quartile" -msgstr "" +msgstr "Quartil" #. x4g64 #: cui/uiconfig/ui/qrcodegen.ui:312 msgctxt "button_quartile" msgid "25% of codewords can be restored." -msgstr "" +msgstr "25% dels còdis se pòdon restaurar." #. WS3ER #: cui/uiconfig/ui/qrcodegen.ui:323 msgctxt "qrcodegen|ErrorCorrection" msgid "High" -msgstr "" +msgstr "Fòrta" #. A2TRN #: cui/uiconfig/ui/qrcodegen.ui:335 msgctxt "button_high" msgid "30% of codewords can be restored." -msgstr "" +msgstr "30 dels còdis se pòdon restaurar." #. VCCGD #: cui/uiconfig/ui/qrcodegen.ui:356 diff -Nru libreoffice-7.3.4/translations/source/oc/dbaccess/messages.po libreoffice-7.3.5/translations/source/oc/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/oc/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-13 18:38+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565088682.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Crear una _novèla basa de donadas" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Basa de donadas integrada :" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Dobrir un _fichièr de basa de donadas existent" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Utilizats _recentament :" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Dobrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connectar una basa de donadas e_xistenta" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/oc/dictionaries/en/dialog.po libreoffice-7.3.5/translations/source/oc/dictionaries/en/dialog.po --- libreoffice-7.3.4/translations/source/oc/dictionaries/en/dialog.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/dictionaries/en/dialog.po 2022-07-15 19:12:51.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: 2015-04-18 09:18+0000\n" -"Last-Translator: Cédric Valmary \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Quentin PAGÈS \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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1429348709.000000\n" #. fyB4s @@ -302,7 +302,7 @@ "hlp_metric\n" "property.text" msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles." -msgstr "Mesura de conversion de F, mph, ft, in, lb, gal et miles." +msgstr "Mesura de conversion de F, mph, ft, in, lb, gal e miles." #. xrxso #: en_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/oc/extensions/messages.po libreoffice-7.3.5/translations/source/oc/extensions/messages.po --- libreoffice-7.3.4/translations/source/oc/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-20 04:10+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556858024.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Refrescar lo formulari" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Obténer" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Mandar" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tèxte" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Estandard (cort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Estandard (cort AA)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Estandard (cort AAAA)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Estandard (long)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "JJ/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/JJ/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/JJ" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "JJ/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/JJ/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/JJ" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-JJ" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-JJ" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 de tantòst" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 de tantòst" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Pas seleccionat" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seleccionat" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Pas definit" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Totes los enregistraments" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Enregistrament actiu" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pagina actuala" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Non" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Òc" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulari parent" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_void" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_siá-meteis" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_naut" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Pas cap" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Simple" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multiple" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Plaja" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Orizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Per defaut" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "D'acòrdi" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Anullar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "L'entrada seleccionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posicion de l'entrada seleccionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Linha simpla" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Linhas multiplas" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multilinha amb formatatge" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Pas cap" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Orizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambedoas" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Amont a esquèrra" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "A esquèrra centrat" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Aval a esquèrra" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Amont a dreita" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "A dreita centrat" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Aval a dreita" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "En dessús a esquèrra" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "En dessús centrat" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "En dessús a dreita" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Aval a esquèrra" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "En dejós centrat" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "En dejós a dreita" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrat" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Conservar" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Remplaçar" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Reduire" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Non" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Conservar las proporcions" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajustar a la talha" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "D'esquèrra cap a dreita" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De dreita cap a esquèrra" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizar los paramètres de l'objècte superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Jamai" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Quand i a lo focus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Totjorn" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Al paragraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Coma caractèr" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A la pagina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Al quadre" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Al caractèr" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A la pagina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "A la cellula" diff -Nru libreoffice-7.3.4/translations/source/oc/filter/messages.po libreoffice-7.3.5/translations/source/oc/filter/messages.po --- libreoffice-7.3.4/translations/source/oc/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-01-25 11:19+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1556858078.000000\n" #. 5AQgJ @@ -1432,7 +1432,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:68 msgctxt "pdfviewpage|outline" msgid "Outl_ine and page" -msgstr "" +msgstr "Ense_nhador e pagina" #. JAAHm #: filter/uiconfig/ui/pdfviewpage.ui:77 @@ -1774,7 +1774,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:41 msgctxt "xmlfiltersettings|extended_tip|help" msgid "Displays the help page for this dialog." -msgstr "" +msgstr "Afichar la pagina d’ajuda d’aquesta fenèstra de dialòg." #. CmVSC #: filter/uiconfig/ui/xmlfiltersettings.ui:63 diff -Nru libreoffice-7.3.4/translations/source/oc/formula/messages.po libreoffice-7.3.5/translations/source/oc/formula/messages.po --- libreoffice-7.3.4/translations/source/oc/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2021-12-21 17:54+0100\n" +"PO-Revision-Date: 2022-07-01 13:01+0200\n" "Last-Translator: Quentin PAGÈS \n" -"Language-Team: Occitan \n" +"Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1869,7 +1869,7 @@ #: formula/inc/core_resource.hrc:2590 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "QUARTILE" -msgstr "QUARTILE" +msgstr "QUARTIL" #. s6cqj #: formula/inc/core_resource.hrc:2591 diff -Nru libreoffice-7.3.4/translations/source/oc/fpicker/messages.po libreoffice-7.3.5/translations/source/oc/fpicker/messages.po --- libreoffice-7.3.4/translations/source/oc/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-06-18 21:47+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" @@ -216,55 +216,55 @@ msgstr "Data de modificacion" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Dobrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Lectura" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nom del fichièr :" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipe de fichièr :" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "En _lectura sola" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Enregistrar amb un senhal" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Extension automatica del nom de fichièr" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar los _paramètres del filtre" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Chifrar amb una clau GPG" diff -Nru libreoffice-7.3.4/translations/source/oc/sc/messages.po libreoffice-7.3.5/translations/source/oc/sc/messages.po --- libreoffice-7.3.4/translations/source/oc/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-02-19 10:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:58+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556858243.000000\n" #. kBovX @@ -4904,7 +4904,7 @@ #: sc/inc/scfuncs.hrc:449 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 "Calcula lo montant total de cada remborsament periodic d'un investiment amb remborsaments et taus d'interès constants." +msgstr "Calcula lo montant total de cada remborsament periodic d'un investiment amb remborsaments e taus d'interès constants." #. FBNre #: sc/inc/scfuncs.hrc:450 @@ -25240,97 +25240,97 @@ msgstr "~Afichatge" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_atge" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Dessenha_r" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessenhar" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objècte" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimir" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Imprimir" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulari" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Aisinas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Aisinas" @@ -25689,139 +25689,139 @@ msgstr "Im_atge" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Organizar" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grasilha" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Lenga" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revision" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentaris" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Co_mparar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Veire" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Dessenha_r" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Organi_zar" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Veire" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Agro_par" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Poliça" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alinhament" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Veire" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inserir" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Mèdia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Quad_re" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Organi_zar" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grasilha" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Veire" diff -Nru libreoffice-7.3.4/translations/source/oc/scp2/source/ooo.po libreoffice-7.3.5/translations/source/oc/scp2/source/ooo.po --- libreoffice-7.3.4/translations/source/oc/scp2/source/ooo.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/scp2/source/ooo.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-05-12 07:38+0000\n" -"Last-Translator: Cédric Valmary \n" -"Language-Team: Occitan \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Quentin PAGÈS \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542024495.000000\n" #. CYBGJ @@ -4982,7 +4982,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_NO\n" "LngText.text" msgid "Norwegian (Nynorsk and Bokmal) spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Diccionaris ortografic, dels sinonims e règlas de copadura de mots norvegians (Nynorsk et Bokmal)" +msgstr "Diccionaris ortografic, dels sinonims e règlas de copadura de mots norvegians (Nynorsk e Bokmal)" #. FDCJV #: module_ooo.ulf diff -Nru libreoffice-7.3.4/translations/source/oc/sd/messages.po libreoffice-7.3.5/translations/source/oc/sd/messages.po --- libreoffice-7.3.4/translations/source/oc/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557838643.000000\n" #. WDjkB @@ -4171,109 +4171,109 @@ msgstr "~Tablèu" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessenhar" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimèdia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtension" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Aisinas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Aisinas" @@ -7060,109 +7060,109 @@ msgstr "~Tablèu" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imatge" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Imat~ge" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Dessenhar" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimèdia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulari" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtension" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Aisinas" diff -Nru libreoffice-7.3.4/translations/source/oc/sfx2/messages.po libreoffice-7.3.5/translations/source/oc/sfx2/messages.po --- libreoffice-7.3.4/translations/source/oc/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540151083.000000\n" #. bHbFE @@ -4829,7 +4829,7 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:33 msgctxt "tabbar|unlocktaskpanel" msgid "Undock" -msgstr "" +msgstr "Destacar" #. jXux4 #: sfx2/uiconfig/ui/tabbarcontents.ui:42 @@ -4847,7 +4847,7 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:66 msgctxt "tabbar|restoredefault" msgid "Restore Default" -msgstr "" +msgstr "Restablir las valors per defaut" #. DBWZf #: sfx2/uiconfig/ui/tabbarcontents.ui:98 diff -Nru libreoffice-7.3.4/translations/source/oc/sw/messages.po libreoffice-7.3.5/translations/source/oc/sw/messages.po --- libreoffice-7.3.4/translations/source/oc/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557839363.000000\n" #. v3oJv @@ -10496,19 +10496,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estils" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13952,37 +13952,37 @@ msgstr "Cambiar de basa de donadas" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definicion" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Basas de donadas en utilizacion" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Basas de donadas _disponiblas" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Percórrer..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13992,31 +13992,31 @@ "Vos cal utilizar lo boton de navigacion per seleccionar un fichièr de basa de donadas." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Cambiar de basa de donadas" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "La basa de donadas ligada al document:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -18159,7 +18159,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:248 msgctxt "labeloptionspage|extended_tip|setup" msgid "Opens the Printer Setup dialog." -msgstr "" +msgstr "Dobrir la fenèstra de Paramètres de l’imprimenta." #. ePWUe #: sw/uiconfig/swriter/ui/labeloptionspage.ui:262 @@ -18195,7 +18195,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:111 msgctxt "linenumbering|extended_tip|shownumbering" msgid "Adds line numbers to the current document." -msgstr "" +msgstr "Ajusta un numèro de linha al document actual." #. GCj2M #: sw/uiconfig/swriter/ui/linenumbering.ui:147 @@ -18309,7 +18309,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:399 msgctxt "linenumbering|extended_tip|textentry" msgid "Enter the text that you want to use as a separator." -msgstr "" +msgstr "Picatz lo tèxte que volètz utilizar coma separador." #. Cugqr #: sw/uiconfig/swriter/ui/linenumbering.ui:422 @@ -18381,7 +18381,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:45 msgctxt "extended_tip|displayname" msgid "Enter your name." -msgstr "" +msgstr "Picatz vòstre nom." #. Sqhr9 #: sw/uiconfig/swriter/ui/mailconfigpage.ui:63 @@ -18849,31 +18849,31 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:12 msgctxt "readonlymenu|STR_UPDATE" msgid "_Update" -msgstr "" +msgstr "_Actualizar" #. MUFyx #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:22 msgctxt "mastercontextmenu|STR_UPDATE_SEL" msgid "Selection" -msgstr "" +msgstr "Seleccion" #. Xv4Q8 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:30 msgctxt "mastercontextmenu|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "" +msgstr "Indèxes" #. NekK7 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:38 msgctxt "mastercontextmenu|STR_UPDATE_SEL" msgid "Links" -msgstr "" +msgstr "Ligams" #. RiguA #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:46 msgctxt "mastercontextmenu|STR_UPDATE_ALL" msgid "All" -msgstr "" +msgstr "Tot" #. kxEdV #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:58 @@ -18915,7 +18915,7 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:108 msgctxt "mastercontextmenu|STR_INSERT_TEXT" msgid "Text" -msgstr "" +msgstr "Tèxte" #. diCCN #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:126 @@ -19731,7 +19731,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:148 msgctxt "mmresultprintdialog|extended_tip|printersettings" msgid "Changes the printer properties." -msgstr "" +msgstr "Modificar las proprietats de l’imprimenta." #. ScCmz #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:163 @@ -20070,109 +20070,109 @@ msgstr "Utilizar lo _document actiu" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crear un document no_vèl" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Utilizar un document _existent" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Partir d'un _modèl" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Partir d'un document enregistrat _recentament" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Pe_rcórrer..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Pe_rcórrer..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Seleccionar lo document de despart per lo publipostatge" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22315,49 +22315,49 @@ msgstr "Objècte" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipe" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcions" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Adaptar" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Iperligam" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordaduras" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Zòna" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparéncia" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -24812,7 +24812,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:443 msgctxt "picturepage|label16" msgid "Image Information" -msgstr "" +msgstr "Informacion de l’imatge" #. UFDyD #: sw/uiconfig/swriter/ui/picturepage.ui:458 @@ -25245,7 +25245,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:533 msgctxt "extended_tip|PrintOptionsPage" msgid "Specifies print settings within a text or HTML document." -msgstr "" +msgstr "Indica los paramètres d’impression d’un document tèxte o HTML." #. APhFB #: sw/uiconfig/swriter/ui/privateuserpage.ui:26 @@ -25287,7 +25287,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:101 msgctxt "privateuserpage|faxft" msgid "Homepage/email:" -msgstr "" +msgstr "Site web / Corrièl :" #. 679ut #: sw/uiconfig/swriter/ui/privateuserpage.ui:126 @@ -25299,7 +25299,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:127 msgctxt "extended tip | firstname" msgid "Type your first name." -msgstr "" +msgstr "Picatz vòstre pichon nom." #. PMz3U #: sw/uiconfig/swriter/ui/privateuserpage.ui:145 @@ -25311,7 +25311,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:146 msgctxt "extended tip | lastname" msgid "Type your last name." -msgstr "" +msgstr "Picatz vòstre nom." #. V5DfK #: sw/uiconfig/swriter/ui/privateuserpage.ui:164 @@ -25323,7 +25323,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:165 msgctxt "extended tip | shortname" msgid "Type your initials." -msgstr "" +msgstr "Picatz vòstras inicialas." #. V9RgF #: sw/uiconfig/swriter/ui/privateuserpage.ui:196 @@ -25341,13 +25341,13 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:215 msgctxt "privateuserpage|job-atkobject" msgid "Position" -msgstr "Posicion" +msgstr "Pòst" #. 9wRE5 #: sw/uiconfig/swriter/ui/privateuserpage.ui:216 msgctxt "extended tips | job" msgid "Type your profession" -msgstr "" +msgstr "Picatz vòstre mestièr" #. 344nc #: sw/uiconfig/swriter/ui/privateuserpage.ui:246 @@ -25383,7 +25383,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:299 msgctxt "extended tip | email" msgid "Type your email address." -msgstr "" +msgstr "Picatz vòstra adreça electronica." #. Qxb4Q #: sw/uiconfig/swriter/ui/privateuserpage.ui:318 @@ -25401,7 +25401,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:344 msgctxt "extended tips | firstname2" msgid "Type your first name" -msgstr "" +msgstr "Picatz vòstre nom" #. rDNHk #: sw/uiconfig/swriter/ui/privateuserpage.ui:362 @@ -27051,7 +27051,7 @@ msgstr "Actualizar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" @@ -29719,54 +29719,54 @@ #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:8 msgctxt "wordcount-mobile|WordCountDialog" msgid "Word Count" -msgstr "" +msgstr "Nombre de mots" #. CivM9 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:82 msgctxt "wordcount-mobile|label9" msgid "Selection" -msgstr "" +msgstr "Seleccion" #. CNFqp #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:109 msgctxt "wordcount-mobile|label10" msgid "Document" -msgstr "" +msgstr "Document" #. RBG3u #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:135 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:327 msgctxt "wordcount-mobile|label1" msgid "Words" -msgstr "" +msgstr "Mots" #. sTP2G #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:159 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:621 msgctxt "wordcount-mobile|label2" msgid "Characters including spaces" -msgstr "" +msgstr "Caractèrs inclusent los espacis" #. 9Wbgf #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:183 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:303 msgctxt "wordcount-mobile|label3" msgid "Characters excluding spaces" -msgstr "" +msgstr "Caractèrs exclusent los espacis" #. wZHMX #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:207 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:279 msgctxt "wordcount-mobile|cjkcharsft" msgid "Asian characters and Korean syllables" -msgstr "" +msgstr "Caractèrs asiatics e sillabas coreanas" #. mfBEG #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:231 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:255 msgctxt "wordcount-mobile|standardizedpages" msgid "Standardized pages" -msgstr "" +msgstr "Paginas estandarizadas" #. bNHAL #: sw/uiconfig/swriter/ui/wordcount.ui:8 diff -Nru libreoffice-7.3.4/translations/source/oc/vcl/messages.po libreoffice-7.3.5/translations/source/oc/vcl/messages.po --- libreoffice-7.3.4/translations/source/oc/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/oc/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-01-17 16:38+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557839768.000000\n" #. k5jTM @@ -2322,169 +2322,169 @@ msgstr "Imprimir mantuna pagina per fuèlh de papièr." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizar" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Seleccionatz quantas paginas imprimir per fuèlh de papièr." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Paginas :" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Seleccionatz lo nombre de linhas." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "per" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Seleccionatz lo nombre de colomnas." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marge :" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "dintre las paginas" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distància :" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "a la bordadura del fuèlh" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Òrdre :" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "D’esquèrra a drecha, puèi enbàs" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "D’amont enbàs, puèi a drecha" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "D’amont enbàs, puèi a esquèrra" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De drecha a esquèrra, puèi enbàs" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Seleccionatz l’òrdre que las paginas s’imprimiràn." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dessenhar una bordadura a l'entorn de cada pagina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Marcatz l’opcion per dessenhar una bordadura a l’entorn de cada pagina." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Libret" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Seleccionatz per imprimir lo document en format libret." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Apercebut de l’assemblatge" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Ma_i" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Mesa en pagina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/chart2/messages.po libreoffice-7.3.5/translations/source/om/chart2/messages.po --- libreoffice-7.3.4/translations/source/om/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3692,7 +3692,7 @@ msgstr "Tarjaa fi akaakuu taattoo sararaf lakkoofsa sararootaa qindeessi." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Akaakuu taattoo bu`uuraa fili." diff -Nru libreoffice-7.3.4/translations/source/om/cui/messages.po libreoffice-7.3.5/translations/source/om/cui/messages.po --- libreoffice-7.3.4/translations/source/om/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Oromo \n" @@ -17651,177 +17651,152 @@ msgid "Automatic" msgstr "Ofmaa" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Addaadoo Ol’aanaa" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Amaloota jabajjii VGA argama argii fooyyessuuf kallattiin argata." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Yoo gargaarame, kaasa saxaatoo kakaasuu ykn dhiisuu dandeeessa. Yoo kaasan kaka'ee, saxaatoon wantootaa baay'ee siimeessa fi namtolchee xiqqoo fakkaatu." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/dbaccess/messages.po libreoffice-7.3.5/translations/source/om/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/om/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Oromo \n" @@ -3480,75 +3480,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Kuudeetaa hammatame" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Dhiheenyatti kan Fayyade" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Bani" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3556,7 +3556,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/extensions/messages.po libreoffice-7.3.5/translations/source/om/extensions/messages.po --- libreoffice-7.3.4/translations/source/om/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -311,602 +311,588 @@ msgid "Refresh form" msgstr "Unka haaromsi" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Argadhu" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Dirbaasi" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Kutaa hedduu" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Barruu" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Durtii (gabaabaa)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Waaltina (gabaabaa YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Waaltina (gabaabaa YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Durtii (dheeraa)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "GG/JJ/WW" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "JJ/GG/WW" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "WW/JJ/GG" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "GG/JJ/WWWW" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "JJ/GG/WWWW" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "WWWW/JJ/GG" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "WW-JJ-GG" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "WWW-JJ-GG" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Hin Filatamne" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Filatame" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Hin Murteeffamne" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Kuusaalee mara" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Kuusaa ka'aa" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Fuula ammaa" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Lakki" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Eeyyeen" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Unka Haadhoo" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Dhaabi" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Homaa" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Baaqqee" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Hedduu" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Hangii" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Sardala" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Sarjaa" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Durtii" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "TOLE" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Dhiisi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Gargaarsa" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Galfata filatame" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Qubannoo galfata filatamee" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Sarara baaqqee" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Sarara hedduu" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Sarara hedduu dhangeessuu wajjin" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Uniiksii)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Wiindoo)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Homaa" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Sardala" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Sarjaa" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Lachuu" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "G3" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Diriiraa" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Bitaa irra" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Bitaa wiirtuu" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Bitaa jala" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Mirga irra" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Mirga wiirtuu" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Mirga jala" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ol bitaa" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ol wiirtuu" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ol mirga" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Gadi bitaa" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Gadi wiirtuu" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Gadi mirga" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "wiirta'aa" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Olkaawwadhu" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Bakkabuusi" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Qoncoorsi" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Lakki" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Reeshoo Kaa'i" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Hammamtaatti Taasisi" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Bitaa-gara-mirgaa" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Mirgaa-gara-bitaa" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Qindaa'inoota wantaa ol'aanoo fayyadami" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Gonka" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Yammuu xiyyeeffannoo argatu" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Yoomyuu" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Keewwatatti" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Akka arfiitti" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Fuulatti" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Goodayyaatti" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Arfiitti" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Fuulatti" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/om/fpicker/messages.po libreoffice-7.3.5/translations/source/om/fpicker/messages.po --- libreoffice-7.3.4/translations/source/om/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -219,61 +219,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Maqaa faayilii:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Akaakuu faayilii:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Dubbisqofaa" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Iggitaadhaan olkaa'i" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Dheertoo maqaa faayilii ofmaa" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Qindaa'inoota gingilchaa gulaali" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/sc/messages.po libreoffice-7.3.5/translations/source/om/sc/messages.po --- libreoffice-7.3.4/translations/source/om/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25837,97 +25837,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26316,158 +26316,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Qindeessi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Halluu" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Tarsaa" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Afaan" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Keeddeebii" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Yaadota" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Mul'annoo" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Saagi" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Qindeessi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Mul'annoo" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gurmeessi" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Bocquu" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Hiriirfama" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Mul'annoo" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Saagi" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Sagantaa miidiyaa" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Goodayyaa" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Qindeessi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Tarsaa" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/om/sd/messages.po libreoffice-7.3.5/translations/source/om/sd/messages.po --- libreoffice-7.3.4/translations/source/om/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4256,109 +4256,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7240,109 +7240,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/sw/messages.po libreoffice-7.3.5/translations/source/om/sw/messages.po --- libreoffice-7.3.4/translations/source/om/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10784,20 +10784,20 @@ msgstr "Akkaataa keewwataa isa filatamaa, sadarkaa kasaa keessatti sadarkaa tokko gad siqsa." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Haalatoota" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Akkaataawwan keewwataa gooree irraa galfatoota kasaa uuma." @@ -14397,38 +14397,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "Qindeessi" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Sakatta'i..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Bakka faayilii kuusadeetaa (*.odb) tokko itti filachu dandeessuu, qaaqa faayiliin tokko banaadha jedhu bana. Faayilichi filatamaan, Kuusdeetaatti Jiraataatti ida'ama." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14436,31 +14436,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Kuusdeetaawwan warra amma hojii irra jiran tarreessa." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Maddaawwan deetaa galmee ammaatiif jijjiiri." @@ -20798,111 +20798,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Galmee makiinsa ergannootiif galmee Barreessaa ammaa akka bu'urraatti fayyadama." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Makiinsa ergannootiif fayyadamuuf, galmee Barreessaa haaraa tokko uuma." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Galmee makiinsa ergannootiif galmee Barreessaa jiru akka bu'urraatti fili." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Qajojii isa galmee makiinsa ergannoo waliin uumuu barbaaddu fili." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "galmee makiinsa ergannoo haaraatiif, galmee makiinsa ergannoo jiru akka bu'urraatti fayyadami." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Galmicha fili." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Sakatta'i..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Sakatta'i..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23094,54 +23094,54 @@ msgstr "Wanta" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Gosa" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "Dirqalaalee" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Maraa" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Geessituu" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Handaaraalee" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Bal'ina" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Dabarsoo Ifaa" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Maakroo" @@ -28056,7 +28056,7 @@ msgstr "Haaromsi" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/om/vcl/messages.po libreoffice-7.3.5/translations/source/om/vcl/messages.po --- libreoffice-7.3.4/translations/source/om/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/om/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2339,170 +2339,170 @@ msgstr "Galmee hundataa haaraa uuma." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Maamiloo" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Hirtaawwaniif, tokkoon tokkoo fuulaa irratti lakkoofsa islaayidoota maxxansuu barbaaddu filadhu." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Dhangii faayilii filadhu." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "kanaan" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Dhangii faayilii filadhu." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Akaakuu taattoo bu`uuraa kan akkaakuu sub fili." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "fuulota gidduu" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Tartiiba tarreeffamaa filadhu." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "gara qarqara waraqaa" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Akaakuu taattoo bu`uuraa fili." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Qaraqa fuulota maraatti sarara maxxansi" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Gara fuula masaka moggafame deemuuf cuuqaasi." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Biroosherii" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Galmee,filannoo ykn fuula ammee kan ifteessitu maxxansa Dabalataanis dirqaalawwan maxxansa galmee ammee qindeessuu ni dandeessa." diff -Nru libreoffice-7.3.4/translations/source/or/chart2/messages.po libreoffice-7.3.5/translations/source/or/chart2/messages.po --- libreoffice-7.3.4/translations/source/or/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3648,7 +3648,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/cui/messages.po libreoffice-7.3.5/translations/source/or/cui/messages.po --- libreoffice-7.3.4/translations/source/or/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17217,177 +17217,152 @@ msgid "Automatic" msgstr "ସ୍ବୟଂଚାଳିତ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "ନିହାରୀକ" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ଅଧିକ ପ୍ରଭେଦ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ଅମ୍ଳଜାନ" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ଉତ୍କୃଷ୍ଠ" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "ହାର୍ଡୱେର ଗତି-ବୃଦ୍ଧିକୁ ବ୍ୟବହାର କରନ୍ତୁ (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Anti-Aliasingକୁ ବ୍ୟବହାର କରନ୍ତୁ (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ଲେଖାଚିତ୍ର ଆଉଟପୁଟ" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ଫଣ୍ଟଗୁଡିକର ପୂର୍ବଦୃଶ୍ଯ ଦେଖାଅ" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "ପରଦା ଅକ୍ଷରରୂପ ଆଣ୍ଟିଆଲାଇଜିଙ୍ଗ (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ଏଠାରୁ (_m):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ଫଣ୍ଟ ତାଲିକାଗୁଡିକ " #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/dbaccess/messages.po libreoffice-7.3.5/translations/source/or/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/or/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3424,74 +3424,74 @@ msgstr "ନୂଆ ତଥ୍ଯାଧାର ସୃଷ୍ଟି କରନ୍ତୁ (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "ସନ୍ନିହିତ ତଥ୍ୟାବଳୀ (_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "ଗୋଟିଏ ସ୍ଥିତବାନ ତଥ୍ଯାଧାର ଫାଇଲକୁ ଖୋଲ (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ନିକଟରେ ବ୍ୟବହୃତ (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ଖୋଲନ୍ତୁ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "ଗୋଟିଏ ରହିଥିବା ତଥ୍ଯସଂଚୟକୁ ସଂଯୋଗ କରନ୍ତୁ (_x)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3499,7 +3499,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/extensions/messages.po libreoffice-7.3.5/translations/source/or/extensions/messages.po --- libreoffice-7.3.4/translations/source/or/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -308,603 +308,589 @@ msgid "Refresh form" msgstr "ଫର୍ମକୁ ସତେଜନ କରନ୍ତୁ" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ପ୍ରାପ୍ତ କର" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "ପୋଷ୍ଟ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ଏକାଧିକ ଅଂଶ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ଟେକ୍ସଟ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ସ୍ଟାଣ୍ଡାଡ୍ (ଛୋଟ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ମାନକ (short YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ମାନକ (short YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ସ୍ଟାଣ୍ଡାଡ୍ (ବଡ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ବଛା ହୋଇନାହିଁ" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ବଛାସରିଛି" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ବ୍ୟାଖ୍ଯା କରାଯାଇନାହିଁ" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ସମସ୍ତ ବିବରଣୀ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ସକ୍ରିୟ ବିବରଣୀ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ପ୍ରଚଳିତ ପୃଷ୍ଠା" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ନାହିଁ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ହଁ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ମୂଖ୍ୟ ଫର୍ମ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ଅଟକାନ୍ତୁ (_S)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "କିଛି ନାହିଁ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ଏକମାତ୍ର" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ଏକାଧିକ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ପରିସର" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ଦିଗବଳୀଯ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ଲମ୍ବରୂପ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK " #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ରଦ୍ଦ କର" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ସହାୟତା" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ବଚ୍ଛିତ ଭରଣ" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ବଚ୍ଛିତ ଭରଣର ସ୍ଥାନ" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ଏକମାତ୍ର- ରେଖା " #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ବହୁବିଧ- ରେଖା" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ବହୁବିଧ- ରେଖାର ଫର୍ମାଟକରିବା" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (ଉଇଣ୍ଡୋଗୁଡିକ)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "କିଛି ନାହିଁ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ଦିଗବଳୀଯ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ଲମ୍ବରୂପ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ଉଭଯ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ସମତଳ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ଉପର ବାମ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "କେନ୍ଦ୍ରିଯ ବାମ" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ବାମପାଖ ବଟନ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ଉପର ଡାହାଣ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "କେନ୍ଦ୍ରିଯ ଡାହାଣ" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ତଳର ଡାହାଣପାଖ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ବାମପାଖର ଉପର" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "କେନ୍ଦ୍ରୀଯ ଉପର" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ଡାହାଣପାଖର ଉପର" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ବାମପାଖର ତଳ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "କେନ୍ଦ୍ରିଯ ତଳ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ଡାହାଣପାଖର ତଳ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "କେନ୍ଦ୍ରୀଯ" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ସଂରକ୍ଷଣ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ପୁନଃସ୍ଥାପନ କରନ୍ତୁ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ଭାଙ୍ଗିୟିବା" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ନାହିଁ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "ଅନୁପାତ ରଖନ୍ତୁ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ଆକାର ସହିତ ମେଳ ଖୁଆନ୍ତୁ" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ବାମ-ରୁ-ଡାହାଣ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ଡାହାଣ-ରୁ-ବାମ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ସୁପରଅଡିନେଟ ବସ୍ତୁ ସେଟିଙ୍ଗଗୁଡିକ ଉପୟୋଗ କର" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "କେବେ ନୁହେଁ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ଯେତେବେଳେ ଲକ୍ଷ୍ଯକରାହୋଇଛି" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ସର୍ବଦା" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ପରଚ୍ଛେଦ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ଅକ୍ଷର" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ପୃଷ୍ଠା" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ଫ୍ରେମ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ଅକ୍ଷର" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ପୃଷ୍ଠା" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/or/fpicker/messages.po libreoffice-7.3.5/translations/source/or/fpicker/messages.po --- libreoffice-7.3.4/translations/source/or/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ଫାଇସ ନାମ (_n):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ଫାଇଲ ପ୍ରକାର (_t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "କେବଳ ପଠନୀୟ(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ପ୍ରବେଶ ସଂକେତ ସହିତ ସଂରକ୍ଷଣ କରନ୍ତୁ" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ସ୍ବଯଂଚାଳିତ ଫାଇଲ ନାମ ବିସ୍ତାର (_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ଫିଲଟର ବିନ୍ୟାସକୁ ସଂପାଦନ କରନ୍ତୁ (_E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/sc/messages.po libreoffice-7.3.5/translations/source/or/sc/messages.po --- libreoffice-7.3.4/translations/source/or/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25773,97 +25773,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26250,153 +26250,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "କ୍ରମରେରଖ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ରଙ୍ଗ (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ଜାଲ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ଭାଷା" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "ସମାଲୋଚନା" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ମନ୍ତବ୍ଯଗୁଡିକ (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ଦୃଶ୍ଯ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ସମ୍ପାଦନ କରନ୍ତୁ (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "କ୍ରମରେରଖ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ଦୃଶ୍ଯ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ସମୁହ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ଫଣ୍ଟ " #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ପଂକ୍ତିକରଣ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ଦୃଶ୍ଯ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ଭର୍ତ୍ତି କରନ୍ତୁ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ସଞ୍ଚାର ମାଧ୍ଯମ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ଫ୍ରେମ (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "କ୍ରମରେରଖ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ଜାଲ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/or/sd/messages.po libreoffice-7.3.5/translations/source/or/sd/messages.po --- libreoffice-7.3.4/translations/source/or/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4245,109 +4245,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7226,109 +7226,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/sw/messages.po libreoffice-7.3.5/translations/source/or/sw/messages.po --- libreoffice-7.3.4/translations/source/or/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10751,19 +10751,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ଶୈଳୀଗୁଡିକ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14214,37 +14214,37 @@ msgstr "ତଥ୍ଯସଞ୍ଚଯଗୁଡିକ ବିନିମଯ କର" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "ବ୍ଯାଖ୍ଯା କର" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ତଥ୍ଯସଂଚଯ ଉପୟୋଗକରା ହୋଇଛି" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "ଉପଲବ୍ଧ ତଥ୍ୟାଧାର (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ବ୍ରାଉଜ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14254,31 +14254,31 @@ "ଏକ ତଥ୍ଯାଧାର ଫାଇଲକୁ ବାଛିବା ପାଇଁ ବ୍ରାଉଜ ବଟନକୁ ବ୍ୟବହାର କରନ୍ତୁ।" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ତଥ୍ଯସଞ୍ଚଯଗୁଡିକ ବିନିମଯ କର" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ଦଲିଲକୁ ପ୍ରଯୋଗ ହୋଇଥିବା ତଥ୍ଯସଞ୍ଚଯଗୁଡିକ:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20387,109 +20387,109 @@ msgstr "ପ୍ରଚଳିତ ଦଲିଲକୁ ବ୍ୟବହାର କରନ୍ତୁ (_d)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "ନୂଆ ଦଲିଲ ସୃଷ୍ଟି କରନ୍ତୁ (_w)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "ସ୍ଥିତବାନ ଦଲିଲରୁ ଆରମ୍ଭ କରନ୍ତୁ (_e)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ଏକ ନମୁନାରୁ ଆରମ୍ଭ କରନ୍ତୁ (_e)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "ନିକଟରେ ସଂରକ୍ଷିତ ପ୍ରାରମ୍ଭିକ ଦଲିଲରୁ ଆରମ୍ଭ କରନ୍ତୁ (_m)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ବ୍ରାଉଜ କରନ୍ତୁ (_r)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ବ୍ରାଉଜ କରନ୍ତୁ (_r)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "ମେଲ ମିଶ୍ରଣ ପାଇଁ ପ୍ରାରମ୍ଭିକ ଦଲିଲ ବାଛନ୍ତୁ" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22654,49 +22654,49 @@ msgstr "ବସ୍ତୁ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ପ୍ରକାର" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ବିକଳ୍ପଗୁଡିକ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ଗୁଡାଇବା" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ହାଇପରଲିଙ୍କ୍" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ସୀମାଗୁଡିକ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "କ୍ଷେତ୍ର" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ସ୍ୱଚ୍ଛତା" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ମାକ୍ରୋ" @@ -27446,7 +27446,7 @@ msgstr "ଅପଡେଟ କର" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/or/vcl/messages.po libreoffice-7.3.5/translations/source/or/vcl/messages.po --- libreoffice-7.3.4/translations/source/or/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/or/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2020-01-07 12:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Odia \n" @@ -2330,169 +2330,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ଇଚ୍ଛାରୂପଣ" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ଦ୍ବାରା" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ପୃଷ୍ଠାଗୁଡ଼ିକ ମଧ୍ଯରେ" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ଫର୍ଦ ସୀମା ପର୍ଯ୍ୟନ୍ତ" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ପ୍ରତ୍ୟେକ ପୃଷ୍ଠା ଚାରିପଟେ ସୀମା ଅଙ୍କନ କରନ୍ତୁ" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ବିବରଣ ପୁସ୍ତିକା" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/avmedia/messages.po libreoffice-7.3.5/translations/source/pa-IN/avmedia/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/avmedia/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/avmedia/messages.po 2022-07-15 19:12:51.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-19 13:12+0100\n" -"PO-Revision-Date: 2021-05-24 07:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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: Weblate 4.4.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1514093975.000000\n" #. FaxGP @@ -146,7 +146,7 @@ #: avmedia/inc/strings.hrc:45 msgctxt "AVMEDIA_STR_ZOOM_TOOLTIP" msgid "View" -msgstr "" +msgstr "ਵੇਖੋ" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/basctl/messages.po libreoffice-7.3.5/translations/source/pa-IN/basctl/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2021-10-17 05:31+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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.12.2\n" "X-POOTLE-MTIME: 1556115097.000000\n" #. fniWp @@ -758,7 +758,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:432 msgctxt "basicmacrodialog|extended_tip|newlibrary" msgid "Saves the recorded macro in a new library." -msgstr "" +msgstr "ਰਿਕਾਰਡ ਕੀਤਾ ਮਾਈਕਰੋ ਨੂੰ ਨਵੀਂ ਲਾਇਬਰੇਰੀ ਵਿੱਚ ਸੰਭਾਲਦਾ ਹੈ।" #. 2xdsE #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:444 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/chart2/messages.po libreoffice-7.3.5/translations/source/pa-IN/chart2/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-01-09 04:12+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540151155.000000\n" #. NCRDD @@ -3689,7 +3689,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po libreoffice-7.3.5/translations/source/pa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po --- libreoffice-7.3.4/translations/source/pa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,15 +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-10-20 13:07+0200\n" -"PO-Revision-Date: 2016-06-06 08:35+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: pa_IN\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"Last-Translator: A S Alam \n" +"Language-Team: Punjabi \n" +"Language: pa-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.12.2\n" "X-POOTLE-MTIME: 1465202124.000000\n" #. DfEKx @@ -33,4 +34,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird External" -msgstr "" +msgstr "Firebird ਬਾਹਰੀ" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/cui/messages.po libreoffice-7.3.5/translations/source/pa-IN/cui/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-26 17:34+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -17529,179 +17529,153 @@ msgid "Automatic" msgstr "ਆਟੋਮੈਟਿਕ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ਵੱਧ ਕਨਟਰਾਸਟ" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ਆਕਸੀਜਨ" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "ਕਲਾਸਿਕ" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "ਗਰਾਫਿਕਸ ਆਊਟਪੁੱਟ" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ਫੌਂਟਾਂ ਦੀ ਝਲਕ ਵੇਖਾਓ(_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ਫੋਂਟ ਲਿਸਟ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/dbaccess/messages.po libreoffice-7.3.5/translations/source/pa-IN/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-05-31 13:26+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -3466,75 +3466,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "ਇੰਬੈੱਡ ਕੀਤਾ ਡਾਟਾਬੇਸ" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ਤਾਜ਼ੇ ਵਰਤੇ" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ਖੋਲ੍ਹੋ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3542,7 +3542,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/desktop/messages.po libreoffice-7.3.5/translations/source/pa-IN/desktop/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/desktop/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/desktop/messages.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-06-18 21:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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.12.2\n" "X-POOTLE-MTIME: 1548642981.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 @@ -314,13 +314,13 @@ #: desktop/inc/strings.hrc:83 msgctxt "RID_STR_WARNING_INSTALL_EXTENSION_DISABLED" msgid "Extension installation is currently disabled. Please consult your system administrator for more information." -msgstr "" +msgstr "ਇਕਸਟੈਨਸ਼ਨ ਇੰਸਟਾਲੇਸ਼ਨ ਨੂੰ ਇਸ ਵੇਲੇ ਅਸਮਰੱਥ ਕੀਤਾ ਹੈ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਆਪਣੇ ਸਿਸਟਮ ਪ੍ਰਸ਼ਾਸ਼ਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।" #. JiEFG #: desktop/inc/strings.hrc:85 msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED" msgid "Extension removal is currently disabled. Please consult your system administrator for more information." -msgstr "" +msgstr "ਇਕਸਟੈਨਸ਼ਨ ਹਟਾਉਣਾ ਇਸ ਵੇਲੇ ਅਸਮਰੱਥ ਹੈ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਆਪਣੇ ਸਿਸਟਮ ਪ੍ਰਸ਼ਾਸ਼ਕ ਤੋਂ ਸਲਾਹ ਲਵੋ।" #. LncbY #: desktop/inc/strings.hrc:87 @@ -330,6 +330,9 @@ "Click 'OK' to remove the extension.\n" "Click 'Cancel' to stop removing the extension." msgstr "" +"ਤੁਸੀਂ '%NAME' ਇਕਸਟੈਨਸ਼ਨ ਹਟਾਉਣ ਜਾ ਰਹੇ ਹੋ।\n" +"ਇਕਸਟੈਨਸ਼ਨ ਹਟਾਉਣ ਲਈ 'ਠੀਕ ਹੈ' ਨੂੰ ਕਲਿੱਕ ਕਰੋ।\n" +"ਇਕਸਟੈਨਸ਼ਨ ਨੂੰ ਹਟਾਉਣ ਤੋਂ ਰੋਕਣ ਲਈ 'ਰੱਦ ਕਰੋ' ਨੂੰ ਕਲਿੱਕ ਕਰੋ।" #. fiYMH #: desktop/inc/strings.hrc:90 @@ -440,7 +443,7 @@ #: desktop/inc/strings.hrc:117 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MAX" msgid "Extension does not support %PRODUCTNAME versions greater than %VERSION" -msgstr "" +msgstr "ਇਕਸਟੈਨਸ਼ਨ %PRODUCTNAME ਦੇ %VERSION ਤੋਂ ਨਵੇਂ ਵਰਜ਼ਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" #. dNBtG #: desktop/inc/strings.hrc:119 @@ -745,10 +748,9 @@ #. aCY73 #: desktop/inc/strings.hrc:187 -#, fuzzy 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 "unopkg ਨੂੰ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਲਾਕ ਫਾਇਲ ਦੱਸਦੀ ਹੈ ਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਿਹਾ ਹੈ। ਜੇ ਅਜਿਹਾ ਨਹੀਂ ਤਾ ਲਾਕ ਫਾਇਲ ਮਿਟਾਓ:" +msgstr "unopkg ਨੂੰ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਲਾਕ ਫਾਇਲ ਦਰਸਾਉਂਦੀ ਹੈ ਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਿਹਾ ਹੈ। ਜੇ ਇਹ ਲਾਗੂ ਨਹੀਂ ਹੁੰਦਾ ਹੈ ਤਾਂ ਲਾਕ ਫਾਇਲ ਇੱਥੋਂ ਹਟਾਓ:" #. MLhHo #: desktop/inc/strings.hrc:189 @@ -823,17 +825,15 @@ #. Qcv5A #: desktop/uiconfig/ui/dependenciesdialog.ui:18 -#, fuzzy msgctxt "dependenciesdialog|Dependencies" msgid "System dependencies check" -msgstr "ਸਿਸਟਮ ਨਿਰਭਰਤਾ ਚੈੱਕ ਕਰੋ" +msgstr "ਸਿਸਟਮ ਨਿਰਭਰਤਾਵਾਂ ਚੈੱਕ ਕਰੋ" #. JNnsh #: desktop/uiconfig/ui/dependenciesdialog.ui:73 -#, fuzzy msgctxt "dependenciesdialog|label1" msgid "The extension cannot be installed as the following system dependencies are not fulfilled:" -msgstr "ਐਕਸਟੈਂਸ਼ਨ ਯੋਗ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਹੇਠਲੀਆਂ ਸਿਸਟਮ ਨਿਰਭਰਤਾਵਾਂ ਪੂਰੀਆਂ ਨਹੀਂ ਹੁੰਦੀਆਂ ਹਨ:" +msgstr "ਹੇਠ ਦਿੱਤੀਆਂ ਨਿਰਭਰਤਾਵਾਂ ਹੱਲ਼ ਨਾ ਹੋਣ ਕਰਕੇ ਇਸਟੈਕਸ਼ਨ ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ:" #. FfYDj #: desktop/uiconfig/ui/extensionmanager.ui:8 @@ -891,10 +891,9 @@ #. DLME5 #: desktop/uiconfig/ui/extensionmanager.ui:200 -#, fuzzy msgctxt "extensionmanager|optionsbtn" msgid "_Options" -msgstr "ਚੋਣ" +msgstr "ਚੋਣਾਂ(_O)" #. DbuQS #: desktop/uiconfig/ui/extensionmanager.ui:207 @@ -916,10 +915,9 @@ #. GehiB #: desktop/uiconfig/ui/extensionmanager.ui:239 -#, fuzzy msgctxt "extensionmanager|addbtn" msgid "_Add" -msgstr "ਸ਼ਾਮਲ" +msgstr "ਜੋੜੋ(_A)" #. MuigK #: desktop/uiconfig/ui/extensionmanager.ui:248 @@ -929,10 +927,9 @@ #. wNCAw #: desktop/uiconfig/ui/extensionmanager.ui:261 -#, fuzzy msgctxt "extensionmanager|removebtn" msgid "_Remove" -msgstr "ਹਟਾਓ(~R)" +msgstr "ਹਟਾਓ(_R)" #. AGoX7 #: desktop/uiconfig/ui/extensionmanager.ui:268 @@ -942,10 +939,9 @@ #. qHMdq #: desktop/uiconfig/ui/extensionmanager.ui:281 -#, fuzzy msgctxt "extensionmanager|enablebtn" msgid "_Enable" -msgstr "ਯੋਗ(~E)" +msgstr "ਸਮਰੱਥ(_E)" #. vz3Ti #: desktop/uiconfig/ui/extensionmanager.ui:311 @@ -991,10 +987,9 @@ #. nPnM4 #: desktop/uiconfig/ui/installforalldialog.ui:38 -#, fuzzy msgctxt "installforalldialog|yes" msgid "_Only for me" -msgstr "ਕੇਵਲ ਮੇਰੇ ਲਈ(~O)" +msgstr "ਕੇਵਲ ਮੇਰੇ ਲਈ(_O)" #. feAcg #: desktop/uiconfig/ui/licensedialog.ui:8 @@ -1064,24 +1059,21 @@ #. GX3k2 #: desktop/uiconfig/ui/updatedialog.ui:24 -#, fuzzy msgctxt "updatedialog|UpdateDialog" msgid "Extension Update" msgstr "ਇਕਸਟੈਨਸ਼ਨ ਅੱਪਡੇਟ" #. DmHy5 #: desktop/uiconfig/ui/updatedialog.ui:55 -#, fuzzy msgctxt "updatedialog|INSTALL" msgid "_Install" -msgstr "ਇੰਸਟਾਲ" +msgstr "ਇੰਸਟਾਲ(_I)" #. 3bJwo #: desktop/uiconfig/ui/updatedialog.ui:122 -#, fuzzy msgctxt "updatedialog|UPDATE_LABEL" msgid "_Available extension updates" -msgstr "ਉਪਲੱਬਧ ਇਕਸਟੈਨਸ਼ਨ ਅੱਪਡੇਟ(~A)" +msgstr "ਉਪਲੱਬਧ ਇਕਸਟੈਨਸ਼ਨ ਅੱਪਡੇਟ(_A)" #. 3mtLC #: desktop/uiconfig/ui/updatedialog.ui:135 @@ -1091,10 +1083,9 @@ #. WkYgi #: desktop/uiconfig/ui/updatedialog.ui:219 -#, fuzzy msgctxt "updatedialog|UPDATE_ALL" msgid "_Show all updates" -msgstr "ਸਭ ਅੱਪਡੇਟ ਵੇਖੋ(~S)" +msgstr "ਸਭ ਅੱਪਡੇਟ ਵੇਖੋ(_S)" #. ihAhY #: desktop/uiconfig/ui/updatedialog.ui:228 @@ -1110,28 +1101,24 @@ #. 7DTtA #: desktop/uiconfig/ui/updatedialog.ui:276 -#, fuzzy msgctxt "updatedialog|PUBLISHER_LABEL" msgid "Publisher:" msgstr "ਪਬਲਿਸ਼ਰ:" #. iaD89 #: desktop/uiconfig/ui/updatedialog.ui:287 -#, fuzzy msgctxt "updatedialog|PUBLISHER_LINK" msgid "button" msgstr "ਬਟਨ" #. kgLHP #: desktop/uiconfig/ui/updatedialog.ui:303 -#, fuzzy msgctxt "updatedialog|RELEASE_NOTES_LABEL" msgid "What is new:" msgstr "ਨਵਾਂ ਕੀ ਹੈ:" #. JqHGH #: desktop/uiconfig/ui/updatedialog.ui:314 -#, fuzzy msgctxt "updatedialog|RELEASE_NOTES_LINK" msgid "Release notes" msgstr "ਰੀਲਿਜ਼ ਨੋਟਿਸ" @@ -1150,14 +1137,12 @@ #. YEhMN #: desktop/uiconfig/ui/updateinstalldialog.ui:8 -#, fuzzy msgctxt "updateinstalldialog|UpdateInstallDialog" msgid "Download and Installation" msgstr "ਡਾਊਨਲੋਡ ਅਤੇ ਇੰਸਟਾਲੇਸ਼ਨ" #. t9MoN #: desktop/uiconfig/ui/updateinstalldialog.ui:87 -#, fuzzy msgctxt "updateinstalldialog|DOWNLOADING" msgid "Downloading extensions..." msgstr "ਇਕਸਟੈਨਸ਼ਨਾਂ ਡਾਊਨਲੋਡ ਕੀਤੀਆਂ ਜਾਂਦੀਆਂ ਹਨ..." @@ -1176,7 +1161,6 @@ #. Kfhc4 #: desktop/uiconfig/ui/updaterequireddialog.ui:8 -#, fuzzy msgctxt "updaterequireddialog|UpdateRequiredDialog" msgid "Extension Update Required" msgstr "ਇਕਸਟੈਨਸ਼ਨ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" @@ -1189,17 +1173,15 @@ #. 9S2f3 #: desktop/uiconfig/ui/updaterequireddialog.ui:43 -#, fuzzy msgctxt "updaterequireddialog|disable" msgid "Disable all" -msgstr "ਸਭ ਆਯੋਗ" +msgstr "ਸਭ ਅਸਮਰੱਥ" #. VYnoR #: desktop/uiconfig/ui/updaterequireddialog.ui:102 -#, fuzzy msgctxt "updaterequireddialog|updatelabel" msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used." -msgstr "%PRODUCTNAME ਨੂੰ ਨਵੇਂ ਵਰਜਨ ਤੱਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ ਹੈ। ਕੁਝ ਇੰਸਟਾਲ ਕੀਤੇ %PRODUCTNAME ਐਕਸਟੈਂਸ਼ਨ ਇਸ ਵਰਜਨ ਨਾਲ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ ਅਤੇ ਵਰਤਣ ਤੋਂ ਪਹਿਲਾਂ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" +msgstr "%PRODUCTNAME ਨੂੰ ਨਵੇਂ ਵਰਜ਼ਨ ਤੱਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ ਹੈ। ਕੁਝ ਇੰਸਟਾਲ ਕੀਤੇ %PRODUCTNAME ਇਕਸਟੈਨਸ਼ਨ ਇਸ ਵਰਜ਼ਨ ਨਾਲ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ ਅਤੇ ਵਰਤਣ ਤੋਂ ਪਹਿਲਾਂ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" #. FXDEw #: desktop/uiconfig/ui/updaterequireddialog.ui:153 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/editeng/messages.po libreoffice-7.3.5/translations/source/pa-IN/editeng/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2022-01-09 04:12+0000\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1513032907.000000\n" #. BHYB4 @@ -21,7 +21,7 @@ #: editeng/inc/strings.hrc:17 msgctxt "RID_SVXITEMS_HORJUST_STANDARD" msgid "Horizontal alignment default" -msgstr "ਖਿਤਿਜੀ ਇਕਸਾਰ ਮੂਲ" +msgstr "ਲੇਟਵਾਂ ਇਕਸਾਰ ਮੂਲ" #. htWdf #: editeng/inc/strings.hrc:18 @@ -33,7 +33,7 @@ #: editeng/inc/strings.hrc:19 msgctxt "RID_SVXITEMS_HORJUST_CENTER" msgid "Centered horizontally" -msgstr "ਕੇਂਦਰੀ ਖਿਤਿਜੀ" +msgstr "ਕੇਂਦਰੀ ਲੇਟਵਾਂ" #. JXEo9 #: editeng/inc/strings.hrc:20 @@ -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,14 +82,14 @@ #: 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 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/extensions/messages.po libreoffice-7.3.5/translations/source/pa-IN/extensions/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-06-18 21:48+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -306,596 +306,582 @@ msgid "Refresh form" msgstr "ਫਾਰਮ ਤਾਜ਼ਾ ਕਰੋ" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ਲਵੋ" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "ਪੋਸਟ" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ਬਹੁ-ਭਾਗ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ਪਾਠ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ਸਟੈਂਡਰਡ (ਛੋਟਾ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ਸਟੈਂਡਰਡ (ਛੋਟਾ YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ਸਟੈਂਡਰਡ (ਛੋਟਾ YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ਸਟੈਂਡਰਡ (ਵੱਡਾ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ਚੁਣਿਆ ਨਹੀਂ" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ਚੁਣੇ" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ਨਾ-ਪਰਭਾਸ਼ਿਤ" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ਸਭ ਰਿਕਾਰਡ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ਸਰਗਰਮ ਰਿਕਾਰਡ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ਮੌਜੂਦਾ ਸਫ਼ਾ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ਨਹੀਂ" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ਹਾਂ" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ਮੁੱਖ ਸਫ਼ਾ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "ਸਾਫ਼" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ਉੱਪਰ" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ਇਕਹੇਰੀ" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ਮਲਟੀ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ਰੇਜ਼" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "ਖਿਤਿਜੀ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ਲੰਬਕਾਰੀ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ਮੂਲ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ਠੀਕ ਹੈ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ਮਦਦ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ਚੁਣਿਆ ਇੰਦਰਾਜ਼" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ਚੁਣੇ ਇੰਦਰਾਜ਼ ਲਈ ਸਥਿਤੀ" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ਇਕਹਿਰੀ-ਲਾਇਨ" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ਬਹੁ-ਲਾਇਨ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ਬਹੁ-ਲਾਇਨ ਸਮੇਤ ਫਾਰਮੈਟਿੰਗ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "ਖਿਤਿਜੀ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ਲੰਬਕਾਰੀ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ਦੋਨੋਂ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "ਸਮਤਲ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ਖੱਬੇ ਉੱਪਰ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ਖੱਬੇ ਵਿਚਕਾਰ" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ਖੱਬੇ ਹੇਠਾਂ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ਸੱਜੇ ਉੱਪਰ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ਸੱਜੇ ਵਿਚਕਾਰ" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ਸੱਜੇ ਹੇਠਾਂ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ਖੱਬੇ ਤੋਂ ਉੱਪਰ" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ਵਿਚਕਾਰ ਤੋਂ ਉੱਪਰ" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ਸੱਜੇ ਤੋਂ ਉੱਪਰ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ਖੱਬੇ ਤੋਂ ਹੇਠਾਂ" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ਵਿਚਕਾਰ ਤੋਂ ਹੇਠਾਂ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ਸੱਜੇ ਤੋਂ ਹੇਠਾਂ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ਕੇਂਦਰ" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ਸੁਰੱਖਿਅਤ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ਬਦਲੋ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ਸਮੇਟੋ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ਨਹੀਂ" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "ਅਨੁਪਾਤ ਰੱਖੋ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ਸਾਈਜ਼ ਲਈ ਫਿੱਟ" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ਖੱਬੇ ਤੋਂ ਸੱਜਾ" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ਸੱਜਾ ਤੋਂ ਖੱਬਾ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ਸੁਪਰ-ਸਹਾਇਕ ਇਕਾਈ ਸੈਟਿੰਗ ਵਰਤੋਂ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ਕਦੇ ਨਹੀਂ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "ਜਦੋਂ ਫੋਕਸ ਹੋਵੇ" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ਹਮੇਸ਼ਾ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ਪ੍ਹੈਰਾਗਰਾਫ਼ ਵੱਲ" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ਅੱਖਰ ਵਜੋਂ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ਪੇਜ਼ ਤੋਂ" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "ਫਰੇਮ ਤੋਂ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ਅੱਖਰ ਤੋਂ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ਪੇਜ਼ ਤੋਂ" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/fpicker/messages.po libreoffice-7.3.5/translations/source/pa-IN/fpicker/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-05-24 07:37+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ਫਾਇਲ ਨਾਂ(_n):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ਫਾਇਲ ਕਿਸਮ(_t): " #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ਸਿਰਫ਼ ਪੜਨ ਲਈ(_R) " #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ਪਾਸਵਰਡ ਨਾਲ ਸੰਭਾਲੋ " #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ਆਟੋਮੈਟਿਕ ਫਾਇਲ ਨਾਂ ਐਕਸ਼ਟੇਸ਼ਨ(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "ਫਿਲਟਰ ਸੈਟਿੰਗ ਸੋਧੋ(_f)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG ਕੁੰਜੀ ਨਾਲ ਏਨਕ੍ਰਿਪਟ ਕਰੋ" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-06-18 21:48+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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.12.2\n" "X-POOTLE-MTIME: 1548643161.000000\n" #. W5ukN @@ -4739,14 +4739,13 @@ #. 9tAAv #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&FamilyName:string=CellStyles\n" "Label\n" "value.text" msgid "Accent 1" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 1" #. Zu3Km #: CalcCommands.xcu @@ -4770,14 +4769,13 @@ #. XDFxR #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&FamilyName:string=CellStyles\n" "Label\n" "value.text" msgid "Accent 2" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 2" #. BAjKh #: CalcCommands.xcu @@ -4801,14 +4799,13 @@ #. QQAeT #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&FamilyName:string=CellStyles\n" "Label\n" "value.text" msgid "Accent 3" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 3" #. 4pyKM #: CalcCommands.xcu @@ -13095,7 +13092,7 @@ "Label\n" "value.text" msgid "Complementary Color" -msgstr "ਪੂਰਤੀ ਰੰਗ " +msgstr "ਪੂਰਤੀ ਰੰਗ" #. jkkkv #: Effects.xcu @@ -14435,7 +14432,7 @@ "Label\n" "value.text" msgid "Swoosh" -msgstr "Swoosh" +msgstr "" #. UX33U #: Effects.xcu @@ -15389,25 +15386,23 @@ #. LQEkM #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.iris\n" "Label\n" "value.text" msgid "Iris" -msgstr "Iris" +msgstr "" #. WKvMA #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" "Label\n" "value.text" msgid "Rochade" -msgstr "Rochade" +msgstr "" #. t4ZfE #: Effects.xcu diff -Nru libreoffice-7.3.4/translations/source/pa-IN/sc/messages.po libreoffice-7.3.5/translations/source/pa-IN/sc/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-08-25 05:05+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -531,7 +531,7 @@ #: sc/inc/globstr.hrc:97 msgctxt "STR_UNDO_FITCELLSIZE" msgid "Fit to Cell Size" -msgstr "" +msgstr "ਸੈੱਲ ਆਕਾਰ ਲਈ ਫਿੱਟ" #. SzED2 #: sc/inc/globstr.hrc:98 @@ -585,13 +585,13 @@ #: sc/inc/globstr.hrc:106 msgctxt "STR_UNDO_SHOWALLNOTES" msgid "Show All Comments" -msgstr "" +msgstr "ਸਾਰੀਆਂ ਟਿੱਪਣੀਆਂ ਵੇਖਾਓ" #. hcrJZ #: sc/inc/globstr.hrc:107 msgctxt "STR_UNDO_HIDEALLNOTES" msgid "Hide All Comments" -msgstr "" +msgstr "ਸਾਰੀਆਂ ਟਿੱਪਣੀਆਂ ਓਹਲੇ" #. Ngfbt #: sc/inc/globstr.hrc:108 @@ -779,6 +779,9 @@ "\n" "Insert the result into the variable cell?" msgstr "" +"\n" +"\n" +"ਨਤੀਜੇ ਨੂੰ ਵੇਰੀਬਲ ਸੈੱਲ ਵਿੱਚ ਪਾਉਣਾ ਹੈ?" #. 7fkiC #: sc/inc/globstr.hrc:138 @@ -911,7 +914,7 @@ #: sc/inc/globstr.hrc:160 msgctxt "STR_SELCOUNT" msgid "Selected: $1, $2" -msgstr "" +msgstr "ਚੁਣੇ: $1, $2" #. FgTCG #. To translators: STR_SELCOUNT_ROWARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of rows @@ -919,8 +922,8 @@ msgctxt "STR_SELCOUNT_ROWARG" msgid "$1 row" msgid_plural "$1 rows" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 ਕਤਾਰ" +msgstr[1] "$1 ਕਤਾਰਾਂ" #. o4pBL #. To translators: STR_SELCOUNT_COLARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of columns @@ -928,14 +931,14 @@ msgctxt "STR_SELCOUNT_COLARG" msgid "$1 column" msgid_plural "$1 columns" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "$1 ਕਾਲਮ" +msgstr[1] "$1 ਕਾਲਮ" #. 3dMsw #: sc/inc/globstr.hrc:165 msgctxt "STR_FILTER_SELCOUNT" msgid "$1 of $2 records found" -msgstr "" +msgstr "$2 ਲੱਭੇ ਰਿਕਾਰਡਾਂ ਵਿੱਚੋਂ $1" #. ibncs #: sc/inc/globstr.hrc:166 @@ -1530,61 +1533,61 @@ #: sc/inc/globstr.hrc:272 msgctxt "STR_STYLENAME_STANDARD" msgid "Default" -msgstr "" +msgstr "ਮੂਲ" #. TG9pD #: 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 @@ -1596,19 +1599,19 @@ #: 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 @@ -1813,7 +1816,7 @@ #: sc/inc/globstr.hrc:318 msgctxt "STR_VOBJ_OBJECT" msgid "Objects/Images" -msgstr "" +msgstr "ਆਬਜੈਕਟ/ਚਿੱਤਰ" #. cYXCQ #: sc/inc/globstr.hrc:319 @@ -2665,13 +2668,13 @@ #: sc/inc/globstr.hrc:449 msgctxt "STR_CLOSE_WITH_UNSAVED_REFS" msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss." -msgstr "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss." +msgstr "ਇਹ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਹੋਰ ਦਸਤਾਵੇਜ਼ ਵਲੋਂ ਹਵਾਲਾ ਦਿੱਤਾ ਗਿਆ ਹੈ ਅਤੇ ਹਾਲੇ ਸੰਭਾਲਿਆ ਨਹੀਂ ਹੈ। ਇਸ ਨੂੰ ਬਿਨਾਂ ਸੰਭਾਲੇ ਬੰਦ ਕਰਨ ਨਾਲ ਡਾਟਾ ਖ਼ਰਾਬ ਹੋਵੇਗਾ।" #. uBwWr #: sc/inc/globstr.hrc:450 msgctxt "STR_COND_CONDITION" msgid "Cell value" -msgstr "" +msgstr "ਸੈੱਲ ਦਾ ਮੁੱਲ" #. E8yxG #: sc/inc/globstr.hrc:451 @@ -7270,7 +7273,7 @@ #: sc/inc/scfuncs.hrc:1236 msgctxt "SC_OPCODE_COSECANT" msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)" -msgstr "Return the cosecant of an angle. CSC(x)=1/SIN(x)" +msgstr "" #. FQv4p #: sc/inc/scfuncs.hrc:1237 @@ -7288,7 +7291,7 @@ #: sc/inc/scfuncs.hrc:1244 msgctxt "SC_OPCODE_SECANT" msgid "Return the secant of an angle. SEC(x)=1/COS(x)" -msgstr "Return the secant of an angle. SEC(x)=1/COS(x)" +msgstr "ਕੋਣ ਦਾ ਸੀਕੈਂਟ ਵਾਪਸ ਕਰੋ। SEC(x)=1/COS(x)" #. scavM #: sc/inc/scfuncs.hrc:1245 @@ -7306,7 +7309,7 @@ #: sc/inc/scfuncs.hrc:1252 msgctxt "SC_OPCODE_COSECANT_HYP" msgid "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" -msgstr "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" +msgstr "" #. qeU9p #: sc/inc/scfuncs.hrc:1253 @@ -7318,13 +7321,13 @@ #: sc/inc/scfuncs.hrc:1254 msgctxt "SC_OPCODE_COSECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." -msgstr "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." +msgstr "" #. P8KDD #: sc/inc/scfuncs.hrc:1260 msgctxt "SC_OPCODE_SECANT_HYP" msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" -msgstr "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" +msgstr "" #. 7PJUN #: sc/inc/scfuncs.hrc:1261 @@ -7336,7 +7339,7 @@ #: sc/inc/scfuncs.hrc:1262 msgctxt "SC_OPCODE_SECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." -msgstr "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." +msgstr "" #. dnE9t #: sc/inc/scfuncs.hrc:1268 @@ -8147,7 +8150,7 @@ #: sc/inc/scfuncs.hrc:1546 msgctxt "SC_OPCODE_MAT_TRANS" msgid "Array transposition. Exchanges the rows and columns of an array." -msgstr "Array transposition. Exchanges the rows and columns of an array." +msgstr "" #. aHw86 #: sc/inc/scfuncs.hrc:1547 @@ -9173,7 +9176,7 @@ #: sc/inc/scfuncs.hrc:1925 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Number " -msgstr "ਅੰਕ" +msgstr "ਅੰਕ " #. h2KJC #: sc/inc/scfuncs.hrc:1926 @@ -9192,7 +9195,7 @@ #: sc/inc/scfuncs.hrc:1933 msgctxt "SC_OPCODE_MEDIAN" msgid "Number " -msgstr "ਅੰਕ" +msgstr "ਅੰਕ " #. QjvgB #: sc/inc/scfuncs.hrc:1934 @@ -10605,7 +10608,7 @@ #: sc/inc/scfuncs.hrc:2356 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted." -msgstr "The standard deviation of the log normal distribution. It is set to 1 if omitted." +msgstr "" #. VsLsD #: sc/inc/scfuncs.hrc:2357 @@ -11667,7 +11670,7 @@ #: sc/inc/scfuncs.hrc:2638 msgctxt "SC_OPCODE_T_DIST" msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution." -msgstr "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution." +msgstr "" #. RssQW #: sc/inc/scfuncs.hrc:2644 @@ -12661,7 +12664,7 @@ #: sc/inc/scfuncs.hrc:2939 msgctxt "SC_OPCODE_Z_TEST" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." +msgstr "" #. Tu5tk #: sc/inc/scfuncs.hrc:2940 @@ -12703,7 +12706,7 @@ #: sc/inc/scfuncs.hrc:2951 msgctxt "SC_OPCODE_Z_TEST_MS" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." +msgstr "" #. FZJKN #: sc/inc/scfuncs.hrc:2952 @@ -13993,10 +13996,9 @@ #. SAWhP #: sc/inc/scfuncs.hrc:3298 -#, fuzzy msgctxt "SC_OPCODE_CHOOSE" msgid "Value " -msgstr "ਮੁੱਲ" +msgstr "ਮੁੱਲ " #. 3cXEF #: sc/inc/scfuncs.hrc:3299 @@ -14983,10 +14985,9 @@ #. Z77m6 #: sc/inc/scfuncs.hrc:3619 -#, fuzzy msgctxt "SC_OPCODE_MINIFS_MS" msgid "Range " -msgstr "ਰੇਜ਼" +msgstr "ਰੇਜ਼ " #. Aw78A #: sc/inc/scfuncs.hrc:3620 @@ -14996,10 +14997,9 @@ #. iFbtC #: sc/inc/scfuncs.hrc:3621 -#, fuzzy msgctxt "SC_OPCODE_MINIFS_MS" msgid "Criteria " -msgstr "ਮਾਪਦੰਡ" +msgstr "ਮਾਪਦੰਡ " #. QzXV7 #: sc/inc/scfuncs.hrc:3622 @@ -15027,10 +15027,9 @@ #. Ldwfn #: sc/inc/scfuncs.hrc:3630 -#, fuzzy msgctxt "SC_OPCODE_MAXIFS_MS" msgid "Range " -msgstr "ਰੇਜ਼" +msgstr "ਰੇਜ਼ " #. 76BDz #: sc/inc/scfuncs.hrc:3631 @@ -15040,10 +15039,9 @@ #. bGTqo #: sc/inc/scfuncs.hrc:3632 -#, fuzzy msgctxt "SC_OPCODE_MAXIFS_MS" msgid "Criteria " -msgstr "ਮਾਪਦੰਡ" +msgstr "ਮਾਪਦੰਡ " #. CAisw #: sc/inc/scfuncs.hrc:3633 @@ -17302,7 +17300,7 @@ #: sc/inc/strings.hrc:120 msgctxt "SCSTR_DDEDOC_NOT_LOADED" msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again." -msgstr "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again." +msgstr "" #. kGmko #: sc/inc/strings.hrc:121 @@ -17483,10 +17481,9 @@ #. rTGKc #: sc/inc/strings.hrc:150 -#, fuzzy msgctxt "SCSTR_CONDITION" msgid "Condition " -msgstr "ਸ਼ਰਤ" +msgstr "ਸ਼ਰਤ " #. 56Wmj #. content description strings are also use d in ScLinkTargetsObj @@ -17676,13 +17673,13 @@ #: sc/inc/strings.hrc:186 msgctxt "STR_CHG_INSERT_ROWS" msgid "Row inserted " -msgstr "ਸ਼ਾਮਿਲ ਕੀਤੀ ਕਤਾਰ" +msgstr "ਸ਼ਾਮਿਲ ਕੀਤੀ ਕਤਾਰ " #. nBf8B #: sc/inc/strings.hrc:187 msgctxt "STR_CHG_INSERT_TABS" msgid "Sheet inserted " -msgstr "ਸ਼ਾਮਿਲ ਕੀਤੀ ਸ਼ੀਟ" +msgstr "ਸ਼ਾਮਿਲ ਕੀਤੀ ਸ਼ੀਟ " #. Td8iF #: sc/inc/strings.hrc:188 @@ -19183,10 +19180,9 @@ #. jBuzS #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:318 -#, fuzzy msgctxt "analysisofvariancedialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. o4Aw2 #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:352 @@ -19591,10 +19587,9 @@ #. 2Cttx #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:245 -#, fuzzy msgctxt "chisquaretestdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. tAdCX #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:270 @@ -20814,10 +20809,9 @@ #. BP2jQ #: sc/uiconfig/scalc/ui/correlationdialog.ui:244 -#, fuzzy msgctxt "correlationdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. eC2za #: sc/uiconfig/scalc/ui/correlationdialog.ui:269 @@ -20865,10 +20859,9 @@ #. FgzdQ #: sc/uiconfig/scalc/ui/covariancedialog.ui:244 -#, fuzzy msgctxt "covariancedialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. XfrBg #: sc/uiconfig/scalc/ui/covariancedialog.ui:269 @@ -22554,10 +22547,9 @@ #. MKEzF #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:245 -#, fuzzy msgctxt "descriptivestatisticsdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. 8UDQc #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:270 @@ -22810,10 +22802,9 @@ #. JU2hx #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:251 -#, fuzzy msgctxt "exponentialsmoothingdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. w4UYJ #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:285 @@ -24929,10 +24920,9 @@ #. QzpE8 #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:270 -#, fuzzy msgctxt "movingaveragedialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. ZFgCx #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:304 @@ -25673,97 +25663,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "ਫਾਰਮ(_r)" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25971,24 +25961,21 @@ #. Z7t2R #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2622 -#, fuzzy msgctxt "notebookbar_groupedbar_full|Accent1" msgid "Accent 1" -msgstr "ਐਸੰਟ " +msgstr "" #. xeEFE #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2630 -#, fuzzy msgctxt "notebookbar_groupedbar_full|Accent2" msgid "Accent 2" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 2" #. G3TRo #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2638 -#, fuzzy msgctxt "notebookbar_groupedbar_full|Accent3" msgid "Accent 3" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 3" #. QcUKG #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2652 @@ -26149,153 +26136,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ਇਕਸਾਰ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "ਰੰਗ(_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ਗਰਿੱਡ(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ਭਾਸ਼ਾ(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ਟਿੱਪਣੀਆਂ(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ਵੇਖੋ" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ਸੋਧ(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ਇਕਸਾਰ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ਵੇਖੋ" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "ਗਰੁੱਪ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ਫੋਂਟ" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ਇਕਸਾਰ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ਵੇਖੋ" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ਸ਼ਾਮਲ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ਮੀਡਿਆ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "ਫਰੇਮ" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ਇਕਸਾਰ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ਗਰਿੱਡ(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" @@ -26343,24 +26330,21 @@ #. bPNCf #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:167 -#, fuzzy msgctxt "notebookbar_groups|stylemenuacc1" msgid "Accent 1" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 1" #. iqk5y #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:176 -#, fuzzy msgctxt "notebookbar_groups|stylemenuacc2" msgid "Accent 2" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 2" #. JK8F8 #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:185 -#, fuzzy msgctxt "notebookbar_groups|stylemenuacc3" msgid "Accent 3" -msgstr "ਐਸੰਟ " +msgstr "ਐਸੰਟ 3" #. a8rG7 #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:200 @@ -26840,7 +26824,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:169 msgctxt "optcalculatepage|generalprec" msgid "_Limit decimals for general number format" -msgstr "_Limit decimals for general number format" +msgstr "ਆਮ ਨੰਬਰ ਫਾਰਮੈਟ ਲਈ ਦਸ਼ਮਲਵ ਨੂੰ ਸੀਮਿਤ ਕਰੋ(_L)" #. hufmT #: sc/uiconfig/scalc/ui/optcalculatepage.ui:177 @@ -29040,10 +29024,9 @@ #. zzc9a #: sc/uiconfig/scalc/ui/regressiondialog.ui:320 -#, fuzzy msgctxt "regressiondialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. t5Lm2 #: sc/uiconfig/scalc/ui/regressiondialog.ui:352 @@ -29797,7 +29780,6 @@ #. 2vGhJ #: sc/uiconfig/scalc/ui/selectdatasource.ui:145 -#, fuzzy msgctxt "selectdatasource|type" msgid "Sql [Native]" msgstr "Sql [Native]" @@ -30482,13 +30464,13 @@ #: sc/uiconfig/scalc/ui/sidebaralignment.ui:327 msgctxt "sidebaralignment|bottom|tooltip_text" msgid "Text Extension From Lower Cell Border" -msgstr "Text Extension From Lower Cell Border" +msgstr "" #. CgVBh #: sc/uiconfig/scalc/ui/sidebaralignment.ui:344 msgctxt "sidebaralignment|top|tooltip_text" msgid "Text Extension From Upper Cell Border" -msgstr "Text Extension From Upper Cell Border" +msgstr "" #. TSALx #: sc/uiconfig/scalc/ui/sidebaralignment.ui:361 @@ -31521,13 +31503,13 @@ #: sc/uiconfig/scalc/ui/sortwarning.ui:83 msgctxt "sortwarning|sorttext" msgid "The cells next to the current selection also contain data. Do you want to extend the sort range to %1, or sort the currently selected range, %2?" -msgstr "The cells next to the current selection also contain data. Do you want to extend the sort range to %1, or sort the currently selected range, %2?" +msgstr "" #. Ny8FF #: sc/uiconfig/scalc/ui/sortwarning.ui:103 msgctxt "sortwarning|sorttip" msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted." -msgstr "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted." +msgstr "" #. p9BBw #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29 @@ -32105,10 +32087,9 @@ #. StkZk #: sc/uiconfig/scalc/ui/statisticsinfopage.ui:131 -#, fuzzy msgctxt "statisticsinfopage|label1" msgid "Document: " -msgstr "ਡੌਕੂਮੈਂਟ" +msgstr "ਡੌਕੂਮੈਂਟ: " #. yzuA2 #: sc/uiconfig/scalc/ui/subtotaldialog.ui:8 @@ -33124,10 +33105,9 @@ #. BPFfu #: sc/uiconfig/scalc/ui/ttestdialog.ui:283 -#, fuzzy msgctxt "ttestdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. WGyaE #: sc/uiconfig/scalc/ui/ttestdialog.ui:308 @@ -33560,10 +33540,9 @@ #. Bby3W #: sc/uiconfig/scalc/ui/ztestdialog.ui:283 -#, fuzzy msgctxt "ztestdialog|label2" msgid "Grouped by" -msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: " +msgstr "ਗਰੁੱਪ ਬਣਾਇਆ" #. bPHtB #: sc/uiconfig/scalc/ui/ztestdialog.ui:308 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/sd/messages.po libreoffice-7.3.5/translations/source/pa-IN/sd/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-10-17 05:31+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1395,7 +1395,7 @@ #: sd/inc/strings.hrc:191 msgctxt "STR_COPY_CUSTOMSHOW" msgid "Copy " -msgstr "ਕਾਪੀ" +msgstr "ਕਾਪੀ " #. G4C8x #: sd/inc/strings.hrc:192 @@ -2917,7 +2917,6 @@ #. xCRmu #: sd/inc/strings.hrc:454 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME" msgid "%PRODUCTNAME %s" msgstr "%PRODUCTNAME %s" @@ -4226,109 +4225,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "ਫਾਰਮ(_r)" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -5409,10 +5408,9 @@ #. LaaB7 #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:86 -#, fuzzy msgctxt "customanimationtimingtab|repeat_label" msgid "_Repeat:" -msgstr "ਦੁਹਰਾ(~R): " +msgstr "ਦੁਹਰਾਅ(~R):" #. jYfdE #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:103 @@ -7201,109 +7199,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "ਫਾਰਮ(_r)" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" @@ -9871,10 +9869,9 @@ #. H9Dt4 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151 -#, fuzzy msgctxt "slidetransitionspanel|sound_list" msgid "No sound" -msgstr "(ਕੋਈ ਧੁਨੀ ਨਹੀਂ)" +msgstr "ਆਵਾਜ਼ ਨਹੀਂ" #. KqCFJ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152 @@ -9987,10 +9984,9 @@ #. dqjov #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412 -#, fuzzy msgctxt "slidetransitionspanel|play" msgid "Play" -msgstr "ਚਲਾਓ(~P)" +msgstr "ਚਲਾਓ" #. jEejn #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416 @@ -10057,17 +10053,15 @@ #. 38ZeG #: sd/uiconfig/simpress/ui/templatedialog.ui:41 -#, fuzzy msgctxt "templatedialog|standard" msgid "_Standard" -msgstr "ਸਟੈਂਡਰਡ" +msgstr "ਸਟੈਂਡਰਡ(_S)" #. HsXnQ #: sd/uiconfig/simpress/ui/templatedialog.ui:152 -#, fuzzy msgctxt "templatedialog|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. 5d7Zo #: sd/uiconfig/simpress/ui/templatedialog.ui:199 @@ -10118,7 +10112,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:535 msgctxt "templatedialog|text" msgid "Text" -msgstr "ਟੈਕਸਟ" +msgstr "ਲਿਖਤ" #. c5b3i #: sd/uiconfig/simpress/ui/templatedialog.ui:583 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/starmath/messages.po libreoffice-7.3.5/translations/source/pa-IN/starmath/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-01-09 04:12+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" #. GrDhX #: starmath/inc/smmod.hrc:16 @@ -319,13 +319,13 @@ #: starmath/inc/smmod.hrc:70 msgctxt "RID_UI_SYMBOL_NAMES" msgid "varepsilon" -msgstr "varepsilon" +msgstr "ਵਰੇਪਸਿਲੋਨ" #. VLAFM #: starmath/inc/smmod.hrc:71 msgctxt "RID_UI_SYMBOL_NAMES" msgid "vartheta" -msgstr "vartheta" +msgstr "" #. UJB26 #: starmath/inc/smmod.hrc:72 @@ -891,43 +891,43 @@ #: starmath/inc/strings.hrc:98 msgctxt "RID_SINX_HELP" msgid "Sine" -msgstr "Sine" +msgstr "ਸਾਈਨ" #. MQGzb #: starmath/inc/strings.hrc:99 msgctxt "RID_COSX_HELP" msgid "Cosine" -msgstr "Cosine" +msgstr "ਕੋਸਾਈਨ" #. 8zgCh #: starmath/inc/strings.hrc:100 msgctxt "RID_TANX_HELP" msgid "Tangent" -msgstr "Tangent" +msgstr "ਟੇਜੈਂਟ" #. BBRxx #: starmath/inc/strings.hrc:101 msgctxt "RID_COTX_HELP" msgid "Cotangent" -msgstr "Cotangent" +msgstr "ਕੋਟੇਜੈਂਟ" #. DsTBd #: starmath/inc/strings.hrc:102 msgctxt "RID_ARCSINX_HELP" msgid "Arcsine" -msgstr "Arcsine" +msgstr "ਆਰਕਸਾਈਨ" #. FPzbg #: starmath/inc/strings.hrc:103 msgctxt "RID_ARCCOSX_HELP" msgid "Arccosine" -msgstr "Arccosine" +msgstr "ਆਰਕ-ਕੋਸਾਈਨ" #. EFP3E #: starmath/inc/strings.hrc:104 msgctxt "RID_ARCTANX_HELP" msgid "Arctangent" -msgstr "Arctangent" +msgstr "ਆਰਕ-ਟੇਜੈਂਟ" #. mpBY2 #: starmath/inc/strings.hrc:105 @@ -1336,7 +1336,7 @@ #: starmath/inc/strings.hrc:171 msgctxt "RID_BREVEX_HELP" msgid "Breve" -msgstr "Breve" +msgstr "ਬਰੇਵ" #. KCnAL #: starmath/inc/strings.hrc:172 @@ -1378,13 +1378,13 @@ #: starmath/inc/strings.hrc:178 msgctxt "RID_HATX_HELP" msgid "Circumflex" -msgstr "Circumflex" +msgstr "" #. uwDf4 #: starmath/inc/strings.hrc:179 msgctxt "RID_TILDEX_HELP" msgid "Tilde" -msgstr "Tilde" +msgstr "ਟਿਲਡ" #. nJFs5 #: starmath/inc/strings.hrc:180 @@ -1879,7 +1879,7 @@ #: starmath/inc/strings.hrc:261 msgctxt "RID_ALEPH_HELP" msgid "Aleph" -msgstr "Aleph" +msgstr "ਅਲੇਫ" #. ixk6B #: starmath/inc/strings.hrc:262 @@ -1940,7 +1940,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "Weierstrass p" +msgstr "" #. f9sfv #: starmath/inc/strings.hrc:272 @@ -1977,7 +1977,7 @@ #: starmath/inc/strings.hrc:277 msgctxt "RID_XCIRCY_HELP" msgid "Concatenate" -msgstr "Concatenate" +msgstr "" #. JAGx5 #: starmath/inc/strings.hrc:278 @@ -2660,7 +2660,6 @@ #. A8QNw #: starmath/inc/strings.hrc:392 -#, fuzzy msgctxt "RID_PRINTUIOPT_PRODNAME" msgid "%PRODUCTNAME %s" msgstr "%PRODUCTNAME %s" diff -Nru libreoffice-7.3.4/translations/source/pa-IN/sw/messages.po libreoffice-7.3.5/translations/source/pa-IN/sw/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" "Language: pa-IN\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562308154.000000\n" #. v3oJv @@ -2034,10 +2034,9 @@ #. QBR3s #: sw/inc/mmaddressblockpage.hrc:27 -#, fuzzy msgctxt "RA_SALUTATION" msgid "Dear" -msgstr "ਸਾਲ" +msgstr "ਸਤਿਕਾਰਯੋਗ" #. xc8LH #: sw/inc/mmaddressblockpage.hrc:28 @@ -2049,25 +2048,25 @@ #: sw/inc/mmaddressblockpage.hrc:29 msgctxt "RA_SALUTATION" msgid "Hi" -msgstr "" +msgstr "ਹੈਲੋ" #. G4dAq #: sw/inc/mmaddressblockpage.hrc:34 msgctxt "RA_PUNCTUATION" msgid "," -msgstr "" +msgstr "," #. xpSNV #: sw/inc/mmaddressblockpage.hrc:35 msgctxt "RA_PUNCTUATION" msgid ":" -msgstr "" +msgstr ":" #. CBNXb #: sw/inc/mmaddressblockpage.hrc:36 msgctxt "RA_PUNCTUATION" msgid "!" -msgstr "" +msgstr "!" #. av4Wm #: sw/inc/mmaddressblockpage.hrc:37 @@ -2199,7 +2198,7 @@ #: sw/inc/pageformatpanel.hrc:23 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "None" -msgstr "" +msgstr "ਕੋਈ ਨਹੀਂ" #. eNMWm #: sw/inc/pageformatpanel.hrc:24 @@ -2211,7 +2210,7 @@ #: sw/inc/pageformatpanel.hrc:25 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Moderate" -msgstr "" +msgstr "ਠੀਕ-ਠਾਕ" #. BTaNb #. Normal (0.75") @@ -2221,13 +2220,13 @@ #: sw/inc/pageformatpanel.hrc:31 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Normal (%1)" -msgstr "" +msgstr "ਸਧਾਰਨ (%1)" #. DjCNK #: sw/inc/pageformatpanel.hrc:32 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Wide" -msgstr "" +msgstr "ਚੌੜਾਈ" #. JDMQe #: sw/inc/pageformatpanel.hrc:33 @@ -2239,7 +2238,7 @@ #: sw/inc/pageformatpanel.hrc:39 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "None" -msgstr "" +msgstr "ਕੋਈ ਨਹੀਂ" #. LxZSX #: sw/inc/pageformatpanel.hrc:40 @@ -2251,7 +2250,7 @@ #: sw/inc/pageformatpanel.hrc:41 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Moderate" -msgstr "" +msgstr "ਠੀਕ-ਠਾਕ" #. tivfi #. Normal (1.9 cm) @@ -2261,7 +2260,7 @@ #: sw/inc/pageformatpanel.hrc:47 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Normal (%1)" -msgstr "" +msgstr "ਸਧਾਰਨ (%1)" #. oJfxD #: sw/inc/pageformatpanel.hrc:48 @@ -2298,7 +2297,7 @@ #: sw/inc/strings.hrc:30 msgctxt "STR_RESET_LABEL" msgid "Reset" -msgstr "" +msgstr "ਮੁੜ-ਸੈੱਟ" #. o3BC2 #: sw/inc/strings.hrc:31 @@ -2316,7 +2315,7 @@ #: sw/inc/strings.hrc:33 msgctxt "STR_APPLY_LABEL" msgid "Apply" -msgstr "" +msgstr "ਲਾਗੂ ਕਰੋ" #. BFf9A #: sw/inc/strings.hrc:34 @@ -2371,7 +2370,7 @@ #: sw/inc/strings.hrc:44 msgctxt "STR_POOLCHR_BULLET_LEVEL" msgid "Bullets" -msgstr "" +msgstr "ਬਿੰਦੀਆਂ" #. HsfNg #: sw/inc/strings.hrc:45 @@ -2542,7 +2541,7 @@ #: sw/inc/strings.hrc:75 msgctxt "STR_POOLCOLL_STANDARD" msgid "Default Paragraph Style" -msgstr "" +msgstr "ਮੂਲ ਪ੍ਹੈਰਾਗਾਰਫ਼ ਸਟਾਈਲ" #. AGD4Q #: sw/inc/strings.hrc:76 @@ -2590,7 +2589,7 @@ #: sw/inc/strings.hrc:83 msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE" msgid "List" -msgstr "" +msgstr "ਸੂਚੀ" #. ffDqU #: sw/inc/strings.hrc:84 @@ -2794,121 +2793,121 @@ #: sw/inc/strings.hrc:117 msgctxt "STR_POOLCOLL_BULLET_LEVEL1S" msgid "List 1 Start" -msgstr "" +msgstr "ਸੂਚੀ 1 ਸ਼ੁਰੂ" #. baq6K #: sw/inc/strings.hrc:118 msgctxt "STR_POOLCOLL_BULLET_LEVEL1" msgid "List 1" -msgstr "" +msgstr "ਸੂਚੀ 1" #. TiBqs #: sw/inc/strings.hrc:119 msgctxt "STR_POOLCOLL_BULLET_LEVEL1E" msgid "List 1 End" -msgstr "" +msgstr "ਸੂਚੀ 1 ਖਤਮ" #. VvvEa #: sw/inc/strings.hrc:120 msgctxt "STR_POOLCOLL_BULLET_NONUM1" msgid "List 1 Cont." -msgstr "" +msgstr "ਸੂਚੀ 1 ਜਾਰੀ" #. 9ACKm #: sw/inc/strings.hrc:121 msgctxt "STR_POOLCOLL_BULLET_LEVEL2S" msgid "List 2 Start" -msgstr "" +msgstr "ਸੂਚੀ 2 ਸ਼ੁਰੂ" #. ABCWg #: sw/inc/strings.hrc:122 msgctxt "STR_POOLCOLL_BULLET_LEVEL2" msgid "List 2" -msgstr "" +msgstr "ਸੂਚੀ 2" #. R9iEV #: sw/inc/strings.hrc:123 msgctxt "STR_POOLCOLL_BULLET_LEVEL2E" msgid "List 2 End" -msgstr "" +msgstr "ਸੂਚੀ 2 ਖਤਮ" #. XTGpX #: sw/inc/strings.hrc:124 msgctxt "STR_POOLCOLL_BULLET_NONUM2" msgid "List 2 Cont." -msgstr "" +msgstr "ਸੂਚੀ 2 ਜਾਰੀ" #. n97tD #: sw/inc/strings.hrc:125 msgctxt "STR_POOLCOLL_BULLET_LEVEL3S" msgid "List 3 Start" -msgstr "" +msgstr "ਸੂਚੀ 3 ਸ਼ੁਰੂ" #. JBTGo #: sw/inc/strings.hrc:126 msgctxt "STR_POOLCOLL_BULLET_LEVEL3" msgid "List 3" -msgstr "" +msgstr "ਸੂਚੀ 3" #. B9RA4 #: sw/inc/strings.hrc:127 msgctxt "STR_POOLCOLL_BULLET_LEVEL3E" msgid "List 3 End" -msgstr "" +msgstr "ਸੂਚੀ 3 ਖਤਮ" #. ZB29x #: sw/inc/strings.hrc:128 msgctxt "STR_POOLCOLL_BULLET_NONUM3" msgid "List 3 Cont." -msgstr "" +msgstr "ਸੂਚੀ 3 ਜਾਰੀ" #. zFXDk #: sw/inc/strings.hrc:129 msgctxt "STR_POOLCOLL_BULLET_LEVEL4S" msgid "List 4 Start" -msgstr "" +msgstr "ਸੂਚੀ 4 ਸ਼ੁਰੂ" #. 34JZ2 #: sw/inc/strings.hrc:130 msgctxt "STR_POOLCOLL_BULLET_LEVEL4" msgid "List 4" -msgstr "" +msgstr "ਸੂਚੀ 4" #. 3T3WD #: sw/inc/strings.hrc:131 msgctxt "STR_POOLCOLL_BULLET_LEVEL4E" msgid "List 4 End" -msgstr "" +msgstr "ਸੂਚੀ 4 ਖਤਮ" #. buakQ #: sw/inc/strings.hrc:132 msgctxt "STR_POOLCOLL_BULLET_NONUM4" msgid "List 4 Cont." -msgstr "" +msgstr "ਸੂਚੀ 4 ਜਾਰੀ" #. vGaiE #: sw/inc/strings.hrc:133 msgctxt "STR_POOLCOLL_BULLET_LEVEL5S" msgid "List 5 Start" -msgstr "" +msgstr "ਸੂਚੀ 5 ਸ਼ੁਰੂ" #. B4dDL #: sw/inc/strings.hrc:134 msgctxt "STR_POOLCOLL_BULLET_LEVEL5" msgid "List 5" -msgstr "" +msgstr "ਸੂਚੀ 5" #. HTfse #: sw/inc/strings.hrc:135 msgctxt "STR_POOLCOLL_BULLET_LEVEL5E" msgid "List 5 End" -msgstr "" +msgstr "ਸੂਚੀ 5 ਖਤਮ" #. dAYD6 #: sw/inc/strings.hrc:136 msgctxt "STR_POOLCOLL_BULLET_NONUM5" msgid "List 5 Cont." -msgstr "" +msgstr "ਸੂਚੀ 5 ਜਾਰੀ" #. DB3VN #: sw/inc/strings.hrc:137 @@ -3194,10 +3193,9 @@ #. QAWEr #: sw/inc/strings.hrc:184 -#, fuzzy msgctxt "STR_POOLCOLL_TOX_CITATION" msgid "Citation" -msgstr "ਹਵਾਲਾ ਪਾਠ" +msgstr "ਹਵਾਲਾ ਲਿਖਤ" #. ECpGh #: sw/inc/strings.hrc:185 @@ -3492,10 +3490,9 @@ #. StGfs #: sw/inc/strings.hrc:242 -#, fuzzy msgctxt "STR_LISTSTYLEFAMILY" msgid "List Styles" -msgstr "ਕਾਂਡ ਸਟਾਈਲ" +msgstr "ਸੂਚੀ ਸਟਾਈਲ" #. uYnHh #: sw/inc/strings.hrc:243 @@ -3824,17 +3821,15 @@ #. XUSDj #: sw/inc/strings.hrc:299 -#, fuzzy msgctxt "STR_DELETE_NOTE_AUTHOR" msgid "Delete ~All Comments by $1" -msgstr "$1 ਨਾਲ ਸਭ ਟਿੱਪਣੀਆਂ ਹਟਾਓ(~A)" +msgstr "$1 ਦੀਆਂ ਸਭ ਟਿੱਪਣੀਆਂ ਹਟਾਓ(~A)" #. 3TDWE #: sw/inc/strings.hrc:300 -#, fuzzy msgctxt "STR_HIDE_NOTE_AUTHOR" msgid "H~ide All Comments by $1" -msgstr "$1 ਨਾਲ ਸਭ ਟਿੱਪਣੀਆਂ ਹਟਾਓ(~A)" +msgstr "$1 ਦੀਆਂ ਸਭ ਟਿੱਪਣੀਆਂ ਲੁਕਾਓ(~I)" #. mPqgx #: sw/inc/strings.hrc:301 @@ -4056,7 +4051,7 @@ #: sw/inc/strings.hrc:343 msgctxt "STR_CAPTION_OLE" msgid "Other OLE Objects" -msgstr "" +msgstr "ਹੋਰ OLE ਆਬਜੈਕਟ" #. rP7oC #: sw/inc/strings.hrc:344 @@ -4176,7 +4171,6 @@ #. YFZFi #: sw/inc/strings.hrc:365 -#, fuzzy msgctxt "STR_CONTENT_TYPE_GRAPHIC" msgid "Images" msgstr "ਚਿੱਤਰ" @@ -4228,7 +4222,7 @@ #: sw/inc/strings.hrc:373 msgctxt "STR_CONTENT_TYPE_TEXTFIELD" msgid "Fields" -msgstr "" +msgstr "ਖੇਤਰ" #. F5aQ8 #: sw/inc/strings.hrc:374 @@ -4282,55 +4276,55 @@ #: sw/inc/strings.hrc:382 msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1" msgid "Table 1: This is table 1" -msgstr "" +msgstr "ਸਾਰਣੀ 1: ਇਹ ਸਾਰਣੀ 1 ਹੈ" #. VyQfs #: sw/inc/strings.hrc:383 msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1" msgid "Image 1: This is image 1" -msgstr "" +msgstr "ਚਿੱਤਰ 1: ਇਹ ਚਿੱਤਰ 1 ਹੈ" #. EiPU5 #: sw/inc/strings.hrc:384 msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER" msgid "Chapter" -msgstr "" +msgstr "ਕਾਂਡ" #. s9w3k #: sw/inc/strings.hrc:385 msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD" msgid "Keyword" -msgstr "" +msgstr "ਸ਼ਬਦ" #. 8bbUo #: sw/inc/strings.hrc:386 msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY" msgid "User Directory Entry" -msgstr "" +msgstr "ਵਰਤੋਂਕਾਰ ਡਾਇਰੈਕਟਰੀ ਐਂਟਰੀ" #. SoBBB #: sw/inc/strings.hrc:387 msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY" msgid "Entry" -msgstr "" +msgstr "ਐਂਟਰੀ" #. cT6YY #: sw/inc/strings.hrc:388 msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS" msgid "this" -msgstr "" +msgstr "ਇਹ" #. KNkfh #: sw/inc/strings.hrc:389 msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY" msgid "Primary key" -msgstr "" +msgstr "ਪ੍ਰਾਇਮਰੀ ਕੁੰਜੀ" #. 2J7Ut #: sw/inc/strings.hrc:390 msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY" msgid "Secondary key" -msgstr "" +msgstr "ਸੈਕੰਡਰੀ ਕੁੰਜੀ" #. beBJ6 #: sw/inc/strings.hrc:391 @@ -4348,7 +4342,7 @@ #: sw/inc/strings.hrc:393 msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME" msgid "Frame" -msgstr "" +msgstr "ਫਰੇਮ" #. o2wx8 #: sw/inc/strings.hrc:394 @@ -4408,7 +4402,7 @@ #: sw/inc/strings.hrc:403 msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD" msgid "Field" -msgstr "" +msgstr "ਖੇਤਰ" #. mbDG4 #: sw/inc/strings.hrc:404 @@ -4420,13 +4414,13 @@ #: sw/inc/strings.hrc:405 msgctxt "STR_CONTENT_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "ਫੁੱਟਨੋਟ" #. X6DYF #: sw/inc/strings.hrc:406 msgctxt "STR_CONTENT_ENDNOTE" msgid "Endnote" -msgstr "" +msgstr "ਅੰਤ-ਨੋਟ" #. sEQCK #: sw/inc/strings.hrc:407 @@ -4478,25 +4472,25 @@ #: sw/inc/strings.hrc:414 msgctxt "STR_HIDDEN_CHANGES" msgid "Track Changes" -msgstr "" +msgstr "ਤਬਦੀਲੀਆਂ ਟਰੈਕ ਕਰੋ" #. DcXvE #: sw/inc/strings.hrc:415 msgctxt "STR_HIDDEN_CHANGES_DETAIL" msgid "Document contains tracked changes and recording is enabled." -msgstr "" +msgstr "ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਟਰੈਕ ਕੀਤੀਆਂ ਤਬਦੀਲੀਆਂ ਹਨ ਅਤੇ ਰਿਕਾਰਡ ਕਰਨਾ ਸਮਰੱਥ ਹੈ।" #. zxuEu #: sw/inc/strings.hrc:416 msgctxt "STR_HIDDEN_CHANGES_DETAIL2" msgid "Recording of changes is enabled." -msgstr "" +msgstr "ਤਬਦੀਲੀਆਂ ਦੀਆਂ ਰਿਕਾਰਡਿੰਗ ਸਮਰੱਥ ਹੈ।" #. BH7Ud #: sw/inc/strings.hrc:417 msgctxt "STR_HIDDEN_CHANGES_DETAIL3" msgid "Document contains tracked changes." -msgstr "" +msgstr "ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਟਰੈਕ ਕੀਤੀਆਂ ਤਬਦੀਲੀਆਂ ਹਨ।" #. MEN2d #. Undo @@ -4843,10 +4837,9 @@ #. qyCiy #: sw/inc/strings.hrc:477 -#, fuzzy msgctxt "STR_AUTOCORRECT" msgid "AutoCorrect" -msgstr "ਆਟੋ-ਠੀਕ" +msgstr "ਆਪੇ-ਠੀਕ" #. f4Jfr #: sw/inc/strings.hrc:478 @@ -4894,14 +4887,13 @@ #: sw/inc/strings.hrc:485 msgctxt "STR_REREAD" msgid "Replace Image" -msgstr "" +msgstr "ਚਿੱਤਰ ਬਦਲੋ" #. 6GmVr #: sw/inc/strings.hrc:486 -#, fuzzy msgctxt "STR_DELGRF" msgid "Delete Image" -msgstr "ਫਰੇਮ ਹਟਾਓ" +msgstr "ਚਿੱਤਰ ਹਟਾਓ" #. PAmBF #: sw/inc/strings.hrc:487 @@ -4997,13 +4989,13 @@ #: sw/inc/strings.hrc:502 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "ਫਰੇਮ ਲਿੰਕ ਕਰੋ" #. XV4Ap #: sw/inc/strings.hrc:503 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "ਫਰੇਮ ਅਣ-ਲਿੰਕ ਕਰੋ" #. vUJG9 #: sw/inc/strings.hrc:504 @@ -5112,16 +5104,16 @@ msgctxt "STR_UNDO_TABS" msgid "One tab" msgid_plural "$1 tabs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ਇੱਕ ਟੈਬ" +msgstr[1] "$1 ਟੈਬ" #. eP6mC #: sw/inc/strings.hrc:522 msgctxt "STR_UNDO_NLS" msgid "One line break" msgid_plural "$1 line breaks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ਇੱਕ ਲਾਈਨ ਬਰੇਕ" +msgstr[1] "$1 ਲਾਈਨ ਬਰੇਕਾਂ" #. yS3nP #: sw/inc/strings.hrc:523 @@ -5149,24 +5141,21 @@ #. 5KECk #: sw/inc/strings.hrc:527 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FORMAT" msgid "Attributes changed" msgstr "ਗੁਣ ਬਦਲੇ ਗਏ" #. N7CUk #: sw/inc/strings.hrc:528 -#, fuzzy msgctxt "STR_UNDO_REDLINE_TABLE" msgid "Table changed" -msgstr "ਟੇਬਲ ਤਬਦੀਲ" +msgstr "ਸਾਰਣੀ ਬਦਲੀ" #. DCGPF #: sw/inc/strings.hrc:529 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FMTCOLL" msgid "Style changed" -msgstr "ਟੇਬਲ ਤਬਦੀਲ" +msgstr "ਸਾਰਣੀ ਬਦਲੀ ਗਈ" #. p77WZ #: sw/inc/strings.hrc:530 @@ -5342,7 +5331,7 @@ #: sw/inc/strings.hrc:558 msgctxt "STR_UNDO_INSERT_TEXTBOX" msgid "text box" -msgstr "" +msgstr "ਲਿਖਤ ਬਾਕਸ" #. yNjem #. undo: STR_PARAGRAPHS, string.text @@ -5413,7 +5402,6 @@ #. bKvaD #: sw/inc/strings.hrc:571 -#, fuzzy msgctxt "STR_GRAPHIC" msgid "image" msgstr "ਚਿੱਤਰ" @@ -5435,8 +5423,8 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ਕਾਂਡ" +msgstr[1] "ਕਾਂਡ" #. 2JCL2 #: sw/inc/strings.hrc:575 @@ -5464,37 +5452,33 @@ #. rWw8U #: sw/inc/strings.hrc:579 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_CREATE" msgid "Create table style: $1" -msgstr "ਸਫ਼ਾ ਸਟਾਈਲ ਬਣਾਓ: $1" +msgstr "ਸਾਰਣੀ ਸਟਾਈਲ ਬਣਾਓ: $1" #. jGxgy #: sw/inc/strings.hrc:580 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_DELETE" msgid "Delete table style: $1" -msgstr "ਸਫ਼ਾ ਸਟਾਈਲ ਹਟਾਓ: $1" +msgstr "ਸਾਰਣੀ ਸਟਾਈਲ ਹਟਾਓ: $1" #. 6NWP3 #: sw/inc/strings.hrc:581 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_UPDATE" msgid "Update table style: $1" -msgstr "ਸਫ਼ਾ ਸਟਾਈਲ ਬਣਾਓ: $1" +msgstr "ਸਾਰਣੀ ਸਟਾਈਲ ਅੱਪਡੇਟ ਕਰੋ: $1" #. JegfU #: sw/inc/strings.hrc:582 -#, fuzzy msgctxt "STR_UNDO_TABLE_DELETE" msgid "Delete table" -msgstr "ਸਫ਼ਾ ਹਟਾਓ" +msgstr "ਸਾਰਣੀ ਹਟਾਓ" #. KSMpJ #: sw/inc/strings.hrc:583 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "" +msgstr "ਫਾਰਮ ਖੇਤਰ ਪਾਓ" #. 2zJmG #: sw/inc/strings.hrc:584 @@ -5596,7 +5580,7 @@ #: sw/inc/strings.hrc:601 msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME" msgid "Resolved" -msgstr "" +msgstr "ਹੱਲ ਕੀਤਾ" #. JtzA4 #: sw/inc/strings.hrc:602 @@ -5639,7 +5623,7 @@ #: sw/inc/strings.hrc:609 msgctxt "STR_COMCORE_CANT_SHOW" msgid "Image cannot be displayed." -msgstr "" +msgstr "ਚਿੱਤਰ ਦਿਖਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ।" #. iJsFt #: sw/inc/strings.hrc:610 @@ -5693,7 +5677,7 @@ #: sw/inc/strings.hrc:620 msgctxt "STR_STYLE_FAMILY_NUMBERING" msgid "List" -msgstr "" +msgstr "ਸੂਚੀ" #. NydLs #: sw/inc/strings.hrc:621 @@ -5709,7 +5693,6 @@ #. DRqDZ #: sw/inc/strings.hrc:624 -#, fuzzy msgctxt "ST_SCRIPT_ASIAN" msgid "Asian" msgstr "ਏਸ਼ੀਆਈ" @@ -5724,7 +5707,7 @@ #: sw/inc/strings.hrc:626 msgctxt "ST_SCRIPT_WESTERN" msgid "Western" -msgstr "" +msgstr "ਪੱਛਮੀ" #. HD64i #: sw/inc/strings.hrc:627 @@ -5734,37 +5717,33 @@ #. q6egu #: sw/inc/strings.hrc:628 -#, fuzzy msgctxt "STR_PRINTOPTUI_CONTENTS" msgid "Contents" msgstr "ਸਮਗੱਰੀ" #. Ka4fM #: sw/inc/strings.hrc:629 -#, fuzzy msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND" msgid "Page ba~ckground" -msgstr "ਪੇਜ਼ ਬੈਕਗਰਾਊਂਡ(~c)" +msgstr "ਸਫ਼ਾ ਬੈਕਗਰਾਊਂਡ(~c)" #. YPEEH #: sw/inc/strings.hrc:630 msgctxt "STR_PRINTOPTUI_PICTURES" msgid "~Images and other graphic objects" -msgstr "" +msgstr "ਚਿੱਤਰ ਤੇ ਹੋਰ ਗਰਾਫਿਕਸ ਆਬਜੈਕਟ(~I)" #. L6GSj #: sw/inc/strings.hrc:631 -#, fuzzy msgctxt "STR_PRINTOPTUI_HIDDEN" msgid "Hidden te~xt" msgstr "ਲੁਕਵਾਂ ਟੈਕਸਟ(~x)" #. pXiRN #: sw/inc/strings.hrc:632 -#, fuzzy msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS" msgid "~Text placeholders" -msgstr "ਟੈਕਸਟ ਥਾਂ(~T)" +msgstr "ਲਿਖਤ ਖਾਨਾ(~T)" #. JBWVd #: sw/inc/strings.hrc:633 @@ -5781,10 +5760,9 @@ #. kQDcq #: sw/inc/strings.hrc:635 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRINT_BLACK" msgid "Print text in blac~k" -msgstr "ਟੈਕਸਟ ਕਾਲੇ 'ਚ ਪਰਿੰਟ ਕਰੋ(~k)" +msgstr "ਲਿਖਤ ਕਾਲੇ 'ਚ ਪਰਿੰਟ ਕਰੋ(~k)" #. DEELn #: sw/inc/strings.hrc:636 @@ -5800,63 +5778,54 @@ #. MTJt2 #: sw/inc/strings.hrc:638 -#, fuzzy msgctxt "STR_PRINTOPTUI_ONLY_PAPER" msgid "~Use only paper tray from printer preferences" -msgstr "ਪਰਿੰਟਰ ਪਸੰਦ ਤੋਂ ਕੇਵਲ ਪੇਪਰ ਟਰੇ ਹੀ ਵਰਤੋਂ(~U)" +msgstr "ਪਰਿੰਟਰ ਪਸੰਦਾਂ ਤੋਂ ਕੇਵਲ ਪੇਪਰ ਟਰੇ ਹੀ ਵਰਤੋਂ(~U)" #. 4uBam #: sw/inc/strings.hrc:639 -#, fuzzy msgctxt "STR_PRINTOPTUI_NONE" msgid "None (document only)" msgstr "ਕੋਈ ਨਹੀਂ (ਕੇਵਲ ਡੌਕੂਮੈਂਟ ਹੀ)" #. pbQtA #: sw/inc/strings.hrc:640 -#, fuzzy msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY" msgid "Comments only" msgstr "ਕੇਵਲ ਟਿੱਪਣੀਆਂ" #. sVnbD #: sw/inc/strings.hrc:641 -#, fuzzy msgctxt "STR_PRINTOPTUI_PLACE_END" msgid "Place at end of document" msgstr "ਡੌਕੂਮੈਂਟ ਦੇ ਅੰਤ ਉੱਤੇ ਰੱਖੋ" #. D4BXH #: sw/inc/strings.hrc:642 -#, fuzzy msgctxt "STR_PRINTOPTUI_PLACE_PAGE" msgid "Place at end of page" -msgstr "ਪੇਜ਼ ਦੇ ਅੰਤ ਉੱਤੇ ਰੱਖੋ" +msgstr "ਸਫ਼ੇ ਦੇ ਅੰਤ ਉੱਤੇ ਰੱਖੋ" #. 6rzab #: sw/inc/strings.hrc:643 -#, fuzzy msgctxt "STR_PRINTOPTUI_COMMENTS" msgid "~Comments" msgstr "ਟਿੱਪਣੀਆਂ(~C)" #. cnqLU #: sw/inc/strings.hrc:644 -#, fuzzy msgctxt "STR_PRINTOPTUI_BROCHURE" msgid "Broch~ure" msgstr "ਪੈਫਲਿਟ(~u)" #. t6drz #: sw/inc/strings.hrc:645 -#, fuzzy msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT" msgid "Left-to-right script" msgstr "ਖੱਬੇ-ਤੋਂ-ਸੱਜੇ ਸਕ੍ਰਿਪਟ" #. QgmxB #: sw/inc/strings.hrc:646 -#, fuzzy msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT" msgid "Right-to-left script" msgstr "ਸੱਜੇ-ਤੋਂ-ਖੱਬੇ ਸਕ੍ਰਿਪਟ" @@ -5877,7 +5846,7 @@ #: sw/inc/strings.hrc:649 msgctxt "STR_PRINTOPTUI_PRINTSELECTION" msgid "~Selection" -msgstr "" +msgstr "ਚੋਣ(~S)" #. 9EXcV #: sw/inc/strings.hrc:650 @@ -5917,10 +5886,9 @@ #. 3CCa7 #: sw/inc/strings.hrc:657 -#, fuzzy msgctxt "STR_ACCESS_FORMULA_TEXT" msgid "Formula Text" -msgstr "ਫਾਰਮੂਲਾ ਟੈਕਸਟ(~F)" +msgstr "ਫਾਰਮੂਲਾ ਲਿਖਤ" #. FXNer #: sw/inc/strings.hrc:659 @@ -5974,7 +5942,7 @@ #: sw/inc/strings.hrc:667 msgctxt "STR_OUTLINE_TRACKING_OFF" msgid "Off" -msgstr "" +msgstr "ਬੰਦ" #. NGgt3 #: sw/inc/strings.hrc:668 @@ -6315,10 +6283,9 @@ #. GDCRF #: sw/inc/strings.hrc:730 -#, fuzzy msgctxt "STR_TOU" msgid "User-Defined" -msgstr "ਵਰਤੋਂਕਾਰ ਪਰਭਾਸ਼ਿਤ" +msgstr "ਵਰਤੋਂਕਾਰ-ਪਰਭਾਸ਼ਿਤ" #. vnaNc #: sw/inc/strings.hrc:731 @@ -6329,17 +6296,15 @@ #. BESjb #: sw/inc/strings.hrc:732 -#, fuzzy msgctxt "STR_TOX_AUTH" msgid "Bibliography" -msgstr "ਪੁਸਤਕ ਲਿਸਟ 1" +msgstr "ਪੁਸਤਕ ਲਿਸਟ" #. ZFBUD #: sw/inc/strings.hrc:733 -#, fuzzy msgctxt "STR_TOX_CITATION" msgid "Citation" -msgstr "ਹਵਾਲਾ ਪਾਠ" +msgstr "ਹਵਾਲਾ ਲਿਖਤ" #. WAs8q #: sw/inc/strings.hrc:734 @@ -6362,14 +6327,12 @@ #. TspkU #. SubType DocInfo #: sw/inc/strings.hrc:738 -#, fuzzy msgctxt "FLD_DOCINFO_TITEL" msgid "Title" msgstr "ਟਾਈਟਲ" #. ziEpC #: sw/inc/strings.hrc:739 -#, fuzzy msgctxt "FLD_DOCINFO_THEMA" msgid "Subject" msgstr "ਵਿਸ਼ਾ" @@ -6388,14 +6351,12 @@ #. i6psX #: sw/inc/strings.hrc:742 -#, fuzzy msgctxt "FLD_DOCINFO_CREATE" msgid "Created" -msgstr "ਨਿਰਮਾਣ:" +msgstr "ਨਿਰਮਾਣ" #. L2Bxp #: sw/inc/strings.hrc:743 -#, fuzzy msgctxt "FLD_DOCINFO_CHANGE" msgid "Modified" msgstr "ਸੋਧ" @@ -6450,10 +6411,9 @@ #. GD5KJ #: sw/inc/strings.hrc:752 -#, fuzzy msgctxt "STR_AUTH_TYPE_BOOKLET" msgid "Brochures" -msgstr "ਪੈਫਲਿਟ(~u)" +msgstr "ਪੈਫਲਿਟ" #. mfFSf #: sw/inc/strings.hrc:753 @@ -6583,17 +6543,15 @@ #. kUGDr #: sw/inc/strings.hrc:774 -#, fuzzy msgctxt "STR_AUTH_FIELD_ADDRESS" msgid "Address" -msgstr "ਸਿਰਨਾਵੀਂ" +msgstr "ਸਿਰਨਾਵਾਂ" #. DquVQ #: sw/inc/strings.hrc:775 -#, fuzzy msgctxt "STR_AUTH_FIELD_ANNOTE" msgid "Annotation" -msgstr "ਵਿਆਖਿਆ(~o)" +msgstr "ਵਿਆਖਿਆ" #. sduuV #: sw/inc/strings.hrc:776 @@ -6604,10 +6562,9 @@ #. fXvz6 #: sw/inc/strings.hrc:777 -#, fuzzy msgctxt "STR_AUTH_FIELD_BOOKTITLE" msgid "Book title" -msgstr "ਕਿਤਾਬ ਨਾਂ(~B)" +msgstr "ਕਿਤਾਬ ਨਾਂ" #. c8PFE #: sw/inc/strings.hrc:778 @@ -6617,31 +6574,27 @@ #. GXqxF #: sw/inc/strings.hrc:779 -#, fuzzy msgctxt "STR_AUTH_FIELD_EDITION" msgid "Edition" -msgstr "ਐਡੀਸ਼ਨ(~i)" +msgstr "ਐਡੀਸ਼ਨ" #. p7A3p #: sw/inc/strings.hrc:780 -#, fuzzy msgctxt "STR_AUTH_FIELD_EDITOR" msgid "Editor" msgstr "ਸੰਪਾਦਕ" #. aAFEz #: sw/inc/strings.hrc:781 -#, fuzzy msgctxt "STR_AUTH_FIELD_HOWPUBLISHED" msgid "Publication type" -msgstr "ਪ੍ਰਕਾਸ਼ਨ ਕਿਸਮ(~y)" +msgstr "ਪ੍ਰਕਾਸ਼ਨ ਕਿਸਮ" #. 8DwdJ #: sw/inc/strings.hrc:782 -#, fuzzy msgctxt "STR_AUTH_FIELD_INSTITUTION" msgid "Institution" -msgstr "ਸੰਸਥਾ(~u)" +msgstr "ਸੰਸਥਾ" #. VWNxy #: sw/inc/strings.hrc:783 @@ -6669,10 +6622,9 @@ #. ZB7Go #: sw/inc/strings.hrc:787 -#, fuzzy msgctxt "STR_AUTH_FIELD_ORGANIZATIONS" msgid "Organization" -msgstr "ਸੰਗਠਨ(~z)" +msgstr "ਸੰਗਠਨ" #. C4CdP #: sw/inc/strings.hrc:788 @@ -6688,31 +6640,27 @@ #. d9u3p #: sw/inc/strings.hrc:790 -#, fuzzy msgctxt "STR_AUTH_FIELD_SCHOOL" msgid "University" msgstr "ਯੂਨੀਵਰਸਿਟੀ" #. Qxsdb #: sw/inc/strings.hrc:791 -#, fuzzy msgctxt "STR_AUTH_FIELD_SERIES" msgid "Series" -msgstr "ਲੜੀ(~r)" +msgstr "ਲੜੀ" #. YhXPg #: sw/inc/strings.hrc:792 -#, fuzzy msgctxt "STR_AUTH_FIELD_TITLE" msgid "Title" msgstr "ਟਾਈਟਲ" #. qEBhL #: sw/inc/strings.hrc:793 -#, fuzzy msgctxt "STR_AUTH_FIELD_TYPE" msgid "Type of report" -msgstr "ਰਿਪੋਰਟ ਕਿਸਮ(~p)" +msgstr "ਰਿਪੋਰਟ ਕਿਸਮ" #. Sij9w #: sw/inc/strings.hrc:794 @@ -6764,10 +6712,9 @@ #. 3r6Wg #: sw/inc/strings.hrc:802 -#, fuzzy msgctxt "STR_AUTH_FIELD_ISBN" msgid "ISBN" -msgstr "~ISBN" +msgstr "ISBN" #. BhDrt #: sw/inc/strings.hrc:803 @@ -6789,7 +6736,6 @@ #. D2gkA #: sw/inc/strings.hrc:807 -#, fuzzy msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY" msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?" msgstr "ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਪਹਿਲਾਂ ਹੀ ਪੁਸਤਕ-ਸੂਚੀ ਇੰਦਰਾਜ਼ ਸ਼ਾਮਿਲ ਹੈ, ਪਰ ਡਾਟਾ ਵੱਖਰਾ ਹੈ। ਕੀ ਤੁਸੀਂ ਮੌਜੂਦਾ ਇੰਦਰਾਜ਼ਾਂ ਵਿੱਚ ਹੀ ਫੇਰ ਬਦਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" @@ -6802,14 +6748,12 @@ #. fwecS #: sw/inc/strings.hrc:810 -#, fuzzy msgctxt "STR_SHOW_COMMENTS" msgid "Show comments" msgstr "ਟਿੱਪਣੀ ਵੇਖੋ" #. HkUvy #: sw/inc/strings.hrc:811 -#, fuzzy msgctxt "STR_HIDE_COMMENTS" msgid "Hide comments" msgstr "ਟਿੱਪਣੀ ਓਹਲੇ" @@ -6973,10 +6917,9 @@ #. h4yuq #: sw/inc/strings.hrc:842 -#, fuzzy msgctxt "ST_SALUTATIONELEMENTS" msgid "Salutation e~lements" -msgstr "ਸਲਾਮ ਇਕਾਈਆਂ" +msgstr "ਸਲਾਮ ਇਕਾਈਆਂ(~l)" #. kWhqT #: sw/inc/strings.hrc:843 @@ -7010,10 +6953,9 @@ #. bafeG #: sw/inc/strings.hrc:848 -#, fuzzy msgctxt "ST_TEXT" msgid "Text" -msgstr "ਪਾਠ" +msgstr "ਲਿਖਤ" #. tt6sA #: sw/inc/strings.hrc:849 @@ -7090,10 +7032,9 @@ #. sq73T #: sw/inc/strings.hrc:862 -#, fuzzy msgctxt "STR_FILTER_SXW" msgid "%PRODUCTNAME Writer (*.odt;*.sxw)" -msgstr "%PRODUCTNAME ਟੇਬਲ(*.oxc)" +msgstr "%PRODUCTNAME ਰਾਇਟਰ (*.odt;*.sxw)" #. QupGC #: sw/inc/strings.hrc:863 @@ -7103,10 +7044,9 @@ #. SzqRv #: sw/inc/strings.hrc:864 -#, fuzzy msgctxt "STR_FILTER_XLS" msgid "Microsoft Excel (*.xls;*.xlsx)" -msgstr "ਮਾਈਕਰੋਸਾਫਟ ਐਕਸਲ (*.xls)" +msgstr "Microsoft ਐਕਸਲ (*.xls;*.xlsx)" #. zAUu8 #: sw/inc/strings.hrc:865 @@ -7128,17 +7068,15 @@ #. U4H2j #: sw/inc/strings.hrc:868 -#, fuzzy msgctxt "STR_FILTER_MDB" msgid "Microsoft Access (*.mdb;*.mde)" -msgstr "ਮਾਈਕਰੋਸਾਫਟ ਅਸੈੱਸ (*.mdb)" +msgstr "Microsoft ਅਸੈੱਸ (*.mdb;*.mde)" #. DwxF8 #: sw/inc/strings.hrc:869 -#, fuzzy msgctxt "STR_FILTER_ACCDB" msgid "Microsoft Access 2007 (*.accdb,*.accde)" -msgstr "ਮਾਈਕਰੋਸਾਫਟ ਅਸੈੱਸ 2007 (*.accdb)" +msgstr "Microsoft ਅਸੈੱਸ 2007 (*.accdb,*.accde)" #. uDNRt #: sw/inc/strings.hrc:870 @@ -7238,7 +7176,7 @@ #: sw/inc/strings.hrc:888 msgctxt "STR_DICTIONARY_UNAVAILABLE" msgid "No dictionary available" -msgstr "" +msgstr "ਕੋਈ ਡਿਕਸ਼ਨਰੀ ਮੌਜੂਦ ਨਹੀਂ ਹੈ" #. 8gBWQ #. -------------------------------------------------------------------- @@ -8316,10 +8254,9 @@ #. 9Ywzb #: sw/inc/strings.hrc:1113 -#, fuzzy msgctxt "STR_FRM_WIDTH" msgid "Width:" -msgstr "ਚੌੜਾਈ" +msgstr "ਚੌੜਾਈ:" #. 2GYT7 #: sw/inc/strings.hrc:1114 @@ -8335,10 +8272,9 @@ #. kLiYd #: sw/inc/strings.hrc:1116 -#, fuzzy msgctxt "STR_FLY_AT_PARA" msgid "to paragraph" -msgstr "ਪ੍ਹੈਰਾਗਰਾਫ਼" +msgstr "ਪ੍ਹੈਰਾਗਰਾਫ਼ ਲਈ" #. A8nAb #: sw/inc/strings.hrc:1117 @@ -8354,10 +8290,9 @@ #. hDUSa #: sw/inc/strings.hrc:1119 -#, fuzzy msgctxt "STR_FLY_AT_PAGE" msgid "to page" -msgstr "ਕੋਈ ਪੇਜ਼ ਨਹੀਂ" +msgstr "ਸਫ਼ੇ ਲਈ" #. JMHRz #: sw/inc/strings.hrc:1120 @@ -8385,7 +8320,6 @@ #. fcpTS #: sw/inc/strings.hrc:1124 -#, fuzzy msgctxt "STR_VERT_BOTTOM" msgid "at bottom" msgstr "ਹੇਠਾਂ ਵੱਲ" @@ -8441,21 +8375,18 @@ #. JyHkM #: sw/inc/strings.hrc:1133 -#, fuzzy msgctxt "STR_HORI_INSIDE" msgid "inside" -msgstr "ਅੰਦਰ" +msgstr "ਅੰਦਰਵਾਰ" #. iXSZZ #: sw/inc/strings.hrc:1134 -#, fuzzy msgctxt "STR_HORI_OUTSIDE" msgid "outside" -msgstr "ਬਾਹਰੋਂ" +msgstr "ਬਾਹਰਵਾਰ" #. kDY9Z #: sw/inc/strings.hrc:1135 -#, fuzzy msgctxt "STR_HORI_FULL" msgid "Full width" msgstr "ਪੂਰੀ ਚੌੜਾਈ" @@ -8480,10 +8411,9 @@ #. BWqF3 #: sw/inc/strings.hrc:1139 -#, fuzzy msgctxt "STR_EDIT_IN_READONLY" msgid "Editable in read-only document" -msgstr "ਪੜਨ ਲਈ ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਸੋਧ-ਯੋਗ(_d)" +msgstr "ਕੇਵਲ ਪੜਨ ਲਈ ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਸੋਧ-ਯੋਗ" #. SCL5F #: sw/inc/strings.hrc:1140 @@ -8577,10 +8507,9 @@ #. 5jDK3 #: sw/inc/strings.hrc:1155 -#, fuzzy msgctxt "STR_INVERT" msgid "Invert" -msgstr "ਸ਼ਾਮਲ" +msgstr "ਉਲਟ" #. DVSAx #: sw/inc/strings.hrc:1156 @@ -8596,21 +8525,18 @@ #. RXuUF #: sw/inc/strings.hrc:1158 -#, fuzzy msgctxt "STR_DRAWMODE_STD" msgid "Standard" msgstr "ਸਟੈਂਡਰਡ" #. kbALJ #: sw/inc/strings.hrc:1159 -#, fuzzy msgctxt "STR_DRAWMODE_GREY" msgid "Grayscales" msgstr "ਸਲੇਟੀ-ਪੈਮਾਨਾ" #. eSHEj #: sw/inc/strings.hrc:1160 -#, fuzzy msgctxt "STR_DRAWMODE_BLACKWHITE" msgid "Black & White" msgstr "ਕਾਲਾ ਅਤੇ ਚਿੱਟਾ" @@ -8623,10 +8549,9 @@ #. 8SwC3 #: sw/inc/strings.hrc:1162 -#, fuzzy msgctxt "STR_ROTATION" msgid "Rotation" -msgstr "ਹਵਾਲਾ ਪਾਠ" +msgstr "ਘੁੰਮਾਓ" #. hWEeF #: sw/inc/strings.hrc:1163 @@ -8702,7 +8627,6 @@ #. GEw9u #: sw/inc/strings.hrc:1176 -#, fuzzy msgctxt "ST_REG" msgid "Section" msgstr "ਭਾਗ" @@ -8739,7 +8663,6 @@ #. nquvS #: sw/inc/strings.hrc:1182 -#, fuzzy msgctxt "ST_FTN" msgid "Footnote" msgstr "ਫੁੱਟ-ਨੋਟ" @@ -8758,7 +8681,6 @@ #. qpbDE #: sw/inc/strings.hrc:1185 -#, fuzzy msgctxt "ST_SRCH_REP" msgid "Repeat search" msgstr "ਖੋਜ ਦੁਹਰਾਓ" @@ -8820,10 +8742,9 @@ #. UWeq4 #: sw/inc/strings.hrc:1196 -#, fuzzy msgctxt "STR_IMGBTN_DRW_DOWN" msgid "Next drawing" -msgstr "ਕੋਈ ਸਿਰਲੇਖ ਨਹੀਂ(~N)" +msgstr "ਅਗਲੀ ਡਰਾਇੰਗ" #. ZVCrD #: sw/inc/strings.hrc:1197 @@ -8839,10 +8760,9 @@ #. Mwcvm #: sw/inc/strings.hrc:1199 -#, fuzzy msgctxt "STR_IMGBTN_BKM_DOWN" msgid "Next bookmark" -msgstr "ਅੱਗੇ ਬੁੱਕਮਾਰਕ ਤੋਂ" +msgstr "ਅਗਲਾ ਬੁੱਕਮਾਰਕ" #. xbxDs #: sw/inc/strings.hrc:1200 @@ -8858,10 +8778,9 @@ #. YzK6w #: sw/inc/strings.hrc:1202 -#, fuzzy msgctxt "STR_IMGBTN_OUTL_DOWN" msgid "Next heading" -msgstr "ਕੋਈ ਸਿਰਲੇਖ ਨਹੀਂ(~N)" +msgstr "ਅਗਲਾ ਹੈਡਿੰਗ" #. skdRc #: sw/inc/strings.hrc:1203 @@ -8871,10 +8790,9 @@ #. RBFga #: sw/inc/strings.hrc:1204 -#, fuzzy msgctxt "STR_IMGBTN_FTN_DOWN" msgid "Next footnote" -msgstr "ਅੱਗੇ ਫੁੱਟਨੋਟ ਤੋਂ" +msgstr "ਅਗਲਾ ਫੁੱਟਨੋਟ" #. GNLrx #: sw/inc/strings.hrc:1205 @@ -8903,10 +8821,9 @@ #. EyvbV #: sw/inc/strings.hrc:1209 -#, fuzzy msgctxt "STR_IMGBTN_TBL_UP" msgid "Previous table" -msgstr "ਪਿੱਛੇ ਸਫ਼ਾ" +msgstr "ਪਿਛਲੀ ਸਾਰਣੀ" #. cC5vJ #: sw/inc/strings.hrc:1210 @@ -8934,17 +8851,15 @@ #. 6uGDP #: sw/inc/strings.hrc:1214 -#, fuzzy msgctxt "STR_IMGBTN_REG_UP" msgid "Previous section" -msgstr "ਪਿਛਲੇ ਭਾਗ ਤੇ" +msgstr "ਪਿਛਲਾ ਭਾਗ" #. YYCtk #: sw/inc/strings.hrc:1215 -#, fuzzy msgctxt "STR_IMGBTN_BKM_UP" msgid "Previous bookmark" -msgstr "ਪਿੱਛੇ ਬੁੱਕਮਾਰਕ ਤੋਂ" +msgstr "ਪਿਛਲਾ ਬੁੱਕਮਾਰਕ" #. nFLdX #: sw/inc/strings.hrc:1216 @@ -8962,7 +8877,7 @@ #: sw/inc/strings.hrc:1218 msgctxt "STR_IMGBTN_OUTL_UP" msgid "Previous heading" -msgstr "" +msgstr "ਪਿਛਲਾ ਹੈਡਿੰਗ" #. CzLBr #: sw/inc/strings.hrc:1219 @@ -8972,10 +8887,9 @@ #. B7PoL #: sw/inc/strings.hrc:1220 -#, fuzzy msgctxt "STR_IMGBTN_FTN_UP" msgid "Previous footnote" -msgstr "ਪਿੱਛੇ ਫੁੱਟਨੋਟ ਤੋਂ" +msgstr "ਪਿਛਲਾ ਫੁੱਟਨੋਟ" #. AgtLD #: sw/inc/strings.hrc:1221 @@ -9066,17 +8980,15 @@ #. hSYa3 #: sw/inc/strings.hrc:1236 -#, fuzzy msgctxt "STR_REDLINE_INSERT" msgid "Inserted" -msgstr "ਸ਼ਾਮਲ" +msgstr "ਸ਼ਾਮਲ ਕੀਤਾ" #. LnFkq #: sw/inc/strings.hrc:1237 -#, fuzzy msgctxt "STR_REDLINE_DELETE" msgid "Deleted" -msgstr "ਹਟਾਓ" +msgstr "ਹਟਾਇਆ" #. cTNEn #: sw/inc/strings.hrc:1238 @@ -9087,10 +8999,9 @@ #. YWr7C #: sw/inc/strings.hrc:1239 -#, fuzzy msgctxt "STR_REDLINE_TABLE" msgid "Table changed" -msgstr "ਟੇਬਲ ਤਬਦੀਲ" +msgstr "ਸਾਰਣੀ ਬਦਲੀ" #. 6xVDN #: sw/inc/strings.hrc:1240 @@ -9106,17 +9017,15 @@ #. wLDkj #: sw/inc/strings.hrc:1242 -#, fuzzy msgctxt "STR_REDLINE_TABLE_ROW_INSERT" msgid "Row Inserted" -msgstr "ਸ਼ਾਮਿਲ ਕੀਤੀ ਕਤਾਰ" +msgstr "ਕਤਾਰ ਸ਼ਾਮਲ ਕੀਤੀ" #. Eb5Gb #: sw/inc/strings.hrc:1243 -#, fuzzy msgctxt "STR_REDLINE_TABLE_ROW_DELETE" msgid "Row Deleted" -msgstr "ਹਟਾਈ ਕਤਾਰ" +msgstr "ਕਤਾਰ ਹਟਾਈ" #. i5ZJt #: sw/inc/strings.hrc:1244 @@ -9134,13 +9043,13 @@ #: sw/inc/strings.hrc:1246 msgctxt "STR_REDLINE_INSERT_MOVED" msgid "Moved (insertion)" -msgstr "" +msgstr "ਹਿਲਾਈ (ਸ਼ਾਮਲ)" #. o39AA #: sw/inc/strings.hrc:1247 msgctxt "STR_REDLINE_DELETE_MOVED" msgid "Moved (deletion)" -msgstr "" +msgstr "ਹਿਲਾਈ (ਹਟਾਈ)" #. DRCyp #: sw/inc/strings.hrc:1248 @@ -9540,10 +9449,9 @@ #. aXW8y #: sw/inc/strings.hrc:1320 -#, fuzzy msgctxt "STR_TOKEN_HELP_TEXT" msgid "Text" -msgstr "ਪਾਠ" +msgstr "ਲਿਖਤ" #. MCUd2 #: sw/inc/strings.hrc:1321 @@ -9562,13 +9470,13 @@ #: sw/inc/strings.hrc:1323 msgctxt "STR_TOKEN_HELP_LINK_START" msgid "Hyperlink start" -msgstr "" +msgstr "ਹਾਈਪਰਲਿੰਕ ਸ਼ੁਰੂ" #. Ytn5g #: sw/inc/strings.hrc:1324 msgctxt "STR_TOKEN_HELP_LINK_END" msgid "Hyperlink end" -msgstr "" +msgstr "ਹਾਈਪਰਲਿੰਕ ਖਤਮ" #. hRo3J #: sw/inc/strings.hrc:1325 @@ -9586,7 +9494,7 @@ #: sw/inc/strings.hrc:1327 msgctxt "STR_STRUCTURE" msgid "Structure text" -msgstr "" +msgstr "ਢਾਂਚਾ ਲਿਖਤ" #. kwoGP #: sw/inc/strings.hrc:1328 @@ -9698,7 +9606,7 @@ #: sw/inc/strings.hrc:1352 msgctxt "STR_WRONG_PASSWD_REPEAT" msgid "The password has not been set." -msgstr "" +msgstr "ਪਾਸਵਰਡ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।" #. GBVqD #: sw/inc/strings.hrc:1354 @@ -9758,7 +9666,7 @@ #: sw/inc/strings.hrc:1364 msgctxt "STR_ERR_SRCSTREAM" msgid "The source cannot be loaded." -msgstr "" +msgstr "ਸਰੋਤ ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" #. K9qMS #: sw/inc/strings.hrc:1365 @@ -9774,16 +9682,15 @@ #. qVZBx #: sw/inc/strings.hrc:1367 -#, fuzzy msgctxt "STR_TEXTOPTIONS" msgid "Text document" -msgstr "ਪ੍ਰਤੀ ਡੌਕੂਮੈਂਟ" +msgstr "ਲਿਖਤ ਦਸਤਾਵੇਜ਼" #. qmmPU #: sw/inc/strings.hrc:1368 msgctxt "STR_SCAN_NOSOURCE" msgid "Source not specified." -msgstr "" +msgstr "ਸਰੋਤ ਨਹੀਂ ਨਿਯਤ ਕੀਤਾ।" #. 2LgDJ #: sw/inc/strings.hrc:1369 @@ -9799,10 +9706,9 @@ #. DE9FZ #: sw/inc/strings.hrc:1371 -#, fuzzy msgctxt "STR_EDIT_FOOTNOTE" msgid "Edit Footnote/Endnote" -msgstr "ਫੁੱਟਨੋਟ/ਐਡਨੋਟ ਸ਼ਾਮਲ" +msgstr "ਫੁੱਟਨੋਟ/ਅੰਤ-ਨੋਟ ਸੋਧੋ" #. EzBCZ #: sw/inc/strings.hrc:1372 @@ -9837,28 +9743,27 @@ #. BT3M3 #: sw/inc/strings.hrc:1378 -#, fuzzy msgctxt "ST_CONTINUE" msgid "~Continue" -msgstr "ਜਾਰੀ ਰੱਖੋ" +msgstr "ਜਾਰੀ ਰੱਖੋ(~C)" #. ZR9aw #: sw/inc/strings.hrc:1379 msgctxt "ST_SENDINGTO" msgid "Sending to: %1" -msgstr "" +msgstr "ਇਸ ਨੂੰ ਭੇਜਿਆ ਜਾ ਰਿਹਾ ਹੈ: %1" #. YCNYb #: sw/inc/strings.hrc:1380 msgctxt "ST_COMPLETED" msgid "Successfully sent" -msgstr "" +msgstr "ਕਾਮਯਾਬੀ ਨਾਲ ਭੇਜਿਆ" #. fmHmE #: sw/inc/strings.hrc:1381 msgctxt "ST_FAILED" msgid "Sending failed" -msgstr "" +msgstr "ਭੇਜਣਾ ਅਸਫ਼ਲ" #. yAAPM #: sw/inc/strings.hrc:1383 @@ -9870,7 +9775,7 @@ #: sw/inc/strings.hrc:1385 msgctxt "STR_TBL_FORMULA" msgid "Text formula" -msgstr "" +msgstr "ਲਿਖਤ ਫਾਰਮੂਲਾ" #. RmBFW #: sw/inc/strings.hrc:1387 @@ -9913,7 +9818,7 @@ #: sw/inc/strings.hrc:1401 msgctxt "STR_SIGNED_BY" msgid "Signed-by" -msgstr "" +msgstr "ਦਸਤਖਤ ਕੀਤਾੇ" #. BK7ub #: sw/inc/strings.hrc:1402 @@ -9923,16 +9828,15 @@ #. kZKCf #: sw/inc/strings.hrc:1404 -#, fuzzy msgctxt "labeldialog|cards" msgid "Business Cards" -msgstr "ਕਿੱਤਾ ਕਾਰਡ(~U)" +msgstr "ਕਾਰੋਬਾਰੀ ਕਾਰਡ" #. ECFij #: sw/inc/strings.hrc:1406 msgctxt "STR_MAILCONFIG_DLG_TITLE" msgid "Email settings" -msgstr "" +msgstr "ਈਮੇਲ ਸੈਟਿੰਗਾਂ" #. PwrB9 #: sw/inc/strings.hrc:1408 @@ -9978,10 +9882,9 @@ #. EoAB8 #: sw/inc/strings.hrc:1416 -#, fuzzy msgctxt "createautomarkdialog|comment" msgid "Comment" -msgstr "ਟਿੱਪਣੀਆਂ" +msgstr "ਟਿੱਪਣੀ" #. Shstx #: sw/inc/strings.hrc:1417 @@ -9993,7 +9896,7 @@ #: sw/inc/strings.hrc:1418 msgctxt "createautomarkdialog|wordonly" msgid "Word only" -msgstr "" +msgstr "ਸਿਰਫ਼ ਸ਼ਬਦ" #. zD8rb #: sw/inc/strings.hrc:1419 @@ -10029,7 +9932,6 @@ #. EQfLp #: sw/inc/utlui.hrc:29 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Correct TWo INitial CApitals" msgstr "ਦੋ ਸ਼ੁਰੂਆਤੀ ਵੱਡੇ ਅੱਖਰ ਠੀਕ" @@ -10056,49 +9958,42 @@ #. zXHk9 #: sw/inc/utlui.hrc:33 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Bullets replaced" msgstr "ਬਿੰਦੀਆਂ ਬਦਲੀਆਂ" #. p7V6t #: sw/inc/utlui.hrc:34 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Automatic _underline_" msgstr "ਆਟੋਮੈਟਿਕ _ਹੇਠਾਂ ਰੇਖਾ_" #. Hzt7q #: sw/inc/utlui.hrc:35 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Automatic *bold*" msgstr "ਆਟੋਮੈਟਿਕ *ਗੂੜਾ*" #. oMfhs #: sw/inc/utlui.hrc:36 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Replace 1/2 ... with ½ ..." msgstr "1/2 ... ਨੂੰ ½ ... ਨਾਲ ਬਦਲੋ" #. UCK6y #: sw/inc/utlui.hrc:37 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "URL recognition" msgstr "URL ਪਛਾਣ" #. MD9fC #: sw/inc/utlui.hrc:38 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Replace dashes" msgstr "ਡੈਸ਼ ਤਬਦੀਲ" #. YABTx #: sw/inc/utlui.hrc:39 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Replace 1st... with 1^st..." msgstr "1st... ਨੂੰ 1^st... ਨਾਲ ਤਬਦੀਲ" @@ -10215,10 +10110,9 @@ #. rFSF5 #: sw/uiconfig/swriter/ui/addentrydialog.ui:8 -#, fuzzy msgctxt "addentrydialog|AddEntryDialog" msgid "Add Element" -msgstr "ਐਲੀਮੈਟ ਸ਼ਾਮਲ" +msgstr "ਐਲੀਮੈਟ ਜੋੜੋ" #. D73ms #: sw/uiconfig/swriter/ui/addentrydialog.ui:100 @@ -10375,7 +10269,7 @@ #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:83 msgctxt "alreadyexistsdialog|label1" msgid "Subject:" -msgstr "" +msgstr "ਵਿਸ਼ਾ:" #. 2FnkB #: sw/uiconfig/swriter/ui/annotation.ui:18 @@ -10387,13 +10281,13 @@ #: sw/uiconfig/swriter/ui/annotation.ui:32 msgctxt "annotationmenu|resolve" msgid "Resolve" -msgstr "" +msgstr "ਹੱਲ" #. WgQ4z #: sw/uiconfig/swriter/ui/annotation.ui:40 msgctxt "annotationmenu|unresolve" msgid "Unresolve" -msgstr "" +msgstr "ਨਾ-ਹੱਲ" #. FYnEB #: sw/uiconfig/swriter/ui/annotation.ui:48 @@ -10428,10 +10322,9 @@ #. 8WjDG #: sw/uiconfig/swriter/ui/annotation.ui:88 -#, fuzzy msgctxt "annotationmenu|deleteall" msgid "_Delete All Comments" -msgstr "ਸਭ ਟਿੱਪਣੀਆਂ ਹਟਾਓ" +msgstr "ਸਭ ਟਿੱਪਣੀਆਂ ਹਟਾਓ(_D)" #. GaWL2 #: sw/uiconfig/swriter/ui/annotation.ui:96 @@ -10578,7 +10471,7 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:203 msgctxt "assignfieldsdialog|ST_PREVIEW" msgid "Preview" -msgstr "" +msgstr "ਝਲਕ" #. iGH2C #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:216 @@ -10648,19 +10541,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" -msgstr "" +msgstr "ਸਟਾਈਲ" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ਸਟਾਈਲ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -10685,17 +10578,15 @@ #. nthhh #: sw/uiconfig/swriter/ui/attachnamedialog.ui:83 -#, fuzzy msgctxt "attachnamedialog|label1" msgid "Name:" -msgstr "ਨਾਂ(_N):" +msgstr "ਨਾਂ:" #. MrmFr #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:14 -#, fuzzy msgctxt "authenticationsettingsdialog|AuthenticationSettingsDialog" msgid "Server Authentication" -msgstr "ਯੂਜ਼ਰ ਅਧਿਕਾਰ" +msgstr "ਸਰਵਰ ਪਰਮਾਣਕਿਤਾ" #. 6RCzU #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:92 @@ -10789,17 +10680,15 @@ #. DVAwX #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:309 -#, fuzzy msgctxt "authenticationsettingsdialog|port_label" msgid "P_ort:" -msgstr "ਪੋਰਟ(_o)" +msgstr "ਪੋਰਟ(_o):" #. RjbdV #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:324 -#, fuzzy msgctxt "authenticationsettingsdialog|label3" msgid "Type:" -msgstr "ਕਿਸਮ" +msgstr "ਕਿਸਮ:" #. o6FWC #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:334 @@ -10835,7 +10724,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:403 msgctxt "extended_tip|inpassword" msgid "Enter the password." -msgstr "" +msgstr "ਪਾਸਵਰਡ ਦਿਓ।" #. eEGih #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:417 @@ -14198,37 +14087,37 @@ msgstr "ਡਾਟਾਬੇਸ ਤਬਦੀਲ" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "ਦੱਸੋ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ਵਰਤੋਂ ਅਧੀਨ ਡਾਟਾਬੇਸ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ਝਲਕ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14238,31 +14127,31 @@ "ਡਾਟਾਬੇਸ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰਨ ਲਈ ਝਲਕ ਬਟਨ ਦੀ ਚੋਣ ਕਰੋ।" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ਡਾਟਾਬੇਸ ਤਬਦੀਲ" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ਡੌਕੂਮੈਂਟ ਲਈ ਡਾਟਾਬੇਸ:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20431,111 +20320,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ਝਲਕ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ਝਲਕ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22699,50 +22588,50 @@ msgstr "ਆਬਜੈਕਟ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ਕਿਸਮ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ਚੋਣ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ਸਮੇਟੋ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ਹਾਈਪਰਲਿੰਕ" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ਹਾਸ਼ੀਆ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ਏਰੀਆ" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ਪਾਰਦਰਸ਼ਤਾ" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ਮਾਈਕਰੋ" @@ -22859,10 +22748,9 @@ #. 6QFaH #: sw/uiconfig/swriter/ui/optcaptionpage.ui:360 -#, fuzzy msgctxt "optcaptionpage|label3" msgid "Character style:" -msgstr "ਅੱਖਰ ਸਟਾਈਲ" +msgstr "ਅੱਖਰ ਸਟਾਈਲ:" #. tbQPU #: sw/uiconfig/swriter/ui/optcaptionpage.ui:376 @@ -22878,10 +22766,9 @@ #. 9nDHG #: sw/uiconfig/swriter/ui/optcaptionpage.ui:391 -#, fuzzy msgctxt "optcaptionpage|applyborder" msgid "Apply border and shadow" -msgstr "ਹਾਸ਼ੀਆ ਅਤੇ ਛਾਂ ਲਾਗੂ ਕਰੋ(_A)" +msgstr "ਹਾਸ਼ੀਆ ਅਤੇ ਛਾਂ ਲਾਗੂ ਕਰੋ" #. J9Bv9 #: sw/uiconfig/swriter/ui/optcaptionpage.ui:399 @@ -22924,7 +22811,6 @@ #. gB7ua #: sw/uiconfig/swriter/ui/optcaptionpage.ui:579 -#, fuzzy msgctxt "optcaptionpage|label13" msgid "Caption Order" msgstr "ਸੁਰਖੀ ਕ੍ਰਮ" @@ -22937,10 +22823,9 @@ #. VhREB #: sw/uiconfig/swriter/ui/optcomparison.ui:34 -#, fuzzy msgctxt "optcomparison|auto" msgid "A_uto" -msgstr "ਆਟੋ(_U)" +msgstr "ਆਟੋ(_u)" #. LBDEx #: sw/uiconfig/swriter/ui/optcomparison.ui:49 @@ -22956,10 +22841,9 @@ #. BZL9r #: sw/uiconfig/swriter/ui/optcomparison.ui:83 -#, fuzzy msgctxt "optcomparison|label1" msgid "Compare Documents" -msgstr "ਡੌਕੂਮੈਂਟ ਤੁਲਨਾ" +msgstr "ਦਸਤਾਵੇਜ਼ਾਂ ਦੀ ਤੁਲਨਾ" #. DDuRo #: sw/uiconfig/swriter/ui/optcomparison.ui:113 @@ -23125,24 +23009,21 @@ #. NWF9F #: sw/uiconfig/swriter/ui/optfonttabpage.ui:47 -#, fuzzy msgctxt "optfonttabpage|size_label" msgid "_Size" -msgstr "ਆਕਾਰ" +msgstr "ਆਕਾਰ(_S)" #. KyMdw #: sw/uiconfig/swriter/ui/optfonttabpage.ui:61 -#, fuzzy msgctxt "optfonttabpage|default_label" msgid "De_fault:" -msgstr "ਡਿਫਾਲਟ" +msgstr "ਡਿਫਾਲਟ(_f):" #. 9ArgF #: sw/uiconfig/swriter/ui/optfonttabpage.ui:75 -#, fuzzy msgctxt "optfonttabpage|heading_label" msgid "Headin_g:" -msgstr "ਹੈਡਿੰਗ" +msgstr "ਹੈਡਿੰਗ(_g):" #. iHgYG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:89 @@ -23152,17 +23033,15 @@ #. FZvkS #: sw/uiconfig/swriter/ui/optfonttabpage.ui:103 -#, fuzzy msgctxt "optfonttabpage|caption_label" msgid "C_aption:" -msgstr "ਸੁਰਖੀ" +msgstr "ਸੁਰਖੀ(_a):" #. mBVuP #: sw/uiconfig/swriter/ui/optfonttabpage.ui:117 -#, fuzzy msgctxt "optfonttabpage|index_label" msgid "_Index:" -msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ" +msgstr "ਇੰਡੈਕਸ(_I):" #. ymmxp #: sw/uiconfig/swriter/ui/optfonttabpage.ui:142 @@ -23232,10 +23111,9 @@ #. 6aJB2 #: sw/uiconfig/swriter/ui/optfonttabpage.ui:394 -#, fuzzy msgctxt "optfonttabpage|standard" msgid "_Default" -msgstr "ਡਿਫਾਲਟ" +msgstr "ਡਿਫਾਲਟ(_D)" #. VezyG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:415 @@ -23306,10 +23184,9 @@ #. rBxLK #: sw/uiconfig/swriter/ui/optformataidspage.ui:129 -#, fuzzy msgctxt "optformataidspage|break" msgid "Brea_ks" -msgstr "ਬਰੇਕ" +msgstr "ਬਰੇਕ(_k)" #. smjwV #: sw/uiconfig/swriter/ui/optformataidspage.ui:137 @@ -23471,10 +23348,9 @@ #. V9Ahc #: sw/uiconfig/swriter/ui/optgeneralpage.ui:43 -#, fuzzy msgctxt "optgeneralpage|updatefields" msgid "_Fields" -msgstr "ਖੇਤਰ" +msgstr "ਖੇਤਰ(_F)" #. SobJt #: sw/uiconfig/swriter/ui/optgeneralpage.ui:51 @@ -23484,10 +23360,9 @@ #. gGD6o #: sw/uiconfig/swriter/ui/optgeneralpage.ui:62 -#, fuzzy msgctxt "optgeneralpage|updatecharts" msgid "_Charts" -msgstr "ਚਾਰਟ" +msgstr "ਚਾਰਟ(_C)" #. xA9SL #: sw/uiconfig/swriter/ui/optgeneralpage.ui:70 @@ -23527,10 +23402,9 @@ #. sbk3q #: sw/uiconfig/swriter/ui/optgeneralpage.ui:155 -#, fuzzy msgctxt "optgeneralpage|never" msgid "_Never" -msgstr "ਕਦੇ ਨਹੀਂ" +msgstr "ਕਦੇ ਨਹੀਂ(_N)" #. zCHEF #: sw/uiconfig/swriter/ui/optgeneralpage.ui:164 @@ -23546,10 +23420,9 @@ #. BnMCi #: sw/uiconfig/swriter/ui/optgeneralpage.ui:217 -#, fuzzy msgctxt "optgeneralpage|label5" msgid "_Measurement unit:" -msgstr "ਮਾਪ ਇਕਾਈ" +msgstr "ਮਾਪ ਇਕਾਈ(_M):" #. pFfju #: sw/uiconfig/swriter/ui/optgeneralpage.ui:235 @@ -23559,10 +23432,9 @@ #. TjFaE #: sw/uiconfig/swriter/ui/optgeneralpage.ui:248 -#, fuzzy msgctxt "optgeneralpage|tablabel" msgid "_Tab stops:" -msgstr "ਟੈਬ ਰੋਕੋ" +msgstr "ਟੈਬ ਰੋਕੋ(_T):" #. ptDvH #: sw/uiconfig/swriter/ui/optgeneralpage.ui:271 @@ -23632,16 +23504,15 @@ #. G6aHC #: sw/uiconfig/swriter/ui/optredlinepage.ui:34 -#, fuzzy msgctxt "optredlinepage|insert_label" msgid "_Attributes:" -msgstr "ਗੁਣ" +msgstr "ਗੁਣ(_A):" #. AdCLY #: sw/uiconfig/swriter/ui/optredlinepage.ui:48 msgctxt "optredlinepage|insertcolor_label" msgid "Co_lor:" -msgstr "" +msgstr "ਰੰਗ(_l):" #. zM5BS #: sw/uiconfig/swriter/ui/optredlinepage.ui:64 @@ -23651,7 +23522,6 @@ #. mhAvC #: sw/uiconfig/swriter/ui/optredlinepage.ui:65 -#, fuzzy msgctxt "optredlinepage|insert" msgid "Bold" msgstr "ਗੂੜੇ" @@ -23664,21 +23534,18 @@ #. hVBVQ #: sw/uiconfig/swriter/ui/optredlinepage.ui:67 -#, fuzzy msgctxt "optredlinepage|insert" msgid "Underlined" msgstr "ਹੇਠਾਂ ਲਾਈਨ" #. FLFXy #: sw/uiconfig/swriter/ui/optredlinepage.ui:68 -#, fuzzy msgctxt "optredlinepage|insert" msgid "Underlined: double" msgstr "ਹੇਠਾਂ ਲਾਈਨ: ਦੂਹਰੀ" #. KaDwD #: sw/uiconfig/swriter/ui/optredlinepage.ui:69 -#, fuzzy msgctxt "optredlinepage|insert" msgid "Strikethrough" msgstr "ਵਿੰਨ੍ਹੋ" @@ -23687,7 +23554,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:70 msgctxt "optredlinepage|insert" msgid "Uppercase" -msgstr "" +msgstr "ਵੱਡੇ ਅੱਖਰ" #. LqieQ #: sw/uiconfig/swriter/ui/optredlinepage.ui:71 @@ -23733,23 +23600,21 @@ #. aCEwk #: sw/uiconfig/swriter/ui/optredlinepage.ui:145 -#, fuzzy msgctxt "optredlinepage|label2" msgid "Insertions" msgstr "ਸ਼ਾਮਲ" #. FFvMK #: sw/uiconfig/swriter/ui/optredlinepage.ui:179 -#, fuzzy msgctxt "optredlinepage|deleted_label" msgid "Attri_butes:" -msgstr "ਗੁਣ" +msgstr "ਗੁਣ(_b):" #. CzQcF #: sw/uiconfig/swriter/ui/optredlinepage.ui:193 msgctxt "optredlinepage|deletedcolor_label" msgid "Col_or:" -msgstr "" +msgstr "ਰੰਗ(_o):" #. JsEJx #: sw/uiconfig/swriter/ui/optredlinepage.ui:210 @@ -23771,23 +23636,21 @@ #. 3FpZy #: sw/uiconfig/swriter/ui/optredlinepage.ui:277 -#, fuzzy msgctxt "optredlinepage|label3" msgid "Deletions" msgstr "ਹਟਾਉਣਾ" #. qhZhQ #: sw/uiconfig/swriter/ui/optredlinepage.ui:311 -#, fuzzy msgctxt "optredlinepage|changed_label" msgid "Attrib_utes:" -msgstr "ਗੁਣ" +msgstr "ਗੁਣ(_u):" #. 3pALq #: sw/uiconfig/swriter/ui/optredlinepage.ui:325 msgctxt "optredlinepage|changedcolor_label" msgid "Colo_r:" -msgstr "" +msgstr "ਰੰਗ(_r):" #. hFSia #: sw/uiconfig/swriter/ui/optredlinepage.ui:342 @@ -23817,7 +23680,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:453 msgctxt "optredlinepage|markcolor-atkobject" msgid "Color of Mark" -msgstr "" +msgstr "ਚਿੰਨ੍ਹ ਦਾ ਰੰਗ" #. RrcPw #: sw/uiconfig/swriter/ui/optredlinepage.ui:454 @@ -23829,14 +23692,13 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:467 msgctxt "optredlinepage|markpos_label" msgid "Mar_k:" -msgstr "" +msgstr "ਚਿੰਨ੍ਹ(_k):" #. paCGy #: sw/uiconfig/swriter/ui/optredlinepage.ui:481 -#, fuzzy msgctxt "optredlinepage|markcolor_label" msgid "_Color:" -msgstr "ਰੰਗ(_C)" +msgstr "ਰੰਗ(_C):" #. T9Fd9 #: sw/uiconfig/swriter/ui/optredlinepage.ui:525 @@ -23860,13 +23722,13 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:528 msgctxt "optredlinepage|markpos" msgid "Outer margin" -msgstr "" +msgstr "ਬਾਹਰੀ ਹਾਸ਼ੀਆ" #. SxANq #: sw/uiconfig/swriter/ui/optredlinepage.ui:529 msgctxt "optredlinepage|markpos" msgid "Inner margin" -msgstr "" +msgstr "ਅੰਦਰੂਨੀ ਹਾਸ਼ੀਆ" #. zf4X2 #: sw/uiconfig/swriter/ui/optredlinepage.ui:533 @@ -23876,10 +23738,9 @@ #. CEWpA #: sw/uiconfig/swriter/ui/optredlinepage.ui:548 -#, fuzzy msgctxt "optredlinepage|label5" msgid "Lines Changed" -msgstr "ਸੈੱਟ ਬਦਲੋ" +msgstr "ਲਾਈਨਾਂ ਬਦਲੀਆਂ" #. ZgDSi #: sw/uiconfig/swriter/ui/optredlinepage.ui:562 @@ -23889,10 +23750,9 @@ #. yqco2 #: sw/uiconfig/swriter/ui/opttablepage.ui:60 -#, fuzzy msgctxt "opttablepage|header" msgid "H_eading" -msgstr "ਹੈਡਿੰਗ" +msgstr "ਹੈਡਿੰਗ(_e)" #. 4qFFB #: sw/uiconfig/swriter/ui/opttablepage.ui:68 @@ -23926,10 +23786,9 @@ #. DF6g4 #: sw/uiconfig/swriter/ui/opttablepage.ui:118 -#, fuzzy msgctxt "opttablepage|border" msgid "B_order" -msgstr "ਹਾਸ਼ੀਆ" +msgstr "ਹਾਸ਼ੀਆ(_o)" #. qkQei #: sw/uiconfig/swriter/ui/opttablepage.ui:126 @@ -23945,10 +23804,9 @@ #. WYbaB #: sw/uiconfig/swriter/ui/opttablepage.ui:173 -#, fuzzy msgctxt "opttablepage|numformatting" msgid "_Number recognition" -msgstr "ਗਿਣਤੀ ਪਛਾਣ" +msgstr "ਗਿਣਤੀ ਪਛਾਣ(_N)" #. 8Bg9h #: sw/uiconfig/swriter/ui/opttablepage.ui:181 @@ -23970,10 +23828,9 @@ #. b6GGr #: sw/uiconfig/swriter/ui/opttablepage.ui:212 -#, fuzzy msgctxt "opttablepage|numalignment" msgid "_Alignment" -msgstr "ਇਕਸਾਰ" +msgstr "ਇਕਸਾਰ(_A)" #. dBHyT #: sw/uiconfig/swriter/ui/opttablepage.ui:221 @@ -23995,10 +23852,9 @@ #. oW7XW #: sw/uiconfig/swriter/ui/opttablepage.ui:297 -#, fuzzy msgctxt "opttablepage|fix" msgid "_Fixed" -msgstr "ਸਥਿਰ" +msgstr "ਸਥਿਰ(_F):" #. jBrSY #: sw/uiconfig/swriter/ui/opttablepage.ui:307 @@ -24069,17 +23925,15 @@ #. bmvCF #: sw/uiconfig/swriter/ui/opttablepage.ui:486 -#, fuzzy msgctxt "opttablepage|label5" msgid "_Row:" -msgstr "ਕਤਾਰਾਂ" +msgstr "ਕਤਾਰ(_R):" #. bb7Uf #: sw/uiconfig/swriter/ui/opttablepage.ui:501 -#, fuzzy msgctxt "opttablepage|label6" msgid "_Column:" -msgstr "ਕਾਲਮ(_C)" +msgstr "ਕਾਲਮ(_C):" #. MwaG6 #: sw/uiconfig/swriter/ui/opttablepage.ui:538 @@ -24095,21 +23949,18 @@ #. hoDuN #: sw/uiconfig/swriter/ui/opttablepage.ui:571 -#, fuzzy msgctxt "opttablepage|label15" msgid "Ro_w:" -msgstr "ਕਤਾਰ(_w)" +msgstr "ਕਤਾਰ(_w):" #. pBM3d #: sw/uiconfig/swriter/ui/opttablepage.ui:586 -#, fuzzy msgctxt "opttablepage|label16" msgid "Colu_mn:" -msgstr "ਕਾਲਮ" +msgstr "ਕਾਲਮ(_m):" #. KcBp8 #: sw/uiconfig/swriter/ui/opttablepage.ui:600 -#, fuzzy msgctxt "opttablepage|label14" msgid "Insert cell" msgstr "ਸੈੱਲ ਸ਼ਾਮਲ" @@ -24206,7 +24057,6 @@ #. d2QaP #: sw/uiconfig/swriter/ui/outlinenumbering.ui:113 -#, fuzzy msgctxt "outlinenumbering|OutlineNumberingDialog" msgid "Chapter Numbering" msgstr "ਕਾਂਡ ਗਿਣਤੀ" @@ -24261,24 +24111,21 @@ #. nrfyA #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:144 -#, fuzzy msgctxt "outlinenumberingpage|label4" msgid "Number:" -msgstr "ਗਿਣਤੀ" +msgstr "ਗਿਣਤੀ:" #. 8yV7Q #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:158 -#, fuzzy msgctxt "outlinenumberingpage|label5" msgid "Character style:" -msgstr "ਅੱਖਰ ਸਟਾਈਲ" +msgstr "ਅੱਖਰ ਸਟਾਈਲ:" #. Az7ML #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:172 -#, fuzzy msgctxt "outlinenumberingpage|sublevelsft" msgid "Show sublevels:" -msgstr "ਸਬਲੈਵਲ ਵੇਖਾਓ" +msgstr "ਸਬਲੈਵਲ ਵੇਖਾਓ:" #. Ee4ms #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:189 @@ -24300,10 +24147,9 @@ #. XVzhy #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:239 -#, fuzzy msgctxt "outlinenumberingpage|label10" msgid "Start at:" -msgstr "ਸ਼ੁਰੂ" +msgstr "ਸ਼ੁਰੂ:" #. QSg9A #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:259 @@ -24337,17 +24183,15 @@ #. zoAuC #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:390 -#, fuzzy msgctxt "outlinenumberingpage|label8" msgid "Before:" -msgstr "ਪਹਿਲਾਂ" +msgstr "ਪਹਿਲਾਂ:" #. 3KmsV #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:404 -#, fuzzy msgctxt "outlinenumberingpage|label9" msgid "After:" -msgstr "ਬਾਅਦ" +msgstr "ਬਾਅਦ:" #. Vmmga #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:420 @@ -24414,10 +24258,9 @@ #. JdjtA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:206 -#, fuzzy msgctxt "outlinepositionpage|numberingwidth" msgid "Width of numbering:" -msgstr "ਗਿਣਤੀ ਦੀ ਚੌੜਾਈ" +msgstr "ਗਿਣਤੀ ਦੀ ਚੌੜਾਈ:" #. bBUvA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:227 @@ -24427,10 +24270,9 @@ #. aZwtj #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:238 -#, fuzzy msgctxt "outlinepositionpage|relative" msgid "Relative" -msgstr "ਅਨੁਸਾਰੀ(_v)" +msgstr "ਅਨੁਸਾਰੀ" #. vqn5C #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:246 @@ -24440,10 +24282,9 @@ #. jBvmB #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:259 -#, fuzzy msgctxt "outlinepositionpage|indent" msgid "Indent:" -msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ:" #. hKehH #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:280 @@ -24453,10 +24294,9 @@ #. GFsnA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:293 -#, fuzzy msgctxt "outlinepositionpage|indentat" msgid "Indent at:" -msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ:" #. VgG4o #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:314 @@ -24553,10 +24393,9 @@ #. bLuru #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490 -#, fuzzy msgctxt "outlinepositionpage|label10" msgid "Position and Spacing" -msgstr "ਸਥਿਤੀ ਅਤੇ ਖਾਲੀ ਥਾਂ" +msgstr "ਸਥਿਤੀ ਤੇ ਵਿੱਥ" #. ogECa #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534 @@ -24573,17 +24412,15 @@ #. sTCAF #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:37 -#, fuzzy msgctxt "pagecolumncontrol|column2" msgid "2 Columns" -msgstr "ਕਾਲਮ" +msgstr "2 ਕਾਲਮ" #. tGqEV #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:54 -#, fuzzy msgctxt "pagecolumncontrol|column3" msgid "3 Columns" -msgstr "ਕਾਲਮ" +msgstr "3 ਕਾਲਮ" #. AEYdA #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:71 @@ -24599,24 +24436,21 @@ #. UXJLr #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:105 -#, fuzzy msgctxt "pagecolumncontrol|column1L" msgid "1 Column" msgstr "1 ਕਾਲਮ" #. moDES #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:122 -#, fuzzy msgctxt "pagecolumncontrol|column2L" msgid "2 Columns" -msgstr "ਕਾਲਮ" +msgstr "2 ਕਾਲਮ" #. RFp4e #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:139 -#, fuzzy msgctxt "pagecolumncontrol|column3L" msgid "3 Columns" -msgstr "ਕਾਲਮ" +msgstr "3 ਕਾਲਮ" #. edcQH #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:156 @@ -24638,10 +24472,9 @@ #. tG9pB #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:195 -#, fuzzy msgctxt "pagecolumncontrol|moreoptions|tooltip_text" msgid "More Options" -msgstr "ਕ੍ਰਮਬੱਧ ਚੋਣ" +msgstr "ਹੋਰ ਚੋਣਾਂ" #. JJ7Ec #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:24 @@ -24651,17 +24484,15 @@ #. RyvUN #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:36 -#, fuzzy msgctxt "pagefooterpanel|spacing" msgid "Spacing:" -msgstr "ਖਾਲੀ ਥਾਂ" +msgstr "ਵਿੱਥ:" #. uCyAR #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:50 -#, fuzzy msgctxt "pagefooterpanel|samecontent" msgid "Same Content:" -msgstr "ਫਰੇਮ ਸਮੱਗਰੀ" +msgstr "ਉਹੀ ਸਮੱਗਰੀ:" #. rdLFC #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:97 @@ -24683,38 +24514,33 @@ #. E54TG #: sw/uiconfig/swriter/ui/pageformatpanel.ui:38 -#, fuzzy msgctxt "pageformatpanel|width" msgid "Width:" -msgstr "ਚੌੜਾਈ" +msgstr "ਚੌੜਾਈ:" #. GBL8j #: sw/uiconfig/swriter/ui/pageformatpanel.ui:52 -#, fuzzy msgctxt "pageformatpanel|height" msgid "Height:" -msgstr "ਉਚਾਈ" +msgstr "ਉਚਾਈ:" #. yEcLA #: sw/uiconfig/swriter/ui/pageformatpanel.ui:66 -#, fuzzy msgctxt "pageformatpanel|orientation" msgid "Orientation:" -msgstr "ਸਥਿਤੀ" +msgstr "ਸਥਿਤੀ:" #. LAFBF #: sw/uiconfig/swriter/ui/pageformatpanel.ui:80 -#, fuzzy msgctxt "pageformatpanel|paperwidth|tooltip_text" msgid "Paper Width" -msgstr "ਸਫ਼ਾ ਚੌੜਾਈ" +msgstr "ਪੇਪਰ ਚੌੜਾਈ" #. D6DaA #: sw/uiconfig/swriter/ui/pageformatpanel.ui:94 -#, fuzzy msgctxt "pageformatpanel|paperheight|tooltip_text" msgid "Paper Height" -msgstr "ਪੇਜ਼ ਲੰਬਾਈ" +msgstr "ਪੇਪਰ ਉਚਾਈ" #. CirJ8 #: sw/uiconfig/swriter/ui/pageformatpanel.ui:110 @@ -24730,10 +24556,9 @@ #. ve57F #: sw/uiconfig/swriter/ui/pageformatpanel.ui:134 -#, fuzzy msgctxt "pageformatpanel|margin" msgid "Margins:" -msgstr "ਹਾਸ਼ੀਆ" +msgstr "ਹਾਸ਼ੀਏ:" #. GBNW9 #: sw/uiconfig/swriter/ui/pageformatpanel.ui:159 @@ -24749,17 +24574,15 @@ #. Cr2Js #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:36 -#, fuzzy msgctxt "pageheaderpanel|spacing" msgid "Spacing:" -msgstr "ਖਾਲੀ ਥਾਂ" +msgstr "ਵਿੱਥ:" #. FFyoF #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:50 -#, fuzzy msgctxt "pageheaderpanel|samecontent" msgid "Same Content:" -msgstr "ਫਰੇਮ ਸਮੱਗਰੀ" +msgstr "ਉਹੀ ਸਮੱਗਰੀ:" #. 7JKbe #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:97 @@ -24775,10 +24598,9 @@ #. ewbzE #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:95 -#, fuzzy msgctxt "pagemargincontrol|narrow" msgid "Narrow" -msgstr "ਤੀਰ" +msgstr "ਭੀੜਾ" #. GtwBx #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:112 @@ -24788,10 +24610,9 @@ #. aXonV #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:129 -#, fuzzy msgctxt "pagemargincontrol|wide" msgid "Wide" -msgstr "ਓਹਲੇ" +msgstr "ਚੌੜਾ" #. VCbfs #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:146 @@ -24819,10 +24640,9 @@ #. 2ZSKA #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:214 -#, fuzzy msgctxt "pagemargincontrol|wideL" msgid "Wide" -msgstr "ਓਹਲੇ" +msgstr "ਚੌੜਾ" #. Yf68C #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:231 @@ -24894,7 +24714,7 @@ #: sw/uiconfig/swriter/ui/pagesizecontrol.ui:88 msgctxt "pagesizecontrol|moreoptions" msgid "_More Options" -msgstr "" +msgstr "ਹੋਰ ਚੋਣਾਂ(_M):" #. WP4wn #: sw/uiconfig/swriter/ui/pagesizecontrol.ui:92 @@ -24946,14 +24766,12 @@ #. gfUBD #: sw/uiconfig/swriter/ui/pagestylespanel.ui:118 -#, fuzzy msgctxt "pagestylespanel|columnlabel" msgid "Columns:" -msgstr "ਕਾਲਮ(_C)" +msgstr "ਕਾਲਮ:" #. RYLyN #: sw/uiconfig/swriter/ui/pagestylespanel.ui:134 -#, fuzzy msgctxt "pagestylespanel|columnbox" msgid "1 Column" msgstr "1 ਕਾਲਮ" @@ -25075,17 +24893,15 @@ #. DC96L #: sw/uiconfig/swriter/ui/pbmenubutton.ui:17 -#, fuzzy msgctxt "pagebreakmenu|edit" msgid "Edit Page Break..." -msgstr "ਪੇਜ਼ ਬਰੇਕ ਸੋਧ..." +msgstr "ਸਫ਼ਾ ਬਰੇਕ ਸੋਧੋ..." #. WAiR7 #: sw/uiconfig/swriter/ui/pbmenubutton.ui:25 -#, fuzzy msgctxt "pagebreakmenu|delete" msgid "Delete Page Break" -msgstr "ਪੇਜ਼ ਬਰੇਕ ਹਟਾਓ" +msgstr "ਸਫ਼ਾ ਬਰੇਕ ਹਟਾਓ" #. D9Fj4 #: sw/uiconfig/swriter/ui/picturedialog.ui:8 @@ -25107,10 +24923,9 @@ #. 9MUMU #: sw/uiconfig/swriter/ui/picturedialog.ui:231 -#, fuzzy msgctxt "picturedialog|wrap" msgid "Wrap" -msgstr "ਸਮੇਟੋ" +msgstr "ਸਮੇਟਣਾ" #. SPXJN #: sw/uiconfig/swriter/ui/picturedialog.ui:279 @@ -25224,7 +25039,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:180 msgctxt "picturepage|leftpages" msgid "On left pages" -msgstr "" +msgstr "ਖੱਬੇ ਸਫ਼ਿਆਂ ਉੱਤੇ" #. iPxX8 #: sw/uiconfig/swriter/ui/picturepage.ui:190 @@ -25236,7 +25051,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:201 msgctxt "picturepage|rightpages" msgid "On right pages" -msgstr "" +msgstr "ਸੱਜੇ ਸਫ਼ਿਆਂ ਉੱਤੇ" #. XL7Y3 #: sw/uiconfig/swriter/ui/picturepage.ui:211 @@ -25727,10 +25542,9 @@ #. wBySi #: sw/uiconfig/swriter/ui/privateuserpage.ui:40 -#, fuzzy msgctxt "privateuserpage|streetft" msgid "_Street:" -msgstr "ਗਲੀ" +msgstr "ਸੜਕ(_S):" #. DzXD5 #: sw/uiconfig/swriter/ui/privateuserpage.ui:54 @@ -25746,10 +25560,9 @@ #. 7ehFm #: sw/uiconfig/swriter/ui/privateuserpage.ui:82 -#, fuzzy msgctxt "privateuserpage|phoneft" msgid "Fa_x:" -msgstr "ਫੈਕਸ" +msgstr "ਫੈਕਸ(_x):" #. yWBUi #: sw/uiconfig/swriter/ui/privateuserpage.ui:88 @@ -25761,14 +25574,13 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:101 msgctxt "privateuserpage|faxft" msgid "Homepage/email:" -msgstr "" +msgstr "ਮੁੱਖ ਸਫ਼ਾ/ਈਮੇਲ:" #. 679ut #: sw/uiconfig/swriter/ui/privateuserpage.ui:126 -#, fuzzy msgctxt "privateuserpage|firstname-atkobject" msgid "First name" -msgstr "ਪਹਿਲਾਂ ਨਾਂ" +msgstr "ਨਾਂ ਦਾ ਪਹਿਲਾਂ ਹਿੱਸਾ" #. XfEkD #: sw/uiconfig/swriter/ui/privateuserpage.ui:127 @@ -25850,7 +25662,6 @@ #. AnyFT #: sw/uiconfig/swriter/ui/privateuserpage.ui:298 -#, fuzzy msgctxt "privateuserpage|email-atkobject" msgid "email address" msgstr "ਈ-ਮੇਲ ਐਡਰੈੱਸ" @@ -26150,17 +25961,15 @@ #. dmcAx #: sw/uiconfig/swriter/ui/readonlymenu.ui:44 -#, fuzzy msgctxt "readonlymenu|reload" msgid "Re_load" -msgstr "ਮੁੜ-ਲੋਡ" +msgstr "ਮੁੜ-ਲੋਡ(_l)" #. tFZH6 #: sw/uiconfig/swriter/ui/readonlymenu.ui:52 -#, fuzzy msgctxt "readonlymenu|reloadframe" msgid "Reload Frame" -msgstr "ਫਾਇਲ ਮੁੜ-ਲੋਡ" +msgstr "ਫਰੇਮ ਮੁੜ-ਲੋਡ" #. DcGxr #: sw/uiconfig/swriter/ui/readonlymenu.ui:60 @@ -26170,17 +25979,15 @@ #. vQ78H #: sw/uiconfig/swriter/ui/readonlymenu.ui:74 -#, fuzzy msgctxt "readonlymenu|backward" msgid "Backwards" -msgstr "ਪਿੱਛੇ(_k)" +msgstr "ਪਿੱਛੇ" #. s7SAK #: sw/uiconfig/swriter/ui/readonlymenu.ui:82 -#, fuzzy msgctxt "readonlymenu|forward" msgid "_Forward" -msgstr "ਅੱਗੇ" +msgstr "ਅੱਗੇ(_F)" #. MreRK #: sw/uiconfig/swriter/ui/readonlymenu.ui:96 @@ -26330,11 +26137,10 @@ #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:98 msgctxt "renameobjectdialog|label2" msgid "New name:" -msgstr "" +msgstr "ਨਵਾਂ ਨਾਂ:" #. Yffi5 #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:127 -#, fuzzy msgctxt "renameobjectdialog|label1" msgid "Change Name" msgstr "ਨਾਂ ਬਦਲੋ" @@ -26407,10 +26213,9 @@ #. AwGvc #: sw/uiconfig/swriter/ui/savelabeldialog.ui:109 -#, fuzzy msgctxt "savelabeldialog|label3" msgid "T_ype" -msgstr "ਕਿਸਮ" +msgstr "ਕਿਸਮ(_y)" #. KX58T #: sw/uiconfig/swriter/ui/savelabeldialog.ui:127 @@ -26535,7 +26340,6 @@ #. zeESA #: sw/uiconfig/swriter/ui/sectionpage.ui:351 -#, fuzzy msgctxt "sectionpage|protect" msgid "_Protect" msgstr "ਸੁਰੱਖਿਅਤ(_P)" @@ -26560,10 +26364,9 @@ #. 8ydz9 #: sw/uiconfig/swriter/ui/sectionpage.ui:401 -#, fuzzy msgctxt "sectionpage|selectpassword" msgid "Password..." -msgstr "ਪਾਸਵਰਡ(_P)..." +msgstr "ਪਾਸਵਰਡ..." #. nBQLQ #: sw/uiconfig/swriter/ui/sectionpage.ui:411 @@ -26757,7 +26560,6 @@ #. PaQhk #: sw/uiconfig/swriter/ui/selectblockdialog.ui:93 -#, fuzzy msgctxt "selectblockdialog|new" msgid "_New..." msgstr "ਨਵਾਂ(_N)..." @@ -26770,10 +26572,9 @@ #. z2hB7 #: sw/uiconfig/swriter/ui/selectblockdialog.ui:112 -#, fuzzy msgctxt "selectblockdialog|edit" msgid "_Edit..." -msgstr "ਸੋਧ..." +msgstr "ਸੋਧੋ(_E)..." #. TauiG #: sw/uiconfig/swriter/ui/selectblockdialog.ui:119 @@ -26879,10 +26680,9 @@ #. aGPFr #: sw/uiconfig/swriter/ui/selecttabledialog.ui:18 -#, fuzzy msgctxt "selecttabledialog|SelectTableDialog" msgid "Select Table" -msgstr "ਟੇਬਲ ਵੰਡੋ(~S)" +msgstr "ਸਾਰਣੀ ਚੁਣੋ" #. SfHVd #: sw/uiconfig/swriter/ui/selecttabledialog.ui:99 @@ -26995,10 +26795,9 @@ #. 9P6rW #: sw/uiconfig/swriter/ui/sidebarwrap.ui:23 -#, fuzzy msgctxt "sidebarwrap|label1" msgid "Spacing:" -msgstr "ਖਾਲੀ ਥਾਂ" +msgstr "ਖਾਲੀ ਥਾਂ:" #. UfPZU #: sw/uiconfig/swriter/ui/sidebarwrap.ui:37 @@ -27010,19 +26809,19 @@ #: sw/uiconfig/swriter/ui/sidebarwrap.ui:49 msgctxt "sidebarwrap|label2" msgid "Wrap:" -msgstr "" +msgstr "ਸਮੇਟੋ:" #. CeCh8 #: sw/uiconfig/swriter/ui/sidebarwrap.ui:74 msgctxt "sidebarwrap|wrapoff|tooltip_text" msgid "None" -msgstr "" +msgstr "ਕੋਈ ਨਹੀਂ" #. BM99o #: sw/uiconfig/swriter/ui/sidebarwrap.ui:86 msgctxt "sidebarwrap|wrapon|tooltip_text" msgid "Parallel" -msgstr "" +msgstr "ਸਮਾਂਤਰ" #. 6LvB4 #: sw/uiconfig/swriter/ui/sidebarwrap.ui:98 @@ -27034,13 +26833,13 @@ #: sw/uiconfig/swriter/ui/sidebarwrap.ui:110 msgctxt "sidebarwrap|wrapbefore|tooltip_text" msgid "Before" -msgstr "" +msgstr "ਪਹਿਲਾਂ" #. oKykv #: sw/uiconfig/swriter/ui/sidebarwrap.ui:122 msgctxt "sidebarwrap|wrapafter|tooltip_text" msgid "After" -msgstr "" +msgstr "ਬਾਅਦ" #. Sw6vj #: sw/uiconfig/swriter/ui/sidebarwrap.ui:134 @@ -27357,7 +27156,6 @@ #. vBG3R #: sw/uiconfig/swriter/ui/spellmenu.ui:12 -#, fuzzy msgctxt "spellmenu|ignoreall" msgid "I_gnore All" msgstr "ਸਭ ਅਣਡਿੱਠੇ ਕਰੋ(_g)" @@ -27366,13 +27164,13 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:20 msgctxt "spellmenu|addmenu" msgid "Add to _Dictionary" -msgstr "" +msgstr "ਡਿਕਸ਼ਨਰੀ ਵਿੱਚ ਜੋੜੋ(_D)" #. GMjgF #: sw/uiconfig/swriter/ui/spellmenu.ui:34 msgctxt "spellmenu|add" msgid "Add to _Dictionary" -msgstr "" +msgstr "ਡਿਕਸ਼ਨਰੀ ਵਿੱਚ ਜੋੜੋ(_D)" #. i7HEY #: sw/uiconfig/swriter/ui/spellmenu.ui:55 @@ -27401,14 +27199,12 @@ #. Ys6Ab #: sw/uiconfig/swriter/ui/spellmenu.ui:118 -#, fuzzy msgctxt "spellmenu|accept" msgid "Accept Change" msgstr "ਬਦਲਾਅ ਮਨਜ਼ੂਰ" #. xuAu5 #: sw/uiconfig/swriter/ui/spellmenu.ui:127 -#, fuzzy msgctxt "spellmenu|reject" msgid "Reject Change" msgstr "ਬਦਲਾਅ ਰੱਦ ਕਰੋ" @@ -27494,45 +27290,39 @@ #. Yqd5u #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:17 -#, fuzzy msgctxt "statisticsinfopage|label4" msgid "Pages:" -msgstr "ਪੇਜ਼" +msgstr "ਸਫ਼ੇ:" #. DwWGW #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:31 -#, fuzzy msgctxt "statisticsinfopage|label5" msgid "Tables:" -msgstr "ਟੇਬਲ" +msgstr "ਸਾਰਣੀਆਂ:" #. keuGN #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:45 -#, fuzzy msgctxt "statisticsinfopage|label6" msgid "Images:" -msgstr "ਚਿੱਤਰ" +msgstr "ਚਿੱਤਰ:" #. 7bsoo #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:59 -#, fuzzy msgctxt "statisticsinfopage|label31" msgid "OLE objects:" -msgstr "OLE ਆਬਜੈਕਟ" +msgstr "OLE ਆਬਜੈਕਟ:" #. fH3HS #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:73 -#, fuzzy msgctxt "statisticsinfopage|label32" msgid "Paragraphs:" -msgstr "ਪ੍ਹੈਰਾ" +msgstr "ਪ੍ਹੈਰਾਗਰਾਫ:" #. sGGYz #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:87 -#, fuzzy msgctxt "statisticsinfopage|label33" msgid "Words:" -msgstr "ਸ਼ਬਦ" +msgstr "ਸ਼ਬਦ:" #. BLnus #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:101 @@ -27559,7 +27349,7 @@ msgstr "ਅੱਪਡੇਟ" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "ਮੌਜੂਦਾ ਫਾਇਲ ਲਈ ਅੰਕੜੇ ਦਿਖਾਓ।" @@ -27742,10 +27532,9 @@ #. BR9dC #: sw/uiconfig/swriter/ui/tableproperties.ui:8 -#, fuzzy msgctxt "tableproperties|TablePropertiesDialog" msgid "Table Properties" -msgstr "ਸਾਰਣੀ ਵਿਸ਼ੇਸ਼ਤਾ" +msgstr "ਸਾਰਣੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ" #. 4jHAN #: sw/uiconfig/swriter/ui/tableproperties.ui:137 @@ -27863,10 +27652,9 @@ #. 5oC83 #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242 -#, fuzzy msgctxt "tabletextflowpage|pagestylelb-atkobject" msgid "With Page Style" -msgstr "ਸਫ਼ਾ ਸਟਾਈਲ ਨਾਲ(_Y)" +msgstr "ਸਫ਼ਾ ਸਟਾਈਲ ਨਾਲ" #. NENyo #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243 @@ -28038,10 +27826,9 @@ #. UH8Vz #: sw/uiconfig/swriter/ui/templatedialog1.ui:172 -#, fuzzy msgctxt "templatedialog1|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. BvEuD #: sw/uiconfig/swriter/ui/templatedialog1.ui:219 @@ -28069,10 +27856,9 @@ #. scr3Z #: sw/uiconfig/swriter/ui/templatedialog1.ui:411 -#, fuzzy msgctxt "templatedialog1|background" msgid "Highlighting" -msgstr "ਉਘਾੜਨ" +msgstr "ਉਘਾੜਨਾ" #. gurnZ #: sw/uiconfig/swriter/ui/templatedialog1.ui:459 @@ -28088,10 +27874,9 @@ #. tA5vb #: sw/uiconfig/swriter/ui/templatedialog16.ui:167 -#, fuzzy msgctxt "templatedialog16|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. VzEYH #: sw/uiconfig/swriter/ui/templatedialog16.ui:168 @@ -28115,7 +27900,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:264 msgctxt "templatedialog16|numbering" msgid "Ordered" -msgstr "" +msgstr "ਕ੍ਰਮਬੱਧ" #. BHtZp #: sw/uiconfig/swriter/ui/templatedialog16.ui:265 @@ -28161,10 +27946,9 @@ #. g5NQF #: sw/uiconfig/swriter/ui/templatedialog16.ui:460 -#, fuzzy msgctxt "templatedialog16|customize" msgid "Customize" -msgstr "ਸੋਧ" +msgstr "ਕਸਟਮਾਈਜ਼" #. ajaSr #: sw/uiconfig/swriter/ui/templatedialog16.ui:461 @@ -28180,10 +27964,9 @@ #. 2NhWM #: sw/uiconfig/swriter/ui/templatedialog2.ui:167 -#, fuzzy msgctxt "templatedialog2|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. G7U5N #: sw/uiconfig/swriter/ui/templatedialog2.ui:214 @@ -28205,7 +27988,6 @@ #. evVPf #: sw/uiconfig/swriter/ui/templatedialog2.ui:358 -#, fuzzy msgctxt "templatedialog2|asiantypo" msgid "Asian Typography" msgstr "ਏਸ਼ੀਆਈਂ ਟਾਈਪੋਗਰਾਫ਼ੀ" @@ -28236,10 +28018,9 @@ #. HkBDx #: sw/uiconfig/swriter/ui/templatedialog2.ui:598 -#, fuzzy msgctxt "templatedialog2|highlighting" msgid "Highlighting" -msgstr "ਉਘਾੜਨ" +msgstr "ਉਘਾੜਨਾ" #. 9gGCX #: sw/uiconfig/swriter/ui/templatedialog2.ui:646 @@ -28273,10 +28054,9 @@ #. LexJE #: sw/uiconfig/swriter/ui/templatedialog2.ui:886 -#, fuzzy msgctxt "templatedialog2|condition" msgid "Condition" -msgstr "ਸ਼ਰਤ(~c)" +msgstr "ਸ਼ਰਤ" #. H6CCV #: sw/uiconfig/swriter/ui/templatedialog2.ui:934 @@ -28292,17 +28072,15 @@ #. q8oC5 #: sw/uiconfig/swriter/ui/templatedialog4.ui:8 -#, fuzzy msgctxt "templatedialog4|TemplateDialog4" msgid "Frame Style" msgstr "ਫਰੇਮ ਸ਼ੈਲੀ" #. 8dRdE #: sw/uiconfig/swriter/ui/templatedialog4.ui:167 -#, fuzzy msgctxt "templatedialog4|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. Q2PQs #: sw/uiconfig/swriter/ui/templatedialog4.ui:214 @@ -28318,7 +28096,6 @@ #. CEZkG #: sw/uiconfig/swriter/ui/templatedialog4.ui:310 -#, fuzzy msgctxt "templatedialog4|wrap" msgid "Wrap" msgstr "ਸਮੇਟੋ" @@ -28363,14 +28140,13 @@ #: sw/uiconfig/swriter/ui/templatedialog8.ui:71 msgctxt "templatedialog8|standard" msgid "Standard" -msgstr "" +msgstr "ਸਟੈਂਡਰਡ" #. BvGbL #: sw/uiconfig/swriter/ui/templatedialog8.ui:167 -#, fuzzy msgctxt "templatedialog8|organizer" msgid "Organizer" -msgstr "...ਪਰਬੰਧਕ" +msgstr "ਪਰਬੰਧਕ" #. UbZRu #: sw/uiconfig/swriter/ui/templatedialog8.ui:214 @@ -28424,7 +28200,7 @@ #: sw/uiconfig/swriter/ui/templatedialog8.ui:598 msgctxt "templatedialog8|textgrid" msgid "Text Grid" -msgstr "" +msgstr "ਲਿਖਤ ਗਰਿੱਡ" #. cLynh #: sw/uiconfig/swriter/ui/testmailsettings.ui:6 @@ -28436,13 +28212,13 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:11 msgctxt "testmailsettings|TestMailSettings" msgid "Test Account Settings" -msgstr "" +msgstr "ਖਾਤਾ ਸੈਟਿੰਗਾਂ ਟੈਸਟ ਕਰੋ" #. dzBY2 #: sw/uiconfig/swriter/ui/testmailsettings.ui:24 msgctxt "testmailsettings|stop" msgid "_Stop" -msgstr "" +msgstr "ਰੋਕੋ(_S)" #. pBore #: sw/uiconfig/swriter/ui/testmailsettings.ui:33 @@ -28454,7 +28230,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:103 msgctxt "testmailsettings|establish" msgid "Establish network connection" -msgstr "" +msgstr "ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਸਥਾਪਿਤ" #. Fuyoe #: sw/uiconfig/swriter/ui/testmailsettings.ui:115 @@ -28466,11 +28242,10 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:127 msgctxt "testmailsettings|result1" msgid "Successful" -msgstr "" +msgstr "ਕਾਮਯਾਬ" #. DTbTU #: sw/uiconfig/swriter/ui/testmailsettings.ui:139 -#, fuzzy msgctxt "testmailsettings|result2" msgid "Failed" msgstr "ਫੇਲ੍ਹ ਹੈ" @@ -28489,10 +28264,9 @@ #. TF5ap #: sw/uiconfig/swriter/ui/testmailsettings.ui:287 -#, fuzzy msgctxt "testmailsettings|label1" msgid "Errors" -msgstr "ਗਲਤੀ" +msgstr "ਗਲਤੀਆਂ" #. sYQwV #: sw/uiconfig/swriter/ui/textgridpage.ui:66 @@ -28546,7 +28320,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:214 msgctxt "textgridpage|labelFT_CHARSPERLINE" msgid "Characters per line:" -msgstr "" +msgstr "ਹਰ ਲਾਈਨ ਲਈ ਅੱਖਰ:" #. ZvrxC #: sw/uiconfig/swriter/ui/textgridpage.ui:231 @@ -28558,7 +28332,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:258 msgctxt "textgridpage|labelFT_LINESPERPAGE" msgid "Lines per page:" -msgstr "" +msgstr "ਹਰ ਸਫ਼ੇ ਲਈ ਲਾਈਨਾਂ:" #. Y36BF #: sw/uiconfig/swriter/ui/textgridpage.ui:276 @@ -28570,7 +28344,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:330 msgctxt "textgridpage|labelFT_CHARWIDTH" msgid "Character _width:" -msgstr "" +msgstr "ਅੱਖਰ ਚੌੜਾਈ(_w):" #. djvBs #: sw/uiconfig/swriter/ui/textgridpage.ui:344 @@ -28610,10 +28384,9 @@ #. qCgRA #: sw/uiconfig/swriter/ui/textgridpage.ui:446 -#, fuzzy msgctxt "textgridpage|labelGridLayout" msgid "Grid Layout" -msgstr "ਗਰਿੱਡ ਲੇਆਉਟ" +msgstr "ਗਰਿੱਡ ਖਾਕਾ" #. qj8Gw #: sw/uiconfig/swriter/ui/textgridpage.ui:476 @@ -28641,10 +28414,9 @@ #. qBUXt #: sw/uiconfig/swriter/ui/textgridpage.ui:520 -#, fuzzy msgctxt "textgridpage|labelFT_COLOR" msgid "Grid color:" -msgstr "ਗਰਿੱਡ ਰੰਗ" +msgstr "ਗਰਿੱਡ ਰੰਗ:" #. Gcv2C #: sw/uiconfig/swriter/ui/textgridpage.ui:544 @@ -28789,10 +28561,9 @@ #. eJ6Dk #: sw/uiconfig/swriter/ui/tocdialog.ui:209 -#, fuzzy msgctxt "tocdialog|entries" msgid "Entries" -msgstr "ਐਂਟਰੀ(~E)" +msgstr "ਐਂਟਰੀਆਂ" #. 59BiZ #: sw/uiconfig/swriter/ui/tocdialog.ui:257 @@ -28820,31 +28591,27 @@ #. P4YC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:120 -#, fuzzy msgctxt "tocentriespage|levelft" msgid "_Level" -msgstr "ਲੈਵਲ" +msgstr "ਪੱਧਰ(_L)" #. hJeAG #: sw/uiconfig/swriter/ui/tocentriespage.ui:136 -#, fuzzy msgctxt "tocentriespage|typeft" msgid "_Type" -msgstr "ਕਿਸਮ" +msgstr "ਕਿਸਮ(_T)" #. fCuFC #: sw/uiconfig/swriter/ui/tocentriespage.ui:191 -#, fuzzy msgctxt "tocentriespage|label4" msgid "_Structure:" -msgstr "ਢਾਂਚਾ" +msgstr "ਢਾਂਚਾ(_S):" #. wEABX #: sw/uiconfig/swriter/ui/tocentriespage.ui:203 -#, fuzzy msgctxt "tocentriespage|all" msgid "_All" -msgstr "ਸਾਰੇ" +msgstr "ਸਭ(_A)" #. BYrBV #: sw/uiconfig/swriter/ui/tocentriespage.ui:210 @@ -28860,17 +28627,15 @@ #. 6JdC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:254 -#, fuzzy msgctxt "tocentriespage|label5" msgid "Character style:" -msgstr "ਅੱਖਰ ਸਟਾਈਲ" +msgstr "ਅੱਖਰ ਸਟਾਈਲ:" #. F5Gt6 #: sw/uiconfig/swriter/ui/tocentriespage.ui:266 -#, fuzzy msgctxt "tocentriespage|edit" msgid "_Edit..." -msgstr "ਸੋਧ..." +msgstr "ਸੋਧੋ(_E)..." #. Dzkip #: sw/uiconfig/swriter/ui/tocentriespage.ui:273 @@ -28886,7 +28651,6 @@ #. 5nWPi #: sw/uiconfig/swriter/ui/tocentriespage.ui:303 -#, fuzzy msgctxt "tocentriespage|fillcharft" msgid "Fill character:" msgstr "ਭਰਨ ਅੱਖਰ:" @@ -28965,10 +28729,9 @@ #. qtbWw #: sw/uiconfig/swriter/ui/tocentriespage.ui:466 -#, fuzzy msgctxt "tocentriespage|numberformatft" msgid "Format:" -msgstr "ਫਾਰਮੈਟ" +msgstr "ਫਾਰਮੈਟ:" #. 24FSt #: sw/uiconfig/swriter/ui/tocentriespage.ui:483 @@ -29044,7 +28807,6 @@ #. BQH4d #: sw/uiconfig/swriter/ui/tocentriespage.ui:621 -#, fuzzy msgctxt "tocentriespage|tabstop" msgid "Tab Stop" msgstr "ਟੈਬ ਰੋਕੋ" @@ -29071,7 +28833,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:659 msgctxt "tocentriespage|pageno" msgid "Page No." -msgstr "" +msgstr "ਸਫ਼ਾ ਨੰ." #. Cb5dg #: sw/uiconfig/swriter/ui/tocentriespage.ui:666 @@ -29081,10 +28843,9 @@ #. 9EpS2 #: sw/uiconfig/swriter/ui/tocentriespage.ui:678 -#, fuzzy msgctxt "tocentriespage|hyperlink" msgid "H_yperlink" -msgstr "ਹਾਈਪਰਲਿੰਕ" +msgstr "ਹਾਈਪਰਲਿੰਕ(_y)" #. RfLp4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:685 @@ -29166,10 +28927,9 @@ #. 2b5tC #: sw/uiconfig/swriter/ui/tocentriespage.ui:890 -#, fuzzy msgctxt "tocentriespage|sortcontents" msgid "_Content" -msgstr "ਸਮੱਗਰੀ" +msgstr "ਸਮੱਗਰੀ(_C)" #. 3N4Vm #: sw/uiconfig/swriter/ui/tocentriespage.ui:899 @@ -29179,10 +28939,9 @@ #. FBuPi #: sw/uiconfig/swriter/ui/tocentriespage.ui:914 -#, fuzzy msgctxt "tocentriespage|label14" msgid "Sort by" -msgstr "ਕ੍ਰਮਬੱਧ(~s)" +msgstr "ਕ੍ਰਮਬੱਧ" #. UUgEC #: sw/uiconfig/swriter/ui/tocentriespage.ui:948 @@ -29319,17 +29078,15 @@ #. 4ABb3 #: sw/uiconfig/swriter/ui/tocindexpage.ui:35 -#, fuzzy msgctxt "tocindexpage|edit" msgid "_Edit..." -msgstr "ਸੋਧ..." +msgstr "ਸੋਧ(_E)..." #. 2D7ru #: sw/uiconfig/swriter/ui/tocindexpage.ui:93 -#, fuzzy msgctxt "tocindexpage|mainstyleft" msgid "_Title:" -msgstr "ਟਾਈਟਲ(_T)" +msgstr "ਟਾਈਟਲ(_T):" #. oEQSK #: sw/uiconfig/swriter/ui/tocindexpage.ui:112 @@ -29339,17 +29096,15 @@ #. EhUsg #: sw/uiconfig/swriter/ui/tocindexpage.ui:125 -#, fuzzy msgctxt "tocindexpage|typeft" msgid "Type:" -msgstr "ਕਿਸਮ" +msgstr "ਕਿਸਮ:" #. yfG2o #: sw/uiconfig/swriter/ui/tocindexpage.ui:141 -#, fuzzy msgctxt "tocindexpage|liststore1" msgid "Table of Contents" -msgstr "ਟੇਬਲ ਸਮੱਗਰੀ" +msgstr "ਸਮੱਗਰੀ ਦੀ ਸਾਰਣੀ" #. hP5JM #: sw/uiconfig/swriter/ui/tocindexpage.ui:142 @@ -29361,7 +29116,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:143 msgctxt "tocindexpage|liststore1" msgid "Table of Figures" -msgstr "" +msgstr "ਸ਼ਕਲਾਂ ਦੀ ਸਾਰਣੀ" #. gijYT #: sw/uiconfig/swriter/ui/tocindexpage.ui:144 @@ -29371,10 +29126,9 @@ #. DuFx3 #: sw/uiconfig/swriter/ui/tocindexpage.ui:145 -#, fuzzy msgctxt "tocindexpage|liststore1" msgid "User-Defined" -msgstr "ਵਰਤੋਂਕਾਰ ਪਰਭਾਸ਼ਿਤ" +msgstr "ਵਰਤੋਂਕਾਰ-ਪਰਭਾਸ਼ਿਤ" #. CCQdU #: sw/uiconfig/swriter/ui/tocindexpage.ui:146 @@ -29384,10 +29138,9 @@ #. eXZ8E #: sw/uiconfig/swriter/ui/tocindexpage.ui:147 -#, fuzzy msgctxt "tocindexpage|liststore1" msgid "Bibliography" -msgstr "ਪੁਸਤਕ ਲਿਸਟ 1" +msgstr "ਪੁਸਤਕ ਲਿਸਟ" #. zR6VT #: sw/uiconfig/swriter/ui/tocindexpage.ui:151 @@ -29411,21 +29164,19 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:187 msgctxt "tocindexpage|label3" msgid "Type and Title" -msgstr "" +msgstr "ਕਿਸਮ ਤੇ ਟਾਈਟਲ" #. EFkz2 #: sw/uiconfig/swriter/ui/tocindexpage.ui:226 -#, fuzzy msgctxt "tocindexpage|mainstyleft2" msgid "For:" -msgstr "ਫਾਰਮ" +msgstr "ਲਈ:" #. BgEZQ #: sw/uiconfig/swriter/ui/tocindexpage.ui:241 -#, fuzzy msgctxt "tocindexpage|scope" msgid "Entire document" -msgstr "ਪੂਰਾ ਡੌਕੂਮੈਂਟ(~E)" +msgstr "ਪੂਰਾ ਦਸਤਾਵੇਜ਼" #. E4vrG #: sw/uiconfig/swriter/ui/tocindexpage.ui:242 @@ -29483,10 +29234,9 @@ #. ZrB8Z #: sw/uiconfig/swriter/ui/tocindexpage.ui:389 -#, fuzzy msgctxt "tocindexpage|fromtables" msgid "Tables" -msgstr "ਟੇਬਲ (_T)" +msgstr "ਸਾਰਣੀਆਂ" #. 7xipZ #: sw/uiconfig/swriter/ui/tocindexpage.ui:397 @@ -29496,10 +29246,9 @@ #. rC8Gw #: sw/uiconfig/swriter/ui/tocindexpage.ui:408 -#, fuzzy msgctxt "tocindexpage|fromframes" msgid "Te_xt frames" -msgstr "ਪਾਠ ਫਰੇਮ" +msgstr "ਲਿਖਤ ਫਰੇਮ(_x)" #. TotLy #: sw/uiconfig/swriter/ui/tocindexpage.ui:416 @@ -29558,10 +29307,9 @@ #. 46GwB #: sw/uiconfig/swriter/ui/tocindexpage.ui:518 -#, fuzzy msgctxt "tocindexpage|stylescb" msgid "Styl_es" -msgstr "ਸਟਾਈਲ" +msgstr "ਸਟਾਈਲ(_e)" #. MfDSo #: sw/uiconfig/swriter/ui/tocindexpage.ui:540 @@ -29577,10 +29325,9 @@ #. KvQH4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:592 -#, fuzzy msgctxt "tocindexpage|captions" msgid "Captions" -msgstr "ਸੁਰਖੀ" +msgstr "ਸੁਰਖੀਆਂ" #. WZCFT #: sw/uiconfig/swriter/ui/tocindexpage.ui:601 @@ -29590,7 +29337,6 @@ #. zRKYU #: sw/uiconfig/swriter/ui/tocindexpage.ui:612 -#, fuzzy msgctxt "tocindexpage|objnames" msgid "Object names" msgstr "ਇਕਾਈ ਨਾਂ" @@ -29603,10 +29349,9 @@ #. E8n8f #: sw/uiconfig/swriter/ui/tocindexpage.ui:641 -#, fuzzy msgctxt "tocindexpage|categoryft" msgid "Category:" -msgstr "ਕੈਟਾਗਰੀ" +msgstr "ਕੈਟਾਗਰੀ:" #. VADFj #: sw/uiconfig/swriter/ui/tocindexpage.ui:657 @@ -29616,10 +29361,9 @@ #. 7h4vk #: sw/uiconfig/swriter/ui/tocindexpage.ui:670 -#, fuzzy msgctxt "tocindexpage|displayft" msgid "Display:" -msgstr "ਡਿਸਪਲੇਅ" +msgstr "ਡਿਸਪਲੇਅ:" #. AC6q4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:685 @@ -29665,10 +29409,9 @@ #. zSgta #: sw/uiconfig/swriter/ui/tocindexpage.ui:838 -#, fuzzy msgctxt "tocindexpage|mainstyleft9" msgid "_Brackets:" -msgstr "ਬਰੈਕਟਾ" +msgstr "ਬਰੈਕਟਾਂ(_B):" #. Q9AQ5 #: sw/uiconfig/swriter/ui/tocindexpage.ui:850 @@ -29752,7 +29495,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:974 msgctxt "tocindexpage|usedash" msgid "Combine with -" -msgstr "" +msgstr "- ਨਾਲ ਜੋੜੋ" #. A3eqB #: sw/uiconfig/swriter/ui/tocindexpage.ui:983 @@ -29762,10 +29505,9 @@ #. GfaT4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:994 -#, fuzzy msgctxt "tocindexpage|casesens" msgid "Case sensitive" -msgstr "ਅੱਖਰ ਆਕਾਰ ਸੰਵੇਦਨਸ਼ੀਲ(_n)" +msgstr "ਅੱਖਰ ਆਕਾਰ ਸੰਵੇਦਨਸ਼ੀਲ" #. rAwSj #: sw/uiconfig/swriter/ui/tocindexpage.ui:1003 @@ -29811,10 +29553,9 @@ #. KoCwE #: sw/uiconfig/swriter/ui/tocindexpage.ui:1071 -#, fuzzy msgctxt "tocindexpage|file" msgid "_File" -msgstr "ਫਾਇਲ" +msgstr "ਫਾਇਲ(_F)" #. bm64R #: sw/uiconfig/swriter/ui/tocindexpage.ui:1086 @@ -29830,10 +29571,9 @@ #. cCW7C #: sw/uiconfig/swriter/ui/tocindexpage.ui:1141 -#, fuzzy msgctxt "tocindexpage|mainstyleft3" msgid "Language:" -msgstr "ਭਾਸ਼ਾ" +msgstr "ਭਾਸ਼ਾ:" #. r3DqW #: sw/uiconfig/swriter/ui/tocindexpage.ui:1157 @@ -29843,10 +29583,9 @@ #. MKA2M #: sw/uiconfig/swriter/ui/tocindexpage.ui:1182 -#, fuzzy msgctxt "tocindexpage|mainstyleft5" msgid "Key type:" -msgstr "ਕੋਈ ਕਿਸਮ" +msgstr "ਕੁੰਜੀ ਕਿਸਮ:" #. x3YvG #: sw/uiconfig/swriter/ui/tocindexpage.ui:1198 @@ -29862,10 +29601,9 @@ #. pj7su #: sw/uiconfig/swriter/ui/tocstylespage.ui:57 -#, fuzzy msgctxt "tocstylespage|label1" msgid "_Levels" -msgstr "ਲੈਵਲ" +msgstr "ਪੱਧਰ(_L)" #. APeje #: sw/uiconfig/swriter/ui/tocstylespage.ui:71 @@ -29887,10 +29625,9 @@ #. LGrjt #: sw/uiconfig/swriter/ui/tocstylespage.ui:171 -#, fuzzy msgctxt "tocstylespage|default" msgid "_Default" -msgstr "ਡਿਫਾਲਟ" +msgstr "ਡਿਫਾਲਟ(_D)" #. FW4Qu #: sw/uiconfig/swriter/ui/tocstylespage.ui:180 @@ -29918,7 +29655,6 @@ #. ddB7L #: sw/uiconfig/swriter/ui/tocstylespage.ui:241 -#, fuzzy msgctxt "tocstylespage|labelGrid" msgid "Assignment" msgstr "ਇਕਸਾਰ" @@ -29945,7 +29681,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:94 msgctxt "viewoptionspage|graphics" msgid "_Images and objects" -msgstr "" +msgstr "ਚਿੱਤਰ ਅਤੇ ਆਬਜੈਕਟ(_I)" #. tBL3z #: sw/uiconfig/swriter/ui/viewoptionspage.ui:102 @@ -29993,7 +29729,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:170 msgctxt "viewoptionspage|resolvedcomments" msgid "_Resolved comments" -msgstr "" +msgstr "ਹੱਲ ਕੀਤੀਆਂ ਟਿੱਪਣੀਆਂ(_R)" #. ZPSpD #: sw/uiconfig/swriter/ui/viewoptionspage.ui:188 @@ -30005,7 +29741,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:218 msgctxt "viewoptionspage|hiddentextfield" msgid "Hidden te_xt" -msgstr "" +msgstr "ਲੁਕਵਾਂ ਲਿਖਤ(_x)" #. DSCBT #: sw/uiconfig/swriter/ui/viewoptionspage.ui:226 @@ -30195,10 +29931,9 @@ #. ALj8P #: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:25 -#, fuzzy msgctxt "warndatasourcedialog|check" msgid "Check Connection Settings..." -msgstr "ਟੈਕਸਟ ਕੁਨੈਕਸ਼ਨ ਸੈਟਿੰਗ" +msgstr "...ਕਨੈਕਸ਼ਨ ਸੈਟਿੰਗਾਂ ਦੀ ਜਾਂਚ ਕਰੋ" #. u78xA #: sw/uiconfig/swriter/ui/warnemaildialog.ui:7 @@ -30211,7 +29946,7 @@ #: sw/uiconfig/swriter/ui/warnemaildialog.ui:17 msgctxt "warnemaildialog|WarnEmailDialog" msgid "The following error occurred:" -msgstr "" +msgstr "ਹੇਠ ਦਿੱਤੀ ਗਲਤੀ ਆਈ:" #. fkAeJ #: sw/uiconfig/swriter/ui/watermarkdialog.ui:17 @@ -30221,10 +29956,9 @@ #. XJm8B #: sw/uiconfig/swriter/ui/watermarkdialog.ui:102 -#, fuzzy msgctxt "watermarkdialog|TextLabel" msgid "Text" -msgstr "ਪਾਠ" +msgstr "ਲਿਖਤ" #. DAAyA #: sw/uiconfig/swriter/ui/watermarkdialog.ui:118 @@ -30290,40 +30024,40 @@ #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:8 msgctxt "wordcount-mobile|WordCountDialog" msgid "Word Count" -msgstr "" +msgstr "ਸ਼ਬਦ ਗਿਣਤੀ" #. CivM9 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:82 msgctxt "wordcount-mobile|label9" msgid "Selection" -msgstr "" +msgstr "ਚੋਣ" #. CNFqp #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:109 msgctxt "wordcount-mobile|label10" msgid "Document" -msgstr "" +msgstr "ਦਸਤਾਵੇਜ਼" #. RBG3u #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:135 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:327 msgctxt "wordcount-mobile|label1" msgid "Words" -msgstr "" +msgstr "ਸ਼ਬਦ" #. sTP2G #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:159 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:621 msgctxt "wordcount-mobile|label2" msgid "Characters including spaces" -msgstr "" +msgstr "ਖਾਲੀ ਥਾਂ ਸਮੇਤ ਅੱਖਰ" #. 9Wbgf #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:183 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:303 msgctxt "wordcount-mobile|label3" msgid "Characters excluding spaces" -msgstr "" +msgstr "ਖਾਲੀ ਥਾਂ ਬਗੈਰ ਅੱਖਰ" #. wZHMX #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:207 @@ -30407,7 +30141,6 @@ #. A2jUj #: sw/uiconfig/swriter/ui/wrapdialog.ui:8 -#, fuzzy msgctxt "wrapdialog|WrapDialog" msgid "Wrap" msgstr "ਸਮੇਟੋ" @@ -30422,7 +30155,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:61 msgctxt "wrappage|before" msgid "Be_fore" -msgstr "" +msgstr "ਪਹਿਲਾਂ(_f)" #. tE9SC #: sw/uiconfig/swriter/ui/wrappage.ui:74 @@ -30434,7 +30167,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:121 msgctxt "wrappage|after" msgid "Aft_er" -msgstr "" +msgstr "ਬਾਅਦ(_e)" #. vpZfS #: sw/uiconfig/swriter/ui/wrappage.ui:134 @@ -30552,10 +30285,9 @@ #. LGNvR #: sw/uiconfig/swriter/ui/wrappage.ui:627 -#, fuzzy msgctxt "wrappage|anchoronly" msgid "_First paragraph" -msgstr "ਪਹਿਲਾ ਪ੍ਹੈਰਾ(~F)" +msgstr "ਪਹਿਲਾ ਪ੍ਹੈਰਾ(_F)" #. RjfUh #: sw/uiconfig/swriter/ui/wrappage.ui:635 @@ -30565,10 +30297,9 @@ #. XDTDj #: sw/uiconfig/swriter/ui/wrappage.ui:646 -#, fuzzy msgctxt "wrappage|transparent" msgid "In bac_kground" -msgstr "ਬੈਕਗਰਾਊਂਡ ਵਿੱਚ(~B)" +msgstr "ਬੈਕਗਰਾਊਂਡ ਵਿੱਚ(_b)" #. 3fHAC #: sw/uiconfig/swriter/ui/wrappage.ui:654 diff -Nru libreoffice-7.3.4/translations/source/pa-IN/vcl/messages.po libreoffice-7.3.5/translations/source/pa-IN/vcl/messages.po --- libreoffice-7.3.4/translations/source/pa-IN/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pa-IN/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1548643618.000000\n" #. k5jTM @@ -2327,169 +2327,169 @@ msgstr "ਪੇਪਰ ਦੀ ਸ਼ੀਟ ਉੱਤੇ ਕਈ ਸਫ਼ਿਆਂ ਨੂੰ ਛਾਪੋ।" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ਸੋਧ:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "ਸਫ਼ੇ:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ਰਾਹੀਂ" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ਸਫ਼ਿਆਂ ਵਿਚਾਲੇ" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ਸ਼ੀਟ ਬਾਰਡਰ ਤੋਂ" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ਹਰੇਕ ਪੇਜ਼ ਦੁਆਲੇ ਬਾਰਡਰ ਬਣਾਓ" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "ਪੈਂਫਲਿਟ" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/pl/chart2/messages.po libreoffice-7.3.5/translations/source/pl/chart2/messages.po --- libreoffice-7.3.4/translations/source/pl/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-12 07:36+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" @@ -3602,7 +3602,7 @@ msgstr "Określ liczbę linii dla wykresu kolumnowo-liniowego." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Wybierz główny typ wykresu." diff -Nru libreoffice-7.3.4/translations/source/pl/cui/messages.po libreoffice-7.3.5/translations/source/pl/cui/messages.po --- libreoffice-7.3.4/translations/source/pl/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2021-12-21 11:44+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1554834561.000000\n" #. GyY9M @@ -2202,7 +2202,7 @@ #: cui/inc/tipoftheday.hrc:61 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)" -msgstr "Znajdź wszystkie wyrażenia w nawiasach według Edycja ▸ Znajdź i zamień ▸ Znajdź ▸ \\([^)]+\\) (zaznacz “Wyrażenia regularne”)" +msgstr "Znajdź wszystkie wyrażenia w nawiasach według Edycja ▸ Znajdź i zamień ▸ Znajdź ▸ \\([^)]+\\) (zaznacz „Wyrażenia regularne”)" #. DUvk6 #: cui/inc/tipoftheday.hrc:62 @@ -2220,13 +2220,13 @@ #: cui/inc/tipoftheday.hrc:64 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To remove a hyperlink but keep its text, right-click on the hyperlink, and use “Remove Hyperlink”." -msgstr "Aby usunąć hiperłącze, ale zachować tekst, kliknij hiperłącze prawym przyciskiem myszy i użyj polecenia “Usuń hiperłącze”." +msgstr "Aby usunąć hiperłącze, ale zachować tekst, kliknij hiperłącze prawym przyciskiem myszy i użyj polecenia „Usuń hiperłącze”." #. FeNXF #: cui/inc/tipoftheday.hrc:65 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 "Aby usunąć kilka hiperłączy jednocześnie, zaznacz tekst z hiperłączami, a następnie kliknij prawym przyciskiem myszy i użyj “Usuń hiperłącze”." +msgstr "Aby usunąć kilka hiperłączy jednocześnie, zaznacz tekst z hiperłączami, a następnie kliknij prawym przyciskiem myszy i użyj „Usuń hiperłącze”." #. VnFnz #: cui/inc/tipoftheday.hrc:66 @@ -2269,7 +2269,7 @@ #: cui/inc/tipoftheday.hrc:72 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to sort a pivot table? Click on drop-list’s arrow in the row/col header and select sort method: ascending, descending, or custom." -msgstr "Chcesz posortować tabelę przestawną? Kliknij strzałkę listy rozwijanej w główcę wiersza/kolumny i wybierz metodę sortowania: rosnąco, malejąco lub niestandardową." +msgstr "Chcesz posortować tabelę przestawną? Kliknij strzałkę listy rozwijanej w główce wiersza/kolumny i wybierz metodę sortowania: rosnąco, malejąco lub niestandardową." #. CvgZt #: cui/inc/tipoftheday.hrc:73 @@ -2281,7 +2281,7 @@ #: cui/inc/tipoftheday.hrc:74 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Page/Slide ▸ Properties ▸ “Fit object to paper format” in Draw/Impress to resize the objects so that they fit on your chosen paper format." -msgstr "Użyj Strona/Slajd ▸ Właściwości ▸ “Dopasuj obiekt do formatu papieru” w programach Draw/Impress, aby zmienić rozmiar obiektów, tak aby pasowały do wybranego formatu papieru." +msgstr "Użyj Strona/Slajd ▸ Właściwości ▸ „Dopasuj obiekt do formatu papieru” w programach Draw/Impress, aby zmienić rozmiar obiektów, tak aby pasowały do wybranego formatu papieru." #. hj7H4 #: cui/inc/tipoftheday.hrc:75 @@ -2293,7 +2293,7 @@ #: cui/inc/tipoftheday.hrc:76 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In a Draw page, use “-” to zoom out; “+” to zoom in." -msgstr "Na stronie programu Draw użyj “-”, aby pomniejszyć; “+”, aby powiększyć." +msgstr "Na stronie programu Draw użyj „-”, aby pomniejszyć; „+”, aby powiększyć." #. PJFH2 #: cui/inc/tipoftheday.hrc:77 @@ -2344,7 +2344,7 @@ #: cui/inc/tipoftheday.hrc:84 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to keep a part of an editable document as read-only? Insert ▸ Section. Add text to the section, then right-click “Edit Section” and check “Protect”." -msgstr "Chcesz zachować część dokumentu do edycji jako tylko do odczytu? Wstaw ▸ Sekcja. Dodaj tekst do sekcji, a następnie kliknij prawym przyciskiem myszy “Edytcja sekcji” i zaznacz “Chroń”." +msgstr "Chcesz zachować część dokumentu do edycji jako tylko do odczytu? Wstaw ▸ Sekcja. Dodaj tekst do sekcji, a następnie kliknij prawym przyciskiem myszy „Edycja sekcji” i zaznacz „Chroń”." #. KtRU8 #: cui/inc/tipoftheday.hrc:85 @@ -2557,7 +2557,7 @@ #: cui/inc/tipoftheday.hrc:121 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." +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:122 @@ -2587,7 +2587,7 @@ #: cui/inc/tipoftheday.hrc:126 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." +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:127 @@ -2617,7 +2617,7 @@ #: cui/inc/tipoftheday.hrc:131 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”." +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:132 @@ -2659,13 +2659,13 @@ #: cui/inc/tipoftheday.hrc:138 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." +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:139 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." +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:140 @@ -2689,7 +2689,7 @@ #: cui/inc/tipoftheday.hrc:143 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." +msgstr "Wybierz „Widok hierarchiczny” na panelu bocznym stylów, aby zobaczyć relację między stylami." #. FKfZB #: cui/inc/tipoftheday.hrc:144 @@ -2726,7 +2726,7 @@ #: cui/inc/tipoftheday.hrc:149 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”." +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:150 @@ -2786,7 +2786,7 @@ #: cui/inc/tipoftheday.hrc:159 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”." +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 @@ -2799,7 +2799,7 @@ #: cui/inc/tipoftheday.hrc:161 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”." +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:162 @@ -2824,7 +2824,7 @@ #: cui/inc/tipoftheday.hrc:165 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”." +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:166 @@ -2842,7 +2842,7 @@ #: cui/inc/tipoftheday.hrc:168 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." +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 @@ -2862,7 +2862,7 @@ #: cui/inc/tipoftheday.hrc:171 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." +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:172 @@ -2951,7 +2951,7 @@ #: cui/inc/tipoftheday.hrc:185 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." +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:186 @@ -2995,7 +2995,7 @@ #: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." -msgstr "Chcesz dołączyć element listy bez punktora lub numeru? Użyj opcji \"Wstaw wpis bez numeru\" na pasku narzędzi Wypunktowanie i numeracja." +msgstr "Chcesz dołączyć element listy bez punktora lub numeru? Użyj opcji „Wstaw wpis bez numeru\" na pasku narzędzi Wypunktowanie i numeracja." #. ZacQo #: cui/inc/tipoftheday.hrc:193 @@ -3119,13 +3119,13 @@ #: cui/inc/tipoftheday.hrc:212 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…" +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:213 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”" +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:214 @@ -3188,7 +3188,7 @@ #: cui/inc/tipoftheday.hrc:223 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”." +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:224 @@ -3206,13 +3206,13 @@ #: cui/inc/tipoftheday.hrc:226 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)." +msgstr "Po utworzeniu stylu opartego na innym możesz wprowadzić wartość procentową lub wartość punktową (np. 110% lub −2 pt lub +5 pt)." #. PBjFr #: cui/inc/tipoftheday.hrc:227 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." +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:228 @@ -3248,7 +3248,7 @@ #: cui/inc/tipoftheday.hrc:233 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." +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:234 @@ -5765,7 +5765,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:280 msgctxt "bulletandposition|extended_tip|numfmtlb" msgid "Select the level(s) that you want to modify. To apply the options to all the levels, select “1-10”." -msgstr "Wybierz poziom lub poziomy, które chcesz zmodyfikować. Aby zastosować opcje do wszystkich poziomów, wybierz “1-10”." +msgstr "Wybierz poziom lub poziomy, które chcesz zmodyfikować. Aby zastosować opcje do wszystkich poziomów, wybierz „1-10”." #. mp5Si #: cui/uiconfig/ui/bulletandposition.ui:293 @@ -5969,7 +5969,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:840 msgctxt "bulletandposition|extended_tip|relative" msgid "Relative to the upper list level. The entered value is added to that of this field in the level before. If “Indent: 20mm” on list level 1 and “Indent: 10mm Relative” on list level 2 will result in an effective indent of 30mm for level 2." -msgstr "Względne do górnego poziomu listy. Podana wartość jest dodawana do wartości tego pola na poprzednim poziomie. Przykładowo \"Wcięcie: 20 mm\" na liście poziomu 1 i względne \"Wcięcie: 10 mm\" na liście poziomu 2 będzie skutkowało efektywnym wcięciem 30 mm dla poziomu 2." +msgstr "Względne do górnego poziomu listy. Podana wartość jest dodawana do wartości tego pola na poprzednim poziomie. Przykładowo „Wcięcie: 20 mm” na liście poziomu 1 i względne „Wcięcie: 10 mm” na liście poziomu 2 będzie skutkowało efektywnym wcięciem 30 mm dla poziomu 2." #. zC5eX #: cui/uiconfig/ui/bulletandposition.ui:864 @@ -8303,7 +8303,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:185 msgctxt "replace" msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc." -msgstr "To pole wejściowe jest dostępne tylko wtedy, gdy edytujesz słownik wyjątków lub słownik niestandardowy zależny od języka. W słownikach wyjątków pole to pokazuje alternatywną sugestię dla bieżącego słowa w polu tekstowym \"Słowo\". W niestandardowych słownikach zależnych od języka pole zawiera znane słowo źródłowe jako model dołączania nowego słowa lub jego użycia w słowach złożonych. Na przykład w niemieckim słowniku niestandardowym nowe słowo \"Litschi\" (liczi) ze słowem wzorcowym \"Gummi\" (guma) spowoduje rozpoznanie \"Litschis\" (liczi), \"Litschibaum\" (drzewo liczi), \"Litschifrucht\" (owoc liczi) itp." +msgstr "To pole wejściowe jest dostępne tylko wtedy, gdy edytujesz słownik wyjątków lub słownik niestandardowy zależny od języka. W słownikach wyjątków pole to pokazuje alternatywną sugestię dla bieżącego słowa w polu tekstowym \"Słowo\". W niestandardowych słownikach zależnych od języka pole zawiera znane słowo źródłowe jako model dołączania nowego słowa lub jego użycia w słowach złożonych. Na przykład w niemieckim słowniku niestandardowym nowe słowo „Litschi” (liczi) ze słowem wzorcowym „Gummi” (guma) spowoduje rozpoznanie „Litschis\" (liczi), „Litschibaum” (drzewo liczi), „Litschifrucht” (owoc liczi) itp." #. 5EwBs #: cui/uiconfig/ui/editdictionarydialog.ui:203 @@ -15386,13 +15386,13 @@ #: cui/uiconfig/ui/optlanguagespage.ui:329 msgctxt "optlanguagespage|ignorelanguagechange" msgid "Ignore s_ystem input language" -msgstr "Zignoruj język wejściowy s_ystemu" +msgstr "Zignoruj język wprowadzania syste_mu" #. CCumn #: cui/uiconfig/ui/optlanguagespage.ui:337 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 "Wskazuje, czy zmiany wprowadzonego języka systemowego/klawiatury będą ignorowane. Jeśli będą ignorowane, nowy tekst będzie wpisywany, zgodnie z językiem dokumentu lub bieżącego akapitu, nie według bieżącego języka systemowego." +msgstr "Wskazuje, czy zmiany języka wprowadzania systemu/klawiatury będą ignorowane. Jeśli będą ignorowane, nowy tekst będzie wpisywany, zgodnie z językiem dokumentu lub bieżącego akapitu, nie według bieżącego języka systemu." #. 83eTv #: cui/uiconfig/ui/optlanguagespage.ui:352 @@ -16383,7 +16383,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:287 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 "Hasła są zabezpieczone hasłem głównym. Jeśli program %PRODUCTNAME pobierze hasło z zabezpieczonej listy haseł, zostaniesz poproszony o podanie hasła tylko raz podczas sesji." +msgstr "Hasła są zabezpieczone hasłem głównym. Jeśli program %PRODUCTNAME pobierze hasło z zabezpieczonej listy haseł, prośba o podanie hasła pojawi się raz na sesję." #. 7gzb7 #: cui/uiconfig/ui/optsecuritypage.ui:303 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatycznie" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Wysoki kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasyczny" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Określa styl ikon dla ikon pasków narzędzi i okien dialogowych." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tyl ikony:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Dodaj więcej motywów ikon za pomocą rozszerzenia" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Styl ikon" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Wymaga ponownego uruchomienia programu" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Użyj przys_pieszenia sprzętowego" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Poprawia jakość obrazu, korzystając z bezpośredniego dostępu do funkcji sprzętowych kart graficznych." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Włącz _antyaliasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Jeżeli funkcja antyaliasingu elementów graficznych jest obsługiwana, można ją włączyć lub wyłączyć. Jeżeli jest ona włączona, większość wyświetlanych obiektów graficznych wygląda na gładsze i z mniejszą ilością artefaktów." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Używaj Skia do renderowania" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Wymuś renderowanie programowe Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Wymaga ponownego uruchomienia. Włączenie tej opcji uniemożliwi korzystanie ze sterowników graficznych." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia jest włączony." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia jest wyłączony." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Wyjście obrazu" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Podgląd w_ykazu czcionek" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Wyświetla nazwy czcionek, które można wybrać, np. czcionki w polu Czcionka paska Formatowanie." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Wy_gładzanie czcionek ekranowych" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Zaznacz, aby wyświetlać wygładzony tekst." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_od:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Wprowadź najmniejszy rozmiar czcionki, do której ma zostać zastosowany antyaliasing." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listy czcionek" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Uruchom testy graficzne" diff -Nru libreoffice-7.3.4/translations/source/pl/dbaccess/messages.po libreoffice-7.3.5/translations/source/pl/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/pl/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-11-17 12:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547392099.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Utwórz _nową bazę danych" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Wybierz, aby utworzyć nową bazę danych." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Osadzona baza danych:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Otwórz istniejący _plik bazy danych" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Wybierz, aby otworzyć plik bazy danych z listy ostatnio używanych plików lub z okna dialogowego wyboru plików." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ostatnio używane:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Wybierz plik bazy danych, aby otworzyć z listy ostatnio używanych plików. Kliknij Zakończ, aby natychmiast otworzyć plik i wyjść z kreatora." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otwórz" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Otwiera okno dialogowe Wybór pliku, w którym można wybrać plik bazy danych. Kliknij Otwórz lub OK w oknie dialogowym wyboru pliku, aby natychmiast otworzyć plik i wyjść z kreatora." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Połącz z istniejącą bazą danych" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Wybierz, aby utworzyć dokument bazy danych dla istniejącego połączenia bazy danych." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Wybierz typ bazy danych dla istniejącego połączenia bazy danych." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "dostępne w tej konfiguracji." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Kreator bazy danych tworzy plik bazy danych zawierający informacje o bazie danych." @@ -4026,7 +4026,7 @@ #: dbaccess/uiconfig/ui/password.ui:187 msgctxt "password|label1" msgid "User “$name$: $”" -msgstr "Użytkownik “$name$: $”" +msgstr "Użytkownik „$name$: $”" #. 9sAsA #: dbaccess/uiconfig/ui/querycolmenu.ui:12 diff -Nru libreoffice-7.3.4/translations/source/pl/dictionaries/en/dialog.po libreoffice-7.3.5/translations/source/pl/dictionaries/en/dialog.po --- libreoffice-7.3.4/translations/source/pl/dictionaries/en/dialog.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/dictionaries/en/dialog.po 2022-07-15 19:12:51.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-07 10:52+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1380650543.000000\n" #. fyB4s @@ -167,7 +167,7 @@ "hlp_quotation\n" "property.text" msgid "Check double quotation marks: \"x\" → “x”" -msgstr "Sprawdź podwójne cudzysłowy: \"x\" → “x”" +msgstr "Sprawdź podwójne cudzysłowy: \"x\" → „x”" #. YP2Y7 #: en_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/pl/dictionaries/pt_BR/dialog.po libreoffice-7.3.5/translations/source/pl/dictionaries/pt_BR/dialog.po --- libreoffice-7.3.4/translations/source/pl/dictionaries/pt_BR/dialog.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/dictionaries/pt_BR/dialog.po 2022-07-15 19:12:51.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-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-09-12 07:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547392121.000000\n" #. Bshz7 @@ -187,7 +187,7 @@ "hlp_quotation\n" "property.text" msgid "Check double quotation marks: \"x\" → “x”" -msgstr "Sprawdź podwójne cudzysłowy: \"x\" → “x”" +msgstr "Sprawdź podwójne cudzysłowy: \"x\" → „x”" #. bC8RD #: pt_BR_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/pl/editeng/messages.po libreoffice-7.3.5/translations/source/pl/editeng/messages.po --- libreoffice-7.3.4/translations/source/pl/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-01-23 08:03+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1530350956.000000\n" #. BHYB4 @@ -945,7 +945,7 @@ #: include/editeng/editrids.hrc:168 msgctxt "RID_SVXITEMS_METRIC_POINT" msgid "pt" -msgstr "pkt" +msgstr "pt" #. FsA5C #: include/editeng/editrids.hrc:169 diff -Nru libreoffice-7.3.4/translations/source/pl/extensions/messages.po libreoffice-7.3.5/translations/source/pl/extensions/messages.po --- libreoffice-7.3.4/translations/source/pl/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2021-10-21 11:33+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1550083504.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Odśwież formularz" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Pobierz" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Wyślij" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Wieloczęściowe" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Теkst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standardowy (krótki)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardowy (krótki RR)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardowy (krótki RRRR)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standardowy (długi)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/RR" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/RR" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "RR/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/RRRR" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/RRRR" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "RRRR/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "RR-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "RRRR-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nie wybrano" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Wybrano" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nie zdefiniowano" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Wszystkie rekordy" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktywny rekord" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Bieżąca strona" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nie" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Tak" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formularz macierzysty" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Brak" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Pojedyncze" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Wielokrotne" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Zakres" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Poziomy" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Pionowy" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Domyślnie" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Anuluj" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoc" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Zaznaczony wpis" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozycja zaznaczonego wpisu" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jedna linia" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Wiele linii" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Wiele linii z formatowaniem" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Brak" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Poziomy" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Pionowy" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Oba" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Płaski" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Na lewo / góra" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Na lewo / środek" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Na lewo / dół" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Na prawo / góra" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Na prawo / środek" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Na prawo / dół" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ponad / lewa" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ponad / środek" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ponad / prawa" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Pod / lewa" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Pod / środek" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Pod / prawa" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Pośrodku" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Zachowaj" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zmień" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Połącz" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nie" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Zachowaj proporcje" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Dopasuj do rozmiaru" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Od lewej do prawej" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Od prawej do lewej" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Użyj ustawień obiektu nadrzędnego" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nigdy" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Gdy ustawiony fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Zawsze" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Do akapitu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Jako znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Do strony" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Do ramki" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Do znaku" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Do strony" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Do komórki" @@ -3892,7 +3880,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8 msgctxt "mappingdialog|MappingDialog" msgid "Column Layout for Table “%1”" -msgstr "Układ kolumn w tabeli “%1”" +msgstr "Układ kolumn w tabeli „%1”" #. ZttGm #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:101 diff -Nru libreoffice-7.3.4/translations/source/pl/filter/source/config/fragments/filters.po libreoffice-7.3.5/translations/source/pl/filter/source/config/fragments/filters.po --- libreoffice-7.3.4/translations/source/pl/filter/source/config/fragments/filters.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/filter/source/config/fragments/filters.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2022-02-02 09:39+0000\n" +"PO-Revision-Date: 2022-06-06 18:34+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1547392171.000000\n" #. FR4Ff @@ -974,7 +974,7 @@ "UIName\n" "value.text" msgid "Rich Text" -msgstr "Rich Text" +msgstr "Tekst sformatowany" #. JDULv #: Rich_Text_Format__StarCalc_.xcu @@ -984,7 +984,7 @@ "UIName\n" "value.text" msgid "Rich Text Format (Calc)" -msgstr "Format Rich Text (Calc)" +msgstr "Format tekstu sformatowanego (Calc)" #. KbNXG #: SVG___Scalable_Vector_Graphics.xcu diff -Nru libreoffice-7.3.4/translations/source/pl/fpicker/messages.po libreoffice-7.3.5/translations/source/pl/fpicker/messages.po --- libreoffice-7.3.4/translations/source/pl/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-23 08:03+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" @@ -216,55 +216,55 @@ msgstr "Data modyfikacji" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Otwórz" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Odt_wórz" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nazwa pliku:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Typ pliku:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Tylko _do odczytu" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Zapisz z hasłem" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatyczne rozszerzenie nazwy pliku" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Edycja ustawień _filtra" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Zaszyfruj kluczem GPG" diff -Nru libreoffice-7.3.4/translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.5/translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.4/translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-07-15 19:12:51.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-31 10:35+0200\n" -"PO-Revision-Date: 2022-02-02 09:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1545154078.000000\n" #. tBfTE @@ -4883,7 +4883,7 @@ "OOO_UITEXT_30\n" "LngText.text" msgid "Compiling cost for this feature..." -msgstr "Obliczanie kosztu tego komponentu..." +msgstr "Obliczanie wymagań tego komponentu..." #. ELDvk #: UIText.ulf diff -Nru libreoffice-7.3.4/translations/source/pl/librelogo/source/pythonpath.po libreoffice-7.3.5/translations/source/pl/librelogo/source/pythonpath.po --- libreoffice-7.3.4/translations/source/pl/librelogo/source/pythonpath.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/librelogo/source/pythonpath.po 2022-07-15 19:12:51.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-06-30 19:04+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1530356244.000000\n" #. tFoAo @@ -923,7 +923,7 @@ "PT\n" "property.text" msgid "pt" -msgstr "pkt" +msgstr "pt" #. NVaj5 #: LibreLogo_en_US.properties @@ -1193,7 +1193,7 @@ "ERR_NAME\n" "property.text" msgid "Unknown name: “%s”." -msgstr "Nierozpoznana nazwa: “%s”." +msgstr "Nierozpoznana nazwa: „%s”." #. oVW6Y #: LibreLogo_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.3.5/translations/source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.3.4/translations/source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2022-07-15 19:12:51.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: 2021-09-15 11:23+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1487499161.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 "Jeśli wyłączone (domyślnie), używany jest komparator BCH. Porównuje dwie jednostki najpierw poszukując naruszeń ich ograniczeń i tylko, jeśli są równe, dokonuje pomiaru aktualnego rozwiązania." +msgstr "Jeśli wyłączone (domyślnie), używany jest komparator BCH. Porównuje dwie jednostki, najpierw poszukując naruszeń ich ograniczeń, a dopiero gdy te są równe, dokonuje pomiaru aktualnego rozwiązania." #. wHTo3 #: Options.xhp @@ -203,7 +203,7 @@ "par_id0503200917103834\n" "help.text" msgid "Defines in what range solutions are considered “similar”." -msgstr "Określa w jakim zakresie rozwiązania są rozpatrywane jako “podobne”." +msgstr "Określa w jakim zakresie rozwiązania są rozpatrywane jako „podobne”." #. RUbSm #: Options.xhp @@ -284,7 +284,7 @@ "par_id060320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the “speed” of movement." -msgstr "W trakcie podziału, współczynnik podziału decyduje o “szybkości” przesunięcia." +msgstr "W trakcie podziału, współczynnik podziału decyduje o „szybkości” przesunięcia." #. pxYLF #: Options.xhp @@ -437,7 +437,7 @@ "par_id0603200910430873\n" "help.text" 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 "Granice określa się wybierają jedną lub więcej zmiennych (jako zakres) z lewej strony i wprowadzając wartość numeryczną (nie komórkę lub formułę) z prawej. W ten sposób, można również wybrać jedną lub więcej zmiennych będących wyłącznie liczbą całkowitą lub binarną." +msgstr "Granice określa się, wybierając jedną lub więcej zmiennych (jako zakres) z lewej strony i wprowadzając wartość numeryczną (nie komórkę lub formułę) z prawej. W ten sposób można również wybrać jedną lub więcej zmiennych, będących wyłącznie liczbą całkowitą lub binarną." #. 4SEEA #: help.tree diff -Nru libreoffice-7.3.4/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-02-02 09:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554834571.000000\n" #. W5ukN @@ -20766,7 +20766,7 @@ "Label\n" "value.text" msgid "Right-To-Left" -msgstr "Z prawej do lewej" +msgstr "Od prawej do lewej" #. LakXt #: GenericCommands.xcu @@ -32096,7 +32096,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "Powtarzanie wierszy główkowych na kolejnych stronach" +msgstr "Powtarzanie wierszy nagłówka na kolejnych stronach" #. xhNkD #: WriterCommands.xcu @@ -34696,7 +34696,7 @@ "TooltipLabel\n" "value.text" msgid "“Add to List” adds selected paragraphs to an immediately preceding list." -msgstr "\"Dodaj do listy\" dodaje wybrane akapity do bezpośrednio poprzedzającej listy." +msgstr "„Dodaj do listy” dodaje wybrane akapity do bezpośrednio poprzedzającej listy." #. oCEjg #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/pl/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/pl/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/pl/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-09-12 07:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1543139212.000000\n" #. q6Gg3 @@ -248,7 +248,7 @@ "Linuxi3a\n" "readmeitem.text" msgid "There is a wide variety of Linux distributions, and there may be different installation options (KDE vs Gnome, etc.) available from the same Linux vendor. Some distributions ship with their own “native” version of ${PRODUCTNAME}, which may have different features from this community-supplied version of ${PRODUCTNAME}. In many cases, you can install the community-supplied ${PRODUCTNAME} alongside a native version. However, you may prefer to remove the “native” version before installing this community-supplied version. For details on how to do that, please consult the user help resources provided by your particular Linux vendor." -msgstr "Istnieje wiele różnych dystrybucji Linuksa a opcje instalacji dostępne dla tej samej dystrybucji mogą się różnić (w KDE, Gnome, itp.). Niektóre dystrybucje dostarczają własną “natywną” wersję ${PRODUCTNAME}, która może nieco różnić się od wersji ${PRODUCTNAME} dostarczanej przez społeczność. W wielu przypadkach możliwa jest instalacji wersji ${PRODUCTNAME} dostarczanej przez społeczność obok wersji natywnej. Możliwe, że będziesz wolał usunąć wersję “natywną” przed zainstalowaniem wersji dostarczanej przez społeczność. Szczegółowych informacji na ten temat należy szukać w zasobach pomocy dostarczanych przez konkretnego wydawcę dystrybucji Linux." +msgstr "Istnieje wiele różnych dystrybucji Linuksa a opcje instalacji dostępne dla tej samej dystrybucji mogą się różnić (w KDE, Gnome, itp.). Niektóre dystrybucje dostarczają własną „natywną” wersję ${PRODUCTNAME}, która może nieco różnić się od wersji ${PRODUCTNAME} dostarczanej przez społeczność. W wielu przypadkach możliwa jest instalacji wersji ${PRODUCTNAME} dostarczanej przez społeczność obok wersji natywnej. Możliwe, że będziesz wolał usunąć wersję „natywną” przed zainstalowaniem wersji dostarczanej przez społeczność. Szczegółowych informacji na ten temat należy szukać w zasobach pomocy dostarczanych przez konkretnego wydawcę dystrybucji Linux." #. SKCtD #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/pl/sc/messages.po libreoffice-7.3.5/translations/source/pl/sc/messages.po --- libreoffice-7.3.4/translations/source/pl/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-11-21 00:17+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1554834651.000000\n" #. kBovX @@ -22305,7 +22305,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:105 msgctxt "erroralerttabpage-mobile|errormsg_label" msgid "_Error message:" -msgstr "_Komunikat błędu:" +msgstr "_Komunikat o błędzie:" #. ZzEdw #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:118 @@ -22365,7 +22365,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:125 msgctxt "erroralerttabpage|errormsg_label" msgid "_Error message:" -msgstr "_Komunikat błędu:" +msgstr "_Komunikat o błędzie:" #. gFYoH #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:138 @@ -23637,7 +23637,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:426 msgctxt "headerfootercontent|extended_tip|buttonBTN_DATE" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document." -msgstr "W wybranym obszarze główki lub stopki wstawia symbol zastępczy, który zostanie zastąpiony bieżącą datą powtarzaną na nagłówku lub stopce każdej strony dokumentu." +msgstr "W wybranym obszarze główki lub stopki wstawia symbol zastępczy, który zostanie zastąpiony bieżącą datą powtarzaną w główce lub stopce każdej strony dokumentu." #. m5EGS #: sc/uiconfig/scalc/ui/headerfootercontent.ui:441 @@ -23649,7 +23649,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:446 msgctxt "headerfootercontent|extended_tip|buttonBTN_TIME" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document." -msgstr "W wybranym obszarze główki lub stopki wstawia symbol zastępczy, który zostanie zastąpiony bieżącą godziną na nagłówku lub stopce każdej strony dokumentu." +msgstr "W wybranym obszarze główki lub stopki wstawia symbol zastępczy, który zostanie zastąpiony bieżącą godziną w główce lub stopce każdej strony dokumentu." #. 6FVPq #: sc/uiconfig/scalc/ui/headerfootercontent.ui:468 @@ -25257,97 +25257,97 @@ msgstr "~Widok" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ob_raz" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "O~braz" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "R_ysowanie" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "R~ysowanie" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Obiekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Obiekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Drukuj" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Drukowanie" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmularz" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmularz" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "R_ozszerzenie" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "R~ozszerzenie" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "N_arzędzia" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Narzędzia" @@ -25706,139 +25706,139 @@ msgstr "Ob_raz" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rozmieść" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Kolor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Siatka" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Język" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Recenzja" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komentarze" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Porównanie" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Widok" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "R_ysowanie" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edycja" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rozmieść" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Widok" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupuj" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Czci_onka" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Wyrównanie" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Widok" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "W_staw" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimedia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "R_amka" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rozmieść" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Siatka" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Widok" @@ -29567,7 +29567,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:244 msgctxt "sheetprintpage|extended_tip|checkBTN_HEADER" msgid "Specifies whether you want the column and row headers to be printed." -msgstr "Określa, czy mają być drukowane nagłówki kolumn i wierszy." +msgstr "Określa, czy mają być drukowane główki kolumn i wierszy." #. A6vme #: sc/uiconfig/scalc/ui/sheetprintpage.ui:255 @@ -32159,7 +32159,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:203 msgctxt "extended_tip|rowcolheader" msgid "Specifies whether to display row and column headers." -msgstr "Określa, czy mają być wyświetlane nagłówki wierszy i kolumn." +msgstr "Określa, czy mają być wyświetlane główki wierszy i kolumn." #. WAwjG #: sc/uiconfig/scalc/ui/tpviewpage.ui:214 @@ -32753,7 +32753,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:25 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 "Po zaznaczeniu komórki lub zakresu komórek wyświetla komunikat wprowadzony z polu Zawartość." +msgstr "Wyświetla komunikat wprowadzony w polu Zawartość, gdy komórka lub zakres komórek jest zaznaczony w arkuszu." #. 9NNLK #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:63 diff -Nru libreoffice-7.3.4/translations/source/pl/scp2/source/writer.po libreoffice-7.3.5/translations/source/pl/scp2/source/writer.po --- libreoffice-7.3.4/translations/source/pl/scp2/source/writer.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/scp2/source/writer.po 2022-07-15 19:12:51.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-15 13:15+0000\n" -"Last-Translator: naniud \n" -"Language-Team: Polish \n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" +"Last-Translator: Adam Rak \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1385485493.000000\n" #. V3iDr @@ -230,7 +230,7 @@ "STR_REG_VAL_MS_RTF_DOCUMENT\n" "LngText.text" msgid "Rich Text Document" -msgstr "Dokument Rich Text" +msgstr "Dokument RTF" #. 2xDoA #: registryitem_writer.ulf diff -Nru libreoffice-7.3.4/translations/source/pl/sd/messages.po libreoffice-7.3.5/translations/source/pl/sd/messages.po --- libreoffice-7.3.4/translations/source/pl/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2021-10-21 11:33+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1554834667.000000\n" #. WDjkB @@ -4174,109 +4174,109 @@ msgstr "~Tabela" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Obraz" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "O~braz" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "R_ysowanie" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "R~ysowanie" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Obiekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Obiekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmularz" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmularz" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Wzorze_c" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Wzorze~c" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "R_ozszerzenie" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "R~ozszerzenie" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "N_arzędzia" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Narzędzia" @@ -5450,7 +5450,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:267 msgctxt "customslideshows|extended_tip|CustomSlideShows" msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want." -msgstr "Definiuje niestandardowy pokaz slajdów, używając do tego slajdów z bieżącej prezentacji. Możesz wybrać odpowiednie slajdy, aby wyjść na przeciw oczekiwaniom odbiorców. Możesz utworzyć dowolną liczbę niestandardowych pokazów slajdów." +msgstr "Określa niestandardowy pokaz slajdów, używając do tego slajdów z bieżącej prezentacji. Możesz wybrać odpowiednie slajdy, aby wyjść na przeciw oczekiwaniom odbiorców. Możesz utworzyć dowolną liczbę niestandardowych pokazów slajdów." #. KmamJ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:24 @@ -7063,109 +7063,109 @@ msgstr "~Tabela" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Obraz" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "O~braz" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "R_ysowanie" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "R~ysowanie" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Obiekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Obiekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimedia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimedia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmularz" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmularz" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Wzorze_c" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Wzorze~c" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "R_ozszerzenie" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "R~ozszerzenie" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "N_arzędzia" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Narzędzia" @@ -8439,7 +8439,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:710 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 "Pozwala wybrać ustawienia pokazu slajdów łącznie z wybraniem slajdu początkowego, sposobu przełączania slajdów, typu prezentacji oraz opcji wskaźnika." +msgstr "Określa ustawienia pokazu slajdów, w tym od którego slajdu ma się rozpocząć, sposób przewijania slajdów, typ prezentacji oraz opcje wskaźnika." #. Byo4C #: sd/uiconfig/simpress/ui/prntopts.ui:33 @@ -9777,7 +9777,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456 msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel" msgid "Defines the special effect that plays when you display a slide during a slide show." -msgstr "Pozwala wybrać efekt przejścia slajdu używany podczas pokazu slajdów." +msgstr "Określa efekt przejścia slajdu używany podczas pokazu slajdów." #. T99jN #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:24 diff -Nru libreoffice-7.3.4/translations/source/pl/sfx2/messages.po libreoffice-7.3.5/translations/source/pl/sfx2/messages.po --- libreoffice-7.3.4/translations/source/pl/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-04-05 10:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1550083777.000000\n" #. bHbFE @@ -62,13 +62,13 @@ #: include/sfx2/strings.hrc:32 msgctxt "STR_DEFAULT_TEMPLATE" msgid "Set as De~fault" -msgstr "Ustaw jako ~domyślne" +msgstr "Ustaw jako ~domyślny" #. Bwnha #: include/sfx2/strings.hrc:33 msgctxt "STR_RESET_DEFAULT" msgid "Reset De~fault" -msgstr "Resetuj domyśl~ne" +msgstr "Resetuj domyśl~ny" #. oRvm4 #: include/sfx2/strings.hrc:34 @@ -2767,7 +2767,7 @@ #: sfx2/uiconfig/ui/alienwarndialog.ui:13 msgctxt "alienwarndialog|AlienWarnDialog" msgid "This document may contain formatting or content that cannot be saved in the currently selected file format “%FORMATNAME”." -msgstr "Ten dokument może zawierać formatowanie lub treści, które nie mogą być zapisane w aktualnie wybranym formacie pliku “%FORMATNAME”." +msgstr "Ten dokument może zawierać formatowanie lub treści, które nie mogą być zapisane w aktualnie wybranym formacie pliku „%FORMATNAME”." #. 3YA5c #: sfx2/uiconfig/ui/alienwarndialog.ui:14 @@ -3411,7 +3411,7 @@ #: sfx2/uiconfig/ui/documentpropertiesdialog.ui:8 msgctxt "documentpropertiesdialog|DocumentPropertiesDialog" msgid "Properties of “%1”" -msgstr "Właściwości “%1”" +msgstr "Właściwości „%1”" #. iTECQ #: sfx2/uiconfig/ui/documentpropertiesdialog.ui:135 @@ -4485,7 +4485,7 @@ #: sfx2/uiconfig/ui/querysavedialog.ui:13 msgctxt "querysavedialog|QuerySaveDialog" msgid "Save changes to document “$(DOC)” before closing?" -msgstr "Zapisać zmiany przed zamknięciem dokumentu “$(DOC)”?" +msgstr "Zapisać zmiany przed zamknięciem dokumentu „$(DOC)”?" #. 7mtVz #: sfx2/uiconfig/ui/querysavedialog.ui:14 diff -Nru libreoffice-7.3.4/translations/source/pl/starmath/messages.po libreoffice-7.3.5/translations/source/pl/starmath/messages.po --- libreoffice-7.3.4/translations/source/pl/starmath/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/starmath/messages.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-09-12 07:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1537639715.000000\n" #. GrDhX @@ -2906,7 +2906,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:170 msgctxt "fontsizedialog|extended_tip|spinB_baseSize" msgid "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points." -msgstr "Wszystkie elementy formuły są proporcjonalnie skalowane do rozmiaru podstawowego. Aby zmienić rozmiar podstawowy, wybierz lub wpisz żądany rozmiar punktu (pkt). Możesz także użyć innych jednostek miary lub innych metryk, które są następnie automatycznie konwertowane na punkty." +msgstr "Wszystkie elementy formuły są proporcjonalnie skalowane do rozmiaru podstawowego. Aby zmienić rozmiar podstawowy, wybierz lub wpisz żądany rozmiar punktu (pt). Możesz także użyć innych jednostek miary lub innych metryk, które są następnie automatycznie konwertowane na punkty." #. RtP4G #: starmath/uiconfig/smath/ui/fontsizedialog.ui:214 diff -Nru libreoffice-7.3.4/translations/source/pl/svtools/messages.po libreoffice-7.3.5/translations/source/pl/svtools/messages.po --- libreoffice-7.3.4/translations/source/pl/svtools/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/svtools/messages.po 2022-07-15 19:12:51.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-12-20 13:21+0100\n" -"PO-Revision-Date: 2022-04-05 10:47+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554834675.000000\n" #. fLdeV @@ -64,13 +64,13 @@ #: include/svtools/strings.hrc:34 msgctxt "STR_FORMAT_RTF" msgid "Rich text formatting (RTF)" -msgstr "Formatowanie Rich Text (RTF)" +msgstr "Formatowanie tekstu sformatowanego (RTF)" #. wwEZs #: include/svtools/strings.hrc:35 msgctxt "STR_FORMAT_ID_RICHTEXT" msgid "Rich text formatting (Richtext)" -msgstr "Formatowanie Rich Text (Richtext)" +msgstr "Formatowanie tekstu sformatowanego (Richtext)" #. oZgfj #: include/svtools/strings.hrc:36 @@ -5806,7 +5806,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:250 msgctxt "restartdialog|reason_threading" msgid "For the multi-threaded calculation changes to take effect, %PRODUCTNAME must be restarted." -msgstr "Aby zmiany obliczeń wielowątkowych zostały wprowadzone, należy ponownie uruchomić %PRODUCTNAME." +msgstr "Aby zmiany obliczeń wielowątkowych odniosły skutek, należy ponownie uruchomić %PRODUCTNAME." #. nUonf #: svtools/uiconfig/ui/restartdialog.ui:265 @@ -5824,7 +5824,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:294 msgctxt "restartdialog|reason_skia" msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted." -msgstr "Aby zmiany wprowadzone w Skia zaczęły obowiązywać, należy ponownie uruchomić %PRODUCTNAME." +msgstr "Aby zmiany wprowadzone w Skia odniosły skutek, należy ponownie uruchomić %PRODUCTNAME." #. v9FjK #: svtools/uiconfig/ui/thineditcontrol.ui:72 diff -Nru libreoffice-7.3.4/translations/source/pl/svx/messages.po libreoffice-7.3.5/translations/source/pl/svx/messages.po --- libreoffice-7.3.4/translations/source/pl/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-02-19 10:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554834683.000000\n" #. 3GkZj @@ -5706,7 +5706,7 @@ #: include/svx/strings.hrc:1023 msgctxt "RID_SVXSTR_PT" msgid "pt" -msgstr "pkt" +msgstr "pt" #. fRyqX #: include/svx/strings.hrc:1025 @@ -13013,7 +13013,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:247 msgctxt "adddataitemdialog|extended_tip|required" msgid "Specifies if the item must be included on the XForm." -msgstr "Określa, czy element musi być włączony do formularza XML." +msgstr "Określa, czy element musi być uwzględniony w XForms." #. xFrP8 #: svx/uiconfig/ui/adddataitemdialog.ui:258 @@ -14285,7 +14285,7 @@ #: svx/uiconfig/ui/datanavigator.ui:78 msgctxt "datanavigator|extended_tip|modelsadd" msgid "Opens the Add Model dialog where you can add an XForm model." -msgstr "Otwiera okno dialogowe Dodaj model umożliwiające dodanie modelu XForm." +msgstr "Otwiera okno dialogowe Dodaj model, w którym można dodać model XForms." #. m8vxV #: svx/uiconfig/ui/datanavigator.ui:87 @@ -14309,13 +14309,13 @@ #: svx/uiconfig/ui/datanavigator.ui:104 msgctxt "datanavigator|extended_tip|modelsremove" msgid "Deletes the selected XForm model. You cannot delete the last model." -msgstr "Usuwa zaznaczony model formularza XML. Nie można usunąć ostatniego modelu." +msgstr "Usuwa wybrany model XForms. Nie można usunąć ostatniego modelu." #. nDrEE #: svx/uiconfig/ui/datanavigator.ui:137 msgctxt "datanavigator|extended_tip|modelslist" msgid "Selects the XForms model that you want to use." -msgstr "Wybiera żądany model formularza XML." +msgstr "Wybiera żądany model XForms." #. BAMs9 #: svx/uiconfig/ui/datanavigator.ui:148 @@ -14327,7 +14327,7 @@ #: svx/uiconfig/ui/datanavigator.ui:162 msgctxt "datanavigator|extended_tip|modelsbutton" msgid "Adds, renames, and removes XForms models." -msgstr "Dodaje, edytuje i usuwa modele formularzy XML." +msgstr "Dodaje, edytuje i usuwa modele XForms." #. BF3zW #: svx/uiconfig/ui/datanavigator.ui:224 @@ -18045,7 +18045,7 @@ #: svx/uiconfig/ui/optgridpage.ui:681 msgctxt "extended_tip|mtrfldbezangle" msgid "Defines the angle for point reduction." -msgstr "Definiuje kąt redukcji punktów." +msgstr "Określa kąt redukcji punktów." #. hEA4g #: svx/uiconfig/ui/optgridpage.ui:694 diff -Nru libreoffice-7.3.4/translations/source/pl/sw/messages.po libreoffice-7.3.5/translations/source/pl/sw/messages.po --- libreoffice-7.3.4/translations/source/pl/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -4468,7 +4468,7 @@ #: sw/inc/strings.hrc:413 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "Zainstaluj pakiet dzielenia wyrazów dla ustawień regionalnych “%1”." +msgstr "Zainstaluj pakiet dzielenia wyrazów dla ustawień regionalnych „%1”." #. bJFYS #: sw/inc/strings.hrc:414 @@ -5057,7 +5057,7 @@ #: sw/inc/strings.hrc:513 msgctxt "STR_START_QUOTE" msgid "“" -msgstr "“" +msgstr "„" #. kZoAG #: sw/inc/strings.hrc:514 @@ -10506,19 +10506,19 @@ msgstr "Przenosi zaznaczony styl akapitu o jeden poziom w dół w hierarchii indeksu." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Styl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Style" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Tworzy wpisy indeksu w oparciu o określone style akapitów." @@ -13962,37 +13962,37 @@ msgstr "Wymień bazy danych" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definiuj" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Używane bazy danych" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Dostępne b_azy danych" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Przeglądaj..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Otwiera okno dialogowe otwierania plików umożliwiające wybór pliku bazy danych (*.odb). Wybrany plik jest umieszczany na liście Dostępne bazy danych." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Użyj przycisku Przeglądaj, aby wybrać plik bazy danych." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Wyświetla listę aktualnie używanych baz danych." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Wyświetla listę zarejestrowanych baz danych w %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Wymień bazy danych" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Baza zastosowana do dokumentu:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Zmień źródła danych dla bieżącego dokumentu." @@ -20080,109 +20080,109 @@ msgstr "Użyj bieżącego _dokumentu" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Tworzy dokument korespondencji seryjnej na podstawie bieżącego dokumentu programu Writer." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Utwórz no_wy dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Tworzy nowy dokument programu Writer do użycia w korespondencji seryjnej." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Użyj istniejącego dokum_entu" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Tworzy dokument korespondencji seryjnej na podstawie istniejącego dokumentu programu Writer." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Użyj sz_ablonu" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Określa szablon, który ma zostać użyty podczas tworzenia dokumentu korespondencji seryjnej." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Użyj jednego z ostatnio zapisanych doku_mentów" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Używa istniejącego dokumentu korespondencji seryjnej jako podstawy nowego dokumentu korespondencji seryjnej." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Wybierz dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "P_rzeglądaj..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Zlokalizuj dokument programu Writer, który chcesz użyć, a następnie kliknij Otwórz." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "P_rzeglądaj..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Otwiera okno dialogowe wyboru szablonu." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Źródło danych bieżącego dokumentu nie jest zarejestrowane. Wymień bazę danych." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Wymień bazę danych..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Wybierz dokument wyjściowy do korespondencji seryjnej" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Określ dokument, którego chcesz użyć jako podstawy dla dokumentu korespondencji seryjnej." @@ -22325,49 +22325,49 @@ msgstr "Obiekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opcje" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Zawijanie" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperłącze" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Krawędzie" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Obszar" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Przezroczystość" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -22412,7 +22412,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:153 msgctxt "extended_tip|separator" msgid "Defines the character to be displayed after the number of the heading or chapter level." -msgstr "Definiuje znak, jaki ma być wyświetlany po numerze na poziomie nagłówka lub rozdziału." +msgstr "Określa znak, jaki ma być wyświetlany po numerze na poziomie nagłówka lub rozdziału." #. SxBrV #: sw/uiconfig/swriter/ui/optcaptionpage.ui:170 @@ -22454,7 +22454,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:292 msgctxt "extended_tip|chapseparator" msgid "Defines the character to be displayed after the number of the heading or chapter level." -msgstr "Definiuje znak, jaki ma być wyświetlany po numerze na poziomie nagłówka lub rozdziału." +msgstr "Określa znak, jaki ma być wyświetlany po numerze na poziomie nagłówka lub rozdziału." #. FmxD9 #: sw/uiconfig/swriter/ui/optcaptionpage.ui:308 @@ -22722,7 +22722,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:273 msgctxt "optcompatpage|label11" msgid "Compatibility options for “%DOCNAME”" -msgstr "Opcje zgodności dla “%DOCNAME”" +msgstr "Opcje zgodności dla „%DOCNAME”" #. u6ih3 #: sw/uiconfig/swriter/ui/optcompatpage.ui:288 @@ -23476,7 +23476,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:562 msgctxt "extended_tip|OptRedLinePage" msgid "Defines the appearance of changes in the document." -msgstr "Ustawienia wyglądu zmian zarejestrowanych w dokumencie." +msgstr "Określa wygląd zmian zarejestrowanych w dokumencie." #. yqco2 #: sw/uiconfig/swriter/ui/opttablepage.ui:60 @@ -23704,7 +23704,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:643 msgctxt "extended_tip|OptTablePage" msgid "Defines the attributes of tables in text documents." -msgstr "Ustawienia atrybutów tabel zawartych w dokumentach tekstowych." +msgstr "Określa atrybuty tabel zawartych w dokumentach tekstowych." #. mq4U3 #: sw/uiconfig/swriter/ui/outlinenumbering.ui:12 @@ -27063,7 +27063,7 @@ msgstr "Aktualizuj" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Wyświetla statystyki dotyczące bieżącego pliku." @@ -29616,7 +29616,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:679 msgctxt "extended_tip|ViewOptionsPage" msgid "Defines the default settings for displaying objects in your text documents and also the default settings for the window elements." -msgstr "Domyślne ustawienia dotyczące wyświetlania obiektów w twoich dokumentach tekstowych zawiera także domyślne ustawienia elementów okna." +msgstr "Określa domyślne ustawienia wyświetlania obiektów w dokumentach tekstowych, a także domyślne ustawienia elementów okna." #. z2dFZ #: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:7 @@ -29628,7 +29628,7 @@ #: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:13 msgctxt "warndatasourcedialog|WarnDataSourceDialog" msgid "The data source “%1” was not found." -msgstr "Źródło danych “%1” nie zostało znalezione." +msgstr "Źródło danych „%1” nie zostało znalezione." #. ThYWH #: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:14 diff -Nru libreoffice-7.3.4/translations/source/pl/swext/mediawiki/help.po libreoffice-7.3.5/translations/source/pl/swext/mediawiki/help.po --- libreoffice-7.3.4/translations/source/pl/swext/mediawiki/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/swext/mediawiki/help.po 2022-07-15 19:12:51.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: 2021-01-31 16:36+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1545157971.000000\n" #. 7EFBE @@ -122,7 +122,7 @@ "par_id4277169\n" "help.text" 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 "Zanim użyjesz rozszerzenia Wiki Publisher, upewnij się, że %PRODUCTNAME używa Java Runtime Environment (JRE). Sprawdź status JRE, wybierając Narzędzia - Opcje - %PRODUCTNAME - Zaawansowane. Upewnij się, że opcja \"Używaj środowiska Java\" jest zaznaczona, i że folder Java został wybrany z dużego pola listy. Jeśli żadna wersja JRE nie jest aktywowana, wybierz JRE 1.4 lub późniejszą i uruchom ponownie %PRODUCTNAME." +msgstr "Zanim użyjesz rozszerzenia Wiki Publisher, upewnij się, że %PRODUCTNAME używa Java Runtime Environment (JRE). Sprawdź status JRE, wybierając Narzędzia - Opcje - %PRODUCTNAME - Zaawansowane. Upewnij się, że opcja „Używaj środowiska Java” jest zaznaczona, i że folder Java został wybrany z dużego pola listy. Jeśli żadna wersja JRE nie jest aktywowana, wybierz JRE 1.4 lub późniejszą i uruchom ponownie %PRODUCTNAME." #. AgmN5 #: wiki.xhp @@ -230,7 +230,7 @@ "par_id292062\n" "help.text" 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 "Opcjonalnie wybierz opcję \"Zapisz hasło\", aby zapamiętać hasło między sesjami. Dostępu do wszystkich zapisanych haseł broni hasło główne. Aby włączyć hasło główne, wybierz opcję Narzędzia – Opcje – %PRODUCTNAME – Bezpieczeństwo. Opcja \"Zapisz hasło\" nie jest dostępna, jeśli hasło główne nie jest włączone." +msgstr "Opcjonalnie wybierz opcję „Zapisz hasło”, aby zapamiętać hasło między sesjami. Dostępu do wszystkich zapisanych haseł broni hasło główne. Aby włączyć hasło główne, wybierz opcję Narzędzia – Opcje – %PRODUCTNAME – Bezpieczeństwo. Opcja „Zapisz hasło” nie jest dostępna, jeśli hasło główne nie jest włączone." #. Afp56 #: wiki.xhp @@ -401,7 +401,7 @@ "par_id3112582\n" "help.text" 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 "Należy wprowadzić adres internetowy serwera wiki w formacie “https://wiki.documentfoundation.org” lub skopiować go z przeglądarki internetowej." +msgstr "Należy wprowadzić adres internetowy serwera wiki w formacie „https://wiki.documentfoundation.org” lub skopiować go z przeglądarki internetowej." #. boKaA #: wikiaccount.xhp @@ -491,7 +491,7 @@ "par_id3735465\n" "help.text" 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 "Natywne hiperłącza dokumentów OpenDocument są zamieniane na \"zewnętrzne\" łącza wiki. Dlatego też wbudowana funkcja łączy dokumentów OpenDocument powinna być wykorzystywana jedynie do tworzenia łączy przekierowujących na inne strony, poza siecią wiki. Do tworzenia odnośników do innych tematów w tej samej domenie wiki służą łącza wiki." +msgstr "Natywne hiperłącza dokumentów OpenDocument są zamieniane na „zewnętrzne” łącza wiki. Dlatego wbudowana funkcja łączy dokumentów OpenDocument powinna być wykorzystywana jedynie do tworzenia łączy przekierowujących na inne strony, poza siecią wiki. Do tworzenia odnośników do innych tematów w tej samej domenie wiki służą łącza wiki." #. ULYGr #: wikiformats.xhp @@ -653,7 +653,7 @@ "par_id1831110\n" "help.text" 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 "Niezależnie od niestandardowych stylów tabel dla obramowania i tła, tabela jest zawsze eksportowana jako \"prettytable\", renderowana przez silnik wiki z prostym obramowaniem i pogrubioną główką." +msgstr "Niezależnie od niestandardowych stylów tabel dla obramowania i tła, tabela jest zawsze eksportowana jako „prettytable”, renderowana przez silnik wiki z prostym obramowaniem i pogrubioną główką." #. kDcRS #: wikiformats.xhp diff -Nru libreoffice-7.3.4/translations/source/pl/uui/messages.po libreoffice-7.3.5/translations/source/pl/uui/messages.po --- libreoffice-7.3.4/translations/source/pl/uui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/uui/messages.po 2022-07-15 19:12:51.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-11-19 15:45+0100\n" -"PO-Revision-Date: 2021-06-04 11:11+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1547393804.000000\n" #. DLY8p @@ -1063,7 +1063,7 @@ "“%2” on %1" msgstr "" "Podaj nazwę użytkownika i hasło do:\n" -"“%2” na %1" +"„%2” na %1" #. kRDiF #: uui/uiconfig/ui/logindialog.ui:212 @@ -1073,7 +1073,7 @@ "“%2” on %1" msgstr "" "Błędna nazwa użytkownika i hasło do:\n" -"“%2” na %1" +"„%2” na %1" #. ARsSU #: uui/uiconfig/ui/logindialog.ui:226 diff -Nru libreoffice-7.3.4/translations/source/pl/vcl/messages.po libreoffice-7.3.5/translations/source/pl/vcl/messages.po --- libreoffice-7.3.4/translations/source/pl/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pl/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-09-12 07:36+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\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%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.12.2\n" "X-POOTLE-MTIME: 1554058136.000000\n" #. k5jTM @@ -1249,7 +1249,7 @@ #: vcl/inc/units.hrc:34 msgctxt "SV_FUNIT_STRINGS" msgid "pt" -msgstr "pkt" +msgstr "pt" #. J6AgQ #: vcl/inc/units.hrc:35 @@ -1865,7 +1865,7 @@ #: vcl/uiconfig/ui/cupspassworddialog.ui:104 msgctxt "cupspassworddialog|text" msgid "Please enter your authentication data for server “%s”" -msgstr "Proszę podać dane uwierzytelniające dla serwera “%s”" +msgstr "Proszę podać dane uwierzytelniające dla serwera „%s”" #. dRSJu #: vcl/uiconfig/ui/cupspassworddialog.ui:148 @@ -2324,169 +2324,169 @@ msgstr "Drukuj wiele stron na jednej kartce." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Niestandardowy" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Określ ile stron ma być drukowanych na jednej kartce." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Strony:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Określ liczbę wierszy." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "przez" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Określ liczbę kolumn." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margines:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Określ margines między pojedynczymi stronami na każdej kartce." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "między stronami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Odległość:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Określ odstęp między drukowanymi stronami a krawędzią papieru." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "do krawędzi arkusza" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Kolejność:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Od lewej do prawej, następnie w dół" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Od góry do dołu, następnie w prawo" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Od góry do dołu, następnie w lewo" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Od prawej do lewej, następnie w dół" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Wybierz kolejność w jakiej strony mają być drukowane." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Rysuj krawędź wokół każdej strony" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Zaznacz, aby narysować obramowanie wokół każdej strony." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broszura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Wybierz, aby wydrukować dokument w formacie broszury." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Podgląd zestawienia" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Zmień układ stron do wydrukowania na każdym arkuszu papieru. Podgląd pokazuje, jak będzie wyglądać każdy ostateczny arkusz papieru." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Wię_cej" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Układ strony" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Ogólne" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Drukuje bieżący dokument, zaznaczenie lub określone strony. Można także ustawić opcje drukowania bieżącego dokumentu." diff -Nru libreoffice-7.3.4/translations/source/pt/chart2/messages.po libreoffice-7.3.5/translations/source/pt/chart2/messages.po --- libreoffice-7.3.4/translations/source/pt/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-18 20:36+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -3602,7 +3602,7 @@ msgstr "Defina o número de linhas para o tipo de gráfico de coluna e linha." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Selecione um tipo de gráfico base." diff -Nru libreoffice-7.3.4/translations/source/pt/cui/messages.po libreoffice-7.3.5/translations/source/pt/cui/messages.po --- libreoffice-7.3.4/translations/source/pt/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-28 18:38+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automático" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alto contraste" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clássico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Especifica o estilo para os ícones das barras de ferramentas e das caixas de diálogo." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_tilo dos ícones:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Adicionar mais ícones através de extensões" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estilo dos ícones" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Necessita de reiniciar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utilizar aceleração por hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Acede diretamente às funcionalidades da placa gráfica para melhorar a exibição no ecrã." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Utilizar sua_vização" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Se suportada, pode ativar ou desativar a suavização de objetos gráficos. Com a suavização ativa, a maioria dos objetos gráficos fica mais suave e com menos artefatos." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Utilizar Skia para renderização" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Impor processamento com Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Tem que reiniciar a aplicação. A ativação impede a utilização do controlador gráfico." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia está ativada." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia está desativada." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Imagens" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "P_ré-visualizar tipos de letra" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra o nome dos tipos de letra que podem ser selecionados no tipo de letra correspondente, por exemplo, tipos de letra na caixa Tipos de letra da barra Formatação." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavi_zação de tipo de letra" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Selecione para suavizar o aspeto do texto no ecrã." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "d_e:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Introduza o tamanho mínimo do tipo de letra a partir do qual será aplicada a suavização." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas dos tipos de letra" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Executar testes gráficos" diff -Nru libreoffice-7.3.4/translations/source/pt/dbaccess/messages.po libreoffice-7.3.5/translations/source/pt/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/pt/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-30 06:56+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563030292.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Criar uma nova bas_e de dados" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Selecione para criar uma base de dados." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Bas_e de dados incorporada:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Abrir uma base de dados e_xistente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Selecione para abrir uma base de dados através da lista de ficheiros recentes ou através da caixa de diálogo." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Recentes:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Selecione a base de dados que pretende abrir através da lista de ficheiros recentes. Clique Terminar para abrir o ficheiro e sair do assistente." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Abrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Abre uma caixa de diálogo para selecionar a base de dados. Clique em Abrir ou em Aceitar na caixa de diálogo para abrir o ficheiro e sair do assistente." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Estabelecer ligação a uma base de dados e_xistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Selecione para criar uma base de dados para uma ligação existente." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Selecione o tipo de base de dados para a ligação existente." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "não estão disponíveis nesta instalação." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "O assistente cria uma ficheiro que contém informações acerca de uma base de dados." diff -Nru libreoffice-7.3.4/translations/source/pt/extensions/messages.po libreoffice-7.3.5/translations/source/pt/extensions/messages.po --- libreoffice-7.3.4/translations/source/pt/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Recarregar formulário" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Obter" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Enviar" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Padrão (reduzido)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Padrão (AA reduzido)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Padrão (AAAA reduzido)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Padrão (extenso)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Não selecionado" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selecionado" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Não definido" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Todos os registos" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registo ativo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Página atual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Não" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sim" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulário principal" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nenhum" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Único" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Intervalo" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Padrão" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Aceitar" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancelar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "A entrada selecionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posição da entrada selecionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Uma linha" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Várias linhas" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Várias linhas com formatação" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nenhuma" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambas" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plano" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Esquerda superior" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centro esquerda" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Esquerda inferior" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Direita superior" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centro direita" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Direita inferior" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Acima à esquerda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Acima ao centro" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Acima à direita" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Abaixo à esquerda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Abaixo ao centro" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Abaixo à direita" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrada" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preservar" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Substituir" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Recolher" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Não" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Manter rácio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajustar ao tamanho" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Da esquerda para a direita" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Da direita para a esquerda" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizar definições do objeto de nível superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nunca" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Ao receber foco" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "No parágrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Como carácter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Na página" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Na moldura" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "No carácter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Na página" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Na célula" diff -Nru libreoffice-7.3.4/translations/source/pt/fpicker/messages.po libreoffice-7.3.5/translations/source/pt/fpicker/messages.po --- libreoffice-7.3.4/translations/source/pt/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-29 15:36+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -216,55 +216,55 @@ msgstr "Data de modificação" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Abrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Re_produzir" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nome de ficheiro:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo de ficheiro:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Apenas leitu_ra" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Guardar com palavra-passe" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensão de ficheiro _automática" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar de_finições de filtros" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Cifrar com chave GPG" diff -Nru libreoffice-7.3.4/translations/source/pt/sc/messages.po libreoffice-7.3.5/translations/source/pt/sc/messages.po --- libreoffice-7.3.4/translations/source/pt/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565988471.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Ver" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_agem" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gem" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenh_o" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenho" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimir" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "Im~primir" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Ferramen~tas" @@ -25702,139 +25702,139 @@ msgstr "Im_agem" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Dispor" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_or" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grelha" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Idioma" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Rever" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comentários" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_parar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Ver" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Desenh_o" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Dispor" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Ver" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_po" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Tip_o de letra" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alinhamento" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Ver" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inserir" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimédia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Moldu_ra" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Dispor" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grelha" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Ver" diff -Nru libreoffice-7.3.4/translations/source/pt/sd/messages.po libreoffice-7.3.5/translations/source/pt/sd/messages.po --- libreoffice-7.3.4/translations/source/pt/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -4173,109 +4173,109 @@ msgstr "~Tabela" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imagem" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gem" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenh_o" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenho" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Modelo" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Modelo" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Ferramen~tas" @@ -7062,109 +7062,109 @@ msgstr "~Tabela" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imagem" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ima~gem" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenh_o" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenho" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimédia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimédia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Modelo" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Modelo" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ferramen_tas" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Ferramen~tas" diff -Nru libreoffice-7.3.4/translations/source/pt/sw/messages.po libreoffice-7.3.5/translations/source/pt/sw/messages.po --- libreoffice-7.3.4/translations/source/pt/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-28 03:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565220047.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Move o estilo do parágrafo selecionado um nível abaixo na hierarquia dos índices." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estilo" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilos" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Cria entradas de índice a partir de estilos de parágrafos específico." @@ -13955,37 +13955,37 @@ msgstr "Trocar bases de dados" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bases de dados em utilização" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "B_ases de dados disponíveis" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Procurar..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Abre uma caixa de diálogo para selecionar um ficheiro de base de dados (*.odb). O ficheiro selecionado é adicionado à lista Bases de Dados Disponíveis." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Utilize o botão Procurar para selecionar um ficheiro de base de dados." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Mostra a lista das bases de dados que estão a ser utilizadas." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Mostra a lista das bases de dados registadas no %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Trocar bases de dados" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Base de dados aplicada ao documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Altera a origem de dados do documento atual." @@ -20073,109 +20073,109 @@ msgstr "Utilizar o _documento atual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Utiliza o atual documento do Writer como base para o documento de impressão em série." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Criar um no_vo documento" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Cria um novo documento do Writer para utilizar na impressão em série." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Começar com um documento _existente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Selecione um documento do Writer existente, para utilizar como base do documento de impressão em série." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Começar com um mod_elo" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selecione o modelo com o qual pretende criar o documento de impressão em série." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Começar co_m um documento guardado recentemente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utilize um documento de impressão em série existente como base para um novo documento de impressão em série." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selecione o documento." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "P_rocurar..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localize o documento do Writer que pretende utilizar e clique em Abrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "P_rocurar..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Abre a caixa de diálogo para selecionar o modelo." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "A origem de dados do documento atual não está registada. Troque a base de dados." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Trocar base de dados" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Selecione o documento inicial para a impressão em série" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Especifique o documento que pretende utilizar como base para o documento de impressão em série." @@ -22318,49 +22318,49 @@ msgstr "Objeto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opções" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Moldar" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperligação" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Contornos" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparência" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Atualizar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Mostra os dados estatísticos sobre o ficheiro." diff -Nru libreoffice-7.3.4/translations/source/pt/vcl/messages.po libreoffice-7.3.5/translations/source/pt/vcl/messages.po --- libreoffice-7.3.4/translations/source/pt/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-18 20:36+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -2324,169 +2324,169 @@ msgstr "Imprimir múltiplas páginas por cada folha de papel." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizado" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Selecione quantas páginas a imprimir por cada folha de papel." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Páginas:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selecione o número de linhas." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "por" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selecione o número de colunas." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margem:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selecione a margem entre páginas individuais de cada folha do papel." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre páginas" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distância:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selecione a margem entre as páginas impressas e o limite do papel." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "até ao limite da folha" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordem:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Da esquerda para a direita, depois baixo" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De cima para baixo, depois direita" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De cima para baixo, depois esquerda" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Da direita para a esquerda, depois baixo" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Escolha a ordem em que serão impressas as páginas." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Desenhar limite em cada página" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Marque para desenhar um contorno em cada página." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brochura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Selecione para imprimir o documento no formato de brochura." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Pré-visualizar agrupamento" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Altera a disposição das páginas a imprimir em cada folha de papel. A pré-visualização mostra como cada folha vai ficar." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Mais" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Disposição de página" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Geral" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprime o documento atual, a seleção atual, ou as páginas que especificar. Também pode definir as opções de impressão do documento atual." diff -Nru libreoffice-7.3.4/translations/source/pt-BR/basctl/messages.po libreoffice-7.3.5/translations/source/pt-BR/basctl/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2021-12-21 15:41+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554843344.000000\n" #. fniWp @@ -1196,7 +1196,7 @@ #: basctl/uiconfig/basicide/ui/managelanguages.ui:95 msgctxt "managelanguages|label2" msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages." -msgstr "O idioma padrão será utilizado se não houver tradução para a interface de usuário do local. Além disso, todos os textos do idioma padrão serão copiados nos recursos de idiomas recém-adicionados." +msgstr "O idioma padrão será utilizado se não houver tradução para a interface de usuário da localidade. Além disso, todos os textos do idioma padrão serão copiados nos recursos de idiomas recém-adicionados." #. WE7kt #: basctl/uiconfig/basicide/ui/managelanguages.ui:122 diff -Nru libreoffice-7.3.4/translations/source/pt-BR/basic/messages.po libreoffice-7.3.5/translations/source/pt-BR/basic/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/basic/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/basic/messages.po 2022-07-15 19:12:51.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-09-20 13:02+0200\n" -"PO-Revision-Date: 2021-10-10 10:10+0000\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Portuguese (Brazil) \n" +"PO-Revision-Date: 2022-07-15 17:25+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-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507245662.000000\n" #. CacXi @@ -476,7 +476,7 @@ #: basic/inc/basic.hrc:102 msgctxt "RID_BASIC_START" msgid "The current locale setting is not supported by the given object." -msgstr "A configuração do local atual não é suportada pelo objeto dado." +msgstr "A configuração da localidade atual não é suportada pelo objeto dado." #. AoqGh #: basic/inc/basic.hrc:103 diff -Nru libreoffice-7.3.4/translations/source/pt-BR/chart2/messages.po libreoffice-7.3.5/translations/source/pt-BR/chart2/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-12 07:36+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" @@ -3602,7 +3602,7 @@ msgstr "Defina o número de linhas para o tipo de gráfico de colunas e linhas." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Selecione um tipo de gráfico básico." diff -Nru libreoffice-7.3.4/translations/source/pt-BR/cui/messages.po libreoffice-7.3.5/translations/source/pt-BR/cui/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-02-04 19:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565304299.000000\n" #. GyY9M @@ -2152,7 +2152,7 @@ #: cui/inc/tipoftheday.hrc:53 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 "Para iniciar com um perfil de usuário novo e temporário, ou para consertar um perfil do %PRODUCTNAME com defeito, utilize o menu Ajuda > Reiniciar em modo seguro." +msgstr "Para iniciar com um perfil de usuário novo e temporário, ou para consertar um perfil do %PRODUCTNAME com defeito, utilize o menu Ajuda ▸ Reiniciar em modo seguro." #. Hv5Ff #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html @@ -2196,7 +2196,7 @@ #: cui/inc/tipoftheday.hrc:60 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Optimize your table layout with Table ▸ Size ▸ Distribute Rows / Columns Evenly." -msgstr "Otimize sua tabela com Tabela > Tamanho > Distribuir linhas / colunas uniformemente." +msgstr "Otimize sua tabela com Tabela ▸ Tamanho ▸ Distribuir linhas / colunas uniformemente." #. prXEA #: cui/inc/tipoftheday.hrc:61 @@ -2250,20 +2250,20 @@ #: cui/inc/tipoftheday.hrc:69 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To distribute some text in multi-columns select the text and apply Format ▸ Columns." -msgstr "Para distribuir texto em multicolunas, selecione o texto e aplique Formatar > Colunas." +msgstr "Para distribuir texto em multicolunas, selecione o texto e aplique Formatar ▸ Colunas." #. hr7ym #: cui/inc/tipoftheday.hrc:70 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use View ▸ Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background." -msgstr "Utilize Exibir > Destaque de valor para mostrar o conteúdo das células em cores: Texto/preto, Fórmulas/verde, Números/azul, Células protegidas/fundo cinza." +msgstr "Utilize Exibir ▸ Destaque de valor para mostrar o conteúdo das células em cores: Texto/preto, Fórmulas/verde, Números/azul, Células protegidas/fundo cinza." #. kKdqp #. local help missing #: cui/inc/tipoftheday.hrc:71 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create different master pages in a presentation template: View ▸ Master Slide and Slide ▸ New Master (or per toolbar or right click in slide pane)." -msgstr "Crie páginas mestres diferentes num modelo de apresentação: Exibir > Slide mestre e Slide > Novo mestre (ou na barra de ferramenta ou clicando com o botão direito no painel de slides)." +msgstr "Crie páginas mestres diferentes num modelo de apresentação: Exibir ▸ Slide mestre e Slide ▸ Novo mestre (ou na barra de ferramenta ou clicando com o botão direito no painel de slides)." #. b3KPF #: cui/inc/tipoftheday.hrc:72 @@ -2275,13 +2275,13 @@ #: cui/inc/tipoftheday.hrc:73 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Display photos or images with different shapes in Writer. Insert and select shape, then Insert ▸ Image. To adjust image, right-click on selected shape and choose Area." -msgstr "Mostre fotos ou figuras com várias formas no Writer. Insira e selecione uma forma, e então Inserir > Figura. Para ajustar uma figura, clique no direito na forma selecionada e escolha Área." +msgstr "Mostre fotos ou figuras com várias formas no Writer. Insira e selecione uma forma, e então Inserir ▸ Figura. Para ajustar uma figura, clique no direito na forma selecionada e escolha Área." #. si5Y9 #: cui/inc/tipoftheday.hrc:74 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Page/Slide ▸ Properties ▸ “Fit object to paper format” in Draw/Impress to resize the objects so that they fit on your chosen paper format." -msgstr "Utilize Página/Slide > Propriedades > Ajustar objeto ao formato do papel no Draw/Impress para redimensionar os objetos para caberem no formato de papel escolhido." +msgstr "Utilize Página/Slide ▸ Propriedades ▸ Ajustar objeto ao formato do papel no Draw/Impress para redimensionar os objetos para caberem no formato de papel escolhido." #. hj7H4 #: cui/inc/tipoftheday.hrc:75 @@ -2293,13 +2293,13 @@ #: cui/inc/tipoftheday.hrc:76 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In a Draw page, use “-” to zoom out; “+” to zoom in." -msgstr "Numa página do Draw, utilize '-' para diminuir; '+' para ampliar a página." +msgstr "Numa página do Draw, utilize “-” para diminuir e “+” para ampliar a página." #. PJFH2 #: cui/inc/tipoftheday.hrc:77 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link." -msgstr "Quer mostrar o conteúdo de outro documento dentro do seu? Utilize Inserir > Seção e selecione Vincular." +msgstr "Quer mostrar o conteúdo de outro documento dentro do seu? Utilize Inserir ▸ Seção e selecione Vincular." #. 6uYph #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404 @@ -2344,7 +2344,7 @@ #: cui/inc/tipoftheday.hrc:84 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to keep a part of an editable document as read-only? Insert ▸ Section. Add text to the section, then right-click “Edit Section” and check “Protect”." -msgstr "Quer manter uma parte de um documento editável em só leitura? Inserir > Seção. Adicione texto à seção, e clique no botão direito \"Editar seção\" e marque \"Proteger\"." +msgstr "Quer manter uma parte de um documento editável em só leitura? Inserir ▸ Seção. Adicione texto à seção, e clique no botão direito “Editar seção” e marque “Proteger”." #. KtRU8 #: cui/inc/tipoftheday.hrc:85 @@ -2356,7 +2356,7 @@ #: cui/inc/tipoftheday.hrc:86 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Best way to fix bad-looking MS Word table cells via Table ▸ Size ▸ Optimal Row Height / Column Width." -msgstr "A melhor maneira de consertar tabelas desconfiguradas do MS Word é via Tabela > Tamanho > Altura / Largura ideal da linha / coluna" +msgstr "A melhor maneira de consertar tabelas desconfiguradas do MS Word é via Tabela ▸ Tamanho ▸ Altura / Largura ideal da linha / coluna." #. HEfCq #: cui/inc/tipoftheday.hrc:87 @@ -2374,7 +2374,7 @@ #: cui/inc/tipoftheday.hrc:89 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To repeat rows/columns on every pages use Format ▸ Print Ranges ▸ Edit." -msgstr "Para repetir linhas e colunas em cada página utilize Formatar > Intervalos de impressão > Editar." +msgstr "Para repetir linhas e colunas em cada página utilize Formatar ▸ Intervalos de impressão ▸ Editar." #. WjiDZ #: cui/inc/tipoftheday.hrc:90 @@ -2392,7 +2392,7 @@ #: cui/inc/tipoftheday.hrc:92 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Insert your metadata in your document with Insert ▸ Fields ▸ More Fields… ▸ Document or DocInformation." -msgstr "Insira seus metadados no seu documento com Inserir > Campos > Mais campos... > Documento ou DocInformation." +msgstr "Insira seus metadados no seu documento com Inserir ▸ Campos ▸ Mais campos... ▸ Documento ou DocInformation." #. FHorg #: cui/inc/tipoftheday.hrc:93 @@ -2435,13 +2435,13 @@ #: cui/inc/tipoftheday.hrc:99 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to count words for just one particular paragraph style? Use Edit ▸ Find and Replace, click Paragraph Styles, select the style in Find, and click Find All. Read the result in the status bar." -msgstr "Quer contar as palavras de um estilo especial de parágrafo? Utilize Editar > Localizar e substituir, clique em Estilos de parágrafo, selecione o estilo e clique Localizar todos. Veja a contagem na barra de Status." +msgstr "Quer contar as palavras de um estilo especial de parágrafo? Utilize Editar ▸ Localizar e substituir, clique em Estilos de parágrafo, selecione o estilo e clique Localizar todos. Veja a contagem na barra de Status." #. VBCF7 #: cui/inc/tipoftheday.hrc:100 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File ▸ Export as PDF." -msgstr "Produza um PDF totalmente personalizado com formato exato, compressão de figuras, anotações, direitos de acesso, senha, etc... via Arquivo > Exportar como PDF." +msgstr "Produza um PDF totalmente personalizado com formato exato, compressão de figuras, anotações, direitos de acesso, senha, etc... via Arquivo ▸ Exportar como PDF." #. XWchY #: cui/inc/tipoftheday.hrc:102 @@ -2453,7 +2453,7 @@ #: cui/inc/tipoftheday.hrc:104 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Construct your own 2D shapes in Draw. Select two or more objects, and explore possibilities with Shape ▸ Combine, Shape ▸ Merge, Shape ▸ Subtract, and Shape ▸ Intersect." -msgstr "Construa suas próprias formas 2D no Draw. Selecione dois ou mais objetos, e explore as possibilidades com Formas > Combinar, Formas > Mesclar, Formas > Subtrair e Formas > Interseção." +msgstr "Construa suas próprias formas 2D no Draw. Selecione dois ou mais objetos, e explore as possibilidades com Formas ▸ Combinar, Formas ▸ Mesclar, Formas ▸ Subtrair e Formas ▸ Interseção." #. f6Lan #: cui/inc/tipoftheday.hrc:105 @@ -2465,7 +2465,7 @@ #: cui/inc/tipoftheday.hrc:106 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can toggle between the field names and the actual value with View ▸ Fields Names (or %MOD1+F9)." -msgstr "Alterne os nomes de campo com seu valor real com Exibir > Nomes de campos (ou %MOD1+F9)." +msgstr "Alterne os nomes de campo com seu valor real com Exibir ▸ Nomes de campos (ou %MOD1+F9)." #. 5ZVTy #: cui/inc/tipoftheday.hrc:107 @@ -2477,13 +2477,13 @@ #: cui/inc/tipoftheday.hrc:108 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To enable macro recording, check Tools ▸ Options ▸ %PRODUCTNAME ▸ Advanced ▸ Enable macro recording." -msgstr "Para ativar a gravação de macros, marque Ferramentas > Opções > %PRODUCTNAME > Avançado > Ativar gravação de macros." +msgstr "Para ativar a gravação de macros, marque Ferramentas ▸ Opções ▸ %PRODUCTNAME ▸ Avançado ▸ Ativar gravação de macros." #. EnQur #: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to insert a placeholder for an image in a Writer template? Use Insert ▸ Fields ▸ More fields, click Functions tab, choose PlaceHolder for Type and Image for Format." -msgstr "Quer inserir um espaço reservado para uma figura num modelo do Writer? Utilize Inserir > Campos > Mais campos, clique na aba Funções, escolha Espaço reservado para o Tipo e Figura para o Formato." +msgstr "Quer inserir um espaço reservado para uma figura num modelo do Writer? Utilize Inserir ▸ Campos ▸ Mais campos, clique na aba Funções, escolha Espaço reservado para o Tipo e Figura para o Formato." #. sSeTz #: cui/inc/tipoftheday.hrc:110 @@ -4278,7 +4278,7 @@ #: cui/uiconfig/ui/aboutdialog.ui:243 msgctxt "aboutdialog|lbLocale" msgid "Locale:" -msgstr "Local:" +msgstr "Localidade:" #. SFbP2 #: cui/uiconfig/ui/aboutdialog.ui:275 @@ -14924,13 +14924,13 @@ #: cui/uiconfig/ui/opthtmlpage.ui:383 msgctxt "opthtmlpage|numbersenglishus" msgid "_Use '%ENGLISHUSLOCALE' locale for numbers" -msgstr "_Utilizar configuração '%ENGLISHUSLOCALE' para números" +msgstr "_Utilizar localidade '%ENGLISHUSLOCALE' para números" #. c4j5A #: cui/uiconfig/ui/opthtmlpage.ui:392 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 "Se desmarcado, os números serão interpretados de acordo com a configuração presente em Configurações de idioma - Idioma - Configuração regional na caixa de diálogo das Opções. Se for selecionado, os números serão interpretados como a localização 'Inglês (EUA)'." +msgstr "Se desmarcado, os números serão interpretados de acordo com a configuração presente em Configurações de idioma - Idioma - Configuração da localidade na caixa de diálogo das Opções. Se for selecionado, os números serão interpretados como a localidade 'Inglês (EUA)'." #. Fnsdh #: cui/uiconfig/ui/opthtmlpage.ui:407 @@ -15404,7 +15404,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:385 msgctxt "optlanguagespage|localesettingFT" msgid "Locale setting:" -msgstr "Configuração regional:" +msgstr "Configuração da localidade:" #. Zyao3 #: cui/uiconfig/ui/optlanguagespage.ui:399 @@ -15428,7 +15428,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:445 msgctxt "extended_tip|localesetting" msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure." -msgstr "Especifica as configurações de região das configurações do país. Isso influencia as definições de numeração, moeda e unidades de medida." +msgstr "Especifica as configurações de localidade das configurações do país. Esta opção influencia as definições de numeração, moeda e unidades de medida." #. XqESm #: cui/uiconfig/ui/optlanguagespage.ui:462 @@ -15440,13 +15440,13 @@ #: cui/uiconfig/ui/optlanguagespage.ui:481 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 "Especifica os formatos para aceitação de datas na configuração regional escolhida. Os valores introduzidos nas planilhas do Calc e nas células de tabelas do Writer têm que ser validados antes de serem aceitos como uma data válida." +msgstr "Especifica os formatos para aceitação de datas na localidade escolhida. Os valores introduzidos nas planilhas do Calc e nas células de tabelas do Writer devem ser validados nos padrões de aceitação de datas da localidade antes de serem aceitos como uma data válida." #. WoNAA #: cui/uiconfig/ui/optlanguagespage.ui:492 msgctxt "optlanguagespage|decimalseparator" msgid "_Same as locale setting ( %1 )" -msgstr "Igual à co_nfiguração regional ( %1 )" +msgstr "Igual à configuração da _localidade ( %1 )" #. G5VXy #: cui/uiconfig/ui/optlanguagespage.ui:500 @@ -15464,7 +15464,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:529 msgctxt "extended_tip|OptLanguagesPage" msgid "Defines the default languages and some other locale settings for documents." -msgstr "Define os idiomas padrão e algumas configurações locais de documentos." +msgstr "Define os idiomas padrão e algumas configurações da localidade para documentos." #. CgUDR #: cui/uiconfig/ui/optlingupage.ui:130 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automático" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alto-contraste" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clássico" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Especifica o estilo de ícone da barra de ferramentas e caixa de diálogo." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Es_tilo dos ícones:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Adicionar mais temas de ícones via extensões" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Estilo dos ícones" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "É necessário reiniciar" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Utilizar aceleração de hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Acessa diretamente as funções de hardware da placa gráfica do seu computador para melhorar a exibição da tela." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Utilizar sua_vização" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Quando houver suporte, pode-se ativar e desativar a suavização (antialias) das figuras. Com a suavização ativada, a exibição de maioria dos objetos gráficos parece mais suave e com menos artefatos (por exemplo, linhas serrilhadas)." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Utilizar o Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Forçar a representação com software Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "É preciso reiniciar. Ativar este recurso impede de utilizar drivers gráficos." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "O Skia está ativado." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "O Skia está desativado." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Saída gráfica" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Most_rar visualização das fontes" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Mostra os nomes das fontes selecionáveis exibidos na própria fonte, por exemplo, as fontes na caixa Fontes na barra Formatação." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Suavi_zação da fonte de tela" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Selecione para suavizar a aparência do texto na tela." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_De:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Insira o menor tamanho de fonte para aplicar a suavização (antialias)." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listas de fontes" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Testar saída gráfica" diff -Nru libreoffice-7.3.4/translations/source/pt-BR/dbaccess/messages.po libreoffice-7.3.5/translations/source/pt-BR/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-11-17 12:37+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562246096.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Criar um banco d_e dados" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Selecione para criar um banco de dados." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Banco d_e dados incorporado:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Abrir um _arquivo de banco de dados existente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Selecione para abrir um arquivo de banco de dados numa lista de arquivos usados recentemente ou numa caixa de diálogo de seleção de arquivo." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Usado _recentemente:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Selecione um arquivo de banco de dados a ser aberto a partir da lista de arquivos usados recentemente. Clique em Concluir para abrir o arquivo imediatamente e sair do assistente." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Abrir" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Abre uma caixa de diálogo de seleção de arquivo, para selecionar um arquivo de banco de dados. Clique em Abrir ou em OK na caixa de diálogo de seleção de arquivo para abrir o arquivo imediatamente e sair do assistente." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Conectar a um banco de dados e_xistente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Selecione para criar um documento de banco de dados para uma conexão com um banco de dados existente." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Selecione o tipo de banco de dados para a conexão com o banco de dados existente." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ " estão disponíveis nesta instalação." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "O Assistente de banco de dados cria um arquivo contendo informações sobre um banco de dados." diff -Nru libreoffice-7.3.4/translations/source/pt-BR/extensions/messages.po libreoffice-7.3.5/translations/source/pt-BR/extensions/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Atualizar formulário" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Obter" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Enviar" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Texto" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Padrão (curto)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Padrão (AA curto)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Padrão (AAAA curto)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Padrão (longo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Não selecionado" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selecionado" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Não definido" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Todos os registros" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Registro ativo" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Página atual" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Não" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sim" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formulário pai" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nenhum" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Único" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multi" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Intervalo" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Padrão" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Cancelar" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajuda" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "A entrada selecionada" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Posição da entrada selecionada" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Linha única" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Várias linhas" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Várias linhas com formatação" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nenhum" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambos" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plano" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Em cima à esquerda" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Centralizado à esquerda" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Embaixo à esquerda" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Em cima à direita" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Centralizado à direita" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Embaixo à direita" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Acima à esquerda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Acima centralizado" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Acima à direita" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Abaixo à esquerda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Abaixo centralizado" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Abaixo à direita" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centralizado" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preservar" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Substituir" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Recolher" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Não" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Manter proporção" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ajustar ao tamanho" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Da esquerda para direita" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Da direita para esquerda" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizar configurações do objeto superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nunca" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Ao receber foco" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Sempre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "No parágrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Como caractere" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Na página" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "No quadro" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "No caractere" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Na página" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Na célula" diff -Nru libreoffice-7.3.4/translations/source/pt-BR/fpicker/messages.po libreoffice-7.3.5/translations/source/pt-BR/fpicker/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-25 14:24+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" @@ -216,55 +216,55 @@ msgstr "Data de modificação" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Abrir" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Re_produzir" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nome do arquivo:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo de arquivo:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Só _leitura" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Salvar com senha" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensão _automática do nome de arquivo" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editar definições do filtro" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Criptografar com chave GPG" diff -Nru libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/auxiliary.po libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/auxiliary.po --- libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/auxiliary.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/auxiliary.po 2022-07-15 19:12:51.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-11-25 19:33+0100\n" -"PO-Revision-Date: 2021-10-21 16:36+0000\n" +"PO-Revision-Date: 2022-07-01 10:09+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.12.2\n" "X-POOTLE-MTIME: 1562247350.000000\n" #. fEEXD @@ -23,7 +23,7 @@ "07\n" "help_section.text" msgid "Macros and Scripting" -msgstr "Macros e criação de scripts" +msgstr "Macros e scripts" #. pDA36 #: sbasic.tree diff -Nru libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po 2022-07-15 19:12:51.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: 2021-12-20 13:20+0100\n" -"PO-Revision-Date: 2021-12-29 05:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559388696.000000\n" #. yzYVt @@ -59,7 +59,7 @@ "par_id3156443\n" "help.text" msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator." -msgstr "Ao converter números, o $[officename] Basic utiliza as configurações de locale do sistema para determinar o tipo de separador decimal e de milhar." +msgstr "Ao converter números, o $[officename] Basic utiliza as configurações de localidade do sistema para determinar o tipo de separador decimal e de milhar." #. NfzqE #: 00000002.xhp @@ -203,7 +203,7 @@ "par_id3153381\n" "help.text" msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages. In Basic format codes, the decimal point (.) is always used as placeholder for the decimal separator defined in your locale and will be replaced by the corresponding character." -msgstr "Você pode definir o local utilizado para controlar o formato de números, datas e moedas no $[officename] Basic em %PRODUCTNAME - PreferênciasFerramentas - Opções - Configurações de idioma - Idiomas. Nos códigos de formato do Basic, o ponto decimal (.) sempre será utilizado como espaço reservado para o separador decimal em seu local e será substituído pelo caractere correspondente." +msgstr "Você pode definir o local utilizado para controlar o formato de números, datas e moedas no $[officename] Basic em %PRODUCTNAME - PreferênciasFerramentas - Opções - Configurações de idioma - Idiomas. Nos códigos de formato do Basic, o ponto decimal (.) sempre será utilizado como espaço reservado para o separador decimal definido para sua localidade e será substituído pelo caractere correspondente." #. 6NcoV #: 00000003.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 "O mesmo se aplica para as configurações de locale para data, hora e formatos monetários. O código de formatação do Basic será interpretado e exibido de acordo com suas configurações de locale." +msgstr "O mesmo se aplica para as configurações de localidade para data, hora e formatos monetários. O código de formatação do Basic será interpretado e exibido de acordo com suas configurações de localidade." #. 3P4FS #: 00000003.xhp @@ -1427,7 +1427,7 @@ "par_id3150142\n" "help.text" msgid "447 The current locale setting is not supported by the given object" -msgstr "447 A definição do local atual não é suportada pelo objeto dado" +msgstr "447 A definição da localidade atual não é suportada pelo objeto dado" #. B5qgM #: 00000003.xhp @@ -10607,7 +10607,7 @@ "par_id6618854\n" "help.text" msgid "Numbers with decimal delimiters are converted according to the locale settings." -msgstr "Números com delimitadores decimais são convertidos de acordo com as configurações locais." +msgstr "Números com delimitadores decimais são convertidos de acordo com as configurações da localidade." #. ejANh #: 03020301.xhp @@ -13334,7 +13334,7 @@ "par_id351619718411921\n" "help.text" msgid "FirstDayOfWeek: Integer value indicating which weekday should be considered as the first day of the week. The default value is 0, meaning that the system locale settings are used to determine the first day of the week." -msgstr "PrimeiroDiaDaSemana: valor inteiro que indica qual dia da semana deve ser considerado como primeiro dia da semana. O valor padrão é 0, que significa que as definições regionais são usadas para determinar o primeiro dia da semana." +msgstr "PrimeiroDiaDaSemana: valor inteiro que indica qual dia da semana deve ser considerado como primeiro dia da semana. O valor padrão é 0, que significa que as definições da localidade são usadas para determinar o primeiro dia da semana." #. rEWdW #: 03030105.xhp @@ -13379,7 +13379,7 @@ "par_id521619718818972\n" "help.text" msgid "Use system locale settings" -msgstr "Utilizar definições regionais do sistema" +msgstr "Utilizar definições de localidade do sistema" #. EWo2z #: 03030105.xhp @@ -13901,7 +13901,7 @@ "par_id3148553\n" "help.text" msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the CDateToIso Function to convert such date number to a string representation in the proleptic Gregorian calendar." -msgstr "Ao converter um número de série de data para uma sequência de caracteres imprimível, por exemplo, para o comando Print ou MsgBox, o calendário padrão da localidade é usado e, nesse 1582-10-15, a data de corte pode mudar para o calendário juliano, o que pode resultar em uma data diferente Sendo exibido do que o esperado. Utilize o Função CDateToIso para converter esse número de data para uma representação de cadeia no calendário gregoriano proléptico." +msgstr "Ao converter um número de série de data para uma sequência de caracteres imprimível, por exemplo, para o comando Print ou MsgBox, o calendário padrão da localidade é usado e, nesse 1582-10-15, a data de corte pode mudar para o calendário juliano, o que pode resultar em uma data diferente sendo exibida do que a esperada. Utilize o Função CDateToIso para converter esse número de data para uma representação de cadeia no calendário gregoriano proléptico." #. xDmcF #: 03030108.xhp @@ -15521,7 +15521,7 @@ "hd_id641619720735711\n" "help.text" msgid "Now Function" -msgstr "Função Nova" +msgstr "Função Now" #. TdbJF #: 03030203.xhp @@ -24305,7 +24305,7 @@ "par_idN10545\n" "help.text" msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols." -msgstr "Converte uma expressão de string ou expressão numérica em uma expressão de moeda. As configurações locais são usadas para separadores decimais e símbolos de moeda." +msgstr "Converte uma expressão de string ou expressão numérica em uma expressão de moeda. As configurações de localidade são usadas para separadores decimais e símbolos de moeda." #. 8ZHR9 #: 03100050.xhp @@ -25106,7 +25106,7 @@ "par_id811638383475418\n" "help.text" msgid "Decimal numbers (with optional leading sign) using decimal and group separators of locale configured in $[officename] (group separators are accepted in any position), with optional exponential notation like \"-12e+1\" (where an optionally signed whole decimal number after e or E or d or D defines power of 10);" -msgstr "Números decimais (com sinal opcional na frente) usando separadores decimais e separadores de grupo configurados para a região no $[officename] (separadores de grupo são aceitos em qualquer posição), com notação exponencial opcional da forma \"-12e+1\" (onde um número decimal inteiro com sinal opcional após e ou E ou d ou D, define a potência de 10);" +msgstr "Números decimais (com sinal opcional na frente) usando separadores decimais e separadores de grupo configurados para a localidade no $[officename] (separadores de grupo são aceitos em qualquer posição), com notação exponencial opcional da forma \"-12e+1\" (onde um número decimal inteiro com sinal opcional após e ou E ou d ou D, define a potência de 10);" #. GZWV7 #: 03100500.xhp @@ -37123,7 +37123,7 @@ "par_id631542195798758\n" "help.text" msgid "numDigitsAfterDecimal: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used." -msgstr "numDigitsAfterDecimal: Opcional. Um valor numérico que especifica o número de dígitos a ser exibido após a decimal. Se omitido, o padrão é -1, significando que a configuração padrão do local para a interface do usuário deve ser usada." +msgstr "numDigitsAfterDecimal: Opcional. Um valor numérico que especifica o número de dígitos a ser exibido após a decimal. Se omitido, o padrão é -1, significando que a configuração padrão da localidade para a interface do usuário deve ser usada." #. BN3xY #: 03170010.xhp @@ -37159,7 +37159,7 @@ "par_id241542199046808\n" "help.text" msgid "vbUseDefaults or -2: Use the user interface locale settings. This is the default when omitted." -msgstr "vbUseDefaults ou -2: Use as configurações regionais da interface do usuário. Este é o padrão se omitido." +msgstr "vbUseDefaults ou -2: Use as configurações de localidade da interface do usuário. Este é o padrão se omitido." #. CyTLd #: 03170010.xhp diff -Nru libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.4/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2022-07-15 19:12:51.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-11-24 12:03+0100\n" -"PO-Revision-Date: 2022-03-05 08:39+0000\n" +"PO-Revision-Date: 2022-06-15 21:00+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1558060039.000000\n" #. sZfWF @@ -16790,7 +16790,7 @@ "par_id3149351\n" "help.text" msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document." -msgstr "Especifica as opções de layout para notas de rodapé, incluindo a linha que separa a nota do corpo principal do documento." +msgstr "Especifica as opções de leiaute para notas de rodapé, incluindo a linha que separa a nota do corpo principal do documento." #. aK8CJ #: 05040600.xhp @@ -18194,7 +18194,7 @@ "par_idN10A92\n" "help.text" msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option." -msgstr "Mantém o objeto selecionado dentro dos limites de layout do texto no qual o objeto é ancorado. Para posicionar o objeto selecionado em algum lugar do documento, não selecione esta opção." +msgstr "Mantém o objeto selecionado dentro dos limites de leiaute do texto no qual o objeto é ancorado. Para posicionar o objeto selecionado em algum lugar do documento, não selecione esta opção." #. SZu8o #: 05060100.xhp @@ -27977,7 +27977,7 @@ "par_idN10553\n" "help.text" msgid "Specify the recipients for the mail merge document as well as the layout of the address block." -msgstr "Especifique os destinatários do documento de mala direta, bem como o layout do bloco de endereço." +msgstr "Especifique os destinatários do documento de mala direta, bem como o leaiute do bloco de endereço." #. YrLKv #: mailmerge03.xhp @@ -31046,7 +31046,7 @@ "par_id300920161429347135\n" "help.text" msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background." -msgstr "Páginas de rosto são páginas no início do documento que resume as informações da publicação, tais como o título, o nome do autor etc.. Essas páginas têm um layout diferente das demais páginas do documento, porque elas podem não possuir numeração de página, algumas vezes, cabeçalho e rodapé diferentes e também diferentes configurações de margens e plano de fundo." +msgstr "Páginas de rosto são páginas no início do documento que resume as informações da publicação, tais como o título, o nome do autor etc.. Essas páginas têm um leiaute diferente das demais páginas do documento, porque elas podem não possuir numeração de página, algumas vezes, cabeçalho e rodapé diferentes e também diferentes configurações de margens e plano de fundo." #. sw2GX #: title_page.xhp diff -Nru libreoffice-7.3.4/translations/source/pt-BR/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/pt-BR/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/pt-BR/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/readlicense_oo/docs.po 2022-07-15 19:12:51.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: 2021-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-09-13 16:36+0000\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Portuguese (Brazil) \n" +"PO-Revision-Date: 2022-07-15 17:24+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-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542050091.000000\n" #. q6Gg3 @@ -554,7 +554,7 @@ "linuxlangpackA\n" "readmeitem.text" msgid "Now start one of the ${PRODUCTNAME} applications - Writer, for instance. Go to the Tools menu and choose Options. In the Options dialog box, click on \"Language Settings\" and then click on \"Languages\". Dropdown the \"User interface\" list and select the language you just installed. If you want, do the same thing for the \"Locale setting\", the \"Default currency\", and the \"Default languages for documents\"." -msgstr "Inicie agora uma das aplicações do ${PRODUCTNAME} - por exemplo o Writer. Vá para o menu Ferramentas - Opções. Na caixa de diálogo das Opções, clique em \"Configurações de idioma\" e clique em \"Idiomas\". Na lista \"Interface do usuário\" selecione o idioma recém-instalado. Se desejar, faça o mesmo para as \"Configurações do local\", a \"Moeda padrão\", e o \"Idioma padrão para documentos\"." +msgstr "Inicie agora uma das aplicações do ${PRODUCTNAME} - por exemplo o Writer. Vá para o menu Ferramentas - Opções. Na caixa de diálogo das Opções, clique em \"Configurações de idioma\" e clique em \"Idiomas\". Na lista \"Interface do usuário\" selecione o idioma recém-instalado. Se desejar, faça o mesmo para as \"Configurações da localidade\", a \"Moeda padrão\", e o \"Idioma padrão para documentos\"." #. ntGdw #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/pt-BR/sc/messages.po libreoffice-7.3.5/translations/source/pt-BR/sc/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-02-04 19:39+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562678441.000000\n" #. kBovX @@ -2601,7 +2601,7 @@ #: sc/inc/globstr.hrc:438 msgctxt "STR_OPTIONS_WARN_SEPARATORS" msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values." -msgstr "Como as configurações atuais do separador de fórmula conflita com o local, os separadores de fórmula foram redefinidos para seus valores padrão." +msgstr "Como as configurações atuais do separador de fórmula conflita com a localidade, os separadores de fórmula foram redefinidos para seus valores padrão." #. QMTkA #: sc/inc/globstr.hrc:439 @@ -15222,7 +15222,7 @@ #: sc/inc/scfuncs.hrc:3751 msgctxt "SC_OPCODE_FIXED" msgid "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed." -msgstr "Separador de milhares. Se 0 ou omitido, o separador de grupo do local será utilizado, senão o separador é suprimido." +msgstr "Separador de milhares. Se 0 ou omitido, o separador de grupo da localidade será utilizado, senão o separador é suprimido." #. nxnkq #: sc/inc/scfuncs.hrc:3757 @@ -15763,7 +15763,7 @@ #: sc/inc/scfuncs.hrc:3923 msgctxt "SC_OPCODE_NUMBERVALUE" msgid "Converts text to a number, in a locale-independent way." -msgstr "Converte texto em um número, de forma independente do local." +msgstr "Converte texto em um número, de forma independente da localidade." #. cyLMe #: sc/inc/scfuncs.hrc:3924 @@ -23051,7 +23051,7 @@ #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:158 msgctxt "formulacalculationoptions|comboConversion" msgid "Convert also locale dependent" -msgstr "Converter dados que dependem da configuração regional" +msgstr "Converter dados que dependem da localidade" #. F7tji #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:168 @@ -25253,97 +25253,97 @@ msgstr "E~xibir" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "~Figura" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Fi~gura" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenha_r" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenhar" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Multimídia" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Multimídia" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Imprimir" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Imprimir" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ferramentas" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "Fe~rramentas" @@ -25702,139 +25702,139 @@ msgstr "~Figura" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Dispor" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_or" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grade" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Idioma" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revisão" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Anotaçõe_s" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Com_parar" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Exibir" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Desenha_r" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editar" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Dispor" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Exibir" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_po" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Fonte" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Alinhamento" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Exibir" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Inserir" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Multimídia" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Quadro" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Dispor" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grade" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Exibir" @@ -30643,7 +30643,7 @@ #: sc/uiconfig/scalc/ui/sortkey.ui:50 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 seleção desde o valor mais baixo para o valor mais alto. As regras de ordenação são definidas pela configuração regional. Estas regras podem ser configuradas em Dados → Ordenar… → Opções." +msgstr "Ordena a seleção desde o valor mais baixo para o valor mais alto. As regras de ordenação são definidas pela localidade. Estas regras podem ser configuradas em Dados - Ordenar - Opções." #. TfqAv #: sc/uiconfig/scalc/ui/sortkey.ui:61 diff -Nru libreoffice-7.3.4/translations/source/pt-BR/sd/messages.po libreoffice-7.3.5/translations/source/pt-BR/sd/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" @@ -4173,109 +4173,109 @@ msgstr "~Tabela" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Figura" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Fi~gura" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenha_r" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenhar" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimídia" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimídia" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestre" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Mestre" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ferramentas" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Fe~rramentas" @@ -7062,109 +7062,109 @@ msgstr "~Tabela" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Figura" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Fi~gura" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Desenha_r" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Desenhar" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objeto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objeto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimídia" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimídia" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulário" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulário" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Mestre" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Mestre" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_xtensão" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~xtensão" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Ferramentas" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Fe~rramentas" diff -Nru libreoffice-7.3.4/translations/source/pt-BR/svx/messages.po libreoffice-7.3.5/translations/source/pt-BR/svx/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2021-11-23 08:10+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.12.2\n" "X-POOTLE-MTIME: 1562678634.000000\n" #. 3GkZj @@ -14579,7 +14579,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:575 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 "Renderiza a superfície 3D de acordo com a forma do objeto. Por exemplo, uma forma circular será renderizada com uma superfície esférica." +msgstr "Representa a superfície 3D de acordo com a forma do objeto. Por exemplo, uma forma circular será representada com uma superfície esférica." #. Fc9DB #: svx/uiconfig/ui/docking3deffects.ui:589 @@ -14591,7 +14591,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:594 msgctxt "docking3deffects|extended_tip|flat" msgid "Renders the 3D surface as polygons." -msgstr "Renderiza a superfície 3D como polígono." +msgstr "Representa a superfície 3D como polígonos." #. aLmTz #: svx/uiconfig/ui/docking3deffects.ui:608 @@ -14603,7 +14603,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:613 msgctxt "docking3deffects|extended_tip|spherical" msgid "Renders a smooth 3D surface." -msgstr "Renderiza uma superfície 3D suave." +msgstr "Representa uma superfície 3D suave." #. a9hYr #: svx/uiconfig/ui/docking3deffects.ui:627 diff -Nru libreoffice-7.3.4/translations/source/pt-BR/sw/messages.po libreoffice-7.3.5/translations/source/pt-BR/sw/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-02-14 15:38+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562678677.000000\n" #. v3oJv @@ -4464,7 +4464,7 @@ #: sw/inc/strings.hrc:413 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "Instale o pacote de hifenização para o idioma \"%1\"." +msgstr "Instale o pacote de hifenização para a localidade \"%1\"." #. bJFYS #: sw/inc/strings.hrc:414 @@ -10499,19 +10499,19 @@ msgstr "Move o estilo de parágrafo selecionado um nível abaixo na hierarquia do índice." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Estilo" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Estilos" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Cria entradas de índice a partir de estilos de parágrafo específicos." @@ -13955,37 +13955,37 @@ msgstr "Trocar bancos de dados" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definir" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Bancos de dados em uso" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "B_ancos de dados disponíveis" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Procurar..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Abre uma caixa de diálogo de abertura de arquivo para selecionar um arquivo de banco de dados (*.odb). O arquivo selecionado é adicionado à lista Bancos de dados disponíveis." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Utilize o botão do navegador para selecionar um arquivo de banco de dados." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Lista os bancos de dados que estão em utilização no momento." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Relaciona os banco de dados registrados no %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Trocar bancos de dados" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Banco de dados aplicado ao documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Altera a fonte de dados do documento atual." @@ -20073,109 +20073,109 @@ msgstr "Utilizar o _documento atual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Usa o documento do Writer atual como base do documento de mala direta." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Criar um _novo documento de" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Cria um novo documento do Writer que será usado para a mala direta." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Iniciar a partir de um documento _existente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Selecione um documento do Writer existente para ser usado como base da mala direta." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "_Iniciar com um modelo" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Selecione o modelo com que você deseja criar seu documento de mala direta." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Começar com um docu_mento inicial salvo recentemente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Use um documento de mala direta existente como base para um novo." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Selecione o documento." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Procurar..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Localize o documento do Writer que deseja utilizar e clique em Abrir." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Procurar..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Abra uma caixa de seleção de modelo." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "A fonte de dados do documento atual não está registrada. Troque o banco de dados." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Trocar banco de dados..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Selecionar o documento inicial para a mala direta" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Especifique o documento que você deseja usar como base para o documento de mala direta." @@ -22318,49 +22318,49 @@ msgstr "Objeto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opções" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Disposição do texto" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordas" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Área" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparência" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27056,7 +27056,7 @@ msgstr "Atualizar" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Exibe as estatísticas do arquivo atual." @@ -29189,7 +29189,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:963 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 "Substitui entradas de índice idênticas que ocorrem nas páginas subsequentes diretas, por uma entrada singular que relaciona o número da página da primeira ocorrência e \"p\" ou \"pp\". Por exemplo, as entradas \"Exibir 10, Exibir 11\" serão combinadas como \"Exibir 10p\", e \"Exibir 10, Exibir 11, Exibir 12\" como \"Exibir 10pp\". O resultado depende da definição do local, mas pode ser modificado com Ordenar - Idioma." +msgstr "Substitui entradas de índice idênticas que ocorrem nas páginas subsequentes diretas, por uma entrada singular que relaciona o número da página da primeira ocorrência e \"p\" ou \"pp\". Por exemplo, as entradas \"Exibir 10, Exibir 11\" serão combinadas como \"Exibir 10p\", e \"Exibir 10, Exibir 11, Exibir 12\" como \"Exibir 10pp\". O resultado depende da localidade, mas pode ser modificado com Ordenar - Idioma." #. Uivc8 #: sw/uiconfig/swriter/ui/tocindexpage.ui:974 diff -Nru libreoffice-7.3.4/translations/source/pt-BR/swext/mediawiki/help.po libreoffice-7.3.5/translations/source/pt-BR/swext/mediawiki/help.po --- libreoffice-7.3.4/translations/source/pt-BR/swext/mediawiki/help.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/swext/mediawiki/help.po 2022-07-15 19:12:51.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: 2021-10-10 11:21+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542506904.000000\n" #. 7EFBE @@ -653,7 +653,7 @@ "par_id1831110\n" "help.text" 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 "Independentemente dos estilos de borda e plano de fundos de tabela, uma tabela é sempre exportada como \"prettytable\", e processada no wiki com bordas simples e cabeçalho em negrito." +msgstr "Independentemente dos estilos de borda e plano de fundos de tabela, uma tabela é sempre exportada como \"prettytable\", e representada no wiki com bordas simples e cabeçalho em negrito." #. kDcRS #: wikiformats.xhp diff -Nru libreoffice-7.3.4/translations/source/pt-BR/vcl/messages.po libreoffice-7.3.5/translations/source/pt-BR/vcl/messages.po --- libreoffice-7.3.4/translations/source/pt-BR/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/pt-BR/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" -"PO-Revision-Date: 2021-10-01 05:36+0000\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+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" @@ -1039,7 +1039,7 @@ #: vcl/inc/strings.hrc:106 msgctxt "SV_APP_UIRENDER" msgid "UI render: " -msgstr "Realizador da interface: " +msgstr "Gestão da interface: " #. HnDDn #: vcl/inc/strings.hrc:107 @@ -2324,169 +2324,169 @@ msgstr "Imprime várias páginas por folha de papel." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizado" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Selecione quantas páginas a imprimir por folha de papel." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Páginas:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selecione o número de linhas." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "por" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selecione o número de colunas." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margem:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selecione a margem entre as páginas individuais em cada folha de papel." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "entre páginas" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distância:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selecione a margem entre as páginas impressas e a borda do papel." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "até a borda da folha" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordem:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Da esquerda para a direita, depois para baixo" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De cima para baixo, depois para a direita" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De cima para baixo, e depois para a esquerda" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Da direita para a esquerda, depois para baixo" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Selecione a ordem na qual as páginas serão impressas." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Desenhar uma borda em volta de cada página" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Marque para desenhar uma borda em torno de cada página." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Livreto" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Selecione para imprimir o documento no formato de livreto." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Visualizar agrupamento" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Altera a disposição das páginas a imprimir em cada folha de papel. A visualização mostra como cada folha vai ficar." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Mais" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Leiaute de página" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Geral" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Imprime o documento atual, a seleção ou as páginas que você especificar. Você também pode definir as opções de impressão para o documento atual." diff -Nru libreoffice-7.3.4/translations/source/ro/basctl/messages.po libreoffice-7.3.5/translations/source/ro/basctl/messages.po --- libreoffice-7.3.4/translations/source/ro/basctl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/basctl/messages.po 2022-07-15 19:12:51.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-12-21 12:37+0100\n" -"PO-Revision-Date: 2022-03-31 21:49+0000\n" +"PO-Revision-Date: 2022-06-15 20:56+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1511369888.000000\n" #. fniWp @@ -986,7 +986,7 @@ #: basctl/uiconfig/basicide/ui/gotolinedialog.ui:8 msgctxt "gotolinedialog|GotoLineDialog" msgid "Go to Line" -msgstr "Du-te la linia" +msgstr "Deplasare la linia" #. GbpSc #: basctl/uiconfig/basicide/ui/gotolinedialog.ui:88 diff -Nru libreoffice-7.3.4/translations/source/ro/chart2/messages.po libreoffice-7.3.5/translations/source/ro/chart2/messages.po --- libreoffice-7.3.4/translations/source/ro/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-12 20:39+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540151243.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ro/cui/messages.po libreoffice-7.3.5/translations/source/ro/cui/messages.po --- libreoffice-7.3.4/translations/source/ro/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195872.000000\n" #. GyY9M @@ -17131,176 +17131,152 @@ msgid "Automatic" msgstr "Automat" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxie" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Contrast ridicat" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxigen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clasic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Specifică stilul pentru pictogramele barelor de instrumente și ale dialogurilor." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_til de pictogramă:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Adăugați mai multe teme de pictograme prin extensie" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Stil de pictograme" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Necesită repornire" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Folosește accelerarea hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Accesează direct caracteristicile hardware ale adaptorului de afișare grafică pentru a îmbunătăți afișarea ecranului." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Folosește anti-a_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Ieșire grafică" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "_Arată previzualizarea fontului" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Antialiasin_g fonturi afișate pe ecran" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_de la:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Liste de fonturi" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ro/dbaccess/messages.po libreoffice-7.3.5/translations/source/ro/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ro/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-31 21:50+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524567834.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Cr_eeaza o baza de date noua" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Bază de dat_e incorporată:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "_Deschide o bază de date existentă" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Recent utilizat:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Selectați un fișier de bază de date pentru a fi deschis din lista de fișiere utilizate recent. Apăsați butonul Încheiere pentru a deschide fișierul imediat și pentru a părăsi asistentul." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Deschide" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Conectare la o bază de date e_xistentă" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" @@ -5044,7 +5044,7 @@ #: dbaccess/uiconfig/ui/textpage.ui:145 msgctxt "textpage|containsheaders" msgid "_Text contains headers" -msgstr "_Textul conține antete" +msgstr "_Textul conține anteturi" #. PGqYA #: dbaccess/uiconfig/ui/textpage.ui:164 diff -Nru libreoffice-7.3.4/translations/source/ro/extensions/messages.po libreoffice-7.3.5/translations/source/ro/extensions/messages.po --- libreoffice-7.3.4/translations/source/ro/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-03-23 11:35+0000\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542024685.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Reîmprospătează formularul" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Descarcă" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Trimite" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (scurt)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (scurt YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (scurt YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lung)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Neselectat" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Selectat" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nedefinit" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Toate înregistrările" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Înregistrarea activă" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pagină curentă" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nu" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Da" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formularul părinte" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_gol" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_părinte" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_sine" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_sus" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nimic" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Unic" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Multiplă" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Interval" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Orizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertical" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Implicit" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Anulează" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ajutor" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Intrarea selectată" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Poziția intrării selectate" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Pe o singură linie" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Pe mai multe linii" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Pe mai multe linii cu formatare" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nimic" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Orizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertical" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ambele" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plat" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Stânga sus" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Stânga centrat" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Stânga jos" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Dreapta sus" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Dreapta centrat" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Dreapta jos" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Deasupra stânga" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Deasupra centrat" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Deasupra dreapta" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Dedesubt stânga" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Dedesubt centru" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Dedesubt dreapta" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrat" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Păstrează" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Înlocuire" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Restrînge" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nu" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Păstrează proporția" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Potrivește la dimensiune" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "De la stânga la dreapta" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "De la dreapta la stânga" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Utilizează setările obiectului superior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Niciodată" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Când este în prim plan" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Întotdeauna" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "La paragraf" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ca și caracter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "La pagină" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "La cadru" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "La caracter" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "La pagină" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "La celulă" @@ -4097,7 +4085,7 @@ #: extensions/uiconfig/sbibliography/ui/querydialog.ui:30 msgctxt "querydialog|ask" msgid "Do not show this question again." -msgstr "" +msgstr "Nu mai arăta din nou această întrebare." #. YFwPR #: extensions/uiconfig/sbibliography/ui/toolbar.ui:24 diff -Nru libreoffice-7.3.4/translations/source/ro/fpicker/messages.po libreoffice-7.3.5/translations/source/ro/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ro/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-04 05:39+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538498342.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nume fișier:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tip fișier:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Numai-citi_re" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Salvează cu parolă" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Extensie _automată pentru numele de fișier" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editează setările _filtrului" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -1784,7 +1784,7 @@ "Label\n" "value.text" msgid "Fill ~Down" -msgstr "~Umple în jos" +msgstr "Umple în j~os" #. GngK3 #: CalcCommands.xcu @@ -1794,7 +1794,7 @@ "ContextLabel\n" "value.text" msgid "Fill ~Down" -msgstr "" +msgstr "Umple în j~os" #. b3SoG #: CalcCommands.xcu @@ -1814,7 +1814,7 @@ "ContextLabel\n" "value.text" msgid "Fill ~Right" -msgstr "" +msgstr "Umple la d~reapta" #. XFAhB #: CalcCommands.xcu @@ -1834,7 +1834,7 @@ "ContextLabel\n" "value.text" msgid "Fill ~Up" -msgstr "" +msgstr "~Umple în sus" #. QdDYA #: CalcCommands.xcu @@ -1854,7 +1854,7 @@ "ContextLabel\n" "value.text" msgid "Fill ~Left" -msgstr "" +msgstr "Ump~le la stânga" #. 4tV7E #: CalcCommands.xcu @@ -1894,7 +1894,7 @@ "ContextLabel\n" "value.text" msgid "Fill ~Sheets..." -msgstr "" +msgstr "~Umple foile..." #. PbKaP #: CalcCommands.xcu @@ -1914,7 +1914,7 @@ "ContextLabel\n" "value.text" msgid "Fill S~eries..." -msgstr "" +msgstr "Umpl~e seriile..." #. kbp4m #: CalcCommands.xcu @@ -1924,7 +1924,7 @@ "Label\n" "value.text" msgid "Fill R~andom Number..." -msgstr "Umple cu numere ~aleatoare..." +msgstr "Umple cu numere ~aleatorii..." #. hss5z #: CalcCommands.xcu @@ -1934,7 +1934,7 @@ "ContextLabel\n" "value.text" msgid "Fill R~andom Number..." -msgstr "" +msgstr "Umple cu numere ~aleatorii..." #. nJgAK #: CalcCommands.xcu @@ -2034,7 +2034,7 @@ "Label\n" "value.text" msgid "Paired ~t-test..." -msgstr "" +msgstr "Test ~t pereche..." #. v9hMC #: CalcCommands.xcu @@ -2054,7 +2054,7 @@ "Label\n" "value.text" msgid "~Z-test..." -msgstr "" +msgstr "~Z-test..." #. EXRQ8 #: CalcCommands.xcu @@ -2074,7 +2074,7 @@ "Label\n" "value.text" msgid "F~ourier Analysis..." -msgstr "" +msgstr "Analiză F~ourier..." #. dTXDB #: CalcCommands.xcu @@ -2084,7 +2084,7 @@ "Label\n" "value.text" msgid "~Headers and Footers..." -msgstr "~Antete și subsoluri..." +msgstr "~Anteturi și subsoluri..." #. 9wsip #: CalcCommands.xcu @@ -2104,7 +2104,7 @@ "Label\n" "value.text" msgid "Data ~Validation..." -msgstr "" +msgstr "~Validare de date..." #. xxDxd #: CalcCommands.xcu @@ -2134,7 +2134,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "Șterge coloanele" +msgstr "Șterge coloanele selectate" #. 5PPGW #: CalcCommands.xcu @@ -2764,7 +2764,7 @@ "Label\n" "value.text" msgid "Insert Shee~t from File..." -msgstr "Inserare ~foaie din fișier..." +msgstr "Inserează o foaie din ~fișier..." #. yAKU2 #: CalcCommands.xcu @@ -3604,7 +3604,7 @@ "Label\n" "value.text" msgid "Sheet ~Tab Color..." -msgstr "Foaie ~culoare filă..." +msgstr "~Culoarea filei foii..." #. Rdaez #: CalcCommands.xcu @@ -3664,7 +3664,7 @@ "Label\n" "value.text" msgid "Insert Sheet at End..." -msgstr "Inserează foaie la sfârșit..." +msgstr "Inserează o foaie la sfârșit..." #. wSmnb #: CalcCommands.xcu @@ -18355,7 +18355,7 @@ "TooltipLabel\n" "value.text" msgid "Find text in values, to search in formulas use the dialog" -msgstr "Căutați text în valori; pentru a căuta în formule, folosiți caseta de dialog" +msgstr "Caută text în valori; pentru a căuta în formule, folosește caseta de dialog" #. NCRsb #: GenericCommands.xcu @@ -23869,7 +23869,7 @@ "TooltipLabel\n" "value.text" msgid "Open the release notes for the installed version in the default browser" -msgstr "" +msgstr "Deschide notele de lansare pentru versiunea instalată în browserul implicit" #. 77umd #: GenericCommands.xcu @@ -26229,7 +26229,7 @@ "Label\n" "value.text" msgid "Insert non-br~eaking hyphen" -msgstr "" +msgstr "Ins~erează o liniuță de unire" #. FsR94 #: GenericCommands.xcu @@ -26239,7 +26239,7 @@ "Label\n" "value.text" msgid "Insert s~oft Hyphen" -msgstr "" +msgstr "Inserează ~o liniuță de despărțire" #. B9WX3 #: GenericCommands.xcu @@ -26249,7 +26249,7 @@ "Label\n" "value.text" msgid "Insert ~non-breaking space" -msgstr "" +msgstr "I~nserează un spațiu de unire" #. KZXXb #: GenericCommands.xcu @@ -26259,7 +26259,7 @@ "Label\n" "value.text" msgid "Insert N~arrow No-break Space" -msgstr "" +msgstr "Insere~ază un spațiu de unire îngust" #. txaEk #: GenericCommands.xcu @@ -26269,7 +26269,7 @@ "Label\n" "value.text" msgid "No-~width Optional Break" -msgstr "" +msgstr "Spați~u de despărțire opțional" #. Gjgjy #: GenericCommands.xcu @@ -26279,7 +26279,7 @@ "Label\n" "value.text" msgid "Word ~Joiner" -msgstr "" +msgstr "Alăturare de cu~vinte" #. UvwGS #: GenericCommands.xcu @@ -30372,7 +30372,7 @@ "Label\n" "value.text" msgid "Go t~o Page..." -msgstr "~Du-te la pagina..." +msgstr "~Deplasare la pagina..." #. FFXsF #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/ro/readlicense_oo/docs.po libreoffice-7.3.5/translations/source/ro/readlicense_oo/docs.po --- libreoffice-7.3.4/translations/source/ro/readlicense_oo/docs.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/readlicense_oo/docs.po 2022-07-15 19:12:51.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-09-10 23:12+0200\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542024688.000000\n" #. q6Gg3 @@ -50,7 +50,7 @@ "A7\n" "readmeitem.text" msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to https://www.libreoffice.org/." -msgstr "" +msgstr "Comunitatea ${PRODUCTNAME} este responsabilă pentru dezvoltarea acestui produs și vă invită să luați în considerare participarea în calitate de membru al comunității. Dacă sunteți un utilizator nou, puteți vizita site-ul web ${PRODUCTNAME}, unde veți găsi o mulțime de informații despre proiectul ${PRODUCTNAME} și comunitățile care există în jurul acestuia. Accesați https://www.libreoffice.org/." #. EVaKB #: readme.xrm @@ -743,7 +743,7 @@ "support1\n" "readmeitem.text" msgid "The main support page offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at https://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at https://www.libreoffice.org/lists/users/. Alternatively, you can send in your questions to users@libreoffice.org. If you like to subscribe to the list (to get email responses), send an empty mail to: users+subscribe@libreoffice.org." -msgstr "" +msgstr "Pagina principală de asistență oferă diverse posibilități de ajutor pentru ${PRODUCTNAME}. Este posibil ca întrebarea dumneavoastră să fi primit deja răspuns – verificați forumul comunității la https://www.documentfoundation.org/nabble/ sau căutați arhivele listei de corespondență 'users@libreoffice.org' la https://www.libreoffice.org/lists/users/. Alternativ, puteți trimite întrebările la adresa de e-mail users@libreoffice.org. Dacă doriți să vă abonați la listă (pentru a primi răspunsuri prin e-mail), trimiteți un e-mail gol la: users+subscribe@libreoffice.org." #. YnDMB #: readme.xrm @@ -770,7 +770,7 @@ "reportbugs1\n" "readmeitem.text" msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at https://bugs.documentfoundation.org/. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}." -msgstr "" +msgstr "Sistemul nostru de raportare, urmărire și rezolvare a erorilor este în prezent Bugzilla, găzduit la https://bugs.documentfoundation.org/. Încurajăm toți utilizatorii să se simtă îndreptățiți și bineveniți în a raporta erori care pot apărea pe platforma pe care rulează programul. Raportarea energică a erorilor este una dintre cele mai importante contribuții pe care comunitatea de utilizatori le poate aduce la dezvoltarea și îmbunătățirea continuă a ${PRODUCTNAME}." #. WpD2B #: readme.xrm @@ -788,7 +788,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 "Comunitatea ${PRODUCTNAME} ar avea foarte mult de cîștigat din participarea dumneavoastră activă la dezvoltarea acestui important proiect open source." +msgstr "Comunitatea ${PRODUCTNAME} ar avea foarte mult de câștigat din participarea dumneavoastră activă la dezvoltarea acestui important proiect cu sursă deschisă." #. kAfhp #: readme.xrm @@ -815,7 +815,7 @@ "howtostart1\n" "readmeitem.text" msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at the LibreOffice website." -msgstr "" +msgstr "Cea mai bună modalitate de a începe contribuția este abonarea la una sau mai multe dintre listele de corespondență, urmărirea lor o vreme și folosirea treptată a arhivelor de e-mail pentru a familiarizarea cu multe dintre subiectele acoperite de când codul sursă ${PRODUCTNAME} a fost lansat în Octombrie 2000. Când vă simțiți confortabil, tot ce trebuie să faceți este să trimiteți un e-mail de auto-introducere și să intrați imediat. Dacă sunteți familiarizat cu proiectele Open Source, verificați lista noastră de lucruri de făcut și vedeți dacă există ceva la site-ul web LibreOffice cu care doriți să ajutați." #. LGEzy #: readme.xrm diff -Nru libreoffice-7.3.4/translations/source/ro/sc/messages.po libreoffice-7.3.5/translations/source/ro/sc/messages.po --- libreoffice-7.3.4/translations/source/ro/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -711,8 +711,8 @@ "The range does not contain column headers.\n" "Do you want the first line to be used as column header?" msgstr "" -"Intervalul nu conține antete de coloană.\n" -"Doriți ca prima linie să fie folosită ca antet de coloană?" +"Intervalul nu conține niciun antet de coloană.\n" +"Vreți ca prima linie să fie folosită ca antet de coloană?" #. W8DjC #: sc/inc/globstr.hrc:127 @@ -1876,7 +1876,7 @@ #: sc/inc/globstr.hrc:327 msgctxt "STR_SCATTR_PAGE_HEADERS" msgid "Row & Column Headers" -msgstr "Antete rând și coloană" +msgstr "Anteturi de rând și de coloană" #. opCNb #: sc/inc/globstr.hrc:328 @@ -2338,13 +2338,13 @@ #: sc/inc/globstr.hrc:400 msgctxt "STR_NAME_INPUT_ROW" msgid "Go To Row" -msgstr "Du-te la linie" +msgstr "Deplasare la rândul" #. fF3Qb #: sc/inc/globstr.hrc:401 msgctxt "STR_NAME_INPUT_SHEET" msgid "Go To Sheet" -msgstr "Du-te la foaie" +msgstr "Deplasare la foaia" #. xEAo2 #: sc/inc/globstr.hrc:402 @@ -16081,7 +16081,7 @@ #: sc/inc/scfuncs.hrc:3962 msgctxt "SC_OPCODE_BITRSHIFT" msgid "Bitwise right shift of an integer value." -msgstr "Deplasare binară la drepta a unui întreg." +msgstr "Deplasare binară la dreapta a unei valori întregi." #. WTgDZ #: sc/inc/scfuncs.hrc:3963 @@ -16099,7 +16099,7 @@ #: sc/inc/scfuncs.hrc:3965 msgctxt "SC_OPCODE_BITRSHIFT" msgid "Shift" -msgstr "deplasare" +msgstr "Deplasare" #. 3THcX #: sc/inc/scfuncs.hrc:3966 @@ -16111,7 +16111,7 @@ #: sc/inc/scfuncs.hrc:3971 msgctxt "SC_OPCODE_BITLSHIFT" msgid "Bitwise left shift of an integer value." -msgstr "Deplasarea la stânga pe biți a unei valori întregi." +msgstr "Deplasarea binară la stânga a unei valori întregi." #. F9ECb #: sc/inc/scfuncs.hrc:3972 @@ -16129,7 +16129,7 @@ #: sc/inc/scfuncs.hrc:3974 msgctxt "SC_OPCODE_BITLSHIFT" msgid "Shift" -msgstr "deplasare" +msgstr "Deplasare" #. GNqMu #: sc/inc/scfuncs.hrc:3975 @@ -16908,7 +16908,7 @@ #: sc/inc/strings.hrc:53 msgctxt "SCSTR_APDTABLE" msgid "Append Sheet" -msgstr "Anexează foaia" +msgstr "Adăugare foaie" #. sba4F #: sc/inc/strings.hrc:54 @@ -19123,7 +19123,7 @@ #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:8 msgctxt "allheaderfooterdialog|AllHeaderFooterDialog" msgid "Headers/Footers" -msgstr "Antete/Subsoluri" +msgstr "Anteturi/Subsoluri" #. 5TTBG #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:139 @@ -23777,7 +23777,7 @@ #: sc/uiconfig/scalc/ui/headerdialog.ui:8 msgctxt "headerdialog|HeaderDialog" msgid "Headers" -msgstr "Antete" +msgstr "Anteturi" #. YYvhd #: sc/uiconfig/scalc/ui/headerdialog.ui:139 @@ -24029,7 +24029,7 @@ #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:8 msgctxt "headerfooterdialog|HeaderFooterDialog" msgid "Headers/Footers" -msgstr "Antete/Subsoluri" +msgstr "Anteturi/Subsoluri" #. 84Cdv #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:139 @@ -24281,7 +24281,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:23 msgctxt "insertsheet|InsertSheetDialog" msgid "Insert Sheet" -msgstr "Inserează o foaie" +msgstr "Inserare foaie" #. kE6pE #: sc/uiconfig/scalc/ui/insertsheet.ui:113 @@ -25572,97 +25572,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26042,154 +26042,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Aranjează" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Culoare" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grilă" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Limbă:" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Examinare" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Note" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Compară" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Vizualizare" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Editare" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Aranjează" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Vizualizare" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupare" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "F_ont" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Aliniere" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Vizualizare" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Inserare" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Cad_ru" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Aranjează" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grilă" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" @@ -27514,7 +27514,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:130 msgctxt "pastespecial|paste_values_only|label" msgid "_Values Only" -msgstr "" +msgstr "Numai _valori" #. XyU8o #: sc/uiconfig/scalc/ui/pastespecial.ui:134 @@ -27526,91 +27526,91 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:141 msgctxt "pastespecial|extended_tip|paste_values_only" msgid "Pastes numbers, text, dates and the results of formulas." -msgstr "" +msgstr "Lipește numerele, textul, datele și rezultatul formulelor." #. CTEKF #: sc/uiconfig/scalc/ui/pastespecial.ui:153 msgctxt "pastespecial|paste_values_formats|label" msgid "Values & _Formats" -msgstr "" +msgstr "Valori și _formate" #. 7GuDi #: sc/uiconfig/scalc/ui/pastespecial.ui:157 msgctxt "pastespecial|paste_values_formats|tooltip_text" msgid "Values & Formats" -msgstr "Valori și formatare" +msgstr "Valori și formate" #. FjJPU #: sc/uiconfig/scalc/ui/pastespecial.ui:164 msgctxt "pastespecial|extended_tip|paste_values_formats" msgid "Pastes cell values, formula results and formats applied to cells." -msgstr "" +msgstr "Lipește valorile celulelor, rezultatul formulelor și formatul aplicat celulelor." #. Rb8KR #: sc/uiconfig/scalc/ui/pastespecial.ui:176 msgctxt "pastespecial|paste_format|label" msgid "Formats Onl_y" -msgstr "" +msgstr "Numai form_ate" #. Cvyjn #: sc/uiconfig/scalc/ui/pastespecial.ui:180 msgctxt "pastespecial|paste_format|tooltip_text" msgid "Formats Only" -msgstr "" +msgstr "Numai formate" #. Jhc4o #: sc/uiconfig/scalc/ui/pastespecial.ui:187 msgctxt "pastespecial|extended_tip|paste_formats" msgid "Pastes only the formats from the source range without changing the values in the destination range." -msgstr "" +msgstr "Lipește numai formatele din intervalul sursă fără a modifica valorile din intervalul de destinație." #. YGdhH #: sc/uiconfig/scalc/ui/pastespecial.ui:199 msgctxt "pastespecial|paste_transpose|label" msgid "_Transpose All" -msgstr "" +msgstr "_Transpunere totală" #. sbLGi #: sc/uiconfig/scalc/ui/pastespecial.ui:203 msgctxt "pastespecial|paste_transpose|tooltip_text" msgid "Transpose All" -msgstr "" +msgstr "Transpunere totală" #. 3BC6U #: sc/uiconfig/scalc/ui/pastespecial.ui:210 msgctxt "pastespecial|extended_tip|paste_transpose" msgid "Pastes cell contents transposed, hence columns are converted to rows." -msgstr "" +msgstr "Lipește conținutul celulelor transpuse, prin urmare coloanele sunt convertite în rânduri." #. 4ETCT #: sc/uiconfig/scalc/ui/pastespecial.ui:229 msgctxt "pastespecial|cbImmediately" msgid "_Run immediately" -msgstr "" +msgstr "E_xecută imediat" #. 7a9JE #: sc/uiconfig/scalc/ui/pastespecial.ui:238 msgctxt "pastespecial|extended_tip|cbImmediately" msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK." -msgstr "" +msgstr "Bifați această opțiune pentru a executa preselecția imediat. Debifați opțiunea pentru a modifica opțiunile înainte de a da clic pe OK." #. YD43i #: sc/uiconfig/scalc/ui/pastespecial.ui:254 msgctxt "pastespecial|frPresets" msgid "Presets" -msgstr "" +msgstr "Preselecții" #. g6DfA #: sc/uiconfig/scalc/ui/pastespecial.ui:290 msgctxt "pastespecial|paste_all" msgid "_All" -msgstr "" +msgstr "To_ate" #. Labin #: sc/uiconfig/scalc/ui/pastespecial.ui:298 msgctxt "pastespecial|extended_tip|paste_all" msgid "Pastes all cell contents, comments, formats, and objects into the current document." -msgstr "" +msgstr "Lipește tot conținutul celulelor, comentariile, formatele și obiectele în documentul curent." #. qzFbg #: sc/uiconfig/scalc/ui/pastespecial.ui:309 @@ -27622,7 +27622,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:317 msgctxt "pastespecial|extended_tip|numbers" msgid "Inserts cells containing numbers." -msgstr "" +msgstr "Inserează celulele care conțin numere." #. BSEWE #: sc/uiconfig/scalc/ui/pastespecial.ui:328 @@ -27634,7 +27634,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:336 msgctxt "pastespecial|extended_tip|text" msgid "Inserts cells containing text." -msgstr "" +msgstr "Inserează celulele care conțin text." #. DBaJD #: sc/uiconfig/scalc/ui/pastespecial.ui:347 @@ -27646,7 +27646,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:355 msgctxt "pastespecial|extended_tip|datetime" msgid "Inserts cells containing date and time values." -msgstr "" +msgstr "Inserează celulele care conțin valori de dată și de timp." #. aHXF8 #: sc/uiconfig/scalc/ui/pastespecial.ui:366 @@ -27658,49 +27658,49 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:374 msgctxt "pastespecial|extended_tip|formats" msgid "Inserts cell format attributes." -msgstr "" +msgstr "Inserează atribute de format de celulă." #. NT4Am #: sc/uiconfig/scalc/ui/pastespecial.ui:385 msgctxt "pastespecial|comments" msgid "_Comments" -msgstr "_Note" +msgstr "_Comentarii" #. 3uP7i #: sc/uiconfig/scalc/ui/pastespecial.ui:393 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 "Inserează comentariile care sunt atașate la celule. Dacă vreți să adăugați comentarii la conținutul existent al celulei, selectați operația „Adaugă”." #. YZQBh #: sc/uiconfig/scalc/ui/pastespecial.ui:404 msgctxt "pastespecial|objects" msgid "Ob_jects" -msgstr "" +msgstr "Ob_iecte" #. DZsnr #: sc/uiconfig/scalc/ui/pastespecial.ui:412 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 "Inserează obiecte conținute în intervalul de celule selectat. Acestea pot fi obiecte OLE, obiecte diagramă sau obiecte desen." #. jrjYA #: sc/uiconfig/scalc/ui/pastespecial.ui:423 msgctxt "pastespecial|formulas" msgid "F_ormulas" -msgstr "" +msgstr "F_ormule" #. Na5Ba #: sc/uiconfig/scalc/ui/pastespecial.ui:431 msgctxt "pastespecial|extended_tip|formulas" msgid "Inserts cells containing formulae." -msgstr "" +msgstr "Inserează celule care conțin formule." #. UtpWA #: sc/uiconfig/scalc/ui/pastespecial.ui:446 msgctxt "pastespecial|label1" msgid "Paste" -msgstr "" +msgstr "Lipire" #. fonBJ #: sc/uiconfig/scalc/ui/pastespecial.ui:477 @@ -27712,31 +27712,31 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:486 msgctxt "pastespecial|extended_tip|no_shift" msgid "Inserted cells replace the target cells." -msgstr "" +msgstr "Celulele inserate înlocuiesc celulele țintă." #. RuiU6 #: sc/uiconfig/scalc/ui/pastespecial.ui:498 msgctxt "pastespecial|move_down" msgid "_Down" -msgstr "" +msgstr "_Jos" #. BNALN #: sc/uiconfig/scalc/ui/pastespecial.ui:507 msgctxt "pastespecial|extended_tip|move_down" msgid "Target cells are shifted downward when you insert cells from the clipboard." -msgstr "" +msgstr "Celulele țintă sunt deplasate în jos când inserați celule din clipboard." #. obSAt #: sc/uiconfig/scalc/ui/pastespecial.ui:519 msgctxt "pastespecial|move_right" msgid "_Right" -msgstr "_Dreapta" +msgstr "D_reapta" #. GEFe7 #: sc/uiconfig/scalc/ui/pastespecial.ui:528 msgctxt "pastespecial|extended_tip|move_right" msgid "Target cells are shifted to the right when you insert cells from the clipboard." -msgstr "" +msgstr "Celulele țintă sunt deplasate la dreapta când inserați celule din clipboard." #. fzYTm #: sc/uiconfig/scalc/ui/pastespecial.ui:544 @@ -27748,49 +27748,49 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:588 msgctxt "pastespecial|link" msgid "As _Link" -msgstr "" +msgstr "Ca _legătură" #. Bg9dc #: sc/uiconfig/scalc/ui/pastespecial.ui:596 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 "Inserează intervalul de celule ca legătură, astfel încât modificările aduse celulelor din fișierul sursă să fie actualizate în fișierul țintă. Pentru a vă asigura că modificările aduse celulelor goale din fișierul sursă sunt actualizate în fișierul țintă, asigurați-vă că este selectată și opțiunea „Lipește toate”." #. qt6LA #: sc/uiconfig/scalc/ui/pastespecial.ui:607 msgctxt "pastespecial|transpose" msgid "Trans_pose" -msgstr "" +msgstr "Trans_punere" #. P3eE4 #: sc/uiconfig/scalc/ui/pastespecial.ui:615 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 "Rândurile intervalului din clipboard sunt lipite pentru a deveni coloane ale intervalului de ieșire. Coloanele din intervalul din clipboard sunt lipite pentru a deveni rânduri." #. eG52z #: sc/uiconfig/scalc/ui/pastespecial.ui:626 msgctxt "pastespecial|skip_empty" msgid "_Skip empty cells" -msgstr "" +msgstr "_Omite celulele goale" #. BodqB #: sc/uiconfig/scalc/ui/pastespecial.ui:630 msgctxt "pastespecial|skip_empty" msgid "If enabled, blank cells in source will not override the target." -msgstr "" +msgstr "Dacă opțiunea este activată, celulele goale din sursă nu vor suprascrie ținta." #. u2Cms #: sc/uiconfig/scalc/ui/pastespecial.ui:635 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 "Celulele goale din clipboard nu înlocuiesc celulele țintă. Dacă utilizați această opțiune împreună cu operația „Multiplicare” sau „Împărțire”, operația nu se aplică celulei țintă a unei celule goale din clipboard." #. jTFAJ #: sc/uiconfig/scalc/ui/pastespecial.ui:650 msgctxt "pastespecial|OptionsFrame" msgid "Options" -msgstr "" +msgstr "Opțiuni" #. nJiy4 #: sc/uiconfig/scalc/ui/pastespecial.ui:681 @@ -27802,19 +27802,19 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:690 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 "Nu aplică nicio operație când inserați intervalul de celule din clipboard. Conținutul clipboard-ului va înlocui conținutul celulei existente." #. CEsbt #: sc/uiconfig/scalc/ui/pastespecial.ui:702 msgctxt "pastespecial|add" msgid "_Add" -msgstr "_Adaugă" +msgstr "_Adăugare" #. bNyh2 #: sc/uiconfig/scalc/ui/pastespecial.ui:711 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 "Adaugă valorile din celulele clipboard la valorile din celulele țintă. De asemenea, dacă clipboard-ul conține doar comentarii, adaugă comentariile la celulele țintă." #. iFTvh #: sc/uiconfig/scalc/ui/pastespecial.ui:723 @@ -27826,31 +27826,31 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:732 msgctxt "pastespecial|extended_tip|subtract" msgid "Subtracts the values in the clipboard cells from the values in the target cells." -msgstr "" +msgstr "Scade valorile din celulele clipboard-ului din valorile din celulele țintă." #. zdDUB #: sc/uiconfig/scalc/ui/pastespecial.ui:744 msgctxt "pastespecial|multiply" msgid "_Multiply" -msgstr "" +msgstr "_Multiplicare" #. jkRDm #: sc/uiconfig/scalc/ui/pastespecial.ui:753 msgctxt "pastespecial|extended_tip|multiply" msgid "Multiplies the values in the clipboard cells with the values in the target cells." -msgstr "" +msgstr "Înmulțește valorile din celulele clipboard cu valorile din celulele țintă." #. 7Nd8u #: sc/uiconfig/scalc/ui/pastespecial.ui:765 msgctxt "pastespecial|divide" msgid "_Divide" -msgstr "" +msgstr "_Diviziune" #. 9VKdS #: sc/uiconfig/scalc/ui/pastespecial.ui:774 msgctxt "pastespecial|extended_tip|divide" msgid "Divides the values in the target cells by the values in the clipboard cells." -msgstr "" +msgstr "Împarte valorile din celulele țintă la valorile din celulele clipboard." #. 9otLM #: sc/uiconfig/scalc/ui/pastespecial.ui:790 @@ -27862,7 +27862,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:825 msgctxt "pastespecial|extended_tip|PasteSpecial" msgid "Inserts the contents of the clipboard into the current file in a format that you can specify." -msgstr "" +msgstr "Inserează conținutul clipboard-ului în fișierul curent într-un format pe care îl puteți specifica." #. AqzPf #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:16 @@ -27880,7 +27880,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41 msgctxt "pivotfielddialog|extended_tip|options" msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only." -msgstr "" +msgstr "Deschide caseta de dialog Opțiuni câmp de date. Butonul Opțiuni este vizibil numai pentru filtre și câmpuri de coloană sau rând." #. KBmND #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133 @@ -27904,7 +27904,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211 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 "Dați clic pe tipul de subtotal pe care doriți să îl calculați. Această opțiune este disponibilă numai dacă este selectată opțiunea definită de utilizator." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:228 @@ -27922,7 +27922,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250 msgctxt "pivotfielddialog|extended_tip|showall" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Include coloane și rânduri goale în tabelul cu rezultate." #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269 @@ -29738,7 +29738,7 @@ #: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:8 msgctxt "sharedfooterdialog|SharedFooterDialog" msgid "Headers/Footers" -msgstr "Antete/Subsoluri" +msgstr "Anteturi/Subsoluri" #. bCUGs #: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:139 @@ -29762,7 +29762,7 @@ #: sc/uiconfig/scalc/ui/sharedheaderdialog.ui:8 msgctxt "sharedheaderdialog|SharedHeaderDialog" msgid "Headers/Footers" -msgstr "Antete/Subsoluri" +msgstr "Anteturi/Subsoluri" #. mYxKb #: sc/uiconfig/scalc/ui/sharedheaderdialog.ui:139 @@ -29924,7 +29924,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:236 msgctxt "sheetprintpage|checkBTN_HEADER" msgid "_Column and row headers" -msgstr "Antete de ~coloană și rând" +msgstr "Anteturi de _coloană și de rând" #. tB2MC #: sc/uiconfig/scalc/ui/sheetprintpage.ui:244 @@ -32541,13 +32541,13 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:195 msgctxt "tpviewpage|rowcolheader" msgid "Colu_mn/row headers" -msgstr "Anteturi de _coloană/rând" +msgstr "Anteturi de _coloană și de rând" #. sF7Bk #: sc/uiconfig/scalc/ui/tpviewpage.ui:203 msgctxt "extended_tip|rowcolheader" msgid "Specifies whether to display row and column headers." -msgstr "Specifică dacă se vor afișa antetele de rând și de coloană." +msgstr "Specifică dacă să fie afișate anteturi de rând și de coloană." #. WAwjG #: sc/uiconfig/scalc/ui/tpviewpage.ui:214 diff -Nru libreoffice-7.3.4/translations/source/ro/sd/messages.po libreoffice-7.3.5/translations/source/ro/sd/messages.po --- libreoffice-7.3.4/translations/source/ro/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542024691.000000\n" #. WDjkB @@ -2047,7 +2047,7 @@ #: sd/inc/strings.hrc:300 msgctxt "STR_PRESOBJ_MPNOTESTITLE" msgid "Click to move the slide" -msgstr "Apasă pentru deplasarea diapozitivului" +msgstr "Clic pentru a deplasa diapozitivul" #. CuXWS #: sd/inc/strings.hrc:301 @@ -4185,109 +4185,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ins_trumente" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "Ins~trumente" @@ -7104,109 +7104,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Ins_trumente" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "Ins~trumente" @@ -8495,7 +8495,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:636 msgctxt "presentationdialog|extended_tip|changeslidesbyclick" msgid "Advances to the next slide when you click on the background of a slide." -msgstr "" +msgstr "Avansează la următorul diapozitiv la clic pe fundalul unui diapozitiv." #. tA4uX #: sd/uiconfig/simpress/ui/presentationdialog.ui:647 @@ -9519,38 +9519,37 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146 msgctxt "sidebarslidebackground|button2" msgid "Insert Image..." -msgstr "" +msgstr "Inserează o imagine..." #. NH6zN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223 -#, fuzzy msgctxt "sidebarslidebackground|displaymasterbackground" msgid "Master Background" -msgstr "Fundal caracter" +msgstr "Fundal principal" #. jeCZN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:252 msgctxt "sidebarslidebackground|label4" msgid "Orientation:" -msgstr "" +msgstr "Orientare:" #. Kx5yk #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "" +msgstr "Vizualizare principală" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 msgctxt "sidebarslidebackground|closemasterslide" msgid "Close Master View" -msgstr "Închide vederea principalului" +msgstr "Închide vizualizarea principală" #. SzLMK #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313 msgctxt "sidebarslidebackground|labelmargin" msgid "Margin:" -msgstr "" +msgstr "Margine:" #. anufD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:326 @@ -9674,7 +9673,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:114 msgctxt "slidedesigndialog|masterpage" msgid "_Exchange background page" -msgstr "Schimbă pagina d_e fundal" +msgstr "Interschimbă pagina d_e fundal" #. Ndm5j #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:122 diff -Nru libreoffice-7.3.4/translations/source/ro/sfx2/messages.po libreoffice-7.3.5/translations/source/ro/sfx2/messages.po --- libreoffice-7.3.4/translations/source/ro/sfx2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/sfx2/messages.po 2022-07-15 19:12:51.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: 2022-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1540151251.000000\n" #. bHbFE @@ -1519,7 +1519,7 @@ #: include/sfx2/strings.hrc:271 msgctxt "STR_WHATSNEW_BUTTON" msgid "Release Notes" -msgstr "" +msgstr "Note de lansare" #. c7NPT #: include/sfx2/strings.hrc:272 @@ -3610,13 +3610,13 @@ #: sfx2/uiconfig/ui/helpmanual.ui:12 msgctxt "helpmanual|onlinehelpmanual" msgid "The %PRODUCTNAME built-in help for current UI language ($UILOCALE) is not installed on your computer." -msgstr "" +msgstr "Ajutorul încorporat %PRODUCTNAME pentru limba actuală a interfeței de utilizator ($UILOCALE) nu este instalat pe calculator." #. DxMPr #: sfx2/uiconfig/ui/helpmanual.ui:13 msgctxt "helpmanual|onlinehelpmanual" msgid "You may either install it from our website or your system’s repositories, or read an online version." -msgstr "O puteți instala de pa pagina web a proiectului, de pe calculator, sau puteți citi varianta online." +msgstr "Puteți fie să-l instalați de pe site-ul nostru web sau din arhivele sistemului dumneavoastră, fie să citiți o versiune online." #. AaeBL #: sfx2/uiconfig/ui/helpmanual.ui:23 @@ -3628,7 +3628,7 @@ #: sfx2/uiconfig/ui/helpmanual.ui:60 msgctxt "helpmanual|hidedialog" msgid "Do not show this dialog again" -msgstr "" +msgstr "Nu mai arăta din nou acest dialog" #. 8FjCk #: sfx2/uiconfig/ui/helpsearchpage.ui:30 @@ -3700,7 +3700,7 @@ #: sfx2/uiconfig/ui/infobar.ui:65 msgctxt "infobar|close|tooltip_text" msgid "Close Infobar" -msgstr "" +msgstr "Închide bara de informații" #. DpXCY #: sfx2/uiconfig/ui/inputdialog.ui:87 diff -Nru libreoffice-7.3.4/translations/source/ro/svx/messages.po libreoffice-7.3.5/translations/source/ro/svx/messages.po --- libreoffice-7.3.4/translations/source/ro/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -16208,7 +16208,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:914 msgctxt "findreplacedialog-mobile|replace_backwards" msgid "Replace _backwards" -msgstr "Înlocuiește înapoi" +msgstr "Înlocuire înap_oi" #. EjXBb #: svx/uiconfig/ui/findreplacedialog-mobile.ui:950 @@ -16628,7 +16628,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1183 msgctxt "findreplacedialog|extended_tip|label3" msgid "Shows more or fewer search options. Click this label again to hide the extended search options." -msgstr "" +msgstr "Afișează mai multe sau mai puține opțiuni de căutare. Dați clic din nou pe această etichetă pentru a ascunde opțiunile de căutare extinse." #. YpLau #: svx/uiconfig/ui/findreplacedialog.ui:1219 diff -Nru libreoffice-7.3.4/translations/source/ro/sw/messages.po libreoffice-7.3.5/translations/source/ro/sw/messages.po --- libreoffice-7.3.4/translations/source/ro/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195873.000000\n" #. v3oJv @@ -3892,9 +3892,9 @@ msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION" msgid "$1 word" msgid_plural "$1 words" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "$1 cuvânt" +msgstr[1] "$1 cuvinte" +msgstr[2] "$1 de cuvinte" #. KuZYC #. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION. @@ -3903,9 +3903,9 @@ msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION" msgid "$1 character" msgid_plural "$1 characters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "$1 caracter" +msgstr[1] "$1 caractere" +msgstr[2] "$1 de caractere" #. fj6gC #: sw/inc/strings.hrc:318 @@ -4474,13 +4474,13 @@ #: sw/inc/strings.hrc:412 msgctxt "STR_HYPH_MISSING" msgid "Missing hyphenation data" -msgstr "" +msgstr "Lipsesc datele despre silabisire" #. TEP66 #: sw/inc/strings.hrc:413 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "" +msgstr "Instalați pachetul de silabisire pentru localele „%1”." #. bJFYS #: sw/inc/strings.hrc:414 @@ -8139,7 +8139,7 @@ #: sw/inc/strings.hrc:1086 msgctxt "STR_BOOKCTRL_HINT" msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list." -msgstr "" +msgstr "Numărul paginii în document. Clic pentru a deschide dialogul de deplasare la pagină sau clic-dreapta pentru lista semnelor de carte." #. XaF3v #: sw/inc/strings.hrc:1087 @@ -10565,19 +10565,19 @@ msgstr "Mută stilul de paragraf selectat cu un nivel mai jos în ierarhia indexului." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiluri" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Creează intrări de index din anumite stiluri de paragraf." @@ -14022,37 +14022,37 @@ msgstr "Schimb de baze de date" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definește" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Baze de date folosite" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Baze de _date disponibile" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Răsfoiește..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14062,31 +14062,31 @@ "Folosiți butonul „Răsfoiește” pentru a selecta un fișier cu o bază de date." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Schimb de baze de date" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Baza de date aplicată documentului:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -15199,7 +15199,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:161 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 "" +msgstr "Introduceți numărul pentru prima notă de subsol din document. Această opțiune este disponibilă numai dacă ați selectat „Per document” în caseta Contorizare." #. RWgzD #: sw/uiconfig/swriter/ui/footnotepage.ui:175 @@ -16381,7 +16381,7 @@ #: sw/uiconfig/swriter/ui/gotopagedialog.ui:8 msgctxt "gotopagedialog|GotoPageDialog" msgid "Go to Page" -msgstr "Du-te la pagina" +msgstr "Deplasare la pagina" #. wjidN #: sw/uiconfig/swriter/ui/gotopagedialog.ui:74 @@ -18457,7 +18457,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:550 msgctxt "linenumbering|extended_tip|restarteverynewpage" msgid "Restarts line numbering at the top of each page in the document." -msgstr "" +msgstr "Repornește numerotarea liniilor din partea de sus a fiecărei pagini din document." #. xBGhA #: sw/uiconfig/swriter/ui/linenumbering.ui:566 @@ -20165,109 +20165,109 @@ msgstr "Utilizarea _documentului curent" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Creare document n_ou" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Utilizează un document _existent" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Utilizează un ș_ablon" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Utilizează un docu_ment recent salvat" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Răsfoiește..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Răsfoiește..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Selectați documentul inițial pentru îmbinarea corespondenței" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Specificați documentul pe care vreți să-l utilizați ca bază pentru documentul de îmbinare a corespondenței." @@ -22415,49 +22415,49 @@ msgstr "Obiect" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tip" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opțiuni" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Realiniere" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borduri" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Suprafață" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparență" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -22957,7 +22957,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:53 msgctxt "optformataidspage|hyphens" msgid "Soft h_yphens" -msgstr "_Liniuță de despărțire la capăt de rând" +msgstr "_Liniuțe de despărțire la capăt de rând" #. D9auF #: sw/uiconfig/swriter/ui/optformataidspage.ui:61 @@ -25187,7 +25187,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:188 msgctxt "extended_tip|leftpages" msgid "Specifies whether to print all left (even numbered) pages of the document." -msgstr "" +msgstr "Specifică dacă să fie tipărite toate paginile din stânga (numerotate par) ale documentului." #. UpodC #: sw/uiconfig/swriter/ui/printoptionspage.ui:199 @@ -25199,7 +25199,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:207 msgctxt "extended_tip|rightpages" msgid "Specifies whether to print all right (odd numbered) pages of the document." -msgstr "" +msgstr "Specifică dacă să fie tipărite toate paginile din dreapta (numerotate impar) ale documentului." #. yWvNR #: sw/uiconfig/swriter/ui/printoptionspage.ui:218 @@ -27173,7 +27173,7 @@ msgstr "Actualizează" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" @@ -29294,7 +29294,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:943 msgctxt "tocindexpage|extended_tip|combinesame" msgid "Replaces identical index entries with a single entry that lists the page numbers where the entry occurs in the document. For example, the entries \"View 10, View 43\" are combined as \"View 10, 43\"." -msgstr "" +msgstr "Înlocuiește intrările de index identice cu o singură intrare care listează numerele de pagină în care apare intrarea în document. De exemplu, intrările „Vizualizare 10, Vizualizare 43” sunt combinate ca „Vizualizare 10, 43”." #. AVAFm #: sw/uiconfig/swriter/ui/tocindexpage.ui:954 diff -Nru libreoffice-7.3.4/translations/source/ro/vcl/messages.po libreoffice-7.3.5/translations/source/ro/vcl/messages.po --- libreoffice-7.3.4/translations/source/ro/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542024696.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Tipărește mai multe pagini per foaie de hârtie." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Personalizat" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Selectați câte pagini să fie tipărite per foaie de hârtie." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pagini:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Selectați numărul de rânduri." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ori" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Selectați numărul de coloane." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margine:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Selectați marginea dintre paginile individuale de pe fiecare foaie de hârtie." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "între pagini" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distanță:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Selectați marginea dintre paginile tipărite și marginea hârtiei." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "la marginea foii" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordine:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "De la stânga la dreapta, apoi în jos" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "De sus în jos, apoi la dreapta" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "De sus în jos, apoi la stânga" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "De la dreapta la stânga, apoi în jos" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Selectați ordinea în care vor fi tipărite paginile." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Desenează un chenar pe marginile fiecărei pagini" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Bifați pentru a desena un chenar în jurul fiecărei pagini." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broșură" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Selectați pentru a tipări documentul în format de broșură." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Previzualizare colare" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Schimbați aranjamentul paginilor de tipărit pe fiecare coală de hârtie. Previzualizarea arată cum va arăta fiecare foaie finală de hârtie." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Mai multe" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Aranjamentul paginii" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "General" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Tipărește documentul curent, selecția sau paginile pe care le specificați. De asemenea, puteți stabili opțiunile de tipărire pentru documentul curent." diff -Nru libreoffice-7.3.4/translations/source/ro/wizards/source/resources.po libreoffice-7.3.5/translations/source/ro/wizards/source/resources.po --- libreoffice-7.3.4/translations/source/ro/wizards/source/resources.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ro/wizards/source/resources.po 2022-07-15 19:12:51.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: 2022-03-31 21:49+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1516048481.000000\n" #. 8UKfi @@ -320,7 +320,7 @@ "RID_REPORT_16\n" "property.text" msgid "Layout of headers and footers" -msgstr "Aspectul antetelor și subsolurilor" +msgstr "Aspectul anteturilor și subsolurilor" #. bN2Fw #: resources_en_US.properties diff -Nru libreoffice-7.3.4/translations/source/ru/chart2/messages.po libreoffice-7.3.5/translations/source/ru/chart2/messages.po --- libreoffice-7.3.4/translations/source/ru/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1553168046.000000\n" #. NCRDD @@ -1259,7 +1259,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:357 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 @@ -1295,19 +1295,19 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:107 msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER" msgid "Value as _number" -msgstr "" +msgstr "Значение как _число" #. sDLeD #: 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 "Отображение абсолютных значений точек диаграммы." #. 7zFS6 #: chart2/uiconfig/ui/dlg_DataLabel.ui:126 msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE" msgid "Value as _percentage" -msgstr "" +msgstr "Значение как _процент" #. 5Hp8E #: chart2/uiconfig/ui/dlg_DataLabel.ui:134 @@ -1577,7 +1577,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:587 msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "_Связать перемещенные метки данных с точками данных" #. MJdmK #: chart2/uiconfig/ui/dlg_DataLabel.ui:595 @@ -3602,7 +3602,7 @@ msgstr "Задайте количество линий для столбчатых и линейчатых диаграмм." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Выберите базовый тип диаграммы." @@ -3617,7 +3617,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:47 msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_NUMBER" msgid "Displays the absolute values of the data points." -msgstr " Отображение абсолютных значений точек диаграммы." +msgstr "Отображение абсолютных значений точек диаграммы." #. QFsau #: chart2/uiconfig/ui/tp_DataLabel.ui:58 @@ -4643,19 +4643,19 @@ #: chart2/uiconfig/ui/tp_Scale.ui:281 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Days" -msgstr "" +msgstr "Дни" #. NL9uN #: chart2/uiconfig/ui/tp_Scale.ui:282 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Months" -msgstr "" +msgstr "Месяцы" #. BfyLg #: chart2/uiconfig/ui/tp_Scale.ui:283 msgctxt "tp_Scale|DATE-RESOLUTION" msgid "Years" -msgstr "" +msgstr "Годы" #. WUANc #: chart2/uiconfig/ui/tp_Scale.ui:287 diff -Nru libreoffice-7.3.4/translations/source/ru/cui/messages.po libreoffice-7.3.5/translations/source/ru/cui/messages.po --- libreoffice-7.3.4/translations/source/ru/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563375554.000000\n" #. GyY9M @@ -490,7 +490,7 @@ #: cui/inc/strings.hrc:86 msgctxt "RID_SVXSTR_MACROS" msgid "Macros" -msgstr "Макрокоманды" +msgstr "Макросы" #. mkEjQ #: cui/inc/strings.hrc:87 @@ -5555,43 +5555,43 @@ #: cui/uiconfig/ui/borderpage.ui:283 msgctxt "borderpage|linewidthlb" msgid "Hairline (0.05pt)" -msgstr "" +msgstr "Волос (0,05 пт)" #. u3nzv #: cui/uiconfig/ui/borderpage.ui:284 msgctxt "borderpage|linewidthlb" msgid "Very thin (0.5pt)" -msgstr "" +msgstr "Очень тонко (0,5 пт)" #. aWBEL #: cui/uiconfig/ui/borderpage.ui:285 msgctxt "borderpage|linewidthlb" msgid "Thin (0.75pt)" -msgstr "" +msgstr "Тонко (0,75 пт)" #. NGkAL #: cui/uiconfig/ui/borderpage.ui:286 msgctxt "borderpage|linewidthlb" msgid "Medium (1.5pt)" -msgstr "" +msgstr "Средне (1,5 пт)" #. H2AVr #: cui/uiconfig/ui/borderpage.ui:287 msgctxt "borderpage|linewidthlb" msgid "Thick (2.25pt)" -msgstr "" +msgstr "Толсто (2,25 пт)" #. b5UoB #: cui/uiconfig/ui/borderpage.ui:288 msgctxt "borderpage|linewidthlb" msgid "Extra thick (4.5pt)" -msgstr "" +msgstr "Очень толсто (4,5 пт)" #. ACvsP #: cui/uiconfig/ui/borderpage.ui:289 msgctxt "borderpage|linewidthlb" msgid "Custom" -msgstr "" +msgstr "Особо" #. uwByw #: cui/uiconfig/ui/borderpage.ui:333 @@ -8555,19 +8555,19 @@ #: cui/uiconfig/ui/effectspage.ui:173 msgctxt "effectspage|extended_tip|positionlb" msgid "Specify where to display the emphasis marks." -msgstr "" +msgstr "Задайте отображение знаков ударения." #. ycUGm #: cui/uiconfig/ui/effectspage.ui:186 msgctxt "effectspage|positionft" msgid "_Position:" -msgstr "" +msgstr "Положение:" #. 5okoC #: cui/uiconfig/ui/effectspage.ui:200 msgctxt "effectspage|emphasisft" msgid "Emphasis _mark:" -msgstr "" +msgstr "Знак ударения:" #. cDkSo #: cui/uiconfig/ui/effectspage.ui:212 @@ -14068,7 +14068,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:124 msgctxt "extended_tip|autoclose_quotes" msgid "Automatically close open quotes." -msgstr "Автоматическое закрывать открытые кавычки." +msgstr "Автоматически закрывать открытые кавычки." #. CCtUM #: cui/uiconfig/ui/optbasicidepage.ui:135 @@ -14816,7 +14816,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:103 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. SfHVG #: cui/uiconfig/ui/opthtmlpage.ui:116 @@ -14828,7 +14828,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:133 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. mbGGc #: cui/uiconfig/ui/opthtmlpage.ui:146 @@ -14840,7 +14840,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:163 msgctxt "extended_tip|size5" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. PwaSa #: cui/uiconfig/ui/opthtmlpage.ui:176 @@ -14852,7 +14852,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:193 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. FSRpm #: cui/uiconfig/ui/opthtmlpage.ui:206 @@ -14864,7 +14864,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:223 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. unrKj #: cui/uiconfig/ui/opthtmlpage.ui:236 @@ -14876,7 +14876,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:253 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. aiSoE #: cui/uiconfig/ui/opthtmlpage.ui:266 @@ -14888,7 +14888,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:283 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 "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML до ." +msgstr "Используйте кнопки от 1 до 7 для задания соответствующих размеров шрифта для тегов HTML от до ." #. rRkQd #: cui/uiconfig/ui/opthtmlpage.ui:298 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Автоматически" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галактика" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Классический" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Бриз" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Задает стиль значков панелей инструментов и диалоговых окон." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Стиль значков:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Добавьте стили значков при помощи расширения." #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Стиль значков" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Требуется перезагрузка" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Использовать аппаратное ускорение" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Непосредственное обращение к аппаратным функциям графического адаптера для улучшения отображения текста на экране." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Использовать сглаживание" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Если поддерживается, вы можете включать и отключать сглаживание рисунков. Если сглаживание включено, многие графические объекты выглядят более сглаженными и с меньшим количеством артефактов." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Весь вывод через Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Программный вывод через Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Требует перезагрузки. Отключает использование графических драйверов." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia включён." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia отключён." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графический вывод" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Просмотр шрифтов" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "Отображает названия шрифтов соответствующим шрифтом, например, в поле Шрифт панели форматирования." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Сглаживание экранных шрифтов" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Выберите для сглаживания текста на экране." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "с:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Задайте минимальный размер шрифта для применения сглаживания." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Список шрифтов" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Запуск графических тестов" diff -Nru libreoffice-7.3.4/translations/source/ru/dbaccess/messages.po libreoffice-7.3.5/translations/source/ru/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ru/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-04-11 14:45+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562878674.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Создать новую базу данных" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Выберите для создания новой базы данных." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Встроенная база данных:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Открыть файл существующей базы данных" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Выберите открываемый файл базы данных из списка недавних файлов или в диалоге выбора файла." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Недавние:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Выберите открываемый файл базы данных из списка недавних файлов. Щёлкните Завершить для открытия файла и выхода из мастера." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Открыть" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Открывает диалоговое окно выбора файла для выбора файла базы данных. Щёлкните Открыть или ОК в диалоговом окне для открытия файла и выхода из мастера." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Соединиться с существующей базой данных" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Невозможно создать новую базу данных, недоступны ни HSQLDB, ни Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ru/extensions/messages.po libreoffice-7.3.5/translations/source/ru/extensions/messages.po --- libreoffice-7.3.4/translations/source/ru/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-02-23 03:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555915227.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Обновить форму" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартный (короткий)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартный (короткий ГГ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартный (короткий ГГГГ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартный (длинный)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/ГГ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/ГГ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ГГ/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/ГГГГ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/ГГГГ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ГГГГ/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ГГ-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Не выбрано" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Выбрано" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Не задано" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Все записи" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Активная запись" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Текущая страница" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Нет" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Да" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Родительская форма" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Нет" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Одиночный" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Множественный" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Диапазон" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Горизонтальная" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертикальная" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "По умолчанию" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Отмена" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Справка" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Выбранная запись" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Позиция выбранной записи" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Однострочный" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Многострочный" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Многострочный с форматированием" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "ПС (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "ВК+ПС (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Нет" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Горизонтальная" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикальная" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "По горизонтали и вертикали" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Трёхмерный" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Плоский" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Слева сверху" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Слева" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Слева снизу" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Справа сверху" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Справа" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Справа снизу" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Сверху слева" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Сверху" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Сверху справа" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Снизу слева" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Снизу" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Снизу справа" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "По центру" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Резервировать" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Заменить" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Свернуть подабзацы" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Нет" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Пропорционально" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Подогнать по размеру" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Слева направо" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Справа налево" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Наследовать настройки" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Никогда" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Только в фокусе" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Всегда" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "К абзацу" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Как символ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "К странице" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "К врезке" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "К символу" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "К странице" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "К ячейке" diff -Nru libreoffice-7.3.4/translations/source/ru/filter/messages.po libreoffice-7.3.5/translations/source/ru/filter/messages.po --- libreoffice-7.3.4/translations/source/ru/filter/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/filter/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" -"PO-Revision-Date: 2022-03-05 08:39+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563790912.000000\n" #. 5AQgJ @@ -838,7 +838,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:56 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 "Установите этот флажок, чтобы преобразовать ссылки на другие файлы ODF в ссылки на файлы PDF с тем же именем. В URL-адресах ссылок расширения .odt, .odp, .ods, .odg и .odm преобразуются в расширение .pdf." #. 6Lyp3 #: filter/uiconfig/ui/pdflinkspage.ui:67 diff -Nru libreoffice-7.3.4/translations/source/ru/formula/messages.po libreoffice-7.3.5/translations/source/ru/formula/messages.po --- libreoffice-7.3.4/translations/source/ru/formula/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/formula/messages.po 2022-07-15 19:12:51.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-29 16:02+0200\n" -"PO-Revision-Date: 2021-08-30 13:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\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.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1554828527.000000\n" #. YfKFn @@ -2509,14 +2509,12 @@ #. RJfcx #: formula/inc/core_resource.hrc:2711 -#, fuzzy msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAND.NV" msgstr "СЛЧИС.ДВ" #. uYSAT #: formula/inc/core_resource.hrc:2712 -#, fuzzy msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RANDBETWEEN.NV" msgstr "СЛУЧМЕЖДУ.ДВ" diff -Nru libreoffice-7.3.4/translations/source/ru/fpicker/messages.po libreoffice-7.3.5/translations/source/ru/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ru/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-01-20 04:09+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538498364.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "Дата изменения" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "Открыть" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "Воспроизвести" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Имя файла:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Тип файла:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Только для чтения" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Сохранить с паролем" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Автоматическое расширение" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Изменить настройки _фильтра" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Зашифровать ключом GPG" diff -Nru libreoffice-7.3.4/translations/source/ru/framework/messages.po libreoffice-7.3.5/translations/source/ru/framework/messages.po --- libreoffice-7.3.4/translations/source/ru/framework/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/framework/messages.po 2022-07-15 19:12:51.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-06-11 17:08+0200\n" -"PO-Revision-Date: 2021-08-25 05:04+0000\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\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.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507245985.000000\n" #. 5dTDC @@ -154,7 +154,7 @@ #: framework/inc/strings.hrc:44 msgctxt "STR_LOCK_TOOLBARS" msgid "~Lock Toolbars" -msgstr "Фиксировать все панели инструментов" +msgstr "Фиксировать панели инструментов" #. ntyDa #: framework/inc/strings.hrc:45 diff -Nru libreoffice-7.3.4/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.5/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.4/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2022-07-15 19:12:51.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: UI\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564293093.000000\n" #. W5ukN @@ -1124,7 +1124,7 @@ "TooltipLabel\n" "value.text" msgid "Insert or Edit Pivot Table" -msgstr "Вставить или редактировать сводную таблицу" +msgstr "Вставить или изменить сводную таблицу" #. VZAqF #: CalcCommands.xcu @@ -1144,7 +1144,7 @@ "Label\n" "value.text" msgid "~Insert or Edit..." -msgstr "Вставить или редактировать..." +msgstr "Вставить или изменить..." #. dHdzP #: CalcCommands.xcu @@ -1154,7 +1154,7 @@ "Label\n" "value.text" msgid "~Insert or Edit Pivot Table..." -msgstr "" +msgstr "Вставить или изменить сводную таблицу..." #. vqC2u #: CalcCommands.xcu @@ -3194,7 +3194,7 @@ "TooltipLabel\n" "value.text" msgid "Merge and center or unmerge cells depending on the current toggle state" -msgstr "" +msgstr "Объединить и центрировать либо разъединить ячейки в зависимости от состояния переключателя" #. VZsps #: CalcCommands.xcu @@ -7994,7 +7994,7 @@ "Label\n" "value.text" msgid "Rename Page..." -msgstr "" +msgstr "Переименовать страницу..." #. gCyCR #: DrawImpressCommands.xcu @@ -8004,7 +8004,7 @@ "Label\n" "value.text" msgid "Rename Slide..." -msgstr "" +msgstr "Переименовать слайд..." #. EoR9S #: DrawImpressCommands.xcu @@ -8214,7 +8214,7 @@ "Label\n" "value.text" msgid "~Gluepoints" -msgstr "" +msgstr "Точки соединения" #. pDA5L #: DrawImpressCommands.xcu @@ -8224,7 +8224,7 @@ "TooltipLabel\n" "value.text" msgid "Show Gluepoint Functions" -msgstr "" +msgstr "Показать точки соединений" #. KvopQ #: DrawImpressCommands.xcu @@ -8234,7 +8234,7 @@ "Label\n" "value.text" msgid "Insert Gluepoint" -msgstr "" +msgstr "Вставить точку соединения" #. nBGfU #: DrawImpressCommands.xcu @@ -8244,7 +8244,7 @@ "Label\n" "value.text" msgid "Gluepoint Relative" -msgstr "" +msgstr "Относительная" #. XbDqq #: DrawImpressCommands.xcu @@ -8264,7 +8264,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Center" -msgstr "" +msgstr "Горизонтально по центру" #. JxbE3 #: DrawImpressCommands.xcu @@ -8274,7 +8274,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Left" -msgstr "" +msgstr "Горизонтально влево" #. QrYe6 #: DrawImpressCommands.xcu @@ -8284,7 +8284,7 @@ "Label\n" "value.text" msgid "Gluepoint Horizontal Right" -msgstr "" +msgstr "Горизонтально вправо" #. vAMar #: DrawImpressCommands.xcu @@ -8294,7 +8294,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Center" -msgstr "" +msgstr "Вертикально по центру" #. Fu3Kk #: DrawImpressCommands.xcu @@ -8304,7 +8304,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Top" -msgstr "" +msgstr "Вертикально вверх" #. rBrUL #: DrawImpressCommands.xcu @@ -8314,7 +8314,7 @@ "Label\n" "value.text" msgid "Gluepoint Vertical Bottom" -msgstr "" +msgstr "Вертикально вниз" #. NNo3V #: DrawImpressCommands.xcu @@ -11634,7 +11634,7 @@ "UIName\n" "value.text" msgid "Gluepoint" -msgstr "" +msgstr "Точка соединения" #. VYgEG #: DrawWindowState.xcu @@ -12014,7 +12014,7 @@ "UIName\n" "value.text" msgid "Gluepoints" -msgstr "" +msgstr "Точки соединений" #. 5SA3p #: DrawWindowState.xcu @@ -19846,7 +19846,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "" +msgstr "Структура нумерации" #. TSDD9 #: GenericCommands.xcu @@ -19856,7 +19856,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "" +msgstr "Структура нумерации" #. RMCDt #: GenericCommands.xcu @@ -19866,7 +19866,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "" +msgstr "Выбор структуры нумерации" #. uKMCr #: GenericCommands.xcu @@ -25676,7 +25676,7 @@ "Label\n" "value.text" msgid "Lock Toolbars" -msgstr "Фиксировать все панели инструментов" +msgstr "Фиксировать панели инструментов" #. cAUZ8 #: GenericCommands.xcu @@ -27066,7 +27066,7 @@ "UIName\n" "value.text" msgid "Gluepoint" -msgstr "" +msgstr "Точка соединения" #. Tbiup #: ImpressWindowState.xcu @@ -28906,7 +28906,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "Эффект" #. GBNW2 #: Sidebar.xcu @@ -28956,7 +28956,7 @@ "Title\n" "value.text" msgid "Fontwork" -msgstr "" +msgstr "Текстовые эффекты" #. vnPii #: Sidebar.xcu @@ -29296,7 +29296,7 @@ "Title\n" "value.text" msgid "Columns" -msgstr "" +msgstr "Колонки" #. CDJWW #: StartModuleWindowState.xcu @@ -29946,7 +29946,7 @@ "PopupLabel\n" "value.text" msgid "Update Indexes and ~Tables" -msgstr "" +msgstr "Обновить указатели и таблицы" #. XPn5o #: WriterCommands.xcu @@ -29976,7 +29976,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Index" -msgstr "" +msgstr "Обновить указатель" #. 3sfQu #: WriterCommands.xcu @@ -30206,7 +30206,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Links" -msgstr "" +msgstr "Обновить связи" #. fQQgY #: WriterCommands.xcu @@ -35486,7 +35486,7 @@ "Label\n" "value.text" msgid "Default Table Style" -msgstr "" +msgstr "Базовый" #. 4AbSB #: WriterCommands.xcu diff -Nru libreoffice-7.3.4/translations/source/ru/sc/messages.po libreoffice-7.3.5/translations/source/ru/sc/messages.po --- libreoffice-7.3.4/translations/source/ru/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562910466.000000\n" #. kBovX @@ -9158,7 +9158,7 @@ #: sc/inc/scfuncs.hrc:1944 msgctxt "SC_OPCODE_PERCENTILE" msgid "The percentile value between 0 and 1, inclusive." -msgstr "" +msgstr "Значение процентиля из диапазона [0..1]." #. pEFyv #: sc/inc/scfuncs.hrc:1950 @@ -14750,7 +14750,7 @@ #: sc/inc/scfuncs.hrc:3605 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:3606 @@ -14762,7 +14762,7 @@ #: sc/inc/scfuncs.hrc:3607 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to be compared against value1…valueN (N ≤ 127)" -msgstr "" +msgstr "Значение для сравнения с значение1, ..., значениеN (N ≤ 127)" #. 9wcvj #: sc/inc/scfuncs.hrc:3608 @@ -14774,7 +14774,7 @@ #: sc/inc/scfuncs.hrc:3609 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:3610 @@ -14786,7 +14786,7 @@ #: sc/inc/scfuncs.hrc:3611 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to return when corresponding value argument matches expression." -msgstr "Возвращаемое значение для соответствующего выражению значения." +msgstr "Возвращаемый результат для совпавшего с выражением значения." #. m2wBA #: sc/inc/scfuncs.hrc:3616 @@ -18448,61 +18448,61 @@ #: sc/inc/strings.hrc:370 msgctxt "STR_BORDER_HAIRLINE" msgid "Hairline (%s pt)" -msgstr "" +msgstr "Волос (%s пт)" #. E9Dhi #: sc/inc/strings.hrc:371 msgctxt "STR_BORDER_VERY_THIN" msgid "Very thin (%s pt)" -msgstr "" +msgstr "Очень тонко (%s пт)" #. KGVAw #: sc/inc/strings.hrc:372 msgctxt "STR_BORDER_THIN" msgid "Thin (%s pt)" -msgstr "" +msgstr "Тонко (%s пт)" #. V6PRY #: sc/inc/strings.hrc:373 msgctxt "STR_BORDER_MEDIUM" msgid "Medium (%s pt)" -msgstr "" +msgstr "Средне (%s пт)" #. GyeKi #: sc/inc/strings.hrc:374 msgctxt "STR_BORDER_THICK" msgid "Thick (%s pt)" -msgstr "" +msgstr "Толсто (%s пт)" #. QvEAB #: sc/inc/strings.hrc:375 msgctxt "STR_BORDER_EXTRA_THICK" msgid "Extra thick (%s pt)" -msgstr "" +msgstr "Очень толсто (%s пт)" #. v9kkb #: sc/inc/strings.hrc:376 msgctxt "STR_BORDER_DOUBLE_1" msgid "Double Hairline (%s pt)" -msgstr "" +msgstr "Двойной волос (%s пт)" #. KzKEy #: sc/inc/strings.hrc:377 msgctxt "STR_BORDER_DOUBLE_2" msgid "Thin/Medium (%s pt)" -msgstr "" +msgstr "Тонко/средне (%s пт)" #. HD8tG #: sc/inc/strings.hrc:378 msgctxt "STR_BORDER_DOUBLE_3" msgid "Medium/Hairline (%s pt)" -msgstr "" +msgstr "Средне/волос (%s пт)" #. ygGcU #: sc/inc/strings.hrc:379 msgctxt "STR_BORDER_DOUBLE_4" msgid "Medium/Medium (%s pt)" -msgstr "" +msgstr "Средне/средне (%s пт)" #. Et4zM #: sc/inc/subtotals.hrc:26 @@ -18832,13 +18832,13 @@ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:66 msgctxt "aggregatefunctionentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. BDhZj #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:75 msgctxt "aggregatefunctionentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. NCX7N #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:8 @@ -18958,7 +18958,7 @@ #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:437 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 @@ -18994,7 +18994,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:206 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:225 @@ -19012,7 +19012,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:243 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:265 @@ -19336,7 +19336,7 @@ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:270 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 @@ -19438,7 +19438,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:153 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:173 @@ -19450,7 +19450,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:179 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:191 @@ -19462,7 +19462,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:197 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:209 @@ -19474,7 +19474,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:215 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:238 @@ -19486,7 +19486,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:263 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 @@ -20080,13 +20080,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:156 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:185 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:204 @@ -20098,25 +20098,25 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:216 msgctxt "conditionalformatdialog|up" msgid "_Up" -msgstr "" +msgstr "В_верх" #. fGKvB #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:223 msgctxt "conditionalformatdialog|extended_tip|up" msgid "Increase priority of the selected condition." -msgstr "" +msgstr "Увеличивает приоритет выбранного условия." #. yaQBX #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:235 msgctxt "conditionalformatdialog|down" msgid "Do_wn" -msgstr "" +msgstr "В_низ" #. ykMES #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:242 msgctxt "conditionalformatdialog|extended_tip|down" msgid "Decrease priority of the selected condition." -msgstr "" +msgstr "Уменьшает приоритет выбранного условия." #. Q6Ag7 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:265 @@ -20146,7 +20146,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:372 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 @@ -20350,13 +20350,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 "Задаёт диапазон ячеек для объединения с перечисленными в поле «Диапазоны объединения». Выберите диапазон ячеек на листе, а затем нажмите кнопку «Добавить». Также возможно выбрать имя предопределенной ячейки из списка «Диапазон исходных данных»." #. 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 @@ -20386,7 +20386,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 "Добавление диапазона ячеек, указанного в поле Диапазон исходных данных, в поле Диапазон объединения." +msgstr "Добавление диапазона ячеек, указанного в поле «Диапазон исходных данных», в поле «Диапазоны объединения»." #. 6SMrn #: sc/uiconfig/scalc/ui/consolidatedialog.ui:396 @@ -20398,7 +20398,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:416 msgctxt "consolidatedialog|ftdataarea" msgid "_Source data ranges:" -msgstr "Исходные диапазоны данных:" +msgstr "Диапазоны исходных данных:" #. VZzRg #: sc/uiconfig/scalc/ui/consolidatedialog.ui:430 @@ -20518,7 +20518,7 @@ #: sc/uiconfig/scalc/ui/correlationdialog.ui:269 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 @@ -20566,7 +20566,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:269 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 @@ -20740,7 +20740,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:145 msgctxt "databaroptions|extended_tip|min" msgid "Select the way the minimum is set" -msgstr "" +msgstr "Выберите способ задания минимума" #. DiBWL #: sc/uiconfig/scalc/ui/databaroptions.ui:160 @@ -20788,19 +20788,19 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:170 msgctxt "databaroptions|extended_tip|max" msgid "Select the way the maximum is set" -msgstr "" +msgstr "Выберите способ задания максимума" #. 5P3sd #: sc/uiconfig/scalc/ui/databaroptions.ui:187 msgctxt "datbaroptions|extended_tip|min_value" msgid "Enter the value for the minimum" -msgstr "" +msgstr "Введите значение минимума" #. oKw6w #: sc/uiconfig/scalc/ui/databaroptions.ui:204 msgctxt "datbaroptions|extended_tip|max_value" msgid "Enter the value for the maximum" -msgstr "" +msgstr "Введите значение максимума" #. TKfBV #: sc/uiconfig/scalc/ui/databaroptions.ui:219 @@ -20824,13 +20824,13 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:287 msgctxt "databaroptions|extended_tip|positive_colour" msgid "Select the color for the positive values" -msgstr "" +msgstr "Выберите цвет для положительных значений" #. fHCLy #: sc/uiconfig/scalc/ui/databaroptions.ui:306 msgctxt "datbaroptions|extended_tip|negative_colour" msgid "Select the color for the negative values" -msgstr "" +msgstr "Выберите цвет для отрицательных значений" #. zbBGo #: sc/uiconfig/scalc/ui/databaroptions.ui:320 @@ -20854,7 +20854,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:339 msgctxt "databaroptions|extended_tip|fill_type" msgid "Select if the fill in color is solid or gradient." -msgstr "" +msgstr "Выберите заливку сплошным цветом или градиентом." #. cA4CB #: sc/uiconfig/scalc/ui/databaroptions.ui:354 @@ -20896,13 +20896,13 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:424 msgctxt "databaroptions|extended_tip|axis_pos" msgid "Select the positions of vertical axis in the cell to start fill." -msgstr "" +msgstr "Выберите положение вертикальной оси в ячейке для заполнения." #. eBCGQ #: sc/uiconfig/scalc/ui/databaroptions.ui:443 msgctxt "datbaroptions|extended_tip|axis_colour" msgid "Set the color of the vertical axis" -msgstr "" +msgstr "Задайте цвет вертикальной оси" #. DjBHB #: sc/uiconfig/scalc/ui/databaroptions.ui:458 @@ -20926,13 +20926,13 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:524 msgctxt "databaroptions|extended_tip|min_length" msgid "Set the minimum bar length in percentage with respect to the cell" -msgstr "" +msgstr "Задайте минимальную длину полосы в процентах по отношению к ячейке" #. hGFk3 #: sc/uiconfig/scalc/ui/databaroptions.ui:541 msgctxt "databaroptions|extended_tip|max_length" msgid "Set the maximum bar length in percentage with respect to the cell" -msgstr "" +msgstr "Задайте максимальную длину полосы в процентах по отношению к ячейке" #. 9fekJ #: sc/uiconfig/scalc/ui/databaroptions.ui:556 @@ -20950,7 +20950,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:579 msgctxt "datbaroptions|extended_tip|only_bar" msgid "Select to have only the bar visible and have value invisible" -msgstr "" +msgstr "Выберите для показа только полосы без значения" #. 2VgJW #: sc/uiconfig/scalc/ui/databaroptions.ui:592 @@ -20968,7 +20968,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:145 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:162 @@ -20986,7 +20986,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:184 msgctxt "datafielddialog|extended_tip|checkbutton1" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Включает пустые столбцы и строки в таблицу результатов." #. CNVLs #: sc/uiconfig/scalc/ui/datafielddialog.ui:203 @@ -21070,13 +21070,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:305 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:320 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:334 @@ -21094,13 +21094,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:339 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:354 msgctxt "datafielddialog|label3" msgid "Displayed Value" -msgstr "" +msgstr "Отображаемое значение" #. mk9vJ #: sc/uiconfig/scalc/ui/datafielddialog.ui:359 @@ -21124,7 +21124,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:133 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 "Сортирует значения от меньшего к большему. Если выбранное поле является полем, для которого было открыто диалоговое окно, элементы сортируются по названию. Если было выбрано поле данных, элементы сортируются по результирующему значению выбранного поля данных." #. yk5PT #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:144 @@ -21136,7 +21136,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:153 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 "Сортирует значения от большего к меньшему. Если выбранное поле является полем, для которого было открыто диалоговое окно, элементы сортируются по названию. Если было выбрано поле данных, элементы сортируются по результирующему значению выбранного поля данных." #. WoRxx #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:164 @@ -21148,13 +21148,13 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:173 msgctxt "datafieldoptionsdialog|extended_tip|manual" msgid "Sorts values alphabetically." -msgstr "" +msgstr "Сортирует значения в алфавитном порядке." #. cdBMn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:190 msgctxt "datafieldoptionsdialog|extended_tip|sortby" msgid "Select the data field that you want to sort columns or rows by." -msgstr "" +msgstr "Выберите поле данных, по которому вы хотите отсортировать столбцы или строки." #. tP8DZ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:209 @@ -21178,7 +21178,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:261 msgctxt "datafieldoptionsdialog|extended_tip|emptyline" msgid "Adds an empty row after the data for each item in the pivot table." -msgstr "" +msgstr "Добавляет пустую строку после данных для каждого элемента сводной таблицы." #. xA7WG #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:275 @@ -21208,7 +21208,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:297 msgctxt "datafieldoptionsdialog|extended_tip|layout" msgid "Select the layout mode for the field in the list box." -msgstr "" +msgstr "Выберите режим размещения для поля в списке." #. qSCvn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:312 @@ -21226,7 +21226,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:352 msgctxt "datafieldoptionsdialog|extended_tip|show" msgid "Turns on the automatic show feature." -msgstr "" +msgstr "Включает функцию автоматического показа." #. n8bpz #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:365 @@ -21250,7 +21250,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:420 msgctxt "datafieldoptionsdialog|extended_tip|items" msgid "Enter the maximum number of items that you want to show automatically." -msgstr "" +msgstr "Введите максимальное количество автоматически отображаемых элементов." #. 6WBE7 #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:440 @@ -21268,13 +21268,13 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:445 msgctxt "datafieldoptionsdialog|extended_tip|from" msgid "Shows the top or bottom items in the specified sort order." -msgstr "" +msgstr "Показывает верхние или нижние элементы в заданном порядке сортировки." #. 7dxVF #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:460 msgctxt "datafieldoptionsdialog|extended_tip|using" msgid "Select the data field that you want to sort the data by." -msgstr "" +msgstr "Выберите поле данных, по которому вы хотите отсортировать данные." #. sVRqx #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:475 @@ -21286,7 +21286,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:546 msgctxt "datafieldoptionsdialog|extended_tip|hideitems" msgid "Select the items that you want to hide from the calculations." -msgstr "" +msgstr "Выберите элементы, исключаемые из вычислений." #. FDavv #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:557 @@ -21298,7 +21298,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:581 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 "Выберите иерархию для использования. Сводная таблица должна основываться на внешнем источнике данных, содержащем иерархии данных." #. qTAzs #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:594 @@ -21358,43 +21358,43 @@ #: 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 "Форма ввода данных - инструмент для облегчения ввода табличных данных в электронные таблицы." #. 6DQYr #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:25 msgctxt "dataproviderdlg/okaybtn" msgid "Okay" -msgstr "" +msgstr "ОК" #. Ah2h8 #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:38 msgctxt "dataproviderdlg/cancelbtn" msgid "Cancel" -msgstr "" +msgstr "Отмена" #. a7EFA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:88 msgctxt "dataproviderdlg|db_name" msgid "Database Range:" -msgstr "" +msgstr "Диапазон базы данных:" #. pSQ4F #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:113 msgctxt "dataproviderdlg/provider" msgid "Data Provider:" -msgstr "" +msgstr "Источник данных:" #. RGiXi #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:138 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:161 msgctxt "dataproviderdlg/browse_btn" msgid "Browse" -msgstr "" +msgstr "Обзор" #. GABzG #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:175 @@ -21544,7 +21544,7 @@ #: sc/uiconfig/scalc/ui/datastreams.ui:466 msgctxt "datastreams|extended_tip|DataStreamDialog" msgid "Live data stream for spreadsheets" -msgstr "" +msgstr "Потоки данных для электронных таблиц" #. 7s8rq #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:29 @@ -21664,13 +21664,13 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 msgctxt "datetimetransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. sM9XW #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:89 msgctxt "datetimetransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. nHoB2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18 @@ -21682,7 +21682,7 @@ #: 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 @@ -21748,7 +21748,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:358 msgctxt "definedatabaserangedialog|extended_tip|ContainsColumnLabels" msgid "Selected cell ranges contain labels." -msgstr "" +msgstr "Выбранные диапазоны содержат заголовки." #. QBs5X #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:370 @@ -21766,7 +21766,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:393 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 "Автоматически вставляет новые строки и столбцы в диапазон базы данных в документе при добавлении новых записей в базу данных." #. EveBu #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:405 @@ -21838,7 +21838,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 "Нажмите кнопку «Добавить» для добавления нового заданного имени." #. 6EGaz #: sc/uiconfig/scalc/ui/definename.ui:96 @@ -21862,19 +21862,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 "Введите имя области, для которой вы хотите задать ссылку или формулу." #. 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 "Ссылка на имя выбранной области отображается здесь в виде абсолютного значения." #. 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 "Выберите область действия именованного диапазона или именованной формулы. Документ (глобально) означает, что имя допустимо для всего документа." #. KZfrH #: sc/uiconfig/scalc/ui/definename.ui:214 @@ -21892,7 +21892,7 @@ #: sc/uiconfig/scalc/ui/definename.ui:253 msgctxt "definename|extended_tip|printarea" msgid "Defines the area as a print range." -msgstr "" +msgstr "Задаёт область в качестве диапазона печати." #. L5Ebf #: sc/uiconfig/scalc/ui/definename.ui:264 @@ -21904,31 +21904,31 @@ #: sc/uiconfig/scalc/ui/definename.ui:272 msgctxt "definename|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "" +msgstr "Задаёт область для использования в расширенном фильтре." #. 6W3iB #: sc/uiconfig/scalc/ui/definename.ui:283 msgctxt "definename|colheader" msgid "Repeat _column" -msgstr "Повторить с_толбец" +msgstr "Повторять с_толбец" #. bLAGo #: sc/uiconfig/scalc/ui/definename.ui:291 msgctxt "definename|extended_tip|colheader" msgid "Defines the area as a repeating column." -msgstr "" +msgstr "Задаёт область как повторяющийся столбец." #. jfJFq #: sc/uiconfig/scalc/ui/definename.ui:302 msgctxt "definename|rowheader" msgid "Repeat _row" -msgstr "Повторить строку" +msgstr "Повторять строку" #. WGYtk #: sc/uiconfig/scalc/ui/definename.ui:310 msgctxt "definename|extended_tip|rowheader" msgid "Defines the area as a repeating row." -msgstr "" +msgstr "Задаёт область как повторяющуюся строку." #. 47nrA #: sc/uiconfig/scalc/ui/definename.ui:325 @@ -21940,7 +21940,7 @@ #: sc/uiconfig/scalc/ui/definename.ui:331 msgctxt "definename|extended_tip|more" msgid "Allows you to specify the Area type (optional) for the reference." -msgstr "" +msgstr "Позволяет задать тип области для ссылки (необязательно)." #. gBKqi #: sc/uiconfig/scalc/ui/definename.ui:360 @@ -22030,7 +22030,7 @@ #: sc/uiconfig/scalc/ui/deletecolumnentry.ui:55 msgctxt "deletecolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. VWjSF #: sc/uiconfig/scalc/ui/deletecontents.ui:8 @@ -22162,13 +22162,13 @@ #: sc/uiconfig/scalc/ui/deleterowentry.ui:59 msgctxt "deleterow|column" msgid "Column" -msgstr "" +msgstr "Столбец" #. yhzDR #: sc/uiconfig/scalc/ui/deleterowentry.ui:68 msgctxt "deleterow|delete_btn" msgid "Delete" -msgstr "" +msgstr "Удалить" #. gB36A #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:8 @@ -22216,7 +22216,7 @@ #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:270 msgctxt "descriptivestatisticsdialog|extended_tip|DescriptiveStatisticsDialog" msgid "Fill a table in the spreadsheet with the main statistical properties of the data set." -msgstr "" +msgstr "Заполнить основными статистическими характеристиками набора данных таблицу на листе." #. f98e2 #: sc/uiconfig/scalc/ui/doubledialog.ui:8 @@ -22228,7 +22228,7 @@ #: sc/uiconfig/scalc/ui/doubledialog.ui:104 msgctxt "doubledialog|extended_tip|DoubleDialog" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Введите или измените значение выбранной настройки." #. Bp3Fw #: sc/uiconfig/scalc/ui/dropmenu.ui:12 @@ -22282,49 +22282,49 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15 msgctxt "erroralerttabpage-mobile|tsbshow" msgid "Show error _message when invalid values are entered" -msgstr "" +msgstr "Показывать сообщение об ошибке при вводе недопустимых значений" #. yMbrW #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:43 msgctxt "erroralerttabpage-mobile|action_label" msgid "_Action:" -msgstr "" +msgstr "Действие:" #. 2sruM #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:57 msgctxt "erroralerttabpage-mobile|title_label" msgid "_Title:" -msgstr "" +msgstr "Заглавие:" #. DALxA #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:105 msgctxt "erroralerttabpage-mobile|errormsg_label" msgid "_Error message:" -msgstr "" +msgstr "Сообщение об ошибке:" #. ZzEdw #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:118 msgctxt "erroralerttabpage-mobile|browseBtn" msgid "_Browse..." -msgstr "" +msgstr "Обзор..." #. hsbzw #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134 msgctxt "erroralerttabpage-mobile|actionCB" msgid "Stop" -msgstr "" +msgstr "Стоп" #. fcLJh #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135 msgctxt "erroralerttabpage-mobile|actionCB" msgid "Warning" -msgstr "" +msgstr "Предупреждение" #. trGJe #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:136 msgctxt "erroralerttabpage-mobile|actionCB" msgid "Information" -msgstr "" +msgstr "Информация" #. PL8Bz #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:15 @@ -22474,7 +22474,7 @@ #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:342 msgctxt "exponentialsmoothingdialog|extended_tip|ExponentialSmoothingDialog" msgid "Results in a smoothed data series" -msgstr "" +msgstr "Приводит к сглаживанию ряда данных" #. DbhH8 #: sc/uiconfig/scalc/ui/externaldata.ui:23 @@ -22492,7 +22492,7 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:136 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 "Введите URL или имя файла с данными для вставки, затем нажмите Enter." #. 2sbsJ #: sc/uiconfig/scalc/ui/externaldata.ui:148 @@ -22504,7 +22504,7 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:155 msgctxt "externaldata|extended_tip|browse" msgid "Open a file dialog to locate the file containing the data you want to insert." -msgstr "" +msgstr "Открыть диалоговое окно и найти файл с данными для вставки." #. FpyfT #: sc/uiconfig/scalc/ui/externaldata.ui:178 @@ -22516,7 +22516,7 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:242 msgctxt "externaldata|extended_tip|ranges" msgid "Select the table or the data range that you want to insert." -msgstr "" +msgstr "Выберите таблицу или диапазон данных для вставки." #. EhEDC #: sc/uiconfig/scalc/ui/externaldata.ui:261 @@ -22552,7 +22552,7 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:376 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 "Вставляет данные из файла HTML, Calc, CSV или Excel в текущий лист в качестве связи. Данные должны находиться в пределах именованного диапазона." #. tKoGc #: sc/uiconfig/scalc/ui/filldlg.ui:8 @@ -22660,7 +22660,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:291 msgctxt "filldlg|extended_tip|autofill" msgid "Forms a series directly in the sheet." -msgstr "" +msgstr "Формирует ряд непосредственно на листе." #. GhoPg #: sc/uiconfig/scalc/ui/filldlg.ui:308 @@ -22769,55 +22769,55 @@ #: sc/uiconfig/scalc/ui/filterdropdown.ui:130 msgctxt "filterdropdown|STR_EDIT_SEARCH_ITEMS" msgid "Search items..." -msgstr "" +msgstr "Поиск элементов..." #. zKwWE #: sc/uiconfig/scalc/ui/filterdropdown.ui:164 msgctxt "filterdropdown|STR_BTN_TOGGLE_ALL" msgid "All" -msgstr "" +msgstr "Все" #. JsSz6 #: sc/uiconfig/scalc/ui/filterdropdown.ui:183 msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT" msgid "Show only the current item." -msgstr "" +msgstr "Показать только текущий элемент." #. vBQYB #: sc/uiconfig/scalc/ui/filterdropdown.ui:198 msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT" msgid "Hide only the current item." -msgstr "" +msgstr "Скрыть только текущий элемент." #. XYJHx #: sc/uiconfig/scalc/ui/findreplaceentry.ui:28 msgctxt "findreplace|label_action" msgid "Find Replace Action" -msgstr "" +msgstr "Действие Найти и заменить" #. T9kUg #: sc/uiconfig/scalc/ui/findreplaceentry.ui:45 msgctxt "findreplace|find" msgid "Find" -msgstr "" +msgstr "Найти" #. mBfPJ #: sc/uiconfig/scalc/ui/findreplaceentry.ui:59 msgctxt "findreplace|replace" msgid "Replace With" -msgstr "" +msgstr "Заменить на" #. RF57t #: sc/uiconfig/scalc/ui/findreplaceentry.ui:73 msgctxt "findreplace|columns" msgid "Column" -msgstr "" +msgstr "Столбец" #. WWQzs #: sc/uiconfig/scalc/ui/findreplaceentry.ui:82 msgctxt "findreplace|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. AfnFz #: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34 @@ -23069,7 +23069,7 @@ #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:212 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 "Задаёт правила преобразования строковых значений в числовые значения, в ссылки на ячейки и в значения даты и времени. Влияет на встроенные функции, принимающие ссылку в виде строкового значения, например, ДВССЫЛ, а также на функции даты и времени, принимающие аргументы в виде строковых значений в форматах локали или ISO 8601." #. qUwp9 #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15 @@ -23147,7 +23147,7 @@ #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:405 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 "Производит анализ Фурье для набора данных путем вычисления дискретного преобразования Фурье (DFT) на входном массиве комплексных чисел с использованием алгоритмов быстрого преобразования Фурье (FFT)." #. FEwZR #: sc/uiconfig/scalc/ui/functionpanel.ui:63 @@ -23237,13 +23237,13 @@ #: sc/uiconfig/scalc/ui/functionpanel.ui:94 msgctxt "functionpanel|extended_tip|category" msgid "Displays the available functions." -msgstr "" +msgstr "Отображает доступные функции." #. V9ATp #: sc/uiconfig/scalc/ui/functionpanel.ui:141 msgctxt "functionpanel|extended_tip|funclist" msgid "Displays the available functions." -msgstr "" +msgstr "Отображает доступные функции." #. rmQie #: sc/uiconfig/scalc/ui/functionpanel.ui:175 @@ -23783,7 +23783,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "" +msgstr "Экспортирует все текстовые ячейки в кавычках, заданных в поле «Разделитель строк». Если флажок не установлен, в кавычки заключаются только те текстовые ячейки, которые содержат символ из поля «Разделитель полей»." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -23921,19 +23921,19 @@ #: 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 "Вставляет список всех именованных областей и их ссылок в текущей позиции курсора." #. ANtsf #: sc/uiconfig/scalc/ui/insertname.ui:70 msgctxt "insertname|paste" msgid "_Paste" -msgstr "" +msgstr "Вставить" #. TNPzH #: sc/uiconfig/scalc/ui/insertname.ui:79 msgctxt "insertname|extended_tip|paste" msgid "Inserts the selected named area and the corresponding cell reference at the current cursor position." -msgstr "" +msgstr "Вставляет выбранную именованную область и соответствующую ссылку на ячейку в текущем положении курсора." #. CJqeA #: sc/uiconfig/scalc/ui/insertname.ui:137 @@ -24113,7 +24113,7 @@ #: sc/uiconfig/scalc/ui/integerdialog.ui:112 msgctxt "integerdialog|extended_tip|IntegerDialog" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Введите или измените значение выбранной настройки." #. ihAsa #: sc/uiconfig/scalc/ui/leftfooterdialog.ui:8 @@ -24203,13 +24203,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 "Выберите область действия именованного диапазона или именованной формулы. Документ (глобально) означает, что имя допустимо для всего документа." #. 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 "Ссылка на имя выбранной области отображается здесь в виде абсолютного значения." #. EJrBk #: sc/uiconfig/scalc/ui/managenamesdialog.ui:288 @@ -24227,7 +24227,7 @@ #: 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 "Введите имя области, для которой вы хотите задать ссылку или формулу." #. dGcEm #: sc/uiconfig/scalc/ui/managenamesdialog.ui:361 @@ -24239,7 +24239,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:369 msgctxt "managenamesdialog|extended_tip|printrange" msgid "Defines the area as a print range." -msgstr "" +msgstr "Задаёт область в качестве диапазона печати." #. EjtHY #: sc/uiconfig/scalc/ui/managenamesdialog.ui:380 @@ -24251,31 +24251,31 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:388 msgctxt "managenamesdialog|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "" +msgstr "Задаёт область для использования в расширенном фильтре." #. UdLJc #: sc/uiconfig/scalc/ui/managenamesdialog.ui:399 msgctxt "managenamesdialog|colheader" msgid "Repeat _column" -msgstr "Повторить с_толбец" +msgstr "Повторять с_толбец" #. oipaa #: sc/uiconfig/scalc/ui/managenamesdialog.ui:407 msgctxt "managenamesdialog|extended_tip|colheader" msgid "Defines the area as a repeating column." -msgstr "" +msgstr "Задаёт область как повторяющийся столбец." #. c3b8v #: sc/uiconfig/scalc/ui/managenamesdialog.ui:418 msgctxt "managenamesdialog|rowheader" msgid "Repeat _row" -msgstr "Повторить строку" +msgstr "Повторять строку" #. RbPrc #: sc/uiconfig/scalc/ui/managenamesdialog.ui:426 msgctxt "managenamesdialog|extended_tip|rowheader" msgid "Defines the area as a repeating row." -msgstr "" +msgstr "Задаёт область как повторяющуюся строку." #. Rujwh #: sc/uiconfig/scalc/ui/managenamesdialog.ui:441 @@ -24287,13 +24287,13 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:447 msgctxt "managenamesdialog|extended_tip|more" msgid "Allows you to specify the Area type (optional) for the reference." -msgstr "" +msgstr "Позволяет задать тип области для ссылки (необязательно)." #. vVAh3 #: sc/uiconfig/scalc/ui/managenamesdialog.ui:472 msgctxt "managenamesdialog|extended_tip|add" msgid "Click the Add button to add a new defined name." -msgstr "" +msgstr "Нажмите кнопку «Добавить» для добавления нового заданного имени." #. MBAnE #: sc/uiconfig/scalc/ui/managenamesdialog.ui:491 @@ -24365,13 +24365,13 @@ #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:60 msgctxt "mergecolumnentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. cMGtd #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:69 msgctxt "mergecolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. 4kTrD #: sc/uiconfig/scalc/ui/movecopysheet.ui:16 @@ -25253,97 +25253,97 @@ msgstr "~Вид" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "~Изображение" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "~Изображение" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Рисунок" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Рисование" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Печать" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Печать" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Расширение" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Расширение" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Сервис" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Сервис" @@ -25702,139 +25702,139 @@ msgstr "_Изображение" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Расположение" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Цвет" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Сетка" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Язык" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Проверка" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Комментарии" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Сравнение" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Вид" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Рисунок" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Правка" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Расположение" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Вид" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Группа" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "Объём" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Шрифт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Выравнивание" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Вид" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Вставка" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Медиа" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Врезка" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Расположение" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Сетка" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Вид" @@ -26263,13 +26263,13 @@ #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:75 msgctxt "numbertransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. FFa8s #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:84 msgctxt "numbertransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. T2p5k #: sc/uiconfig/scalc/ui/optcalculatepage.ui:42 @@ -27541,7 +27541,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211 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 "Выберите тип промежуточного итога для расчёта. Этот параметр доступен только если выбран пользовательский параметр." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:228 @@ -27559,7 +27559,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250 msgctxt "pivotfielddialog|extended_tip|showall" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Включает пустые столбцы и строки в таблицу результатов." #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269 @@ -28597,13 +28597,13 @@ #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:60 msgctxt "replacenulltransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. KHAnu #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:69 msgctxt "replacenulltransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. vAFwf #: sc/uiconfig/scalc/ui/retypepassdialog.ui:10 @@ -30878,13 +30878,13 @@ #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:45 msgctxt "sorttransformationentry/cols" msgid "Column" -msgstr "" +msgstr "Столбец" #. 2nUfs #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:54 msgctxt "sorttransformationentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. JyYHP #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:74 @@ -30944,13 +30944,13 @@ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:60 msgctxt "splitcolumnentry/cols" msgid "Column" -msgstr "" +msgstr "Столбец" #. P8ZCJ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:69 msgctxt "splitcolumnentry|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. GJ7zg #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:76 @@ -31658,7 +31658,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:220 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 "Использует настраиваемый порядок сортировки, заданный в разделе %PRODUCTNAME Calc - Списки сортировки диалогового окна Параметры." #. fEyTF #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:235 @@ -31694,7 +31694,7 @@ #: sc/uiconfig/scalc/ui/swaprowsentry.ui:68 msgctxt "swaprows|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. 8AoGN #: sc/uiconfig/scalc/ui/tabcolordialog.ui:72 @@ -32060,13 +32060,13 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:65 msgctxt "texttransformationentry/cols" msgid "Columns" -msgstr "" +msgstr "Столбцы" #. aoBA3 #: sc/uiconfig/scalc/ui/texttransformationentry.ui:74 msgctxt "texttransformation_type|delete" msgid "Delete" -msgstr "" +msgstr "Удалить" #. D7zk3 #: sc/uiconfig/scalc/ui/tpviewpage.ui:31 @@ -32102,7 +32102,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:77 msgctxt "extended_tip|annot" msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialog box." -msgstr "" +msgstr "Маленький прямоугольник в правом верхнем углу ячейки указывает на наличие комментария. Комментарий будет показан только если включены подсказки в разделе %PRODUCTNAME - Общие диалогового окна Параметры." #. G6GjE #: sc/uiconfig/scalc/ui/tpviewpage.ui:88 diff -Nru libreoffice-7.3.4/translations/source/ru/sd/messages.po libreoffice-7.3.5/translations/source/ru/sd/messages.po --- libreoffice-7.3.4/translations/source/ru/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562696422.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "Т~аблица" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Изображение" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~Изображение" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "~Рисование" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Рисование" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Мастер" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Мастер" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Расширение" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Расширение" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Сервис" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Сервис" @@ -7062,109 +7062,109 @@ msgstr "~Таблица" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Изображение" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "~Изображение" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Рисование" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Рисование" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Объект" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Объект" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Медиа" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Медиа" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Мастер" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Мастер" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Расширение" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Расширение" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Сервис" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Сервис" @@ -8102,7 +8102,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:175 msgctxt "photoalbum|up_btn" msgid "_Up" -msgstr "" +msgstr "В_верх" #. Xzv9L #: sd/uiconfig/simpress/ui/photoalbum.ui:179 @@ -8114,7 +8114,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:190 msgctxt "photoalbum|down_btn" msgid "Do_wn" -msgstr "" +msgstr "В_низ" #. ANTjq #: sd/uiconfig/simpress/ui/photoalbum.ui:194 @@ -9488,31 +9488,31 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:56 msgctxt "slidecontextmenu|4" msgid "_Very Thin" -msgstr "Очень тонкий" +msgstr "Очень тонко" #. otGpz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:64 msgctxt "slidecontextmenu|100" msgid "_Thin" -msgstr "Тонкий" +msgstr "Тонко" #. 76rP5 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:72 msgctxt "slidecontextmenu|150" msgid "_Normal" -msgstr "Обычный" +msgstr "Обычно" #. g56Pz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:80 msgctxt "slidecontextmenu|200" msgid "_Thick" -msgstr "Толстый" +msgstr "Толсто" #. hrkGo #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:88 msgctxt "slidecontextmenu|400" msgid "_Very Thick" -msgstr "Очень толстый" +msgstr "Очень толсто" #. 222Gq #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:100 diff -Nru libreoffice-7.3.4/translations/source/ru/svx/messages.po libreoffice-7.3.5/translations/source/ru/svx/messages.po --- libreoffice-7.3.4/translations/source/ru/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"PO-Revision-Date: 2022-07-15 17:24+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1564293177.000000\n" #. 3GkZj @@ -10470,7 +10470,7 @@ #: include/svx/svxitems.hrc:82 msgctxt "RID_ATTR_NAMES" msgid "Emphasis mark" -msgstr "Метка выделения" +msgstr "Знак ударения" #. yKetF #: include/svx/svxitems.hrc:83 diff -Nru libreoffice-7.3.4/translations/source/ru/sw/messages.po libreoffice-7.3.5/translations/source/ru/sw/messages.po --- libreoffice-7.3.4/translations/source/ru/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1563892980.000000\n" #. v3oJv @@ -10506,19 +10506,19 @@ msgstr "Перемещает выбранный стиль абзаца на один уровень вниз в иерархии указателя." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Стиль" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стили" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Создаёт элементы указателя из конкретных стилей абзаца." @@ -13962,37 +13962,37 @@ msgstr "Выбор активного источника данных" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Задать" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Используемые источн. данных" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Доступные источники данных" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Обзор..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Открывает диалоговое окно открытия файла, в котором можно выбрать файл базы данных (*.odb). Выбранный файл добавляется в список доступных баз данных." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Используйте кнопку обзора для выбора файла базы данных." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Выводит список используемых в данный момент источников данных." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Выводит список зарегистрированных в %PRODUCTNAME источников данных." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Источники данных" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Используемый источник данных:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Измените источники данных для текущего документа." @@ -18873,7 +18873,7 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:30 msgctxt "mastercontextmenu|STR_UPDATE_INDEX" msgid "Indexes" -msgstr "Индексы" +msgstr "Указатели" #. NekK7 #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:38 @@ -20082,109 +20082,109 @@ msgstr "Использовать текущий документ" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Использует текущий документ Writer в качестве основы документа для рассылки." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Создать документ" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Создаёт новый документ Writer для использования при рассылке писем." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Начать с существующего документа" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Выберите существующий документ Writer для использования в качестве основы документа для рассылки." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Начать с шаблона" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Выберите шаблон, на основе которого следует создать документ для рассылки." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Начать с документа, с которого начинали в прошлый раз" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Использует существующий документ рассылки в качестве основы для нового документа рассылки." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Выберите начальный документ." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Обзор..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Найдите нужный документ Writer и затем щёлкните кнопку Открыть." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Обзор..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Выберите начальный документ" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22327,49 +22327,49 @@ msgstr "Объект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Параметры" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Обтекание" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гиперссылка" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Обрамление" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Область" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Прозрачность" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27065,7 +27065,7 @@ msgstr "Обновить" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ru/vcl/messages.po libreoffice-7.3.5/translations/source/ru/vcl/messages.po --- libreoffice-7.3.4/translations/source/ru/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ru/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-03-04 05:39+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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563271245.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Печатает весь документ." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Настроить:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Если необходимо изготовить раздаточный материал, укажите количество слайдов, которое следует печатать на одном листе бумаги." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Страницы:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Выбор числа строк." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "по" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Выбор числа колонок." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Поле:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Выберите подтип базового типа диаграммы." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "между страницами" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Расстояние:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Выбор порядка сортировки." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "от края страницы" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Порядок:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "слева направо, затем вниз" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "сверху вниз, затем направо" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "сверху вниз, затем налево" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "справа налево, потом вниз" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Выберите базовый тип диаграммы." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Рисовать рамку вокруг каждой страницы" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Щёлкните для перехода на страницу мастера с соответствующим именем." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "~Брошюра" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Выберите для печати документа брошюрой." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Просмотр порядка" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Задайте расположение страниц на бумаге. Просмотр показывает, как будет выглядеть каждый лист в конечном итоге." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Ещё" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Макет страницы" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Общие" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Печать текущего документа, выделения или указанных страниц. Для текущего документа также можно задать параметры печати." diff -Nru libreoffice-7.3.4/translations/source/rw/chart2/messages.po libreoffice-7.3.5/translations/source/rw/chart2/messages.po --- libreoffice-7.3.4/translations/source/rw/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3697,7 +3697,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/cui/messages.po libreoffice-7.3.5/translations/source/rw/cui/messages.po --- libreoffice-7.3.4/translations/source/rw/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17534,177 +17534,152 @@ msgid "Automatic" msgstr "Byikora" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Inyuranyamigaragarire Ihanitse" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/dbaccess/messages.po libreoffice-7.3.5/translations/source/rw/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/rw/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Kinyarwanda \n" @@ -3462,74 +3462,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Byakoreshejwe vuba" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Gufungura" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3537,7 +3537,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/extensions/messages.po libreoffice-7.3.5/translations/source/rw/extensions/messages.po --- libreoffice-7.3.4/translations/source/rw/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,593 +309,579 @@ msgid "Refresh form" msgstr "Kugaruraho ifishi" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Kubona" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Kohereza" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Gifite ibice byinshi" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Umwandiko" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Mbonera (bigufi)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Cyemewe (kigufi YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Cyemewe (kigufi YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Mbonera (birebire)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "DD/MM/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "DD/MM/YY" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "DD/MM/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "DD/MM/YYYY" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "DD-MM-YY" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "DD-MM-YYYY" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Rutatoranyijwe" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Zatoranyijwe" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Rutagenwe" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Ibyabitswe byose" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Igifunguye" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Paji ugezeho" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Oya" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yego" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Ifishi fatizo" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Guhagarara" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Nta na kimwe" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "cyonyine" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Nkomatane" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Igice" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Bitambitse" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Bihagaritse" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Gisanzweho" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "YEGO" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Kureka" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ifashayobora" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Icyinjizwamo cyatoranyijwe" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Ahajya icyinjijwe cyatoranyijwe" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Umurongo umwe" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Imirongo-myinshi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Imirongo-myinshi ifite ihinduramiterere" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Nta na kimwe" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Bitambitse" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Bihagaritse" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Byombi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Ikinyamubyimba" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Kirambuye" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ibumoso hejuru" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ibumoso hagati" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ibumoso hasi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Iburyo hejuru" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Iburyo hagati" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Iburyo hasi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Hejuru ibumoso" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Hejuru hagati" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Hejuru iburyo" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Hasi ibumoso" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Hasi hagati" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Hasi iburyo" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Hagati" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Kubika" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Gusimbura" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Gusenyuka" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Oya" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ibumoso ujya iburyo" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Iburyo-ugana-ibumoso" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Gukoresha amagenamiterere atunganye cyane y'igikoresho" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Igika" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Nk'inyuguti" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Kuri Paji" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ikadiri" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Kugera ku nyuguti" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Kuri Paji" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/rw/fpicker/messages.po libreoffice-7.3.5/translations/source/rw/fpicker/messages.po --- libreoffice-7.3.4/translations/source/rw/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Izina rya dosiye" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Ubwoko ~dosiye:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Gusoma gusa" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Kubika n'ijambobanga" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Umugereka w'izina ryikoresha rya dosiye" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Guhindura amagenamiterere ya muyunguruzi" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/sc/messages.po libreoffice-7.3.5/translations/source/rw/sc/messages.po --- libreoffice-7.3.4/translations/source/rw/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25829,97 +25829,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26305,157 +26305,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Gutunganya" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Ibara" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Urusobetudirishya" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ururimi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Isubiramo" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Ibisobanuro" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Igaragaza" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Kwandika" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Gutunganya" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Igaragaza" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Itsinda" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Imyandikire" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Itunganya" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Igaragaza" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Kongeramo" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ikadiri" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Gutunganya" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Urusobetudirishya" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/rw/sd/messages.po libreoffice-7.3.5/translations/source/rw/sd/messages.po --- libreoffice-7.3.4/translations/source/rw/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4257,109 +4257,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7235,109 +7235,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/sw/messages.po libreoffice-7.3.5/translations/source/rw/sw/messages.po --- libreoffice-7.3.4/translations/source/rw/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10760,20 +10760,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Imisusire" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14350,38 +14350,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "Gusobanura" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Gushakisha..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14389,31 +14389,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20715,111 +20715,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Gushakisha..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Gushakisha..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23002,50 +23002,50 @@ msgstr "Igikoresho" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Ubwoko" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Amahitamo" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Gufunika" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ihuzanyobora" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Impera" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Ubuso" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ibonerana" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makoro" @@ -27927,7 +27927,7 @@ msgstr "Kuvugurura" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/rw/vcl/messages.po libreoffice-7.3.5/translations/source/rw/vcl/messages.po --- libreoffice-7.3.4/translations/source/rw/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/rw/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2340,170 +2340,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Iboneza" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ku" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Udutabo" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/chart2/messages.po libreoffice-7.3.5/translations/source/sah/chart2/messages.po --- libreoffice-7.3.4/translations/source/sah/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3599,7 +3599,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/cui/messages.po libreoffice-7.3.5/translations/source/sah/cui/messages.po --- libreoffice-7.3.4/translations/source/sah/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17108,176 +17108,152 @@ msgid "Automatic" msgstr "" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/dbaccess/messages.po libreoffice-7.3.5/translations/source/sah/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sah/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3321,73 +3321,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3395,7 +3395,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/extensions/messages.po libreoffice-7.3.5/translations/source/sah/extensions/messages.po --- libreoffice-7.3.4/translations/source/sah/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -290,536 +290,524 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/fpicker/messages.po libreoffice-7.3.5/translations/source/sah/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sah/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -211,55 +211,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/sc/messages.po libreoffice-7.3.5/translations/source/sah/sc/messages.po --- libreoffice-7.3.4/translations/source/sah/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25167,97 +25167,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25616,139 +25616,139 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/sd/messages.po libreoffice-7.3.5/translations/source/sah/sd/messages.po --- libreoffice-7.3.4/translations/source/sah/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4159,109 +4159,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7049,109 +7049,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/sw/messages.po libreoffice-7.3.5/translations/source/sah/sw/messages.po --- libreoffice-7.3.4/translations/source/sah/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10495,19 +10495,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13951,37 +13951,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13989,31 +13989,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20068,109 +20068,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22313,49 +22313,49 @@ msgstr "" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27043,7 +27043,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sah/vcl/messages.po libreoffice-7.3.5/translations/source/sah/vcl/messages.po --- libreoffice-7.3.4/translations/source/sah/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sah/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2316,169 +2316,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/chart2/messages.po libreoffice-7.3.5/translations/source/sa-IN/chart2/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3693,7 +3693,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/cui/messages.po libreoffice-7.3.5/translations/source/sa-IN/cui/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Sanskrit \n" @@ -17625,177 +17625,153 @@ msgid "Automatic" msgstr "स्वतः" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High-contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Screen font anti-aliasin_g" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 #, fuzzy msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "पृथक्त्वसूची" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/dbaccess/messages.po libreoffice-7.3.5/translations/source/sa-IN/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Sanskrit \n" @@ -3476,75 +3476,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "एम्बेडेड् डाटाबेस्" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "अव्यवहितपूर्वकाले प्रयुक्तः" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "उद्घाटय" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3552,7 +3552,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/extensions/messages.po libreoffice-7.3.5/translations/source/sa-IN/extensions/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -305,596 +305,584 @@ msgid "Refresh form" msgstr "अस्मात् नवीकुरु " -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "लभस्व" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "पोस्ट्" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "बह्भागः " #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "पाठः" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "मानकः (लघु)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "प्रमाणम् (लघु YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "प्रमाणम् (लघु YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "मानकः (वृहत्)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "न वृतम् " #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "वृतम् " #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "न निर्दिष्टम् " #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "सर्वे लेखाः " #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "क्रियावत्लेखाः " #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "वरत्मानपृष्ठम् " #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "न" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "आम्" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "प्रभवफोर्म् " #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "स्थगय" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "न" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "एकैकम्" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "बहु" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "गोचरः" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "क्षैतिजम्" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "ऊर्ध्वाधरम्" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "मूलभूतम्" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "निरसनं कुरु " #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "सहायम् " #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "वृतनिवेशनम् " #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "वृतनिवेशनस्य स्थानम् " #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "पंक्तिः" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "बहु-पंक्तिः" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "बहु-पंक्ति-संरूपणम् " #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "न" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "क्षैतिजम्" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "ऊर्ध्वाधरम्" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "उभयः" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "समानम्" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "वाम-उपरि" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "वाम-केन्द्रिकः" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "वाम-नीचैः" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "दक्षिण-उर्धैः " #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "दक्षिण-केन्द्रिकः" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "दक्षिण-नीचैः " #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "उर्धैः वामपार्श्वः" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "उर्धैः केन्द्रिकः" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "उर्धैः दक्षिणपार्श्वः" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "नीचैः वाम्पार्श्वः" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "नीचैः केन्द्रिकः" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "नीचैः वामपार्श्वः" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "केन्द्रितम्" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "संरक्षय" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "प्रतिस्थापय" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "विश्रम्सय" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "न" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "अनुपातं स्थापय" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "वामतः दक्षिणम्" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "दक्षिणतः वामः" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "अधिअक्षीय-वस्तु-स्थापनायाः प्रयोगं कुरू" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "यदा केन्द्रितम्" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "सदा" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "अनुच्छेदः" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "संप्रतीकः" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठं प्रति" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "आबन्धम्" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "संप्रतीकः" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "पृष्ठं प्रति" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/fpicker/messages.po libreoffice-7.3.5/translations/source/sa-IN/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "फैल्नाम :" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "संञ्चिकायाः वर्गः (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "केवलं पाठार्थं (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "कूटशब्देन सह संरक्षय" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "स्वचालित-संञ्चिका-नाम्नः विस्तारः (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "निष्यन्दक-संस्थापनं संपादयतु " #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/sc/messages.po libreoffice-7.3.5/translations/source/sa-IN/sc/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25911,97 +25911,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26391,157 +26391,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "विन्यासय" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "जालिका" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "भाषा" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "समीक्षा" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "टिप्पणी" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "दृश्यम्" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "सम्पादय" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "विन्यासय" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "दृश्यम्" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "समूहः" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "अक्षरगणः" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "पङ्क्तीकरणम्" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "दृश्यम्" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "समावेशय" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "आबन्धः" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "विन्यासय" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "जालिका" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/sd/messages.po libreoffice-7.3.5/translations/source/sa-IN/sd/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4254,109 +4254,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7238,109 +7238,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/sw/messages.po libreoffice-7.3.5/translations/source/sa-IN/sw/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10781,19 +10781,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "शैल्यः" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14355,39 +14355,39 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "परिभाषय" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्रौस् कुरु..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14397,31 +14397,31 @@ " Use the browse button to select a database file." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20719,112 +20719,112 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्रौस् कुरु..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्रौस् कुरु..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "संदेशनिमज्जनस्य कृते प्रारम्भिक-लेखपत्रं चिनुत" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23008,49 +23008,49 @@ msgstr "वस्तु" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "प्रकारः" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "विकल्पाः" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "आवरणम्" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "हैपर्लिङ्क्" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "सीमाः" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "क्षेत्रम्" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "पारदर्शिता" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "मैक्रो" @@ -27962,7 +27962,7 @@ msgstr "नवीकुरु" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sa-IN/vcl/messages.po libreoffice-7.3.5/translations/source/sa-IN/vcl/messages.po --- libreoffice-7.3.4/translations/source/sa-IN/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sa-IN/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2349,170 +2349,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "स्वेच्छा" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "द्वारा" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "पृष्ठेषु मध्ये" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "शीट्सीमायै" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "प्रतपृष्ठं परिवृतं सीमाम् आलिख" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "पुस्तिकाः" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/chart2/messages.po libreoffice-7.3.5/translations/source/sat/chart2/messages.po --- libreoffice-7.3.4/translations/source/sat/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3690,7 +3690,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/cui/messages.po libreoffice-7.3.5/translations/source/sat/cui/messages.po --- libreoffice-7.3.4/translations/source/sat/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17669,181 +17669,155 @@ msgid "Automatic" msgstr "आच् ते(~u)" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "High-contrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Use hard_ware acceleration" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Use Anti-A_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Graphics output" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Show p_review of fonts" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Screen font anti-aliasin_g" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "fro_m" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Font Lists" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/dbaccess/messages.po libreoffice-7.3.5/translations/source/sat/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sat/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3509,74 +3509,74 @@ msgstr "Create a n_ew database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "भितिरी थापोन डाटा बेस ." #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Open an existing database _file" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Recently used:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "झिज" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Connect to an e_xisting database" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3584,7 +3584,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/extensions/messages.po libreoffice-7.3.5/translations/source/sat/extensions/messages.po --- libreoffice-7.3.4/translations/source/sat/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,605 +304,593 @@ msgid "Refresh form" msgstr "Refresh form" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ञाम" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "डाक कुल (~a)" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URLयूआरएल" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "आ़डी हा़टिञ" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ओनोलओनोल " #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "बातावाक् (खाटो)नाप (हुडिञ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "बातावाक् (खाटो)नाप (हुडिञ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "बातावाक् (खाटो)नाप (हुडिञ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "बातावाक् (जिलिञ)नाप (जिलिञ)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM (~C)" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "बाङ बाछावाक्" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "बाछावबाछाव." #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "बाङ गोटा" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "All records" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Active record" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Current page" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "बाङबाङ " #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "होयहें" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "जानाम तेयार (~g)" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_Top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "जाहानाक् बाङ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "एकलाअकेला" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "आ़डी लेकान" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Range" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "भिंदाड़ गारगितिज गार" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "सोझे गारतिंगु गार" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "मुल फेडातहुड़ाक्" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "बेस गे" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "बा़डरा़य मे" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "गोड़ो" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "बाछावाक् आदेर" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "बाछाव आदे रेयाक् टेप" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "मित्-गार" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "सांगे-गार" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "तेयार सांव सांगे गार" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)CR+LF (विन्डो )" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "जाहानाक् बाङ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "भिंदाड़ गारगितिज गार" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "सोझे गारतिंगु गार" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "बानार" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "चापड़ा" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "चेतान लेंगा सेत्" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ताला माला लेंगा सेत्" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "लातार लेंगा सेत्" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "चेतान जोजोम सेत्" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ताला माला जोजोम सेत्" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "लातार जोजोम सेत्" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "चेतान लेंगा सेत्" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "चेतान ताला सेत्" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "चेतान जोजोम सेत्" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "लेंगा लातार सेत्" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ताला लातार सेत्" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "जोजोम लातार सेत्" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centeredताला उता़र" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "जोगाव दोहो" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "साहासाहाय मे" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "तापुकतापुक, जोमा जारवा" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "बाङबाङ " #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Keep ratio" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "_Fit to size" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "लेंगा-खोन-जोजोमलेंगा खोन जोजोम " #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Right-to-left" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "हातावक् ओसारमाराङ आरी जिनिस साजाव को बेभार" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Never" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "तिन रे उदुगोआ ." #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Always" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "खोदखोद रे" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Character" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "साहटासाहटा रे" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "सांचावसाद रे" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Character" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "साहटासाहटा रे" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sat/fpicker/messages.po libreoffice-7.3.5/translations/source/sat/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sat/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -219,61 +219,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "रेत् ञुतुम:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "रेत लेकान (~t):रेत् लेकान: (~t)" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "पाड़हाव एसकार (~R)पडहाव एसकार (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "दानाङ साबाद सांव साञचावदानाङ साबाद सांव सांचाव मे (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "आच् ते रेत रेयाक् ञुतुम जिलिञोक् (~A)आच् ते तेयार रेत् ञुतुम पासनाव (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "छानियाक् साजाव रेयाक् सापड़ावछा़नियाक् साजाव को सासापड़ाव (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/sc/messages.po libreoffice-7.3.5/translations/source/sat/sc/messages.po --- libreoffice-7.3.4/translations/source/sat/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25915,97 +25915,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26393,154 +26393,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "साजाव, बेबोसतासाजाव मे" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_olour" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Grid" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Language" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "किरिञ मा़हित्.किरिञ मा़हित् ." #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comments" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ञेनेल" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edit" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "साजाव, बेबोसतासाजाव मे" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ञेनेल" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "दोल " #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "फॉन्ट" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "सोमान थार होचो" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ञेनेल" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "सोगेआदेर" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "मिडिया (~u)" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "साजसाज " #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "साजाव, बेबोसतासाजाव मे" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Grid" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sat/sd/messages.po libreoffice-7.3.5/translations/source/sat/sd/messages.po --- libreoffice-7.3.4/translations/source/sat/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4260,109 +4260,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7236,109 +7236,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/sw/messages.po libreoffice-7.3.5/translations/source/sat/sw/messages.po --- libreoffice-7.3.4/translations/source/sat/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10782,19 +10782,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "हुना़र को ." #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14344,38 +14344,38 @@ msgstr "Exchange Databases" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Define" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Databases in Use" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Available Databases" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "ब्रॉउज करें..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14385,31 +14385,31 @@ " डाटाबेस रेत् बाछाव ला़गित् पानते बुता़म बेभार मे." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Exchange Databases" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database applied to document:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20678,112 +20678,112 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "ब्रॉउज करें...पानते मे..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "ब्रॉउज करें...पानते मे..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "मेल मेसा ला़गित् एतोहोप दोलिल बाछाव मे." #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22961,51 +22961,51 @@ msgstr "जिनिस" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "टाइप ओल" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "आपनार मोने तेयाक्" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "गुड़या़व (~k)" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "सीमा़ धारे" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "जायगा, ठांवझायगा" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ञेल पारोमाक्" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "माराङ" @@ -27906,7 +27906,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sat/vcl/messages.po libreoffice-7.3.5/translations/source/sat/vcl/messages.po --- libreoffice-7.3.4/translations/source/sat/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sat/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2354,171 +2354,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "कुसी लेका नाक्:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "दाराय तेहोतेते" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "साहटा को ताला" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "पातार सिमा़ धारे" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "जोतो साहटा धारे ते मित् सिमा़ गार मे" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "हुडिञ पुथी को" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/chart2/messages.po libreoffice-7.3.5/translations/source/sd/chart2/messages.po --- libreoffice-7.3.4/translations/source/sd/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3718,7 +3718,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/cui/messages.po libreoffice-7.3.5/translations/source/sd/cui/messages.po --- libreoffice-7.3.4/translations/source/sd/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17594,179 +17594,153 @@ msgid "Automatic" msgstr "خودڪار" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "اوچ فرق" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "آڪسيجن" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "عمدو" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "اَکرن جون آئوٽ پٽ" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "فانٽن جون ياداشتون" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/dbaccess/messages.po libreoffice-7.3.5/translations/source/sd/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sd/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3445,75 +3445,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "لٽيل آڌار سامگري" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "حال ۾ استعمال ڪيل" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "کوليو" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3521,7 +3521,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/extensions/messages.po libreoffice-7.3.5/translations/source/sd/extensions/messages.po --- libreoffice-7.3.4/translations/source/sd/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,599 +304,587 @@ msgid "Refresh form" msgstr "فارم نئين سر تازو ڪريو" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "حاصل ڪريو" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "عهدو" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "ٻهو قسمي حصو" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "متن" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "معيار (ننڍو)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "معيار (ننڍو)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "معيار (ننڍو)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "معيار (لمبو)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "نہ چونڊيو ويو" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "چونڊيو" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "وصف نہ ڏني ويئي" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "سڀ رڪارڊ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "متحرڪ رڪارڊ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "حالي تاريخ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "نہ " #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ها" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "بنيادي روپ" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "رُڪو" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ڪجهە بە نە" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "واحد" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "ٻهو" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "کيتر" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "اُفقي " #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "عمودي " #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "وڪلپ جي غير مؤجودگيءَ سبب اڳ ۾ ئي اَپنايل" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ٺيڪ" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "رد ڪريو" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "مدد ڪريو " #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "چونڊيل داخلا" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "چونڊيل داخلا جي حالت" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "واحد ليڪ" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ٻهو ليڪ" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "رچنا سان ٻهو ليڪ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ڪجهە بە نە" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "اُفقي " #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "عمودي " #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ٻَئي" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "هم وار" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "کاٻو مٿُ" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "کاٻو مرڪزي" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "کاٻو تَرُ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ساڄو مَٿُ" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ساڄو مرڪزي" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ساڄو تَرُ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "مٿان کاٻو" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "مٿان مرڪزي" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "مٿان ساڄو" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "هيٺ کاٻو" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "هيٺ مرڪزي" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "هيٺ ساڄو" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "مرڪز ۾ " #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "سانڍيو" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "عيوض ۾ رکو" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ڊهي پيو" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "نہ " #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "سراسري قائم رکو" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "کاٻي کان ساڄي" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ساڄي - کان - کاٻي" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "سوپر آرڈی نیٹ آبجیکٹ کااستعمال کرو۔" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ڪڏهن بە نە" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "جڏهن مرڪز ۾ آندو وڃي ٿو" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "هميشهە" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "فقرو" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "اَکر" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "صفحي ۾" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "فريم " #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "اَکر" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "صفحي ۾" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sd/fpicker/messages.po libreoffice-7.3.5/translations/source/sd/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sd/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,61 +213,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "فائل جو نالو" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr " (~t): فائل جو قسم" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr " (~R) فقط پڙهو" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ڳجہي لفظ سان سانڍيو" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr " (~A) خودڪار فائيل جي نالي جو وستار" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "فلٽر جي طئہ ترتيبن جو سمپادن ڪريو" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/sc/messages.po libreoffice-7.3.5/translations/source/sd/sc/messages.po --- libreoffice-7.3.4/translations/source/sd/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26140,97 +26140,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26617,158 +26617,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "سلسلي ۾ رکو" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "رنگ" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ڄارُ" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "ٻولي" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "نظرثاني" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ٽپڻي" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "نظارو" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "سمپادن ڪريو" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "سلسلي ۾ رکو" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "نظارو" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "گروپُ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "فانٽ" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "سڌائي" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "نظارو" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "داخل ڪريو" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ميڊيا" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "فريمُ " #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "سلسلي ۾ رکو" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ڄارُ" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sd/sd/messages.po libreoffice-7.3.5/translations/source/sd/sd/messages.po --- libreoffice-7.3.4/translations/source/sd/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4249,109 +4249,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7230,109 +7230,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/sw/messages.po libreoffice-7.3.5/translations/source/sd/sw/messages.po --- libreoffice-7.3.4/translations/source/sd/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10778,19 +10778,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "نمونا" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14358,38 +14358,38 @@ msgstr "آڌار سامگريون مَٽايو" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "وصف ڏيو" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "آڌار سامگزيون اِستعمال ۾" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "برائوز ڪريو۔۔۔" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14397,31 +14397,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "آڌار سامگريون مَٽايو" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "آڌار سامگزي دستاويز تي لاڳو ڪئي ويئي" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20722,112 +20722,112 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "برائوز ڪريو۔۔۔" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "برائوز ڪريو۔۔۔" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 #, fuzzy msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "ميل جذب ڪرڻ لاءِ شروعات جو دستاويز چونڊيو" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23009,50 +23009,50 @@ msgstr "شئہ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "قسم" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "وڪلپَ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "لپيٽيو" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "اوُچ ڪڙي" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "ڪِنارا" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "کيتر" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "شفافيت" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ميڪرو" @@ -27954,7 +27954,7 @@ msgstr "اَپڊيٽ ڪريو" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sd/vcl/messages.po libreoffice-7.3.5/translations/source/sd/vcl/messages.po --- libreoffice-7.3.4/translations/source/sd/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sd/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2350,171 +2350,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "هلي چلي:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ذريعي" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "صفحن جي وچ ۾" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "سيٽ جي ڪناري تي" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "هر صفحي جي چؤطرف ڪنار ڪينچيو" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "بروشر " #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/chart2/messages.po libreoffice-7.3.5/translations/source/si/chart2/messages.po --- libreoffice-7.3.4/translations/source/si/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -3694,7 +3694,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/cui/messages.po libreoffice-7.3.5/translations/source/si/cui/messages.po --- libreoffice-7.3.4/translations/source/si/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -17554,179 +17554,153 @@ msgid "Automatic" msgstr "ස්වයංක්‍රීය" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ඉහල දීප්ති වෙනස " - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ඔක්සිජන්" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "සම්භාවනීය" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "චිත්‍රක ප්‍රතිදානය" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "ෆොන්ටවල පෙරදැකුම් පෙන්වන්න (_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "ෆොන්ට ලැයිස්තු" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/dbaccess/messages.po libreoffice-7.3.5/translations/source/si/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/si/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -3472,75 +3472,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "එබ්බවූ දත්ත සමුදාය" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "මෑතකදි භාවිත කළ" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "විවෘත කරන්න" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3548,7 +3548,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/extensions/messages.po libreoffice-7.3.5/translations/source/si/extensions/messages.po --- libreoffice-7.3.4/translations/source/si/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -308,602 +308,588 @@ msgid "Refresh form" msgstr "පෝරමය නැවුම් කරන්න" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "ලබා ගන්න" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "තැපැල් කරන්න" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "බහු කොටස්" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "පෙළ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "සම්මතය (කෙටි)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "සම්මත (කෙටි YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "සම්මත (කෙටි YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "සම්මතය (දිගු)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "තෝරා නැත" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "තේරූ" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "අර්ථ දක්වා නැත" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "සියළු රෙකෝඩ" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ක්‍රියාකාරී රෙකෝඩය" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "වත්මන් පිටුව" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "එපා" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ඔව්" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "මූල පෝරමය" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "නවත්නන" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "කිසිවක් නැත" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "තනි" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "බහු" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "පරාසය" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "තිරස්" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "සිරස්" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "පෙරනිමි" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "හරි" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "වසන්න" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "උදව්" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "තේරූ ඇතුල් කිරීම" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "තේරූ ඇතුල් කිරීමේ පිහිටීම" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "තනි රේඛාව" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "බහු රේඛාව" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "හැඩතල සහිත බහු රේඛාව" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "කිසිවක් නැත" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "තිරස්" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "සිරස්" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ද්වී" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "පැතලි" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "වම් පස මුදුන" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "වම් පස මැදට වූ" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "වම් පස පතුල" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "දකුණු පස මුදුන" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "දකුණු පස මැදට වූ" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "දකුණු පස පතුල" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ඉහල වම" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ඉහළ මැදට වූ" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ඉහළ දකුණ" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "පහළ වම" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "පහළ මැදට වූ" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "පහළ දකුණ" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "මැදට වූ" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ආරක්ෂා කරන්න" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "හකුළන්න" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "එපා" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "අනුපාතය තබාගන්න" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ප්‍රමාණයට ගලපන්න" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "වම-සිට-දකුණට" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "දකුණේ-සිට-වමට" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "විශිෂ්ට වස්තු සැකසුම් භාවිත කරන්න." #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "කවදාවත් නැත" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "නාඹිගත කල විට" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "සැමවිටම" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ඡේදයට" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "අනු ලකුණක් ලෙස" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "පිටුවට" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "රාමුවට" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "අනු ලකුණට" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "පිටුවට" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/si/fpicker/messages.po libreoffice-7.3.5/translations/source/si/fpicker/messages.po --- libreoffice-7.3.4/translations/source/si/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ගොනු නාමය: " #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ගොනු වර්‍ගය (~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "කියවීමට පමණයි (~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "මුරපදය සමඟ සුරකින්න (~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ස්වයංක්‍රීය ගොනු නාම දිගුව (~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "පෙරහන සිටුවම් සංස්කරණය කරන්න (~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/sc/messages.po libreoffice-7.3.5/translations/source/si/sc/messages.po --- libreoffice-7.3.4/translations/source/si/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -25742,97 +25742,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26219,153 +26219,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ඇසිරීම" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "වර්ණය (_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "ජාලකය (_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "භාෂාව (_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "විචාරණය" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "අදහස් (_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "දසුන" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "සංස්කරණය කරන්න (_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ඇසිරීම" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "දසුන" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "සමූහය" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ෆොන්ටය" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "පෙළ ගැස්ම" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "දසුන" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ඇතුල් කරන්න" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "මාධ්‍යය" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "රාමුව" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ඇසිරීම" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "ජාලකය (_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/si/sd/messages.po libreoffice-7.3.5/translations/source/si/sd/messages.po --- libreoffice-7.3.4/translations/source/si/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -4252,109 +4252,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7230,109 +7230,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/sw/messages.po libreoffice-7.3.5/translations/source/si/sw/messages.po --- libreoffice-7.3.4/translations/source/si/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -10736,19 +10736,19 @@ msgstr "තෝරාගත් ඡේද මෝස්තරය සූචක ධුරාවලිය තුල එක් මට්ටමක් පහලට ගෙනයයි." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "විලාස" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "විශේෂී ඡේද මෝස්තර වලින් සූචක ඇතුලත් කිරීම් නිර්මාණය කරයි." @@ -14289,37 +14289,37 @@ msgstr "දත්ත සමුදාය හුවමාරු කරන්න" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "අර්ථ දක්වන්න" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "භාවිතාවේ ඇති දත්ත සමුදාය" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "පිරික්සන්න..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14329,31 +14329,31 @@ "දත්ත සමුදාය ගොනුවක් තේරීම සඳහා පිරික්සන්න බොත්තම භාවිතා කරන්න." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "දත්ත සමුදාය හුවමාරු කරන්න" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ලේඛයට යෙදූ දත්ත සමුදාය:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20620,111 +20620,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "පවතින Writer ලේඛනය තැපැල් සංයෝජක ලේඛනයේ පාදම ලෙස භාවිතා කරයි." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "තැපැල් සංයෝජනය සඳහා නව Writer ලේඛනයක් සාදයි." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "දැනට පවතින Writer ලේඛනයක් තැපැල් සංයෝජක ලේඛනයේ පාදම ලෙස භාවිතා කරයි." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "තැපැල් සංයෝජන ලේඛනය සමග යොදා ගත යුතු අච්චුව තෝරා ගන්න." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "දැනට පවතින තැපැල් සංයෝජක ලේඛනයක් නව තැපැල් සංයෝජක ලේඛනයක පාදම ලෙස භාවිතා කරන්න." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "ලේඛනය තෝරා ගන්න." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "පිරික්සන්න..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "පිරික්සන්න..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22891,52 +22891,52 @@ msgstr "වස්තුව" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "වර්‍ගය" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "අභිරුචි" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ඔතන්න" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "අධිසබැඳුම" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "දාර" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "ප්‍රදේශය" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "පාරදෘශ්‍යතාව" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "මැක්‍රෝ" @@ -27798,7 +27798,7 @@ msgstr "යාවත්කාල කරන්න" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/si/vcl/messages.po libreoffice-7.3.5/translations/source/si/vcl/messages.po --- libreoffice-7.3.4/translations/source/si/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/si/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-04-02 06:37+0000\n" "Last-Translator: helabasa \n" "Language-Team: Sinhala \n" @@ -2337,169 +2337,169 @@ msgstr "ප්‍රස්තාර පෙදෙස හැඩතල ගන්වයි." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "රිසි:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "ප්‍රස්තාර පෙදෙස හැඩතල ගන්වයි." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "ප්‍රස්තාර පෙදෙස හැඩතල ගන්වයි." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "මඟින්" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "ප්‍රස්තාර බිත්තිය හැඩතල ගන්වයි." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "ප්‍රස්තාර බිත්තිය හැඩතල ගන්වයි." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "පිටු අතර" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "ප්‍රස්තාර විස්තර පාඨය හැඩතල ගන්වයි." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "පත්‍රිකාවේ මායිමට" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "ප්‍රස්තාර විස්තර පාඨය හැඩතල ගන්වයි." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "සෑම පිටුව් වටාම මායිමක් අඳින්න" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "ගොනුව බාගත කරීම සදහා අදාල folder ක්ලික් කරන්න." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "පොත් පිංච" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/chart2/messages.po libreoffice-7.3.5/translations/source/sid/chart2/messages.po --- libreoffice-7.3.4/translations/source/sid/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:36+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: sid (generated) \n" @@ -3702,7 +3702,7 @@ msgstr "Cacafotenna xuruuru chaarte danira batinye xuruura qineesi." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Kaimu chaarte dana doori." diff -Nru libreoffice-7.3.4/translations/source/sid/cui/messages.po libreoffice-7.3.5/translations/source/sid/cui/messages.po --- libreoffice-7.3.4/translations/source/sid/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17568,181 +17568,155 @@ msgid "Automatic" msgstr "Umi-loosaancho" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Lowo Heesago" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Okisjiine" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Shota" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Woraqatu muddansho horoonsi'ri" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Sooramannokkiha horoonsi'ri" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Giraafishshu fulo" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Borrangichu balaxi-illacha leellishi" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Soorramanokki lellishalbi borrangicho" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "-wiinni" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Borrangichu Dirto" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/dbaccess/messages.po libreoffice-7.3.5/translations/source/sid/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sid/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3479,74 +3479,74 @@ msgstr "Haaro daatabeeze kalaqi" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Duwantino Daatabeeze" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Albanni noo daatabeeze fayile fani" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Xaa horo" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Fani" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Albanni noo daatabeezera xaadisi" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3554,7 +3554,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/extensions/messages.po libreoffice-7.3.5/translations/source/sid/extensions/messages.po --- libreoffice-7.3.4/translations/source/sid/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -308,603 +308,589 @@ msgid "Refresh form" msgstr "Forme haaroonsi" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Afi'ri" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Wori" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Bico kifile" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Borro" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Mereggisa ( harancho)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Mereeggama (harancho YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Mureeggama (haracho YYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Mereggisa (seeda)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Didooramino" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Dooramino" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Ditiramino Baala Maareekkuwwa" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Baala maareekkuwwa" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Baqqaddo Maareekko" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Xaa qoola" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "dee'ni" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Eewa" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Iltino forme" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Aguri" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Dino" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Tircho" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Bico" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Hakkigeeshsho" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Haawiitto" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Hossicha" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Gade" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Maahoyye" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Aguri" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Kaa’li" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Doorantino eo" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Doorantino eo ofollo" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Tircho xuruura" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Batinye xuruura" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Batinye xuruura suudishshuu ledo" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (xullaalluwa)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Dino" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Haawiitto" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Hossicha" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Lamenka" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3W" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Xawaabba" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Gura umo " #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Gura Mereero" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Gura lekkaallo" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Qiniite Umo" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Qiniite mereero" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Imaanni gura" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Imaanni mereero" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Imaanni qiniite" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Imaanni qiniite" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Woro gura" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Woro Mereero" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Woro qiniite" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Mereersinoonni" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Wori" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Riqiwi" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Huxuuxisi" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "dee'ni" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Reesho agari" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Geeshshaho fiixoonsi" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Guraadinni-qiniitira" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Qiniitinni-gurara" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Superordineete uduunnichi qineeshsho horoonsi'ri" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Horonta" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Illaallichishate yannara" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Baala wote" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Borri gufote" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Fikiimu gede" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Qoolaho" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Xiyyo" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Fikiima" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Qoolaho" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sid/fpicker/messages.po libreoffice-7.3.5/translations/source/sid/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sid/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Faylete su'ma:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Faylete~dana:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Nabbawa-calla" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Sa\"ote~qaalinni suuqi" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Umi-loosaancho Fayle su'mi seedishsha" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Qineessaanote meemo ~buuxi" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/sc/messages.po libreoffice-7.3.5/translations/source/sid/sc/messages.po --- libreoffice-7.3.4/translations/source/sid/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25779,97 +25779,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26256,153 +26256,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Biddeessi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "K_uula" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Kaarrimma" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Afoo" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Wirrola\"a" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Hedo" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Illacha" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Muccisi" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Biddeessi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Illacha" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gaamo" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Borrangicho" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Diramme" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Illacha" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Surki" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Qoltaje" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Xiyyo" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Biddeessi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Kaarrimma" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sid/sd/messages.po libreoffice-7.3.5/translations/source/sid/sd/messages.po --- libreoffice-7.3.4/translations/source/sid/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4245,109 +4245,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7226,109 +7226,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/sw/messages.po libreoffice-7.3.5/translations/source/sid/sw/messages.po --- libreoffice-7.3.4/translations/source/sid/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10757,19 +10757,19 @@ msgstr "Dooraminoha borgufote akata mashalaqqishaanchu deerrantera mitto deerra woroogisse milli assi." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Akatta" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Baxxino borgufote akatinni mashalaqqishaanchu eo kalaqi." @@ -14314,37 +14314,37 @@ msgstr "Daatabeeze Soori'ri" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Tiri" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Daatabeeze Horote aana" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Afamino Daatabeeze" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Soroowi..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Fayile fani yaanno hasaawa daatubeeze fayile doora dandaatto (*.odb)darga fani. Doorantino fayile Daatubeeze doorshi dirto giddora lendanni." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14354,31 +14354,31 @@ "Daatabeeze fayle doorate soroowate ilka horoonsi'ri." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Daatabeeze Soori'ri" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Daatabeeze borttajete loosansantino:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Xaa bortajera daatu bue soorri." @@ -20645,111 +20645,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Xaata woy mulita borreessaanchu bortaje makaancho sokka bortajera kaima assidhe horoonsiri." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Makaancho sokkara horoonsirate haaro borreessaanchu bortaje kalaqi." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Noota borreessaanchu borte makaancho sokka bortajera kaima asse horoonsirate dooeri." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Isenni makaancho sokka bortajekki kalaqattora hasirootto borro doori." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Noo makaancho sokka bortaje haaro makancho sokka bortajera kaimu gede assite horoonsiri." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Bortaje doori." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Soroowi..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Horoonsirate hasirattota borreessaanchu bortaje leellishi, aanchino Faniyaannoha qiphisi." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Soroowi..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22913,52 +22913,52 @@ msgstr "Koricho" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Dana" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Dooro" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Xaaxi" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Qooli-xaadisaancho" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Qaccuwa" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Qarqara" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "reqeccimma" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -27830,7 +27830,7 @@ msgstr "Yanneessi" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sid/vcl/messages.po libreoffice-7.3.5/translations/source/sid/vcl/messages.po --- libreoffice-7.3.4/translations/source/sid/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sid/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2337,169 +2337,169 @@ msgstr "Mitte shitte woraqatira batine qoolla attami." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Woyyado:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Mitte shitte woraqatira me\"e qoolla attammanniro doodhi." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Dirrate kiiro doodhi ." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ewelinni" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Caccafote kiiro doodhi." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Mitte mittente shitte woraqatinna mittu mittunku qooli mereero noota gato qacce doodhi." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "qoollate mereero" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Attamantino qoollanna woraqatu qacce mereero noota gato qacce doodhi." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "shittete qaccera" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Qoolla attamantanno aante doori." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Baalunku qoolira qacce misili" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Mittu mittunku qooli giingera qacce misilakki buuxi." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Xawishshu Borro" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Xaa bortaje, dooro, woy hattee xawisootto qoolla attami. Attamate doorsha xaa bortajera qineessa dandaatto." diff -Nru libreoffice-7.3.4/translations/source/sk/chart2/messages.po libreoffice-7.3.5/translations/source/sk/chart2/messages.po --- libreoffice-7.3.4/translations/source/sk/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-12 19:38+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547556845.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Určenie počtu čiar pre typy grafov Stĺpcový a Čiarový." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Zvoľte základný typ grafu." diff -Nru libreoffice-7.3.4/translations/source/sk/cui/messages.po libreoffice-7.3.5/translations/source/sk/cui/messages.po --- libreoffice-7.3.4/translations/source/sk/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-27 13:07+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatický" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Vysoký kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasický" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Určuje štýl ikon na nástrojových lištách a v dialógových oknách." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Štýl i_kon:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Ďalšie motívy ikon pridáte pomocou rozšírenia" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Štýl ikon" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Vyžaduje reštart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Použiť hardvérové urýchlenie" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Pre vylepšenie zobrazenie budú použité hardvérové vlastnosti grafickej karty." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Použiť vyhl_adzovanie" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Ak je podporované, môžete zapnúť alebo vypnúť vyhladzovanie grafiky (antialiasing). Pri zapnutom vyhladzovaní má väčšina grafických objektov menej artefaktov." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Na všetko vykresľovanie použiť knižnicu Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Vynútiť softvérové vykresľovanie knižnicou Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Vyžaduje reštart. Povolením sa zabráni použitie grafického ovládača." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Knižnica Skia je aktuálne povolená." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Knižnica Skia je aktuálne zakázaná." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafický výstup" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Zob_raziť náhľad písiem" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Pri výbere písma sa názov písma zobrazí daným písmom, napr. v zozname písiem v poli Písmo v paneli nástrojov Formátovanie." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Vyhladzovanie pí_sma na obrazovke" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Zvoľte, ak chcete vyhladzovať zobrazovanie textu na obrazovke." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "o_d:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Zadajte najmenšiu veľkosť písma na vyhladzovanie." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Zoznamy písiem" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Spustiť testy grafiky" diff -Nru libreoffice-7.3.4/translations/source/sk/dbaccess/messages.po libreoffice-7.3.5/translations/source/sk/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sk/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-13 17:38+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562264806.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Vytvoriť n_ovú databázu" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Vytvorí novú databázu." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Vstavaná databáza:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Ot_voriť existujúci databázový súbor" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Vyberte databázový súbor zo zoznamu naposledy použitých súborov alebo z dialógového okna pre výber súboru." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Nedávno použité:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Vyberte databázový súbor, ktorý chcete otvoriť, zo zoznamu naposledy použitých súborov. Kliknutím na Dokončiť súbor okamžite otvoríte a ukončíte sprievodcu." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otvoriť" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Otvorí dialógové okno pre výber súboru, v ktorom je možné vybrať databázový súbor. Kliknutím na Otvoriť alebo OK v dialógovom okne súbor okamžite otvoríte a ukončíte sprievodcu." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Pripojiť sa k e_xistujúcej databáze" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Vytvorí databázový dokument s pripojením k existujúcej databáze." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Vyberte typ databázy existujúceho databázového pripojenia." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "databázy HSQLDB a ani Firebird." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Sprievodca databázou vytvorí databázový súbor, ktorý obsahuje informácie o databáze." diff -Nru libreoffice-7.3.4/translations/source/sk/extensions/messages.po libreoffice-7.3.5/translations/source/sk/extensions/messages.po --- libreoffice-7.3.4/translations/source/sk/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-12-21 11:44+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1555915899.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Obnoviť formulár" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Štandardný (krátky)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Štandardný (krátky RR)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Štandardný (krátky RRRR)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Štandardný (dlhý)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/RR" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/RR" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "RR/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/RRRR" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/RRRR" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "RRRR/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "RR-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "RRRR-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nevybrané" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Vybrané" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nedefinované" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Všetky záznamy" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktívny záznam" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuálna strana" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nie" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Áno" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Zdrojový formulár" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Žiadne" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jediné" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Viacnásobné" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Rozsah" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vodorovné" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Zvislý" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predvolené" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Zrušiť" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomocník" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Vybraná položka" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozícia vybranej položky" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jeden riadok" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Viac riadkov" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Viac riadkov s formátovaním" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Žiadne" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vodorovné" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Zvislý" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Obidve" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plochý" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Vľavo hore" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Vľavo na stred" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Vľavo dole" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Vpravo hore" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Vpravo na stred" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Vpravo dole" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Vľavo nad" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Na stred nad" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Vpravo nad" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Vľavo pod" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Na stred pod" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Vpravo pod" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Na stred" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Uchovať" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Nahradiť" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Zbaliť" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nie" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Zachovať pomer" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Prispôsobiť veľkosti" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Zľava-doprava" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Sprava-doľava" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Použiť nastavenia nadriadeného objektu" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nikdy" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Pri zameraní" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Vždy" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Na odsek" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ako znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranu" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "K rámcu" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Na znak" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Na stranu" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Na bunku" diff -Nru libreoffice-7.3.4/translations/source/sk/fpicker/messages.po libreoffice-7.3.5/translations/source/sk/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sk/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-23 18:34+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" @@ -216,55 +216,55 @@ msgstr "Dátum zmeny" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Otvoriť" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Prehrať" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Názov súboru:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Typ súboru:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Iba na čí_tanie" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Uložiť s heslom" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Automatická prípona mena súboru" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Upraviť nastavenie _filtra" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Šifrovať GPG kľúčom" diff -Nru libreoffice-7.3.4/translations/source/sk/sc/messages.po libreoffice-7.3.5/translations/source/sk/sc/messages.po --- libreoffice-7.3.4/translations/source/sk/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-05 10:46+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563988321.000000\n" #. kBovX @@ -25257,97 +25257,97 @@ msgstr "~Zobraziť" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Obrázok" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "O~brázok" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Kr_esba" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Médiá" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Médiá" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Tlačiť" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Tlačiť" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulár" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulár" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšírenie" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšírenie" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nástroje" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Nástroje" @@ -25706,139 +25706,139 @@ msgstr "_Obrázok" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Usporiadať" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Farba" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Mriež_ka" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Jazyk" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revízia" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Poznámky" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Porovnať" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Zobraziť" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Kr_esba" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Upraviť" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Usporiadať" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Zobraziť" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Zosku_piť" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Písm_o" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Z_arovnanie" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Zobraziť" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Vložiť" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Médiá" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Rámec" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Usporiadať" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Mriež_ka" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Zobraziť" diff -Nru libreoffice-7.3.4/translations/source/sk/sd/messages.po libreoffice-7.3.5/translations/source/sk/sd/messages.po --- libreoffice-7.3.4/translations/source/sk/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-23 11:35+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563988209.000000\n" #. WDjkB @@ -4174,109 +4174,109 @@ msgstr "T~abuľka" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Obrázok" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "O~brázok" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Kr_esba" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Multimédiá" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Multimédiá" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulár" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulár" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "Pred_loha" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "Predlo~ha" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšírenie" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšírenie" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nástroje" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Nástroje" @@ -7063,109 +7063,109 @@ msgstr "~Tabuľka" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Obraz" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "O~bráz" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Kr_esba" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Kresba" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Multimédiá" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Multimédiá" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulár" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulár" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "Pred_loha" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "Predlo~ha" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "_Rozšírenie" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "~Rozšírenie" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Nástroje" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Nástroje" diff -Nru libreoffice-7.3.4/translations/source/sk/sw/messages.po libreoffice-7.3.5/translations/source/sk/sw/messages.po --- libreoffice-7.3.4/translations/source/sk/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-12 19:38+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" @@ -10506,19 +10506,19 @@ msgstr "Posuňte vybraný štýl odseku v registri o jednu úroveň nižšie." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Štýl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Štýly" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Vytvorí položky registrov pomocou určitých štýlov odsekov." @@ -13962,37 +13962,37 @@ msgstr "Vymeniť databázy" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definovať" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Používaná databáza" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Dostupné _databázy" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Prehliadať..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Zobrazí dialóg Otvoriť súbor, kde môžete vybrať súbor s databázou (*.odb). Vybraný súbor sa pridá do zoznamu dostupných databáz." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Použite tlačidlo Prehliadať pre výber databázového súboru." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Vypíše používané databázou." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Uvádza zoznam databáz registrovaných v %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Vymeniť databázy" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Databáza použitá v dokumente:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Zmeniť zdroje dát pre aktuálny dokument." @@ -20080,109 +20080,109 @@ msgstr "Použiť aktuálny _dokument" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Použije aktuálny dokument programu Writer, na ktorom sa založí hromadne rozosielaná správa." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Vytvoriť no_vý dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Vytvorí nový dokument aplikácie Writer, na ktorom sa založí hromadne rozosielaná správa." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Začať z _existujúceho dokumentu" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Vyberte existujúci dokument programu Writer, na ktorom sa založí hromadne rozosielaná správa." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Začať zo šablón_y" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Vyberte šablónu, na ktorej chcete založiť hromadne rozosielanú správu." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Začať z nedávno uloženého počiatočného doku_mentu" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Založí nový dokument hromadnej korešpondencie na už existujúcom." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Vyberte dokument." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "P_rehľadávať..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Vyhľadajte textový dokument, ktorý chcete použiť, a potom kliknite na Otvoriť." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "P_rehľadávať..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Otvorí dialógové okno výberu šablón." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Zdroj údajov aktuálneho dokumentu nie je zaregistrovaný. Vymeňte databázu." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Vymeniť databázu..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Vybrať počiatočný dokument pre hromadnú korešpondenciu" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Zadajte dokument, ktorý chcete použiť ako základ pre dokument hromadnej korešpondencie." @@ -22325,49 +22325,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Možnosti" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Obtekanie" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hypertextový odkaz" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Orámovanie" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Oblasť" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Priehľadnosť" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27063,7 +27063,7 @@ msgstr "Aktualizovať" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Zobrazí štatistiku aktuálneho súboru." diff -Nru libreoffice-7.3.4/translations/source/sk/vcl/messages.po libreoffice-7.3.5/translations/source/sk/vcl/messages.po --- libreoffice-7.3.4/translations/source/sk/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sk/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-12-01 13:38+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562264667.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Zadajte názvy dátových radov." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Vlastné" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Vyberte operátor zo zoznamu." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Strany:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Vyberte počet riadkov." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "Autor" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Vyberte počet stĺpcov." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Okraj:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Vyberte okraj medzi jednotlivými stránkami na každom hárku papiera." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "medzi stranami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Vzdialenosť:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Vyberte okraj medzi vytlačenými stránkami a okrajom papiera." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "k okraju hárka" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Poradie:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Zľava doprava, potom nadol" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Zhora nadol, potom doprava" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Zhora nadol, potom doľava" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Sprava doľava, potom nadol" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Vyberte poradie, v ktorom sa majú stránky vytlačiť." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Nakresliť rámček okolo každej strany" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Zaškrtnutím tejto možnosti sa okolo každej stránky nakreslí orámovanie." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brožúra" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Vyberte, ak chcete dokument vytlačiť vo formáte brožúry." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Náhľad zoradenie" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Zmeňte usporiadanie strán, ktoré sa majú tlačiť na každý list papiera. Náhľad ukáže, ako bude vyzerať každý výsledný list papiera." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "_Viac" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Rozloženie strany" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Všeobecné" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Vytlačí aktuálny dokument, výber alebo určené strany. Tiež je možné zadať nastavenia tlače pre aktuálny dokument." diff -Nru libreoffice-7.3.4/translations/source/sq/chart2/messages.po libreoffice-7.3.5/translations/source/sq/chart2/messages.po --- libreoffice-7.3.4/translations/source/sq/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-12-22 17:46+0000\n" "Last-Translator: Gjergji Kokushta \n" "Language-Team: Albanian \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sq/cui/messages.po libreoffice-7.3.5/translations/source/sq/cui/messages.po --- libreoffice-7.3.4/translations/source/sq/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2019-01-12 22:12+0000\n" "Last-Translator: Nafie Shehu \n" "Language-Team: LANGUAGE \n" @@ -17252,177 +17252,153 @@ msgid "Automatic" msgstr "Automatike" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Kontrast i Lartë" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasik" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 #, fuzzy msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Shfaq shikimin pa_raprak të germave" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_nga:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listat e shkronjave" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sq/dbaccess/messages.po libreoffice-7.3.5/translations/source/sq/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sq/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Albanian \n" @@ -3386,74 +3386,74 @@ msgstr "Krijo një bazë të dhënash të r_e" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Kolonat e databazës" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Hap një _skedar baze të dhënash ekzistues" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Të përdorur së fundmi:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Hap" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Lidhu me një bazë të dhënash e_kzistuese" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3461,7 +3461,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sq/extensions/messages.po libreoffice-7.3.5/translations/source/sq/extensions/messages.po --- libreoffice-7.3.4/translations/source/sq/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -310,599 +310,585 @@ msgid "Refresh form" msgstr "Dizajnimi i formularit" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Merr" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posto" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (e shkurtë)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (i shkurtë VV)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (i shkurtë VVVV)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (e gjatë)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/VV" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/VV" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "VV/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/VVVV" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/VVVV" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "VVVV/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "VV-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "VVVV-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 MD" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 MD" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Jo e përzgjedhur;E përzgjedhur; E padefinuar" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "I zgjedhur" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Variabli nuk është definuar" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Regjistrimet e zgjedhur" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Numri i regjistrimit" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Numri i faqes" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Po" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_Ndal" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Asnjë" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "E vetme" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Brez" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standarde" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Anulo" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ndihma" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Gjej hyrjen" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Trego numrin e shënuar" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Hapësirë me vetëm një rresht" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Më shumë rreshta" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Asnjë" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Të dy" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Rrafsh" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Lartë majtas" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Mbështet në qendër" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Poshtë majtas" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Lartë djathtas" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Mbështet në qendër" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Poshtë - djathas" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Lartë majtas" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Mbështet në qendër" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Lartë djathtas" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Lartë majtas" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Mbështet në qendër" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Lartë djathtas" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Në qendër" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Konservo" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zëvendëso" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Kolaps" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "No" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mbaje përpjestimin" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Përshtate me madhësinë" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Nga e majta në të djathtë" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Nga e djathta në të majtë" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Shfrytëzo parametrat e mbishtruar të objektit" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Kurrë" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Kur humb mbledhjen" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Gjithmonë" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Tek paragrafi" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Si karakter" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Tek faqja" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Në kornizë" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Tek karakteri" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Tek faqja" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sq/fpicker/messages.po libreoffice-7.3.5/translations/source/sq/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sq/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Emri i skedarit:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Lloji i skedarit:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Vetëm e lexueshme" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Ruaje me fjalëkalim" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Prapashtesë _automatike e emrit të skedarit" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Ndrysho rregullimet e _filtrit" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Enkripto me çelës GPG" diff -Nru libreoffice-7.3.4/translations/source/sq/sc/messages.po libreoffice-7.3.5/translations/source/sq/sc/messages.po --- libreoffice-7.3.4/translations/source/sq/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25694,97 +25694,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26170,157 +26170,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rregullo" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "N_gjyra:" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Rrjeta" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Gjuha:" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Komente" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Krahaso" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Pamja" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Përpuno" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rregullo" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Pamja" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupi" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Këmbë" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Rreshtimi" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Pamja" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Shto" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Media objekt" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Kornizë" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rregullo" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Rrjeta" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sq/sd/messages.po libreoffice-7.3.5/translations/source/sq/sd/messages.po --- libreoffice-7.3.4/translations/source/sq/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4219,109 +4219,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7162,109 +7162,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sq/sw/messages.po libreoffice-7.3.5/translations/source/sq/sw/messages.po --- libreoffice-7.3.4/translations/source/sq/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10681,19 +10681,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilet" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14154,37 +14154,37 @@ msgstr "Shkëmbe bazat e të dhënave" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Përkufizo" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Baza e të dhënave në përdorim" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Shfleto..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14192,31 +14192,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Shkëmbe bazat e të dhënave" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Databaza e aplikuar ne dokument" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20366,109 +20366,109 @@ msgstr "Përdor _dokumentin aktual" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Krijo një do_kument të ri" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Fillo nga një dokument _ekzistues" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Fillo nga një _shabllon" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Sh_fleto..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Sh_fleto..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Zgjidh dokumentin fillestar për shtypjen në seri" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22642,50 +22642,50 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipi" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Mundësitë" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Mbështjell" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperlidhje" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kufijtë" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Zona" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Tejdukshmëria" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27450,7 +27450,7 @@ msgstr "Përditëso" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sq/vcl/messages.po libreoffice-7.3.5/translations/source/sq/vcl/messages.po --- libreoffice-7.3.4/translations/source/sq/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sq/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "I përshtatur" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "nga" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mes faqeve" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "te kufijtë e fletës" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Vizato një kufi në çdo faqe" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broshura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr/chart2/messages.po libreoffice-7.3.5/translations/source/sr/chart2/messages.po --- libreoffice-7.3.4/translations/source/sr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-15 11:36+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -3602,7 +3602,7 @@ msgstr "Изаберите број линија за графике са колонама и линијама." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Изаберите основну врсту графика." diff -Nru libreoffice-7.3.4/translations/source/sr/cui/messages.po libreoffice-7.3.5/translations/source/sr/cui/messages.po --- libreoffice-7.3.4/translations/source/sr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-26 21:41+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Аутоматско" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галаксија" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Велики контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Кисеоник" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Класична" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Поветарац" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Одређује стил иконице за иконице траке алатки и прозорчиће." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Стил иконице:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Додаје још тема иконица помоћу проширења" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Стил иконице" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Захтева поновно покретање" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Користи _хардверско убрзање" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Директно приступа могућностима хардвера за графички приказ како би побољпао приказ на екрану." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Користи у_мекшавање" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Када је подржано, можете омогућити или онемогућити умекшавање графике. Када је умекшавање омогућено, приказ већине графичких објеката ће бити умекшаније и са мање дефеката." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Користи Skia за сва исцртавања" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Приморај Skia софтверско исцртавање" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Захтева поновно покретање. Омогућавање овога ће онемогућити да користите графичке драјвере." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia је тренутно омогућено." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia је тренутно онемогућено." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графички излаз" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Прикажи преглед _фонтова" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "Приказује имена фонтова који се могу изабрати међу фонтовима, на пример. фонтови у пољу „Фонт“ у траци за форматирање." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Умекшавање фонта на _екрану" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Изаберите да угладите изглед текста на екрану." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_од:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Спискови фонтова" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr/dbaccess/messages.po libreoffice-7.3.5/translations/source/sr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-21 11:33+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -3448,78 +3448,78 @@ msgstr "Направи ~нову базу" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Уграђена база података" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 #, fuzzy msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Отвори постојећу ~датотеку базе" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Недавно употребљене" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Отвори" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 #, fuzzy msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Повежи се на постојећу базу" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3527,7 +3527,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr/extensions/messages.po libreoffice-7.3.5/translations/source/sr/extensions/messages.po --- libreoffice-7.3.4/translations/source/sr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/extensions/messages.po 2022-07-15 19:12:51.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LibreOffice 4.2.0.0.alpha0+\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-01-29 15:37+0000\n" "Last-Translator: gpopac \n" "Language-Team: Serbian \n" @@ -292,545 +292,533 @@ msgid "Refresh form" msgstr "Освежи образац" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Добави (GET)" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Пошаљи (POST)" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "УРЛ" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Вишеделно" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Уобичајено (кратко)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандардно (кратко YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандардно (кратко YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Уобичајено (дуго)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/ГГ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/ГГ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ГГ/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/ГГГГ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/ГГГГ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ГГГГ/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ГГ-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 поподне" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 поподне" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Није изабрано" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Изабрано" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Није одређено" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Сви записи" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Активан запис" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Тренутна страница" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Не" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Да" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Родитељска" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Заустави" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ништа" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Једно" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Више" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Опсег" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Водоравно" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Усправно" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Подразумевано" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "У реду" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Обустави" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Помоћ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Изабрани унос" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Позиција изабраног уноса" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Једнолинијско " #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Вишелинијско" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Вишелинијско са форматирањем" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ништа" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Водоравно" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Усправно" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Оба" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3Д" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 #, fuzzy msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Равно" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Лево горе" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Лево на средини" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Лево доле" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Десно горе" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Дасно на средини" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Десно доле" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Изнад лево" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Изнад на средини" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Изнад десно" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Испод лево" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Испод на средини" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Испод десно" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Центрирано" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Очувај" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Замени" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Сажети" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Не" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Задржи размеру" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Уклопи по величини" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Слева удесно" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Здесна улево" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Користи уобичајена подешавања објеката" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "~Никада" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "При фокусу" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Увек" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ка пасусу" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Као знак" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ка страници" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ка оквиру" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "У знак" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ка страници" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Ка ћелији" diff -Nru libreoffice-7.3.4/translations/source/sr/fpicker/messages.po libreoffice-7.3.5/translations/source/sr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-10-15 11:36+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -216,55 +216,55 @@ msgstr "Датум измене" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Отвори" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Пусти" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "И_ме датотеке:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Врста датотеке:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Само за читање" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Сачувај са лозинком" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Аутоматско додавање наставака" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Уреди подешавања филтера" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Шифруј помоћу ГПГ кључа" diff -Nru libreoffice-7.3.4/translations/source/sr/sc/messages.po libreoffice-7.3.5/translations/source/sr/sc/messages.po --- libreoffice-7.3.4/translations/source/sr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-11-08 13:36+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -26181,97 +26181,97 @@ msgstr "П~реглед" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "С_лика" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "С~лика" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Цртање" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Цртање" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Објекат" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Објекат" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Медији" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Медији" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Штампа" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Штампа" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "О_бразац" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "О~бразац" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Прошире_ње" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Прошире~ње" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Алати" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Алати" @@ -26630,139 +26630,139 @@ msgstr "_Слика" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Распоред" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "_Боја" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Мрежа" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Језик" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Коректура" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Коментари" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Поре_ђење" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "П_реглед" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Цртање" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Уређивање" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Распоред" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "П_реглед" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Груписање" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "_3Д" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Фонт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "По_равнање" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "П_реглед" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "У_метни" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Медији" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "О_квир" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Распоред" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Мрежа" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "П_реглед" diff -Nru libreoffice-7.3.4/translations/source/sr/sd/messages.po libreoffice-7.3.5/translations/source/sr/sd/messages.po --- libreoffice-7.3.4/translations/source/sr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-16 19:38+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -4306,109 +4306,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7328,109 +7328,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr/sw/messages.po libreoffice-7.3.5/translations/source/sr/sw/messages.po --- libreoffice-7.3.4/translations/source/sr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-28 23:05+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" @@ -10506,19 +10506,19 @@ msgstr "Премешта изабрани стил пасуса за један ниво испод у хијерархији пописа." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Стил" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стилови" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Прави попис уноса из одабраног стила пасуса." @@ -13962,37 +13962,37 @@ msgstr "Замени базе података" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Одреди" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Коришћене базе" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Доступне базе" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Прегледај…" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Отвара прозорче за учитавање изабране базе података (*.odb). Изабрана датотека се додаје на списак доступних база података." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Кликните на „Прегледај“ да додате датотеку базе података." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Листа базе података које се тренутно користе." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Листа база података које су регистроване у %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Замени базе података" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "База примењена на документ:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Измените изворе података за тренутни документ." @@ -20080,109 +20080,109 @@ msgstr "Користи тренутни _документ" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Користи тренутни документ Писца као основу за документ циркуларне поште." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Направи _нови документ" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Прави нови документ који ће Писац користити за циркуларну пошту." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Почни од Ћ_постојећег документа" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Омогућава вам да изаберете постојећи документ Писца који ће бити коришћен као основни документ за циркуларну пошту." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Почни од _шаблона" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Изаберите шаблон од кога желите да направите ваш документ за циркуларну пошту." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Почни од _скоро сачуваног почетног документа" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Користи постојећи документ циркуларне поште као основу за нови документ циркуларне поште." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Изаберите документ." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Прегледај…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Пронађите документ Писца који желите да користите и кликните на „Отвори“." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Прегледај…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Отвара прозорче за избор шаблона." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Изаберите почетни документ за циркуларну пошту" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Одређује документ који желите да користите као основу за документ циркуларне поште." @@ -22325,49 +22325,49 @@ msgstr "Објекат" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Врста" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Опције" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Преламање" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Хипервеза" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ивице" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Подручје" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Провидност" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макро" @@ -27061,7 +27061,7 @@ msgstr "Освежи" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Приказује статистику за тренутну датотеку." diff -Nru libreoffice-7.3.4/translations/source/sr/vcl/messages.po libreoffice-7.3.5/translations/source/sr/vcl/messages.po --- libreoffice-7.3.4/translations/source/sr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-01-29 15:36+0000\n" "Last-Translator: gpopac \n" "Language-Team: Serbian \n" @@ -2383,169 +2383,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Прилагођено" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "од" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "између страница" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "до ивице листа" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ивица око сваке странице" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошура" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/chart2/messages.po libreoffice-7.3.5/translations/source/sr-Latn/chart2/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2012-06-18 08:54+0200\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -3752,7 +3752,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/cui/messages.po libreoffice-7.3.5/translations/source/sr-Latn/cui/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2013-01-21 01:22+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -17847,178 +17847,153 @@ msgid "Automatic" msgstr "Automatsko" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~Veliki kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 #, fuzzy msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Ređanje listi" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/dbaccess/messages.po libreoffice-7.3.5/translations/source/sr-Latn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2010-07-06 19:42+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -3439,76 +3439,76 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Ugrađena baza podataka" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Nedavno korišćeno" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Otvori" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3516,7 +3516,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/extensions/messages.po libreoffice-7.3.5/translations/source/sr-Latn/extensions/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/extensions/messages.po 2022-07-15 19:12:51.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LibreOffice 4.2.0.0.alpha0+\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2013-05-25 18:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -291,545 +291,533 @@ msgid "Refresh form" msgstr "Osveži obrazac" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Dobavi (GET)" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Pošalji (POST)" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Višedelno" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Tekst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Uobičajeno (kratko)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standardno (kratko YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standardno (kratko YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Uobičajeno (dugo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/GG" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/GG" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "GG/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/GGGG" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/GGGG" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "GGGG/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "GG-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "GGGG-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 popodne" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 popodne" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Nije izabrano" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Izabrano" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Nije određeno" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Svi zapisi" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktivan zapis" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Trenutna stranica" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ne" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Da" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Roditeljska" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Zaustavi" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ništa" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Jedno" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Više" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Opseg" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vodoravno" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Uspravno" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Podrazumevano" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "U redu" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Obustavi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pomoć" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Izabrani unos" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozicija izabranog unosa" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jednolinijsko " #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Višelinijsko" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Višelinijsko sa formatiranjem" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ništa" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vodoravno" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Uspravno" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Oba" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 #, fuzzy msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Ravno" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Levo gore" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Levo na sredini" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Levo dole" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Desno gore" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Dasno na sredini" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Desno dole" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Iznad levo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Iznad na sredini" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Iznad desno" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ispod levo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ispod na sredini" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ispod desno" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrirano" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Očuvaj" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zameni" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Sažeti" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ne" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Zadrži razmeru" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Uklopi po veličini" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Sleva udesno" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Zdesna ulevo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Koristi uobičajena podešavanja objekata" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "~Nikada" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Pri fokusu" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Uvek" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ka pasusu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kao znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ka stranici" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ka okviru" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "U znak" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ka stranici" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Ka ćeliji" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/fpicker/messages.po libreoffice-7.3.5/translations/source/sr-Latn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2013-01-20 23:56+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -224,61 +224,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Ime datoteke:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Tip datoteke:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Samo za čitanje" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Sačuvaj sa ~lozinkom" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Automatsko dodavanje nastavaka" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Uredi podešavanja filtera" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/sc/messages.po libreoffice-7.3.5/translations/source/sr-Latn/sc/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2009-01-25 01:07+0100\n" "Last-Translator: Goran Rakić \n" "Language-Team: Serbian \n" @@ -27990,97 +27990,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -28472,158 +28472,158 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rasporedi" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Boja" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Mreža" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Jezik" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Kritika" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Komentari" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Prikaz" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Izmeni" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rasporedi" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Prikaz" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Grupiši" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Font" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Poravnanje" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Prikaz" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Umetni" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Multimedija" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Okvir" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rasporedi" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Mreža" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/sd/messages.po libreoffice-7.3.5/translations/source/sr-Latn/sd/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2012-06-18 08:44+0200\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -4333,109 +4333,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7353,109 +7353,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/sw/messages.po libreoffice-7.3.5/translations/source/sr-Latn/sw/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2013-01-21 01:20+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -10888,20 +10888,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stilovi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14524,39 +14524,39 @@ msgstr "Zameni ~bazu podataka..." #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Odredi" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Izbor..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14564,32 +14564,32 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 #, fuzzy msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Zameni ~bazu podataka..." #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20951,111 +20951,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Izbor..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Izbor..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23288,56 +23288,56 @@ msgstr "Objekat" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 #, fuzzy msgctxt "objectdialog|type" msgid "Type" msgstr "Vrsta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "Opcije" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Prelamanje" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperveza" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 #, fuzzy msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ivice" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Oblast" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Providnost: " #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28310,7 +28310,7 @@ msgstr "Osveži" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sr-Latn/vcl/messages.po libreoffice-7.3.5/translations/source/sr-Latn/vcl/messages.po --- libreoffice-7.3.4/translations/source/sr-Latn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sr-Latn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2013-01-21 01:06+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -2404,169 +2404,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Prilagođeno" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "od" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "između stranica" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "do ivice lista" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Ivica oko svake stranice" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brošura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/chart2/messages.po libreoffice-7.3.5/translations/source/ss/chart2/messages.po --- libreoffice-7.3.4/translations/source/ss/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3716,7 +3716,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/cui/messages.po libreoffice-7.3.5/translations/source/ss/cui/messages.po --- libreoffice-7.3.4/translations/source/ss/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17584,176 +17584,152 @@ msgid "Automatic" msgstr "Othomathiki" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/dbaccess/messages.po libreoffice-7.3.5/translations/source/ss/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ss/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3394,75 +3394,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Idathabhesi lembelwe" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Kusandza kusetjentiswa" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3470,7 +3470,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/extensions/messages.po libreoffice-7.3.5/translations/source/ss/extensions/messages.po --- libreoffice-7.3.4/translations/source/ss/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -302,578 +302,564 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Tfola" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posa" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Umbhalo" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Sitandathi (lesifisha)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Sitandathi (lesifisha)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Sitandathi (lesifisha)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Sitandathi (lesidze)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Khetsa" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Lusuku lwalamuhla" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Cha" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yebo" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Mani" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Kute" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Ngakunye" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Libanga" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Vundlile" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Mile" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Idifolthi" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Kulungile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Yesula" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Sita" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Lilayini ngalinye" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Emalayini langamanyenti" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Emalayini langamanyenti nekufometha" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Kute" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Vundlile" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Mile" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Kokubili" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Iflethi" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Etulu ngesancele" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Emkhatsini ngesancele" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Phansi ngesancele" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Etulu ngesekudla" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Emkhatsini ngesekudla" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Phansi ngesekudla" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Etulu ngesancele" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Etulu emkhatsini" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Etulu ngesekudla" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Phansi ngesancele" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Phansi emkhatsini" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ngaphansi ngesekudla" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Beka emkhatsini" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Londvolota" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Faka esikhundlei" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Nciphisa" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Cha" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Linganisa elayinini" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Sancele kuye ngasekudla" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Sekudla kuye ngesancele" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Njalo nje" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Kupharagrafa" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Njengeluhlavu" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Kupheja" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Kufulema" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Kukharektha" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Kupheja" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ss/fpicker/messages.po libreoffice-7.3.5/translations/source/ss/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ss/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,61 +213,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Gcwalisa libito:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Inhlobo yelifayela" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Fundza kuphela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Seva nelibitophawu" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Tandziso temabito emafayela latentekelako" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Editha ~tinhlelo telihluto" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/sc/messages.po libreoffice-7.3.5/translations/source/ss/sc/messages.po --- libreoffice-7.3.4/translations/source/ss/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26188,97 +26188,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26665,156 +26665,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Hlela" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Umbala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Igridi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Lulwimi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Tincomo" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Kulunguta" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Editha" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Hlela" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Kulunguta" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Emacembu" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ifonti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Kulinganisa" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Kulunguta" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "~Faka" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ifulemu" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Hlela" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Igridi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ss/sd/messages.po libreoffice-7.3.5/translations/source/ss/sd/messages.po --- libreoffice-7.3.4/translations/source/ss/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4256,109 +4256,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7223,109 +7223,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/sw/messages.po libreoffice-7.3.5/translations/source/ss/sw/messages.po --- libreoffice-7.3.4/translations/source/ss/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10791,20 +10791,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Titayela" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14405,38 +14405,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Chaza" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Tfunguluta..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14444,31 +14444,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20795,111 +20795,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Tfunguluta..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Tfunguluta..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23094,54 +23094,54 @@ msgstr "Intfo" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 #, fuzzy msgctxt "objectdialog|type" msgid "Type" msgstr "Inhlobo:" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Kwekutikhetsela" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Gocotela" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ihayiphalinki" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 #, fuzzy msgctxt "objectdialog|borders" msgid "Borders" msgstr "Iminyele " #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Indzawo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Kungafihli" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Imakhro" @@ -28052,7 +28052,7 @@ msgstr "Buyeketa" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ss/vcl/messages.po libreoffice-7.3.5/translations/source/ss/vcl/messages.po --- libreoffice-7.3.4/translations/source/ss/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ss/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2351,171 +2351,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ikhastomu:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "nge" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Ib~losha" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/chart2/messages.po libreoffice-7.3.5/translations/source/st/chart2/messages.po --- libreoffice-7.3.4/translations/source/st/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3724,7 +3724,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/cui/messages.po libreoffice-7.3.5/translations/source/st/cui/messages.po --- libreoffice-7.3.4/translations/source/st/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17614,176 +17614,152 @@ msgid "Automatic" msgstr "Iketsahallang" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/dbaccess/messages.po libreoffice-7.3.5/translations/source/st/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/st/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3399,75 +3399,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Datapeisi e jadilweng" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Sebedisitsweng Morao the" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Bula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3475,7 +3475,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/extensions/messages.po libreoffice-7.3.5/translations/source/st/extensions/messages.po --- libreoffice-7.3.4/translations/source/st/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,575 +304,561 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Fumana" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posa" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Te~mana" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Motheo (khutswane)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Motheo (khutswane)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Motheo (khutswane)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Motheo (telele)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Kgetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Letsatsi la Hona Jwale" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Tjhe" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ee" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Emisa" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ha di teng" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Nngwe" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Rapameng" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Tsepameng" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "De~folete" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Lokile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Timetsa" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Thuso" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Mola o le mong" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Mela e mengata" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Mela e mengata e nang le sebopeho" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ha di teng" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Rapameng" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Tsepameng" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Bobedi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Paqameng" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Le letshehadi hodimo" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Le letshehadi bohareng" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Le letshehadi tlase" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Le letona hodimo" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Le letona bohareng" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Le letona tlase" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Hodimo ho le letshehadi" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Hodimo bohareng" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Hodimo ho le letona" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Tlase ho le letshehadi" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Tlase bohareng" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Tlase ho le letona" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Bohareng" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Boloka" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Nkela bohato" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Phuhlama" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Tjhe" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Lekantsha le mola" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Letshehadi ho ya ho le letona" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Leletona-Ho-ya-ho-Leletshehadi" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Ka nako tsohle" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ho Serapa" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "E le Kharektara" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ho ya Leqepheng" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ho Foreimi" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ho Kharektara" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ho ya Leqepheng" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/st/fpicker/messages.po libreoffice-7.3.5/translations/source/st/fpicker/messages.po --- libreoffice-7.3.4/translations/source/st/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -214,61 +214,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Lebitso la faele:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Mofuta ~wa faele" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Bala-fela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Boloka ka lebitsosephiri" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Katoloso e iketsahallang ya lebitso la faele" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Lokisa ~diseting tsa filthara" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/sc/messages.po libreoffice-7.3.5/translations/source/st/sc/messages.po --- libreoffice-7.3.4/translations/source/st/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26174,97 +26174,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26652,156 +26652,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Hlophisa" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Mmala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Rostere" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Leleme" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "~Maikutlo" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Pono" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Lokisa" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Hlophisa" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Pono" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Dihlopha" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fonto" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Hlophisa" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Pono" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Fetola" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Foreimi" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Hlophisa" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Rostere" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/st/sd/messages.po libreoffice-7.3.5/translations/source/st/sd/messages.po --- libreoffice-7.3.4/translations/source/st/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4265,109 +4265,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7233,109 +7233,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/sw/messages.po libreoffice-7.3.5/translations/source/st/sw/messages.po --- libreoffice-7.3.4/translations/source/st/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10817,20 +10817,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Ditaele" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14444,39 +14444,39 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Hlalosa" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "B~atlisisa..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14484,31 +14484,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20840,111 +20840,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "B~atlisisa..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "B~atlisisa..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23142,52 +23142,52 @@ msgstr "~Sesebediswa" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Mofuta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Ditlhopho" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Phuthela" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Haephalinki" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Meedi" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Tulo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ponahaletso" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -28115,7 +28115,7 @@ msgstr "Beha nakong" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/st/vcl/messages.po libreoffice-7.3.5/translations/source/st/vcl/messages.po --- libreoffice-7.3.4/translations/source/st/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/st/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2355,171 +2355,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Tlwaelo:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ka" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "B~oroutjhara" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sv/chart2/messages.po libreoffice-7.3.5/translations/source/sv/chart2/messages.po --- libreoffice-7.3.4/translations/source/sv/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-10-16 19:38+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" @@ -3602,7 +3602,7 @@ msgstr "Ange antalet linjer för diagramtypen Kolumn och linje." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Välj en basal diagramtyp." diff -Nru libreoffice-7.3.4/translations/source/sv/cui/messages.po libreoffice-7.3.5/translations/source/sv/cui/messages.po --- libreoffice-7.3.4/translations/source/sv/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" -"Last-Translator: Andreas Pettersson \n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"Last-Translator: Leif-Jöran Olsson \n" "Language-Team: Swedish \n" "Language: sv\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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562761710.000000\n" #. GyY9M @@ -4534,7 +4534,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:247 msgctxt "acorexceptpage|extended_tip|double" msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook." -msgstr "" +msgstr "Skriv ordet eller förkortningen som börjar med två versaler eller en liten initial som du inte vill att %PRODUCTNAME ska ändra till en första versal. Ange till exempel PC för att förhindra att %PRODUCTNAME ändrar PC till Pc, eller ange eBook för att förhindra en ändring till Ebook." #. kAzxB #: cui/uiconfig/ui/acorexceptpage.ui:258 @@ -4636,7 +4636,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 "Skriv ordet, förkortningen eller delen av ord du vill ersätta medan du skriver. Platshållarsekvensen .* på slutet av ord ger som resultat att det även ersätts med andra suffix. Platshållarsekvensen .* innan ordet ger som resultat att det även ersätts efter andra prefix. Till exempel mönstret \"i18g.*\" med ersättningstexten \"internationalisering\" hittar och ersätter \"i18gen\" with \"internationaliseringen\", eller ersätter \".*...\" med \" …\" vilket ger tre punkter i \"ord...\" ersatt med det typografisk riktiga Unicode-horisontell ellips och mellanslag (\"ord …\") om det inte verkligen är en ordtrunkering." +msgstr "Ange ordet, förkortningen eller orddelen som du vill ersätta medan du skriver. Jokerteckensekvens .* i slutet av ordet resulterar i att ordet ersätts före godtyckliga suffix också. Jokerteckensekvens .* före ordet resulterar också i ersättning efter godtyckliga prefix. Till exempel, mönstret \"i18n.*\" med ersättningstexten \"internationalisering\" hittar och ersätter \"i18ns\" med \"internationaliseringar\", eller mönstret \".*...\" med ersättningstexten \"...\" hittar och ersätter tre punkter i \"ord...\" med den typografiskt korrekta förkomponerade Unicode horisontella ellipsen (\"ord...\")." #. GLT9J #: cui/uiconfig/ui/acorreplacepage.ui:200 @@ -7367,7 +7367,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:303 msgctxt "extended tip | redRadiobutton" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Sätter den röda komponenten på färgkomponentväljaren, och den gröna och blå komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." +msgstr "Sätter den röda komponenten som ändringsbar i färgkomponentväljaren och den gröna och blå komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." #. TkTSB #: cui/uiconfig/ui/colorpickerdialog.ui:314 @@ -7379,7 +7379,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:323 msgctxt "extended tip | greenRadiobutton" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Sätter den gröna komponenten på färgkomponentväljaren, och den röda och blå komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." +msgstr "Sätter den gröna komponenten som ändringsbar i färgkomponentväljaren och den röda och blå komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." #. 5FGfv #: cui/uiconfig/ui/colorpickerdialog.ui:334 @@ -7391,7 +7391,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:343 msgctxt "extended tip | blueRadiobutton" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Sätter den blåa komponenten på färgkomponentväljaren, och den gröna och röda komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." +msgstr "Sätter den blåa komponenten som ändringsbar i färgkomponentväljaren och den gröna och röda komponenten i det tvådimensionella färgväljarfältet. Tillåtna värden är 0 till 255." #. c5MTh #: cui/uiconfig/ui/colorpickerdialog.ui:362 @@ -7439,7 +7439,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:490 msgctxt "extended tip | hueRadiobutton" msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359." -msgstr "Ställer in nyanskomponenten som kan ändras på det vertikala färgreglaget och komponenterna Mättnad och Ljusstyrka i det tvådimensionella färgväljarfältet. Värden uttrycks i grader från 0 till 359." +msgstr "Sätter färgtonskomponenten som ändringsbar i det vertikala färgreglaget, och komponenterna Mättnad och Ljusstyrka i det tvådimensionella färgväljarfältet. Värdet anges som 0 till 359 grader." #. C4GE3 #: cui/uiconfig/ui/colorpickerdialog.ui:501 @@ -7451,7 +7451,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:510 msgctxt "extended tip | satRadiobutton" msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "Ställer in mättnadskomponenten som kan ändras på det vertikala färgreglaget och komponenterna Nyans och Ljusstyrka i det tvådimensionella färgväljarfältet. Värden uttrycks i procent (0 till 100)." +msgstr "Sätter mättnadskomponenten som ändringsbar i det vertikala färgreglaget och komponenterna Färgton(Nyans) och Ljusstyrka i det tvådimensionella färgväljarfältet. Värden uttrycks i procent (0 till 100)." #. NXs9w #: cui/uiconfig/ui/colorpickerdialog.ui:521 @@ -7463,7 +7463,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:530 msgctxt "extended tip | brightRadiobutton" msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "Ställer in komponenten Ljusstyrka som kan ändras på det vertikala färgreglaget och komponenterna Nyans och Mättnad i det tvådimensionella färgväljarfältet. Värden uttrycks i procent (0 till 100)." +msgstr "Sätter komponenten Ljusstyrka som ändringsbar i det vertikala färgreglaget och komponenterna Färgton (Nyans) och Mättnad i det tvådimensionella färgväljarfältet. Värden uttrycks i procent (0 till 100)." #. BCvUX #: cui/uiconfig/ui/colorpickerdialog.ui:549 @@ -7547,7 +7547,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:815 msgctxt "extended tip | ColorPicker" msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog." -msgstr "" +msgstr "%PRODUCTNAME låter dig definiera anpassade färger med hjälp av ett tvådimensionellt grafiskt och numeriskt övertoningsdiagram i dialogrutan Välj en färg." #. vDFei #: cui/uiconfig/ui/comment.ui:18 @@ -8303,7 +8303,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:185 msgctxt "replace" msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc." -msgstr "" +msgstr "Det här inmatningsfältet är endast tillgängligt om du redigerar en undantagsordlista eller en språkberoende anpassad ordlista. I undantagsordlistor visar fältet det alternativa förslaget för det aktuella ordet i textrutan \"Ord\". I språkberoende anpassade ordlistor innehåller fältet ett känt grundord, som en modell för fästning av det nya ordet eller dess användning i sammansatta ord. Till exempel, i en tysk ordbok kommer det nya ordet \"Litschi\" (litchi) med modellordet \"Gummi\" (gummi) att resultera i igenkänning av \"Litschis\" (litchi), \"Litschibaum\" (litchiträd), \"Litschifrucht\" (litchifrukt) osv." #. 5EwBs #: cui/uiconfig/ui/editdictionarydialog.ui:203 @@ -8501,7 +8501,7 @@ #: cui/uiconfig/ui/effectspage.ui:132 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 "Välj en reliefeffekt att tillämpa på den markerade texten. Den präglade reliefen får karaktärerna att se ut som om de är upphöjda över sidan. Den graverade reliefen får karaktärerna att se ut som om de är intryckta på sidan." #. G8SPK #: cui/uiconfig/ui/effectspage.ui:146 @@ -8969,7 +8969,7 @@ #: cui/uiconfig/ui/eventassignpage.ui:237 msgctxt "eventassignpage|extended_tip|libraries" msgid "Lists the %PRODUCTNAME program and any open %PRODUCTNAME document." -msgstr "" +msgstr "Listar %PRODUCTNAME-programmet och alla öppna %PRODUCTNAME-dokument." #. y7Vyi #: cui/uiconfig/ui/eventassignpage.ui:248 @@ -9035,7 +9035,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 "Välj först var du vill spara händelsebindningen, i det aktuella dokumentet eller i %PRODUCTNAME." #. C6KwW #: cui/uiconfig/ui/eventsconfigpage.ui:186 @@ -9053,7 +9053,7 @@ #: 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 stora listrutan listar händelserna och de tilldelade makron. När du har valt platsen i listrutan \"Spara i\" väljer du en händelse i den stora listrutan. Klicka sedan på \"Tilldela makro\"." #. aCb4v #: cui/uiconfig/ui/eventsconfigpage.ui:246 @@ -9071,7 +9071,7 @@ #: cui/uiconfig/ui/fileextcheckdialog.ui:36 msgctxt "FileExtCheck|Checkbox_Tooltip" msgid "Enable the dialog again at Tools > Options > General" -msgstr "" +msgstr "Aktivera dialogrutan igen via Verktyg > Alternativ > Allmänt" #. mGEv5 #: cui/uiconfig/ui/fileextcheckdialog.ui:64 @@ -9257,7 +9257,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:612 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 "Hitta termer som liknar söktexten. Markera den här kryssrutan och klicka sedan på knappen Likheter för att definiera likhetsalternativen." #. DNGxj #: cui/uiconfig/ui/fmsearchdialog.ui:623 @@ -9269,7 +9269,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:632 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 "Hitta termer som liknar söktexten. Markera den här kryssrutan och klicka sedan på knappen Likheter för att definiera likhetsalternativen." #. 6BpAF #: cui/uiconfig/ui/fmsearchdialog.ui:649 @@ -11362,25 +11362,25 @@ #: cui/uiconfig/ui/imagetabpage.ui:340 msgctxt "imagetabpage|label9" msgid "Tiling Position:" -msgstr "" +msgstr "Layoutplacering:" #. Xrp73 #: cui/uiconfig/ui/imagetabpage.ui:359 msgctxt "imagetabpage|label10" msgid "X-Offset:" -msgstr "" +msgstr "X-förskjutning:" #. YGBMn #: cui/uiconfig/ui/imagetabpage.ui:398 msgctxt "imagetabpage|label11" msgid "Y-Offset:" -msgstr "" +msgstr "Y-förskjutning:" #. vprmD #: cui/uiconfig/ui/imagetabpage.ui:444 msgctxt "imagetabpage|label15" msgid "Tiling Offset:" -msgstr "" +msgstr "Layoutförskjutning:" #. QEPUJ #: cui/uiconfig/ui/imagetabpage.ui:467 @@ -11416,7 +11416,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:592 msgctxt "imagetabpage|extended_tip|ImageTabPage" msgid "Select a image that you want to use as a fill image, or add your own image/pattern." -msgstr "" +msgstr "Välj en bild som du vill använda som fyllningsbild, eller lägg till din egen bild/mönster." #. zCiFk #: cui/uiconfig/ui/insertfloatingframe.ui:18 @@ -11428,13 +11428,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 "Ange ett namn för den flytande ramen. Namnet får inte innehålla mellanslag, specialtecken eller börja med ett understreck (_)." #. 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 "Ange sökvägen och namnet på filen som du vill visa i den flytande ramen. Du kan också klicka på knappen Bläddra och hitta filen som du vill visa." #. 6Zg6E #: cui/uiconfig/ui/insertfloatingframe.ui:143 @@ -11458,7 +11458,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 "Leta upp filen som du vill visa i den valda flytande ramen och klicka sedan på Öppna." #. CFNgz #: cui/uiconfig/ui/insertfloatingframe.ui:209 @@ -11470,7 +11470,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:218 msgctxt "insertfloatingframe|extended_tip|scrollbaron" msgid "Displays the scrollbar for the floating frame." -msgstr "" +msgstr "Visar rullningslisten för den flytande ramen." #. RTCXH #: cui/uiconfig/ui/insertfloatingframe.ui:230 @@ -11482,7 +11482,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:239 msgctxt "insertfloatingframe|extended_tip|scrollbaroff" msgid "Hides the scrollbar for the floating frame." -msgstr "" +msgstr "Döljer rullningslisten för den flytande ramen." #. iucHE #: cui/uiconfig/ui/insertfloatingframe.ui:251 @@ -11494,7 +11494,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:260 msgctxt "insertfloatingframe|extended_tip|scrollbarauto" msgid "Mark this option if the currently active floating frame can have a scrollbar when needed." -msgstr "" +msgstr "Markera det här alternativet om den för närvarande aktiva flytande ramen kan ha en rullningslist när det behövs." #. NTDhm #: cui/uiconfig/ui/insertfloatingframe.ui:276 @@ -11512,7 +11512,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:314 msgctxt "insertfloatingframe|extended_tip|borderon" msgid "Displays the border of the floating frame." -msgstr "" +msgstr "Visar den flytande ramens kantlinje." #. P9vwv #: cui/uiconfig/ui/insertfloatingframe.ui:326 @@ -11524,7 +11524,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:335 msgctxt "insertfloatingframe|extended_tip|borderoff" msgid "Hides the border of the floating frame." -msgstr "" +msgstr "Döljer den flytande ramens kantlinje." #. xBDSb #: cui/uiconfig/ui/insertfloatingframe.ui:354 @@ -11548,13 +11548,13 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:418 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 "Ange mängden horisontellt utrymme som du vill lämna mellan höger och vänster kant på den flytande ramen och innehållet i ramen. Både dokument inom och utanför den flytande ramen måste vara HTML-dokument." #. R35J9 #: cui/uiconfig/ui/insertfloatingframe.ui:437 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 "Ange mängden vertikalt utrymme som du vill lämna mellan den övre och nedre kanten av den flytande ramen och innehållet i ramen. Både dokument inom och utanför den flytande ramen måste vara HTML-dokument." #. EEPAq #: cui/uiconfig/ui/insertfloatingframe.ui:448 @@ -11566,7 +11566,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:456 msgctxt "insertfloatingframe|extended_tip|defaultwidth" msgid "Applies the default horizontal spacing." -msgstr "" +msgstr "Tillämpar det horisontella standardavståndet." #. dQ8BY #: cui/uiconfig/ui/insertfloatingframe.ui:467 @@ -11578,7 +11578,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:475 msgctxt "insertfloatingframe|extended_tip|defaultheight" msgid "Applies the default vertical spacing." -msgstr "" +msgstr "Tillämpar det vertikala standardavståndet." #. YqkF7 #: cui/uiconfig/ui/insertfloatingframe.ui:490 @@ -11590,7 +11590,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:530 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 "Ändrar egenskaperna för den valda flytande ramen. Flytande ramar fungerar bäst när de innehåller ett html-dokument och när de infogas i ett annat html-dokument." #. DHyVM #: cui/uiconfig/ui/insertoleobject.ui:16 @@ -11650,7 +11650,7 @@ #: cui/uiconfig/ui/insertoleobject.ui:311 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 "Infogar ett OLE-objekt i det aktuella dokumentet. OLE-objektet infogas som en länk eller ett inbäddat objekt." #. BCgnf #: cui/uiconfig/ui/insertrowcolumn.ui:15 @@ -12228,7 +12228,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:94 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 stora listrutan listar händelserna och de tilldelade makron. När du har valt platsen i listrutan \"Spara i\" väljer du en händelse i den stora listrutan. Klicka sedan på \"Tilldela makro\"." #. jfate #: cui/uiconfig/ui/macroassignpage.ui:105 @@ -12426,7 +12426,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:388 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 "Välj menykommandokategorin i rullgardinsmenyn för att begränsa sökningen av kommandon eller bläddra i listan nedan. Makron och stilkommandon finns längst ner i listan." #. ZrMmi #: cui/uiconfig/ui/menuassignpage.ui:403 @@ -12444,13 +12444,13 @@ #: cui/uiconfig/ui/menuassignpage.ui:421 msgctxt "menuassignpage|extended_tip|searchEntry" msgid "Enter a string in the text box to narrow the search of commands." -msgstr "" +msgstr "Ange en sträng i textrutan för att begränsa sökningen av kommandon." #. 7gtLC #: cui/uiconfig/ui/menuassignpage.ui:445 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 "Välj den plats där menyn ska bifogas. Om den är kopplad till en %PRODUCTNAME-modul är menyn tillgänglig för alla filer som öppnas i den modulen. Om den bifogas till filen kommer menyn endast att vara tillgänglig när den filen är öppen och aktiv." #. D35vJ #: cui/uiconfig/ui/menuassignpage.ui:456 @@ -12462,7 +12462,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:488 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 "Välj menyn där anpassningen ska tillämpas. Den aktuella uppsättningen funktioner visas i rutan nedan." #. QN5Bd #: cui/uiconfig/ui/menuassignpage.ui:509 @@ -12522,7 +12522,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:789 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 "Klicka på högerpilen för att välja en funktion i den vänstra visningsrutan och kopiera till den högra visningsrutan. Detta kommer att lägga till funktionen till den valda menyn." #. iree8 #: cui/uiconfig/ui/menuassignpage.ui:815 @@ -12534,7 +12534,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:823 msgctxt "menuassignpage|extended_tip|remove" msgid "Click on the left arrow button to remove the selected command from the current menu." -msgstr "" +msgstr "Klicka på vänsterpilen för att ta bort det valda kommandot från den aktuella menyn." #. t7BYP #: cui/uiconfig/ui/menuassignpage.ui:856 @@ -12588,7 +12588,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:998 msgctxt "menuassignpage|extended_tip|MenuAssignPage" msgid "Lets you customize %PRODUCTNAME menus for all modules." -msgstr "" +msgstr "Låter dig anpassa %PRODUCTNAME-menyer för alla moduler." #. Mcir5 #: cui/uiconfig/ui/mosaicdialog.ui:21 @@ -13212,7 +13212,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:435 msgctxt "numberingoptionspage|extended_tip|color" msgid "Select a color for the current numbering scheme." -msgstr "" +msgstr "Välj en färg för det aktuella numreringsschemat." #. hJgCL #: cui/uiconfig/ui/numberingoptionspage.ui:453 @@ -13248,7 +13248,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:515 msgctxt "numberingoptionspage|extended_tip|suffix" msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box." -msgstr "" +msgstr "Ange ett tecken eller text som ska visas bakom numret i listan. För att skapa numreringsschemat \"1.)\", skriv in \".)\" i denna ruta." #. wVrAN #: cui/uiconfig/ui/numberingoptionspage.ui:532 @@ -13534,7 +13534,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 "Ange ett namn för det valda objektet. Namnet kommer att synas i Navigatorn." #. 4TRWw #: cui/uiconfig/ui/objecttitledescdialog.ui:15 @@ -13798,7 +13798,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:412 msgctxt "extended_tip|expertconfig" msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME." -msgstr "" +msgstr "Öppnar dialogrutan Expertinställningar för avancerade inställningar och konfiguration av %PRODUCTNAME." #. ZLtrh #: cui/uiconfig/ui/optadvancedpage.ui:427 @@ -14026,7 +14026,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:34 msgctxt "extended_tip|codecomplete_enable" msgid "Display methods of a Basic object." -msgstr "" +msgstr "Visa metoder för ett Basic-objekt." #. B8fvE #: cui/uiconfig/ui/optbasicidepage.ui:49 @@ -14044,7 +14044,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:86 msgctxt "extended_tip|autoclose_proc" msgid "Automatically insert closing statements for procedures." -msgstr "" +msgstr "Infoga automatiskt slutsatser för procedurer." #. qKTPa #: cui/uiconfig/ui/optbasicidepage.ui:97 @@ -14056,7 +14056,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:105 msgctxt "extended_tip|autoclose_paren" msgid "Automatically close open parenthesis." -msgstr "" +msgstr "Stäng automatiskt öppen parentes." #. EExBY #: cui/uiconfig/ui/optbasicidepage.ui:116 @@ -14068,7 +14068,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:124 msgctxt "extended_tip|autoclose_quotes" msgid "Automatically close open quotes." -msgstr "" +msgstr "Stäng automatiskt öppna citat." #. CCtUM #: cui/uiconfig/ui/optbasicidepage.ui:135 @@ -14080,7 +14080,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:143 msgctxt "extended_tip|autocorrect" msgid "Correct cases of Basic variables and keywords while typing." -msgstr "" +msgstr "Korrigera fall av grundläggande variabler och nyckelord medan du skriver." #. dJWhM #: cui/uiconfig/ui/optbasicidepage.ui:158 @@ -14098,7 +14098,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:195 msgctxt "extended_tip|extendedtypes_enable" msgid "Allow UNO object types as valid Basic types." -msgstr "" +msgstr "Tillåt UNO-objekttyper som giltiga Basic-typer." #. rG8Fi #: cui/uiconfig/ui/optbasicidepage.ui:210 @@ -14328,7 +14328,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:129 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 "Kryssrutorna [L] och [S] visar posterna för paret OLE-objekt som kan konverteras när du laddar in i %PRODUCTNAME [L] och/eller när du sparar i ett Microsoft-format [S]. " #. x5kfq #. The [L] here is repeated as the column title for the "Load" column of this options page @@ -14366,7 +14366,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:239 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 två teckenattribut som liknar %PRODUCTNAME teckenbakgrund. Välj lämpligt attribut (markering eller skuggning) som du vill använda vid export till Microsoft Office-filformat." #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:251 @@ -14378,7 +14378,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:260 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 två teckenattribut som liknar %PRODUCTNAME teckenbakgrund. Välj lämpligt attribut (markering eller skuggning) som du vill använda vid export till Microsoft Office-filformat." #. gKwdG #: cui/uiconfig/ui/optfltrembedpage.ui:283 @@ -14396,19 +14396,19 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:319 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 "Markera den här kryssrutan för att generera en Microsoft Office-låsfil utöver %PRODUCTNAME egna låsfil." #. Sg5Bw #: cui/uiconfig/ui/optfltrembedpage.ui:335 msgctxt "optfltrembedpage|label5" msgid "Lock Files" -msgstr "" +msgstr "Låsfiler" #. EUBnP #: cui/uiconfig/ui/optfltrembedpage.ui:349 msgctxt "extended_tip|OptFilterPage" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Anger inställningarna för import och export av Microsoft Office och andra dokument." #. ttAk5 #: cui/uiconfig/ui/optfltrpage.ui:27 @@ -14420,7 +14420,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:35 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 "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." #. AChYC #: cui/uiconfig/ui/optfltrpage.ui:46 @@ -14444,7 +14444,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:74 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 "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." #. W6nED #: cui/uiconfig/ui/optfltrpage.ui:89 @@ -14462,7 +14462,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:126 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 "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." #. S6ozV #: cui/uiconfig/ui/optfltrpage.ui:137 @@ -14486,7 +14486,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:165 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 "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." #. a5EkB #: cui/uiconfig/ui/optfltrpage.ui:180 @@ -14972,7 +14972,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:512 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 "Om du markerar det här fältet exporteras även utskriftslayouten för det aktuella dokumentet (till exempel innehållsförteckning med justerade sidnummer och punktlinjer)." #. Wwuvt #: cui/uiconfig/ui/opthtmlpage.ui:523 @@ -15032,7 +15032,7 @@ #: cui/uiconfig/ui/optionsdialog.ui:74 msgctxt "optionsdialog|apply" msgid "Save all modifications without closing dialog. Cannot be reverted with Reset." -msgstr "" +msgstr "Spara alla ändringar utan att stänga dialogrutan. Kan inte återställas med Återställ." #. isfxZ #: cui/uiconfig/ui/optionsdialog.ui:91 @@ -15050,7 +15050,7 @@ #: cui/uiconfig/ui/optionsdialog.ui:111 msgctxt "optionsdialog|cancel" msgid "Discard all unsaved changes and close dialog." -msgstr "" +msgstr "Släng alla osparade ändringar och stäng dialogrutan." #. mVmUq #: cui/uiconfig/ui/optionsdialog.ui:114 @@ -15122,7 +15122,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:126 msgctxt "optjsearchpage|matchrepeatcharmarks" msgid "It_eration marks" -msgstr "" +msgstr "It_erationsmärken" #. fHHv6 #: cui/uiconfig/ui/optjsearchpage.ui:134 @@ -15440,7 +15440,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:481 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 "Anger datum för acceptansmönster för det aktuella språket. Calc-kalkylblad och Writer-tabellcellinmatning måste matcha språkberoende datumacceptansmönster innan det identifieras som ett giltigt datum." #. WoNAA #: cui/uiconfig/ui/optlanguagespage.ui:492 @@ -15500,7 +15500,7 @@ #: cui/uiconfig/ui/optlingupage.ui:297 msgctxt "lingudicts" msgid "Lists the available user dictionaries." -msgstr "" +msgstr "Listar tillgängliga användarordlistor." #. qBrCR #: cui/uiconfig/ui/optlingupage.ui:317 @@ -15512,7 +15512,7 @@ #: cui/uiconfig/ui/optlingupage.ui:324 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 "Öppnar dialogrutan Ny ordlista, där du kan namnge en ny användardefinierad ordlista eller ordlista med undantag och ange språket." #. mCu3q #: cui/uiconfig/ui/optlingupage.ui:336 @@ -15530,7 +15530,7 @@ #: cui/uiconfig/ui/optlingupage.ui:344 msgctxt "lingudictsedit" msgid "Opens the Edit custom dictionary dialog, in which you can add to your custom dictionary or edit existing entries." -msgstr "" +msgstr "Öppnar dialogrutan Redigera anpassad ordlista, där du kan lägga till i din anpassade ordlista eller redigera befintliga poster." #. WCFD5 #: cui/uiconfig/ui/optlingupage.ui:356 @@ -15542,7 +15542,7 @@ #: cui/uiconfig/ui/optlingupage.ui:363 msgctxt "lingudictsdelete" msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected." -msgstr "" +msgstr "Tar bort den valda ordlistan efter en bekräftelse, förutsatt att den inte är skrivskyddad." #. qEqZD #: cui/uiconfig/ui/optlingupage.ui:406 @@ -15554,7 +15554,7 @@ #: cui/uiconfig/ui/optlingupage.ui:487 msgctxt "linguoptions" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "" +msgstr "Definierar alternativen för stavningskontroll och avstavning." #. 58e5v #: cui/uiconfig/ui/optlingupage.ui:500 @@ -15572,7 +15572,7 @@ #: cui/uiconfig/ui/optlingupage.ui:509 msgctxt "linguoptionsedit" msgid "If you want to change a value, select the entry and then click Edit." -msgstr "" +msgstr "Om du vill ändra ett värde, välj posten och klicka sedan på Redigera." #. XCpcE #: cui/uiconfig/ui/optlingupage.ui:536 @@ -15590,7 +15590,7 @@ #: cui/uiconfig/ui/optlingupage.ui:612 msgctxt "OptLinguPage" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Anger egenskaperna för stavningen, synonymordboken och avstavningen." #. ADZ8E #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 @@ -15602,7 +15602,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:102 msgctxt "nameedit" msgid "Specifies the name of the new custom dictionary." -msgstr "" +msgstr "Anger namnet på den nya anpassade ordlistan." #. XucrZ #: cui/uiconfig/ui/optnewdictionarydialog.ui:115 @@ -15626,13 +15626,13 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:149 msgctxt "except" msgid "Specifies whether you wish to avoid certain words in your documents." -msgstr "" +msgstr "Anger om du vill undvika vissa ord i dina dokument." #. VJQ4d #: cui/uiconfig/ui/optnewdictionarydialog.ui:173 msgctxt "language" msgid "By selecting a certain language you can limit the use of the custom dictionary." -msgstr "" +msgstr "Genom att välja ett visst språk kan du begränsa användningen av den anpassade ordlistan." #. CpgB2 #: cui/uiconfig/ui/optnewdictionarydialog.ui:188 @@ -15644,7 +15644,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:213 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 "I sektionen Ordlista kan du namnge en ny användardefinierad ordlista eller ordlista med undantag och ange språket." #. n6vQH #: cui/uiconfig/ui/optonlineupdatepage.ui:30 @@ -15728,7 +15728,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:218 msgctxt "extended_tip|autodownload" msgid "Enable the automatic download of updates to the specified folder." -msgstr "" +msgstr "Aktivera automatisk nedladdning av uppdateringar till den angivna mappen." #. AmVMh #: cui/uiconfig/ui/optonlineupdatepage.ui:238 @@ -15806,7 +15806,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:453 msgctxt "extended_tip|OptOnlineUpdatePage" msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME." -msgstr "" +msgstr "Anger några alternativ för automatisk avisering och nedladdning av onlineuppdateringar till %PRODUCTNAME." #. QYxCN #: cui/uiconfig/ui/optopenclpage.ui:24 @@ -15854,7 +15854,7 @@ #: cui/uiconfig/ui/optpathspage.ui:126 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 "För att ändra en post i den här listan, klicka på posten och klicka på Redigera. Du kan också dubbelklicka på posten." #. rfDum #: cui/uiconfig/ui/optpathspage.ui:144 @@ -15872,7 +15872,7 @@ #: cui/uiconfig/ui/optpathspage.ui:172 msgctxt "default" msgid "The Default button resets the predefined paths for all selected entries." -msgstr "" +msgstr "Knappen Standard återställer de fördefinierade sökvägarna för alla valda poster." #. q8JFc #: cui/uiconfig/ui/optpathspage.ui:184 @@ -15884,13 +15884,13 @@ #: cui/uiconfig/ui/optpathspage.ui:191 msgctxt "edit" msgid "Click to display the Select Path or Edit Paths dialog." -msgstr "" +msgstr "Klicka för att visa dialogrutan Välj sökväg eller Redigera sökvägar." #. G5xyX #: cui/uiconfig/ui/optpathspage.ui:210 msgctxt "OptPathsPage" msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user." -msgstr "" +msgstr "Det här avsnittet innehåller standardsökvägarna till viktiga mappar i %PRODUCTNAME. Dessa sökvägar kan redigeras av användaren." #. pQEWv #: cui/uiconfig/ui/optproxypage.ui:26 @@ -16034,7 +16034,7 @@ #: cui/uiconfig/ui/optsavepage.ui:42 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 "Om det är aktiverat kommer skrivarinställningarna att laddas med dokumentet. Detta kan göra att ett dokument skrivs ut på en avlägsen skrivare, om du inte ändrar skrivaren manuellt i dialogrutan Skriv ut. Om den är inaktiverad kommer din standardskrivare att användas för att skriva ut detta dokument. De aktuella skrivarinställningarna kommer att lagras med dokumentet oavsett om det här alternativet är markerat eller inte." #. VdFnA #: cui/uiconfig/ui/optsavepage.ui:53 @@ -16046,7 +16046,7 @@ #: cui/uiconfig/ui/optsavepage.ui:61 msgctxt "load_settings" msgid "Loads the user-specific settings saved in a document with the document." -msgstr "" +msgstr "Laddar de användarspecifika inställningarna som sparats i ett dokument med dokumentet." #. js6Gn #: cui/uiconfig/ui/optsavepage.ui:76 @@ -16064,13 +16064,13 @@ #: cui/uiconfig/ui/optsavepage.ui:119 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 "Anger att %PRODUCTNAME sparar informationen som behövs för att återställa alla öppna dokument i händelse av en krasch. Du kan ange tidsintervallet för sparandet." #. ipCBG #: cui/uiconfig/ui/optsavepage.ui:137 msgctxt "autosave_spin" msgid "Specifies the time interval in minutes for the automatic recovery option." -msgstr "" +msgstr "Anger tidsintervallet i minuter för alternativet för automatisk återställning." #. BN5Js #: cui/uiconfig/ui/optsavepage.ui:150 @@ -16088,7 +16088,7 @@ #: cui/uiconfig/ui/optsavepage.ui:173 msgctxt "userautosave" msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does." -msgstr "" +msgstr "Anger att %PRODUCTNAME sparar alla öppna dokument när information om automatisk återställning sparas. Använder samma tidsintervall som automatisk återställning gör." #. kwFtx #: cui/uiconfig/ui/optsavepage.ui:184 @@ -16100,7 +16100,7 @@ #: cui/uiconfig/ui/optsavepage.ui:192 msgctxt "relative_fsys" msgid "Select this box for relative saving of URLs in the file system." -msgstr "" +msgstr "Markera den här rutan för relativ lagring av URL:er i filsystemet." #. 8xmX3 #: cui/uiconfig/ui/optsavepage.ui:203 @@ -16112,7 +16112,7 @@ #: cui/uiconfig/ui/optsavepage.ui:211 msgctxt "docinfo" msgid "Specifies that the Properties dialog will appear every time you select the Save As command." -msgstr "" +msgstr "Anger att dialogrutan Egenskaper visas varje gång du väljer kommandot Spara som." #. ctAxA #: cui/uiconfig/ui/optsavepage.ui:222 @@ -16124,7 +16124,7 @@ #: cui/uiconfig/ui/optsavepage.ui:230 msgctxt "relative_inet" msgid "Select this box for relative saving of URLs to the Internet." -msgstr "" +msgstr "Markera den här rutan för relativ lagring av webbadresser till Internet." #. YsjVX #: cui/uiconfig/ui/optsavepage.ui:241 @@ -16136,7 +16136,7 @@ #: cui/uiconfig/ui/optsavepage.ui:249 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 "Sparar den tidigare versionen av ett dokument som en säkerhetskopia när du sparar ett dokument. Varje gång %PRODUCTNAME skapar en säkerhetskopia ersätts den tidigare säkerhetskopian. Säkerhetskopien får tillägget .BAK." #. NaGCU #: cui/uiconfig/ui/optsavepage.ui:264 @@ -16154,7 +16154,7 @@ #: cui/uiconfig/ui/optsavepage.ui:301 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 "Du kan välja att få ett varningsmeddelande när du sparar ett dokument i ett format som inte är OpenDocument eller som du inte ställt in som standardformat i Ladda/Spara - Allmänt i dialogrutan Alternativ." #. 5ANvD #. EN-US, the term 'extended' must not be translated. @@ -16203,7 +16203,7 @@ #: cui/uiconfig/ui/optsavepage.ui:361 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 "Vissa företag eller organisationer kan kräva ODF-dokument i formatet ODF 1.0/1.1 eller ODF 1.2. Du kan välja dessa format för att spara i listrutan. Dessa äldre format kan inte lagra alla nya funktioner, så det nya formatet ODF 1.3 (Utökad) rekommenderas där det är möjligt." #. cxPqV #: cui/uiconfig/ui/optsavepage.ui:374 @@ -16263,13 +16263,13 @@ #: cui/uiconfig/ui/optsavepage.ui:413 msgctxt "doctype" msgid "Specifies the document type for which you want to define the default file format." -msgstr "" +msgstr "Anger den dokumenttyp som du vill definiera standardfilformatet för." #. 69GMF #: cui/uiconfig/ui/optsavepage.ui:428 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 "Anger hur dokument av den typ som valts till vänster alltid kommer att sparas som denna filtyp. Du kan välja en annan filtyp för det aktuella dokumentet i dialogrutan Spara som." #. 29FUf #: cui/uiconfig/ui/optsavepage.ui:441 @@ -16287,7 +16287,7 @@ #: cui/uiconfig/ui/optsavepage.ui:471 msgctxt "OptSavePage" msgid "In the General section, you can select default settings for saving documents, and can select default file formats." -msgstr "" +msgstr "I avsnittet Allmänt kan du välja standardinställningar för att spara dokument och kan välja standardfilformat." #. ArEZy #: cui/uiconfig/ui/optsecuritypage.ui:32 @@ -16305,7 +16305,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:53 msgctxt "extended_tip|tsas" msgid "Opens the Time Stamping Authority URLs dialog." -msgstr "" +msgstr "Öppnar dialogrutan Time Stamping Authority URL:er" #. vrbum #: cui/uiconfig/ui/optsecuritypage.ui:68 @@ -16329,7 +16329,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:122 msgctxt "extended_tip|cert" msgid "Opens the Certificate Path dialog." -msgstr "" +msgstr "Öppnar dialogrutan Certifikatsökväg." #. UCYi2 #: cui/uiconfig/ui/optsecuritypage.ui:137 @@ -16353,7 +16353,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:191 msgctxt "extended_tip|macro" msgid "Opens the Macro Security dialog." -msgstr "" +msgstr "Öppnar dialogrutan Makrosäkerhet." #. rDJXk #: cui/uiconfig/ui/optsecuritypage.ui:206 @@ -16443,7 +16443,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:460 msgctxt "extended_tip|options" msgid "Opens the \"Security Options and Warnings\" dialog." -msgstr "" +msgstr "Öppnar dialogrutan \"Säkerhetsalternativ och varningar\"." #. GqVkJ #: cui/uiconfig/ui/optsecuritypage.ui:475 @@ -16665,7 +16665,7 @@ #: cui/uiconfig/ui/optuserpage.ui:463 msgctxt "extended tips | usefordoprop" msgid "Mark to use the data in document properties" -msgstr "" +msgstr "Markera för att använda data i dokumentegenskaper" #. ZngAH #: cui/uiconfig/ui/optuserpage.ui:478 @@ -16695,7 +16695,7 @@ #: cui/uiconfig/ui/optuserpage.ui:525 msgctxt "extended tips | rusfathersname" msgid "Type your father's name" -msgstr "" +msgstr "Skriv din fars namn" #. pAF2D #: cui/uiconfig/ui/optuserpage.ui:544 @@ -16791,7 +16791,7 @@ #: cui/uiconfig/ui/optuserpage.ui:719 msgctxt "extended tips | apartnum" msgid "Type your apartment number" -msgstr "" +msgstr "Ange ditt lägenhetsnummer" #. 8kEFB #: cui/uiconfig/ui/optuserpage.ui:739 @@ -16833,7 +16833,7 @@ #: cui/uiconfig/ui/optuserpage.ui:848 msgctxt "extended tips | country" msgid "Type your country and region" -msgstr "" +msgstr "Skriv ditt land och din region" #. Lw69w #: cui/uiconfig/ui/optuserpage.ui:879 @@ -16869,13 +16869,13 @@ #: cui/uiconfig/ui/optuserpage.ui:966 msgctxt "extended tip | encryptionkey" msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents." -msgstr "" +msgstr "Välj din OpenPGP-nyckel från rullgardinsmenyn för kryptering av ODF-dokument." #. m27Ub #: cui/uiconfig/ui/optuserpage.ui:985 msgctxt "extended tip | signingkey" msgid "Select your OpenPGP key from the drop-down list for signing ODF documents." -msgstr "" +msgstr "Välj din OpenPGP-nyckel från rullgardinsmenyn för att signera ODF-dokument." #. 8USbk #: cui/uiconfig/ui/optuserpage.ui:996 @@ -16887,7 +16887,7 @@ #: cui/uiconfig/ui/optuserpage.ui:1004 msgctxt "extended tip | encrypttoself" msgid "Mark this checkbox to also encrypt the file with your public key, so you can open the document with your private key." -msgstr "" +msgstr "Markera den här kryssrutan för att även kryptera filen med din offentliga nyckel, så att du kan öppna dokumentet med din privata nyckel." #. P5BBC #: cui/uiconfig/ui/optuserpage.ui:1020 @@ -16899,7 +16899,7 @@ #: cui/uiconfig/ui/optuserpage.ui:1036 msgctxt "extended tip | OptUserPage" msgid "Use this tab page to enter or edit user data." -msgstr "" +msgstr "Använd den här fliksidan för att ange eller redigera användardata." #. DryvE #: cui/uiconfig/ui/optviewpage.ui:48 @@ -16935,7 +16935,7 @@ #: cui/uiconfig/ui/optviewpage.ui:84 msgctxt "extended_tip | mousepos" msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs." -msgstr "" +msgstr "Anger om och hur muspekaren ska placeras i nyöppnade dialogrutor." #. GCAp5 #: cui/uiconfig/ui/optviewpage.ui:99 @@ -16959,7 +16959,7 @@ #: cui/uiconfig/ui/optviewpage.ui:105 msgctxt "extended_tip | mousemiddle" msgid "Defines the function of the middle mouse button." -msgstr "" +msgstr "Definierar funktionen för den mellersta musknappen." #. NbJKy #: cui/uiconfig/ui/optviewpage.ui:120 @@ -16995,7 +16995,7 @@ #: cui/uiconfig/ui/optviewpage.ui:179 msgctxt "extended_tip | menuicons" msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes." -msgstr "" +msgstr "Visar ikoner bredvid motsvarande menyalternativ. Välj mellan \"Automatisk\", \"Dölj\" och \"Visa\". \"Automatisk\" visar ikoner enligt systeminställningar och teman." #. evVAC #: cui/uiconfig/ui/optviewpage.ui:207 @@ -17049,7 +17049,7 @@ #: cui/uiconfig/ui/optviewpage.ui:284 msgctxt "extended_tip | notebookbariconsize" msgid "Specifies the display size of notebook bar icons." -msgstr "" +msgstr "Anger visningsstorleken för ikonerna i notebook-raden." #. G8qAD #: cui/uiconfig/ui/optviewpage.ui:297 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Automatisk" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Hög kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Anger ikonstilen för ikoner i verktygsfält och dialogrutor." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Ikonstil:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Lägg till fler ikonteman via tillägg" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Ikonstil" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Kräver omstart" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Använd maskinvaruacceleration" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Ger direkt åtkomst till bildskärmsadapterns maskinvaruegenskaper som förbättrar skärmvisningen." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Använd kantutjämning (anti-aliasing)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "När denna funktion stöds kan du aktivera och inaktivera antialiasing av grafik. Med funktionen anti-aliasing aktiverad ser visningen av de flesta grafikobjekt mjukare ut och har färre artefakter." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Använd Skia för all rendering" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Tvinga fram Skia-programrendering" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Kräver omstart. Aktivera detta förhindrar att grafikdrivrutiner används." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia är för närvarande aktiverat." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia är för närvarande inaktiverat." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafiska utdata" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Visa fö_rhandsgranskning av teckensnitt" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "Visar namnen på valbara teckensnitt i motsvarande teckensnitt, till exempel teckensnitt i rutan Teckensnitt i formateringsfältet." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Utjämna skärmteckensnitt" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." -msgstr "" +msgstr "Välj för att jämna ut textens utseende på skärmen." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "från:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." -msgstr "" +msgstr "Ange den minsta teckenstorleken att använda kantutjämning på." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Teckensnittslistor" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Kör grafiktester" @@ -17427,20 +17403,20 @@ #: cui/uiconfig/ui/pageformatpage.ui:543 msgctxt "pageformatpage|checkRegisterTrue" msgid "Use page li_ne-spacing" -msgstr "" +msgstr "Använd _radavstånd på sidan" #. 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 "Aktiverar radavstånd på sidan (i register) med den valda referensstilen" #. p2egb #: cui/uiconfig/ui/pageformatpage.ui:552 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 "Om det är aktiverat kommer alla styckeformat med alternativet radavstånd på sidan aktiverat att påverkas, förutsatt att radavståndet för referensformatet är. Detta kommer att rikta in dem till ett osynligt vertikalt sidrutnät, oavsett teckenstorlek, så att varje rad har samma höjd." #. 46djR #: cui/uiconfig/ui/pageformatpage.ui:566 @@ -17512,32 +17488,32 @@ #: cui/uiconfig/ui/pageformatpage.ui:688 msgctxt "pageformatpage|liststoreGutterPosition" msgid "Top" -msgstr "" +msgstr "Överst" #. AosV5 #: cui/uiconfig/ui/pageformatpage.ui:704 msgctxt "pageformatpage|checkRtlGutter" msgid "Gutter on right side of page" -msgstr "" +msgstr "Innermarginal till höger på sidan" #. cuazP #: cui/uiconfig/ui/pageformatpage.ui:718 msgctxt "pageformatpage|checkBackgroundFullSize" msgid "Background covers margins" -msgstr "" +msgstr "Bakgrunden täcker marginaler" #. ApZcb #. xdds #: cui/uiconfig/ui/pageformatpage.ui:722 msgctxt "pageformatpage|checkBackgroundFullSize" msgid "Any background will cover margins of the page as well" -msgstr "" +msgstr "Alla bakgrunder täcker också sidans marginaler" #. XtMGD #: cui/uiconfig/ui/pageformatpage.ui:727 msgctxt "extended_tip|checkBackgroundFullSize" msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins." -msgstr "" +msgstr "Om det är aktiverat kommer valfri bakgrund att täcka hela sidan, inklusive marginaler. Om den är inaktiverad täcker valfri bakgrund bara sidan innanför marginalerna." #. xdECe #: cui/uiconfig/ui/pageformatpage.ui:742 @@ -17729,7 +17705,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:155 msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text" msgid "Indent paragraph automatically according to font size and line spacing." -msgstr "" +msgstr "Dra in stycke automatiskt efter teckenstorlek och radavstånd." #. L9iw7 #: cui/uiconfig/ui/paraindentspacing.ui:208 @@ -17759,7 +17735,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:317 msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING" msgid "Do not add space between paragraphs of the same style" -msgstr "" +msgstr "Lägg inte till mellanslag mellan stycken i samma stil" #. hWQWQ #: cui/uiconfig/ui/paraindentspacing.ui:336 @@ -17819,20 +17795,20 @@ #: cui/uiconfig/ui/paraindentspacing.ui:460 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "" +msgstr "Aktivera _radavstånd på sidan" #. uesRM #. xdds #: cui/uiconfig/ui/paraindentspacing.ui:463 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "" +msgstr "Tillämpar radavstånd på sidan (i register) om inställt för sidformatmallen." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:469 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 "Om radavstånd på sidan är aktiverat och sidformatet använder radavstånd på sidan, kommer detta stycke att anpassas till ett osynligt vertikalt sidrutnät, oavsett teckenstorlek, så att varje rad har samma höjd." #. GxJB6 #: cui/uiconfig/ui/paraindentspacing.ui:485 @@ -18042,7 +18018,7 @@ #: cui/uiconfig/ui/pastespecial.ui:175 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 "Välj ett format för urklippsinnehållet som du vill klistra in. Det tillgängliga formatet beror på det kopierade eller urklippta källformatet." #. gjnwU #: cui/uiconfig/ui/pastespecial.ui:186 @@ -18060,7 +18036,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:71 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 "Lägger till ett anpassat mönster till den aktuella listan. Ange egenskaperna för ditt mönster och klicka sedan på den här knappen." #. 68KjX #: cui/uiconfig/ui/patterntabpage.ui:83 @@ -18072,7 +18048,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:90 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 "Tillämpar de aktuella mönsteregenskaperna på det valda mönstret. Om du vill kan du spara mönstret under ett annat namn." #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:113 @@ -18096,7 +18072,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:187 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 "Rita mönstret i tavlan med 8 x 8 pixlar. Klicka på en mönsterpixel för att aktivera den, klicka igen för att inaktivera den." #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:218 @@ -18108,7 +18084,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:242 msgctxt "patterntabpage|extended_tip|LB_COLOR" msgid "Set the color of the activated pattern pixels." -msgstr "" +msgstr "Ställ in färgen på de aktiverade mönsterpixlarna." #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:269 @@ -18120,7 +18096,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:293 msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR" msgid "Set the color of the deactivated pattern pixels." -msgstr "" +msgstr "Ställ in färgen på de inaktiverade mönsterpixlarna." #. hg7RL #: cui/uiconfig/ui/patterntabpage.ui:316 @@ -18144,7 +18120,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:397 msgctxt "patterntabpage|extended_tip|PatternTabPage" msgid "Fills the object with a simple two color pattern selected on this page." -msgstr "" +msgstr "Fyller objektet med ett enkelt tvåfärgsmönster som valts på den här sidan." #. WCjNN #: cui/uiconfig/ui/percentdialog.ui:14 @@ -18234,7 +18210,7 @@ #: cui/uiconfig/ui/picknumberingpage.ui:37 msgctxt "picknumberingpage|extended_tip|valueset" msgid "Click the numbering scheme that you want to use." -msgstr "" +msgstr "Klicka på numreringsschemat som du vill använda." #. 9JnpQ #: cui/uiconfig/ui/picknumberingpage.ui:50 @@ -18246,7 +18222,7 @@ #: cui/uiconfig/ui/picknumberingpage.ui:58 msgctxt "picknumberingpage|extended_tip|PickNumberingPage" msgid "Displays the different numbering schemes that you can apply." -msgstr "" +msgstr "Visar de olika numreringsscheman som du kan använda." #. BDFqB #: cui/uiconfig/ui/pickoutlinepage.ui:37 @@ -18594,7 +18570,7 @@ #: cui/uiconfig/ui/posterdialog.ui:203 msgctxt "posterdialog|extended_tip|PosterDialog" msgid "Opens a dialog to determine the number of poster colors." -msgstr "" +msgstr "Öppnar en dialogruta för att fastställa antalet posterfärger." #. LpQaD #: cui/uiconfig/ui/qrcodegen.ui:14 @@ -18724,7 +18700,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:384 msgctxt "qr code dialog title" msgid "Generate linear and matrix codes for any text or URL." -msgstr "" +msgstr "Generera linjära och matriskoder för vilken text eller URL som helst." #. 3HNDZ #: cui/uiconfig/ui/querychangelineenddialog.ui:7 @@ -19084,7 +19060,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:183 msgctxt "scriptorganizer|extended_tip|edit" msgid "Opens the default script editor for your operating system." -msgstr "" +msgstr "Öppnar standardskriptredigeraren för ditt operativsystem." #. 8iqip #: cui/uiconfig/ui/scriptorganizer.ui:195 @@ -19096,7 +19072,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:201 msgctxt "scriptorganizer|extended_tip|rename" msgid "Opens a dialog where you can change the name of the selected script." -msgstr "" +msgstr "Öppnar en dialogruta där du kan ändra namnet på det valda skriptet." #. vvvff #: cui/uiconfig/ui/scriptorganizer.ui:213 @@ -19108,7 +19084,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:219 msgctxt "scriptorganizer|extended_tip|delete" msgid "Prompts you to delete the selected script." -msgstr "" +msgstr "Ber dig att ta bort det valda skriptet." #. fQdom #: cui/uiconfig/ui/scriptorganizer.ui:241 @@ -19120,7 +19096,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:266 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 "Välj ett makro eller skript från Mina makron, %PRODUCTNAME makron eller ett öppet dokument. Dubbelklicka på en post för att visa tillgängliga makron eller skript." #. U3sDy #: cui/uiconfig/ui/searchattrdialog.ui:22 @@ -19132,7 +19108,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 "Välj de textattribut som du vill söka efter. Om du till exempel söker efter attributet teckensnitt, hittas alla instanser av text som inte använder standardteckensnittet. All text som har ett direkt kodat teckensnittsattribut, och all text där en stil byter teckensnittsattribut, hittas." #. 2nKNE #: cui/uiconfig/ui/searchformatdialog.ui:8 @@ -19210,7 +19186,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:114 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 "Välj för att se en varningsdialogruta när du försöker spara eller skicka ett dokument som innehåller registrerade ändringar, versioner eller kommentarer." #. 6f6yg #: cui/uiconfig/ui/securityoptionsdialog.ui:125 @@ -19222,7 +19198,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:133 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 "Välj för att se en varningsdialogruta när du försöker signera ett dokument som innehåller registrerade ändringar, versioner, fält, referenser till andra källor (till exempel länkade avsnitt eller länkade bilder) eller kommentarer." #. D6Lsv #: cui/uiconfig/ui/securityoptionsdialog.ui:144 @@ -19234,7 +19210,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:152 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 "Välj för att se en varningsdialogruta när du försöker skriva ut ett dokument som innehåller registrerade ändringar eller kommentarer." #. 8BnPF #: cui/uiconfig/ui/securityoptionsdialog.ui:163 @@ -19246,7 +19222,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:171 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 "Välj för att se en varningsdialogruta när du försöker exportera ett dokument till PDF-format som visar inspelade ändringar i Writer eller som visar kommentarer." #. pfCsh #: cui/uiconfig/ui/securityoptionsdialog.ui:243 @@ -19270,7 +19246,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:297 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 "Välj att alltid ta bort användardata från filegenskaperna. Om det här alternativet inte är valt kan du fortfarande ta bort personlig information för det aktuella dokumentet med knappen Återställ egenskaper på Arkiv - Egenskaper - Allmänt." #. y5FFs #: cui/uiconfig/ui/securityoptionsdialog.ui:308 @@ -19282,7 +19258,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:317 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 "Välj att alltid aktivera alternativet Spara med lösenord i filsparadialogrutan. Avmarkera alternativet för att spara filer som standard utan lösenord." #. i3F7P #: cui/uiconfig/ui/securityoptionsdialog.ui:328 @@ -19294,7 +19270,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:337 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 "Om det är aktiverat måste du hålla ned Ctrl-tangenten medan du klickar på en hyperlänk för att följa den länken. Om det inte är aktiverat öppnas hyperlänken med ett klick." #. Ubb9Q #: cui/uiconfig/ui/securityoptionsdialog.ui:348 @@ -19306,7 +19282,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:357 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 "Blockerar användningen av länkade bilder av dokument som inte finns på de betrodda platserna som definierats på fliken Betrodda källor i dialogrutan Makrosäkerhet." #. vQGT6 #: cui/uiconfig/ui/securityoptionsdialog.ui:421 @@ -19318,7 +19294,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:453 msgctxt "extended_tip|SecurityOptionsDialog" msgid "Set security related options and warnings about hidden information in documents." -msgstr "" +msgstr "Ställ in säkerhetsrelaterade alternativ och varningar om dold information i dokument." #. md3EB #: cui/uiconfig/ui/selectpathdialog.ui:16 @@ -19543,7 +19519,7 @@ #: cui/uiconfig/ui/signatureline.ui:248 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 "Aktivera undertecknaren att infoga kommentarer i dialogrutan Signaturrad vid tidpunkten för signaturen." #. BPMGM #: cui/uiconfig/ui/signatureline.ui:259 @@ -19555,7 +19531,7 @@ #: cui/uiconfig/ui/signatureline.ui:268 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 "Markera den här kryssrutan för att visa datumet för signaturen, vid den tidpunkt då dokumentet signeras digitalt." #. fSsbq #: cui/uiconfig/ui/signatureline.ui:282 @@ -19567,7 +19543,7 @@ #: cui/uiconfig/ui/signatureline.ui:307 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 "Infoga instruktioner för undertecknaren. Instruktionerna visas i dialogrutan Signaturrad vid tidpunkten för signaturen." #. jqCPH #: cui/uiconfig/ui/signatureline.ui:324 @@ -19623,7 +19599,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:157 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 "Klicka på knappen Välj certifikat för att öppna dialogrutan Välj certifikat, där dina certifikat är listade. Välj det certifikat som är lämpligt för att signera dokumentet." #. 3vSAS #. Name of the signer @@ -19666,7 +19642,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:300 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 kommentarer om signaturen. Kommentarerna visas i fältet Beskrivning av certifikatet." #. k4PqT #: cui/uiconfig/ui/signsignatureline.ui:316 @@ -19678,7 +19654,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:337 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 "Det här området visar instruktionerna som skapats av dokumentet när han lade till signaturraden." #. kVoG9 #: cui/uiconfig/ui/signsignatureline.ui:352 @@ -19726,7 +19702,7 @@ #: cui/uiconfig/ui/similaritysearchdialog.ui:175 msgctxt "similaritysearchdialog|extended_tip|otherfld" msgid "Enter the number of characters in the search term that can be exchanged." -msgstr "" +msgstr "Ange antalet tecken i söktermen som kan bytas ut." #. K5dwk #: cui/uiconfig/ui/similaritysearchdialog.ui:192 @@ -20998,7 +20974,7 @@ #: cui/uiconfig/ui/textcolumnstabpage.ui:108 msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage" msgid "Sets the columns layout properties for text in the selected drawing or text object." -msgstr "" +msgstr "Ställer in egenskaperna för kolumnlayout för text i det valda ritnings- eller textobjektet." #. 3Huae #: cui/uiconfig/ui/textdialog.ui:8 diff -Nru libreoffice-7.3.4/translations/source/sv/dbaccess/messages.po libreoffice-7.3.5/translations/source/sv/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sv/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-31 09:50+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562761089.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Skapa en ny databas:" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Välj för att skapa en ny databas." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Inbäddad databas:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Öppnar en befintlig databasfil" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Välj att öppna en databasfil från en lista över nyligen använda filer eller från en filvalsdialogruta." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Senast använda:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Välj en databasfil att öppna från listan över nyligen använda filer. Klicka på Slutför för att öppna filen omedelbart och för att avsluta guiden." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Öppna" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Öppnar en filvalsdialogruta där du kan välja en databasfil. Klicka på Öppna eller OK i filvalsdialogrutan för att öppna filen omedelbart och för att avsluta guiden." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Anslut till en befintlig databas" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Välj för att skapa ett databasdokument för en befintlig databasanslutning." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Välj databastyp för den befintliga databasanslutningen." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "finns tillgänglig i denna installation." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Databasguiden skapar en databasfil som innehåller information om en databas." diff -Nru libreoffice-7.3.4/translations/source/sv/extensions/messages.po libreoffice-7.3.5/translations/source/sv/extensions/messages.po --- libreoffice-7.3.4/translations/source/sv/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-29 04:12+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542025002.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Uppdatera formulär" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Flerdelad" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Text" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (kort)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (kort ÅÅ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (kort ÅÅÅÅ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (lång)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/ÅÅ" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/ÅÅ" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "ÅÅ/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/ÅÅÅÅ" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/ÅÅÅÅ" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "ÅÅÅÅ/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "ÅÅ-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "ÅÅÅÅ-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Ej vald" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Markerad" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Inte definierad" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Alla poster" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiv post" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Aktuell sida" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Nej" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Huvudformulär" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ingen" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Enkel" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Många" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Område" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horisontell" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Standard" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Avbryt" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Hjälp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Den markerade inmatningen" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Position för markerad inmatning" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Enradig" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Flerradig" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Flerradig med formateringar" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ingen" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horisontell" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Båda" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Platt" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Vänster överkant" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Vänster centrerad" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Vänster underkant" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Höger överkant" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Höger centrerad" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Höger underkant" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ovanför till vänster" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ovanför centrerad" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ovanför till höger" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Under till vänster" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Under centrerad" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Under till höger" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centrerat" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Behåll" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ersätt" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Fäll ihop" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nej" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Anpassa proportionellt" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Anpassa till storlek" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Vänster-till-höger" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Höger-till-vänster" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Använd det överordnade objektets inställningar" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Aldrig" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Vid fokus" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Alltid" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Till stycke" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Som tecken" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Till sida" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Till ram" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Till tecken" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Till sida" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Till cell" diff -Nru libreoffice-7.3.4/translations/source/sv/fpicker/messages.po libreoffice-7.3.5/translations/source/sv/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sv/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-21 05:37+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" @@ -216,55 +216,55 @@ msgstr "Datum modifierat" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Öppna" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Spela" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Fil_namn:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Fil_typ:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Skrivskyddad" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Spara med lösenord" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Automatiskt filnamnstillägg" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Redigera filterinställningar" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Kryptera med GPG-nyckel" diff -Nru libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/scalc/01.po libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/scalc/01.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/scalc/01.po 2022-07-15 19:12:51.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-12-20 13:20+0100\n" -"PO-Revision-Date: 2020-12-25 11:36+0000\n" -"Last-Translator: Andreas Pettersson \n" -"Language-Team: Swedish \n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" +"Last-Translator: serval2412 \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.12.2\n" "X-POOTLE-MTIME: 1556732502.000000\n" #. sZfWF @@ -2534,7 +2534,7 @@ "par_id3153193\n" "help.text" msgid "Deletes the current sheet after query confirmation." -msgstr "Tar bort den aktuella tabellen efter att frågan har bekräftats." +msgstr "Tar bort den aktuella tabellen efter att frågan har bekräftats." #. 6JJp6 #: 02170000.xhp @@ -2921,7 +2921,7 @@ "par_id3156441\n" "help.text" msgid "You can also set the view of the column and row headers in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Du kan också ange vyn för kolumn- och radhuvuden i %PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAME Calc – Vy." +msgstr "Du kan också ange vyn för kolumn- och radhuvuden i %PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAME Calc – Vy." #. 2FynF #: 03080000.xhp @@ -3335,7 +3335,7 @@ "par_id3152596\n" "help.text" msgid "Moves the contents of the selected range downward when cells are inserted." -msgstr "Moves the contents of the selected range downward when cells are inserted." +msgstr "Moves the contents of the selected range downward when cells are inserted." #. JUkhx #: 04020000.xhp @@ -3353,7 +3353,7 @@ "par_id3144764\n" "help.text" msgid "Moves the contents of the selected range to the right when cells are inserted." -msgstr "Moves the contents of the selected range to the right when cells are inserted." +msgstr "Moves the contents of the selected range to the right when cells are inserted." #. en4x8 #: 04020000.xhp @@ -3371,7 +3371,7 @@ "par_id3155417\n" "help.text" msgid "Inserts an entire row. The position of the row is determined by the selection on the sheet. The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward." -msgstr "Inserts an entire row. The position of the row is determined by the selection on the sheet. The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward." +msgstr "Inserts an entire row. The position of the row is determined by the selection on the sheet. The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward." #. HKGtx #: 04020000.xhp @@ -44150,7 +44150,7 @@ "par_id3147436\n" "help.text" msgid "Prints out the borders of the individual cells as a grid. For the view on screen, make your choice under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View - Grid lines." -msgstr "Skriver ut de enskilda cellernas kantlinjer som ett rutnät. Du ställer in vyn på bildskärmen under %PRODUCTNAME – InställningarVerktyg – Alternativ – %PRODUCTNAME CalcVisaRutnät." +msgstr "Skriver ut de enskilda cellernas kantlinjer som ett rutnät. Du ställer in vyn på bildskärmen under %PRODUCTNAME – InställningarVerktyg – Alternativ – %PRODUCTNAME CalcVisaRutnät." #. E7Rqa #: 05070500.xhp @@ -45572,7 +45572,7 @@ "par_id3155604\n" "help.text" msgid "The choices Min and Max are sufficient to themselves as found in the range. Other options need to be specified by a value (Percentile, Value, Percentage) or a cell reference or formula (Formula)." -msgstr "Min och max hämtas från det berörda området och du behöver inte ange någon ytterligare information. Andra val kräver att du anger ett värde (Percentil, Värde, Procent) eller en cellreferens eller formel (Formel). " +msgstr "Min och max hämtas från det berörda området och du behöver inte ange någon ytterligare information. Andra val kräver att du anger ett värde (Percentil, Värde, Procent) eller en cellreferens eller formel (Formel)." #. 9jo8a #: 05120000.xhp @@ -47480,7 +47480,7 @@ "par_id3156289\n" "help.text" msgid "Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable." -msgstr "Delar tabellen vid den aktiva cellens övre vänstra hörn, och området uppe till vänster kan inte längre rullas." +msgstr "Delar tabellen vid den aktiva cellens övre vänstra hörn, och området uppe till vänster kan inte längre rullas." #. mBdCG #: 07090100.xhp @@ -50423,7 +50423,7 @@ "par_id3125863\n" "help.text" msgid "You can only select databases that are registered in %PRODUCTNAME. To register a data source, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "Du kan bara välja databaser som är registrerade i %PRODUCTNAME. När du ska registrera en datakälla väljer du %PRODUCTNAME – InställningarVerktyg – Alternativ – %PRODUCTNAME Base – Databaser." +msgstr "Du kan bara välja databaser som är registrerade i %PRODUCTNAME. När du ska registrera en datakälla väljer du %PRODUCTNAME – InställningarVerktyg – Alternativ – %PRODUCTNAME Base – Databaser." #. s5hPU #: 12090101.xhp @@ -51269,7 +51269,7 @@ "par_id3151113\n" "help.text" msgid "Specify the subtotals that you want to calculate." -msgstr "Ange delresultaten som du vill beräkna." +msgstr "Ange delresultaten som du vill beräkna." #. 7qYLt #: 12090105.xhp @@ -51287,7 +51287,7 @@ "par_id3152576\n" "help.text" msgid "Does not calculate subtotals." -msgstr "Beräknar inte delresultat." +msgstr "Beräknar inte delresultat." #. 53F6w #: 12090105.xhp @@ -51305,7 +51305,7 @@ "par_id3155856\n" "help.text" msgid "Automatically calculates subtotals." -msgstr "Beräknar delresultat automatiskt." +msgstr "Beräknar delresultat automatiskt." #. FLUsK #: 12090105.xhp @@ -51323,7 +51323,7 @@ "par_id3149581\n" "help.text" msgid "Select this option, and then click the type of subtotal that you want to calculate in the list." -msgstr "Markera det här alternativet och klicka sedan på den typ av delresultat i listan som du vill beräkna." +msgstr "Markera det här alternativet och klicka sedan på den typ av delresultat i listan som du vill beräkna." #. B9zjQ #: 12090105.xhp @@ -68702,7 +68702,7 @@ "par_id1000020\n" "help.text" msgid "To work on a complex statistical or engineering analysis, you can save steps and time by using Calc Data Statistics. You provide the data and parameters for each analysis, and the set of tools uses the appropriate statistical or engineering functions to calculate and display the results in an output table." -msgstr "Om du arbetar med komplex statistik- eller utvecklingsanalys kan du spara in moment och tid genom att använda Datastatistiken i Calc. Du stoppar in data och parametrar för varje analys och de olika verktygen använder lämpliga statistik- och utvecklingsfunktioner för att beräkna och visa resultaten i en utmatningstabell. " +msgstr "Om du arbetar med komplex statistik- eller utvecklingsanalys kan du spara in moment och tid genom att använda Datastatistiken i Calc. Du stoppar in data och parametrar för varje analys och de olika verktygen använder lämpliga statistik- och utvecklingsfunktioner för att beräkna och visa resultaten i en utmatningstabell." #. CGf5i #: statistics_anova.xhp diff -Nru libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/simpress/guide.po libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/simpress/guide.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/simpress/guide.po 2022-07-15 19:12:51.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-10-25 12:49+0200\n" -"PO-Revision-Date: 2022-01-19 07:29+0000\n" +"PO-Revision-Date: 2022-07-15 17:33+0000\n" "Last-Translator: Leif-Jöran Olsson \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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1535981284.000000\n" #. S83CC @@ -50,7 +50,7 @@ "par_id3153914\n" "help.text" msgid "You can convert two-dimensional (2D) objects to create different shapes. $[officename] can convert 2D objects to the following object types:" -msgstr "" +msgstr "Du kan konvertera tvådimensionella (2D) objekt för att skapa olika former. $[officename] kan konvertera 2D-objekt till följande objekttyper:" #. dog6J #: 3d_create.xhp @@ -347,7 +347,7 @@ "par_id3148703\n" "help.text" msgid "Select an object or group of objects that you want to include in your animation and choose Insert - Media - Animated Image." -msgstr "" +msgstr "Välj ett objekt eller en grupp av objekt som du vill inkludera i animeringen och välj Infoga - Media - Animerad bild." #. EaBa6 #: animated_gif_create.xhp @@ -554,7 +554,7 @@ "hd_id3150251\n" "help.text" msgid "Animating Objects in Presentation Slides" -msgstr "" +msgstr "Animera objekt i presentationsbilder" #. BcnXs #: animated_objects.xhp @@ -590,7 +590,7 @@ "par_id3149875\n" "help.text" msgid "Choose View - Animation, to open the Custom Animation pane in the Sidebar. Click on Add (+) button, and then select an animation effect." -msgstr "" +msgstr "Välj Visa - Animation för att öppna Anpassad Animering i sidopanelen. klicka på Lägg till (+)-knappen och välj en animeringseffekt." #. iHWsE #: animated_objects.xhp diff -Nru libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/swriter/menu.po libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.3.4/translations/source/sv/helpcontent2/source/text/swriter/menu.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/helpcontent2/source/text/swriter/menu.po 2022-07-15 19:12:51.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: 2022-01-11 13:38+0000\n" +"PO-Revision-Date: 2022-07-15 17:32+0000\n" "Last-Translator: Leif-Jöran Olsson \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: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1462674538.000000\n" #. tP5yN @@ -95,7 +95,7 @@ "tit\n" "help.text" msgid "Frame" -msgstr "" +msgstr "Ramar" #. BwzFp #: insert_frame.xhp @@ -104,7 +104,7 @@ "hd_id030720160601535384\n" "help.text" msgid "Frame" -msgstr "" +msgstr "Ramar" #. LZL3Y #: insert_frame.xhp @@ -113,7 +113,7 @@ "par_id030720160603138925\n" "help.text" msgid "This submenu contains both interactive and non-interactive means of inserting a frame." -msgstr "" +msgstr "Undermenyn innehåller både interaktiva och icke-interaktiva sätt att sätta in ramar." #. Hq4D6 #: insert_frame.xhp @@ -122,7 +122,7 @@ "hd_id030720160605268360\n" "help.text" msgid "Frame Interactively" -msgstr "" +msgstr "Ramar interaktivt" #. NsCBf #: insert_frame.xhp @@ -131,7 +131,7 @@ "par_id030720160605261333\n" "help.text" msgid "Insert a frame by drawing its shape with the mouse cursor." -msgstr "" +msgstr "Sätt in en ram genom att markera formen med muspekaren." #. pF4Ah #: insert_frame.xhp @@ -167,7 +167,7 @@ "par_id030720160442296603\n" "help.text" msgid "This submenu includes commands to add and remove page headers and footers." -msgstr "" +msgstr "Undermenyn innehåller sätt att infoga och ta bort sidhuvud och sidfot." #. cSY5i #: submenu_more_breaks.xhp @@ -176,7 +176,7 @@ "tit\n" "help.text" msgid "More Breaks (submenu)" -msgstr "" +msgstr "Fler brytningar (undermeny)" #. smw7v #: submenu_more_breaks.xhp @@ -185,7 +185,7 @@ "hd_id651601651730204\n" "help.text" msgid "More Breaks" -msgstr "" +msgstr "Fler brytningar" #. 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 fler rad-, kolumn-, och sidbrytningar" #. t534N #: 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 "Ikon för Manuell brytning" diff -Nru libreoffice-7.3.4/translations/source/sv/sc/messages.po libreoffice-7.3.5/translations/source/sv/sc/messages.po --- libreoffice-7.3.4/translations/source/sv/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562587816.000000\n" #. kBovX @@ -25253,97 +25253,97 @@ msgstr "~Visa" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Bild" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Bil~d" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rita" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Rita" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Skriv ut" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Skriv ut" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulär" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulär" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Till_ägg" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Till~ägg" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verk_tyg" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Verktyg" @@ -25702,139 +25702,139 @@ msgstr "_Bild" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Ordn_a" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "F_ärg" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Raster" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Språk" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "G_ranska" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Kommentarer" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Jämf_ör" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Visa" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Rita" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "R_edigera" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Ordn_a" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Visa" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_pp" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Teckensnitt" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Justering" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Visa" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Infoga" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Ram" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Ordn_a" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Raster" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Visa" diff -Nru libreoffice-7.3.4/translations/source/sv/sd/messages.po libreoffice-7.3.5/translations/source/sv/sd/messages.po --- libreoffice-7.3.4/translations/source/sv/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-24 09:38+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562680127.000000\n" #. WDjkB @@ -4173,109 +4173,109 @@ msgstr "~Tabell" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Bild" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Bil~d" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rita" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Rita" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulär" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulär" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Master" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Till_ägg" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Till~ägg" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verk_tyg" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Verktyg" @@ -7062,109 +7062,109 @@ msgstr "~Tabell" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Bild" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Bil~d" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rita" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Rita" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Objekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Objekt" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmulär" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmulär" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Master" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Bakgrund" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Till_ägg" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Till~ägg" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "Verk_tyg" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Verktyg" diff -Nru libreoffice-7.3.4/translations/source/sv/sw/messages.po libreoffice-7.3.5/translations/source/sv/sw/messages.po --- libreoffice-7.3.4/translations/source/sv/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 09:59+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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556827645.000000\n" #. v3oJv @@ -10499,19 +10499,19 @@ msgstr "Flyttar ned den markerade styckeformatmallen en nivå i förteckningshierarkin." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stil" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Formatmallar" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Skapar förteckningsposter baserade på specifika styckeformatmallar." @@ -13955,37 +13955,37 @@ msgstr "Byt databas" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definiera" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Använda databaser" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Tillgängliga databaser" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Bläddra..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Öppnar en dialogruta där du kan välja en databasfil (*.odb). Den valda filen läggs till i listan över tillgängliga databaser." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13995,31 +13995,31 @@ "Välj en databasfil med hjälp av bläddringsknappen." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Visar en lista över de databaser som används." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Anger de databaser som är registrerade i %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Byt databas" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Databaser som används för dokumentet:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Ändrar datakällorna för det aktuella dokumentet." @@ -15774,13 +15774,13 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:147 msgctxt "frmaddpage|prev_label" msgid "_Previous link:" -msgstr "Före_gående:" +msgstr "_Föregående länk:" #. PcwqA #: sw/uiconfig/swriter/ui/frmaddpage.ui:161 msgctxt "frmaddpage|next_label" msgid "_Next link:" -msgstr "_Följande:" +msgstr "_Nästa länk:" #. cdFEu #: sw/uiconfig/swriter/ui/frmaddpage.ui:175 @@ -20073,109 +20073,109 @@ msgstr "Använd det aktuella dokumentet" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Använder aktuellt Writer dokument som grund för det kopplade dokumentet." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Skapa ett nytt dokument" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Skapar ett nytt Writer dokument som ska användas vid en kopplad utskrift." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Börja från ett befintligt dokument" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Välj ett befintligt Writer dokument som ska användas som grund för ett kopplat dokument." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Börja från en mall" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Markera den mall som du vill skapa det kopplade dokumentet med." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Börja från ett nyligen sparat startdokument" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Utgå från ett befintligt kopplat dokument när du skapar ett nytt." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Markera dokumentet." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Bläddra..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Lokalisera det Writer-dokument som du vill använda, och klicka på Öppna." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Bläddra..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Öppnar en dialogruta för val av mall." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Datakällan för det aktuella dokumentet är inte registrerad. Vänligen byt databas." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Byt databas..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Välj startdokumentet för kopplad utskrift" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Ange det dokument som du vill använda som bas för kopplingsdokumentet." @@ -22318,49 +22318,49 @@ msgstr "Objekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Typ" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Alternativ" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Textanpassning" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Länk" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Inramning" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Yta" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Transparens" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -22947,7 +22947,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:259 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "Visa formatering" +msgstr "Visningsformatering" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:287 @@ -24967,7 +24967,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:244 msgctxt "printeroptions|extended_tip|autoblankpages" msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page." -msgstr "" +msgstr "Om det här alternativet är aktiverat skrivs automatiskt insatta tomma sidor ut. Detta är bäst om du skriver ut dubbelsidigt. Till exempel, i en bok har en \"kapitel\"-styckestil ställts in så att den alltid börjar med en udda sida. Om föregående kapitel slutar på en udda sida, infogar %PRODUCTNAME en tom sida med jämna nummer. Det här alternativet styr om den jämna sidan ska skrivas ut." #. tkryr #: sw/uiconfig/swriter/ui/printeroptions.ui:253 @@ -27056,7 +27056,7 @@ msgstr "Uppdatera" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Visar statistik för den aktuella filen." diff -Nru libreoffice-7.3.4/translations/source/sv/vcl/messages.po libreoffice-7.3.5/translations/source/sv/vcl/messages.po --- libreoffice-7.3.4/translations/source/sv/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sv/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-10-16 19:38+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" @@ -2324,169 +2324,169 @@ msgstr "Skriver ut hela dokumentet." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Anpassad" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Välj antal bakgrundsbilder som ska skrivas ut per ark för flygblad." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sidor:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Välj filformat." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "med" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Välj filformat." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Marginal:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Markera en undertyp till den basala diagramtypen." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "mellan sidorna" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Avstånd:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Ange marginalen mellan utskriftsområdet och papprets kant." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "till bladets kantlinje" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Ordning:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Vänster till höger, sedan nedåt" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Uppifrån och ned, sedan till höger" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Uppifrån och ned, sedan till vänster" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Höger till vänster, sedan nedåt" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Ange i vilken ordning som sidorna ska skrivas ut." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Rita en kantlinje runt varje sida" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Markera för att rita en ram runt varje sida." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broschyr" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Välj för att skriva ut dokumentet i broschyrformat." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Övergripande förhandsvisning" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Ändra ordningen på sidorna som ska skrivas ut på varje pappersark. Förhandsgranskningen visar hur varje sista pappersark kommer att se ut." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "M_er" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sidlayout" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Allmän" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Skriver ut det aktuella dokumentet, markeringen eller de sidor du anger. Du kan också ange utskriftsalternativ för det aktuella dokumentet." diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/chart2/messages.po libreoffice-7.3.5/translations/source/sw-TZ/chart2/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3701,7 +3701,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/cui/messages.po libreoffice-7.3.5/translations/source/sw-TZ/cui/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17504,177 +17504,152 @@ msgid "Automatic" msgstr "Automatic" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Msigano wa Juu" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/dbaccess/messages.po libreoffice-7.3.5/translations/source/sw-TZ/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3469,74 +3469,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Recently Used" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Fungua" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3544,7 +3544,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/extensions/messages.po libreoffice-7.3.5/translations/source/sw-TZ/extensions/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -300,569 +300,555 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "KISARA" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Matini" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Sanifu (fupi)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Sanifu (fupi)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Sanifu (fupi)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Sanifu (ndefu)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Teua" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Tarehe ya sasa" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Hapana" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yes" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Stop" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Bila" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Single" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Masafa" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Mlalo" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Wima" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Default" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "SAWA" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Ghairi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Msaada" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Single-line" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Multi-line" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Multi-line with formatting" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Bila" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Mlalo" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Wima" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Both" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Bapa" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Left top" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Left centered" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Left bottom" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Right top" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Right centered" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Right bottom" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Above left" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Above centered" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Above right" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Below left" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Below centered" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Below right" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Centered" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Preserve" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Badilisha" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Kunja" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Hapana" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Left-to-right" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Kulia-kwenda-kushoto" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Use superordinate object settings" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Aya" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Kama Kiwambo" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Fremu" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Kwa Kiwambo" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "To Page" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/fpicker/messages.po libreoffice-7.3.5/translations/source/sw-TZ/fpicker/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -215,61 +215,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Jina la faili:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Aina ya faili:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Read-only" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Hifadhi kwa nywila" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Tawi otomati la jina la faili" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Hariri vipimo chujio" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/sc/messages.po libreoffice-7.3.5/translations/source/sw-TZ/sc/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25876,97 +25876,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26352,157 +26352,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Panga" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Color" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Gridi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Lugha" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Notes" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Angalia" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Hariri" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Panga" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Angalia" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Group" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fonti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Alignment" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Angalia" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Chomeka" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Fremu" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Panga" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Gridi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/sd/messages.po libreoffice-7.3.5/translations/source/sw-TZ/sd/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4250,109 +4250,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7226,109 +7226,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/sw/messages.po libreoffice-7.3.5/translations/source/sw-TZ/sw/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10749,20 +10749,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Mitindo" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14339,37 +14339,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Vinjari..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14377,31 +14377,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20702,111 +20702,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Vinjari..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Vinjari..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22989,50 +22989,50 @@ msgstr "Object" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Aina" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Options" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Fungasha" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Borders" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Eneo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Uangavu" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27923,7 +27923,7 @@ msgstr "Sasisha" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/sw-TZ/vcl/messages.po libreoffice-7.3.5/translations/source/sw-TZ/vcl/messages.po --- libreoffice-7.3.4/translations/source/sw-TZ/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/sw-TZ/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2341,171 +2341,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Custom:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "by" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Brosha" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/szl/chart2/messages.po libreoffice-7.3.5/translations/source/szl/chart2/messages.po --- libreoffice-7.3.4/translations/source/szl/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563048481.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/szl/cui/messages.po libreoffice-7.3.5/translations/source/szl/cui/messages.po --- libreoffice-7.3.4/translations/source/szl/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563048486.000000\n" #. GyY9M @@ -17131,176 +17131,152 @@ msgid "Automatic" msgstr "Autōmatyczno" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Wysoki kōntrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasyczny" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Leki wiater" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tyl ikōny:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Wymogo ôtwarcio programu na nowo" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Użyj akceleracyje sprzynto_wyj" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Włōncz _antyaliasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Wychōd ôbrazu" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Podglōnd w_ykazu fōntōw" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Wy_gładzanie fōntōw ekranowych" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_z:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Listy fōntōw" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/szl/dbaccess/messages.po libreoffice-7.3.5/translations/source/szl/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/szl/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562265364.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Stwōrz _nowo baza danych" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Ôsadzōn_o baza danych:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Ôtwōrz istniyjōncy zbiōr bazy danych" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ôstatnio używane:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ôtwōrz" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Połōncz z istniyjōncōm bazōm danych" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/szl/extensions/messages.po libreoffice-7.3.5/translations/source/szl/extensions/messages.po --- libreoffice-7.3.4/translations/source/szl/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562952069.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Ôdświyż formular" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Pobier" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Ôgłoś" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "Adresa URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Wieloczyńściowe" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Теkst" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Sztandardowy (krōtki)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Sztandardowy (krōtki RR)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Sztandardowy (krōtki RRRR)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Sztandardowy (dugi)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/RR" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/RR" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "RR/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/RRRR" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/RRRR" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "RRRR/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "RR-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "RRRR-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Niy ôbrano" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Ôbrano" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Niyzdefiniowane" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Wszyjske rekordy" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktywny rekord" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Teroźno strōna" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Niy" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ja" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formular macierzisty" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Brak" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Pojedyncze" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Wielokrotne" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Zakres" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Poziōmo" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Piōnowo" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Wychodno" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Pociep" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Pōmoc" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Zaznaczōny wpis" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozycyjo zaznaczōnego wpisu" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Jedna linijo" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Wiyncyj liniji" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Wiyncyj liniji z formatowaniym" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Brak" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Poziōmo" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Piōnowo" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ôba" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Plaskaty" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Na lewo / wiyrch" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Na lewo / postrzodek" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Na lewo / spodek" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Na prawo / wiyrch" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Na prawo / postrzodek" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Na prawo / spodek" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Wyżyj / lewo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Wyżyj / postrzodek" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Wyżyj / prawo" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Niżyj / lewo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Niżyj / postrzodek" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Niżyj / prawo" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Wypostrzodkowane" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Trzim" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Zmiyń" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Swiń" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Niy" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Trzim proporcyje" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Dopasuj do srogości" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ôd lewyj do prawyj" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Ôd prawyj do lewyj" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Użyj sztelōnkōw ôbiektu nadrzyndnego" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Nigdy" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Jak je aktywny" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Dycki" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Do akapitu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Za znak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Do strōny" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Do rōmki" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Do znaku" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Do strōny" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Do kōmōrki" diff -Nru libreoffice-7.3.4/translations/source/szl/fpicker/messages.po libreoffice-7.3.5/translations/source/szl/fpicker/messages.po --- libreoffice-7.3.4/translations/source/szl/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1561227168.000000\n" #. SJGCw @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Miano zbioru:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Zorta zbioru:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Ino _do ôdczytu" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Spamiyntej z hasłym" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Autōmatyczne rozszyrzynie miana zbioru" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Edycyjo sztelōnkōw _filtra" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Zaszyfruj kluczym GPG" diff -Nru libreoffice-7.3.4/translations/source/szl/sc/messages.po libreoffice-7.3.5/translations/source/szl/sc/messages.po --- libreoffice-7.3.4/translations/source/szl/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563048491.000000\n" #. kBovX @@ -25250,97 +25250,97 @@ msgstr "~Widok" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Ôbr_ozek" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Ôbro~z" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysowanie" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysowanie" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Ôbiekt" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "Ôbiek~t" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Durkuj" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Durkuj" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Noczynie" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Noczynie" @@ -25699,139 +25699,139 @@ msgstr "Ôbr_ozek" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Porozkł_odej" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "F_arba" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Ne_c" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Godka" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Recynzyjo" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Kōmyntorze" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Porōwnanie" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Widok" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "_Rysowanie" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Edycyjo" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Porozkł_odej" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Widok" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_puj" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Fō_nt" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Wyrōw_nanie" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Widok" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Wstow" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Rōmka" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Porozkł_odej" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Ne_c" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Widok" diff -Nru libreoffice-7.3.4/translations/source/szl/sd/messages.po libreoffice-7.3.5/translations/source/szl/sd/messages.po --- libreoffice-7.3.4/translations/source/szl/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563048501.000000\n" #. WDjkB @@ -4172,109 +4172,109 @@ msgstr "~Tabula" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Ôbroz" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Ôbro~z" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysowanie" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysowanie" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Ôbiekt" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Ôbiekt" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Bazowy" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Muster" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Noczynie" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Noczynie" @@ -7061,109 +7061,109 @@ msgstr "~Tabula" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Ôbroz" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Ôbro~z" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "_Rysowanie" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Rysowanie" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Ôbiekt" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "Ôbiek~t" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmular" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmular" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Bazowy" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Muster" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Noczynie" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Noczynie" diff -Nru libreoffice-7.3.4/translations/source/szl/sw/messages.po libreoffice-7.3.5/translations/source/szl/sw/messages.po --- libreoffice-7.3.4/translations/source/szl/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-06-01 13:52+0200\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:02+0200\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \n" "Language: szl\n" @@ -10492,19 +10492,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Styl" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Style" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13948,37 +13948,37 @@ msgstr "Wymiyń bazy danych" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definiuj" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Używane bazy danych" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Dostympne b_azy danych" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Przeglōndej..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13988,31 +13988,31 @@ "Użyj knefla Przeglōndej, coby ôbrać zbiōr bazy danych." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Wymiyń bazy danych" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Baza zastosowano do dokumyntu:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20066,109 +20066,109 @@ msgstr "Użyj teroźnego dokumyntu" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Stwōrz no_wy dokumynt" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Użyj istniyjōnc_ego dokumyntu" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Zacznij ôd sz_ymla" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Zacznij ôd jednego z niydowno spamiyntanych doku_myntōw" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "P_rzeglōndej..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "P_rzeglōndej..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Ôbier dokumynt wychodowy do seryjnyj korespōndyncyje" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22311,49 +22311,49 @@ msgstr "Ôbiekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Zorta" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Ôpcyje" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Swijanie" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Hiperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Ranty" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Wiyrchnia" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Przejzdrzistość" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27047,7 +27047,7 @@ msgstr "Zaktualizuj" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/szl/vcl/messages.po libreoffice-7.3.5/translations/source/szl/vcl/messages.po --- libreoffice-7.3.4/translations/source/szl/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/szl/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-05-22 12:53+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562219254.000000\n" #. k5jTM @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Włosne" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Strōny:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ôd" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Margines:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "miyndzy strōnami" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Ôdległość:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "do rantu archy" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Porzōndek:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Z lewyj do prawyj, a potym w dōł" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Z wiyrchu do spodka, a potym do prawyj" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Z wiyrchu do spodka, a potym do lewyj" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Z prawyj do lewyj, a potym w dōł" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Rysuj rant naôbkoło kożdyj strōny" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broszura" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Ukłod strōny" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Ôgōlne" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/chart2/messages.po libreoffice-7.3.5/translations/source/ta/chart2/messages.po --- libreoffice-7.3.4/translations/source/ta/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3605,7 +3605,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/cui/messages.po libreoffice-7.3.5/translations/source/ta/cui/messages.po --- libreoffice-7.3.4/translations/source/ta/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17213,178 +17213,154 @@ msgid "Automatic" msgstr "தானியக்கம்" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "அண்டம்" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "உயர் மாறுபாடு" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "உயிர் காற்று" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "பழமை" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 #, fuzzy msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "சிபிர்" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 #, fuzzy msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "தென்றல்" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "படவுரு பாணி:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "வன்பொருள் முடுக்கத்தைப் பயன்படுத்து" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr " திரைக் காட்சியை மேம்படுத்த வரைவியல் காட்சி ஏற்பியின் வன்பொருள் சிறப்பியல்புகளை நேரடியாக அணுகுகிறது." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "திரிபுத் திருத்தத்தைப் பயன்படுத்து" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr " ஆதரிக்கப்படுகின்றன போது, வரைவியலின் திரிபுத் திருத்தத்தைச் செயல்படுத்தவும் செயல்நீக்கவும் முடியும். திரிபுத் திருத்தத்தைச் செயல்படுத்துவதால் பெரும்பாலான வரைகலை பொருள்களின் காட்சியானது மிருதுவானதாகவும் குறைந்த கைவண்ணத்தோடும் இருக்கும்." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "வரைவியல் வெளிப்பாடு" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "எழுத்துருகள் முன்னோட்டத்தைக் காட்டு" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "திரை எழுத்துரு திருபுத் திருத்தம்" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr " உரையின் திரை தோற்றத்தை மென்மையாக்குவதற்குத் தேர்க." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "இதிலிருந்து:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "எழுத்துரு பட்டியல்கள்" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/dbaccess/messages.po libreoffice-7.3.5/translations/source/ta/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ta/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3403,73 +3403,73 @@ msgstr "புதிய ஒரு தரவுத்தளத்தை உருவாக்கு" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_பதிக்கப்பட்ட தரவுத்தளம்:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "ஏற்கனவே உள்ள ஒரு தரவுத்தளக் கோப்பைத் திற" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "சமீபத்தில் பயன்படுத்தியது:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "திற" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "ஏற்கனவே உள்ள ஒரு தரவுத்தளத்துடன் இணை" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3477,7 +3477,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/extensions/messages.po libreoffice-7.3.5/translations/source/ta/extensions/messages.po --- libreoffice-7.3.4/translations/source/ta/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -309,601 +309,589 @@ msgid "Refresh form" msgstr "படிவத்தைப் புதுப்பி" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "பெறு" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "இடுகை" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "பல பகுதி" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "உரை" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "செந்தரம் (குறுகிய)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "செந்தரம் (குறுகிய YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "செந்தரம் (குறுகிய YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "செந்தரம் (நீண்ட)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "தேரப்படவில்லை" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "தேரப்பட்டது" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "வரையறுக்கவில்லை" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "எல்லாப் பதிவுகளும்" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "இயக்கத்திலுள்ள பதிவு" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "நடப்பு பக்கம்" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "இல்லை" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ஆம்" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "தாய் படிவம்" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "வெற்றிடம்" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "நிறுத்து" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "எதுவுமில்லை" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ஒற்றை" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "பல" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "வரம்பு/வீச்சு" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "கிடைமட்டம்" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "செங்குத்து" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "முன்னிருப்பு" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "சரி" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ரத்து" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "உதவி" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "தேர்ந்தெடுக்கப்பட்ட உள்ளீடு" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "தேர்ந்தெடுக்கப்பட்ட உள்ளீட்டின் நிலை" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ஒற்றை-கோடு" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "பல -கோடு" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "வடிவூட்டத்துடன் பல-வரி" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (யுனிக்ஸ்)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (விண்டோஸ்)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "எதுவுமில்லை" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "கிடைமட்டம்" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "செங்குத்து" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "இரண்டும்" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "தட்டை" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "இடதின் மேல்" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "இடதின் நடு" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "இடதின் கீழ்" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "வலதின் மேல்" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "வலதின் நடு" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "வலதின் கீழ்" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "மேல் இடது" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "மேல் நடுவில்" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "மேல் வலது" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "கீழ் இடது" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "கீழ் நடுவில்" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "கீழ் வலது" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "நடுவாக" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "பாதுகாத்தல்" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "மாற்று" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "குழம்பிய" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "இல்லை" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "விகிதத்தை வை" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "அளவுடன் பொருத்து" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "இடமிருந்து வலம்" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "வலமிருந்து இடம்" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "சரியாக ஒருங்கிணைக்கும் பொருள் அமைவுகளை பயன்படுத்தவும்" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ஒருபோதும்" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "முன்னிலைப்படுத்தப்பட்ட போது" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "எப்போதும்" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "பத்திக்கு" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "எழுத்து" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "பக்கத்திற்கு" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "சட்டகத்திற்கு" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "எழுத்து" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "பக்கத்திற்கு" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ta/fpicker/messages.po libreoffice-7.3.5/translations/source/ta/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ta/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,55 +217,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "கோப்பு பெயர்:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "கோப்பு வகை:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "வாசிக்க மட்டும்" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "கடவுச்சொல்லுடன் சேமிக்கவும்" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "தன்னியக்க கோப்புப் பெயர் விரிவாக்கம்" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "வடிகட்டி அமைவுகளைத் தொகு" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/sc/messages.po libreoffice-7.3.5/translations/source/ta/sc/messages.po --- libreoffice-7.3.4/translations/source/ta/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25775,97 +25775,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26252,155 +26252,155 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "ஒழுங்கமை" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "நிறம்" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "பின்னல்" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "மொழி:" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "விமர்சனம்" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "கருத்துரைகள்" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "ஒப்பிடு" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "பார்வை" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "தொகு" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "ஒழுங்கமை" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "பார்வை" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "குழு" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "எழுத்துரு" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "நேர்படுத்தல்" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "பார்வை" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "உள்நுழை" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ஊடகம்" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "சட்டகம்" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "ஒழுங்கமை" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "பின்னல்" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ta/sd/messages.po libreoffice-7.3.5/translations/source/ta/sd/messages.po --- libreoffice-7.3.4/translations/source/ta/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4214,109 +4214,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7150,109 +7150,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ta/sw/messages.po libreoffice-7.3.5/translations/source/ta/sw/messages.po --- libreoffice-7.3.4/translations/source/ta/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10627,19 +10627,19 @@ msgstr "அகவரிசை படிநிலையில் தேர்ந்த பத்திப் பாணியை ஒரு மட்டம் கீழே நகர்த்துகிறது." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "பாணிகள்" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "குறிப்பிட்ட பத்திப் பாணிகளிலிருந்து அகவரிசை உள்ளீடுகளை உருவாக்குகிறது." @@ -14084,37 +14084,37 @@ msgstr "தரவுத்தளங்களைப் பரிமாறு" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "அறுதியிடு" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "பயனிலுள்ள தரவுத்தளம்" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "உள்ள தரவுத்தளங்கள்" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "உலாவு..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "ஒரு தரவுத்தளக் கோப்பைத் (*.odb) தேர்வதற்காக ஒரு கோப்பு திறப்பு உரையாடலைத் திறக்கிறது.தேர்ந்த கோப்பு, கிடைக்கப்பெறும் தரவுத்தளங்கள் பட்டியலில் சேர்க்கப்படுகிறது." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14124,31 +14124,31 @@ "உலாவு பொத்தானை பயன்படுத்தி ஒரு தரவுத்தள கோப்பைத் தேர்ந்தெடுக்கவும்." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "பரிமாறும் தரவுத்தளங்கள்" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "ஆவணத்திற்கு தரவுத்தளம் செயற்படுத்தப்பட்டது:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20263,109 +20263,109 @@ msgstr "நடப்பு ஆவணத்தை பயன்படுத்தவும்" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "புதிய ஆவணத்தை உருவாக்கு" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "ஏற்கெனவே உள்ள ஆவணத்திலிருந்து ஆரம்பிக்கவும்" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "ஒரு மாதிரிஉருவிலிருந்து ஆரம்பிக்கவும்" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "சமீபத்தில் சேமிக்கப்பட்ட ஆரம்ப ஆவணத்திலிருந்து ஆரம்பிக்கவும்" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "ஏற்கனவேயுள்ள அஞ்சல் ஒன்றாக்கை புது அஞ்சல் ஒன்றாக்கின் அடித்தளமாகப் பயன்படுத்தவும்" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "உலாவு..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "நீங்கள் பயன்படுத்த விரும்பும் ரைட்டர் கோப்பை இடங்காண்க, பிறகு திற ஐச் சொடுக்குக. " #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "உலாவு..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "அஞ்சல் ஒன்றாக்கத்திற்கான ஆரம்ப ஆவணத்தை தேர்ந்தெடுக்கவும்" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22537,49 +22537,49 @@ msgstr "பொருள்" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "வகை" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "தேர்வுகள்" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "மடிப்பு" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "மீத்தொடுப்பு" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "எல்லைகள்" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "பரப்பு" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ஒளிபுகுமை" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "பெருமம்" @@ -27335,7 +27335,7 @@ msgstr "புதுப்பி" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "நடப்புக் கோப்புக்கான புள்ளியியலைக் காட்டுகிறது." diff -Nru libreoffice-7.3.4/translations/source/ta/vcl/messages.po libreoffice-7.3.5/translations/source/ta/vcl/messages.po --- libreoffice-7.3.4/translations/source/ta/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ta/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2328,169 +2328,169 @@ msgstr "காகிதத்தின் ஒரு தாளில் பன்மடங்கு பக்கங்களை அச்சிடுக." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "தனிப்பயன்" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr " காகிதத்தின் ஒரு தாளில் எத்தனை பக்கங்கள் அச்சிடவேண்டும் எனத் தேர்க." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "ஒரு புதிய XForms ஆவணத்தை உருவாக்கும்." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "இவ்வளவு" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "ஒரு புதிய XForms ஆவணத்தை உருவாக்கும்." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr " ஒவ்வொரு காகித தாட்களிலும் தனிப்பட்ட பக்கங்களுக்கு இடையே ஓரத்தைத் தேர்க." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "பக்கங்களுக்கு இடையே" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "அச்சிட்ட பக்கங்களுக்கும் காகித விளிம்பிற்கும் இடையே ஓரத்தைத் தேர்க." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "தாள் எல்லைக்கு" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "பக்கங்கள் அச்சிடபோகும் ஒழுங்கைத் தேர்க." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ஒவ்வொரு பக்கத்தைச் சுற்றியும் ஒரு எல்லை வரை" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "ஒவ்வொரு பக்கத்தின் சுற்றியுள்ள ஒரு எல்லையை வரைய சோதிக்கவும்." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "சிற்றேடு" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "நடப்பு ஆவணம், தெரிவு அல்லது நீங்கள் குறிப்பிட்ட பக்கங்களை அச்சிடுக. நடப்பு ஆவணத்திற்கான அச்சிடும் தேர்வுகளை நீங்கள் அமைக்கலாம்" diff -Nru libreoffice-7.3.4/translations/source/te/chart2/messages.po libreoffice-7.3.5/translations/source/te/chart2/messages.po --- libreoffice-7.3.4/translations/source/te/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3711,7 +3711,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/cui/messages.po libreoffice-7.3.5/translations/source/te/cui/messages.po --- libreoffice-7.3.4/translations/source/te/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17514,181 +17514,155 @@ msgid "Automatic" msgstr "స్వయంచాలక" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "గెలాక్సీ" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "అధిక కాంట్రాస్టు" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ఆక్సిజన్" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "క్లాసిక్" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "హార్డువేర్ ఏగ్జలరేషన్ వుపయోగించు (_w)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 #, fuzzy msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ఏంటీ-ఎలియాసింగ్ వుపయోగించు (_l)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "గ్రాఫిక్స్ అవుట్పుట్" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "అక్షరశైలిల యొక్క మునుజూపును చూపు(_r)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "స్క్రీన్ ఫాంట్ యాంటీయెలియాసింగ్ (_g)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 #, fuzzy msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "నుండి (_m)" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "అక్షరశైలి జాబితాలు" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/dbaccess/messages.po libreoffice-7.3.5/translations/source/te/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/te/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Telugu \n" @@ -3478,74 +3478,74 @@ msgstr "కొత్త డాటాబేస్ సృష్టించు (_e)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "ఎంబెడెడ్ డాటాబేస్" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "ఇప్పటికేవున్న డాటాబేస్ ఫైల్ తెరువుము (_f)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "ఇటీవల వుపయోగించిన (_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "తెరుచు" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "ఇప్పటికేవున్న డాటాబేస్‌కు అనుసంధానమవ్వు" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3553,7 +3553,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/extensions/messages.po libreoffice-7.3.5/translations/source/te/extensions/messages.po --- libreoffice-7.3.4/translations/source/te/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -310,605 +310,591 @@ msgid "Refresh form" msgstr "ఫారమును రీఫ్రెష్ చేయుము" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "తీసుకువచ్చుట" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "తపాలా" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "బహుళభాగము" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "పాఠం" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "నాణ్యత (చిన్న)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ప్రామాణిక (పొట్టి YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ప్రామాణిక (పొట్టి YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "నాణ్యత(పెద్ద)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "ఎంపికకాలేదు" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "ఎంపికైనది" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "నిర్వచించబడలేదు" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "అన్ని రికార్డులు" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "క్రియాశీల రికార్డు" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "ప్రస్తుత పుట" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "వద్దు" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "అవును" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "మాత్రుక ఫారము" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "వరకు(_t)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ఏదికాదు" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "ఒక్కటి" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "బహుళ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "విస్తృతి" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "అడ్డం" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "నిలువు" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "అప్రమేయం" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "సరే" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "రద్దు" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "సహాయం" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "ఎంపికచేసిన ప్రవేశము" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ఎంపికచేసిన ప్రవేశముయొక్క స్థానము" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ఒకే వరుస" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "ఎక్కువ వరుస" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "ఎక్కువ వరుసలు రూపకంతో" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF(యునిక్స్)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (విండోలు)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ఏదికాదు" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "అడ్డం" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "నిలువు" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "రెండూ" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3డి" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "సమతల" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "ఎగువన ఎడమకు" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "ఎడమ మధ్యభాగం" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ఎడమ దిగువ" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "కుడి ఎగువన" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "కుడి మధ్యభాగం" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "కుడి దిగువ" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "ఎగువన ఎడమకు" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ఎగువన మధ్యభాగం" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ఎగువన కుడికి" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "దిగువ ఎడమకు" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "దిగువ మధ్యభాగం" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "దిగువ కుడికి " #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "మధ్యగా" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "యథాస్ధితిలో ఉంచు" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "మార్చు" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "నాశనము" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "వద్దు" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "నిష్పత్తిని కలిగివుండుము" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "పరిమాణముకు అమరుము" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ఎడమ నుండి కుడి" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "కుడి నుండి ఎడమ" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "సూపర్‌ఆర్డినేట్ ఆబ్జక్టు అమరికలను వుపయోగించుము" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "ఎప్పటికివద్దు" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "దృష్టిసారించనప్పుడు" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ఎల్లప్పుడు" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "పేరాకు" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "అక్షరము వలె" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "పేజీకి" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "చట్రమునకు" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "అక్షరము వరకు" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "పేజీకి" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/te/fpicker/messages.po libreoffice-7.3.5/translations/source/te/fpicker/messages.po --- libreoffice-7.3.4/translations/source/te/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ఫైల్ పేరు:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ఫైలు రకము(~t):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "చదువుట మాత్రమే(~R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "సంకేతపదముతో దాయుము(~w)" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "స్వయంచాలకముగా ఫైల్ పేరు పొడిగింపు(~A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "వడపోత అమరికలను సరికూర్చుము(~E)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/sc/messages.po libreoffice-7.3.5/translations/source/te/sc/messages.po --- libreoffice-7.3.4/translations/source/te/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25822,97 +25822,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26299,152 +26299,152 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "పేర్చు" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "రంగు(_o)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "గ్రిడ్(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "భాష(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "పునఃదర్శనం" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "వ్యాఖ్యలు(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "దర్శనం" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "సరిచేయు(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "పేర్చు" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "దర్శనం" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "గ్రూప్" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ఖతి (_o)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "ఒక వరుసలో వుంచుట" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "దర్శనం" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ప్రవేశపెట్టు" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "మాధ్యమం" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "చట్రం (_r)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "పేర్చు" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "గ్రిడ్(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/te/sd/messages.po libreoffice-7.3.5/translations/source/te/sd/messages.po --- libreoffice-7.3.4/translations/source/te/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4249,109 +4249,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7233,109 +7233,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/sw/messages.po libreoffice-7.3.5/translations/source/te/sw/messages.po --- libreoffice-7.3.4/translations/source/te/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10760,19 +10760,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "శైలులు" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14311,37 +14311,37 @@ msgstr "ఎక్స్‍చేంజ్ డాటాబేస్" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "నిర్వచించు" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "డాటాబేస్ ఉపయోగించు" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "అందుబాటులోని డాటాబేస్‌సు (_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "అన్వేషణ..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14351,31 +14351,31 @@ "డాటాబేస్ ఫైల్ ను ఎంపిక చేసుకొనుటకు అన్వేషణ బొత్తంను ఉపయోగించుము. " #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ఎక్స్‍చేంజ్ డాటాబేస్" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "పత్రమునకు డాటాబేస్ అనుసంధించును" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20641,111 +20641,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "అన్వేషణ..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "అన్వేషణ..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22913,52 +22913,52 @@ msgstr "ప్రతిమ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "రకం" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "ఐచ్చికములు" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "మడత" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "హైపర్లింక్ " #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "సరిహద్దులు" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "చదరం" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "పారదర్శకత" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "మేక్రో" @@ -27823,7 +27823,7 @@ msgstr "తాజాపరచు" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/te/vcl/messages.po libreoffice-7.3.5/translations/source/te/vcl/messages.po --- libreoffice-7.3.4/translations/source/te/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/te/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2338,169 +2338,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "మలచిన" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "దాని బట్టి" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "పేజీల మధ్యన" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "షీట్ సరిహద్దునకు" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ప్రతి పేజీ చుట్టూ వొక సరిహద్దును గీయుము" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "బ్రౌచర్" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/chart2/messages.po libreoffice-7.3.5/translations/source/tg/chart2/messages.po --- libreoffice-7.3.4/translations/source/tg/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3700,7 +3700,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/cui/messages.po libreoffice-7.3.5/translations/source/tg/cui/messages.po --- libreoffice-7.3.4/translations/source/tg/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tajik \n" @@ -17526,177 +17526,152 @@ msgid "Automatic" msgstr "Автоматӣ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Контраст" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Бевосита аз имкониятҳои ҷисмиёт истифода бурда сифати экранро беҳтар мегардонад." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/dbaccess/messages.po libreoffice-7.3.5/translations/source/tg/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/tg/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Tajik \n" @@ -3468,74 +3468,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Ба тозагӣ истифодашуда" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Кушодан" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3543,7 +3543,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/extensions/messages.po libreoffice-7.3.5/translations/source/tg/extensions/messages.po --- libreoffice-7.3.4/translations/source/tg/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -302,570 +302,556 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Гирифт" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Супориш" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Матн" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартӣ (кӯтоҳ)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартӣ (кӯтоҳ)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартӣ (кӯтоҳ)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартӣ (дароз)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(Интихобшуда)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Санаи ҷорӣ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Не" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ҳа" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Боздоштан" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ҳеҷ" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "~Яккарата" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Диапазон" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Уфуқӣ" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Амудӣ" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Аслӣ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ОК" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Бекоркунӣ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Кӯмак" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Якраха" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Бисёрраха" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Бисёрраха бо формат" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ҳеҷ" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Уфуқӣ" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Амудӣ" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ҳарду" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3Ч" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Ҳамвор" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Чапи боло" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Чапи марказонидашуда" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Чапи поён" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Рости боло" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Рости марказонидашуда" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Рости поён" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Болои чап" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Болои марказонидашуда" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Болои рост" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Поёни чап" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Поёни марказонидашуда" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Поёни рост" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Марказонидашуда" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Захиравӣ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Ивазкунӣ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Пинҳонкунӣ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Не" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Чап-ба-рост" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Аз рост ба чап" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Бамеросгирӣ аз объекти волидайнӣ" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Параграф" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ҳамчун рамз" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ба саҳифа" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ҳошия" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ба рамз" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ба саҳифа" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/tg/fpicker/messages.po libreoffice-7.3.5/translations/source/tg/fpicker/messages.po --- libreoffice-7.3.4/translations/source/tg/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Номи дафтар: " #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Типи дафтар:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Танҳо барои хониш" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Сабткунӣ бо парол" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Номбасти Автоматӣ" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Ивазкунии ҷӯрсозиҳои филтр" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/sc/messages.po libreoffice-7.3.5/translations/source/tg/sc/messages.po --- libreoffice-7.3.4/translations/source/tg/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25841,97 +25841,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26317,157 +26317,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Ҷобаҷокунӣ" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Ранг" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Тӯр" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Забон" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Эзоҳ" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Намоиш" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Ислоҳкунӣ" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Ҷобаҷокунӣ" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Намоиш" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Гурӯҳбандӣ" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ҳуруфот" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Баробарсозӣ" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Намоиш" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Иловакунӣ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Ҳошия" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Ҷобаҷокунӣ" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Тӯр" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/tg/sd/messages.po libreoffice-7.3.5/translations/source/tg/sd/messages.po --- libreoffice-7.3.4/translations/source/tg/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4249,109 +4249,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7224,109 +7224,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/sw/messages.po libreoffice-7.3.5/translations/source/tg/sw/messages.po --- libreoffice-7.3.4/translations/source/tg/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10754,20 +10754,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Услубҳо" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14346,38 +14346,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Муайянсозӣ" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Намоиш..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14385,31 +14385,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20712,111 +20712,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Намоиш..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Намоиш..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23001,51 +23001,51 @@ msgstr "Объект" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Параметрҳо" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Ғуноварӣ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гиперҳавола" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Сарҳадот" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Масоҳат" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Шаффофӣ" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27937,7 +27937,7 @@ msgstr "Update" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tg/vcl/messages.po libreoffice-7.3.5/translations/source/tg/vcl/messages.po --- libreoffice-7.3.4/translations/source/tg/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tg/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2351,171 +2351,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ихтиёрӣ:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "бо" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошюра" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/chart2/messages.po libreoffice-7.3.5/translations/source/th/chart2/messages.po --- libreoffice-7.3.4/translations/source/th/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1540151635.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/cui/messages.po libreoffice-7.3.5/translations/source/th/cui/messages.po --- libreoffice-7.3.4/translations/source/th/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542196009.000000\n" #. GyY9M @@ -17345,178 +17345,153 @@ msgid "Automatic" msgstr "อัตโนมัติ" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "ความเปรียบต่างแสงสูง" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "คลาสสิก" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 #, fuzzy msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "รายการเรียงลำดับ" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/dbaccess/messages.po libreoffice-7.3.5/translations/source/th/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/th/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1524568136.000000\n" #. BiN6g @@ -3461,74 +3461,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "ฐานข้อมูลฝังตัว" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_ที่ใช้เมื่อไม่นาน:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "เปิด" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3536,7 +3536,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/extensions/messages.po libreoffice-7.3.5/translations/source/th/extensions/messages.po --- libreoffice-7.3.4/translations/source/th/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542025144.000000\n" #. cBx8W @@ -302,571 +302,559 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "โพสต์" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "ข้อความ" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "มาตรฐาน (สั้น)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "มาตรฐาน (สั้น)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "มาตรฐาน (สั้น)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "มาตรฐาน (ยาว)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(ที่เลือกอยู่)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "วันที่ปัจจุบัน" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ไม่ใช่" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ใช่" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_บน" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "ไม่มี" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "เดี่ยว" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "ช่วง" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "แนวนอน" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "แนวตั้ง" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ค่าปริยาย" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ตกลง" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ยกเลิก" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ช่วยเหลือ" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "ตำแหน่งของสิ่งที่เลือก" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "บรรทัดเดี่ยว" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "หลายบรรทัด" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "หลายบรรทัดและการจัดรูปแบบ" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (ยูนิกซ์)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (วินโดว์ส)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "ไม่มี" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "แนวนอน" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "แนวตั้ง" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ทั้งคู่" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3 มิติ" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "แบน" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "บนซ้าย" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "กลางซ้าย" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "ล่างซ้าย" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "บนขวา" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "กลางขวา" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ล่างขวา" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "เหนือซ้าย" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "เหนือกลาง" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "เหนือขวา" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "ใต้ซ้าย" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ใต้กลาง" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ขวาล่าง" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ตรงกลาง" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "คงสภาพ" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "แทนที่" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ยุบ" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ไม่ใช่" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "คงอัตราส่วน" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "จัดพอดีบรรทัด" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "ซ้ายไปขวา" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ขวาไปซ้าย" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ใช้การตั้งค่าวัตถุแบบ superordinate" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "เสมอ!!!!" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ย่อหน้า" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "อักขระ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "ไปยังหน้า" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "~ไปยังกรอบ" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "อักขระ" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "ไปยังหน้า" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/th/fpicker/messages.po libreoffice-7.3.5/translations/source/th/fpicker/messages.po --- libreoffice-7.3.4/translations/source/th/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-31 21:49+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1538498723.000000\n" #. SJGCw @@ -220,60 +220,60 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ชื่อแฟ้ม:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ประ~เภทไฟล์:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~อ่านอย่างเดียว" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "บั~นทึกด้วยรหัสผ่าน" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ใส่นามสกุลของแฟ้ม_อัตโนมัติ" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "แ~ก้ไขการตั้งค่าตัวกรอง" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.5/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.4/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-07-15 19:12:51.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-31 10:35+0200\n" -"PO-Revision-Date: 2018-11-12 12:19+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"Last-Translator: Theppitak Karoonboonyanan \n" +"Language-Team: Thai \n" "Language: th\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.12.2\n" "X-POOTLE-MTIME: 1542025144.000000\n" #. tBfTE @@ -23,7 +23,7 @@ "OOO_ACTIONTEXT_1\n" "LngText.text" msgid "Advertising application" -msgstr "งานโฆษณา" +msgstr "กำลังประกาศแอปพลิเคชัน" #. CHEun #: ActionTe.ulf @@ -32,7 +32,7 @@ "OOO_ACTIONTEXT_2\n" "LngText.text" msgid "Allocating registry space" -msgstr "แบ่งพื้นที่สำหรับ registry" +msgstr "กำลังจองพื้นที่สำหรับเรจิสตรี" #. B6wJx #: ActionTe.ulf @@ -50,7 +50,7 @@ "OOO_ACTIONTEXT_4\n" "LngText.text" msgid "Searching for installed applications" -msgstr "การค้นหาโปรแกรมที่ติดตั้งแล้ว" +msgstr "กำลังค้นหาแอปพลิเคชันที่ติดตั้งแล้ว" #. Ex3MU #: ActionTe.ulf @@ -59,7 +59,7 @@ "OOO_ACTIONTEXT_5\n" "LngText.text" msgid "Property: [1], Signature: [2]" -msgstr "คุณสมบัติ: [1], ลายมือชื่อ: [2]" +msgstr "คุณสมบัติ: [1], ลายเซ็น: [2]" #. adESV #: ActionTe.ulf @@ -68,7 +68,7 @@ "OOO_ACTIONTEXT_6\n" "LngText.text" msgid "Binding executables" -msgstr "ชุดคำสั่งของการประสาน" +msgstr "กำลังเชื่อมโยงแฟ้มโปรแกรม" #. NV59M #: ActionTe.ulf @@ -86,7 +86,7 @@ "OOO_ACTIONTEXT_8\n" "LngText.text" msgid "Creating IIS Virtual Roots..." -msgstr "กำลังสร้างรูทเสมือนของ IIS" +msgstr "กำลังสร้างรากเสมือนของ IIS..." #. oaPu2 #: ActionTe.ulf @@ -95,7 +95,7 @@ "OOO_ACTIONTEXT_9\n" "LngText.text" msgid "Removing IIS Virtual Roots..." -msgstr "กำลังเอารูทเสมือนของ IIS ออก..." +msgstr "กำลังลบรากเสมือนของ IIS..." #. pQzsj #: ActionTe.ulf @@ -113,7 +113,7 @@ "OOO_ACTIONTEXT_11\n" "LngText.text" msgid "Computing space requirements" -msgstr "กำลังคำนวณความต้องการพื้นที่ว่าง" +msgstr "กำลังคำนวณเนื้อที่ที่ต้องใช้" #. GkETA #: ActionTe.ulf @@ -122,7 +122,7 @@ "OOO_ACTIONTEXT_12\n" "LngText.text" msgid "Computing space requirements" -msgstr "กำลังคำนวณความต้องการพื้นที่ว่าง" +msgstr "กำลังคำนวณเนื้อที่ที่ต้องใช้" #. B79jy #: ActionTe.ulf @@ -149,7 +149,7 @@ "OOO_ACTIONTEXT_15\n" "LngText.text" msgid "Creating shortcuts" -msgstr "กำลังสร้างคีย์ลัด" +msgstr "กำลังสร้างทางลัด" #. HwKWh #: ActionTe.ulf @@ -158,7 +158,7 @@ "OOO_ACTIONTEXT_16\n" "LngText.text" msgid "Shortcut: [1]" -msgstr "คีย์ลัด: [1]" +msgstr "ทางลัด: [1]" #. GeKVY #: ActionTe.ulf @@ -167,7 +167,7 @@ "OOO_ACTIONTEXT_17\n" "LngText.text" msgid "Deleting services" -msgstr "กำลังลบการบริการ" +msgstr "กำลังลบบริการ" #. WFKgC #: ActionTe.ulf @@ -203,7 +203,7 @@ "OOO_ACTIONTEXT_21\n" "LngText.text" msgid "Computing space requirements" -msgstr "กำลังคำนวณความต้องการพื้นที่ว่าง" +msgstr "กำลังคำนวณเนื้อที่ที่ต้องใช้" #. Bfgo2 #: ActionTe.ulf @@ -212,7 +212,7 @@ "OOO_ACTIONTEXT_22\n" "LngText.text" msgid "Searching for related applications" -msgstr "กำลังค้นหาโปรแกรมที่เกี่ยวข้อง" +msgstr "กำลังค้นหาแอปพลิเคชันที่เกี่ยวข้อง" #. aARc2 #: ActionTe.ulf @@ -221,7 +221,7 @@ "OOO_ACTIONTEXT_23\n" "LngText.text" msgid "Found application" -msgstr "พบโปรแกรม" +msgstr "พบแอปพลิเคชัน" #. G3SFJ #: ActionTe.ulf @@ -230,7 +230,7 @@ "OOO_ACTIONTEXT_24\n" "LngText.text" msgid "Generating script operations for action:" -msgstr "กำลังสร้างสคริปต์การปฏิบัติการสำหรับการกระทำ:" +msgstr "กำลังสร้างสคริปต์ปฏิบัติการสำหรับการกระทำ:" #. s75yx #: ActionTe.ulf @@ -248,7 +248,7 @@ "OOO_ACTIONTEXT_26\n" "LngText.text" msgid "Copying files to the network" -msgstr "กำลังคัดลอกแฟ้มไปยังเน็ตเวิร์ก " +msgstr "กำลังคัดลอกแฟ้มไปยังเครือข่าย" #. GB7FF #: ActionTe.ulf @@ -311,7 +311,7 @@ "OOO_ACTIONTEXT_33\n" "LngText.text" msgid "Installing system catalog" -msgstr "กำลังติดตั้งหมวดหมู่ของระบบ" +msgstr "กำลังติดตั้งแค็ตตาล็อกของระบบ" #. oxrKY #: ActionTe.ulf @@ -320,7 +320,7 @@ "OOO_ACTIONTEXT_34\n" "LngText.text" msgid "File: [1], Dependencies: [2]" -msgstr "แฟ้ม: [1], ความขึ้นต่อกัน: [2]" +msgstr "แฟ้ม: [1], สิ่งที่ต้องใช้: [2]" #. 2DWPL #: ActionTe.ulf @@ -329,7 +329,7 @@ "OOO_ACTIONTEXT_35\n" "LngText.text" msgid "Validating install" -msgstr "ตรวจสอบความถูกต้องของการติดตั้ง" +msgstr "กำลังตรวจสอบความถูกต้องของการติดตั้ง" #. BGXEt #: ActionTe.ulf @@ -338,7 +338,7 @@ "OOO_ACTIONTEXT_36\n" "LngText.text" msgid "Evaluating launch conditions" -msgstr "การประเมินสภาวะเริ่มต้น" +msgstr "กำลังประเมินเงื่อนไขการเรียกทำงาน" #. 5AK93 #: ActionTe.ulf @@ -347,7 +347,7 @@ "OOO_ACTIONTEXT_37\n" "LngText.text" msgid "Migrating feature states from related applications" -msgstr "ย้ายคุณลักษณะจากโปรแกรมที่เกี่ยวข้อง" +msgstr "กำลังย้ายสถานะของคุณลักษณะต่างๆ จากแอปพลิเคชันที่เกี่ยวข้อง" #. Ls7DK #: ActionTe.ulf @@ -356,7 +356,7 @@ "OOO_ACTIONTEXT_38\n" "LngText.text" msgid "Application: [1]" -msgstr "โปรแกรม:[1]" +msgstr "แอปพลิเคชัน:[1]" #. 2ZiCq #: ActionTe.ulf @@ -383,7 +383,7 @@ "OOO_ACTIONTEXT_41\n" "LngText.text" msgid "Patching files" -msgstr "กำลังแพตช์ไฟล์" +msgstr "กำลังแพตช์แฟ้ม" #. zjUzy #: ActionTe.ulf @@ -401,7 +401,7 @@ "OOO_ACTIONTEXT_43\n" "LngText.text" msgid "Updating component registration" -msgstr "ปรับปรุงการลงทะเบียนส่วนประกอบ" +msgstr "กำลังปรับข้อมูลการลงทะเบียนองค์ประกอบ" #. cryBo #: ActionTe.ulf @@ -410,7 +410,7 @@ "OOO_ACTIONTEXT_44\n" "LngText.text" msgid "Publishing qualified components" -msgstr "เผยแพร่ส่วนประกอบที่ผ่านการรับรอง" +msgstr "กำลังเผยแพร่องค์ประกอบที่ผ่านการตรวจคุณสมบัติ" #. PG64G #: ActionTe.ulf @@ -419,7 +419,7 @@ "OOO_ACTIONTEXT_45\n" "LngText.text" msgid "Component ID: [1], Qualifier: [2]" -msgstr "ID ส่วนประกอบ: [1], ตัวบ่งคุณสมบัติ: [2]" +msgstr "ID องค์ประกอบ: [1], ผู้ตรวจคุณสมบัติ: [2]" #. 5UDAU #: ActionTe.ulf @@ -428,7 +428,7 @@ "OOO_ACTIONTEXT_46\n" "LngText.text" msgid "Publishing product features" -msgstr "เผยแพร่คุณสมบัติผลิตภัณฑ์" +msgstr "กำลังเผยแพร่คุณลักษณะของผลิตภัณฑ์" #. R8Xuy #: ActionTe.ulf @@ -446,7 +446,7 @@ "OOO_ACTIONTEXT_48\n" "LngText.text" msgid "Publishing product information" -msgstr "เผยแพร่ข้อมูลผลิตภัณฑ์" +msgstr "กำลังเผยแพร่ข้อมูลของผลิตภัณฑ์" #. Qi37u #: ActionTe.ulf @@ -455,7 +455,7 @@ "OOO_ACTIONTEXT_49\n" "LngText.text" msgid "Registering class servers" -msgstr "กำลังลงทะเบียนเซิร์ฟเวอร์ Class" +msgstr "กำลังลงทะเบียนเซิร์ฟเวอร์คลาส" #. SBCvZ #: ActionTe.ulf @@ -473,7 +473,7 @@ "OOO_ACTIONTEXT_51\n" "LngText.text" msgid "Registering COM+ Applications and Components" -msgstr "ลงทะเบียนโปรแกรม COM+ และส่วนประกอบ" +msgstr "กำลังลงทะเบียนแอปพลิเคชัน COM+ และองค์ประกอบ" #. C88cP #: ActionTe.ulf @@ -491,7 +491,7 @@ "OOO_ACTIONTEXT_53\n" "LngText.text" msgid "Registering extension servers" -msgstr "ลงทะเบียนเซิร์ฟเวอร์ส่วนขยาย" +msgstr "กำลังลงทะเบียนเซิร์ฟเวอร์ส่วนขยาย" #. HD6QQ #: ActionTe.ulf @@ -509,7 +509,7 @@ "OOO_ACTIONTEXT_55\n" "LngText.text" msgid "Registering fonts" -msgstr "ลงทะเบียนแบบอักษร" +msgstr "กำลังลงทะเบียนแบบอักษร" #. CK6Kq #: ActionTe.ulf @@ -527,7 +527,7 @@ "OOO_ACTIONTEXT_57\n" "LngText.text" msgid "Registering MIME info" -msgstr "ลงทะเบียนข้อมูล MIME" +msgstr "กำลังลงทะเบียนข้อมูล MIME" #. X9enX #: ActionTe.ulf @@ -545,7 +545,7 @@ "OOO_ACTIONTEXT_59\n" "LngText.text" msgid "Registering product" -msgstr "ลงทะเบียนผลิตภ์ณฑ์" +msgstr "กำลังลงทะเบียนผลิตภ์ณฑ์" #. WtwCe #: ActionTe.ulf @@ -563,7 +563,7 @@ "OOO_ACTIONTEXT_61\n" "LngText.text" msgid "Registering program identifiers" -msgstr "ลงทะเบียนตัวแปรโปรแกรม" +msgstr "กำลังลงทะเบียน ID โปรแกรม" #. AFmfn #: ActionTe.ulf @@ -581,7 +581,7 @@ "OOO_ACTIONTEXT_63\n" "LngText.text" msgid "Registering type libraries" -msgstr "ลงทะเบียนชนิดไลบรารี" +msgstr "กำลังลงทะเบียนไลบรารีของชนิด" #. NCuAr #: ActionTe.ulf @@ -599,7 +599,7 @@ "OOO_ACTIONTEXT_65\n" "LngText.text" msgid "Registering user" -msgstr "ลงทะเบียนผู้ใช้" +msgstr "กำลังลงทะเบียนผู้ใช้" #. ZD2Y5 #: ActionTe.ulf @@ -635,7 +635,7 @@ "OOO_ACTIONTEXT_69\n" "LngText.text" msgid "Updating environment strings" -msgstr "ปรับข้อมูลสตริงสภาวะแวดล้อม" +msgstr "กำลังปรับข้อมูลสตริงสภาวะแวดล้อม" #. 4xBWj #: ActionTe.ulf @@ -644,7 +644,7 @@ "OOO_ACTIONTEXT_70\n" "LngText.text" msgid "Name: [1], Value: [2], Action [3]" -msgstr "ชื่อ: [1], ค่า: [2], การดำเนินการ [3]" +msgstr "ชื่อ: [1], ค่า: [2], การกระทำ [3]" #. iqqet #: ActionTe.ulf @@ -653,7 +653,7 @@ "OOO_ACTIONTEXT_71\n" "LngText.text" msgid "Removing applications" -msgstr "ถอดถอนแอพพลิเคชัน" +msgstr "กำลังถอดถอนแอปพลิเคชัน" #. 4dJF2 #: ActionTe.ulf @@ -662,7 +662,7 @@ "OOO_ACTIONTEXT_72\n" "LngText.text" msgid "Application: [1], Command line: [2]" -msgstr "แอพลิเคชัน: [1], บรรทัดคำสั่ง: [2]" +msgstr "แอปลิเคชัน: [1], บรรทัดคำสั่ง: [2]" #. 8B5xT #: ActionTe.ulf @@ -671,7 +671,7 @@ "OOO_ACTIONTEXT_73\n" "LngText.text" msgid "Removing files from previous installation" -msgstr "" +msgstr "กำลังลบแฟ้มจากการติดตั้งครั้งก่อน" #. G7Cdp #: ActionTe.ulf @@ -689,7 +689,7 @@ "OOO_ACTIONTEXT_75\n" "LngText.text" msgid "Removing folders" -msgstr "กำลังย้ายโฟลเดอร์" +msgstr "กำลังลบโฟลเดอร์" #. LErXT #: ActionTe.ulf @@ -707,7 +707,7 @@ "OOO_ACTIONTEXT_77\n" "LngText.text" msgid "Removing INI file entries" -msgstr "ถอดถอนรายการแฟ้มINI" +msgstr "กำลังลบรายการต่างๆ ในแฟ้ม INI" #. cuFzQ #: ActionTe.ulf @@ -725,7 +725,7 @@ "OOO_ACTIONTEXT_79\n" "LngText.text" msgid "Removing ODBC components" -msgstr "เอาส่วนประกอบ ODBC ออก" +msgstr "กำลังลบองค์ประกอบ ODBC" #. K6Grt #: ActionTe.ulf @@ -734,7 +734,7 @@ "OOO_ACTIONTEXT_80\n" "LngText.text" msgid "Removing system registry values" -msgstr "กำลังลบค่ารีจิสตรีระบบ" +msgstr "กำลังลบค่าเรจิสตรีระบบ" #. 3hm3S #: ActionTe.ulf @@ -752,7 +752,7 @@ "OOO_ACTIONTEXT_82\n" "LngText.text" msgid "Removing shortcuts" -msgstr "เอาคีย์ลัดออก" +msgstr "กำลังลบทางลัด" #. kBFGD #: ActionTe.ulf @@ -761,7 +761,7 @@ "OOO_ACTIONTEXT_83\n" "LngText.text" msgid "Shortcut: [1]" -msgstr "คีย์ลัด: [1]" +msgstr "ทางลัด: [1]" #. A8hxh #: ActionTe.ulf @@ -770,7 +770,7 @@ "OOO_ACTIONTEXT_84\n" "LngText.text" msgid "Searching for qualifying products" -msgstr "ค้นหาคุณสมบัติผลิตภัณฑ์" +msgstr "กำลังค้นหาผลิตภัณฑ์ที่ผ่านเกณฑ์ตรวจสอบ" #. oDnBp #: ActionTe.ulf @@ -779,7 +779,7 @@ "OOO_ACTIONTEXT_85\n" "LngText.text" msgid "Rolling back action:" -msgstr "ย้อนกลับการกระทำ" +msgstr "กำลังย้อนกลับการกระทำ:" #. KRvcf #: ActionTe.ulf @@ -806,7 +806,7 @@ "OOO_ACTIONTEXT_88\n" "LngText.text" msgid "File: [1]" -msgstr "แฟ้ม : [1]" +msgstr "แฟ้ม: [1]" #. h9m6Z #: ActionTe.ulf @@ -815,7 +815,7 @@ "OOO_ACTIONTEXT_93\n" "LngText.text" msgid "Initializing ODBC directories" -msgstr "กำลังเริ่มต้นไดเรกทอรี ODBC" +msgstr "กำลังตั้งค่าเริ่มต้นไดเรกทอรี ODBC" #. KKcf7 #: ActionTe.ulf @@ -824,7 +824,7 @@ "OOO_ACTIONTEXT_94\n" "LngText.text" msgid "Starting services" -msgstr "เริ่มต้นบริการ" +msgstr "กำลังเริ่มเปิดบริการ" #. RBA7T #: ActionTe.ulf @@ -842,7 +842,7 @@ "OOO_ACTIONTEXT_96\n" "LngText.text" msgid "Stopping services" -msgstr "หยุดบริการ" +msgstr "กำลังหยุดบริการ" #. DigFd #: ActionTe.ulf @@ -860,7 +860,7 @@ "OOO_ACTIONTEXT_98\n" "LngText.text" msgid "Removing moved files" -msgstr "เอาแฟ้มที่เคลื่อนย้ายออก" +msgstr "กำลังลบแฟ้มที่ถูกเคลื่อนย้ายไว้" #. eaJ8D #: ActionTe.ulf @@ -869,7 +869,7 @@ "OOO_ACTIONTEXT_99\n" "LngText.text" msgid "File: [1], Directory: [9]" -msgstr "แฟ้ม: [1], ไดเรกทอรี : [9]" +msgstr "แฟ้ม: [1], ไดเรกทอรี: [9]" #. nKyi3 #: ActionTe.ulf @@ -878,7 +878,7 @@ "OOO_ACTIONTEXT_100\n" "LngText.text" msgid "Unpublishing Qualified Components" -msgstr "คุณสมบัติส่วนประกอบที่ยังไม่ได้ตีพิมพ์" +msgstr "กำลังปลดการเผยแพร่องค์ประกอบที่ผ่านเกณฑ์ตรวจสอบ" #. Fj4CE #: ActionTe.ulf @@ -887,7 +887,7 @@ "OOO_ACTIONTEXT_101\n" "LngText.text" msgid "Component ID: [1], Qualifier: [2]" -msgstr "ID ส่วนประกอบ: [1], ตัวบ่งคุณสมบัติ: [2]" +msgstr "ID องค์ประกอบ: [1], ผู้ตรวจคุณสมบัติ: [2]" #. EE9Gk #: ActionTe.ulf @@ -896,7 +896,7 @@ "OOO_ACTIONTEXT_102\n" "LngText.text" msgid "Unpublishing product features" -msgstr "คุณลักษณะผลิตภัณฑ์ที่ยังไม่ได้ลงทะเบียน" +msgstr "กำลังปลดการเผยแพร่คุณลักษณะของผลิตภัณฑ์" #. 8YHS2 #: ActionTe.ulf @@ -914,7 +914,7 @@ "OOO_ACTIONTEXT_104\n" "LngText.text" msgid "Unpublishing product information" -msgstr "ข้อมูลผลิตภัณฑ์ที่ยังไม่ได้ตีพิมพ์" +msgstr "กำลังปลดการเผยแพร่ข้อมูลของผลิตภัณฑ์" #. Nr5ET #: ActionTe.ulf @@ -923,7 +923,7 @@ "OOO_ACTIONTEXT_105\n" "LngText.text" msgid "Unregister class servers" -msgstr "ไม่ได้ลงทะเบียน class เซิร์ฟเวอร์" +msgstr "กำลังปลดทะเบียนเซิร์ฟเวอร์คลาส" #. MHDqB #: ActionTe.ulf @@ -941,7 +941,7 @@ "OOO_ACTIONTEXT_107\n" "LngText.text" msgid "Unregistering COM+ Applications and Components" -msgstr "แอพลิเคชัน COM+ และส่วนประกอบที่ยังไม่ได้ลงทะเบียน" +msgstr "กำลังปลดทะเบียนแอปพลิเคชัน COM+ และองค์ประกอบ" #. fD6ta #: ActionTe.ulf @@ -959,7 +959,7 @@ "OOO_ACTIONTEXT_109\n" "LngText.text" msgid "Unregistering extension servers" -msgstr "ส่วนขยายของเซิร์ฟเวอร์ที่ยังไม่ได้ทำการลงทะเบียน" +msgstr "กำลังปลดทะเบียนเซิร์ฟเวอร์ส่วนขยาย" #. xWBce #: ActionTe.ulf @@ -977,7 +977,7 @@ "OOO_ACTIONTEXT_111\n" "LngText.text" msgid "Unregistering fonts" -msgstr "แบบอักษรที่ยังไม่ได้ทำการลงทะเบียน" +msgstr "กำลังปลดทะเบียนแบบอักษร" #. 5rATm #: ActionTe.ulf @@ -995,7 +995,7 @@ "OOO_ACTIONTEXT_113\n" "LngText.text" msgid "Unregistering MIME info" -msgstr "ข้อมูล MIME ที่ยังไม่ได้ทำการลงทะเบียน" +msgstr "กำลังปลดทะเบียนข้อมูล MIME" #. BPxD7 #: ActionTe.ulf @@ -1004,7 +1004,7 @@ "OOO_ACTIONTEXT_114\n" "LngText.text" msgid "MIME Content Type: [1], Extension: [2]" -msgstr "ชนิดของเนื้อหาMIME: [1], ส่วนขยาย: [2]" +msgstr "ชนิดของเนื้อหา MIME: [1], ส่วนขยาย: [2]" #. DceMG #: ActionTe.ulf @@ -1013,7 +1013,7 @@ "OOO_ACTIONTEXT_115\n" "LngText.text" msgid "Unregistering program identifiers" -msgstr "ยกเลิกการลงทะเบียนตัวบ่งชี้โปรแกรม" +msgstr "กำลังปลดทะเบียน ID โปรแกรม" #. azYBq #: ActionTe.ulf @@ -1031,7 +1031,7 @@ "OOO_ACTIONTEXT_117\n" "LngText.text" msgid "Unregistering type libraries" -msgstr "ไลบรารีตัวพิมพ์ที่ยังไม่ได้ลงทะเบียน" +msgstr "กำลังปลดทะเบียนไลบรารีของชนิด" #. rL3Ao #: ActionTe.ulf @@ -1049,7 +1049,7 @@ "OOO_ACTIONTEXT_119\n" "LngText.text" msgid "Updating environment strings" -msgstr "ปรับข้อมูลสตริงสภาวะแวดล้อม" +msgstr "กำลังปรับข้อมูลสตริงสภาวะแวดล้อม" #. VkdEw #: ActionTe.ulf @@ -1058,7 +1058,7 @@ "OOO_ACTIONTEXT_120\n" "LngText.text" msgid "Name: [1], Value: [2], Action [3]" -msgstr "ชื่อ: [1], ค่า: [2], การดำเนินการ [3]" +msgstr "ชื่อ: [1], ค่า: [2], การกระทำ [3]" #. kXa3f #: ActionTe.ulf @@ -1067,7 +1067,7 @@ "OOO_ACTIONTEXT_121\n" "LngText.text" msgid "Writing INI file values" -msgstr "เขียนค่าแฟ้ม INI" +msgstr "กำลังเขียนค่าต่างๆ ในแฟ้ม INI" #. zXBEs #: ActionTe.ulf @@ -1085,7 +1085,7 @@ "OOO_ACTIONTEXT_123\n" "LngText.text" msgid "Writing system registry values" -msgstr "เขียนค่ารีจิสทรีระบบ" +msgstr "กำลังเขียนค่าต่างๆ ในเรจิสตรีระบบ" #. MpBFH #: ActionTe.ulf @@ -1121,7 +1121,7 @@ "OOO_CONTROL_6\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "เรียกดูโฟลเดอร์ปลายทาง" +msgstr "ท่องหาโฟลเดอร์ปลายทาง" #. FrjD4 #: Control.ulf @@ -1130,7 +1130,7 @@ "OOO_CONTROL_7\n" "LngText.text" msgid "{&DialogDefaultBold}Change Current Destination Folder" -msgstr "" +msgstr "{&DialogDefaultBold}เปลี่ยนโฟลเดอร์ปลายทางปัจจุบัน" #. 6cCLG #: Control.ulf @@ -1184,7 +1184,7 @@ "OOO_CONTROL_17\n" "LngText.text" msgid "&Change..." -msgstr "&เปลี่ยน..." +msgstr "เ&ปลี่ยน..." #. xU4Fr #: Control.ulf @@ -1202,17 +1202,16 @@ "OOO_CONTROL_19\n" "LngText.text" msgid "Specify a network location for the server image of the product." -msgstr "ระบุตำแหน่งเน็ตเวิร์กสำหรับอิมเมจเซิร์ฟเวอร์ของผลิตภัณฑ์" +msgstr "ระบุตำแหน่งในเครือข่ายสำหรับอิมเมจของเซิร์ฟเวอร์ของผลิตภัณฑ์" #. 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 @@ -1221,7 +1220,7 @@ "OOO_CONTROL_21\n" "LngText.text" msgid "{&MSSansBold8}Network Location" -msgstr "{&MSSansBold8} สถานที่ตั้งเน็ตเวิร์ก " +msgstr "{&MSSansBold8}ตำแหน่งในเครือข่าย" #. FsBUg #: Control.ulf @@ -1239,7 +1238,7 @@ "OOO_CONTROL_23\n" "LngText.text" msgid "&Network location:" -msgstr "&ตำแหน่งที่ตั้งเน็ตเวิร์ก:" +msgstr "ตำแหน่งเ&ครือข่าย:" #. dXe9C #: Control.ulf @@ -1275,7 +1274,7 @@ "OOO_CONTROL_27\n" "LngText.text" msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold}ยินดีต้อนรับสู่เครื่องมือช่วยติดตั้ง [ProductName]" #. 9Zq7E #: Control.ulf @@ -1284,7 +1283,7 @@ "OOO_CONTROL_28\n" "LngText.text" msgid "The Installation Wizard will create a server image of [ProductName] at a specified network location. To continue, click Next." -msgstr "ตัวช่วยสร้างการติดตั้งจะสร้างอิมเมจเซิร์ฟเวอร์ของ [ProductName] ที่ตำแหน่งเน็ตเวิร์กที่ระบุ เพื่อที่จะทำต่อไปให้คลิกถัดไป" +msgstr "เครื่องมือช่วยติดตั้งจะสร้างอิมเมจของเซิร์ฟเวอร์ของ [ProductName] ที่ตำแหน่งเครือข่ายที่ระบุ หากต้องการทำต่อไป คลิก 'ถัดไป'" #. 9bAbP #: Control.ulf @@ -1293,7 +1292,7 @@ "OOO_CONTROL_29\n" "LngText.text" msgid "&No" -msgstr "&ไม่ใช่" +msgstr "ไ&ม่" #. nkGKB #: Control.ulf @@ -1302,7 +1301,7 @@ "OOO_CONTROL_30\n" "LngText.text" msgid "Are you sure you want to cancel [ProductName] installation?" -msgstr "คุณแน่ใจที่จะยกเลิกการติดตั้ง [ProductName] หรือไม่" +msgstr "ยืนยันที่จะยกเลิกการติดตั้ง [ProductName] หรือไม่?" #. ZQcSE #: Control.ulf @@ -1311,7 +1310,7 @@ "OOO_CONTROL_31\n" "LngText.text" msgid "&Yes" -msgstr "&ใช่" +msgstr "ใ&ช่" #. 9A9e8 #: Control.ulf @@ -1338,7 +1337,7 @@ "OOO_CONTROL_36\n" "LngText.text" msgid "{\\DialogDefault}{80}" -msgstr "" +msgstr "{\\DialogDefault}{80}" #. acbEy #: Control.ulf @@ -1365,7 +1364,7 @@ "OOO_CONTROL_39\n" "LngText.text" msgid "Install this application for:" -msgstr "ติดตั้งโปรแกรมนี้สำหรับ:" +msgstr "ติดตั้งแอปพลิเคชันนี้สำหรับ:" #. 7ZdtP #: Control.ulf @@ -1374,7 +1373,7 @@ "OOO_CONTROL_40\n" "LngText.text" msgid "{&DialogDefaultBold}User Information" -msgstr "" +msgstr "{&DialogDefaultBold}ข้อมูลผู้ใช้" #. 3cLPR #: Control.ulf @@ -1383,7 +1382,7 @@ "OOO_CONTROL_41\n" "LngText.text" msgid "{\\DialogDefault}{50}" -msgstr "" +msgstr "{\\DialogDefault}{50}" #. QLsAy #: Control.ulf @@ -1392,7 +1391,7 @@ "OOO_CONTROL_42\n" "LngText.text" msgid "&User Name:" -msgstr "&ชื่อผู้ใช้" +msgstr "&ชื่อผู้ใช้:" #. 62QZa #: Control.ulf @@ -1428,7 +1427,7 @@ "OOO_CONTROL_50\n" "LngText.text" msgid "&Change..." -msgstr "&เปลี่ยน..." +msgstr "เ&ปลี่ยน..." #. kBVJV #: Control.ulf @@ -1455,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 "คลิกที่ไอคอนในรายการข้างล่างเพื่อเปลี่ยนวิธีการติดตั้งคุณสมบัติ" +msgstr "คลิกที่ไอคอนในรายการข้างล่างเพื่อเปลี่ยนวิธีติดตั้งคุณลักษณะโปรแกรม" #. w5AqN #: Control.ulf @@ -1464,7 +1463,7 @@ "OOO_CONTROL_54\n" "LngText.text" msgid "{&DialogDefaultBold}Custom Setup" -msgstr "" +msgstr "{&DialogDefaultBold}การติดตั้งแบบกำหนดเอง" #. AnSJQ #: Control.ulf @@ -1509,7 +1508,7 @@ "OOO_CONTROL_59\n" "LngText.text" msgid "" -msgstr "<พาธคุณลักษณะที่เลือก>" +msgstr "<พาธของคุณลักษณะที่เลือก>" #. yPciQ #: Control.ulf @@ -1527,7 +1526,7 @@ "OOO_CONTROL_61\n" "LngText.text" msgid "Feature size" -msgstr "ขนาดคุณลักษณะ" +msgstr "ขนาดของคุณลักษณะ" #. 6VdJ4 #: Control.ulf @@ -1536,7 +1535,7 @@ "OOO_CONTROL_64\n" "LngText.text" msgid "Custom Setup allows you to selectively install program features." -msgstr "การติดตั้งแบบกำหนดเองยอมให้คุณเลือกติดตั้งคุณลักษณะของโปรแกรม" +msgstr "การติดตั้งแบบกำหนดเองยอมให้คุณเลือกติดตั้งคุณลักษณะต่างๆ ของโปรแกรม" #. NgAfY #: Control.ulf @@ -1545,7 +1544,7 @@ "OOO_CONTROL_65\n" "LngText.text" msgid "{&DialogDefaultBold}Custom Setup Tips" -msgstr "" +msgstr "{&DialogDefaultBold}คำแนะนำสำหรับการติดตั้งแบบกำหนดเอง" #. 2sY6N #: Control.ulf @@ -1554,7 +1553,7 @@ "OOO_CONTROL_66\n" "LngText.text" msgid "Will not be installed." -msgstr "จะไม่ถูกติดตั้ง" +msgstr "จะไม่ติดตั้ง" #. FAbBF #: Control.ulf @@ -1563,7 +1562,7 @@ "OOO_CONTROL_67\n" "LngText.text" msgid "Will be installed on first use. (Available only if the feature supports this option.)" -msgstr "จะถูกติดตั้งตอนใช้ครั้งแรก (จะสามารถใช้ได้เฉพาะถ้าคุณลักษณะสนับสนุนการปฏิบัติการนี้)" +msgstr "จะติดตั้งเมื่อใช้ครั้งแรก (จะใช้ได้ต่อเมื่อคุณลักษณะนั้นๆ รองรับตัวเลือกนี้)" #. N5QGm #: Control.ulf @@ -1572,7 +1571,7 @@ "OOO_CONTROL_68\n" "LngText.text" msgid "This install state means the feature..." -msgstr "สภาพการติดตั้งหมายความว่าคุณลักษณะ..." +msgstr "สถานะการติดตั้งนี้หมายความว่าคุณลักษณะ..." #. avGdu #: Control.ulf @@ -1581,7 +1580,7 @@ "OOO_CONTROL_69\n" "LngText.text" msgid "Will be completely installed to the local hard drive." -msgstr "จะติดตั้งทั้งหมดในฮาร์ดไดรฟ์" +msgstr "จะติดตั้งอย่างสมบูรณ์ในฮาร์ดไดรฟ์" #. vqQkB #: Control.ulf @@ -1590,7 +1589,7 @@ "OOO_CONTROL_70\n" "LngText.text" msgid "The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature." -msgstr "ไอคอนถัดจากชื่อคุณลักษณะแสดงสถานะการติดตั้งของคุณลักษณะ คลิกไอคอนเพื่อให้เมนูสถานะการติดตั้งตกลงมาสำหรับแต่ละคุณลักษณะ" +msgstr "ไอคอนข้างชื่อคุณลักษณะจะแสดงสถานะการติดตั้งของคุณลักษณะ คลิกที่ไอคอนเพื่อเปิดเมนูทิ้งลงสำหรับเลือกสถานะการติดตั้งของคุณลักษณะแต่ละตัว" #. nABcc #: Control.ulf @@ -1599,7 +1598,7 @@ "OOO_CONTROL_71\n" "LngText.text" msgid "Will be installed to run from the network. (Available only if the feature supports this option.)" -msgstr "จะถูกติดตั้งเพื่อเรียกใช้งานจากเน็ตเวิร์ก (มีอยู่เฉพาะถ้าคุณลักษณะรองรับตัวเลือกนี้)" +msgstr "จะติดตั้งให้เรียกทำงานจากเครือข่าย (จะใช้ได้ต่อเมื่อคุณลักษณะนั้นๆ รองรับตัวเลือกนี้)" #. CB9Ew #: Control.ulf @@ -1617,7 +1616,7 @@ "OOO_CONTROL_73\n" "LngText.text" msgid "Will have some subfeatures installed to the local hard drive. (Available only if the feature has subfeatures.)" -msgstr "จะมีคุณลักษณะย่อยติดตั้งไปยังโลคอลฮาร์ดไดรฟ์ (มีอยู่เฉพาะถ้าคุณลักษณะมีลักษณะย่อย)" +msgstr "จะติดตั้งคุณลักษณะย่อยบางอย่างลงในฮาร์ดไดรฟ์ในเครื่อง (จะใช้ได้ต่อเมื่อคุณลักษณะนั้นๆ รองรับตัวเลือกนี้)" #. 8EqWR #: Control.ulf @@ -1644,7 +1643,7 @@ "OOO_CONTROL_88\n" "LngText.text" msgid "&Change..." -msgstr "&เปลี่ยน..." +msgstr "เ&ปลี่ยน..." #. Cb4MG #: Control.ulf @@ -1653,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 "คลิกถัดไปเพื่อติดตั้งไปยังโฟลเดอร์นี้, หรือคลิกเปลี่ยนเพื่อติดตั้งไปยังโฟลเดอร์ที่ต่างออกไป" +msgstr "คลิก 'ถัดไป' เพื่อติดตั้งลงในโฟลเดอร์นี้, หรือคลิก 'เปลี่ยน' เพื่อติดตั้งลงในโฟลเดอร์อื่น" #. WQfEU #: Control.ulf @@ -1662,7 +1661,7 @@ "OOO_CONTROL_90\n" "LngText.text" msgid "{&DialogDefaultBold}Destination Folder" -msgstr "" +msgstr "{&DialogDefaultBold}โฟลเดอร์ปลายทาง" #. RgRB4 #: Control.ulf @@ -1680,7 +1679,7 @@ "OOO_CONTROL_92\n" "LngText.text" msgid "Install [ProductName] to:" -msgstr "ติดตั้ง [ProductName]ไปยัง :" +msgstr "ติดตั้ง [ProductName] ลงใน:" #. v9tFT #: Control.ulf @@ -1698,7 +1697,7 @@ "OOO_CONTROL_96\n" "LngText.text" msgid "The disk space required for the installation of the selected features." -msgstr "พื้นที่ว่างบนดิสก์ที่ต้องการเพื่อติดตั้งคุณลักษณะที่เลือกไว้" +msgstr "เนื้อที่ดิสก์ที่ต้องใช้ในการติดตั้งคุณลักษณะที่เลือกไว้" #. Gb3dX #: Control.ulf @@ -1707,7 +1706,7 @@ "OOO_CONTROL_97\n" "LngText.text" msgid "The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives." -msgstr "วอลุ่มที่ทำเครื่องหมายมีพื้นที่ไม่เพียงพอสำหรับคุณสมบัตินี้ คุณอาจจะแก้ปัญหาโดยลบไฟล์ออก หรือเลือกติดตั้งคุณสมบัติต่ำลงในไดรฟ์ หรือเลือกไดรฟ์ปลายทางอื่น" +msgstr "โวลุมที่เน้นอยู่มีเนื้อที่ไม่เพียงพอสำหรับติดตั้งคุณลักษณะที่เลือก คุณอาจจะแก้ปัญหาโดยลบไฟล์ออกจากโวลุมดังกล่าว หรือเลือกติดตั้งคุณลักษณะลงในไดรฟ์ให้น้อยลง หรือเลือกไดรฟ์ปลายทางอื่น" #. 6sUCB #: Control.ulf @@ -1716,7 +1715,7 @@ "OOO_CONTROL_98\n" "LngText.text" msgid "{&DialogDefaultBold}Disk Space Requirements" -msgstr "" +msgstr "{&DialogDefaultBold}เนื้อที่ดิสก์ที่ต้องใช้" #. ZairS #: Control.ulf @@ -1734,7 +1733,7 @@ "OOO_CONTROL_103\n" "LngText.text" msgid "Some files that need to be updated are currently in use." -msgstr "บางแฟ้มซึ่งจำเป็นต้องปรับข้อมูลกำลังใช้อยู่ในขณะนี้" +msgstr "ไฟล์บางไฟล์ซึ่งจำเป็นต้องปรับข้อมูลกำลังมีการใช้งานอยู่" #. A8Gkz #: Control.ulf @@ -1743,7 +1742,7 @@ "OOO_CONTROL_104\n" "LngText.text" msgid "The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue." -msgstr "โปรแกรมต่อไปนี้ใช้ไฟล์ที่จำเป็นต้องได้รับการปรับปรุงโดยการติดตั้งนี้. ปิดโปรแกรมเหล่านี้และลองคลิกเพื่อดำเนินการต่อ." +msgstr "แอปพลิเคชันต่อไปนี้กำลังใช้ไฟล์ที่จำเป็นต้องปรับข้อมูลในการติดตั้งนี้ กรุณาปิดแอปพลิเคชันดังกล่าว แล้วคลิก 'ลองอีกครั้ง' เพื่อดำเนินการต่อ" #. Fr3kC #: Control.ulf @@ -1752,7 +1751,7 @@ "OOO_CONTROL_105\n" "LngText.text" msgid "{&DialogDefaultBold}Files in Use" -msgstr "" +msgstr "{&DialogDefaultBold}ไฟล์มีการใช้งาน" #. EjFBo #: Control.ulf @@ -1770,7 +1769,7 @@ "OOO_CONTROL_107\n" "LngText.text" msgid "&Ignore" -msgstr "&ละทิ้ง" +msgstr "ไ&ม่ต้องสนใจ" #. BLBA4 #: Control.ulf @@ -1806,7 +1805,7 @@ "OOO_CONTROL_114\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "เรียกดูโฟลเดอร์ปลายทาง" +msgstr "ท่องไปยังโฟลเดอร์ปลายทาง" #. CNjbv #: Control.ulf @@ -1815,7 +1814,7 @@ "OOO_CONTROL_115\n" "LngText.text" msgid "{&DialogDefaultBold}Change Current Destination Folder" -msgstr "" +msgstr "{&DialogDefaultBold}เปลี่ยนโฟลเดอร์ปลายทางปัจจุบัน" #. vQeGg #: Control.ulf @@ -1842,7 +1841,7 @@ "OOO_CONTROL_120\n" "LngText.text" msgid "&Folder name:" -msgstr "&ชื่อโฟลเดอร์" +msgstr "&ชื่อโฟลเดอร์:" #. aDXFg #: 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 "{&DialogHeading}ยินดีต้อนรับสู่เครื่องมือช่วยติดตั้ง [ProductName]" #. wJD2b #: Control.ulf @@ -1905,7 +1904,7 @@ "OOO_CONTROL_127\n" "LngText.text" msgid "The Installation Wizard will install [ProductName] on your computer. To continue, click Next." -msgstr "ตัวช่วยสร้างการติดตั้งจะติดตั้ง[ProductName]บนคอมพิวเตอร์ของท่าน ดำเนินการต่อ เพื่อที่จะทำต่อไปให้คลิกถัดไป" +msgstr "เครื่องมือช่วยติดตั้งนี้จะติดตั้ง [ProductName] ลงในคอมพิวเตอร์ของคุณ คลิก 'ถัดไป' เพื่อดำเนินการต่อ" #. 7ENF5 #: Control.ulf @@ -1932,7 +1931,7 @@ "OOO_CONTROL_132\n" "LngText.text" msgid "Please read the following license agreement carefully." -msgstr "กรุณาอ่านข้อตกลงการใช้สิทธิ์อย่างระมัดระวัง" +msgstr "กรุณาอ่านข้อตกลงสัญญาอนุญาตต่อไปนี้อย่างระมัดระวัง" #. bTxvE #: Control.ulf @@ -1941,7 +1940,7 @@ "OOO_CONTROL_133\n" "LngText.text" msgid "{&DialogDefaultBold}License Agreement" -msgstr "" +msgstr "{&DialogDefaultBold}ข้อตกลงสัญญาอนุญาต" #. VmMs5 #: Control.ulf @@ -1986,7 +1985,7 @@ "OOO_CONTROL_140\n" "LngText.text" msgid "{&DialogDefaultBold}Program Maintenance" -msgstr "" +msgstr "{&DialogDefaultBold}การดูแลรักษาโปรแกรม" #. w9y7B #: Control.ulf @@ -2004,7 +2003,7 @@ "OOO_CONTROL_143\n" "LngText.text" msgid "Change which program features are installed. This option displays the Custom Selection dialog in which you can change the way features are installed." -msgstr "เปลี่ยนคุณสมบัติของโปรแกรมที่มีการติดตั้ง ตัวเลือกนี้จะแสดงกล่องโต้ตอบแลลกำหนดเองคุณสามารถเปลี่ยนแปลงวิธีการติดตั้งคุณสมบัติ" +msgstr "ปรับเปลี่ยนคุณลักษณะที่จะติดตั้งของโปรแกรม ตัวเลือกนี้จะแสดงกล่องโต้ตอบ 'การติดตั้งแบบกำหนดเอง' ซึ่งจะให้คุณปรับเปลี่ยนวิธีการติดตั้งคุณลักษณะต่างๆ ได้" #. asaNV #: Control.ulf @@ -2013,7 +2012,7 @@ "OOO_CONTROL_144\n" "LngText.text" msgid "Repair installation errors in the program. This option fixes missing or corrupt files, shortcuts, and registry entries." -msgstr "ซ่อมข้อผิดพลาดการติดตั้งในโปรแกรม แก้ไขตัวเลือกนี้สูญหายหรือเสียหายไฟล์ลัดและรายการรีจิสตรี" +msgstr "ซ่อมข้อผิดพลาดของการติดตั้งในตัวโปรแกรม ตัวเลือกนี้จะแก้ปัญหาไฟล์, ทางลัด และรายการเรจิสตรีที่ขาดหายหรือเสียหาย" #. wqLBv #: Control.ulf @@ -2022,7 +2021,7 @@ "OOO_CONTROL_145\n" "LngText.text" msgid "Remove [ProductName] from your computer." -msgstr "เอา [ProductName] ออกจากเครื่องคอมพิวเตอร์ของท่าน จากคอมพิวเตอร์ของท่าน" +msgstr "ถอดถอน [ProductName] ออกจากเครื่องคอมพิวเตอร์ของคุณ" #. qCuEL #: Control.ulf @@ -2058,7 +2057,7 @@ "OOO_CONTROL_149\n" "LngText.text" msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold}ยินดีต้อนรับสู่เครื่องมือช่วยติดตั้ง [ProductName]" #. A8B4y #: Control.ulf @@ -2067,7 +2066,7 @@ "OOO_CONTROL_150\n" "LngText.text" msgid "The Installation Wizard will allow you to modify, repair, or remove [ProductName]. To continue, click Next." -msgstr "ตัวช่วยสร้างการติดตั้งจะอนุญาติให้เปลี่ยนแปลง, ซ่อมแซม หรือเอา [ProductName] ออก หากต้องการดำเนินการต่อไปคลิกที่ถัดไป" +msgstr "เครื่องมือช่วยติดตั้งนี้จะให้คุณสามารถเปลี่ยนแปลง, ซ่อมแซม หรือถอดถอน [ProductName] ได้ คลิก 'ถัดไป' เพื่อดำเนินการต่อ" #. HFHZY #: Control.ulf @@ -2076,7 +2075,7 @@ "OOO_CONTROL_153\n" "LngText.text" msgid "Disk space required for the installation exceeds available disk space." -msgstr "เนื้อที่ว่างบนดิสก์ที่ต้องการสำหรับการติดตั้งเกินกว่าเนื้อที่ว่างที่มีอยู่" +msgstr "ต้องการเนื้อที่ดิสก์สำหรับการติดตั้งมากกว่าเนื้อที่ว่างที่มีอยู่" #. 6HE5N #: Control.ulf @@ -2085,7 +2084,7 @@ "OOO_CONTROL_154\n" "LngText.text" msgid "The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives." -msgstr "วอลุ่มที่ทำเครื่องหมายมีพื้นที่ไม่เพียงพอสำหรับคุณสมบัตินี้ คุณอาจจะแก้ปัญหาโดยลบไฟล์ออก หรือเลือกติดตั้งคุณสมบัติต่ำลงในไดรฟ์ หรือเลือกไดรฟ์ปลายทางอื่น" +msgstr "โวลุมที่เน้นอยู่มีเนื้อที่ไม่เพียงพอสำหรับติดตั้งคุณลักษณะที่เลือก คุณอาจจะแก้ปัญหาโดยลบไฟล์ออกจากโวลุมดังกล่าว หรือเลือกติดตั้งคุณลักษณะลงในไดรฟ์ให้น้อยลง หรือเลือกไดรฟ์ปลายทางอื่น" #. kJvPh #: Control.ulf @@ -2094,7 +2093,7 @@ "OOO_CONTROL_155\n" "LngText.text" msgid "{&DialogDefaultBold}Out of Disk Space" -msgstr "" +msgstr "{&DialogDefaultBold}เนื้อที่ดิสก์ไม่เพียงพอ" #. 4BEms #: Control.ulf @@ -2148,17 +2147,16 @@ "OOO_CONTROL_161\n" "LngText.text" msgid "{&DialogHeading}Welcome to the Patch for [ProductName]" -msgstr "" +msgstr "{&DialogHeading}ยินดีต้อนรับสู่แพตช์สำหรับ [ProductName]" #. wFLhj #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_162\n" "LngText.text" msgid "The Installation Wizard will install the Patch for [ProductName] on your computer. To continue, click Update." -msgstr "ตัวช่วยติดตั้งจะติดตั้งและแพตช์สำหรับ [ProductName] บนคอมพิวเตอร์ของคุณ เพื่อดำเนินการ ต่อ คลิกอัพเดท" +msgstr "เครื่องมือช่วยติดตั้งนี้จะติดตั้งแพตช์สำหรับ [ProductName] ลงในคอมพิวเตอร์ของคุณ คลิก 'ปรับข้อมูล' เพื่อดำเนินการต่อ" #. RWU5F #: Control.ulf @@ -2185,7 +2183,7 @@ "OOO_CONTROL_167\n" "LngText.text" msgid "The wizard is ready to begin installation." -msgstr "ตัวช่วยสร้างพร้อมที่จะเริ่มการติดตั้ง" +msgstr "เครื่องมือช่วยนี้พร้อมแล้วที่จะเริ่มติดตั้ง" #. XDfGL #: Control.ulf @@ -2194,7 +2192,7 @@ "OOO_CONTROL_168\n" "LngText.text" msgid "Click Install to begin the installation." -msgstr "คลิกติดตั้งเพื่อเริ่มติดตั้ง" +msgstr "คลิก 'ติดตั้ง' เพื่อเริ่มติดตั้ง" #. BxJmA #: Control.ulf @@ -2203,7 +2201,7 @@ "OOO_CONTROL_169\n" "LngText.text" msgid "If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard." -msgstr "ถ้าคุณต้องการทบทวนหรือเปลี่ยนการตั้งค่าของการติดตั้งใดๆ ให้คลิกย้อนกลับ หรือคลิกยกเลิกเพื่อออกจากตัวช่วยสร้าง" +msgstr "หากคุณต้องการทบทวนหรือปรับเปลี่ยนตัวเลือกใดๆ ของของการติดตั้ง ให้คลิก 'ย้อนกลับ' หากต้องการออกจากเครื่องมือช่วยนี้ คลิก 'ยกเลิก'" #. tGr9B #: Control.ulf @@ -2212,7 +2210,7 @@ "OOO_CONTROL_170\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Modify the Program" -msgstr "" +msgstr "{&DialogDefaultBold}พร้อมแล้วที่จะปรับเปลี่ยนโปรแกรม" #. a9B5F #: Control.ulf @@ -2221,7 +2219,7 @@ "OOO_CONTROL_171\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Repair the Program" -msgstr "" +msgstr "{&DialogDefaultBold}พร้อมแล้วที่จะซ่อมแซมโปรแกรม" #. 9e9VQ #: Control.ulf @@ -2230,7 +2228,7 @@ "OOO_CONTROL_172\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Install the Program" -msgstr "" +msgstr "{&DialogDefaultBold}พร้อมแล้วที่จะติดตั้งโปรแกรม" #. y8BGp #: Control.ulf @@ -2266,7 +2264,7 @@ "OOO_CONTROL_178\n" "LngText.text" msgid "You have chosen to remove the program from your system." -msgstr "คุณเลือกที่จะลบโปรแกรมออกจากระบบ" +msgstr "คุณได้เลือกที่จะถอดถอนโปรแกรมออกจากระบบ" #. FxWU4 #: Control.ulf @@ -2275,7 +2273,7 @@ "OOO_CONTROL_179\n" "LngText.text" msgid "Click Remove to remove [ProductName] from your computer. After removal, this program will no longer be available for use." -msgstr "คลิกลบเพื่อลบ [ProductName] จากคอมพิวเตอร์ของท่าน หลังจากลบโปรแกรม โปรแกรมนี้จะไม่มีให้ใช้อีกต่อไป" +msgstr "คลิก 'ถอดถอน' เพื่อลบ [ProductName] ออกจากคอมพิวเตอร์ของคุณ หลังจากถอดถอนแล้ว โปรแกรมนี้จะไม่มีให้ใช้อีกต่อไป" #. 8DNv6 #: Control.ulf @@ -2284,7 +2282,7 @@ "OOO_CONTROL_180\n" "LngText.text" msgid "If you want to review or change any settings, click Back." -msgstr "ถ้าคูณต้องการตรวจทานหรือเปลี่ยนการตั้งค่าใดๆ ให้คลิกย้อนกลับ" +msgstr "หากคุณต้องการทบทวนหรือปรับเปลี่ยนตัวเลือกใดๆ ของของการติดตั้ง ให้คลิก 'ย้อนกลับ'" #. DgUgU #: Control.ulf @@ -2293,7 +2291,7 @@ "OOO_CONTROL_181\n" "LngText.text" msgid "{&DialogDefaultBold}Remove the Program" -msgstr "" +msgstr "{&DialogDefaultBold}ถอดถอนโปรแกรม" #. x4Thh #: Control.ulf @@ -2302,7 +2300,7 @@ "OOO_CONTROL_182\n" "LngText.text" msgid "&Remove" -msgstr "&เอาออก" +msgstr "&ถอดถอน" #. nQEWg #: Control.ulf @@ -2329,7 +2327,7 @@ "OOO_CONTROL_185\n" "LngText.text" msgid "&Finish" -msgstr "&เสร็จสิ้น" +msgstr "เ&สร็จสิ้น" #. LGBn9 #: Control.ulf @@ -2338,7 +2336,7 @@ "OOO_CONTROL_186\n" "LngText.text" msgid "Your system has not been modified. To complete installation at another time, please run setup again." -msgstr "ระบบของท่านยังไม่ได้มีการเปลี่ยนแปลง เพื่อให้การติดตั้งสมบูรณ์ในเวลาอื่นต่อไป กรุณาเรียกใช้การติดตั้งใหม่" +msgstr "ระบบของคุณยังไม่ได้มีการเปลี่ยนแปลงใดๆ หากคุณต้องการติดตั้งให้เสร็จสมบูรณ์ในภายหลัง ก็กรุณาเรียกโปรแกรมติดตั้งใหม่" #. 6eqB6 #: Control.ulf @@ -2347,7 +2345,7 @@ "OOO_CONTROL_187\n" "LngText.text" msgid "Click Finish to exit the wizard." -msgstr "คลิกเสร็จสิ้นเพื่อออกจากตัวช่วยสร้าง" +msgstr "คลิก 'เสร็จสิ้น' เพื่อออกจากเครื่องมือช่วยติดตั้ง" #. qvUER #: Control.ulf @@ -2356,7 +2354,7 @@ "OOO_CONTROL_188\n" "LngText.text" msgid "You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation." -msgstr "คุณสามารถทั้งเก็บหน่วยที่ติดตั้งไปแล้วในระบบเพื่อการติดตั้งในเวลาหลังหรือคุณสามารถฟื้นฟูระบบของคุณไปยังสถานะแรกเริ่มก่อนที่จะติดตั้ง" +msgstr "คุณอาจเก็บส่วนประกอบต่างๆ ที่ได้ติดตั้งไปแล้วไว้ในระบบของคุณเพื่อดำเนินการติดตั้งต่อในภายหลัง หรือจะย้อนระบบของคุณคืนสู่สถานะตั้งต้นก่อนติดตั้งก็ได้" #. tCBSv #: Control.ulf @@ -2365,7 +2363,7 @@ "OOO_CONTROL_189\n" "LngText.text" msgid "Click Restore or Continue Later to exit the wizard." -msgstr "คลิกซ่อมแซมหรือดำเนินการภายหลังเพื่อออกจากตัวช่วยสร้าง" +msgstr "คลิก 'ย้อนระบบคืน' หรือ 'ดำเนินการต่อภายหลัง' เพื่อออกจากเครื่องมือช่วย" #. EFyDT #: Control.ulf @@ -2374,7 +2372,7 @@ "OOO_CONTROL_190\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "{&DialogHeading}เครื่องมือช่วยติดตั้งทำงานเสร็จสมบูรณ์" #. 3yQtG #: Control.ulf @@ -2383,7 +2381,7 @@ "OOO_CONTROL_191\n" "LngText.text" msgid "The wizard was interrupted before [ProductName] could be completely installed." -msgstr "ตัวช่วยสร้างถูกรบกวนก่อนที่[ProductName]จะติดตั้งสมบูรณ์" +msgstr "เครื่องมือช่วยถูกขัดจังหวะก่อนที่ [ProductName] จะติดตั้งเสร็จสมบูรณ์" #. fqKzK #: Control.ulf @@ -2410,7 +2408,7 @@ "OOO_CONTROL_197\n" "LngText.text" msgid "&Finish" -msgstr "&เสร็จสิ้น" +msgstr "เ&สร็จสิ้น" #. QGZLT #: Control.ulf @@ -2419,7 +2417,7 @@ "OOO_CONTROL_198\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "{&DialogHeading}เครื่องมือช่วยติดตั้งทำงานเสร็จสมบูรณ์" #. HXdXy #: Control.ulf @@ -2428,7 +2426,7 @@ "OOO_CONTROL_199\n" "LngText.text" msgid "The Installation Wizard has successfully installed [ProductName]. Click Finish to exit the wizard." -msgstr "ตัวช่วยสร้างการติดตั้งได้ติดตั้ง [ProductName] สำเร็จ คลิกเสร็จสิ้นเพื่อออกจากตัวช่วยสร้าง" +msgstr "เครื่องมือช่วยติดตั้งได้ติดตั้ง [ProductName] สำเร็จแล้ว คลิก 'เสร็จสิ้น' เพื่อออกจากเครื่องมือช่วย" #. jYN9T #: Control.ulf @@ -2437,7 +2435,7 @@ "OOO_CONTROL_200\n" "LngText.text" msgid "The Installation Wizard has successfully uninstalled [ProductName]. Click Finish to exit the wizard." -msgstr "ตัวช่วยสร้างการติดตั้งยกเลิกการติดตั้ง [ProductName] สำเร็จ คลิกเสร็จสิ้นเพื่อออกจากตัวช่วยสร้าง" +msgstr "เครื่องมือช่วยติดตั้งได้ถอดถอน [ProductName] สำเร็จแล้ว คลิก 'เสร็จสิ้น' เพื่อออกจากเครื่องมือช่วย" #. bL7cn #: Control.ulf @@ -2446,7 +2444,7 @@ "OOO_CONTROL_204\n" "LngText.text" msgid "&Abort" -msgstr "&เลิกทำ" +msgstr "เ&ลิกทำ" #. EEzac #: Control.ulf @@ -2473,7 +2471,7 @@ "OOO_CONTROL_207\n" "LngText.text" msgid "&Ignore" -msgstr "&ละทิ้ง" +msgstr "ไม่ต้องสนใ&จ" #. n8Dw2 #: Control.ulf @@ -2482,7 +2480,7 @@ "OOO_CONTROL_208\n" "LngText.text" msgid "&No" -msgstr "&ไม่" +msgstr "ไ&ม่" #. 5gmJX #: Control.ulf @@ -2509,7 +2507,7 @@ "OOO_CONTROL_211\n" "LngText.text" msgid "&Yes" -msgstr "&ใช่" +msgstr "ใ&ช่" #. nq9vM #: Control.ulf @@ -2545,17 +2543,16 @@ "OOO_CONTROL_217\n" "LngText.text" msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "{&DialogHeading}ยินดีต้อนรับสู่เครื่องมือช่วยติดตั้งสำหรับ [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 @@ -2582,7 +2579,7 @@ "OOO_CONTROL_221\n" "LngText.text" msgid "&Finish" -msgstr "&เสร็จสิ้น" +msgstr "เ&สร็จสิ้น" #. SrinA #: Control.ulf @@ -2591,7 +2588,7 @@ "OOO_CONTROL_222\n" "LngText.text" msgid "Your system has not been modified. To install this program at a later time, please run the installation again." -msgstr "ระบบของท่านยังยังไม่มีการเปลี่ยนแปลง เพื่อที่จะติดตั้งโปรแกรมนี้ในภายหลัง โปรดเรียกการติดตั้งอีกครั้ง" +msgstr "ระบบของคุณยังไม่ได้มีการเปลี่ยนแปลงใดๆ หากคุณต้องการติดตั้งโปรแกรมนี้ในภายหลัง ก็กรุณาเรียกโปรแกรมติดตั้งอีกครั้ง" #. YUipC #: Control.ulf @@ -2600,7 +2597,7 @@ "OOO_CONTROL_223\n" "LngText.text" msgid "Click Finish to exit the wizard." -msgstr "คลิกเสร็จสิ้นเพื่อออกจากตัวช่วยสร้าง" +msgstr "คลิก 'เสร็จสิ้น' เพื่อออกจากเครื่องมือช่วยติดตั้ง" #. DnpKK #: Control.ulf @@ -2609,7 +2606,7 @@ "OOO_CONTROL_224\n" "LngText.text" msgid "You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation." -msgstr "คุณสามารถทำได้ทั้งการเก็บหน่วยที่ติดตั้งไปแล้วในระบบเพื่อการติดตั้งในภายหลัง หรือเรียกกลับคืนระบบของคุณไปยังสถานะแรกเริ่มก่อนที่จะติดตั้ง" +msgstr "คุณอาจเก็บส่วนประกอบต่างๆ ที่ได้ติดตั้งไปแล้วไว้ในระบบของคุณเพื่อดำเนินการติดตั้งต่อในภายหลัง หรือจะย้อนระบบของคุณคืนสู่สถานะตั้งต้นก่อนติดตั้งก็ได้" #. GwDLG #: Control.ulf @@ -2618,7 +2615,7 @@ "OOO_CONTROL_225\n" "LngText.text" msgid "Click Restore or Continue Later to exit the wizard." -msgstr "คลิกเรียกกลับคืนหรือดำเนินการภายหลังเพื่อออกจากตัวช่วยสร้าง" +msgstr "คลิก 'ย้อนระบบคืน' หรือ 'ดำเนินการต่อภายหลัง' เพื่อออกจากเครื่องมือช่วย" #. bV4co #: Control.ulf @@ -2627,7 +2624,7 @@ "OOO_CONTROL_226\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "{&DialogHeading}เครื่องมือช่วยติดตั้งทำงานเสร็จสมบูรณ์" #. fCUfv #: Control.ulf @@ -2636,7 +2633,7 @@ "OOO_CONTROL_227\n" "LngText.text" msgid "The wizard was interrupted before [ProductName] could be completely installed." -msgstr "ตัวช่วยสร้างเกิดปัญหาก่อน [ProductName] จะถูกติดตั้งอย่างสมบูรณ์" +msgstr "เครื่องมือช่วยถูกขัดจังหวะก่อนที่ [ProductName] จะติดตั้งเสร็จสมบูรณ์" #. CAs7p #: Control.ulf @@ -2645,7 +2642,7 @@ "OOO_CONTROL_228\n" "LngText.text" msgid "Progress done" -msgstr "ความคืบหน้าสำเสร็จ" +msgstr "ความคืบหน้า" #. nqDdG #: Control.ulf @@ -2672,7 +2669,7 @@ "OOO_CONTROL_234\n" "LngText.text" msgid "The program features you selected are being installed." -msgstr "คุณลักษณะโปรแกรมที่คุณเลือกจะถูกติดตั้ง" +msgstr "กำลังติดตั้งคุณลักษณะต่างๆ ที่คุณเลือกของโปรแกรม" #. S2Nsa #: Control.ulf @@ -2681,7 +2678,7 @@ "OOO_CONTROL_235\n" "LngText.text" msgid "The program features you selected are being uninstalled." -msgstr "คุณลักษณะโปรแกรมที่คุณเลือกจะถูกยกเลิกการติดตั้ง" +msgstr "กำลังถอดถอนคุณลักษณะต่างๆ ที่คุณเลือกของโปรแกรม" #. 93Mgi #: Control.ulf @@ -2690,7 +2687,7 @@ "OOO_CONTROL_236\n" "LngText.text" msgid "Please wait while the Installation Wizard installs [ProductName]. This may take several minutes." -msgstr "โปรดรอขณะที่ตัวช่วยสร้างการติดตั้ง ติดตั้ง[ProductName] อาจจะใช้เวลาหลายนาที" +msgstr "โปรดรอขณะที่เครื่องมือช่วยติดตั้งกำลังติดตั้ง [ProductName] อาจใช้เวลาหลายนาที" #. UEXDT #: Control.ulf @@ -2699,7 +2696,7 @@ "OOO_CONTROL_237\n" "LngText.text" msgid "Please wait while the Installation Wizard uninstalls [ProductName]. This may take several minutes." -msgstr "โปรดรอขณะที่ตัวช่วยสร้างการติดตั้งยกเลิกการติดตั้ง [ProductName] อาจจะใช้เวลาหลายนาที" +msgstr "โปรดรอขณะที่เครื่องมือช่วยติดตั้งกำลังถอดถอน [ProductName] อาจใช้เวลาหลายนาที" #. nPNkd #: Control.ulf @@ -2708,7 +2705,7 @@ "OOO_CONTROL_238\n" "LngText.text" msgid "{&DialogDefaultBold}Installing [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold}กำลังติดตั้ง [ProductName]" #. hwEMZ #: Control.ulf @@ -2717,7 +2714,7 @@ "OOO_CONTROL_239\n" "LngText.text" msgid "{&DialogDefaultBold}Uninstalling [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold}กำลังถอดถอน [ProductName]" #. XuEFu #: Control.ulf @@ -2753,7 +2750,7 @@ "OOO_CONTROL_244\n" "LngText.text" msgid "Estimated time remaining:" -msgstr "ประเมินเวลาที่เหลือ:" +msgstr "เวลาที่เหลือโดยประมาณ:" #. cDaEJ #: Control.ulf @@ -2789,7 +2786,7 @@ "OOO_CONTROL_248\n" "LngText.text" msgid "The Installation Wizard will complete the installation of [ProductName] on your computer. To continue, click Next." -msgstr "ตัวช่วยสร้างการติดตั้งจะเสร็จสิ้นการติดตั้งของ [ProductName] บนคอมพิวเตอร์ของคุณ เพื่อดำเนินการต่อไปคลิกถัดไป" +msgstr "เครื่องมือช่วยติดตั้งจะติดตั้ง [ProductName] ต่อให้เสร็จบนคอมพิวเตอร์ของคุณ คลิก 'ถัดไป' เพื่อดำเนินการต่อ" #. sGq9T #: Control.ulf @@ -2798,7 +2795,7 @@ "OOO_CONTROL_249\n" "LngText.text" msgid "The Installation Wizard will complete the suspended installation of [ProductName] on your computer. To continue, click Next." -msgstr "ตัวช่วยติดตั้งจะเสร็จสิ้นการติดตั้ง [ProductName] ดำเนินการต่อ คลิกต่อไป" +msgstr "เครื่องมือช่วยติดตั้งจะติดตั้ง [ProductName] ที่หยุดพักไว้ต่อให้เสร็จบนคอมพิวเตอร์ของคุณ คลิก 'ถัดไป' เพื่อดำเนินการต่อ" #. mff5H #: Control.ulf @@ -2807,7 +2804,7 @@ "OOO_CONTROL_250\n" "LngText.text" msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]" -msgstr "" +msgstr "{&DialogHeading}กำลังเรียกทำงานเครื่องมือช่วยติดตั้ง [ProductName] ต่อจากจุดเดิม" #. ryZBv #: Control.ulf @@ -2834,7 +2831,7 @@ "OOO_CONTROL_255\n" "LngText.text" msgid "[ProductName] will be installed with the default components, including user interface languages and spelling dictionaries matching your current language settings." -msgstr "[ProductName]จะถูกติดตั้งด้วยส่วนประกอบโดยปริยาย รวมทั้งภาษาส่วนติดต่อผู้ใช้และพจนานุกรมการสะกดคำที่ตรงกับการตั้งค่าถาษาของคุณในปัจจุบัน" +msgstr "จะติดตั้ง [ProductName] พร้อมส่วนประกอบปกติ รวมถึงคำแปลของส่วนติดต่อผู้ใช้และพจนานุกรมสะกดคำตามภาษาที่คุณกำหนดไว้ในขณะนี้" #. LWzoJ #: Control.ulf @@ -2843,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 @@ -2852,7 +2849,7 @@ "OOO_CONTROL_257\n" "LngText.text" msgid "Choose the setup type that best suits your needs." -msgstr "เลือกประเภทการติดตั้งที่เหมาะสมที่สุดกับความต้องการของคุณ" +msgstr "เลือกประเภทการติดตั้งที่เหมาะที่สุดกับความต้องการของคุณ" #. kjm6y #: Control.ulf @@ -2870,7 +2867,7 @@ "OOO_CONTROL_259\n" "LngText.text" msgid "{&DialogDefaultBold}Setup Type" -msgstr "" +msgstr "{&DialogDefaultBold}ประเภทการติดตั้ง" #. kv6GZ #: Control.ulf @@ -2915,7 +2912,7 @@ "OOO_CONTROL_269\n" "LngText.text" msgid "Repair or remove the program." -msgstr "ซ่อมแซมหรือลบโปรแกรมออก" +msgstr "ซ่อมแซมหรือถอดถอนโปรแกรม" #. d8DqG #: Control.ulf @@ -2924,7 +2921,7 @@ "OOO_CONTROL_270\n" "LngText.text" msgid "&Microsoft Word Documents" -msgstr "&เอกสารไมโครซอฟต์เวิร์ด" +msgstr "เอกสาร &Microsoft Word" #. 3XAYG #: Control.ulf @@ -2933,7 +2930,7 @@ "OOO_CONTROL_271\n" "LngText.text" msgid "Microsoft &Excel Spreadsheets" -msgstr "&ตารางคำนวณไมโครซอฟต์เอ็กเซล" +msgstr "ตารางคำนวณ Microsoft &Excel" #. 5hGB9 #: Control.ulf @@ -2942,7 +2939,7 @@ "OOO_CONTROL_272\n" "LngText.text" msgid "Microsoft Po&werPoint Presentations" -msgstr "&งานนำเสนอไมโครซอฟต์เพาวเวอร์พอยต์" +msgstr "งานนำเสนอ Microsoft Po&werPoint" #. pRq2A #: Control.ulf @@ -2960,7 +2957,7 @@ "OOO_CONTROL_274\n" "LngText.text" msgid "Set [DEFINEDPRODUCT] to be the default application for Microsoft Office file types." -msgstr "ตั้งค่า [DEFINEDPRODUCT] เพื่อใช้เป็นโปรแกรมปริยายสำหรับไฟล์ชนิดนี้" +msgstr "กำหนดให้ [DEFINEDPRODUCT] เป็นแอปพลิเคชันปริยายสำหรับไฟล์ชนิดต่างๆ ของ Microsoft Office" #. BYWZ6 #: Control.ulf @@ -2969,7 +2966,7 @@ "OOO_CONTROL_275\n" "LngText.text" msgid "[ProductName] can be set as the default application to open Microsoft Office file types. This means, for instance, that if you double click on one of these files, [ProductName] will open it, not the program that opens it now." -msgstr "สามารถตั้งให้ [ProductName] เป็นโปรแกรมโดยปริยายสำหรับเปิดไฟล์ของไมโครซอฟต์ออฟฟิศ นี่หมายความว่าตัวอย่างเช่นถ้าคุณดับเบิลคลิกที่ไฟล์เหล่านี้ [ProductName] จะเปิดไฟล์ ไม่ใช่โปรแกรมที่เปิดไฟล์อยู่ในขณะนี้" +msgstr "คุณสามารถกำหนดให้ [ProductName] เป็นแอปพลิเคชันปริยายสำหรับเปิดไฟล์ของ Microsoft Office ได้ ซึ่งหมายความว่า ถ้าคุณดับเบิลคลิกที่ไฟล์เหล่านี้ [ProductName] ก็จะเป็นผู้เปิดไฟล์ ไม่ใช่โปรแกรมที่เปิดไฟล์อยู่ในขณะนี้ เป็นต้น" #. xMzmY #: Control.ulf @@ -2978,7 +2975,7 @@ "OOO_CONTROL_278\n" "LngText.text" msgid "{&DialogDefaultBold}File Type" -msgstr "" +msgstr "{&DialogDefaultBold}ชนิดของไฟล์" #. gjEzM #: Control.ulf @@ -2987,7 +2984,7 @@ "OOO_CONTROL_300\n" "LngText.text" msgid "A version of [DEFINEDPRODUCT] [DEFINEDVERSION] was found by the [ProductName] Installation Wizard. This version will be updated." -msgstr "ตัวช่วยติดตั้งพบ [DEFINEDPRODUCT] รุ่น [DEFINEDVERSION] [ProductName] รุ่นนี้จะถูกอัพเดท" +msgstr "เครื่องมือช่วยติดตั้ง [ProductName] พบ [DEFINEDPRODUCT] รุ่น [DEFINEDVERSION] และจะปรับรุ่นให้" #. Dc9GW #: Control.ulf @@ -2996,7 +2993,7 @@ "OOO_CONTROL_301\n" "LngText.text" msgid "The destination folder specified below does not contain a [DEFINEDPRODUCT] [DEFINEDVERSION] version." -msgstr "โฟล์เดอรปลายทางที่กำหนดไม่พบ [DEFINEDPRODUCT] รุ่น [DEFINEDVERSION] " +msgstr "โฟล์เดอร์ปลายทางที่ระบุด้านล่างนี้ไม่ได้มี [DEFINEDPRODUCT] รุ่น [DEFINEDVERSION] ติดตั้งอยู่" #. Kv9ED #: Control.ulf @@ -3005,7 +3002,7 @@ "OOO_CONTROL_302\n" "LngText.text" msgid "A newer [DEFINEDPRODUCT] [DEFINEDVERSION] has been found." -msgstr "พบ [DEFINEDPRODUCT] [DEFINEDVERSION] รุ่นใหม่" +msgstr "พบ [DEFINEDPRODUCT] [DEFINEDVERSION] รุ่นที่ใหม่กว่า" #. F5CbH #: Control.ulf @@ -3014,7 +3011,7 @@ "OOO_CONTROL_303\n" "LngText.text" msgid "The version specified in the folder below cannot be updated." -msgstr "รุ่นที่กำหนดในโฟลเดอร์ไม่สามารถอัพเดท" +msgstr "รุ่นที่ระบุในโฟลเดอร์ด้านล่างนี้ไม่สามารถปรับรุ่นได้" #. 5B3xC #: Control.ulf @@ -3023,17 +3020,16 @@ "OOO_CONTROL_304\n" "LngText.text" msgid "Check the destination folder." -msgstr "ตรวจสอบโฟลเดอร์ปลายทาง" +msgstr "กรุณาตรวจสอบโฟลเดอร์ปลายทาง" #. 5VLAA #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_305\n" "LngText.text" msgid "To continue, click Next." -msgstr "ดำเนินการต่อ คลิก " +msgstr "ดำเนินการต่อ คลิก 'ถัดไป'" #. E5kBg #: Control.ulf @@ -3042,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 @@ -3061,7 +3056,7 @@ "OOO_CONTROL_308\n" "LngText.text" msgid "Install [ProductName] to:" -msgstr "ติดตั้ง [ProductName] ไปยัง :" +msgstr "ติดตั้ง [ProductName] ลงใน:" #. PmFh2 #: Control.ulf @@ -3070,7 +3065,7 @@ "OOO_CONTROL_309\n" "LngText.text" msgid "If you are just trying out [ProductName], you probably don't want this to happen, so leave the boxes unchecked." -msgstr "ถ้าคุณยังไม่ได้ทดลอง [ProductName] คุณอาจ ไม่ ต้องการให้สิ่งนี้เกิดขึ้น เอาเครื่องหมายในกล่องกาออก" +msgstr "หากคุณแค่ต้องการทดลองใช้ [ProductName] คุณอาจไม่ได้ต้องการทำสิ่งนี้ ถ้าเช่นนั้นก็ไม่ต้องกาเครื่องหมายในกล่องกานี้" #. R6e9P #: Control.ulf @@ -3079,7 +3074,7 @@ "OOO_CONTROL_317\n" "LngText.text" msgid "No languages have been selected for installation. Click OK, then select one or more languages for installation." -msgstr "ยังไม่ได้เลือกภาษาสำหรับการติดตั้ง คลิกตกลง แล้วเลือกภาษาหนึ่งหรือมากกว่าสำหรับการติดตั้ง" +msgstr "ยังไม่ได้เลือกภาษาที่จะติดตั้ง กรุณาคลิก 'ตกลง' แล้วเลือกภาษาตั้งแต่หนึ่งภาษาขึ้นไปสำหรับติดตั้ง" #. D6uEq #: Control.ulf @@ -3088,7 +3083,7 @@ "OOO_CONTROL_318\n" "LngText.text" msgid "No applications have been selected for installation. Click OK, then select one or more applications for installation." -msgstr "ยังไม่ได้เลือกแอพพลิเคชันสำหรับการติดตั้ง คลิกตกลง แล้วเลือกแอพพลิเคชันหนึ่งหรือมากกว่าสำหรับการติดตั้ง" +msgstr "ยังไม่ได้เลือกแอปพลิเคชันที่จะติดตั้ง กรุณาคลิก 'ตกลง' แล้วเลือกแอปพลิเคชันตั้งแต่หนึ่งตัวขึ้นไปสำหรับติดตั้ง" #. QEN5N #: Control.ulf @@ -3097,7 +3092,7 @@ "OOO_CONTROL_319\n" "LngText.text" msgid "Create a shortcut on desktop" -msgstr "" +msgstr "สร้างทางลัดบนพื้นโต๊ะ" #. cjkES #: Control.ulf @@ -3106,7 +3101,7 @@ "OOO_CONTROL_321\n" "LngText.text" msgid "Load [ProductName] during system start-up" -msgstr "โหลด [ProductName] ระหว่างการเริ่มระบบ" +msgstr "โหลด [ProductName] ขณะเริ่มระบบ" #. BCN8y #: Control.ulf @@ -3115,7 +3110,7 @@ "OOO_CONTROL_322\n" "LngText.text" msgid "Some files that need to be updated are currently in use." -msgstr "บางแฟ้มซึ่งจำเป็นต้องปรับข้อมูลกำลังใช้อยู่ในขณะนี้" +msgstr "ไฟล์บางไฟล์ซึ่งจำเป็นต้องปรับข้อมูลกำลังมีการใช้งานอยู่" #. t27nK #: Control.ulf @@ -3124,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 @@ -3133,7 +3128,7 @@ "OOO_CONTROL_324\n" "LngText.text" msgid "{&DialogDefaultBold}Files in Use" -msgstr "" +msgstr "{&DialogDefaultBold}ไฟล์มีการใช้งานอยู่" #. giWW4 #: Control.ulf @@ -3160,7 +3155,7 @@ "OOO_CONTROL_327\n" "LngText.text" msgid "{&DialogDefaultBold}Attention!" -msgstr "" +msgstr "{&DialogDefaultBold}ระวัง!" #. 5eE5R #: Control.ulf @@ -3169,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 @@ -3178,7 +3173,7 @@ "OOO_CUSTOMACTION_1\n" "LngText.text" msgid "A newer version of [ProductName] was found. To install an older version, the newer version needs to be removed first." -msgstr "ค้นพบ [ProductName] รุ่นใหม่ จะติดตั้งรุ่นเก่าต้องถอดรุ่นใหม่ออกก่อน" +msgstr "พบ [ProductName] รุ่นที่ใหม่กว่า การจะติดตั้งรุ่นที่เก่ากว่าต้องถอดรุ่นที่ใหม่กว่าออกก่อน" #. SjyhM #: CustomAc.ulf @@ -3187,7 +3182,7 @@ "OOO_CUSTOMACTION_2\n" "LngText.text" msgid "The same version of this product is already installed." -msgstr "ผลิตภัณฑ์รุ่นเดียวกันติดตั้งอยู่ก่อนแล้ว" +msgstr "มีผลิตภัณฑ์รุ่นเดียวกันติดตั้งอยู่ก่อนแล้ว" #. xCCKB #: Error.ulf @@ -3214,7 +3209,7 @@ "OOO_ERROR_3\n" "LngText.text" msgid "Warning [1]." -msgstr "การเตือน [1]" +msgstr "คำเตือน [1]" #. UpPzE #: Error.ulf @@ -3223,7 +3218,7 @@ "OOO_ERROR_4\n" "LngText.text" msgid "Info [1]." -msgstr "ข้อมูล [1]" +msgstr "แจ้งเพื่อทราบ [1]" #. zJDLP #: Error.ulf @@ -3232,7 +3227,7 @@ "OOO_ERROR_5\n" "LngText.text" msgid "Internal Error [1]. [2]{, [3]}{, [4]}" -msgstr "ข้อผิดพลาดภายใน [1]. [2]{, [3]}{, [4]}" +msgstr "ข้อผิดพลาดภายใน [1] [2]{, [3]}{, [4]}" #. WabjJ #: Error.ulf @@ -3250,7 +3245,7 @@ "OOO_ERROR_7\n" "LngText.text" msgid "Action [Time]: [1]. [2]" -msgstr "การกระทำ [Time]: [1]. [2]" +msgstr "การกระทำ [Time]: [1] [2]" #. 9YYAk #: Error.ulf @@ -3286,7 +3281,7 @@ "OOO_ERROR_11\n" "LngText.text" msgid "=== Logging started: [Date] [Time] ===" -msgstr "===เริ่มล็อก: [Date] [Time] ===" +msgstr "=== เริ่มบันทึกปูม: [Date] [Time] ===" #. KmRsd #: Error.ulf @@ -3295,7 +3290,7 @@ "OOO_ERROR_12\n" "LngText.text" msgid "=== Logging stopped: [Date] [Time] ===" -msgstr "===หยุดล็อก: [Date] [Time] ===" +msgstr "=== หยุดบันทึกปูม: [Date] [Time] ===" #. FjrMW #: Error.ulf @@ -3313,7 +3308,7 @@ "OOO_ERROR_14\n" "LngText.text" msgid "Action ended [Time]: [1]. Return value [2]." -msgstr "การปฏิบัติการสิ้นสุด [Time]: [1] ค่าย้อนกลับ [2]" +msgstr "การกระทำสิ้นสุด [Time]: [1] คืนค่า [2]" #. hJFdr #: Error.ulf @@ -3331,7 +3326,7 @@ "OOO_ERROR_16\n" "LngText.text" msgid "Out of memory. Shut down other applications before retrying." -msgstr "พื้นที่ความจำไม่เพียงพอ ปิดแอพพลิเคชันอื่นๆ ก่อนที่จะลองอีกครั้ง" +msgstr "หน่วยความจำไม่เพียงพอ กรุณาปิดแอปพลิเคชันอื่นๆ ก่อนที่จะลองอีกครั้ง" #. zFmaa #: Error.ulf @@ -3340,7 +3335,7 @@ "OOO_ERROR_17\n" "LngText.text" msgid "Installer is no longer responding." -msgstr "ตัวติดตั้งไม่ตอบสนองอีกต่อไป" +msgstr "เครื่องมือติดตั้งไม่ตอบสนองอีกต่อไป" #. sTwJ2 #: Error.ulf @@ -3349,7 +3344,7 @@ "OOO_ERROR_18\n" "LngText.text" msgid "Installer terminated prematurely." -msgstr "ตัวติดตั้งสิ้นสุดก่อนกำหนด" +msgstr "เครื่องมือติดตั้งจบการทำงานก่อนกำหนด" #. ucF5A #: Error.ulf @@ -3358,7 +3353,7 @@ "OOO_ERROR_19\n" "LngText.text" msgid "Please wait while Windows configures [ProductName]" -msgstr "โปรดรอขณะที่วินโดว์สกำหนดค่าของ [ProductName]" +msgstr "โปรดรอขณะที่วินโดวส์ตั้งค่า [ProductName]" #. bzY5o #: Error.ulf @@ -3367,7 +3362,7 @@ "OOO_ERROR_20\n" "LngText.text" msgid "Gathering required information..." -msgstr "รวบรวมข้อมูลที่ต้องการ" +msgstr "กำลังรวบรวมข้อมูลที่จำเป็น..." #. 5Fs2g #: Error.ulf @@ -3376,7 +3371,7 @@ "OOO_ERROR_21\n" "LngText.text" msgid "Removing older versions of this application" -msgstr "เอารุ่นเก่าของโปรแกรมนี้ออก" +msgstr "กำลังถอดถอนรุ่นเก่าของแอปพลิเคชันนี้" #. USAge #: Error.ulf @@ -3385,7 +3380,7 @@ "OOO_ERROR_22\n" "LngText.text" msgid "Preparing to remove older versions of this application" -msgstr "กำลังเตรียมเอารุ่นเก่าของโปรแกรมนี้ออก" +msgstr "กำลังเตรียมถอดถอนรุ่นเก่าของแอปพลิเคชันนี้" #. gnzzz #: Error.ulf @@ -3394,7 +3389,7 @@ "OOO_ERROR_23\n" "LngText.text" msgid "{[ProductName] }Setup completed successfully." -msgstr "{[ProductName] }การติดตั้งเสร็จสิ้นสมบูรณ์" +msgstr "{[ProductName] }ติดตั้งเสร็จสิ้นสมบูรณ์" #. 5BrkY #: Error.ulf @@ -3403,7 +3398,7 @@ "OOO_ERROR_24\n" "LngText.text" msgid "{[ProductName] }Setup failed." -msgstr "{[ProductName] }การติดตั้งล้มเหลว" +msgstr "{[ProductName] }ติดตั้งไม่สำเร็จ" #. yCcM6 #: Error.ulf @@ -3412,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 "ข้อผิดพลาดจากการอ่านแฟ้ม: [2]. {{ System error [3].}} ตรวจสอบว่ามีแฟ้มอยู่และคุณสามารถเข้าถึงมันได้" +msgstr "เกิดข้อผิดพลาดขณะอ่านไฟล์: [2] {{ ข้อผิดพลาดของระบบ [3]}} กรุณาตรวจสอบว่ามีไฟล์นี้อยู่และคุณสามารถเข้าถึงได้" #. 68Tuw #: Error.ulf @@ -3421,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 "ไม่สามารสร้างแฟ้ม [3] ไดเรกทอรีชื่อนี้มีอยู่แล้ว ยกเลิกการติดตั้ง และลองติดตั้งไปยังที่อื่น" +msgstr "ไม่สามารถสร้างไฟล์ [3] ได้ มีไดเรกทอรีชื่อนี้อยู่ก่อนแล้ว กรุณายกเลิกการติดตั้ง และลองติดตั้งลงในที่อื่น" #. azxrB #: Error.ulf @@ -3439,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 "ตัวติดตั้งมีสิทธิไม่พอที่จะเข้าถึงไดเรกทอรีนี้: [2] การติดตั้งไม่สามารถดำเนินงานต่อได้ จะต้องเข้าระบบเป็นผู้ดูแลระบบหรือติดต่อผู้ดูแลระบบ" +msgstr "เครื่องมือติดตั้งมีสิทธิไม่เพียงพอที่จะเข้าถึงไดเรกทอรีนี้: [2] การติดตั้งไม่สามารถดำเนินต่อไปได้ กรุณาเข้าระบบเป็นผู้ดูแลระบบหรือติดต่อผู้ดูแลระบบ" #. FBYxG #: Error.ulf @@ -3448,7 +3443,7 @@ "OOO_ERROR_29\n" "LngText.text" msgid "Error writing to file [2]. Verify that you have access to that directory." -msgstr "เกิดข้อผิดพลาดขณะเขียนแฟ้ม [2] ตรวจสอบดูว่าคุณได้เข้าถึงไดเรกทอรีนั้น" +msgstr "เกิดข้อผิดพลาดขณะเขียนแฟ้ม [2] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เข้าถึงไดเรกทอรีนั้น" #. UbSyL #: Error.ulf @@ -3457,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 "เกิดข้อผิดพลาดในการอ่านแฟ้ม [2] ตรวจสอบว่าแฟ้มคงอยู่และคุณสามารถเข้าถึงได้" +msgstr "เกิดข้อผิดพลาดในการอ่านแฟ้ม [2] กรุณาตรวจสอบในแน่ใจว่ามีแฟ้มดังกล่าวอยู่ และคุณสามารถเข้าถึงได้" #. AB6YZ #: Error.ulf @@ -3466,7 +3461,7 @@ "OOO_ERROR_31\n" "LngText.text" msgid "Another application has exclusive access to the file [2]. Please shut down all other applications, then click Retry." -msgstr "แอพพลิเคชันอื่นมีการเข้าถึงแฟ้ม[2]แต่ผู้เดียวโปรดปิดแอพพลิเคชันทุกๆอันแล้วคลิกลองอีกครั้ง" +msgstr "มีแอปพลิเคชันอื่นเข้าถึงแฟ้ม [2] แบบกีดกันอยู่ กรุณาปิดแอปพลิเคชันอื่นทั้งหมด แล้วคลิก 'ลองอีกครั้ง'" #. cBCXk #: Error.ulf @@ -3475,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 "มีพื้นที่ว่างบนดิสก์ไม่เพียงพอที่จะติดตั้งแฟ้ม [2] สร้างพื้นที่ว่างบนดิสก์ และคลิกลองอีกครั้ง หรือคลิกยกเลิกเพื่อออก" +msgstr "มีเนื้อที่ดิสก์ไม่เพียงพอสำหรับติดตั้งแฟ้ม [2] กรุณาเคลียร์เนื้อที่ดิสก์ แล้วคลิก 'ลองอีกครั้ง' หรือคลิก 'ยกเลิก' เพื่อออก" #. BTono #: Error.ulf @@ -3484,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 "ไม่พบแฟ้มสำหรับติดตั้ง: [2] ตรวจสอบว่ามีแฟ้มอยู่และคุณสามารถเข้าถึงได้" +msgstr "ไม่พบแฟ้มต้นทาง: [2] กรุณาตรวจสอบในแน่ใจว่ามีแฟ้มดังกล่าวอยู่ และคุณสามารถเข้าถึงได้" #. eTECb #: Error.ulf @@ -3493,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 "เกิดข้อผิดพลาดในการอ่านแฟ้ม: [3]. {{ ข้อผิดพลาดระบบ [2].}} พิสูจน์ว่าแฟ้มมีอยู่และคุณสามารถเข้าถึงได้" +msgstr "เกิดข้อผิดพลาดในการอ่านแฟ้ม: [3] {{ข้อผิดพลาดระบบ [2]}} กรุณาตรวจสอบในแน่ใจว่ามีแฟ้มดังกล่าวอยู่ และคุณสามารถเข้าถึงได้" #. eHTZD #: Error.ulf @@ -3502,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 "เกิดข้อผิดพลาดในการเขียนแฟ้ม: [3]. {{ข้อผิดพลาดระบบ [2].}} ตรวจสอบว่าคุณได้เข้าถึงไดเรกทอรีนั้น" +msgstr "เกิดข้อผิดพลาดขณะเขียนแฟ้ม: [3] {{ข้อผิดพลาดระบบ [2]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เข้าถึงไดเรกทอรีนั้น" #. f7AGu #: Error.ulf @@ -3511,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 "ไม่พบแฟ้มสำหรับติดตั้ง{{(cabinet)}}:[2] ตรวจสอบว่ามีแฟ้มอยู่และคุณสามารถเข้าถึงได้" +msgstr "ไม่พบแฟ้มต้นทาง{{(ตู้)}}:[2] กรุณาตรวจสอบในแน่ใจว่ามีแฟ้มดังกล่าวอยู่ และคุณสามารถเข้าถึงได้" #. rdcGb #: Error.ulf @@ -3520,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 "ไม่สามารถสร้างไดเรกทอรี [2] มีแฟ้มชื่อนี้อยู่แล้ว กรุณาเปลี่ยนชื่อหรือลบแฟ้ม และคลิกลองอีกครั้ง หรือคลิกยกลิกเพื่อออก" +msgstr "ไม่สามารถสร้างไดเรกทอรี [2] มีไฟล์ชื่อนี้อยู่ก่อนแล้ว กรุณาเปลี่ยนชื่อหรือลบไฟล์ดังกล่าว และคลิก 'ลองอีกครั้ง' หรือคลิก 'ยกเลิก' เพื่อออก" #. oCgqE #: Error.ulf @@ -3529,7 +3524,7 @@ "OOO_ERROR_38\n" "LngText.text" msgid "The volume [2] is currently unavailable. Please select another." -msgstr "ส่วน[2]ขณะนี้ใช้ไม่ได้ โปรดเลือกอันอื่น" +msgstr "โวลุม [2] ใช้ไม่ได้ในขณะนี้ กรุณาเลือกโวลุมอื่น" #. p8BUw #: Error.ulf @@ -3538,7 +3533,7 @@ "OOO_ERROR_39\n" "LngText.text" msgid "The specified path [2] is unavailable." -msgstr "พาธที่ระบุ [2] ใช้ไม่ได้" +msgstr "ไม่มีพาธ [2] ที่ระบุ" #. WRSZ8 #: Error.ulf @@ -3547,7 +3542,7 @@ "OOO_ERROR_40\n" "LngText.text" msgid "Unable to write to the specified folder [2]." -msgstr "ไม่สามารถเขียนไปยังโฟลเดอร์ที่ระบุ [2]" +msgstr "ไม่สามารถเขียนลงในโฟลเดอร์ [2] ที่ระบุ" #. bcJXd #: Error.ulf @@ -3556,7 +3551,7 @@ "OOO_ERROR_41\n" "LngText.text" msgid "A network error occurred while attempting to read from the file [2]" -msgstr "เกิดข้อผิดพลาดเครือข่ายขณะพยายามที่จะอ่านจากแฟ้ม [2]" +msgstr "เกิดข้อผิดพลาดของเครือข่ายขณะพยายามอ่านจากแฟ้ม [2]" #. LEUou #: Error.ulf @@ -3565,7 +3560,7 @@ "OOO_ERROR_42\n" "LngText.text" msgid "An error occurred while attempting to create the directory [2]" -msgstr "เกิดข้อผิดพลาดขณะพยายามที่จะสร้างไดเรกทอรี [2]" +msgstr "เกิดข้อผิดพลาดขณะพยายามสร้างไดเรกทอรี [2]" #. r7jLo #: Error.ulf @@ -3574,7 +3569,7 @@ "OOO_ERROR_43\n" "LngText.text" msgid "A network error occurred while attempting to create the directory [2]" -msgstr "เกิดข้อผิดพลาดเครือข่ายขณะพยายามที่จะสร้างไดเรกทอรี[2]" +msgstr "เกิดข้อผิดพลาดของเครือข่ายขณะพยายามสร้างไดเรกทอรี[2]" #. stYdV #: Error.ulf @@ -3583,7 +3578,7 @@ "OOO_ERROR_44\n" "LngText.text" msgid "A network error occurred while attempting to open the source file cabinet [2]." -msgstr "เกิดข้อผิดพลาดเครือข่ายขณะที่พยายามเปิดที่เก็บแฟ้มข้อมูล [2]" +msgstr "เกิดข้อผิดพลาดของเครือข่ายขณะพยายามเปิดตู้ไฟล์ต้นทาง [2]" #. usiDM #: Error.ulf @@ -3601,7 +3596,7 @@ "OOO_ERROR_46\n" "LngText.text" msgid "The Installer has insufficient privileges to modify the file [2]." -msgstr "ตัวติดตั้งมีสิทธิไม่เพียงพอที่จะแก้ไขไฟล์ [2]" +msgstr "เครื่องมือติดตั้งมีสิทธิไม่เพียงพอที่จะแก้ไขไฟล์ [2]" #. V5Kzx #: Error.ulf @@ -3610,7 +3605,7 @@ "OOO_ERROR_47\n" "LngText.text" msgid "A portion of the path [2] exceeds the length allowed by the system." -msgstr "ส่วนของพาธ[2]ยาวเกินกว่าที่ระบบอนุญาต" +msgstr "บางส่วนของพาธ [2] ยาวเกินกว่าที่ระบบอนุญาต" #. aXaGC #: Error.ulf @@ -3619,7 +3614,7 @@ "OOO_ERROR_48\n" "LngText.text" msgid "The path [2] contains words that are not valid in folders." -msgstr "พาธ[2]มีคำที่ไม่มีในโฟลเดอร์" +msgstr "พาธ [2] มีคำที่ไม่สามารถใช้ในโฟลเดอร์ได้" #. sWX9V #: Error.ulf @@ -3628,7 +3623,7 @@ "OOO_ERROR_49\n" "LngText.text" msgid "The path [2] contains an invalid character." -msgstr "พาธ[2]มีตัวอักษรที่ใช้การไม่ได้" +msgstr "พาธ [2] มีอักษรที่ห้ามใช้" #. tGkEp #: Error.ulf @@ -3637,7 +3632,7 @@ "OOO_ERROR_50\n" "LngText.text" msgid "[2] is not a valid short file name." -msgstr "[2] ไม่ใช่ชื่อแฟ้มที่ใช้ได้" +msgstr "[2] ไม่ใช่ชื่อไฟล์สั้นที่ใช้ได้" #. ZHAnX #: Error.ulf @@ -3646,7 +3641,7 @@ "OOO_ERROR_51\n" "LngText.text" msgid "Error getting file security: [3] GetLastError: [2]" -msgstr "ข้อผิดพลาดในการดึงข้อมูลความปลอดภัยของไฟล์: [3] GetLastError: [2]" +msgstr "เกิดข้อผิดพลาดขณะดึงข้อมูลความปลอดภัยของไฟล์: [3] GetLastError: [2]" #. JFako #: Error.ulf @@ -3664,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 "เกิดข้อผิดพลาดในการแพตช์แฟ้ม[2] บางมีมันอาจจะถูกปรับข้อมูลทางอื่น,และไม่สามารถถูกแก้ไขโดยแพตช์นี้ สำหรับข้อมูลเพิ่มเติมติดต่อผู้ขายแพตช์ {{ข้อผิดพลาดระบบ: [3]}}" +msgstr "เกิดข้อผิดพลาดขณะแพตช์ไฟล์ [2] ไฟล์ดังกล่าวอาจถูกปรับข้อมูลจากทางอื่น ทำให้ไม่สามารถปรับแก้ด้วยแพตช์นี้ได้ กรุณาติดต่อผู้แจกจ่ายแพตช์เพื่อขอข้อมูลเพิ่มเติม {{ข้อผิดพลาดระบบ: [3]}}" #. 5A7BV #: Error.ulf @@ -3673,7 +3668,7 @@ "OOO_ERROR_54\n" "LngText.text" msgid "Could not create key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถสร้างคีย์ [2]. {{ ข้อผิดพลาดของระบบ [3].}} ทวนสอบว่าคุณมีสิทธิอย่างเพียงพอในการเข้าถึงคีย์นั้น, หรือติดต่อเจ้าหน้าที่สนับสนุน" +msgstr "ไม่สามารถสร้างคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. JZi8n #: Error.ulf @@ -3682,7 +3677,7 @@ "OOO_ERROR_55\n" "LngText.text" msgid "Could not open key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "Could not open key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." +msgstr "ไม่สามารถเปิดคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. eAhfo #: Error.ulf @@ -3691,7 +3686,7 @@ "OOO_ERROR_56\n" "LngText.text" msgid "Could not delete value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถสร้างลบคีย์[2]จากคีย์[3] {{ ข้อผิดพลาดระบบ [4].} }ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถลบค่า [2] ออกจากคีย์ [3] {{ ข้อผิดพลาดระบบ [4]}}กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. Mgice #: Error.ulf @@ -3700,7 +3695,7 @@ "OOO_ERROR_57\n" "LngText.text" msgid "Could not delete key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถสร้างคีย์[2] {{ ข้อผิดพลาดระบบ [3].}}ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถลบคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}}กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. e8pbi #: Error.ulf @@ -3709,7 +3704,7 @@ "OOO_ERROR_58\n" "LngText.text" msgid "Could not read value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถอ่านค่าคีย์[2]จากคีย์[3] {{ ข้อผิดพลาดระบบ [4].}} ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถอ่านค่า [2] จากคีย์ [3] {{ ข้อผิดพลาดระบบ [4]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. rAGhL #: Error.ulf @@ -3718,7 +3713,7 @@ "OOO_ERROR_59\n" "LngText.text" msgid "Could not write value [2] to key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถg-upoค่าคีย์[2]จากคีย์[3] {{ ข้อผิดพลาดระบบ [4].}} ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น,หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถเขียนค่า [2] ลงในคีย์ [3] {{ ข้อผิดพลาดระบบ [4]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. AfbrT #: Error.ulf @@ -3727,7 +3722,7 @@ "OOO_ERROR_60\n" "LngText.text" msgid "Could not get value names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถรับค่าจากคีย์[2] {{ ข้อผิดพลาดระบบ [3].}} ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถอ่านชื่อของค่าต่างๆ ในคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. Hm5Sz #: Error.ulf @@ -3736,7 +3731,7 @@ "OOO_ERROR_61\n" "LngText.text" msgid "Could not get sub key names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถรับชื่อคีย์ย่อยสำหรับคีย์[2] {{ ข้อผิดพลาดระบบ [3].}} ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถอ่านชื่อของคีย์ย่อยต่างๆ ในคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. tcEko #: Error.ulf @@ -3745,7 +3740,7 @@ "OOO_ERROR_62\n" "LngText.text" msgid "Could not read security information for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." -msgstr "ไม่สามารถอ่านข้อมูลความปลอดภัยสำหรับคีย์[2] {{ ข้อผิดพลาดระบบ [3].}} ตรวจสอบว่าคุณมีการเข้าถึงเพียงพอกับคีย์นั้น หรือติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถอ่านข้อมูลความปลอดภัยสำหรับคีย์ [2] {{ ข้อผิดพลาดระบบ [3]}} กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเข้าถึงคีย์นั้น หรือติดต่อเจ้าหน้าที่ฝ่ายสนับสนุน" #. AVTnB #: Error.ulf @@ -3754,7 +3749,7 @@ "OOO_ERROR_63\n" "LngText.text" msgid "Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application." -msgstr "ไม่สามารถเพิ่มขนาดที่ว่างของรีจิสทรีที่มีอยู่ ต้องการ [2] กิโลไบต์ของพื้นที่ว่างรีจิสทรีสำหรับการติดตั้งโปรแกรมนี้" +msgstr "ไม่สามารถเพิ่มเนื้อที่รองรับเรจิสตรี ต้องการเนื้อที่ [2] KB สำหรับการติดตั้งแอปพลิเคชันนี้" #. yjQqT #: Error.ulf @@ -3763,7 +3758,7 @@ "OOO_ERROR_64\n" "LngText.text" msgid "Another installation is in progress. You must complete that installation before continuing this one." -msgstr "การติดตั้งอันอื่นกำลังดำเนินการอยู่คุณต้องติดตั้งให้สมบูรณ์ก่อนที่จะดำเนินการอันนี้" +msgstr "มีการติดตั้งรายการอื่นกำลังทำงานอยู่ คุณต้องติดตั้งรายการนั้นให้เสร็จสมบูรณ์ก่อนที่จะดำเนินการรายการนี้" #. sDFYT #: Error.ulf @@ -3772,7 +3767,7 @@ "OOO_ERROR_65\n" "LngText.text" msgid "Error accessing secured data. Please make sure the Windows Installer is configured properly and try the installation again." -msgstr "ผิดพลาดในการเข้าถึงข้อมูลความปลอดภัย โปรดทำให้แน่ใจว่าตัวติดตั้งวินโดว์สตั้งค่าเหมาะสมและลองติดตั้งอีกครั้ง" +msgstr "เกิดข้อผิดพลาดในการเข้าถึงข้อมูลที่มีการรักษาความปลอดภัย กรุณาตรวจสอบให้แน่ใจว่าเครื่องมือติดตั้งวินโดวส์มีการตั้งค่าที่เหมาะสม แล้วลองติดตั้งอีกครั้ง" #. 5AEAp #: Error.ulf @@ -3781,7 +3776,7 @@ "OOO_ERROR_66\n" "LngText.text" msgid "User [2] has previously initiated an installation for product [3]. That user will need to run that installation again before using that product. Your current installation will now continue." -msgstr "ผู้ใช้[2]ได้เริ่มการติดตั้งผลิตภัณฑ์[3] ผู้ใช้คนนั้นจำเป็นต้องเรียกทำงานการติดตั้งอีกครั้งก่อนที่จะใช้ผลิตภัณฑ์นั้น การติดตั้งของคุณจะดำเนินต่อไปเดี๋ยวนี้" +msgstr "ผู้ใช้ [2] ได้เริ่มการติดตั้งผลิตภัณฑ์ [3] ไว้ก่อนหน้านี้ ผู้ใช้ดังกล่าวจำเป็นต้องเรียกทำงานการติดตั้งนั้นอีกครั้งก่อนที่จะใช้ผลิตภัณฑ์นั้น การติดตั้งของคุณจะดำเนินต่อไปเดี๋ยวนี้" #. jsFda #: Error.ulf @@ -3790,7 +3785,7 @@ "OOO_ERROR_67\n" "LngText.text" msgid "User [2] has previously initiated an installation for product [3]. That user will need to run that installation again before using that product." -msgstr "ผู้ใช้[2]ได้เริ่มการติดตั้งผลิตภัณฑ์[3] ผู้ใช้คนนั้นจำเป็นต้องเรียกทำงานการติดตั้งอีกครั้งก่อนที่จะใช้ผลิตภัณฑ์นั้น " +msgstr "ผู้ใช้ [2] ได้เริ่มการติดตั้งผลิตภัณฑ์ [3] ไว้ก่อนหน้านี้ ผู้ใช้ดังกล่าวจำเป็นต้องเรียกทำงานการติดตั้งนั้นอีกครั้งก่อนที่จะใช้ผลิตภัณฑ์นั้น" #. 4y8CN #: Error.ulf @@ -3799,7 +3794,7 @@ "OOO_ERROR_68\n" "LngText.text" msgid "Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB. Free some disk space and retry." -msgstr "เนื้อที่ดิสก์ว่างหมด -- โวลุ่ม: '[2]'; เนื้อที่ว่างที่ต้องการ: [3] KB; เนื้อที่ว่างที่มีอยู่: [4] KB. ทำให้มีเนื้อที่ดิสก์ว่างแล้วลองใหม่" +msgstr "เนื้อที่ดิสก์เต็ม -- โวลุม: '[2]'; เนื้อที่ว่างที่ต้องการ: [3] KB; เนื้อที่ว่างที่มีอยู่: [4] KB กรุณาเคลียร์เนื้อที่ดิสก์แล้วลองใหม่" #. jeRkA #: Error.ulf @@ -3817,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 "แฟ้ม [2][3] อยู่ในระหว่างการใช้{ โดยกระบวนการต่อไปนี้: ชื่อ: [4], ID: [5], ชื่อหน้าต่าง: [6]} ปิดแอพพลิเคชันและลองใหม่อีกครั้ง" +msgstr "ไฟล์ [2][3] ถูกยึดไว้ใช้งาน {โดยโพรเซสต่อไปนี้: ชื่อ: [4], ID: [5], ชื่อหน้าต่าง: [6]} กรุณาปิดแอปพลิเคชันดังกล่าวแล้วลองใหม่อีกครั้ง" #. oF3Fv #: Error.ulf @@ -3826,7 +3821,7 @@ "OOO_ERROR_71\n" "LngText.text" msgid "The product [2] is already installed, preventing the installation of this product. The two products are incompatible." -msgstr "ผลิตภัณฑ์ [2] ติดตั้งอยู่แล้ว จึงกันการติดตั้งผลิตภัณฑ์นี้ ผลิตภัณฑ์ทั้งสองเข้ากันไม่ได้" +msgstr "มีการติดตั้งผลิตภัณฑ์ [2] อยู่ก่อนแล้ว จึงทำให้ติดตั้งผลิตภัณฑ์นี้ไม่ได้ เนื่องจากผลิตภัณฑ์ทั้งสองเข้ากันไม่ได้" #. s2orj #: Error.ulf @@ -3835,7 +3830,7 @@ "OOO_ERROR_72\n" "LngText.text" msgid "Out of disk space -- Volume: [2]; required space: [3] KB; available space: [4] KB. If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback." -msgstr "ไม่มีเนื่อที่ว่างบนดิสก์-- ส่วน: '[2]'; ต้องการพื้นที่ว่าง: [3] กิโลไบต์; พื้นที่ที่มีอยู่: [4]กิโลไบต์ ถ้าไม่สามารถย้อนกลับ มีพื้นที่ว่างเพียงพอ คลิกยกเลิกเพื่อหยุด ลองตรวจสอบอีกครั้งว่ามีพื้นที่ว่างเพียงพอ หรือไม่สนใจเพื่อดำเนินการต่อโดยไม่มีการย้อนกลับ" +msgstr "เนื้อที่ดิสก์เต็ม -- โวลุม: '[2]'; เนื้อที่ว่างที่ต้องการ: [3] KB; เนื้อที่ว่างที่มีอยู่: [4] KB ถ้าปิดใช้การถอยคืน (rollback) ก็จะมีเนื้อที่ว่างเพียงพอ คลิก 'ยกเลิก' เพื่อออก หรือคลิก 'ลองอีกครั้ง' เพื่อตรวจสอบเนื้อที่ว่างอีกครั้ง หรือคลิก 'ไม่ต้องสนใจ' เพื่อดำเนินการต่อโดยไม่เปิดใช้การถอยคืน" #. MCwyq #: Error.ulf @@ -3853,7 +3848,7 @@ "OOO_ERROR_74\n" "LngText.text" msgid "The following applications should be closed before continuing the installation:" -msgstr "แอพพลิเคชันต่อไปนี้ควรปิดก่อนที่จะดำเนินการติดตั้งต่อไป" +msgstr "ควรปิดแอปพลิเคชันต่อไปนี้ก่อนที่จะดำเนินการติดตั้งต่อไป:" #. Bad4A #: Error.ulf @@ -3862,7 +3857,7 @@ "OOO_ERROR_75\n" "LngText.text" msgid "Could not find any previously installed compliant products on the machine for installing this product." -msgstr "ไม่สามารถหาผลิตภัณฑ์ตามข้อกำหนดใดๆ ที่ติดตั้งไว้ก่อนแล้วบนเครื่องสำหรับติดตั้งผลิตภัณฑ์นี้" +msgstr "ไม่พบว่ามีผลิตภัณฑ์ใดตามข้อกำหนดติดตั้งไว้ในเครื่องเพื่อการติดตั้งผลิตภัณฑ์นี้" #. 7BqEv #: Error.ulf @@ -3871,7 +3866,7 @@ "OOO_ERROR_76\n" "LngText.text" msgid "The key [2] is not valid. Verify that you entered the correct key." -msgstr "คีย์ [2] ไม่ถูกต้อง โปรดสอบทวนว่าคุณได้ป้อนคีย์ที่ถูกต้อง" +msgstr "คีย์ [2] ไม่ถูกต้อง โปรดตรวจสอบว่าคุณได้ป้อนคีย์ที่ถูกต้อง" #. YqEBF #: Error.ulf @@ -3880,7 +3875,7 @@ "OOO_ERROR_77\n" "LngText.text" msgid "The installer must restart your system before configuration of [2] can continue. Click Yes to restart now or No if you plan to restart later." -msgstr "ตัวติดตั้งต้องเริ่มต้นระบบของท่านก่อนการตั้งค่าของ[2]จะสามารถดำเนินต่อได้คลิกใช่เพื่อเริ่มต้นตอนนี้หรือไม่ถ้าคุณวางแผนจะเริ่มต้นใหม่ทีหลัง" +msgstr "เครื่องมือติดตั้งต้องเริ่มระบบของคุณใหม่ก่อนที่จะสามารถตั้งค่าของ [2] ต่อไปได้ คลิก 'ใช่' เพื่อเริ่มระบบใหม่ตอนนี้เลย หรือคลิก 'ไม่' ถ้าคุณวางแผนจะเริ่มระบบใหม่ภายหลัง" #. veLrG #: Error.ulf @@ -3889,7 +3884,7 @@ "OOO_ERROR_78\n" "LngText.text" msgid "You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to restart later." -msgstr "ตัวติดตั้งต้องเริ่มต้นระบบของท่านใหม่สำหรับการเปลี่ยนแปลงการตั้งค่าที่ได้ทำไปกับ[2]จะมีผลคลิกใช่เพื่อเริ่มต้นตอนนี้หรือไม่ถ้าคุณวางแผนจะเริ่มต้นทีหลัง" +msgstr "คุณต้องเริ่มระบบของคุณใหม่เพื่อให้การเปลี่ยนแปลงค่าตั้งที่ทำกับ [2] มีผล คลิก 'ใช่' เพื่อเริ่มระบบใหม่ตอนนี้เลย หรือคลิก 'ไม่' ถ้าคุณวางแผนจะเริ่มระบบใหม่ภายหลัง" #. s3W2C #: Error.ulf @@ -3898,7 +3893,7 @@ "OOO_ERROR_79\n" "LngText.text" msgid "An installation for [2] is currently suspended. You must undo the changes made by that installation to continue. Do you want to undo those changes?" -msgstr "การติดตั้งอย่างหนึ่งสำหรับ [2] ขณะนี้หยุดชะงัก คุณจะต้องทำกลับการเปลี่ยนแปลงโดยการติดตั้งนั้นก่อนที่จะทำต่อไป คุณต้องการทำกลับการเปลี่ยนแปลงหรือไม่?" +msgstr "การติดตั้ง [2] รายการหนึ่งถูกพักไว้ในตอนนี้ คุณจะต้องทำคืนสิ่งที่การติดตั้งดังกล่าวได้เปลี่ยนแปลงไปก่อนที่จะดำเนินการต่อไป คุณต้องการทำคืนการเปลี่ยนแปลงดังกล่าวหรือไม่?" #. q6oVY #: Error.ulf @@ -3907,7 +3902,7 @@ "OOO_ERROR_80\n" "LngText.text" msgid "A previous installation for this product is in progress. You must undo the changes made by that installation to continue. Do you want to undo those changes?" -msgstr "มีการติดตั้งก่อนหน้านี้สำหรับผลิตภัณฑ์นี้อยู่ในระหว่างดำเนินการ คุณต้องทำกลับการเปลี่ยนแปลงโดยการติดตั้งนั้นก่อนที่จะทำต่อไป คุณต้องการทำกลับการเปลี่ยนแปลงหรือไม่?" +msgstr "มีการติดตั้งก่อนหน้านี้ของผลิตภัณฑ์นี้อยู่ในระหว่างดำเนินการ คุณจะต้องทำคืนสิ่งที่การติดตั้งดังกล่าวได้เปลี่ยนแปลงไปก่อนที่จะดำเนินการต่อไป คุณต้องการทำคืนการเปลี่ยนแปลงดังกล่าวหรือไม่?" #. DnEz6 #: Error.ulf @@ -3916,7 +3911,7 @@ "OOO_ERROR_81\n" "LngText.text" msgid "No valid source could be found for product [2]. The Windows Installer cannot continue." -msgstr "ไม่พบแหล่งต้นทางที่ถูกต้องสำหรับผลิตภัณฑ์ [2] ตัวติดตั้งของวินโดว์สไม่สามารถทำต่อ" +msgstr "ไม่พบแหล่งต้นทางที่ถูกต้องสำหรับผลิตภัณฑ์ [2] เครื่องมือติดตั้งของวินโดวส์ไม่สามารถทำงานต่อได้" #. yJVAH #: Error.ulf @@ -3925,7 +3920,7 @@ "OOO_ERROR_82\n" "LngText.text" msgid "Installation operation completed successfully." -msgstr "การดำเนินการการติดตั้งเสร็จสมบูณ์" +msgstr "การดำเนินการติดตั้งเสร็จสมบูรณ์" #. kWcs2 #: Error.ulf @@ -3934,7 +3929,7 @@ "OOO_ERROR_83\n" "LngText.text" msgid "Installation operation failed." -msgstr "การดำเนินการการติดตั้งล้มเหลว" +msgstr "การดำเนินการติดตั้งล้มเหลว" #. NGB3n #: Error.ulf @@ -3952,7 +3947,7 @@ "OOO_ERROR_85\n" "LngText.text" msgid "You may either restore your computer to its previous state or continue the installation later. Would you like to restore?" -msgstr "คุณสามารถทำได้ทั้งการเรียกคืนคอมพิวเตอร์ของคุณไปเป็นสถานะก่อนหน้านี้ หรือดำเนินการติดตั้งต่อไปในภายหลัง คุณต้องการที่จะเรียกคืนหรือไม่?" +msgstr "คุณอาจเรียกคืนสถานะของคอมพิวเตอร์ของคุณไปเป็นสถานะก่อนหน้านี้ หรืออาจดำเนินการติดตั้งต่อไปในภายหลังก็ได้ คุณต้องการเรียกคืนหรือไม่?" #. nbuxg #: Error.ulf @@ -3961,7 +3956,7 @@ "OOO_ERROR_86\n" "LngText.text" msgid "An error occurred while writing installation information to disk. Check to make sure enough disk space is available, and click Retry, or Cancel to end the installation." -msgstr "มีข้อผิดพลาดเกิดขึ้นขณะที่เขียนข้อมูลการติดตั้งไปยังดิสก์ ตรวจสอบให้แน่ใจว่ามีพื้นทีว่างดิสก์เพียงพอ และคลิกลองอีกครั้ง หรือยกเลิกเพื่อจบการติดตั้ง" +msgstr "เกิดข้อผิดพลาดขณะเขียนข้อมูลเกี่ยวกับการติดตั้งลงในดิสก์ กรุณาตรวจสอบให้แน่ใจว่ามีเนื้อที่ว่างในดิสก์เพียงพอ แล้วคลิก 'ลองอีกครั้ง' หรือคลิก 'ยกเลิก' หากต้องการจบการติดตั้ง" #. RrjwL #: Error.ulf @@ -3970,7 +3965,7 @@ "OOO_ERROR_87\n" "LngText.text" msgid "One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible." -msgstr "ไม่พบแฟ้มหนึ่งหรือมากกว่านั้นที่ต้องการเพื่อเรียกคืนคอมพิวเตอร์ของคุณไปยังสถานะก่อนหน้า ดังนั้นการเรียกคืนสถานะจะเป็นไปไม่ได้" +msgstr "ไม่พบไฟล์อย่างน้อยหนึ่งไฟล์ที่จำเป็นต่อการเรียกคืนสถานะของคอมพิวเตอร์ของคุณเป็นสถานะก่อนหน้า ทำให้การเรียกคืนสถานะเป็นไปไม่ได้" #. 2GGnJ #: Error.ulf @@ -3979,7 +3974,7 @@ "OOO_ERROR_88\n" "LngText.text" msgid "[2] cannot install one of its required products. Contact your technical support group. {{System Error: [3].}}" -msgstr "[2] ไม่สามารถติดตั้งโปรแกรมหนึ่งในนี้ที่ต้องการ ติดต่อกลุ่มสนับสนุนทางเทคนิค {{ข้อผิดพลาดระบบ: [3].}}" +msgstr "[2] ไม่สามารถติดตั้งผลิตภัณฑ์หนึ่งที่จำเป็น กรุณาติดต่อฝ่ายเทคนิคของคุณ {{ข้อผิดพลาดระบบ: [3]}}" #. FAFxM #: Error.ulf @@ -3988,7 +3983,7 @@ "OOO_ERROR_89\n" "LngText.text" msgid "The older version of [2] cannot be removed. Contact your technical support group. {{System Error [3].}}" -msgstr "ไม่สามารถลบรุ่นเก่าของ[2] ติดต่อกลุ่มสนับสนุนทางเทคนิค{{ข้อผิดพลาดระบบ [3].}}" +msgstr "ไม่สามารถลบรุ่นเก่าของ [2] ได้ กรุณาติดต่อฝ่ายเทคนิคของคุณ {{ข้อผิดพลาดระบบ [3]}}" #. bqsp7 #: Error.ulf @@ -3997,7 +3992,7 @@ "OOO_ERROR_90\n" "LngText.text" msgid "The path [2] is not valid. Please specify a valid path." -msgstr "พาธ[2]ไม่ถูกต้อง โปรดระบุพาธที่ถูกต้อง" +msgstr "พาธ [2] ไม่ถูกต้อง โปรดระบุพาธที่ถูกต้อง" #. BdQrc #: Error.ulf @@ -4006,7 +4001,7 @@ "OOO_ERROR_91\n" "LngText.text" msgid "Out of memory. Shut down other applications before retrying." -msgstr "หน่วยความจำไม่เพียงพอ ปิดแอพพลิเคชันอื่นๆ ก่อนที่จะลองอีกครั้ง" +msgstr "หน่วยความจำไม่เพียงพอ กรุณาปิดแอปพลิเคชันอื่นๆ แล้วลองอีกครั้ง" #. 3yp9Y #: Error.ulf @@ -4015,7 +4010,7 @@ "OOO_ERROR_92\n" "LngText.text" msgid "There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume." -msgstr "ไม่มีดิสก์ในไดรฟ์[2] โปรดใส่ดิสก์และคลิกลองอีกครั้ง หรือคลิกยกเลิกเพื่อกลับไปยังส่วนที่เลือกก่อนหน้านี้" +msgstr "ไม่มีดิสก์ในไดรฟ์ [2] โปรดใส่ดิสก์แล้วคลิก 'ลองอีกครั้ง' หรือคลิก 'ยกเลิก' หากต้องการกลับไปใช้โวลุมที่เลือกก่อนหน้านี้" #. TnfBJ #: Error.ulf @@ -4024,7 +4019,7 @@ "OOO_ERROR_93\n" "LngText.text" msgid "There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume." -msgstr "ไม่มีดิสก์ในไดรฟ์[2] โปรดใส่ดิสก์และคลิกลองอีกครั้ง หรือคลิกยกเลิกเพื่อย้อนกลับไปยังไดอะล็อกที่เรียกดูและเลือกโวลุมอื่น" +msgstr "ไม่มีดิสก์ในไดรฟ์ [2] โปรดใส่ดิสก์แล้วคลิก 'ลองอีกครั้ง' หรือคลิก 'ยกเลิก' หากต้องการกลับไปยังกล่องโต้ตอบท่องดูและเลือกโวลุมอื่น" #. ESgwj #: Error.ulf @@ -4033,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 "ไม่มีโฟลเดอร์[2]อยู่ กรุณาใส่พาธที่มีโฟลเดอร์อยู่" +msgstr "ไม่มีโฟลเดอร์ [2] กรุณาป้อนพาธของโฟลเดอร์ที่มีอยู่จริง" #. p7SAc #: Error.ulf @@ -4042,7 +4037,7 @@ "OOO_ERROR_95\n" "LngText.text" msgid "You have insufficient privileges to read this folder." -msgstr "คุณมีสิทธิไม่เพียงพอที่จะอ่านโฟลเดอร์นี้" +msgstr "คุณมีสิทธิ์ไม่เพียงพอที่จะอ่านโฟลเดอร์นี้" #. e7ts6 #: Error.ulf @@ -4051,7 +4046,7 @@ "OOO_ERROR_96\n" "LngText.text" msgid "A valid destination folder for the installation could not be determined." -msgstr "ไม่สามารถกำหนดโฟลเดอร์ปลายทางที่ใช้ได้สำหรับการติดตั้งได้" +msgstr "ไม่สามารถกำหนดโฟลเดอร์ปลายทางที่ใช้การได้สำหรับติดตั้ง" #. ZFVRn #: Error.ulf @@ -4060,7 +4055,7 @@ "OOO_ERROR_97\n" "LngText.text" msgid "Error attempting to read from the source installation database: [2]." -msgstr "เกิดข้อผิดพลาดขณะพยายามอ่านฐานข้อมูลการติดตั้ง:[2]" +msgstr "เกิดข้อผิดพลาดขณะพยายามอ่านจากฐานข้อมูลการติดตั้งต้นทาง: [2]" #. BGgm9 #: Error.ulf @@ -4069,7 +4064,7 @@ "OOO_ERROR_98\n" "LngText.text" msgid "Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation." -msgstr "กำลังกำหนดการรีบูต: การเปลี่ยนชื่อไฟล์ [2] ไปเป็น [3] จะต้องรีบูตเพื่อทำให้ปฏิบัติการสมบูรณ์" +msgstr "กำลังจัดกำหนดการรีบูต: การเปลี่ยนชื่อไฟล์ [2] เป็น [3] ซึ่งต้องรีบูตเพื่อให้เสร็จสมบูรณ์" #. mtjE3 #: Error.ulf @@ -4078,7 +4073,7 @@ "OOO_ERROR_99\n" "LngText.text" msgid "Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation." -msgstr "กำลังกำหนดการรีบูต: กำลังลบไฟล์ [2] จะต้องรีบูตเพื่อทำให้ปฏิบัติการสมบูรณ์" +msgstr "กำลังจัดกำหนดการรีบูต: การลบไฟล์ [2] ซึ่งต้องรีบูตเพื่อให้เสร็จสมบูรณ์" #. iEw33 #: Error.ulf @@ -4087,7 +4082,7 @@ "OOO_ERROR_100\n" "LngText.text" msgid "Module [2] failed to register. HRESULT [3]. Contact your support personnel." -msgstr "Module [2] failed to register. HRESULT [3]. Contact your support personnel." +msgstr "โมดูล [2] ลงทะเบียนไม่สำเร็จ HRESULT [3] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. bECVQ #: Error.ulf @@ -4096,7 +4091,7 @@ "OOO_ERROR_101\n" "LngText.text" msgid "Module [2] failed to unregister. HRESULT [3]. Contact your support personnel." -msgstr "Module [2] failed to unregister. HRESULT [3]. Contact your support personnel." +msgstr "โมดูล [2] ปลดทะเบียนไม่สำเร็จ HRESULT [3] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. FWg3S #: Error.ulf @@ -4105,7 +4100,7 @@ "OOO_ERROR_102\n" "LngText.text" msgid "Failed to cache package [2]. Error: [3]. Contact your support personnel." -msgstr "ล้มเหลวในการแคชแพ็กเกจ[2] HRESULT [3] ติดต่อเจ้าหน้าที่สนับสนุน" +msgstr "แคชแพกเกจ [2] ไม่สำเร็จ Error: [3] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. bKEyX #: Error.ulf @@ -4114,7 +4109,7 @@ "OOO_ERROR_103\n" "LngText.text" msgid "Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font." -msgstr "ไม่สามารถลงทะเบียนแบบอักษร[2] ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะได้รับอนุญาตให้ติดตั้งแบบอักษร และระบบนั้นรองรับแบบอักษรนี้" +msgstr "ไม่สามารถลงทะเบียนแบบอักษร [2] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะติดตั้งแบบอักษร และระบบรองรับแบบอักษรนี้" #. G7bAP #: Error.ulf @@ -4123,7 +4118,7 @@ "OOO_ERROR_104\n" "LngText.text" msgid "Could not unregister font [2]. Verify that you have sufficient permissions to remove fonts." -msgstr "ไม่สามารถยกเลิกการลงทะเบียนแบบอักษร[2]ตรวจสอบว่าคุณได้สิทธิ์อนุญาตที่จะลบแบบอักษรได้" +msgstr "ไม่สามารถปลดทะเบียนแบบอักษร [2] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะลบแบบอักษรได้" #. LmRtG #: Error.ulf @@ -4132,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 "ไม่สามารถสร้างคีย์ลัด[2] ตรวจสอบว่ามีโฟลเดอร์ปลายทางอยู่ และคุณสามารถเข้าถึงมันได้" +msgstr "ไม่สามารถสร้างทางลัด [2] กรุณาตรวจสอบให้แน่ใจว่าโฟลเดอร์ปลายทางมีอยู่จริง และคุณสามารถเข้าถึงโฟลเดอร์ดังกล่าวได้" #. QXqrx #: Error.ulf @@ -4141,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 "ไม่ลบคีย์ลัด[2]ตรวจสอบว่ามีคีย์ลัดอยู่และคุณสามารถเข้าถึงมันได้" +msgstr "ไม่สามารถลบทางลัด [2] กรุณาตรวจสอบให้แน่ใจว่าไฟล์ทางลัดนี้มีอยู่จริง และคุณสามารถเข้าถึงไฟล์ดังกล่าวได้" #. 3MqnE #: Error.ulf @@ -4150,7 +4145,7 @@ "OOO_ERROR_107\n" "LngText.text" msgid "Could not register type library for file [2]. Contact your support personnel." -msgstr "ไม่สามารถลงทะเบียน type library สำหรับไฟล์ [2] โปรดติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถลงทะเบียนไลบรารีของชนิดสำหรับไฟล์ [2] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. jCuE6 #: Error.ulf @@ -4159,7 +4154,7 @@ "OOO_ERROR_108\n" "LngText.text" msgid "Could not unregister type library for file [2]. Contact your support personnel." -msgstr "ไม่สามารถยกเลิกการลงทะเบียนไลบรารีตัวพิมพ์สำหรับแฟ้ม[2] ติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "ไม่สามารถปลดทะเบียนไลบรารีของชนิดสำหรับไฟล์ [2] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. 4pspZ #: Error.ulf @@ -4168,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 "ไม่สามารถปรับข้อมูลแฟ้ม INI [2][3] ตรวจสอบว่ามีแฟ้มอยู่และคุณสามารถเข้าถึงมันได้" +msgstr "ไม่สามารถปรับข้อมูลไฟล์ INI [2][3] กรุณาตรวจสอบให้แน่ใจว่าไฟล์นี้มีอยู่จริง และคุณสามารถเข้าถึงไฟล์ดังกล่าวได้" #. dkhNT #: Error.ulf @@ -4177,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 "ไม่สามารถจัดกำหนดการให้แฟ้ม [2] แทนที่แฟ้ม [3] เมื่อเริ่มระบบใหม่ ตรวจสอบว่าคุณไดัรับอนุญาตในการเขียนแฟ้ม [3]" +msgstr "ไม่สามารถจัดกำหนดการให้ไฟล์ [2] แทนที่ไฟล์ [3] เมื่อเริ่มระบบใหม่ กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เขียนไฟล์ [3]" #. DDg6R #: Error.ulf @@ -4186,7 +4181,7 @@ "OOO_ERROR_111\n" "LngText.text" msgid "Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel." -msgstr "เกิดข้อผิดพลาดขณะลบตัวจัดการไดรฟ์เวอร์ ODBC,ODBC ผิดพลาด[2]: [3] ติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "เกิดข้อผิดพลาดขณะลบตัวจัดการไดรเวอร์ ODBC, ข้อผิดพลาด ODBC [2]: [3] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. FBn6s #: Error.ulf @@ -4195,7 +4190,7 @@ "OOO_ERROR_112\n" "LngText.text" msgid "Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel." -msgstr "เกิดข้อผิดพลาดขณะติดตั้งตัวจัดการไดรฟ์เวอร์ ODBC,ODBC ผิดพลาด[2]: [3] ติดต่อเจ้าหน้าที่สนับสนุนของคุณ" +msgstr "เกิดข้อผิดพลาดขณะติดตั้งตัวจัดการไดรเวอร์ ODBC, ข้อผิดพลาด ODBC [2]: [3] กรุณาติดต่อฝ่ายสนับสนุนของคุณ" #. ebBpH #: Error.ulf @@ -4204,7 +4199,7 @@ "OOO_ERROR_113\n" "LngText.text" msgid "Error removing ODBC driver [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers." -msgstr "เกิดข้อผิดพลาดในการลบไดรเวอร์ ODBC [4], ความผิดพลาด ODBC [2]: [3] ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบไดรเวอร์ ODBC" +msgstr "เกิดข้อผิดพลาดขณะลบไดรเวอร์ ODBC, ข้อผิดพลาด ODBC [2]: [3] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะลบไดรเวอร์ ODBC" #. wWeik #: Error.ulf @@ -4213,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 "เกิดข้อผิดพลาดในการติดตั้งไดรเวอร์ ODBC [4], ความผิดพลาด ODBC [2]: [3] ตรวจสอบว่าแฟ้ม [4] มีอยู่ และคุณสามารถเข้าถึงได้" +msgstr "เกิดข้อผิดพลาดขณะติดตั้งไดรเวอร์ ODBC [4], ข้อผิดพลาด ODBC [2]: [3] กรุณาตรวจสอบให้แน่ใจว่าแฟ้ม [4] มีอยู่จริง และคุณสามารถเข้าถึงแฟ้มดังกล่าวได้" #. X7EWG #: Error.ulf @@ -4222,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 "เกิดข้อผิดพลาดขณะกำหนดค่าแหล่งข้อมูล ODBC [4], ความผิดพลาด ODBC [2]: [3] ตรวจสอบว่าแฟ้ม [4] มีอยู่ และคุณสามาถเข้าถึงได้" +msgstr "เกิดข้อผิดพลาดขณะตั้งค่าแหล่งข้อมูล ODBC [4], ข้อผิดพลาด ODBC [2]: [3] กรุณาตรวจสอบให้แน่ใจว่าแฟ้ม [4] มีอยู่จริง และคุณสามารถเข้าถึงแฟ้มดังกล่าวได้" #. 6UdPx #: Error.ulf @@ -4231,7 +4226,7 @@ "OOO_ERROR_116\n" "LngText.text" msgid "Service [2] ([3]) failed to start. Verify that you have sufficient privileges to start system services." -msgstr "บริการ [2] ([3])ไม่สามารถเริ่มต้น ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะเริ่มต้นบริการของระบบ" +msgstr "บริการ [2] ([3]) ไม่สามารถเริ่มทำงานได้ กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเปิดบริการของระบบได้" #. qEDkf #: Error.ulf @@ -4240,7 +4235,7 @@ "OOO_ERROR_117\n" "LngText.text" msgid "Service [2] ([3]) could not be stopped. Verify that you have sufficient privileges to stop system services." -msgstr "บริการ [2] ([3])ไม่สามารถหยุดได้ ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะหยุดบริการของระบบ" +msgstr "บริการ [2] ([3]) ไม่สามารถหยุดได้ กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะหยุดบริการของระบบได้" #. R8sJN #: Error.ulf @@ -4249,7 +4244,7 @@ "OOO_ERROR_118\n" "LngText.text" msgid "Service [2] ([3]) could not be deleted. Verify that you have sufficient privileges to remove system services." -msgstr "บริการ [2] ([3])ไม่สามารถลบได้ ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบบริการของระบบ" +msgstr "บริการ [2] ([3]) ไม่สามารถลบได้ กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะลบบริการของระบบได้" #. 8vYFt #: Error.ulf @@ -4258,7 +4253,7 @@ "OOO_ERROR_119\n" "LngText.text" msgid "Service [2] ([3]) could not be installed. Verify that you have sufficient privileges to install system services." -msgstr "บริการ [2] ([3])ไม่สามารถติดตั้งได้ ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะติดตั้งบริการของระบบ" +msgstr "บริการ [2] ([3]) ไม่สามารถติดตั้งได้ กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะติดตั้งบริการของระบบได้" #. TFWVv #: Error.ulf @@ -4267,7 +4262,7 @@ "OOO_ERROR_120\n" "LngText.text" msgid "Could not update environment variable [2]. Verify that you have sufficient privileges to modify environment variables." -msgstr "ไม่สามาถปรับข้อมูลตัวแปรสภาวะแวดล้อม[2] พิสูจน์ว่าคุณมีสิทธิ์เพียงพอที่จะแก้ไขตัวแปรสภาวะแวดล้อม" +msgstr "ไม่สามาถปรับค่าตัวแปรสภาวะแวดล้อม [2] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเปลี่ยนค่าตัวแปรสภาวะแวดล้อมได้" #. pMovX #: Error.ulf @@ -4276,7 +4271,7 @@ "OOO_ERROR_121\n" "LngText.text" msgid "You do not have sufficient privileges to complete this installation for all users of the machine. Log on as an administrator and then retry this installation." -msgstr "คุณไม่มีสิทธิเพียงพอที่จะติดตั้งให้สมบูรณ์สำหรับผู้ใช้ทุกคนบนเครื่อง โปรดลงบันทึกเปิดหรือล็อกออนเป็นผู้ดูแลระบบหรือ administrator แล้วลองติดตั้งใหม่" +msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการติดตั้งนี้จนเสร็จสมบูรณ์สำหรับผู้ใช้ทุกคนในเครื่องได้ กรุณาเข้าระบบเป็นผู้ดูแลระบบ แล้วลองติดตั้งใหม่" #. HdDZA #: Error.ulf @@ -4285,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 "ไม่สามารถตั้งค่าความปลอดภัยแฟ้มสำหรับแฟ้ม[3] ข้อผิดพลาด: [2] ตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะเปลี่ยนแปลงการอนุญาตสิทธิ์ความปลอดภัยสำหรับแฟ้มนี้" +msgstr "ไม่สามารถตั้งค่าการรักษาความปลอดภัยสำหรับไฟล์ [3] ข้อผิดพลาด: [2] กรุณาตรวจสอบให้แน่ใจว่าคุณมีสิทธิ์เพียงพอที่จะเปลี่ยนแปลงการอนุญาตสิทธิ์ของไฟล์นี้ได้" #. GtDXr #: Error.ulf @@ -4294,7 +4289,7 @@ "OOO_ERROR_123\n" "LngText.text" msgid "Component Services (COM+ 1.0) are not installed on this computer. This installation requires Component Services in order to complete successfully. Component Services are available on Windows 2000." -msgstr "คอมพิวเตอร์เครื่องนี้ยังไม่ได้ติดตั้ง Component Services (COM+ 1.0) การติดตั้งนี้ต้องการ Component Services เพื่อจะติดตั้งได้สำเร็จสมบูรณ์ Component Services มีอยู่ในวินโดว์ส 2000" +msgstr "คอมพิวเตอร์เครื่องนี้ยังไม่ได้ติดตั้ง Component Services (COM+ 1.0) การติดตั้งนี้ต้องใช้ Component Services เพื่อจะติดตั้งได้สำเร็จสมบูรณ์ Component Services มีอยู่ในวินโดว์ส 2000" #. 7AFuq #: Error.ulf @@ -4303,7 +4298,7 @@ "OOO_ERROR_124\n" "LngText.text" msgid "Error registering COM+ application. Contact your support personnel for more information." -msgstr "เกิดข้อผิดพลาดขณะลงทะเบียนแอพพลิเคชัน COM+ ติดต่อเจ้าหน้าที่สนับสนุนของคุณเพื่อขอข้อมูลเพิ่มเติม" +msgstr "เกิดข้อผิดพลาดขณะลงทะเบียนแอปพลิเคชัน COM+ กรุณาติดต่อฝ่ายสนับสนุนของคุณเพื่อขอข้อมูลเพิ่มเติม" #. yU8as #: Error.ulf @@ -4312,7 +4307,7 @@ "OOO_ERROR_125\n" "LngText.text" msgid "Error unregistering COM+ application. Contact your support personnel for more information." -msgstr "เกิดข้อผิดพลาดขณะยกเลิกการลงทะเบียนแอพพลิเคชัน COM+ ติดต่อเจ้าหน้าที่สนับสนุนของคุณเพื่อขอข้อมูลเพิ่มเติม" +msgstr "เกิดข้อผิดพลาดขณะปลดทะเบียนแอปพลิเคชัน COM+ กรุณาติดต่อฝ่ายสนับสนุนของคุณเพื่อขอข้อมูลเพิ่มเติม" #. ewJEY #: Error.ulf @@ -4330,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 ไม่สามารถปรับข้อมูลของไฟล์ระบบ [2] เพราะว่าไฟล์ดังกล่าวถูกปกป้องโดยวินโดว์ส คุณอาจจำเป็นต้องอัพเดตระบบปฏิบัติการของคุณเพื่อให้โปรแกรมนี้ทำงานอย่างถูกต้อง {{เวอร์ชันของแพ็กเกจ: [3], เวอร์ชันที่ปกป้องของระบบปฏิบัติการ: [4]}}" +msgstr "บริการเครื่องมือติดตั้งของวินโดวส์ไม่สามารถปรับข้อมูลไฟล์ระบบ [2] ได้ เนื่องจากไฟล์ดังกล่าวถูกวินโดวส์ปกป้องไว้ คุณอาจจำเป็นต้องปรับรุ่นระบบปฏิบัติการของคุณเพื่อให้โปรแกรมนี้ทำงานได้อย่างถูกต้อง {{รุ่นของแพกเกจ: [3], รุ่นของระบบปฏิบัติการที่ปกป้อง: [4]}}" #. BQQSh #: Error.ulf @@ -4339,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 ไม่สามารถปรับข้อมูลของไฟล์ของวินโดว์สที่ได้รับการปกป้อง [2] {{เวอร์ชันของแพ็กเกจ: [3], เวอร์ชันที่ปกป้องของระบบปฏิบัติการ: [4], ข้อผิดพลาด SFP: [5]}}" +msgstr "บริการเครื่องมือติดตั้งของวินโดวส์ไม่สามารถปรับข้อมูลไฟล์ของวินโดวส์ [2] ซึ่งมีการการปกป้องไว้ {{รุ่นของแพกเกจ: [3], รุ่นของระบบปฏิบัติการที่ปกป้อง: [4], ข้อผิดพลาด SFP: [5]}}" #. PAdiR #: Error.ulf @@ -4348,7 +4343,7 @@ "OOO_ERROR_129\n" "LngText.text" msgid "This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher." -msgstr "การติดตั้งนี้ต้องการ Internet Information Server 4.0 หรือสูงกว่า ในการกำหนดค่า IIS Virtual Roots ดูให้แน่ใจว่าคุณมี IIS 4.0 หรือสูงกว่า" +msgstr "การติดตั้งนี้ต้องใช้ Internet Information Server 4.0 ขึ้นไปในการกำหนดค่า Virtual Root ของ IIS กรุณาตรวจสอบให้แน่ใจว่าคุณมี IIS 4.0 หรือสูงกว่า" #. zyh9D #: Error.ulf @@ -4357,7 +4352,7 @@ "OOO_ERROR_130\n" "LngText.text" msgid "This setup requires Administrator privileges for configuring IIS Virtual Roots." -msgstr "การติดตั้งนี้ต้องการสิทธิ์ผู้ดูแลระบบสำหรับการกำหนดค่า รูทเสมือนของIIS Virtual Roots" +msgstr "การติดตั้งนี้ต้องใช้สิทธิ์ผู้ดูแลระบบในการกำหนดค่า Virtual Root ของ IIS" #. egG4o #: Error.ulf @@ -4366,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 "ติดตั้ง [2] ซึ่งเป็นความต้องการขั้นต่ำไม่สำเร็จ คุณอาจต้องติดตั้งแพกเกจดังกล่าวเองจากไซต์ของไมโครซอฟท์ เพื่อที่จะสามารถเรียกทำงานผลิตภัณฑ์นี้ได้ [3]" #. oeCq9 #: LaunchCo.ulf @@ -4375,7 +4370,7 @@ "OOO_LAUNCH_1\n" "LngText.text" msgid "The Installation Wizard cannot be run properly because you are logged in as a user without sufficient administrator rights for this system." -msgstr "ตัวช่วยการติดตั้งไม่สามารถทำงานอย่างเหมาะสม เพราะคุณไม่ได้เข้าระบบแบบใช้สิทธิ์ผู้ดูแลระบบสำหรับระบบนี้" +msgstr "เครื่องมือช่วยติดตั้งไม่สามารถทำงานได้อย่างถูกต้อง เนื่องจากคุณเข้าระบบในนามของผู้ใช้ที่ไม่มีสิทธิ์ดูแลระบบเพียงพอสำหรับระบบนี้" #. CmjDD #: LaunchCo.ulf @@ -4384,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 @@ -4393,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] บนวินโดวส์ 8.1 จะต้องติดตั้งรุ่นอัปเดตของเดือนเมษายน 2557 (MS KB 2919355) เป็นอย่างต่ำ" #. 9rCtE #: Property.ulf @@ -4411,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 @@ -4420,7 +4415,7 @@ "OOO_ARPURLINFOABOUTTEMPLATE\n" "LngText.text" msgid "https://www.libreoffice.org/" -msgstr "" +msgstr "https://www.libreoffice.org/" #. qAVKA #: Property.ulf @@ -4429,7 +4424,7 @@ "OOO_ARPURLUPDATEINFOTEMPLATE\n" "LngText.text" msgid "https://www.libreoffice.org/download" -msgstr "" +msgstr "https://www.libreoffice.org/download" #. kSGwn #: Property.ulf @@ -4447,7 +4442,7 @@ "OOO_STR_EDIT\n" "LngText.text" msgid "~Edit" -msgstr "~แก้ไข" +msgstr "แ~ก้ไข" #. GVrFd #: Property.ulf @@ -4456,7 +4451,7 @@ "OOO_STR_MS_WORD_DOCUMENT\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "เอกสารไมโครซอฟต์เวิร์ด" +msgstr "เอกสารไมโครซอฟท์เวิร์ด" #. PX5sA #: Property.ulf @@ -4474,7 +4469,7 @@ "OOO_STR_MS_EXCEL_WORKSHEET\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "ตารางทำการไมโครซอฟท์เอ็กเซล" +msgstr "ตารางคำนวณไมโครซอฟท์เอ็กเซล" #. sz9Ca #: Property.ulf @@ -4510,7 +4505,7 @@ "OOO_STR_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "การแสดงไมโครซอฟท์เพาเวอร์พอยนต์" +msgstr "การแสดงของไมโครซอฟท์เพาเวอร์พอยนต์" #. UGGXo #: Property.ulf @@ -4519,7 +4514,7 @@ "OOO_STR_INSTALLATION_WIZARD\n" "LngText.text" msgid "Installation Wizard" -msgstr "ตัวช่วยการติดตั้ง" +msgstr "เครื่องมือช่วยติดตั้ง" #. 6Mr3P #: RadioBut.ulf @@ -4528,7 +4523,7 @@ "OOO_RADIOBUTTON_1\n" "LngText.text" msgid "{&DialogDefaultBold}&Modify" -msgstr "" +msgstr "{&DialogDefaultBold}&ปรับเปลี่ยน" #. AGLAj #: RadioBut.ulf @@ -4537,7 +4532,7 @@ "OOO_RADIOBUTTON_2\n" "LngText.text" msgid "{&DialogDefaultBold}Re&pair" -msgstr "" +msgstr "{&DialogDefaultBold}ซ่&อมแซม" #. wCZDY #: RadioBut.ulf @@ -4546,7 +4541,7 @@ "OOO_RADIOBUTTON_3\n" "LngText.text" msgid "{&DialogDefaultBold}&Remove" -msgstr "" +msgstr "{&DialogDefaultBold}&ลบออก" #. GGfjA #: RadioBut.ulf @@ -4555,7 +4550,7 @@ "OOO_RADIOBUTTON_4\n" "LngText.text" msgid "{&DialogDefaultBold}&Typical" -msgstr "" +msgstr "{&DialogDefaultBold}แบบ&ปกติ" #. e8DR4 #: RadioBut.ulf @@ -4564,7 +4559,7 @@ "OOO_RADIOBUTTON_5\n" "LngText.text" msgid "{&DialogDefaultBold}Cu&stom" -msgstr "" +msgstr "{&DialogDefaultBold}แบบ&กำหนดเอง" #. WaaRd #: RadioBut.ulf @@ -4573,7 +4568,7 @@ "OOO_RADIOBUTTON_6\n" "LngText.text" msgid "I &do not accept the terms in the license agreement" -msgstr "ฉัน&ไม่ยอมรับข้อตกลงสัญญาอนุญาตใช้งาน" +msgstr "ฉันไ&ม่ยอมรับข้อตกลงสัญญาอนุญาต" #. uqyYS #: RadioBut.ulf @@ -4582,7 +4577,7 @@ "OOO_RADIOBUTTON_7\n" "LngText.text" msgid "I &accept the terms in the license agreement" -msgstr "ฉัน&ยอมรับข้อตกลงสัญญาอนุญาตใช้งาน" +msgstr "ฉัน&ยอมรับข้อตกลงสัญญาอนุญาต" #. TUuwd #: RadioBut.ulf @@ -4591,7 +4586,7 @@ "OOO_RADIOBUTTON_8\n" "LngText.text" msgid "&Anyone who uses this computer (all users)" -msgstr "&ใครก็ตามที่ใช้คอมพิวเตอร์นี้ (ผู้ใช้ทุกคน)" +msgstr "ใ&ครก็ตามที่ใช้คอมพิวเตอร์นี้ (ผู้ใช้ทุกคน)" #. 8ymTL #: RadioBut.ulf @@ -4600,7 +4595,7 @@ "OOO_RADIOBUTTON_9\n" "LngText.text" msgid "Only for &me ([USERNAME])" -msgstr "สำหรับ&ฉันเท่านั้น ([USERNAME])" +msgstr "สำหรับฉัน ([USERNAME]) เ&ท่านั้น" #. FDe7x #: RadioBut.ulf @@ -4609,7 +4604,7 @@ "OOO_RADIOBUTTON_10\n" "LngText.text" msgid "&Close the applications and attempt to restart them." -msgstr "" +msgstr "ปิ&ดแอปพลิเคชันแล้วพยายามเรียกใหม่" #. T4DzH #: RadioBut.ulf @@ -4618,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 @@ -4627,7 +4622,7 @@ "OOO_UITEXT_1\n" "LngText.text" msgid "bytes" -msgstr "ไบต์ " +msgstr "ไบต์" #. jEifK #: UIText.ulf @@ -4636,7 +4631,7 @@ "OOO_UITEXT_2\n" "LngText.text" msgid "GB" -msgstr "กิกะไบต์" +msgstr "GB" #. VwUAL #: UIText.ulf @@ -4645,7 +4640,7 @@ "OOO_UITEXT_3\n" "LngText.text" msgid "KB" -msgstr "กิโลไบต์" +msgstr "KB" #. vgAjF #: UIText.ulf @@ -4654,7 +4649,7 @@ "OOO_UITEXT_4\n" "LngText.text" msgid "MB" -msgstr "เมกะไบต์" +msgstr "MB" #. r9k3a #: UIText.ulf @@ -4663,7 +4658,7 @@ "OOO_UITEXT_5\n" "LngText.text" msgid "This feature will not be available." -msgstr "คุณลักษณะนี้จะไม่มีอยู่" +msgstr "คุณลักษณะนี้จะไม่มีให้ใช้งาน" #. r3Efh #: UIText.ulf @@ -4672,7 +4667,7 @@ "OOO_UITEXT_6\n" "LngText.text" msgid "This feature will be installed when required." -msgstr "คุณลักษณะนี้จะมีการติดตั้งเมื่อต้องการ" +msgstr "คุณลักษณะนี้จะมีการติดตั้งเมื่อต้องการใช้" #. 26Mpo #: UIText.ulf @@ -4681,7 +4676,7 @@ "OOO_UITEXT_7\n" "LngText.text" msgid "This feature, and all subfeatures, will be installed to run from the CD." -msgstr "คุณลักษณะนี้ และคุณลักษณะย่อยทั้งหมด จะถูกติดตั้งให้เรียกทำงานจากซีดี" +msgstr "คุณลักษณะนี้และคุณลักษณะย่อยทั้งหมดจะถูกติดตั้งให้เรียกทำงานจากซีดี" #. bCeK7 #: UIText.ulf @@ -4690,7 +4685,7 @@ "OOO_UITEXT_8\n" "LngText.text" msgid "This feature, and all subfeatures, will be installed on local hard drive." -msgstr "คุณลักษณะนี้ และคุณลักษณะย่อยทั้งหมด จะถูกติดตั้งเพื่อเรียกทำงานจากเครื่อง " +msgstr "คุณลักษณะนี้และคุณลักษณะย่อยทั้งหมดจะถูกติดตั้งลงในฮาร์ดไดรฟ์ของเครื่อง" #. pDASu #: UIText.ulf @@ -4699,7 +4694,7 @@ "OOO_UITEXT_9\n" "LngText.text" msgid "This feature, and all subfeatures, will be installed to run from the network." -msgstr "คุณลักษณะนี้ และคุณลักษณะย่อยทั้งหมด จะถูกติดตั้งเพื่อเรียกทำงานจากเน็ตเวิร์ก " +msgstr "คุณลักษณะนี้และคุณลักษณะย่อยทั้งหมดจะถูกติดตั้งให้เรียกทำงานจากเครือข่าย" #. TxGgr #: UIText.ulf @@ -4717,7 +4712,7 @@ "OOO_UITEXT_11\n" "LngText.text" msgid "This feature will be installed on local hard drive." -msgstr "คุณลักษณะนี้จะถูกติดตั้งเพื่อเรียกทำงานจากเครื่อง" +msgstr "คุณลักษณะนี้จะถูกติดตั้งลงในฮาร์ดไดรฟ์ของเครื่อง" #. AUGeW #: UIText.ulf @@ -4726,7 +4721,7 @@ "OOO_UITEXT_12\n" "LngText.text" msgid "This feature will be installed to run from network." -msgstr "คุณลักษณะนี้จะถูกติดตั้งเพื่อเรียกทำงานจากเน็ตเวิร์ก " +msgstr "คุณลักษณะนี้จะถูกติดตั้งให้เรียกทำงานจากเครือข่าย" #. 8CXdg #: UIText.ulf @@ -4735,7 +4730,7 @@ "OOO_UITEXT_13\n" "LngText.text" msgid "Fldr|New Folder" -msgstr "โฟลเดอร์|โฟลเดอร์ใหม่" +msgstr "Fldr|โฟลเดอร์ใหม่" #. 9V38D #: UIText.ulf @@ -4744,7 +4739,7 @@ "OOO_UITEXT_14\n" "LngText.text" msgid "This feature will remain uninstalled." -msgstr "คุณลักษณะนี้จะยังคงยกเลิกการติดตั้ง" +msgstr "คุณลักษณะนี้จะยังไม่ติดตั้ง" #. 9qKMG #: UIText.ulf @@ -4753,7 +4748,7 @@ "OOO_UITEXT_15\n" "LngText.text" msgid "This feature will be set to be installed when required." -msgstr "คุณลักษณะนี้จะถูกตั้งให้เป็นติดตั้งเมื่อต้องการ" +msgstr "คุณลักษณะนี้จะถูกกำหนดให้ติดตั้งเมื่อต้องการใช้" #. o9isw #: UIText.ulf @@ -4771,7 +4766,7 @@ "OOO_UITEXT_17\n" "LngText.text" msgid "This feature will be installed on the local hard drive." -msgstr "คุณลักษณะนี้จะถูกติดตั้งเพื่อเรียกทำงานจากเครื่อง " +msgstr "คุณลักษณะนี้จะถูกติดตั้งลงในฮาร์ดไดรฟ์ของเครื่อง" #. cyGEM #: UIText.ulf @@ -4780,7 +4775,7 @@ "OOO_UITEXT_18\n" "LngText.text" msgid "This feature will be installed to run from the network." -msgstr "คุณลักษณะนี้จะถูกติดตั้งเพื่อเรียกทำงานจากเน็ตเวิร์ก " +msgstr "คุณลักษณะนี้จะถูกติดตั้งให้เรียกทำงานจากเครือข่าย" #. Qz6jp #: UIText.ulf @@ -4789,7 +4784,7 @@ "OOO_UITEXT_19\n" "LngText.text" msgid "This feature will become unavailable." -msgstr "คุณลักษณะนี้จะเปลี่ยนเป็นใช้ไม่ได้" +msgstr "คุณลักษณะนี้จะถูกถอดถอน" #. EjtVV #: UIText.ulf @@ -4798,7 +4793,7 @@ "OOO_UITEXT_20\n" "LngText.text" msgid "Will be installed when required." -msgstr "จะถูกติดตั้งเมื่อต้องการ" +msgstr "จะถูกติดตั้งเมื่อต้องการใช้" #. BVwPN #: UIText.ulf @@ -4807,7 +4802,7 @@ "OOO_UITEXT_21\n" "LngText.text" msgid "This feature will be available to run from CD." -msgstr "คุณลักษณะนี้จะมีเพื่อเรียกทำงานจากซีดี" +msgstr "คุณลักษณะนี้จะใช้เรียกทำงานจากซีดี" #. yejCc #: UIText.ulf @@ -4816,7 +4811,7 @@ "OOO_UITEXT_22\n" "LngText.text" msgid "This feature will be installed on your local hard drive." -msgstr "คุณลักษณะนี้จะถูกติดตั้งเพื่อเรียกทำงานจากเครื่องของคุณ" +msgstr "คุณลักษณะนี้จะถูกติดตั้งลงในฮาร์ดไดรฟ์ในเครื่องของคุณ" #. NUAL8 #: UIText.ulf @@ -4825,7 +4820,7 @@ "OOO_UITEXT_23\n" "LngText.text" msgid "This feature will be available to run from the network." -msgstr "คุณลักษณะนี้จะมีเพื่อเรียกทำงานจากเน็ตเวิร์ก " +msgstr "คุณลักษณะนี้จะใช้เรียกทำงานจากเครือข่าย" #. KLMrs #: UIText.ulf @@ -4834,7 +4829,7 @@ "OOO_UITEXT_24\n" "LngText.text" msgid "This feature will be uninstalled completely, and you won't be able to run it from CD." -msgstr "คุณลักษณะนี้จะยกเลิกการติดตั้งอย่างสมบูรณ์ และคุณไม่สามารถเรียกทำงานจากซีดี" +msgstr "คุณลักษณะนี้จะถอดถอนอย่างสมบูรณ์ และคุณจะไม่สามารถเรียกทำงานจากซีดีได้" #. ATGde #: UIText.ulf @@ -4843,7 +4838,7 @@ "OOO_UITEXT_25\n" "LngText.text" msgid "This feature was run from the CD but will be set to be installed when required." -msgstr "คุณลักษณะนี้คือเรียกทำงานจากซีดีแต่จะถูกตั้งเป็นติดตั้งเมื่อต้องการ" +msgstr "คุณลักษณะนี้เคยเรียกทำงานจากซีดี แต่จะถูกกำหนดให้ติดตั้งเมื่อต้องการใช้" #. Ce3o2 #: UIText.ulf @@ -4852,7 +4847,7 @@ "OOO_UITEXT_26\n" "LngText.text" msgid "This feature will continue to be run from the CD" -msgstr "คุณลักษณะนี้จะเป็นเรียกทำงานจากซีดีต่อไป" +msgstr "คุณลักษณะนี้จะเรียกทำงานจากซีดีต่อไป" #. vtfBk #: UIText.ulf @@ -4861,7 +4856,7 @@ "OOO_UITEXT_27\n" "LngText.text" msgid "This feature was run from the CD but will be installed on the local hard drive." -msgstr "คุณลักษณะนี้คือเรียกทำงานจากซีดีแต่จะถูกตั้งเป็นติดตั้งบนเครื่อง" +msgstr "คุณลักษณะนี้เคยเรียกทำงานจากซีดี แต่จะติดตั้งลงในฮาร์ดไดรฟ์ในเครื่อง" #. NTbAF #: UIText.ulf @@ -4870,7 +4865,7 @@ "OOO_UITEXT_28\n" "LngText.text" msgid "This feature frees up [1] on your hard drive." -msgstr "คุณลักษณะนี้สร้างพื้นที่ว่าง [1] บนฮาร์ดไดรฟ์ของคุณ" +msgstr "คุณลักษณะนี้เพิ่มเนื้อที่ว่าง [1] ในฮาร์ดไดรฟ์ของคุณ" #. oJ7mG #: UIText.ulf @@ -4879,7 +4874,7 @@ "OOO_UITEXT_29\n" "LngText.text" msgid "This feature requires [1] on your hard drive." -msgstr "คุณลักษณะนี้ต้องการ[1]บนเครื่องของคุณ" +msgstr "คุณลักษณะนี้ต้องการเนื้อที่ [1] ในฮาร์ดไดรฟ์ของคุณ" #. FBJDk #: UIText.ulf @@ -4888,7 +4883,7 @@ "OOO_UITEXT_30\n" "LngText.text" msgid "Compiling cost for this feature..." -msgstr "กำลังรวบรวมต้นทุนสำหรับคุณลักษณะนี้..." +msgstr "กำลังประมวลความต้องการของคุณลักษณะนี้..." #. ELDvk #: UIText.ulf @@ -4897,7 +4892,7 @@ "OOO_UITEXT_31\n" "LngText.text" msgid "This feature will be completely removed." -msgstr "คุณลักษณะนี้จะถูกลบอย่างสมบูรณ์" +msgstr "คุณลักษณะนี้จะถูกถอดถอนอย่างสมบูรณ์" #. xdW8B #: UIText.ulf @@ -4906,7 +4901,7 @@ "OOO_UITEXT_32\n" "LngText.text" msgid "This feature will be removed from your local hard drive but will be set to be installed when required." -msgstr "คุณลักษณะนี้จะถูกลบจากเครื่องของคุณแต่จะถูกตั้งเป็นติดตั้งเมื่อต้องการ" +msgstr "คุณลักษณะนี้จะถูกถอดถอนออกจากฮาร์ดไดรฟ์ของคุณ แต่จะกำหนดไว้ให้ติดตั้งเมื่อต้องการใช้" #. MgAtM #: UIText.ulf @@ -4915,7 +4910,7 @@ "OOO_UITEXT_33\n" "LngText.text" msgid "This feature will be removed from your local hard drive but will still be available to run from CD." -msgstr "คุณลักษณะนี้จะถูกลบจากฮาร์ดดิสก์แต่จะยังมีให้เรียกทำงานจากซีดี" +msgstr "คุณลักษณะนี้จะถูกถอดถอนออกจากฮาร์ดไดรฟ์ของคุณ แต่จะยังมีให้เรียกทำงานจากซีดีได้" #. cwcP2 #: UIText.ulf @@ -4924,7 +4919,7 @@ "OOO_UITEXT_34\n" "LngText.text" msgid "This feature will remain on your local hard drive." -msgstr "คุณลักษณะนี้จะยังคงอยู่บนเครื่องของคุณ" +msgstr "คุณลักษณะนี้จะยังคงอยู่ในฮาร์ดไดรฟ์ของคุณต่อไป" #. VMpij #: UIText.ulf @@ -4933,7 +4928,7 @@ "OOO_UITEXT_35\n" "LngText.text" msgid "This feature will be removed from your local hard drive, but will be still available to run from the network." -msgstr "คุณลักษณะนี้จะถูกลบจากเครื่องของคุณ แต่จะยังคงมีอยู่เพื่อเรียกทำงานจากเน็ตเวิร์ก " +msgstr "คุณลักษณะนี้จะถูกถอดถอนออกจากฮาร์ดไดรฟ์ของคุณ แต่จะยังมีให้เรียกทำงานจากเครือข่ายได้" #. ryj7R #: UIText.ulf @@ -4942,7 +4937,7 @@ "OOO_UITEXT_36\n" "LngText.text" msgid "This feature will be uninstalled completely, and you won't be able to run it from the network." -msgstr "คุณลักษณะนี้จะถูกยกเลิกการติดตั้งอย่างสมบูรณ์ และคุณไม่สามารถเรียกทำงานจากเน็ตเวิร์กได้ " +msgstr "คุณลักษณะนี้จะถูกถอดถอนอย่างสมบูรณ์ และคุณจะไม่สามารถเรียกทำงานจากเครือข่ายได้" #. ZGYT7 #: UIText.ulf @@ -4951,7 +4946,7 @@ "OOO_UITEXT_37\n" "LngText.text" msgid "This feature was run from the network but will be installed when required." -msgstr "คุณลักษณะนี้คือเรียกทำงานจากเน็ตเวิร์กแต่จะถูกติดตั้งเมื่อต้องการ" +msgstr "คุณลักษณะนี้เคยเรียกทำงานจากเครือข่าย แต่จะถูกกำหนดให้ติดตั้งเมื่อต้องการใช้" #. fDT9F #: UIText.ulf @@ -4960,7 +4955,7 @@ "OOO_UITEXT_38\n" "LngText.text" msgid "This feature was run from the network but will be installed on the local hard drive." -msgstr "คุณลักษณะนี้คือเรียกทำงานจากเน็ตเวิร์กแต่จะถูกติดตั้งบนเครื่อง" +msgstr "คุณลักษณะนี้เคยเรียกทำงานจากเครือข่าย แต่จะถูกติดตั้งลงในฮาร์ดไดรฟ์ในเครื่อง" #. bMoyv #: UIText.ulf @@ -4969,7 +4964,7 @@ "OOO_UITEXT_39\n" "LngText.text" msgid "This feature will continue to be run from the network" -msgstr "คุณลักษณะนี้จะเป็นเรียกทำงานจาก เน็ตเวิร์กต่อไป" +msgstr "คุณลักษณะนี้จะยังคงเรียกทำงานจากเครือข่ายต่อไป" #. hVVmF #: UIText.ulf @@ -4978,7 +4973,7 @@ "OOO_UITEXT_40\n" "LngText.text" msgid "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive." -msgstr "คุณลักษณะนี้สร้างพื้นที่ว่าง [1] บนฮาร์ดไดรฟ์ของคุณ มันมี [2] ของ [3] คุณลักษณะย่อยที่ถูกเลือก คุณลักษณะย่อยนี้สร้างพื้นที่ว่าง [4] บนฮาร์ดไดรฟ์ของคุณ" +msgstr "คุณลักษณะนี้เพิ่มเนื้อที่ว่าง [1] ในฮาร์ดไดรฟ์ของคุณ โดยมีการเลือกคุณลักษณะย่อยไว้ [2] จาก [3] รายการ คุณลักษณะย่อยดังกล่าวเพิ่มเนื้อที่ว่าง [4] ในฮาร์ดไดรฟ์ของคุณ" #. kQxfM #: UIText.ulf @@ -4987,7 +4982,7 @@ "OOO_UITEXT_41\n" "LngText.text" msgid "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive." -msgstr "คุณลักษณะนี้สร้างพื้นที่ว่าง [1] บนฮาร์ดไดรฟ์ของคุณ มันมี [2] ของ [3] คุณลักษณะย่อยที่ถูกเลือก คุณลักษณะย่อยนี้ต้องการ [4] บนฮาร์ดไดรฟ์ของคุณ" +msgstr "คุณลักษณะนี้เพิ่มเนื้อที่ว่าง [1] ในฮาร์ดไดรฟ์ของคุณ โดยมีการเลือกคุณลักษณะย่อยไว้ [2] จาก [3] รายการ คุณลักษณะย่อยดังกล่าวต้องการเนื้อที่ [4] ในฮาร์ดไดรฟ์ของคุณ" #. 8N7Ea #: UIText.ulf @@ -4996,7 +4991,7 @@ "OOO_UITEXT_42\n" "LngText.text" msgid "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive." -msgstr "คุณลักษณะนี้ต้องการ [1] บนฮาร์ดไดรฟ์ของคุณ มันมี [2] ของ [3] คุณลักษณะย่อยที่ถูกเลือก คุณลักษณะย่อยนี้สร้างพื้นที่ว่าง [4] บนฮาร์ดไดรฟ์ของคุณ" +msgstr "คุณลักษณะนี้ต้องการเนื้อที่ [1] ในฮาร์ดไดรฟ์ของคุณ โดยมีการเลือกคุณลักษณะย่อยไว้ [2] จาก [3] รายการ คุณลักษณะย่อยดังกล่าวเพิ่มเนื้อที่ว่าง [4] ในฮาร์ดไดรฟ์ของคุณ" #. LTMBw #: UIText.ulf @@ -5005,7 +5000,7 @@ "OOO_UITEXT_43\n" "LngText.text" msgid "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive." -msgstr "คุณลักษณะนี้ต้องการพื้นที่ว่าง [1] บนฮาร์ดไดรฟ์ของคุณ มันมี [2] ของ [3] คุณลักษณะย่อยที่ถูกเลือก คุณลักษณะย่อยนี้ต้องการพื้นที่ว่าง [4] บนฮาร์ดไดรฟ์ของคุณ" +msgstr "คุณลักษณะนี้ต้องการเนื้อที่ [1] ในฮาร์ดไดรฟ์ของคุณ โดยมีการเลือกคุณลักษณะย่อยไว้ [2] จาก [3] รายการ คุณลักษณะย่อยดังกล่าวต้องการเนื้อที่ [4] ในฮาร์ดไดรฟ์ของคุณ" #. vmZfv #: UIText.ulf @@ -5014,7 +5009,7 @@ "OOO_UITEXT_44\n" "LngText.text" msgid "Time remaining: {[1] min }[2] sec" -msgstr "เวลาคงเหลือ: {[1] นาที }[2] วินาที" +msgstr "ใช้เวลาอีก: {[1] นาที }[2] วินาที" #. uFPAD #: UIText.ulf diff -Nru libreoffice-7.3.4/translations/source/th/sc/messages.po libreoffice-7.3.5/translations/source/th/sc/messages.po --- libreoffice-7.3.4/translations/source/th/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542025149.000000\n" #. kBovX @@ -25884,97 +25884,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26363,157 +26363,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "จัดเรียง" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "สี" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "เส้นแนว" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_ภาษา" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Review" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ความคิดเห็น" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "มุมมอง" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "แก้ไข" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "จัดเรียง" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "มุมมอง" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "จัดกลุ่ม" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "แบบอักษร" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "การปรับแนว" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "มุมมอง" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "แทรก" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "สื่อ" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "กรอบ" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "จัดเรียง" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "เส้นแนว" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/th/sd/messages.po libreoffice-7.3.5/translations/source/th/sd/messages.po --- libreoffice-7.3.4/translations/source/th/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-31 21:49+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542025150.000000\n" #. WDjkB @@ -4247,109 +4247,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7221,109 +7221,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/sw/messages.po libreoffice-7.3.5/translations/source/th/sw/messages.po --- libreoffice-7.3.4/translations/source/th/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542196010.000000\n" #. v3oJv @@ -10763,20 +10763,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ลักษณะ" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14335,38 +14335,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~กำหนด" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "เรียกดู..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14376,31 +14376,31 @@ "ใช้ปุ่มเบราส์เพื่อเลือกไฟล์ฐานข้อมูลที่ต้องการ" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20685,111 +20685,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "เรียกดู..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "เรียกดู..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22965,50 +22965,50 @@ msgstr "วัตถุ" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ชนิด" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr "ตัวเลือก" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "ตัดคำและวางข้อความ" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "เชื่อมโยงพิเศษ" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "เส้นขอบ" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "พื้นที่" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "ความโปร่งแสง" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "แมโคร" @@ -27884,7 +27884,7 @@ msgstr "ปรับข้อมูล" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/th/vcl/messages.po libreoffice-7.3.5/translations/source/th/vcl/messages.po --- libreoffice-7.3.4/translations/source/th/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/th/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2022-03-31 21:50+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542025155.000000\n" #. k5jTM @@ -2347,170 +2347,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "กำหนดเอง" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "โดย" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "แผ่นพับ" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/chart2/messages.po libreoffice-7.3.5/translations/source/ti/chart2/messages.po --- libreoffice-7.3.4/translations/source/ti/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3611,7 +3611,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/cui/messages.po libreoffice-7.3.5/translations/source/ti/cui/messages.po --- libreoffice-7.3.4/translations/source/ti/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17167,176 +17167,152 @@ msgid "Automatic" msgstr "" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/dbaccess/messages.po libreoffice-7.3.5/translations/source/ti/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ti/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3330,73 +3330,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ክፈት" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3404,7 +3404,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/extensions/messages.po libreoffice-7.3.5/translations/source/ti/extensions/messages.po --- libreoffice-7.3.4/translations/source/ti/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -292,538 +292,526 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(ዝተመረፀ)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ጠጠው ኣብል" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "መተክኢ" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ውድቀት" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/fpicker/messages.po libreoffice-7.3.5/translations/source/ti/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ti/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,56 +213,56 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ናይቲ ፋይል ሽም" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/sc/messages.po libreoffice-7.3.5/translations/source/ti/sc/messages.po --- libreoffice-7.3.4/translations/source/ti/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25370,97 +25370,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25829,146 +25829,146 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "ቪው" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "ኣስተካክል" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "ቪው" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "ፊደል" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr " ገፅ አቀማምጣ " #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "ቪው" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "ኣእተወ" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ti/sd/messages.po libreoffice-7.3.5/translations/source/ti/sd/messages.po --- libreoffice-7.3.4/translations/source/ti/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4172,109 +4172,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7068,109 +7068,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/sw/messages.po libreoffice-7.3.5/translations/source/ti/sw/messages.po --- libreoffice-7.3.4/translations/source/ti/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10512,19 +10512,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13990,37 +13990,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14028,31 +14028,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20145,109 +20145,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22393,49 +22393,49 @@ msgstr "" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "ዓይነት" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "መማረፂታት" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "መዋሰኒታት" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "ስፍሓት" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "መጠን ..." #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27147,7 +27147,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ti/vcl/messages.po libreoffice-7.3.5/translations/source/ti/vcl/messages.po --- libreoffice-7.3.4/translations/source/ti/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ti/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2327,169 +2327,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/chart2/messages.po libreoffice-7.3.5/translations/source/tn/chart2/messages.po --- libreoffice-7.3.4/translations/source/tn/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3700,7 +3700,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/cui/messages.po libreoffice-7.3.5/translations/source/tn/cui/messages.po --- libreoffice-7.3.4/translations/source/tn/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17566,176 +17566,152 @@ msgid "Automatic" msgstr "Tsamaiso" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/dbaccess/messages.po libreoffice-7.3.5/translations/source/tn/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/tn/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3399,74 +3399,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Gotswa mokwalo" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Bula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3474,7 +3474,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/extensions/messages.po libreoffice-7.3.5/translations/source/tn/extensions/messages.po --- libreoffice-7.3.4/translations/source/tn/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -303,557 +303,545 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Kago" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Maemo (khutshwane)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Maemo (khutshwane)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Maemo (khutshwane)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Maemo (boleele)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Kgetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Letlha la jaanog" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "E-e/Nyaya" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Eya" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Ema" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Sepe" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Nngwe" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Tsamaisomoja" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Tsamaisomolema" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Pa~lelo" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Go siame" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Phimola" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Thuso" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Mela e le mengwe" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Sepe" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Tsamaisomoja" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Tsamaisomolema" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Bophara" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Molema bogare" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Moja bogare" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Godimo kago" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Tlase kago" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Bogare" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Busetsa" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Wisa" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "E-e/Nyaya" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Lekanya go mola" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Molema-go-moja" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Moja-go-molema" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Ka metlha" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Go Temana" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Jaaka sediragatsi" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Go Kageletso" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Go Sediragatsi" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/fpicker/messages.po libreoffice-7.3.5/translations/source/tn/fpicker/messages.po --- libreoffice-7.3.4/translations/source/tn/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -211,61 +211,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Faele leina:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Mofuta wa ~faele" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Bala-fela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Boloka ka lefo~kopheto" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Tsamaiso ya koketso ya leina l faele" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Kwala dipeo tsa ~sekgaoganyi" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/sc/messages.po libreoffice-7.3.5/translations/source/tn/sc/messages.po --- libreoffice-7.3.4/translations/source/tn/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26176,97 +26176,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26654,156 +26654,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Rulaganya" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Mmala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Tshwaraganya" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Puo" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "~Ditshwaelo" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Tebo" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Kwala" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Rulaganya" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Tebo" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Ditlhopha" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Mokwalo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Thulaganyo" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Tebo" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "~Tsenya" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Kageletso" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Rulaganya" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Tshwaraganya" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/tn/sd/messages.po libreoffice-7.3.5/translations/source/tn/sd/messages.po --- libreoffice-7.3.4/translations/source/tn/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4264,109 +4264,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7217,109 +7217,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/sw/messages.po libreoffice-7.3.5/translations/source/tn/sw/messages.po --- libreoffice-7.3.4/translations/source/tn/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10811,20 +10811,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Mokgwa" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14405,37 +14405,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Batla..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14443,31 +14443,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20746,111 +20746,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Batla..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Batla..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23038,50 +23038,50 @@ msgstr "Sediriswa" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Thaepa" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Dikgetho" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Tshwaraganokgolo" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 #, fuzzy msgctxt "objectdialog|borders" msgid "Borders" msgstr "Melelwane " #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Lefelo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ponagalo" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27970,7 +27970,7 @@ msgstr "Rulaganya" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tn/vcl/messages.po libreoffice-7.3.5/translations/source/tn/vcl/messages.po --- libreoffice-7.3.4/translations/source/tn/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tn/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2354,171 +2354,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Tlwaelo 1" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ka" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Bro~chure" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tr/chart2/messages.po libreoffice-7.3.5/translations/source/tr/chart2/messages.po --- libreoffice-7.3.4/translations/source/tr/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" -"PO-Revision-Date: 2022-03-08 08:14+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-03-11 14:07+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1550864211.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "Sütun ve Çizgi grafik türünde çizgi sayılarını ayarlar." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Temel bir çizelge türü seçin." diff -Nru libreoffice-7.3.4/translations/source/tr/cui/messages.po libreoffice-7.3.5/translations/source/tr/cui/messages.po --- libreoffice-7.3.4/translations/source/tr/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-05-18 09:18+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1559121783.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Otomatik" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaksi" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Yüksek Karşıtlık" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Klasik" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Araç çubuklarındaki ve iletişim pencerelerindeki simge biçemini seçin." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "_Simge biçimi:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Eklenti aracılığıyla daha fazla simge teması ekleyin" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Simge Biçemi" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Yeniden başlatmayı gerektirir" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Dona_nım hızlandırma kullan" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Ekran görüntüsünü iyileştirmek için doğrudan grafik görüntüleme bağdaştırıcısının donanım özelliklerine erişir." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Yumuşatma kullan" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Desteklendiğinde, grafikler için örtüşme önlemeyi etkinleştirebilir veya kapatabilirsiniz. Örtüşme önleme etkinken, çoğu grafik nesnesinin görüntüsü daha yumuşak ve daha az yapay görünür." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Tüm gerçeklemeler için Skia kullan" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Skia yazılım gerçeklemesini zorla" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Yeniden başlatma gerektirir. Bunu etkinleştirmek, grafik sürücülerinin kullanılmasını önleyecektir." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia şu anda etkin." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia şu anda devre dışı." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Grafik Çıktısı" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Yazı tipleri önizlemesini göster" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 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 "İlgili yazı tipinde seçilebilir yazı tiplerini görüntüler, örneğin, Biçimlendirme çubuğundaki Yazı Tipi kutusundaki yazı tipleri." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Ekran yazı tipi yumuşatma" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Metnin ekranda görünümünü yumuşatmak için seçin." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "şurada_n:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Kenar yumuşatma uygulanacak en küçük yazı tipi boyutunu girin." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Yazı Tipi Listesi" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Grafik Testlerini Çalıştır" diff -Nru libreoffice-7.3.4/translations/source/tr/dbaccess/messages.po libreoffice-7.3.5/translations/source/tr/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/tr/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-11 14:07+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1547626398.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Yeni bir v_eritabanı oluştur" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Yeni bir veritabanı oluşturmak için seçin." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Gömülü veritabanı:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Varolan veritabanı _dosyası aç" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Son kullanılan dosyalar listesinden veya dosya seçimi iletişim penceresinden bir veritabanı dosyası açmak için seçin." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Son kullanılanlar:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Son kullanılan dosyalar listesinden açılacak bir veritabanı dosyası seçin. Dosyayı hemen açmak ve sihirbazdan çıkmak için Bitir'e tıklayın." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Aç" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Bir veritabanı dosyası seçebileceğiniz bir dosya seçim penceresi açar. Dosyayı hemen açmak ve sihirbazdan çıkmak için dosya seçimi iletişim penceresinde Aç veya Tamam'a tıklayın." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "_Varolan veritabanına bağlan" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Mevcut bir veritabanı bağlantısı için bir veritabanı belgesi oluşturmak için seçin." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Mevcut veritabanı bağlantısı için veritabanı türünü seçin." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Yeni bir veritabanı oluşturmak mümkün değil, çünkü bu kurulumda ne HSQLDB ne de Firebird mevcut değil." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Veritabanı Sihirbazı, bir veritabanı hakkında bilgi içeren bir veritabanı dosyası oluşturur." diff -Nru libreoffice-7.3.4/translations/source/tr/extensions/messages.po libreoffice-7.3.5/translations/source/tr/extensions/messages.po --- libreoffice-7.3.4/translations/source/tr/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-11 14:07+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554879901.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Formu tazele" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Al" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Gönder" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "Adres" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Çok parçalı" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Metin" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standart (kısa)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standart (kısa YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standart (kısa YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standart (uzun)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "GG/AA/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "AA/GG/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/AA/GG" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "GG/AA/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "AA/GG/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/AA/GG" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-AA-GG" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-AA-GG" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 ÖS" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 ÖS" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Seçilmemiş" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Seçili" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Tanımlanmamış" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Bütün kayıtlar" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Etkin kayıt" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Mevcut sayfa" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Hayır" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Evet" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Ana Form" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_boş" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_üst" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_kendisi" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_üst" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Hiçbiri" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Tek" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Çoklu" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Aralık" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Yatay" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Dikey" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Varsayılan" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Tamam" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "İptal" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Yardım" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Seçilmiş girdi" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Seçilmiş girdinin konumu" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Tek-satır" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Çoklu-satır" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Biçimlendirmeyle çoklu-satır" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Hiçbiri" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Yatay" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Dikey" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "İkisi de" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3B" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Düz" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Sol üst" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Solda ortalanmış" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Solda alt" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Sağ üst" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Sağda ortalanmış" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Sağ alt" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Yukarıda solda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Yukarıda ortalanmış" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Yukarıda sağda" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Aşağıda solda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Aşağıda ortalanmış" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Aşağıda sağda" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Ortalanmış" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Koru" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Değiştir" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Daralt" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Hayır" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Oranı Koru" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Boyuta Uydur" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Soldan sağa" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Sağdan sola" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Üst nesne ayarlarını kullan" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Asla" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Odaklandığında" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Her zaman" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Paragrafa" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Karakter Olarak" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Sayfaya" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Çerçeveye" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Karaktere" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Sayfaya" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "Hücreye" diff -Nru libreoffice-7.3.4/translations/source/tr/fpicker/messages.po libreoffice-7.3.5/translations/source/tr/fpicker/messages.po --- libreoffice-7.3.4/translations/source/tr/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-07-14 18:31+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" @@ -216,55 +216,55 @@ msgstr "Değiştirilme tarihi" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Aç" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Oynat" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Dosya _ismi:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Dosya _türü:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Salt-okunur" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Parola ile kaydet" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Otomatik dosya adı uzantısı" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Süzgeç _ayarlarını düzenle" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG anahtarı ile şifrele" diff -Nru libreoffice-7.3.4/translations/source/tr/sc/messages.po libreoffice-7.3.5/translations/source/tr/sc/messages.po --- libreoffice-7.3.4/translations/source/tr/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-04-26 12:46+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1558918336.000000\n" #. kBovX @@ -25249,97 +25249,97 @@ msgstr "~Görünüm" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "R_esim" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Res~im" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Ç_izim" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Çizim" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Nesne" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Nesne" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Ortam" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Ortam" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Yazdır" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Yazdır" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_klenti" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~klenti" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Araçlar" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Araçlar" @@ -25698,139 +25698,139 @@ msgstr "R_esim" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Sırala" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "R_enk" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Izgara" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Di_l" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Gözden geçir" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Açıklamalar" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Ka_rşılaştır" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Görünüm" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Ç_izim" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Düzenle" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Sırala" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Görünüm" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Gru_p" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Yazı _tipi" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Hizalama" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Görünüm" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Ekle" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Ortam" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Çe_rçeve" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Sırala" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Izgara" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Görünüm" diff -Nru libreoffice-7.3.4/translations/source/tr/sd/messages.po libreoffice-7.3.5/translations/source/tr/sd/messages.po --- libreoffice-7.3.4/translations/source/tr/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-25 16:40+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554880620.000000\n" #. WDjkB @@ -4172,109 +4172,109 @@ msgstr "~Tablo" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Resim" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Res~im" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Ç_izim" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Çizim" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Nesne" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Nesne" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Ortam" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Ortam" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Ana Belge" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Ana Belge" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_b" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~b" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_klenti" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~klenti" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Araçlar" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Araçlar" @@ -7061,109 +7061,109 @@ msgstr "~Tablo" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Resim" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Res~im" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Ç_izim" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Çizim" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Nesne" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Nesne" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Ortam" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Ortam" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rm" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rm" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Ana Belge" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "A~na Slayt" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_b" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~b" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_klenti" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~klenti" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Araçlar" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Araçlar" diff -Nru libreoffice-7.3.4/translations/source/tr/sw/messages.po libreoffice-7.3.5/translations/source/tr/sw/messages.po --- libreoffice-7.3.4/translations/source/tr/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-03-11 14:07+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554880865.000000\n" #. v3oJv @@ -10492,19 +10492,19 @@ msgstr "Seçili paragraf biçemini dizin hiyerarşisinde bir seviye aşağı taşır." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Biçem" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Biçemler" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Belirli paragraf biçemleri için dizin girdileri oluşturur." @@ -13948,37 +13948,37 @@ msgstr "Veritabanlarını Değiştir" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Tanımla" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Kullanılan Veritabanları" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Kullanılabilir Veritabanları" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Gözat..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "\"*.odb\" dosyasını seçmek için bir iletişim penceresi açar. Seçilen dosya Kullanılabilir Veritbanaları listesine eklenir." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13988,31 +13988,31 @@ "Bir veritabanı dosyası seçmek için gözat düğmesini kullanın." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Mevcut kullanılan veritabanlarını listeler." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "%PRODUCTNAME'e kayıtlı veritabanlarını listeler." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Veritabanlarını Değiştir" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Belge ile kullanılan veritabanı:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Mevcut belge için veri kaynağını değiştir." @@ -20066,109 +20066,109 @@ msgstr "Mevcut _belgeyi kullan" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Posta birleştirme belgesi için var olan bir Writer belgesini temel olarak kullanır." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Y_eni bir belge oluştur" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Posta birleştirmede kullanmak için yeni bir Writer belgesi oluşturur." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "_Mevcut belgeden başla" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Posta birleştirme belgesi için var olan bir Writer belgesini temel olarak kullanır." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Bir ş_ablondan başla" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Posta birleştirme belgeniz ile oluşturmak istediğiniz şablonu seçin." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Yakınlarda kaydedil_miş bir başlangıç belgesinden başla" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Yeni bir posta birleştirme belgesi için var olan bir posta birleştirme belgesini temel olarak kullanın." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Belgeyi seçin." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "G_özat..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Kullanmak istediğiniz Writer belgesini bulun, ve ardından Aç'a tıklayın." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "G_özat..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Bir şablon seçim penceresini açar." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "Mevcut belgenin veri kaynağı kayıtlı değil. Lütfen veri tabanını değiştirin." #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "Veritabanını Değiştir..." #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Posta Birleştirme için Başlangıç Belgesini Seç" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Posta birleştirme belgesinde temel olarak kullanmak istediğiniz belgeyi belirtir." @@ -22311,49 +22311,49 @@ msgstr "Nesne" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tür" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Seçenekler" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Metin Dağılımı" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Köprü" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Kenarlık" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Alan" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Şeffaflık" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makro" @@ -27049,7 +27049,7 @@ msgstr "Güncelle" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Mevcut dosya için istatistikleri görüntüler." diff -Nru libreoffice-7.3.4/translations/source/tr/vcl/messages.po libreoffice-7.3.5/translations/source/tr/vcl/messages.po --- libreoffice-7.3.4/translations/source/tr/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tr/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-12-02 07:52+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554881042.000000\n" #. k5jTM @@ -2324,169 +2324,169 @@ msgstr "Kağıt başına çoklu sayfa yazdır." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Özel" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Kağıt başına kaç sayfa yazdırılacağını seçin." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Sayfalar:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Satır sayısını seçin." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "tarafından" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Sütun sayısını seçin." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Kenar Boşluğu:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Her kağıtta tekil sayfalar arasındaki kenar boşluğunu seçin." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "sayfalar arasında" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Mesafe:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Yazdırılan sayfa ile kağıt kenarı arasındaki mesafeyi seçin." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "sayfa sınırına" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Sırala:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Soldan sağa, sonra aşağıya" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Yukarıdan aşağıya, sonra sağa" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Üstten alta, sonra sola" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Sağdan sola, sonra aşağıya" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Hangi sayfaların yazdırılacağı sırayı seçin." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Her sayfanın etrafına sınır çiz" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Her bir sayfanın etrafına bir kenarlık çizmek için seçin." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Broşür" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Belgeyi broşür biçiminde yazdırmak için seçin." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Harmanlama önizlemesi" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Her kağıt yaprağına yazdırılacak sayfaların düzenini değiştirin. Ön izleme, her son kağıdın nasıl görüneceğini gösterir." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "D_aha Fazla" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Sayfa Düzeni" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Genel" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Geçerli belgeyi yazdırır, seçim, veya sayfaları belirleyebilirsiniz. Ayrıca geçerli belge için yazdırma seçeneklerini de belirleyebilirsiniz." diff -Nru libreoffice-7.3.4/translations/source/ts/chart2/messages.po libreoffice-7.3.5/translations/source/ts/chart2/messages.po --- libreoffice-7.3.4/translations/source/ts/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3729,7 +3729,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/cui/messages.po libreoffice-7.3.5/translations/source/ts/cui/messages.po --- libreoffice-7.3.4/translations/source/ts/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17626,176 +17626,152 @@ msgid "Automatic" msgstr "Ku ti~endlekela hi koxe" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/dbaccess/messages.po libreoffice-7.3.5/translations/source/ts/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ts/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3397,75 +3397,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Vuhlayisela-rungula lebyi Gandleriweke" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Tirhisiwile ku nga ri khale" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Pfula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3473,7 +3473,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/extensions/messages.po libreoffice-7.3.5/translations/source/ts/extensions/messages.po --- libreoffice-7.3.4/translations/source/ts/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,577 +304,563 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Teka" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posa" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "~Xitsariwa" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Tolovelekeke (koma)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Tolovelekeke (koma)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Tolovelekeke (koma)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Tolovelekeke (leha)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Hlawula" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Siku ra Sweswi" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Doo" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ina" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Yima" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Ku hava" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Xoxe" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Hi vuandlalo" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Ku ya ehenhla" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Di~foliti" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Swi Lunghile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Tima" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Ku pfuna" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Layini yin'we" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Layini-nyingi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Layini-nyingi ni matshamelo" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Ku hava" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Hi vuandlalo" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Ku ya ehenhla" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Haswimbirhi" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Andlaleka" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Eximatsini ehenhla" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Eximatsini Exikarhi" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Eximatsini ehansi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Exineneni ehenhla" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Exineneni Exikarhi" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Exineneni ehansi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Ehenhla hi le ximatsini" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Ehenhla hi le xikarhi" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Ehenhla hi le xineneni" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ehansi hi le ximatsini" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ehansi hi le xikarhi" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ehansi hi le xineneni" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Ku vekiwa exikarhi" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Londzovota" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Siva" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Wisa" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Doo" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Ringanisa elayinini" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ximatsi ku ya exineneni" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Xinene ku ya eximatsini" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Tirhisa malulamisele ya nchumu wa xiyimo xa le henhla" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Nkarhi hinkwawo" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Eka ndzimana" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Tanihi xivumbeko" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ku ya Eka Pheji" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Eka Fureme" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Eka xivumbeko" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ku ya Eka Pheji" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ts/fpicker/messages.po libreoffice-7.3.5/translations/source/ts/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ts/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,61 +213,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Vito ra fayili:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Rixaka ra ~fayili" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Hlaya-ntsena" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Hlayisa hi phasiwedi" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Ngetelelo wa vito ra fayili wo tiendlekela hi woxe" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Lulamisa ~matshamelo ya xisefo" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/sc/messages.po libreoffice-7.3.5/translations/source/ts/sc/messages.po --- libreoffice-7.3.4/translations/source/ts/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26246,97 +26246,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26724,156 +26724,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Lulamisa" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Muhlovo" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Giridi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ririmi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "~Switsundzuxo" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Xikomba" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Tsala" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Lulamisa" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Xikomba" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Mintlawa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Nhlanga ya rito" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Kongomisa" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Xikomba" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Nghenisa" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Rimba" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Lulamisa" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Giridi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ts/sd/messages.po libreoffice-7.3.5/translations/source/ts/sd/messages.po --- libreoffice-7.3.4/translations/source/ts/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4268,109 +4268,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7237,109 +7237,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/sw/messages.po libreoffice-7.3.5/translations/source/ts/sw/messages.po --- libreoffice-7.3.4/translations/source/ts/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10819,20 +10819,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Switayili" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14451,38 +14451,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Fungha" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Phendla..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14490,31 +14490,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20852,111 +20852,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Phendla..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Phendla..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23154,55 +23154,55 @@ msgstr "~Xitirho" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 #, fuzzy msgctxt "objectdialog|type" msgid "Type" msgstr "Ri~xaka" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Swo Tihlawulela" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Phutsa" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Nhlanganiso wa webesayiti" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 #, fuzzy msgctxt "objectdialog|borders" msgid "Borders" msgstr "Mindzilakana " #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ku vonikela" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -28144,7 +28144,7 @@ msgstr "Pfuxeta" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ts/vcl/messages.po libreoffice-7.3.5/translations/source/ts/vcl/messages.po --- libreoffice-7.3.4/translations/source/ts/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ts/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2357,171 +2357,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ntolovelo:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "hi" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "B~roxara" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/chart2/messages.po libreoffice-7.3.5/translations/source/tt/chart2/messages.po --- libreoffice-7.3.4/translations/source/tt/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3647,7 +3647,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/cui/messages.po libreoffice-7.3.5/translations/source/tt/cui/messages.po --- libreoffice-7.3.4/translations/source/tt/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tatar \n" @@ -17452,177 +17452,152 @@ msgid "Automatic" msgstr "Автоматик рәвештә" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Кискен" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/dbaccess/messages.po libreoffice-7.3.5/translations/source/tt/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/tt/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3349,73 +3349,73 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ачу" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3423,7 +3423,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/extensions/messages.po libreoffice-7.3.5/translations/source/tt/extensions/messages.po --- libreoffice-7.3.4/translations/source/tt/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -291,553 +291,541 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "(Сайланган)" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Хәзерге көн" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Юк" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Әйе" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Стоп" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Юк" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Берле" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Даирә" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Горизонталь" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Вертикаль" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Башлангыч" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "ОК" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Үткәрмәү" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Белешмә" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Юк" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Горизонталь" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикаль" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Яссы" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Сулдан өскә" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Сулдан уртада" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Уңнан өскә" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Уңнан уртада" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Текст өстендә" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Текст астында" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Уртада" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Алыштыру" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Төреп кую" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Юк" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Пропорция буенча" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Юлда сыйдыру" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Кызыл юл" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Тамга рәвешендә" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Биткә" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Тамга рәвешендә" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Биткә" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/fpicker/messages.po libreoffice-7.3.5/translations/source/tt/fpicker/messages.po --- libreoffice-7.3.4/translations/source/tt/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -212,61 +212,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Файл исеме:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Файлның төре:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Уку өчен генә" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Серсүз белән саклау" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Автоматик рәвешендә киңәйткеч" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Сөзгечнең көйләүләрен үзгәртү" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/sc/messages.po libreoffice-7.3.5/translations/source/tt/sc/messages.po --- libreoffice-7.3.4/translations/source/tt/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25492,97 +25492,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25968,155 +25968,155 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Урнаштыру" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Төс" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Тел" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Искәрмәләр" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Карау" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Үзгәртү" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Урнаштыру" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Карау" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Төркем" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Хәреф" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Турайту" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Карау" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Кую" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Медиа" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Кыса" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Урнаштыру" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/tt/sd/messages.po libreoffice-7.3.5/translations/source/tt/sd/messages.po --- libreoffice-7.3.4/translations/source/tt/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4246,109 +4246,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7181,109 +7181,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/sw/messages.po libreoffice-7.3.5/translations/source/tt/sw/messages.po --- libreoffice-7.3.4/translations/source/tt/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2020-10-31 11:36+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tatar \n" @@ -10644,19 +10644,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стильләр" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14181,38 +14181,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 #, fuzzy msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Карау..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14220,31 +14220,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20447,111 +20447,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Карау..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Карау..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22723,50 +22723,50 @@ msgstr "Җисем" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Төр" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Көйләүләр" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гиперсылтама" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Чикләгечләр" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Өлкә" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Үтә күренмәүчәнлек" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27592,7 +27592,7 @@ msgstr "Яңарту" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/tt/vcl/messages.po libreoffice-7.3.5/translations/source/tt/vcl/messages.po --- libreoffice-7.3.4/translations/source/tt/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/tt/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2341,171 +2341,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Кулланучы 1" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брюшора" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/chart2/messages.po libreoffice-7.3.5/translations/source/ug/chart2/messages.po --- libreoffice-7.3.4/translations/source/ug/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3687,7 +3687,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/cui/messages.po libreoffice-7.3.5/translations/source/ug/cui/messages.po --- libreoffice-7.3.4/translations/source/ug/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17206,178 +17206,154 @@ msgid "Automatic" msgstr "ئاپتوماتىك" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "سامانيولى" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "يۇقىرى ئاق-قارىلىقى" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "ئوكسىگېن" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "كلاسسىك" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 #, fuzzy msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 #, fuzzy msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "مەيىن شامال" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "سىنبەلگە ئۇسلۇبى(_T):" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "قاتتىق دېتال تېزلەتكۈچنى ئىشلەت(_W)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "ھەرە چىشقا قارشى تەڭشەك ئىشلەت(_L):" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "گىرافىك چىقار" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "خەت نۇسخا شەكلىنى كۆرسەت(_R)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "سىلىق ئېكران خەت نۇسخىسى(_G)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "ئورنى(_M):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "خەت نۇسخا تىزىملىكى" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/dbaccess/messages.po libreoffice-7.3.5/translations/source/ug/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ug/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:22+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Uyghur \n" @@ -3474,74 +3474,74 @@ msgstr "يېڭى بىر ساندان قۇر(_E)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "سىڭدۈرمە ساندان(_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "مەۋجۇت سانداننى ئاچ(_F)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "يېقىندا ئىشلەتكەن(_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "ئاچ" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "مەۋجۇت ساندانغا باغلا(_X)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3549,7 +3549,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/extensions/messages.po libreoffice-7.3.5/translations/source/ug/extensions/messages.po --- libreoffice-7.3.4/translations/source/ug/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -307,595 +307,581 @@ msgid "Refresh form" msgstr "جەدۋەل يېڭىلا" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "تېكىست" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "ئۆلچەملىك (قىسقا)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "ئۆلچەملىك (قىسقا YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "ئۆلچەملىك (قىسقا YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "ئۆلچەملىك (ئۇزۇن)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "تاللانمىغان" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "تاللانغان" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "ئېنىقلىما بېرىلمىگەن" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "ھەممە خاتىرە" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "ئاكتىپ خاتىرە" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "نۆۋەتتىكى بەت" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "ياق" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "ھەئە" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "ئاتا جەدۋەل" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "بوش" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "ئۈستى، چوققا" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "يوق" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "يەككە" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "كۆپ" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "دائىرە" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "توغرىسىغا" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "بويىغا" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "كۆڭۈلدىكى" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "جەزملە" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "ۋاز كەچ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "ياردەم" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "تاللانغان تۈر" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "تاللانغان تۈرنىڭ ئورنى" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "يەككە قۇر" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "كۆپ قۇر" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "پىچملىق كۆپ قۇر" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "يوق" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "توغرىسىغا" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "بويىغا" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "ئىككىلىسى" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "تەكشىلىك" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "سول ئۈستى" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "سول ئوتتۇرىدا" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "سول ئاستى" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "ئوڭ ئۈستى" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "ئوڭ ئوتتۇرىدا" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "ئوڭ ئاستى" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "سول ئۈستى" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "ئۈستى ئوتتۇرىدا" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "ئوڭ ئۈستى" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "سول ئاستى" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "ئوتتۇرا ئاستى" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "ئوڭ ئاستى" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "ئوتتۇرىدا" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "ساقلاپ قال" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "ئالماشتۇر" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "ئابزاس ئايرىمىسى يوشۇر" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "ياق" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "نىسبىتىنى ساقلا" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "ئۆزلۈكىدىن تەڭشە" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "سولدىن ئوڭغا" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "ئوڭدىن سولغا" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "ئالىي ئوبيېكت تەڭشەك ئىشلەت" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "زادىلا" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "فوكۇسقا ئېرىشكەندە" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ھەمىشە" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "ئابزاسقىچە" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "ھەرپ سۈپىتىدە" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "بەتكىچە" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "كاندۇكقا" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "ھەرپكىچە" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "بەتكىچە" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ug/fpicker/messages.po libreoffice-7.3.5/translations/source/ug/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ug/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -216,55 +216,55 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "ھۆججەت ئىسمى(_N)" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "ھۆججەت تىپى(_T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "ئوقۇشقىلا بولىدۇ(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "ئىم بىلەن ساقلا" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "ئاپتوماتىك ھۆججەت ئاتى كېڭەيتىلمىسى(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "سۈزگۈچ تەڭشەك تەھرىر(_F)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "GPG ئاچقۇچتا شىفىرلا" diff -Nru libreoffice-7.3.4/translations/source/ug/sc/messages.po libreoffice-7.3.5/translations/source/ug/sc/messages.po --- libreoffice-7.3.4/translations/source/ug/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25930,97 +25930,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26407,154 +26407,154 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "تەرتىپلە" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "رەڭ(_O)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "سېتكا(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "تىل(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "تەكشۈر" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "ئىزاھات(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 #, fuzzy msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "سېلىشتۇر(_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "كۆرۈنۈش" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "تەھرىر(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "تەرتىپلە" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "كۆرۈنۈش" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "گۇرۇپپا" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "خەت نۇسخا" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "توغرىلا" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "كۆرۈنۈش" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "قىستۇر" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "ۋاسىتە" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "كاندۇك(_R):" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "تەرتىپلە" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "سېتكا(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ug/sd/messages.po libreoffice-7.3.5/translations/source/ug/sd/messages.po --- libreoffice-7.3.4/translations/source/ug/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4236,109 +4236,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7217,109 +7217,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/sw/messages.po libreoffice-7.3.5/translations/source/ug/sw/messages.po --- libreoffice-7.3.4/translations/source/ug/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10737,19 +10737,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "ئۇسلۇبلار" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14280,37 +14280,37 @@ msgstr "ساندان ئالماشتۇر" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "بەلگىلە" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "ساندان ئىشلىتىلىۋاتىدۇ" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "ئىشلىتىلىشچان ساندانلار(_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "كۆز يۈگۈرت…" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14320,31 +14320,31 @@ "«كۆز يۈگۈرت» كۇنۇپكىسىنى ئىشلىتىپ ساندان تاللاشقا بولىدۇ." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "ساندان ئالماشتۇر" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "پۈتۈكتە ئىشلىتىدىغان ساندان:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20594,111 +20594,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "كۆز يۈگۈرت…" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "كۆز يۈگۈرت…" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22862,49 +22862,49 @@ msgstr "ئوبيېكت" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "تىپى" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "تاللانمالار" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "چۆرىدەت" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "ئۇلانما" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "يان رامكا" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "دائىرە" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "سۈزۈكلۈك" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "ماكرو" @@ -27751,7 +27751,7 @@ msgstr "يېڭىلا" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ug/vcl/messages.po libreoffice-7.3.5/translations/source/ug/vcl/messages.po --- libreoffice-7.3.4/translations/source/ug/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ug/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2320,169 +2320,169 @@ msgstr "Deletes the R2 value." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "ئىختىيارى" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Deletes the R2 value." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Deletes the R2 value." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ئارىلىق" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Deletes the R2 value." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Deletes the R2 value." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "ئارىلىقتىكى بەتلەر" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Deletes the R2 value." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "ۋاراق يانىغىچە" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Deletes the R2 value." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "ھەر بىر بەتكە يان رامكا سىز" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Deletes the R2 value." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "كىتابچە" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uk/chart2/messages.po libreoffice-7.3.5/translations/source/uk/chart2/messages.po --- libreoffice-7.3.4/translations/source/uk/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-18 20:36+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" @@ -3602,7 +3602,7 @@ msgstr "Вкажіть кількість ліній для стовпцевих і лінійних діаграм." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Виберіть базовий тип діаграми." diff -Nru libreoffice-7.3.4/translations/source/uk/cui/messages.po libreoffice-7.3.5/translations/source/uk/cui/messages.po --- libreoffice-7.3.4/translations/source/uk/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-02-22 00:39+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1566384412.000000\n" #. GyY9M @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "Автоматично" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Галактика" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Контрастний стиль №1" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Оксиген" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Класичний" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Бриз" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "Визначає стиль для піктограм на панелях інструментів та в діалогових вікнах." #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "Стиль _піктограм:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "Додайте більше тем піктограм, встановивши розширення" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "Стиль піктограм" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Потребує перезапуску" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Використовувати _апаратне прискорення" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Покращує якість зображення, за допомогою прямого доступу до апаратних функцій відеокарт." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Використовувати зглад_жування" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Якщо підтримується, ви можете ввімкнути або вимкнути згладжування малюнків. Якщо згладжування увімкнено, багато графічних об'єктів виглядають більш згладженими і з меншою кількістю артефактів." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "Весь вивід через Skia" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "Програмний вивід через Skia" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "Вимагає перезавантаження. Вимикає використання графічних драйверів." #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "Skia вже ввімкнено." #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "Skia зараз вимкнено." #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Графічний вивід" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Попередній _перегляд шрифтів" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "Під час вибору шрифтів, наприклад, у полі Шрифт на панелі Форматування, виводить їхні назви відповідним шрифтом." #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Зглад_жування екранних шрифтів" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "Виберіть, щоб згладити текст на екрані." #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "в_ід:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "Введіть найменший розмір шрифту для застосування згладжування." #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Списки шрифтів" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "Виконати графічні тести" diff -Nru libreoffice-7.3.4/translations/source/uk/dbaccess/messages.po libreoffice-7.3.5/translations/source/uk/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/uk/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-08 08:14+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: Ukrainian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562230649.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "Створити _нову базу даних" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "Виберіть цей пункт, щоб створити нову базу даних." #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "_Вбудована база даних:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Відкрити наявний _файл бази даних" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "Виберіть цей елемент, щоб відкрити файл бази даних зі списку нещодавно використаних файлів або з діалогового вікна вибору файлів." #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "_Нещодавно використані:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "Виберіть файл бази даних, який потрібно відкрити, зі списку нещодавно використаних файлів. Натисніть \"Готово\", щоб негайно відкрити файл і вийти з режиму помічника." #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Відкрити" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "Відкриває діалогове вікно вибору файлу, де можна вибрати файл бази даних. Натисніть «Відкрити» або «OK» у діалоговому вікні вибору файлу, щоб негайно відкрити файл і вийти з режиму помічника." #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "З'єднатися з на_явною базою даних" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "Виберіть цей пункт, щоб створити документ бази даних для наявного з'єднання з базою даних." #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "Виберіть тип бази даних для наявного з'єднання з базою даних." #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "Неможливо створити нову базу даних, тому що ні HSQLDB, ні Firebird недоступні в цій системі." #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "Помічник зі створення баз даних створює файл бази даних, який містить інформацію про неї." diff -Nru libreoffice-7.3.4/translations/source/uk/extensions/messages.po libreoffice-7.3.5/translations/source/uk/extensions/messages.po --- libreoffice-7.3.4/translations/source/uk/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2022-03-08 08:14+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: Ukrainian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1558979716.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Оновити форму" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Отримати" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Текст" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Стандартний (короткий)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Стандартний (короткий РР)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Стандартний (короткий РРРР)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Стандартний (довгий)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "ДД/ММ/РР" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "ММ/ДД/РР" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "РР/ММ/ДД" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "ДД/ММ/РРРР" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "ММ/ДД/РРРР" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "РРРР/ММ/ДД" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "РР-ММ-ДД" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "РРРР-ММ-ДД" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Не вибрано" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Позначено" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Не визначено" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Усі записи" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Активний запис" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Поточна сторінка" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Ні" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Так" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Батьківська форма" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Немає" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Окремі" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Декілька" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Проміжок" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "По горизонталі" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "По вертикалі" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Типова" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Гаразд" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Скасувати" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Довідка" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Виділений запис" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Позиція виділеного запису" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Однорядковий" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Багаторядковий" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Багаторядковий з форматуванням" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Немає" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Горизонтальна" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Вертикальна" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Обидві" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Простір" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Площина" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ліворуч угорі" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ліворуч у центрі" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ліворуч знизу" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Праворуч угорі" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Праворуч у центрі" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Праворуч знизу" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Вгорі ліворуч" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Вгорі у центрі" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Вгорі праворуч" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Знизу ліворуч" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Знизу у центрі" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Знизу праворуч" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "У центрі" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Резервувати" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Замінити" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Згорнути" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Ні" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Пропорційно" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Підібрати розмір" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Зліва направо" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Справа наліво" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Успадковувати від батьківського об'єкта" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Ніколи" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Коли у фокусі" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Завжди" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "До абзацу" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Як символ" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "До сторінки" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "До рамки" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "До символу" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "До сторінки" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "До комірки" diff -Nru libreoffice-7.3.4/translations/source/uk/fpicker/messages.po libreoffice-7.3.5/translations/source/uk/fpicker/messages.po --- libreoffice-7.3.4/translations/source/uk/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-07 23:36+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" @@ -216,55 +216,55 @@ msgstr "Дата зміни" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Відкрити" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Грати" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Назва файлу:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Тип файлу:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "_Лише для читання" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Зберегти з паролем" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "_Автоматичне розширення імені файлу" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "_Зміна параметрів фільтра" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Зашифрувати ключем GPG" diff -Nru libreoffice-7.3.4/translations/source/uk/sc/messages.po libreoffice-7.3.5/translations/source/uk/sc/messages.po --- libreoffice-7.3.4/translations/source/uk/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-03-08 08:14+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-15 20:57+0000\n" +"Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563958760.000000\n" #. kBovX @@ -25257,97 +25257,97 @@ msgstr "П~ерегляд" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "_Зображення" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Зобра~ження" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Ма_лювання" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Малювання" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Об'єкт" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Об'єкт" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Медіа" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Медіа" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Надрукувати" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Друк" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Р_озширення" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "Р~озширення" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Засоби" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "~Засоби" @@ -25706,139 +25706,139 @@ msgstr "_Зображення" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "_Упорядкування" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "К_олір" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Сітка" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Мова" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Перевірити" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Коментарі" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "_Порівняти" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "П_ерегляд" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "Ма_лювання" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "З_міни" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "_Упорядкування" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "П_ерегляд" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "_Групування" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Шрифт" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "_Вирівнювання" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "П_ерегляд" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Вст_авити" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Медіа" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "_Рамка" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "_Упорядкування" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Сітка" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "П_ерегляд" @@ -31667,7 +31667,7 @@ #: sc/uiconfig/scalc/ui/swaprowsentry.ui:28 msgctxt "swaprows|action" msgid "Swap Rows Action" -msgstr "" +msgstr "Дія: поміняти рядки місцями" #. sig3h #: sc/uiconfig/scalc/ui/swaprowsentry.ui:45 diff -Nru libreoffice-7.3.4/translations/source/uk/sd/messages.po libreoffice-7.3.5/translations/source/uk/sd/messages.po --- libreoffice-7.3.4/translations/source/uk/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-10-29 11:54+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" @@ -4174,109 +4174,109 @@ msgstr "Т~аблиця" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Зображення" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Зобра~ження" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "Ма_лювання" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "Ма~лювання" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Об'єкт" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Об’єкт" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Мультимедія" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Мультимедія" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Шаблон" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Шаблон" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "_3d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "~3d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Р_озширення" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "Р~озширення" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Засоби" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~Засоби" @@ -7063,109 +7063,109 @@ msgstr "~Таблиця" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Зображення" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Зобра~ження" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Ма_лювання" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Малювання" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Об'єкт" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Об'єкт" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Медіа" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Медіа" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "_Форма" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "~Форма" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Шаблон" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Шаблон" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "_3d" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "~3d" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "Р_озширення" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "Р~озширення" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "_Засоби" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "~Засоби" diff -Nru libreoffice-7.3.4/translations/source/uk/sw/messages.po libreoffice-7.3.5/translations/source/uk/sw/messages.po --- libreoffice-7.3.4/translations/source/uk/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-02-20 13:18+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: Ukrainian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565448874.000000\n" #. v3oJv @@ -10506,19 +10506,19 @@ msgstr "Переміщує вибраний стиль абзацу на один рівень вниз ієрархії покажчика." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Стиль" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Стилі" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Створює елементи покажчика зі вказаних стилів абзацу." @@ -13962,37 +13962,37 @@ msgstr "Вибір активного джерела даних" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Так" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Використані джерела даних" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "_Доступні бази даних" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Огляд..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Відкриває діалогове вікно відкриття файлу для вибору файлу бази даних (*.odb). Вибраний файл додається у список доступних баз даних." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14002,31 +14002,31 @@ "Щоб вибрати файл бази даних, скористайтесь кнопкою перегляду." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Перераховує бази даних, які використовуються." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "Перераховує бази даних, що зареєстровані у %PRODUCTNAME." #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Вибір активного джерела даних" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Використане джерело даних:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Змінити джерела даних для поточного документа." @@ -20080,109 +20080,109 @@ msgstr "Використати поточний _документ" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Використати поточний документ Writer як основу документа для розсилання." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Створити _новий документ" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Створити новий документ Writer для використання при розсиланні листів." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Розпочати з _наявного документа" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Виберіть наявний документ Writer, який буде основою документа для розсилання." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Розпочати із шаблону" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Виберіть шаблон, на основі якого слід створити документ для розсилання." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Розпочати з останнього збереженого первинного документа" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Використати поточний документ розсилання як основу для нового документа розсилання." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Виберіть документ." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Огляд..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "Знайдіть потрібний документ Writer, а потім натисніть кнопку Відкрити." #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Огляд..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "Відкриває діалог вибору шаблона." #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Виберіть первинний документ для розсилання пошти" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "Вкажіть документ, який буде основою документа для розсилання." @@ -22325,49 +22325,49 @@ msgstr "Об'єкт" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Тип" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Параметри" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Обтікання" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Гіперпосилання" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Обрамлення" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Заповнення" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Прозорість" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Макрос" @@ -27063,7 +27063,7 @@ msgstr "Оновити" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "Показує статистику для поточного файлу." diff -Nru libreoffice-7.3.4/translations/source/uk/vcl/messages.po libreoffice-7.3.5/translations/source/uk/vcl/messages.po --- libreoffice-7.3.4/translations/source/uk/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uk/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-12-23 20:38+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562231131.000000\n" #. k5jTM @@ -2325,169 +2325,169 @@ msgstr "Друк кількох сторінок на аркуші паперу." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Особливий" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Оберіть, скільки сторінок друкувати на аркуші паперу." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Сторінки:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Оберіть кількість рядків." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "до" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Оберіть кількість стовпчиків." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Поле:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Оберіть відстань між окремими сторінками на кожному аркуші паперу." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "між сторінками" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Відстань:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Оберіть відстань між полем друку та краєм паперу." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "до країв аркуша" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Порядок:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Зліва направо, потім донизу" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Зверху донизу, потім праворуч" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Зверху донизу, потім ліворуч" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Справа наліво, потім донизу" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Оберіть порядок, у якому будуть надруковані сторінки." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Малювати рамку навколо кожної сторінки" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Оберіть, щоб намалювати межі навколо кожної сторінки." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Брошура" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "Виберіть, щоб надрукувати документ у форматі брошури." #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Перегляд порядку" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "Змініть розташування сторінок, які будуть роздруковані на кожному аркуші паперу. Попередній перегляд показує, як в кінцевому підсумку виглядатиме кожен аркуш паперу." #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "Б_ільше" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Розмітка сторінки" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Звичайний" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "Друкує поточний документ, вибраний фрагмент або вказані вами сторінки. Ви також можете встановити параметри друку для поточного документа." diff -Nru libreoffice-7.3.4/translations/source/ur/chart2/messages.po libreoffice-7.3.5/translations/source/ur/chart2/messages.po --- libreoffice-7.3.4/translations/source/ur/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-26 18:13+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -3603,7 +3603,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/cui/messages.po libreoffice-7.3.5/translations/source/ur/cui/messages.po --- libreoffice-7.3.4/translations/source/ur/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-30 13:38+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -17159,176 +17159,152 @@ msgid "Automatic" msgstr "خودکار" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/dbaccess/messages.po libreoffice-7.3.5/translations/source/ur/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ur/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-08-30 13:38+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -3331,74 +3331,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 #, fuzzy msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "~کھولیے" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3406,7 +3406,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/extensions/messages.po libreoffice-7.3.5/translations/source/ur/extensions/messages.po --- libreoffice-7.3.4/translations/source/ur/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-09-05 11:22+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "فارم ری-فریش کریں" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "حاصل کریں" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "پوسٹ کریں" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "یو-آر-ایل" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "کثیر جزوی" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "متن" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "معیاری (مختصر)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "معیاری (مختصر YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "معیاری (مختصر YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "معیاری (طویل)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "منتخب نہیں کیا گیا" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "منتخب کردہ" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "متعین نہیں کیا گیا" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "تمام ریکارڈز" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "فعال ریکارڈ" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "موجودہ صفحہ" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "نهی" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "جی " #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "پیرنٹ فارم" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_خالی" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_پیرنٹ" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_خود" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_اوپر" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "کوئی نہیں" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "واحد" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "کثیر" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "رینج" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "افقی" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "عمودی" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "ڈیفالٹ" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "اوکے" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "منسوخ" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "مدد" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "منتخب اندراج" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "منتخب اندراج کی پوزیشن" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "ایک-لائین" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "کثیر-لائین" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "فارمیٹنگ بمع کثیر-لائین" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "ایل-ایف (یونِکس)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "سی-آر+ایل-ایف (ونڈوز)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "کوئی نہیں" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "افقی" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "عمودی" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "دونوں" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "سادہ" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "بائیں جانب اوپر" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "بائیں جانب مرکز میں" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "بائیں جانب نیچے" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "دائیں جانب اوپر" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "دائیں جانب مرکز میں" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "دائیں جانب نیچے" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "اوپر بائیں جانب" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "اوپر مرکز میں" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "اوپر دائیں طرف" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "نیچے بائیں طرف" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "نیچے مرکز میں" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "نیچے دائیں جانب" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "درمیان میں" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "برقرار رکھیں" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "تبدیل کریں" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "تفصیل غائب کریں" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "نهی" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "تناسب قائم رکھیں" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "سائز کے مطابق فٹ کریں" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "بائیں سے دائیں جانب" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "دائیں سے بائیں جانب" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "سپر آرڈینیٹ آجبیکٹ سیٹنگ استعمال کریں" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "کبھی نہیں" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "جب فوکس کیا جائے" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "ہمیشہ" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "پیرا گراف کی جانب" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "حرف کے طور (پر)" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "صفحے کی جانب" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "فریم کی جانب" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "حرف کی جانب" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "صفحے کی جانب" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "سیل کی جانب" diff -Nru libreoffice-7.3.4/translations/source/ur/fpicker/messages.po libreoffice-7.3.5/translations/source/ur/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ur/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-08-26 18:13+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -219,61 +219,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "~فائل کا نام:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "فائل کی ~نوعیت:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "نا~قابل ترمیم" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "پاس ~ورڈ کے ساتھ محفوظ کیجئے" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "فائل کے نام کی ~خودکار اضافت" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "فلٹر ~تنطیمات" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/sc/messages.po libreoffice-7.3.5/translations/source/ur/sc/messages.po --- libreoffice-7.3.4/translations/source/ur/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-09-05 11:22+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -25194,97 +25194,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -25650,143 +25650,143 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "آراء" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "منظر" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "منظر" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "منظر" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ur/sd/messages.po libreoffice-7.3.5/translations/source/ur/sd/messages.po --- libreoffice-7.3.4/translations/source/ur/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-08-30 13:38+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -4177,109 +4177,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7072,109 +7072,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/sw/messages.po libreoffice-7.3.5/translations/source/ur/sw/messages.po --- libreoffice-7.3.4/translations/source/ur/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-09-05 11:22+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -10550,19 +10550,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "انداز:" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14024,37 +14024,37 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "" #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14062,31 +14062,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20179,109 +20179,109 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "" #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "" #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22428,49 +22428,49 @@ msgstr "اشیاء" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "نوعیت:" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "" @@ -27181,7 +27181,7 @@ msgstr "" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ur/vcl/messages.po libreoffice-7.3.5/translations/source/ur/vcl/messages.po --- libreoffice-7.3.4/translations/source/ur/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ur/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-08-29 06:23+0000\n" "Last-Translator: imran \n" "Language-Team: Urdu \n" @@ -2324,169 +2324,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/chart2/messages.po libreoffice-7.3.5/translations/source/uz/chart2/messages.po --- libreoffice-7.3.4/translations/source/uz/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/cui/messages.po libreoffice-7.3.5/translations/source/uz/cui/messages.po --- libreoffice-7.3.4/translations/source/uz/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Uzbek \n" @@ -17608,177 +17608,152 @@ msgid "Automatic" msgstr "Avtomatik" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "~Yuqori kontrast" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/dbaccess/messages.po libreoffice-7.3.5/translations/source/uz/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/uz/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-10-31 11:36+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Uzbek \n" @@ -3442,74 +3442,74 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Yaqinda ishlatilganlar" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Ochish" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3517,7 +3517,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/extensions/messages.po libreoffice-7.3.5/translations/source/uz/extensions/messages.po --- libreoffice-7.3.4/translations/source/uz/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -290,585 +290,573 @@ msgid "Refresh form" msgstr "Shaklni yangilash" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Olish" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Matn" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Andoza (qisqa)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Andoza (qisqa YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Andoza (qisqa YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Andoza (uzun)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Tanlanmagan" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Tanlangan" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Aniqlanmagan" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Hamma yozuvlar" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Aktiv yozuvlar" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Joriy sahifa" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Yoʻq" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ha" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_Yuqori" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Yoʻq" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Bitta" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Oraliq" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Gorizontal" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertikal" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Andoza" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Bekor qilish" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Yordam" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Bitta satr" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Koʻp satr" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Yoʻq" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Gorizontal" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertikal" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Ikkalasi ham" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "Uch oʻlchovli" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Yassi" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Chapdan yuqorida" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Chapdan markazda" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Chapdan pastda" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Yuqoridan chapda" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Yuqorida markazda" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Oʻngda pastda" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Yuqoridan chapda" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Yuqoridan markazda" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Yuqoridan oʻngda" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Pastdan chapda" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Pastdan markazda" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Pastdan oʻngda" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Markazda" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Zahirada saqlash" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Almashtirish" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Yigʻish" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Yoʻq" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Hajmiga moslash" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Chapdan oʻngga" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Oʻngdan chapga" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Obyektning andoza moslamaridan foydalanish" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Hamisha" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Paragrafga" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Belgi" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Sahifaga" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Freymga" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Belgi" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Sahifaga" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/uz/fpicker/messages.po libreoffice-7.3.5/translations/source/uz/fpicker/messages.po --- libreoffice-7.3.4/translations/source/uz/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -217,61 +217,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Faylning nomi:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Faylning ~turi:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Faqat oʻqishga" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "~Maxfiy soʻz bilan saqlash" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Avtomatik faylning kengaytmasi" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Filtr moslamalarini ~oʻzgartirish" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/sc/messages.po libreoffice-7.3.5/translations/source/uz/sc/messages.po --- libreoffice-7.3.4/translations/source/uz/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25745,97 +25745,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26224,157 +26224,157 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Joylashtirish" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Rang" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Toʻr" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Til" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Koʻrib chiqish" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Izohlar" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Koʻrish" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Tahrirlash" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Joylashtirish" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Koʻrish" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Guruhlash" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Shrift" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Tekislash" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Koʻrish" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Qoʻyish" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Freym" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Joylashtirish" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Toʻr" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/uz/sd/messages.po libreoffice-7.3.5/translations/source/uz/sd/messages.po --- libreoffice-7.3.4/translations/source/uz/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4258,109 +4258,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7231,109 +7231,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/sw/messages.po libreoffice-7.3.5/translations/source/uz/sw/messages.po --- libreoffice-7.3.4/translations/source/uz/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10765,20 +10765,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Uslublar" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14359,38 +14359,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Aniqlash" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Tanlash..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14398,31 +14398,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20737,111 +20737,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Tanlash..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Tanlash..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23031,50 +23031,50 @@ msgstr "Obyekt" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Turi" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Parametrlar" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Giperbogʻlama" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Chegaralar" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Maydon" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Shaffoflik" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Makros" @@ -27964,7 +27964,7 @@ msgstr "Yangilash" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/uz/vcl/messages.po libreoffice-7.3.5/translations/source/uz/vcl/messages.po --- libreoffice-7.3.4/translations/source/uz/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/uz/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2347,170 +2347,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Boshqacha" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "tomonidan" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "~Risola" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/chart2/messages.po libreoffice-7.3.5/translations/source/ve/chart2/messages.po --- libreoffice-7.3.4/translations/source/ve/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3728,7 +3728,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/cui/messages.po libreoffice-7.3.5/translations/source/ve/cui/messages.po --- libreoffice-7.3.4/translations/source/ve/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17628,176 +17628,152 @@ msgid "Automatic" msgstr "O~thomathiki" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/dbaccess/messages.po libreoffice-7.3.5/translations/source/ve/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/ve/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3397,75 +3397,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Database yo gonyanaho" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Yo Shumiswaho Zwino" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vulani" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3473,7 +3473,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/extensions/messages.po libreoffice-7.3.5/translations/source/ve/extensions/messages.po --- libreoffice-7.3.4/translations/source/ve/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -305,575 +305,561 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Wana" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Poswo" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Ḽi~ṅwalwa" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Yo ḓoweleaho (pfufhi)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Yo ḓoweleaho (pfufhi)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Yo ḓoweleaho (pfufhi)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Yo ḓoweleaho (ndapfu)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Nangani" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Datumu Ino" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Hai" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ee" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Imisani" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "A huna" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Singili" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Mutevhe" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Horizonthaḽa" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vethikhaḽa" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Tshi~dzivhiswa" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Zwo Luga" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Fhelisani" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Thuso" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Ḽaini-nthihi" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Ḽaini-nnzhi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Ḽaini-nnzhi dzo fomathiwaho" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "A huna" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Horizonthaḽa" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vethikhaḽa" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Zwoṱhe" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Navha" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Tsha monde nṱha" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Tsha monde tsho vhewaho vhukati" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Tsha monde fhasi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Tsha u ḽa nṱha" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Tsha u tsho vhewaho vhukati" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Tsha u ḽa fhasi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Nṱha kha tsha monde" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Nṱha tsho vhewaho vhukati" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Nṱha kha tsha u ḽa" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Fhasi kha tsha monde" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Fhasi ho vhewaho vhukati" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Fhasi kha tsha u ḽa" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Katifhadzwa" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Tsireledza" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Vhuedzedzani" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Wisani" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Hai" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Fheledzani kha ḽaini" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Monde-uya-kha-tshauḽa" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Tsha u Ḽa-Uya-Kha-Tsha Monde" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Tshifhinga tshothe" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Kha Pharagirafu" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Sa Tshitenwa" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Kha Siaṱari" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Kha Fureme" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Kha Tshiteṅwa" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Kha Siaṱari" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/ve/fpicker/messages.po libreoffice-7.3.5/translations/source/ve/fpicker/messages.po --- libreoffice-7.3.4/translations/source/ve/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -214,61 +214,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Dzina ḽa faela:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Lushaka lwa Faela" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~U vhala-fhedzi" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Vhulungani nga phasiwede" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Nyengedzedzo ya dzina ḽa faela ḽa othomethiki" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Lulamisani nzudzanyo dza ~fiḽitha" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/sc/messages.po libreoffice-7.3.5/translations/source/ve/sc/messages.po --- libreoffice-7.3.4/translations/source/ve/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26203,97 +26203,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26680,156 +26680,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Vhekanyani" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Muvhala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Giridi" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Luambo" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "~Mabulwa" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Mbonalo" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Lulamisani" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Vhekanyani" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Mbonalo" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Zwigwada" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Muṅwalo" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Nzudzanyo" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Mbonalo" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Inivetha" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Fureme" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Vhekanyani" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Giridi" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/ve/sd/messages.po libreoffice-7.3.5/translations/source/ve/sd/messages.po --- libreoffice-7.3.4/translations/source/ve/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4263,109 +4263,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7232,109 +7232,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/sw/messages.po libreoffice-7.3.5/translations/source/ve/sw/messages.po --- libreoffice-7.3.4/translations/source/ve/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10814,20 +10814,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Tshitaela:" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14441,38 +14441,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Ṱalusani" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Swaswara..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14480,31 +14480,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20843,111 +20843,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Swaswara..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Swaswara..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23146,54 +23146,54 @@ msgstr "~Tshibveledzwa" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Lushaka" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Dzikhetho" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Putelani" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Dzihaiphalinki" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 #, fuzzy msgctxt "objectdialog|borders" msgid "Borders" msgstr "Dzibodara " #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Vhonadza" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 #, fuzzy msgctxt "objectdialog|macro" msgid "Macro" @@ -28134,7 +28134,7 @@ msgstr "Khwinifhadzani" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/ve/vcl/messages.po libreoffice-7.3.5/translations/source/ve/vcl/messages.po --- libreoffice-7.3.4/translations/source/ve/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/ve/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2357,171 +2357,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Mvelele:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "nga" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "B~urotsha" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vec/chart2/messages.po libreoffice-7.3.5/translations/source/vec/chart2/messages.po --- libreoffice-7.3.4/translations/source/vec/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-03-08 13:46+0000\n" "Last-Translator: Còdaze Veneto \n" "Language-Team: Venetian \n" @@ -3602,7 +3602,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vec/cui/messages.po libreoffice-7.3.5/translations/source/vec/cui/messages.po --- libreoffice-7.3.4/translations/source/vec/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-04-03 14:37+0000\n" "Last-Translator: projetolovec \n" "Language-Team: Venetian \n" @@ -17133,176 +17133,152 @@ msgid "Automatic" msgstr "Automàtego" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Gałasia" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Alto contrasto" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Clàsego" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "S_tiłe icone:" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "Ghe vołe el reavìo" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "Dòpara acełerasion hard_ware" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "Dòpara anti-a_liasing" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Rezultado imàjine" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Mostra antep_rima de i caràtari" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "Antialiasin_g de i caràtari a schermo" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "_da:" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Łiste de caràtari" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vec/dbaccess/messages.po libreoffice-7.3.5/translations/source/vec/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/vec/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Còdaze Veneto \n" "Language-Team: Venetian \n" @@ -3395,73 +3395,73 @@ msgstr "Crea un n_ovo database" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Database _incorporà:" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "Verzi un _file de database ezistente" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Doparà de _resente:" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Verzi" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "Coneti a un database ezi_stente" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vec/extensions/messages.po libreoffice-7.3.5/translations/source/vec/extensions/messages.po --- libreoffice-7.3.4/translations/source/vec/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Còdaze Veneto \n" "Language-Team: Venetian \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "Ajorna formułaro" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Otien" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multiparte" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Testo" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Standard (curto)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Standard (curto AA)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Standard (curto AAAA)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Standard (łongo)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "GG/MM/AA" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/GG/AA" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "AA/MM/GG" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "GG/MM/AAAA" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/GG/AAAA" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "AAAA/MM/GG" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "AA-MM-GG" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "AAAA-MM-GG" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Mìa sełesionà" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Sełesionà" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Mìa definìo" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Tute łe rejistrasion" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Rejistrasion ativa" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Pàjina corente" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "No" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Sì" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Formułaro pare" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Njaun" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Sìngoło" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Mùltiplo" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Area" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Orizontałe" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Vertegałe" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Predefenìo" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Anuła" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Juto" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Ła voze sełesionà" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Pozision de ła voze sełesionà" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Riga sìngoła" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Pì righe" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Pì righe co formatasion" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Njaun" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Orizontałe" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Vertegałe" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Tuti do" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Piato" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "In alto a sanca" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Sentrà a sanca" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "In baso a sanca" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "In alto a drita" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Sentrà a drita" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "In baso a drita" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Sora a sanca" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Sora sentrà" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Sora a drita" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Soto a sanca" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Soto sentrà" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Soto a drita" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Sentrà" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Mantien" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Renpiasa" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Reduzi" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Nò" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Mantien raporto" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Adata a ła grandesa" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Da sanca a drita" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Da drita a sanca" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Dòpara łe inpostasion de l'ojeto suparior" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Mai" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Cuando sełesionà" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Senpre" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "A'l paràgrafo" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Cofà caràtare" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "A ła pàjina" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "A ła corniza" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "A'l caràtare" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "A ła pàjina" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "A ła ceła" diff -Nru libreoffice-7.3.4/translations/source/vec/fpicker/messages.po libreoffice-7.3.5/translations/source/vec/fpicker/messages.po --- libreoffice-7.3.4/translations/source/vec/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-04-07 14:15+0000\n" "Last-Translator: projetolovec \n" "Language-Team: Venetian \n" @@ -216,55 +216,55 @@ msgstr "Data de modìfega" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "_Vèrzar" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "_Reproduzi" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "_Nome file:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "_Tipo de file:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "Soła _łetura" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Salva co password" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "Estension _automàtega de'l nome de'l file" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Muda inpostasion _filtro" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "Sifra co ciave GPG" diff -Nru libreoffice-7.3.4/translations/source/vec/sc/messages.po libreoffice-7.3.5/translations/source/vec/sc/messages.po --- libreoffice-7.3.4/translations/source/vec/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-04-03 14:37+0000\n" "Last-Translator: projetolovec \n" "Language-Team: Venetian \n" @@ -25246,97 +25246,97 @@ msgstr "~Parensa" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "Im_àjene" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "Imà~jene" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "Deze_nja" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "~Dezenja" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "Ojeto" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "~Ojeto" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "_Media" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "Stanpa" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "~Stanpa" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmułaro" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmułaro" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stension" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stension" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "S_trumenti" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "S~trumenti" @@ -25695,139 +25695,139 @@ msgstr "Im_àjene" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Siste_ma" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "C_ołor" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Gradeła" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Łengua" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "_Revizion" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Comenti" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "Con_fronta" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "_Parensa" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "D_ezenja" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Modìfega" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Siste_ma" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "_Parensa" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Ingru_pa" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "_Caràtare" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Łine_asion" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "_Parensa" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "_Insarisi" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "_Media" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Co_rniza" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Siste_ma" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Gradeła" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "_Parensa" diff -Nru libreoffice-7.3.4/translations/source/vec/sd/messages.po libreoffice-7.3.5/translations/source/vec/sd/messages.po --- libreoffice-7.3.4/translations/source/vec/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Còdaze Veneto \n" "Language-Team: Venetian \n" @@ -4171,109 +4171,109 @@ msgstr "~Tabeła" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "Imàjene" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "Imà~jene" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "D_ezenjo" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Dezenja" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "Ojeto" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "~Ojeto" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "_Media" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmułaro" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmułaro" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "_Paron" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "~Paron" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stension" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stension" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "S_trumenti" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "S~trumenti" @@ -7060,109 +7060,109 @@ msgstr "~Tabeła" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "Imàjene" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "Imà~jene" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "Dezen_ja" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "~Dezenja" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "Ojeto" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "~Ojeto" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "_Media" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "~Media" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "Fo_rmułaro" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "Fo~rmułaro" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "_Paron" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "~Paron" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "E_stension" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "E~stension" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "S_trumenti" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "S~trumenti" diff -Nru libreoffice-7.3.4/translations/source/vec/sw/messages.po libreoffice-7.3.5/translations/source/vec/sw/messages.po --- libreoffice-7.3.4/translations/source/vec/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-01-10 13:21+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-01 13:02+0200\n" "Last-Translator: projetolovec \n" "Language-Team: Venetian \n" "Language: vec\n" @@ -10493,19 +10493,19 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "Stiłe" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Stiłi" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -13949,37 +13949,37 @@ msgstr "Scanbia database" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Definizi" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Database in doparo" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "Database _desponibiłi" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Sfoja..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13989,31 +13989,31 @@ "Dòpara el boton Sfoja par sełesionar un file de database." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Scanbia database" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Database aplegà a'l documento:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20067,109 +20067,109 @@ msgstr "Dòpara el _documento ativo" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "Crea un no_vo documento" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "Scumisia da el documento _ezistente" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "Scumisia da un _modeło" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "Scumisia da un documento salvà de _resente" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "_Sfoja..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "_Sfoja..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "Sełesiona el documento inisiałe par l'union e-mail" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22312,49 +22312,49 @@ msgstr "Ojeto" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Tipo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Opsion" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Adatasion" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Cołegamento ipartestuałe" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Bordi" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Area" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Trasparensa" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Macro" @@ -27048,7 +27048,7 @@ msgstr "Ajorna" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vec/vcl/messages.po libreoffice-7.3.5/translations/source/vec/vcl/messages.po --- libreoffice-7.3.4/translations/source/vec/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vec/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-03-08 13:45+0000\n" "Last-Translator: Còdaze Veneto \n" "Language-Team: Venetian \n" @@ -2319,169 +2319,169 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Parsonałizà" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "Pàjine:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "da" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "Màrjine:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "intra łe pàjine" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "Distansa:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "a bordo pàjina" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "Òrdane:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "Da sanca a drita, donca par baso" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "Da alto a baso, donca par drita" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "Da alto a baso, donca par sanca" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "Da dria a sanca, donca par baso" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dezenja bordo torno onji pàjina" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Opùscoło" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "Preociada de intercałasion" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "Strutura de pàjina" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "Jenerałe" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/chart2/messages.po libreoffice-7.3.5/translations/source/vi/chart2/messages.po --- libreoffice-7.3.4/translations/source/vi/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3697,7 +3697,7 @@ msgstr "Đặt tổng số đường cho kiểu đồ thị Cột và Đường." #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "Chọn một kiểu đồ thị cơ bản." diff -Nru libreoffice-7.3.4/translations/source/vi/cui/messages.po libreoffice-7.3.5/translations/source/vi/cui/messages.po --- libreoffice-7.3.4/translations/source/vi/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17552,179 +17552,153 @@ msgid "Automatic" msgstr "Tự động" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "Tương phản cao" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -#, fuzzy -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Cổ điển" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "Truy cập trực tiếp các tính năng phần cứng của bộ tiếp hợp hiển thị đồ hoa, để cải tiến cách hiển thị trên màn hình." #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "Nếu được hỗ trợ, bạn có thể bật hoặc tắt chức năng khử răng cưa đồ họa. Nếu khử răng cưa được bật, các đối tượng đồ họa sẽ trông mượt hơn." #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 #, fuzzy msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "Đầu ra đồ họa" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "Hiện ô _xem thử phông" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "Danh sách phông" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/dbaccess/messages.po libreoffice-7.3.5/translations/source/vi/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/vi/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2020-01-07 12:22+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Vietnamese \n" @@ -3476,75 +3476,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Cơ sở dữ liệu nhúng" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Vừa dùng" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Mở" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3552,7 +3552,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/extensions/messages.po libreoffice-7.3.5/translations/source/vi/extensions/messages.po --- libreoffice-7.3.4/translations/source/vi/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -308,599 +308,585 @@ msgid "Refresh form" msgstr "Cập nhật đơn" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Lấy" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Gửi" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Đa phần" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Văn bản" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Chuẩn (ngắn)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Chuẩn (ngắn YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Chuẩn (ngắn YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Chuẩn (dài)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 #, fuzzy msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "Chưa chọn" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Đã chọn" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "Không xác định" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "Mọi bản ghi" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "Bản ghi hoạt động" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Trang hiện thời" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Không" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Có" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 #, fuzzy msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "Dạng cha" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Dừng" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Không" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Đơn" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "Đa" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Phạm vi" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Nằm ngang" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Nằm dọc" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Mặc định" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "OK" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Thôi" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Trợ giúp" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "Mục nhập đã chọn" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 #, fuzzy msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "Vị trí của mục nhập đã chọn" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Đơn dòng" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Đa dòng" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Đa dòng với định dạng" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Không" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Nằm ngang" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Nằm dọc" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Cả hai" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Phẳng" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Trái trên" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Trái giữa" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Trái dưới" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Phải trên" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Phải giữa" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Phải dưới" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Trên trái" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Trên giữa" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Trên phải" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Dưới trái" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Dưới giữa" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Dưới phải" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Giữa lại" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Bảo tồn" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Thay thế" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Ẩn" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Không" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "Giữ nguyên tỉ lệ" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Chỉnh kích cỡ cho khớp" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Trái qua phải" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Phải qua trái" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 #, fuzzy msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Dùng quan hệ thượng hạ vị thiết lập đối tượng" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "Không bao giờ" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "Khi có tiêu điểm" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Luôn luôn" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Tới đoạn" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Ký tự" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Tới trang" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Tới khung" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ký tự" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Tới trang" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/vi/fpicker/messages.po libreoffice-7.3.5/translations/source/vi/fpicker/messages.po --- libreoffice-7.3.4/translations/source/vi/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -220,61 +220,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Tên tập tin:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "~Kiểu tập tin:" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Chỉ đọc" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Lưu ~bằng mật khẩu" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Tự động đặt phần mở rộng tên tập tin" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "~Sửa thiết lập lọc" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/sc/messages.po libreoffice-7.3.5/translations/source/vi/sc/messages.po --- libreoffice-7.3.4/translations/source/vi/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -25777,97 +25777,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26254,153 +26254,153 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Sắp đặt" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Màu" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "_Lưới" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "_Ngôn ngữ" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 #, fuzzy msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "Đánh giá" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "_Bình luận" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Xem" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "_Sửa" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Sắp đặt" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Xem" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Nhóm lại" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Phông" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Sắp hàng" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Xem" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Chèn" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 #, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "Nhạc" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Khung" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Sắp đặt" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "_Lưới" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/vi/sd/messages.po libreoffice-7.3.5/translations/source/vi/sd/messages.po --- libreoffice-7.3.4/translations/source/vi/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4239,109 +4239,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7215,109 +7215,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/sw/messages.po libreoffice-7.3.5/translations/source/vi/sw/messages.po --- libreoffice-7.3.4/translations/source/vi/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10726,19 +10726,19 @@ msgstr "Dời kiểu dáng đoạn văn đã chọn xuống một cấp trong phân cấp chỉ mục." #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Kiểu dáng" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "Tạo các mục nhập chỉ mục từ một số kiểu dáng đoạn văn cụ thể." @@ -14280,37 +14280,37 @@ msgstr "Cơ sở dữ liệu Exchange" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "Định nghĩa" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "Cơ sở dữ liệu đang dùng" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Duyệt..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "Mở một hộp thoại mở tập tin để chọn một tập tin cơ sở dữ liệu có đuôi « *.odb ». Tập tin đã chọn thì được thêm vào danh sách các Cơ sở Dữ liệu Sẵn sàng." #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14320,31 +14320,31 @@ "Hãy dùng nút duyệt để chọn một tập tin cơ sở dữ liệu." #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "Liệt kê các cơ sở dữ liệu đang được dùng." #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "Cơ sở dữ liệu Exchange" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "Cơ sở dữ liệu áp dụng cho tài liệu :" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "Thay đổi các nguồn dữ liệu cho tài liệu hiện thời." @@ -20606,111 +20606,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "Dùng tài liệu Writer hiện tại làm tài liệu gốc cho thư trộn." #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "Tạo một tài liệu Writer mới dùng để trộn thư." #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "Chọn một tài liệu Writer đã tồn tại làm tài liệu gốc để trộn thư." #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "Chọn mẫu từ đó bạn muốn tạo thư trộn." #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "Dùng một thư trộn đã tồn tại làm gốc cho một thư trộn mới." #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "Chọn tài liệu." #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Duyệt..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Duyệt..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -22875,52 +22875,52 @@ msgstr "Đối tượng" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Kiểu" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Tùy chọn" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "Cuộn" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Siêu liên kết" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Viền" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 #, fuzzy msgctxt "objectdialog|area" msgid "Area" msgstr "Vùng" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Độ trong suốt" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Vĩ lệnh" @@ -27771,7 +27771,7 @@ msgstr "Cập nhật" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/vi/vcl/messages.po libreoffice-7.3.5/translations/source/vi/vcl/messages.po --- libreoffice-7.3.4/translations/source/vi/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/vi/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2336,169 +2336,169 @@ msgstr "Tạo một tài liệu chủ mới." #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Tự chọn:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "Đối với bản phát tay, chọn số các ảnh chiếu cần in trên mỗi tờ giấy." #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "Chọn định dạng tập tin." #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "theo" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "Chọn định dạng tập tin." #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "Chọn một kiểu con của kiểu đồ thị cơ bản." #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "giữa các trang " #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "Đặt thứ tự sắp xếp." #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "tới viền bảng tính" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "Chọn một kiểu đồ thị cơ bản." #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Vẽ viền quanh các trang" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "Nhấn chuột để đi tới trang trợ lý có tên đó." #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Sách mỏng" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "In ấn tài liệu hiện tại, vùng chọn hiện tại, hay những trang bạn xác định." diff -Nru libreoffice-7.3.4/translations/source/xh/chart2/messages.po libreoffice-7.3.5/translations/source/xh/chart2/messages.po --- libreoffice-7.3.4/translations/source/xh/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3725,7 +3725,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/cui/messages.po libreoffice-7.3.5/translations/source/xh/cui/messages.po --- libreoffice-7.3.4/translations/source/xh/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17615,176 +17615,152 @@ msgid "Automatic" msgstr "Ngokuzenzekela" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/dbaccess/messages.po libreoffice-7.3.5/translations/source/xh/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/xh/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3394,75 +3394,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Isiseko seenkcukacha esisezantsi" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Isetyenziswe Kutshanje" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3470,7 +3470,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/extensions/messages.po libreoffice-7.3.5/translations/source/xh/extensions/messages.po --- libreoffice-7.3.4/translations/source/xh/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -304,574 +304,560 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Fumana" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Posa" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL " #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Isiqendu" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Okwesiqhelo (okufutshane)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Okwesiqhelo (okufutshane)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Okwesiqhelo (okufutshane)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Okwesiqhelo (okude)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Khetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Umhla Wangoku" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Hayi" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Ewe" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Nqumamisa" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Akukho" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Isikhewu esinye semigca" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Uluhlu" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Ngokobubanzi" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Ngokobude" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Oku~hlala kukho kakade" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Kulungile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Rhoxisa" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Uncedo" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Umgca ohamba wodwa" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Imigca emininzi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Imigca emininzi enolungiselelo" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Akukho" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Ngokobubanzi" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Ngokobude" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Zombini" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Isicaba" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Ekhohlo phezulu" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Ekhohlo esizikithini" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Ekhohlo emazantsi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Ekunene phezulu" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Ekunene esizikithini" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Ekunene emazantsi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Phezulu ekhohlo" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Phezulu esizikithini" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Phezulu ekunene" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ezantsi ekhohlo" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ngezantsi esizikithini" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ezantsi ekunene" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Esizikithini" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Londoloza" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Beka endaweni yokususiweyo" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Bothoza" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Hayi" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Linganisa emgceni" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ekhohlo-ukuya-ekunene" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Ekunene-ukuya-ekhohlo" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Qho" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Ukuya kumhlathi" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Njengombhalo Onjengonobumba" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ukuya Kwikhasi" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Ukuya Kwisakhelo" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ukuya Kumbhalo onjengonobumba" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ukuya Kwikhasi" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/xh/fpicker/messages.po libreoffice-7.3.5/translations/source/xh/fpicker/messages.po --- libreoffice-7.3.4/translations/source/xh/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -213,61 +213,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Igama lefayili:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Isimbo~Sefayili" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Funda-kuphela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Gcina ngegama lokugqithisela phambili" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Isolulo segama lefayili Esizenzekelayo" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Hlela imimiselo ~yesihluzi" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/sc/messages.po libreoffice-7.3.5/translations/source/xh/sc/messages.po --- libreoffice-7.3.4/translations/source/xh/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26180,97 +26180,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26658,156 +26658,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Cwangcisa" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Umbala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Imigca eyehlayo nexwesileyo" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ulwimi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "~Ukuphawula" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Okuboniswayo" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Hlela" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Cwangcisa" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Okuboniswayo" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Amaqela" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ifonti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Ulungelelwaniso" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Okuboniswayo" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Faka" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Isakhelo" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Cwangcisa" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Imigca eyehlayo nexwesileyo" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/xh/sd/messages.po libreoffice-7.3.5/translations/source/xh/sd/messages.po --- libreoffice-7.3.4/translations/source/xh/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4263,109 +4263,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7232,109 +7232,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/sw/messages.po libreoffice-7.3.5/translations/source/xh/sw/messages.po --- libreoffice-7.3.4/translations/source/xh/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10803,20 +10803,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Izimbo" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14417,38 +14417,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Chaza" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Khangela..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14456,31 +14456,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20802,111 +20802,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Khangela..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Khangela..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23101,54 +23101,54 @@ msgstr "~Into" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 #, fuzzy msgctxt "objectdialog|type" msgid "Type" msgstr "Isimbo:" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 #, fuzzy msgctxt "objectdialog|options" msgid "Options" msgstr " Ekukhethwa Kuko" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Ukugqithela Kumgca Ongezantsi" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 #, fuzzy msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Ii-Hyperlink" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Imida" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Indawo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 #, fuzzy msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Ukubonakalisa Ngaphaya Kwento" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "I-macro" @@ -28074,7 +28074,7 @@ msgstr "Hlaziya" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/xh/vcl/messages.po libreoffice-7.3.5/translations/source/xh/vcl/messages.po --- libreoffice-7.3.4/translations/source/xh/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/xh/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2352,171 +2352,171 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ukulungiselela:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "ngako" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 #, fuzzy msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Incwad~ana yolwazi" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/chart2/messages.po libreoffice-7.3.5/translations/source/zh-CN/chart2/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2022-03-12 20:39+0000\n" "Last-Translator: Ming Hua \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562193945.000000\n" #. NCRDD @@ -3602,7 +3602,7 @@ msgstr "设置柱形和折线图表类型的线条数目。" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "选择一种基本图表类型。" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/cui/messages.po libreoffice-7.3.5/translations/source/zh-CN/cui/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" -"PO-Revision-Date: 2022-06-01 09:37+0000\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1736,7 +1736,7 @@ #: cui/inc/strings.hrc:320 msgctxt "RID_SVXSTR_ADD" msgid "Add" -msgstr "新增" +msgstr "添加" #. QgAFH #: cui/inc/strings.hrc:321 @@ -3788,19 +3788,19 @@ #: cui/inc/treeopt.hrc:74 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Basic Fonts (Western)" -msgstr "基本字体 (西方语言)" +msgstr "基本字体 (西方文字)" #. TDUti #: cui/inc/treeopt.hrc:75 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Basic Fonts (Asian)" -msgstr "基本字体 (亚洲语言)" +msgstr "基本字体 (亚洲文字)" #. nfHR8 #: cui/inc/treeopt.hrc:76 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Basic Fonts (CTL)" -msgstr "基本字体 (复合文字)" +msgstr "基本字体 (复杂版式文字)" #. 38A6E #: cui/inc/treeopt.hrc:77 @@ -6983,7 +6983,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1203 msgctxt "colorconfigwin|protectedcells" msgid "Protected cells background" -msgstr "受保护的单元格的背景" +msgstr "受保护单元格的背景" #. mA6HV #: cui/uiconfig/ui/colorconfigwin.ui:1219 @@ -7367,7 +7367,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:303 msgctxt "extended tip | redRadiobutton" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "用纵向的颜色滑块可改变「红色」分量的设置,然后在二维的颜色选择区域中设置「绿色」和「蓝色」分量。允许的值为 0 到 255。" #. TkTSB #: cui/uiconfig/ui/colorpickerdialog.ui:314 @@ -7379,7 +7379,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:323 msgctxt "extended tip | greenRadiobutton" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "用纵向的颜色滑块可改变「绿色」分量的设置,然后在二维的颜色选择区域中设置「红色」和「蓝色」分量。允许的值为 0 到 255。" #. 5FGfv #: cui/uiconfig/ui/colorpickerdialog.ui:334 @@ -7391,7 +7391,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:343 msgctxt "extended tip | blueRadiobutton" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "用纵向的颜色滑块可改变「蓝色」分量的设置,然后在二维的颜色选择区域中设置「绿色」和「红色」分量。允许的值为 0 到 255。" #. c5MTh #: cui/uiconfig/ui/colorpickerdialog.ui:362 @@ -7439,7 +7439,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:490 msgctxt "extended tip | hueRadiobutton" msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359." -msgstr "" +msgstr "用纵向的颜色滑块设置「色相」分量,然后在二维的颜色选择区域中设置「饱和度」和「亮度」分量。「色相」值以度数表示,从 0 到 359。" #. C4GE3 #: cui/uiconfig/ui/colorpickerdialog.ui:501 @@ -7451,7 +7451,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:510 msgctxt "extended tip | satRadiobutton" msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "" +msgstr "用纵向的颜色滑块设置「饱和度」分量,然后在二维的颜色选择区域中设置「色相」和「亮度」分量。「饱和度」值以百分比表示 (0 到 100)。" #. NXs9w #: cui/uiconfig/ui/colorpickerdialog.ui:521 @@ -7463,13 +7463,13 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:530 msgctxt "extended tip | brightRadiobutton" msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "" +msgstr "用纵向的颜色滑块设置「亮度」分量,然后在二维的颜色选择区域中设置「色相」和「饱和度」分量。「亮度」值以百分比表示 (0 到 100)。" #. BCvUX #: cui/uiconfig/ui/colorpickerdialog.ui:549 msgctxt "extended tip | hueSpinbutton" msgid "Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359." -msgstr "直接设置 HSB 颜色模型的「色度」值。数值以度数表示,从 0 到 359。" +msgstr "直接设置 HSB 颜色模型的「色相」值。数值以度数表示,从 0 到 359。" #. TcDh8 #: cui/uiconfig/ui/colorpickerdialog.ui:568 @@ -17135,176 +17135,152 @@ msgid "Automatic" msgstr "自动" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "银河系" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "高对比度" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "活力" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "经典" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "指定工具栏和对话框上的图标样式。" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "图标样式(_T):" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "从扩展中添加更多图标主题" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "图标样式" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "需要重新启动" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "启用硬件加速(_W)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "直接访问「图形显示适配器」中的硬件加速功能,改善屏幕显示。" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "使用抗锯齿(_L)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "如果支持的话,您可以启用/禁用图形的反锯齿。启用反锯齿后,大部分图形对象看上去会更平滑,瑕疵更少。" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "使用 Skia 进行所有渲染" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "强制使用 Skia 软件渲染" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "需要重新启动。启用该选项会停止使用显卡驱动程序加速。" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "当前 Skia 已启用。" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "当前 Skia 已禁用。" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "图形输出" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "显示字体预览(_R)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "在相应的界面中显示字体名称的效果预览,比如在「格式」工具栏的字体框中。" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "屏幕字体抗锯齿(_G)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "选择此项,可对屏幕上显示的文字进行平滑处理。" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "从(_M):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "输入要进行抗锯齿处理的最小字体大小。" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "字体列表" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "运行显示效果测试" @@ -21070,13 +21046,13 @@ #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum consecutive hyphenated lines" -msgstr "" +msgstr "最大连续断词行数(_M)" #. GgHhP #: cui/uiconfig/ui/textflowpage.ui:192 msgctxt "textflowpage|checkNoCaps" msgid "Don't hyphenate words in _CAPS" -msgstr "不对全大写的词进行断词(_C)" +msgstr "不对全大写的单词进行断词(_C)" #. stYh3 #: cui/uiconfig/ui/textflowpage.ui:211 diff -Nru libreoffice-7.3.4/translations/source/zh-CN/dbaccess/messages.po libreoffice-7.3.5/translations/source/zh-CN/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-16 02:38+0000\n" "Last-Translator: 锁琨珑 \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562192836.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "新建一个数据库(_E)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "选择此项将创建一个新的数据库。" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "内嵌数据库(_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "打开一个现有的数据库文件(_F)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "选择此项会从最近使用过的文件列表或选择文件对话框中选取并打开一个数据库文件。" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "最近使用的(_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "从最近使用过的文件列表中选取并打开一个数据库文件。点击「完成」可以立即打开文件并退出向导。" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "打开" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "打开选择文件对话框,您可以在里面选取一个数据库文件。在选择文件对话框中点击「打开」或「确定」可以立即打开文件并退出向导。" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "连接到现有的数据库(_X)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "选择此项可以为一个现有的数据库连接创建数据库文档。" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "选择现有数据库连接的数据库类型。" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3469,7 +3469,7 @@ msgstr "无法创建新的数据库,因为目前设置下 HSQLDB 和 Firebird 都不可用。" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "数据库向导会创建一个数据库文件,其中包含数据库相关的信息。" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/editeng/messages.po libreoffice-7.3.5/translations/source/zh-CN/editeng/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/editeng/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/editeng/messages.po 2022-07-15 19:12:51.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-19 13:13+0100\n" -"PO-Revision-Date: 2021-02-26 09:37+0000\n" +"PO-Revision-Date: 2022-07-01 09:59+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 4.4\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1561325664.000000\n" #. BHYB4 @@ -1319,7 +1319,7 @@ #: include/editeng/editrids.hrc:233 msgctxt "RID_SVXITEMS_PAGEMODEL_COMPLETE" msgid "Page Style: " -msgstr "页面样式: " +msgstr "页面样式: " #. JgaGz #: include/editeng/editrids.hrc:234 diff -Nru libreoffice-7.3.4/translations/source/zh-CN/extensions/messages.po libreoffice-7.3.5/translations/source/zh-CN/extensions/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-27 22:41+0000\n" "Last-Translator: Ming Hua \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1561324898.000000\n" #. cBx8W @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "刷新表单" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Get" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Post" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "Multipart" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "文本" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "标准 (短格式)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "标准 (短格式 YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "标准 (短格式 YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "标准 (长格式)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "未选择" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "已选择" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "未定义" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "所有记录" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "活动的记录" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "当前页面" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "否" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "是" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "父表单" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "_blank" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "_parent" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "_self" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "_top" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "None" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "单个" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "多个" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "范围" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "水平" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "垂直" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "默认" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "确定" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "取消" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "帮助" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "选中的条目" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "选中的条目的位置" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "单行" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "多行" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "带有格式的多行" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "无" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "水平" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "垂直" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "两者都" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "平坦" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "左顶" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "左中" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "左底" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "右顶" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "右中" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "右底" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "左上" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "中上" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "右上" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "左下" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "中下" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "右下" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "居中" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "预留" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "替换" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "折叠" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "否" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "保持比例" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "调整至合适" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "从左向右" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "从右向左" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "使用上一级对象的设置" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "从不" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "在获得焦点时" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "总是" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "到段落" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "作为字符" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "到页面" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "到框架" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "到字符" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "到页面" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "到单元格" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/fpicker/messages.po libreoffice-7.3.5/translations/source/zh-CN/fpicker/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-03-24 12:36+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" @@ -216,55 +216,55 @@ msgstr "修改日期" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "打开(_O)" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "播放(_P)" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "文件名(_N):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "文件类型(_T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "只读(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "使用密码保存" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "自动识别文件扩展名(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "编辑筛选设置(_F)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "使用 GPG 公钥加密" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/sc/messages.po libreoffice-7.3.5/translations/source/zh-CN/sc/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-04-26 12:46+0000\n" -"Last-Translator: 锁琨珑 \n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-06 18:34+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: Weblate 4.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562731995.000000\n" #. kBovX @@ -17300,7 +17300,7 @@ #: sc/inc/strings.hrc:158 msgctxt "SCSTR_CONTENT_OLEOBJECT" msgid "OLE objects" -msgstr "OLE-对象" +msgstr "OLE 对象" #. T28Cj #: sc/inc/strings.hrc:159 @@ -25249,97 +25249,97 @@ msgstr "视图(~V)" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "图像(_A)" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "图像(~G)" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "绘图(_R)" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "绘图(~D)" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "对象" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "对象(~O)" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "媒体(_M)" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "媒体(~M)" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "打印" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "打印(~P)" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "表单(_R)" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "表单(~R)" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "扩展(_X)" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "扩展(~X)" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" @@ -25698,139 +25698,139 @@ msgstr "图像(_A)" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "排列(_A)" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "颜色(_O)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "网格(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "语言(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "审阅(_R)" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "批注(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "比较(_C)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "视图(_V)" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "绘图(_R)" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "编辑(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "排列(_A)" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "视图(_V)" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "分组(_P)" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "字体(_O)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "对齐(_A)" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "视图(_V)" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "插入(_I)" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "媒体(_M)" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "框架(_R)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "排列(_A)" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "网格(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "视图(_V)" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/sd/messages.po libreoffice-7.3.5/translations/source/zh-CN/sd/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-06-06 18:34+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\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.11.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562192328.000000\n" #. WDjkB @@ -3591,7 +3591,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:227 msgctxt "drawprinteroptions|extended_tip|fittoprinttable" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "指定在打印时是否对超出当前打印机边距的对象进行缩放,以使其适合在打印页面上显示。" +msgstr "指定是否将超出当前打印机页面范围的对象缩小,使其匹配打印机的纸张。" #. snSFu #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:239 @@ -4172,109 +4172,109 @@ msgstr "表格(~T)" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "图像" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "图像(~G)" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "绘图(_R)" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~Draw" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "对象" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "对象(~O)" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "媒体(_M)" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "媒体(~M)" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "表单(_R)" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "表单(~R)" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "母版(_M)" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "母版(~M)" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_d" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~d" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "扩展(_X)" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "扩展(~X)" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" @@ -6300,7 +6300,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:369 msgctxt "impressprinteroptions|extended_tip|fittoprintable" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "指定在打印时是否对超出当前打印机边距的对象进行缩放,以使其适合在打印页面上显示。" +msgstr "指定是否将超出当前打印机页面范围的对象缩小,使其匹配打印机的纸张。" #. wCDEw #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:381 @@ -7061,109 +7061,109 @@ msgstr "表格(~T)" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "图像" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "图像(~G)" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "绘图(_R)" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "绘图(~D)" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "对象" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "对象(~O)" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "媒体(_M)" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "媒体(~M)" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "表单(_R)" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "表单(~R)" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "母版(_M)" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "母版(~M)" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "扩展(_X)" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "扩展(~X)" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/svx/messages.po libreoffice-7.3.5/translations/source/zh-CN/svx/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/svx/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/svx/messages.po 2022-07-15 19:12:51.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-11-25 19:34+0100\n" -"PO-Revision-Date: 2022-02-05 19:39+0000\n" +"PO-Revision-Date: 2022-07-01 09:58+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1562193991.000000\n" #. 3GkZj @@ -13457,13 +13457,13 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:416 msgctxt "asianphoneticguidedialog|positionlb" msgid "Top" -msgstr "向上对齐" +msgstr "上方" #. 5Ue7R #: svx/uiconfig/ui/asianphoneticguidedialog.ui:417 msgctxt "asianphoneticguidedialog|positionlb" msgid "Bottom" -msgstr "向下对齐" +msgstr "下方" #. TsZ3E #: svx/uiconfig/ui/asianphoneticguidedialog.ui:418 diff -Nru libreoffice-7.3.4/translations/source/zh-CN/sw/messages.po libreoffice-7.3.5/translations/source/zh-CN/sw/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" +"PO-Revision-Date: 2022-07-15 17:25+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1566296512.000000\n" #. v3oJv @@ -3811,7 +3811,7 @@ #: sw/inc/strings.hrc:297 msgctxt "STR_CTL_FONT" msgid "CTL text: " -msgstr "复杂文字: " +msgstr "复杂版式文字: " #. GC6Rd #: sw/inc/strings.hrc:298 @@ -5689,7 +5689,7 @@ #: sw/inc/strings.hrc:625 msgctxt "ST_SCRIPT_CTL" msgid "CTL" -msgstr "复杂文字版式" +msgstr "复杂版式文字" #. ap5iF #: sw/inc/strings.hrc:626 @@ -10492,19 +10492,19 @@ msgstr "将选中的段落样式在索引层次结构中向下移动一级。" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "样式" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "样式" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "从特定的段落样式中创建索引条目。" @@ -10747,7 +10747,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:290 msgctxt "autoformattable|numformatcb" msgid "Number format" -msgstr "数字格式" +msgstr "数值格式" #. yPuEA #: sw/uiconfig/swriter/ui/autoformattable.ui:298 @@ -13949,37 +13949,37 @@ msgstr "交换数据库" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "定义" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "使用中的数据库" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "可用数据库(_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "浏览..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "打开一个可选择数据库文件 (*.odb) 的文件打开对话框。选中文件添加到「可用的数据库」列表中。" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13989,31 +13989,31 @@ "使用「浏览」按钮选择一个数据库文件。" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "列出当前正在使用的数据库。" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "列出在「%PRODUCTNAME」中注册的数据库。" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "交换数据库" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "应用于文档的数据库:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "修改当前文档的数据源。" @@ -14116,7 +14116,6 @@ #. vXdjr #: sw/uiconfig/swriter/ui/findentrydialog.ui:150 -#, fuzzy msgctxt "findentrydialog|extended_tip|findin" msgid "Restricts the search to one data field." msgstr "将查找限制在一个数据字段。" @@ -14125,7 +14124,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:169 msgctxt "findentrydialog|extended_tip|area" msgid "Select the data field where you want to search for the text." -msgstr "选择要在其中搜索文字的数据字段。" +msgstr "选择要在哪个数据字段中查找文本。" #. FQuFW #: sw/uiconfig/swriter/ui/findentrydialog.ui:203 @@ -20071,109 +20070,109 @@ msgstr "使用当前文档(_D)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "将当前 Writer 文档用作邮件合并文档的基础。" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "创建新文档(_W)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "创建新的 Writer 文档以用于邮件合并。" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "从现有文档开始(_E)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "选择用作邮件合并文档基础的现有 Writer 文档。" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "从模板开始(_E)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "选择要用来创建邮件合并文档的模板。" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "从最近保存的起始文档开始(_M)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "将现有邮件合并文档用作新邮件合并文档的基础。" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "选择文档。" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "浏览(_R)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "找到您希望使用的 Writer 文档,并点击「打开」。" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." -msgstr "浏览...(_R)" +msgstr "浏览(_R)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "打开模版选择对话框。" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "选择用于邮件合并的起始文档" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "指定要用作邮件合并文档基础的文档。" @@ -22316,49 +22315,49 @@ msgstr "对象" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "类型" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "选项" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "环绕" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "超链接" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "边框" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "区域" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "透明" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "宏" @@ -27054,7 +27053,7 @@ msgstr "更新" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "显示当前文件的统计信息。" diff -Nru libreoffice-7.3.4/translations/source/zh-CN/vcl/messages.po libreoffice-7.3.5/translations/source/zh-CN/vcl/messages.po --- libreoffice-7.3.4/translations/source/zh-CN/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-CN/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-11-11 07:36+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" @@ -2322,169 +2322,169 @@ msgstr "每张纸上打印多页。" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "自定义" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "选择每张纸打印多少页。" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "页面:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "选择行数。" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "按" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "选择列数。" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "边距:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "选择各张纸中各页面的边距。" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "页面之间" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "距离:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "选择打印页面与纸张边缘的边距。" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "到纸张边沿" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "顺序:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "从左往右,再往下" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "从上往下,再往右" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "从上往下,再往左" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "从右往左,再往下" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "选择打印页面的顺序。" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "每页绘制一个边框" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "选中可在各页周围绘制边框。" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "小册子" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "选中可用小册子格式打印文档。" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "排列预览" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "对打印在同一张纸上的各页面如何排列进行更改。预览会显示每张纸最后的打印效果。" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "更多设置(_O)" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "页面布局" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "常规" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "打印当前文档、选择的内容或指定的页面。您也可以为当前文档设置打印选项。" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/chart2/messages.po libreoffice-7.3.5/translations/source/zh-TW/chart2/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-09-13 16:36+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" @@ -3602,7 +3602,7 @@ msgstr "設定柱狀與線條圖表類型的線條數。" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "選取基本圖表類型。" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/cui/messages.po libreoffice-7.3.5/translations/source/zh-TW/cui/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-21 11:44+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" @@ -17137,176 +17137,152 @@ msgid "Automatic" msgstr "自動" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "Galaxy" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "高對比" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "Oxygen" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "Classic" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "Sifr" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "Breeze" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "指定工具列與對話方塊中的圖示樣式。" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "圖示樣式(_T):" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "透過擴充套件新增更多圖示主題" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "圖示樣式" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "需要重新啟動" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "使用硬體加速功能(_W)" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "直接存取圖形顯示配接卡的硬體功能,可改善螢幕顯示的效果。" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "使用邊緣圓滑設定(_L)" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "您可以啟用與停用圖形的邊緣圓滑設定 (若支援此功能)。啟用邊緣圓滑設定後,大部分的圖形物件看起來會較為平滑,而較少人工痕跡。" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "使用 Skia 作為所有算繪之用" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "強制使用 Skia 軟體算繪" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "需要重新啟動。啟用此功能將阻止使用圖形顯示驅動程式。" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "目前已啟用 Skia。" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "目前已停用 Skia。" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "圖形輸出" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "顯示字型預覽(_R)" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "顯示對應字型中可選字型的名稱,例如格式列上的「字型」方塊中的字型。" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "平滑式螢幕字型(_G)" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "選取以將螢幕文字外觀平滑化。" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "從(_M):" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "輸入最要套用邊緣圓滑的最小字型大小。" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "字型清單" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "執行圖形測試" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/dbaccess/messages.po libreoffice-7.3.5/translations/source/zh-TW/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2021-12-02 07:52+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \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.8.1\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565101964.000000\n" #. BiN6g @@ -3395,73 +3395,73 @@ msgstr "建立新資料庫(_E)" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "選取以建立新資料庫。" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "嵌入式資料庫(_E):" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "開啟既有資料庫檔案(_F)" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "從最近使用的檔案清單或檔案選取對話方塊中選取以開啟資料庫檔案。" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "最近使用(_R):" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "從最近使用的檔案清單中選取資料庫檔案以開啟。點按「完成」以立即開啟檔案並退出精靈。" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "開啟" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "開啟檔案選取對話方塊,您可以在那裡選取資料庫檔案。在檔案選取對話方塊中點按「開啟」或「確定」以立即開啟檔案並退出精靈。" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "連接至既有資料庫(_X)" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "選取以為既有的資料庫連線建立資料庫文件。" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "為既有的資料庫連線選取資料庫類型。" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3471,7 +3471,7 @@ "也沒有 Firebird。" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "資料庫精靈會建立包含關於資料庫的資訊之資料庫檔案。" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/extensions/messages.po libreoffice-7.3.5/translations/source/zh-TW/extensions/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-11-05 04:42+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: Chinese (Traditional) \n" @@ -291,536 +291,524 @@ msgid "Refresh form" msgstr "重整表單" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "取得" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "張貼" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "網址" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "多部" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "文字" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "標準 (短)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "標準 (短 YY)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "標準 (短 YYYY)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "標準 (長)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "DD/MM/YY" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "MM/DD/YY" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "YY/MM/DD" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "YY-MM-DD" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "13:45" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "13:45:00" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "01:45 PM" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "01:45:00 PM" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "未選取" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "已選取" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "未定義" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "所有記錄條目" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "使用中記錄條目" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "目前的頁面" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "否" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "是" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "親代表單" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "空白(_B)" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "親代(_P)" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "自我(_S)" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "上層(_T)" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "無" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "單行" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "多行" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "範圍" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "水平" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "垂直" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "預設" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "確定" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "取消" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "說明" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "選取的條目" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "所選條目的位置" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "單行" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "多行" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "多行附帶格式設定" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "無" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "水平" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "垂直" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "兩者" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "扁平" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "左頂" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "左中" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "左底" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "右頂" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "右中" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "右底" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "左上" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "中上" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "右上" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "左下" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "中下" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "右下" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "置中" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "保留" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "替換" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "收闔" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "無" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "維持比例" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "適應大小" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "由左至右" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "由右至左" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "使用上層物件的設定" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "永不" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "當聚焦時" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "總是" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "至段落" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "作為字元" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "至頁面" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "至外框" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "至字元" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "至頁面" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" msgstr "至儲存格" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/fpicker/messages.po libreoffice-7.3.5/translations/source/zh-TW/fpicker/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2021-02-15 15:38+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: Chinese (Traditional) \n" @@ -216,55 +216,55 @@ msgstr "修改日期" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "開啟(_O)" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "播放(_P)" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "檔案名稱(_N):" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "檔案類型(_T):" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "唯讀(_R)" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "使用密碼儲存" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "自動加上副檔名(_A)" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "編輯篩選器設定(_F)" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "以 GPG 金鑰加密" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/sc/messages.po libreoffice-7.3.5/translations/source/zh-TW/sc/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1557418135.000000\n" #. kBovX @@ -25249,97 +25249,97 @@ msgstr "檢視(~V)" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "影像(_A)" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "影像(~G)" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "繪圖(_R)" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "繪圖(~D)" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "物件" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "物件(~O)" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "媒體(_M)" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "媒體(~M)" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "列印" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "列印(~P)" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "表單(_R)" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "表單(~R)" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "擴充套件(_X)" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "擴充套件(~X)" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" @@ -25698,139 +25698,139 @@ msgstr "影像(_A)" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "編排(_A)" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "色彩(_O)" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "網格(_G)" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "語言(_L)" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "校閱(_R)" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "評註(_C)" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "比較(_P)" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "檢視(_V)" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "繪圖(_R)" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "編輯(_E)" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "編排(_A)" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "檢視(_V)" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "群組(_P)" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "3_D" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "字型(_O)" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "對齊(_A)" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "檢視(_V)" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "插入(_I)" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "媒體(_M)" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "外框(_R)" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "編排(_A)" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "網格(_G)" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" msgstr "檢視(_V)" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/sd/messages.po libreoffice-7.3.5/translations/source/zh-TW/sd/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2022-06-01 09:37+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \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.12.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554782162.000000\n" #. WDjkB @@ -4172,109 +4172,109 @@ msgstr "表格(~T)" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "影像" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "影像(~G)" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "繪圖(_R)" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "繪圖(~D)" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "物件" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "物件(~O)" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "媒體(_M)" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "媒體(~M)" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "表單(_R)" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "表單(~R)" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "母片(_M)" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "母片(~M)" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "3_D" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "3~D" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "擴充套件(_X)" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "擴充套件(~X)" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" @@ -7061,109 +7061,109 @@ msgstr "表格(~T)" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "影像" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "影像(~G)" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "繪圖(_R)" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "繪圖(~D)" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "物件" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "物件(~O)" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "媒體(_M)" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "媒體(~M)" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "表單(_R)" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "表單(~R)" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "母片(_M)" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "母片(~M)" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "3_D" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "3~D" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "擴充套件(_X)" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "擴充套件(~X)" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "工具(_T)" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "工具(~T)" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/sw/messages.po libreoffice-7.3.5/translations/source/zh-TW/sw/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2021-12-14 18:38+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" @@ -10492,19 +10492,19 @@ msgstr "在索引階層中將所選段落樣式向下移動一級。" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "樣式" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "樣式" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "從特定的段落樣式中建立索引條目。" @@ -13948,37 +13948,37 @@ msgstr "替換資料庫" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 msgctxt "exchangedatabases|define" msgid "Define" msgstr "定義" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "所使用的資料庫" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "可用的資料庫(_A)" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "瀏覽..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "開啟檔案開啟對話方塊以選取資料庫檔案 (*.odb)。選取的檔案會新增至可用的資料庫清單。" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -13988,31 +13988,31 @@ "使用瀏覽按鈕以選取資料庫檔案。" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "列出目前正在使用的資料庫。" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "列出在 %PRODUCTNAME 中註冊的資料庫。" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "替換資料庫" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "文件使用的資料庫:" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "變更目前文件的資料來源。" @@ -20066,109 +20066,109 @@ msgstr "使用目前的文件(_D)" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "使用目前的 Writer 文件作為合併列印文件的基礎。" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "建立新文件(_W)" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "建立新的 Writer 文件以供合併列印之用。" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "從現有文件開始(_E)" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "選取現有的 Writer 文件作為合併列印文件的基礎。" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "從範本開始(_E)" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "選取建立合併列印文件時想要使用的範本。" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "從最近儲存的開始文件開始(_M)" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "使用現有的合併列印文件作為建立新合併列印文件的基礎。" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "選取此文件。" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "瀏覽(_R)..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "定位您想要使用的 Writer 文件,接著點擊 開啟。" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "瀏覽(_R)..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "開啟範本選擇器對話方塊。" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "目前文件的資料來源未註冊。請交換資料庫。" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "交換資料庫……" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "選取郵件合併列印的起始文件" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "指定要作為合併郵件基礎的文件。" @@ -22311,49 +22311,49 @@ msgstr "物件" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "類型" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "選項" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "環繞" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "超連結" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "邊框" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "區塊" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "透明度" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "巨集" @@ -27049,7 +27049,7 @@ msgstr "更新" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "顯示目前檔案的統計資料。" diff -Nru libreoffice-7.3.4/translations/source/zh-TW/vcl/messages.po libreoffice-7.3.5/translations/source/zh-TW/vcl/messages.po --- libreoffice-7.3.4/translations/source/zh-TW/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zh-TW/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2021-09-13 16:36+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" @@ -2324,169 +2324,169 @@ msgstr "每張紙列印多頁。" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 msgctxt "printdialog|liststore1" msgid "Custom" msgstr "自訂" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "選取每張紙要印多少頁。" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "頁數:" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "選取列數。" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "乘" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "選取欄數。" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "邊距:" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "選取每張紙上每個列印的頁面間的邊距。" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "於各頁之間" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "距離:" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "選取列印的頁面與頁面邊緣間的邊距。" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "於紙張邊緣" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "順序:" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "由左至右,再向下" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "由上至下,再向右" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "由上至下,再向左" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "由右至左,再向下" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "選取列印頁面的順序。" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "每一頁邊緣繪上框線" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "勾選以在每個頁面週邊繪製邊框。" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "小手冊" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "選取以小手冊格式列印文件。" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "排序分頁預覽" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "更改要在每張紙上列印頁面的排列方式。預覽會顯示每張紙最終的外觀。" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "更多(_O)" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "頁面的版面配置" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "一般" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "列印目前文件、選取內容或指定的頁面。您還可以為目前文件設定列印選項。" diff -Nru libreoffice-7.3.4/translations/source/zu/chart2/messages.po libreoffice-7.3.5/translations/source/zu/chart2/messages.po --- libreoffice-7.3.4/translations/source/zu/chart2/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/chart2/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-10-21 19:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3713,7 +3713,7 @@ msgstr "" #. M2sxB -#: chart2/uiconfig/ui/tp_ChartType.ui:503 +#: chart2/uiconfig/ui/tp_ChartType.ui:504 msgctxt "tp_ChartType|extended_tip|charttype" msgid "Select a basic chart type." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/cui/messages.po libreoffice-7.3.5/translations/source/zu/cui/messages.po --- libreoffice-7.3.4/translations/source/zu/cui/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/cui/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:20+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -17581,176 +17581,152 @@ msgid "Automatic" msgstr "Ngokuzenzekelayo" -#. HEZbQ -#: cui/uiconfig/ui/optviewpage.ui:419 -msgctxt "optviewpage|iconstyle" -msgid "Galaxy" -msgstr "" - -#. RNRKB -#: cui/uiconfig/ui/optviewpage.ui:420 -msgctxt "optviewpage|iconstyle" -msgid "High Contrast" -msgstr "" - -#. fr4NS -#: cui/uiconfig/ui/optviewpage.ui:421 -msgctxt "optviewpage|iconstyle" -msgid "Oxygen" -msgstr "" - -#. CGhUk -#: cui/uiconfig/ui/optviewpage.ui:422 -msgctxt "optviewpage|iconstyle" -msgid "Classic" -msgstr "" - #. biYuj -#: cui/uiconfig/ui/optviewpage.ui:423 +#: cui/uiconfig/ui/optviewpage.ui:419 msgctxt "optviewpage|iconstyle" msgid "Sifr" msgstr "" #. Erw8o -#: cui/uiconfig/ui/optviewpage.ui:424 +#: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" msgstr "" #. dDE86 -#: cui/uiconfig/ui/optviewpage.ui:428 +#: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." msgstr "" #. anMTd -#: cui/uiconfig/ui/optviewpage.ui:441 +#: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" msgstr "" #. StBQN -#: cui/uiconfig/ui/optviewpage.ui:456 +#: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" msgstr "" #. eMqmK -#: cui/uiconfig/ui/optviewpage.ui:472 +#: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Style" msgstr "" #. stYtM -#: cui/uiconfig/ui/optviewpage.ui:507 +#: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|grid3|tooltip_text" msgid "Requires restart" msgstr "" #. R2ZAF -#: cui/uiconfig/ui/optviewpage.ui:513 +#: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "optviewpage|useaccel" msgid "Use hard_ware acceleration" msgstr "" #. qw73y -#: cui/uiconfig/ui/optviewpage.ui:522 +#: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." msgstr "" #. 2MWvd -#: cui/uiconfig/ui/optviewpage.ui:533 +#: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" msgstr "" #. fUKV9 -#: cui/uiconfig/ui/optviewpage.ui:542 +#: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." msgstr "" #. ppJKg -#: cui/uiconfig/ui/optviewpage.ui:553 +#: cui/uiconfig/ui/optviewpage.ui:549 msgctxt "optviewpage|useskia" msgid "Use Skia for all rendering" msgstr "" #. RFqrA -#: cui/uiconfig/ui/optviewpage.ui:567 +#: cui/uiconfig/ui/optviewpage.ui:563 msgctxt "optviewpage|forceskiaraster" msgid "Force Skia software rendering" msgstr "" #. DTMxy -#: cui/uiconfig/ui/optviewpage.ui:571 +#: cui/uiconfig/ui/optviewpage.ui:567 msgctxt "optviewpage|forceskia|tooltip_text" msgid "Requires restart. Enabling this will prevent the use of graphics drivers." msgstr "" #. 5pA7K -#: cui/uiconfig/ui/optviewpage.ui:585 +#: cui/uiconfig/ui/optviewpage.ui:581 msgctxt "optviewpage|skiaenabled" msgid "Skia is currently enabled." msgstr "" #. yDGEV -#: cui/uiconfig/ui/optviewpage.ui:597 +#: cui/uiconfig/ui/optviewpage.ui:593 msgctxt "optviewpage|skiadisabled" msgid "Skia is currently disabled." msgstr "" #. sy9iz -#: cui/uiconfig/ui/optviewpage.ui:611 +#: cui/uiconfig/ui/optviewpage.ui:607 msgctxt "optviewpage|label2" msgid "Graphics Output" msgstr "" #. B6DLD -#: cui/uiconfig/ui/optviewpage.ui:639 +#: cui/uiconfig/ui/optviewpage.ui:635 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" msgstr "" #. 7Qidy -#: cui/uiconfig/ui/optviewpage.ui:648 +#: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." msgstr "" #. 2FKuk -#: cui/uiconfig/ui/optviewpage.ui:659 +#: cui/uiconfig/ui/optviewpage.ui:655 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" msgstr "" #. 5QEjG -#: cui/uiconfig/ui/optviewpage.ui:668 +#: cui/uiconfig/ui/optviewpage.ui:664 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." msgstr "" #. 7dYGb -#: cui/uiconfig/ui/optviewpage.ui:689 +#: cui/uiconfig/ui/optviewpage.ui:685 msgctxt "optviewpage|aafrom" msgid "fro_m:" msgstr "" #. nLvZy -#: cui/uiconfig/ui/optviewpage.ui:707 +#: cui/uiconfig/ui/optviewpage.ui:703 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing to." msgstr "" #. uZALs -#: cui/uiconfig/ui/optviewpage.ui:728 +#: cui/uiconfig/ui/optviewpage.ui:724 msgctxt "optviewpage|label5" msgid "Font Lists" msgstr "" #. BgCZE -#: cui/uiconfig/ui/optviewpage.ui:742 +#: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/dbaccess/messages.po libreoffice-7.3.5/translations/source/zu/dbaccess/messages.po --- libreoffice-7.3.4/translations/source/zu/dbaccess/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/dbaccess/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:51+0200\n" "PO-Revision-Date: 2018-04-24 11:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3422,75 +3422,75 @@ msgstr "" #. AxE5z -#: dbaccess/uiconfig/ui/generalpagewizard.ui:71 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:72 msgctxt "generalpagewizard|extended_tip|createDatabase" msgid "Select to create a new database." msgstr "" #. BRSfR -#: dbaccess/uiconfig/ui/generalpagewizard.ui:90 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:91 #, fuzzy msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" msgstr "Idatabheysi Efakwe Phakathi" #. S2RBe -#: dbaccess/uiconfig/ui/generalpagewizard.ui:120 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:121 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" msgstr "" #. qBi4U -#: dbaccess/uiconfig/ui/generalpagewizard.ui:130 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:131 msgctxt "generalpagewizard|extended_tip|openExistingDatabase" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." msgstr "" #. dfae2 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:149 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:150 #, fuzzy msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" msgstr "Okusanda Kusetshenziswa" #. bxkCC -#: dbaccess/uiconfig/ui/generalpagewizard.ui:174 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:175 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." msgstr "" #. dVAEy -#: dbaccess/uiconfig/ui/generalpagewizard.ui:185 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:186 msgctxt "generalpagewizard|openDatabase" msgid "Open" msgstr "Vula" #. 6A3Fu -#: dbaccess/uiconfig/ui/generalpagewizard.ui:194 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:195 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." msgstr "" #. cKpTp -#: dbaccess/uiconfig/ui/generalpagewizard.ui:205 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:206 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" msgstr "" #. 8uBqf -#: dbaccess/uiconfig/ui/generalpagewizard.ui:215 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:216 msgctxt "generalpagewizard|extended_tip|connectDatabase" msgid "Select to create a database document for an existing database connection." msgstr "" #. CYq28 -#: dbaccess/uiconfig/ui/generalpagewizard.ui:232 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:233 msgctxt "generalpagewizard|extended_tip|datasourceType" msgid "Select the database type for the existing database connection." msgstr "" #. emqeD -#: dbaccess/uiconfig/ui/generalpagewizard.ui:255 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:256 msgctxt "generalpagewizard|noembeddeddbLabel" msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" @@ -3498,7 +3498,7 @@ msgstr "" #. n2DxH -#: dbaccess/uiconfig/ui/generalpagewizard.ui:265 +#: dbaccess/uiconfig/ui/generalpagewizard.ui:266 msgctxt "generalpagewizard|extended_tip|PageGeneral" msgid "The Database Wizard creates a database file that contains information about a database." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/extensions/messages.po libreoffice-7.3.5/translations/source/zu/extensions/messages.po --- libreoffice-7.3.4/translations/source/zu/extensions/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/extensions/messages.po 2022-07-15 19:12:51.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-11-19 15:43+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-11-12 12:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -303,575 +303,561 @@ msgid "Refresh form" msgstr "" -#. 5vCEP -#: extensions/inc/stringarrays.hrc:81 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Get" -msgstr "Thola" - -#. BJD3u -#: extensions/inc/stringarrays.hrc:82 -#, fuzzy -msgctxt "RID_RSC_ENUM_SUBMIT_METHOD" -msgid "Post" -msgstr "Insika" - #. o9DBE -#: extensions/inc/stringarrays.hrc:87 +#: extensions/inc/stringarrays.hrc:81 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "URL" msgstr "URL" #. 3pmDf -#: extensions/inc/stringarrays.hrc:88 +#: extensions/inc/stringarrays.hrc:82 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Multipart" msgstr "" #. pBQpv -#: extensions/inc/stringarrays.hrc:89 +#: extensions/inc/stringarrays.hrc:83 msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING" msgid "Text" msgstr "Umbhalo" #. jDMbK -#: extensions/inc/stringarrays.hrc:94 +#: extensions/inc/stringarrays.hrc:88 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short)" msgstr "Okuvamile (okufushane)" #. 22W6Q -#: extensions/inc/stringarrays.hrc:95 +#: extensions/inc/stringarrays.hrc:89 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YY)" msgstr "Okuvamile (okufushane)" #. HDau6 -#: extensions/inc/stringarrays.hrc:96 +#: extensions/inc/stringarrays.hrc:90 #, fuzzy msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (short YYYY)" msgstr "Okuvamile (okufushane)" #. DCJNC -#: extensions/inc/stringarrays.hrc:97 +#: extensions/inc/stringarrays.hrc:91 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "Standard (long)" msgstr "Okuvamile (okude)" #. DmUmW -#: extensions/inc/stringarrays.hrc:98 +#: extensions/inc/stringarrays.hrc:92 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YY" msgstr "" #. GyoSx -#: extensions/inc/stringarrays.hrc:99 +#: extensions/inc/stringarrays.hrc:93 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YY" msgstr "" #. PHRWs -#: extensions/inc/stringarrays.hrc:100 +#: extensions/inc/stringarrays.hrc:94 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY/MM/DD" msgstr "" #. 5EDt6 -#: extensions/inc/stringarrays.hrc:101 +#: extensions/inc/stringarrays.hrc:95 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "DD/MM/YYYY" msgstr "" #. FdnkZ -#: extensions/inc/stringarrays.hrc:102 +#: extensions/inc/stringarrays.hrc:96 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "MM/DD/YYYY" msgstr "" #. VATg7 -#: extensions/inc/stringarrays.hrc:103 +#: extensions/inc/stringarrays.hrc:97 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY/MM/DD" msgstr "" #. rUJHq -#: extensions/inc/stringarrays.hrc:104 +#: extensions/inc/stringarrays.hrc:98 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YY-MM-DD" msgstr "" #. 7vYP9 -#: extensions/inc/stringarrays.hrc:105 +#: extensions/inc/stringarrays.hrc:99 msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST" msgid "YYYY-MM-DD" msgstr "" #. E9sny -#: extensions/inc/stringarrays.hrc:110 +#: extensions/inc/stringarrays.hrc:104 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45" msgstr "" #. d2sW3 -#: extensions/inc/stringarrays.hrc:111 +#: extensions/inc/stringarrays.hrc:105 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "13:45:00" msgstr "" #. v6Dq4 -#: extensions/inc/stringarrays.hrc:112 +#: extensions/inc/stringarrays.hrc:106 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45 PM" msgstr "" #. dSe7J -#: extensions/inc/stringarrays.hrc:113 +#: extensions/inc/stringarrays.hrc:107 msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST" msgid "01:45:00 PM" msgstr "" #. XzT95 -#: extensions/inc/stringarrays.hrc:118 +#: extensions/inc/stringarrays.hrc:112 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Selected" msgstr "" #. sJ8zY -#: extensions/inc/stringarrays.hrc:119 +#: extensions/inc/stringarrays.hrc:113 #, fuzzy msgctxt "RID_RSC_ENUM_CHECKED" msgid "Selected" msgstr "Khetha" #. aHu75 -#: extensions/inc/stringarrays.hrc:120 +#: extensions/inc/stringarrays.hrc:114 msgctxt "RID_RSC_ENUM_CHECKED" msgid "Not Defined" msgstr "" #. mhVDA -#: extensions/inc/stringarrays.hrc:125 +#: extensions/inc/stringarrays.hrc:119 msgctxt "RID_RSC_ENUM_CYCLE" msgid "All records" msgstr "" #. eA5iU -#: extensions/inc/stringarrays.hrc:126 +#: extensions/inc/stringarrays.hrc:120 msgctxt "RID_RSC_ENUM_CYCLE" msgid "Active record" msgstr "" #. Vkvj9 -#: extensions/inc/stringarrays.hrc:127 +#: extensions/inc/stringarrays.hrc:121 #, fuzzy msgctxt "RID_RSC_ENUM_CYCLE" msgid "Current page" msgstr "Usuku Lwamanje" #. KhEqV -#: extensions/inc/stringarrays.hrc:132 +#: extensions/inc/stringarrays.hrc:126 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" msgstr "Cha" #. qS8rc -#: extensions/inc/stringarrays.hrc:133 +#: extensions/inc/stringarrays.hrc:127 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Yes" msgstr "Yebo" #. aJXyh -#: extensions/inc/stringarrays.hrc:134 +#: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "Parent Form" msgstr "" #. SiMYZ -#: extensions/inc/stringarrays.hrc:139 +#: extensions/inc/stringarrays.hrc:133 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_blank" msgstr "" #. AcsCf -#: extensions/inc/stringarrays.hrc:140 +#: extensions/inc/stringarrays.hrc:134 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" msgstr "" #. pQZAG -#: extensions/inc/stringarrays.hrc:141 +#: extensions/inc/stringarrays.hrc:135 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" msgstr "" #. FwYDV -#: extensions/inc/stringarrays.hrc:142 +#: extensions/inc/stringarrays.hrc:136 #, fuzzy msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" msgstr "Misa" #. UEAHA -#: extensions/inc/stringarrays.hrc:147 +#: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "None" msgstr "Lutho" #. YnZQA -#: extensions/inc/stringarrays.hrc:148 +#: extensions/inc/stringarrays.hrc:142 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Single" msgstr "Okukodwa" #. EMYwE -#: extensions/inc/stringarrays.hrc:149 +#: extensions/inc/stringarrays.hrc:143 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Multi" msgstr "" #. 2x8ru -#: extensions/inc/stringarrays.hrc:150 +#: extensions/inc/stringarrays.hrc:144 #, fuzzy msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" msgstr "Umbandela" #. 8dCg5 -#: extensions/inc/stringarrays.hrc:155 +#: extensions/inc/stringarrays.hrc:149 #, fuzzy msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Horizontal" msgstr "Ngokuvundlile" #. Z5BR2 -#: extensions/inc/stringarrays.hrc:156 +#: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_ORIENTATION" msgid "Vertical" msgstr "Okumile" #. BFfMD -#: extensions/inc/stringarrays.hrc:161 +#: extensions/inc/stringarrays.hrc:155 #, fuzzy msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" msgstr "Okwendalo" #. eponH -#: extensions/inc/stringarrays.hrc:162 +#: extensions/inc/stringarrays.hrc:156 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "OK" msgstr "Kulungile" #. UkTKy -#: extensions/inc/stringarrays.hrc:163 +#: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Cancel" msgstr "Nqamula" #. yG859 -#: extensions/inc/stringarrays.hrc:164 +#: extensions/inc/stringarrays.hrc:158 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Help" msgstr "Usizo" #. vgkaF -#: extensions/inc/stringarrays.hrc:169 +#: extensions/inc/stringarrays.hrc:163 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "The selected entry" msgstr "" #. pEAGX -#: extensions/inc/stringarrays.hrc:170 +#: extensions/inc/stringarrays.hrc:164 msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE" msgid "Position of the selected entry" msgstr "" #. Z2Rwm -#: extensions/inc/stringarrays.hrc:175 +#: extensions/inc/stringarrays.hrc:169 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Single-line" msgstr "Okunolayini owodwa" #. 7MQto -#: extensions/inc/stringarrays.hrc:176 +#: extensions/inc/stringarrays.hrc:170 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line" msgstr "Okunolayini abaningi" #. 6D2rQ -#: extensions/inc/stringarrays.hrc:177 +#: extensions/inc/stringarrays.hrc:171 #, fuzzy msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" msgstr "Okunolayini abaningi nokufometha" #. NkEBb -#: extensions/inc/stringarrays.hrc:182 +#: extensions/inc/stringarrays.hrc:176 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "LF (Unix)" msgstr "I-LF (Unix)" #. FfSEG -#: extensions/inc/stringarrays.hrc:183 +#: extensions/inc/stringarrays.hrc:177 #, fuzzy msgctxt "RID_RSC_ENUM_LINEEND_FORMAT" msgid "CR+LF (Windows)" msgstr "CR+LF (Windows)" #. A4N7i -#: extensions/inc/stringarrays.hrc:188 +#: extensions/inc/stringarrays.hrc:182 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "None" msgstr "Lutho" #. ghkcH -#: extensions/inc/stringarrays.hrc:189 +#: extensions/inc/stringarrays.hrc:183 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Horizontal" msgstr "Ngokuvundlile" #. YNNCf -#: extensions/inc/stringarrays.hrc:190 +#: extensions/inc/stringarrays.hrc:184 msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Vertical" msgstr "Okumile" #. gWynn -#: extensions/inc/stringarrays.hrc:191 +#: extensions/inc/stringarrays.hrc:185 #, fuzzy msgctxt "RID_RSC_ENUM_SCROLLBARS" msgid "Both" msgstr "Kokubili" #. GLuPa -#: extensions/inc/stringarrays.hrc:196 +#: extensions/inc/stringarrays.hrc:190 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "3D" msgstr "3D" #. TFnZJ -#: extensions/inc/stringarrays.hrc:197 +#: extensions/inc/stringarrays.hrc:191 msgctxt "RID_RSC_ENUM_VISUALEFFECT" msgid "Flat" msgstr "Kuyisicaba" #. PmSDw -#: extensions/inc/stringarrays.hrc:202 +#: extensions/inc/stringarrays.hrc:196 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left top" msgstr "Kwesobunxele phezulu" #. j3mHa -#: extensions/inc/stringarrays.hrc:203 +#: extensions/inc/stringarrays.hrc:197 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left centered" msgstr "Kwesobunxele phakathi" #. FinKD -#: extensions/inc/stringarrays.hrc:204 +#: extensions/inc/stringarrays.hrc:198 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Left bottom" msgstr "Kwesobunxele ezansi" #. EgCsU -#: extensions/inc/stringarrays.hrc:205 +#: extensions/inc/stringarrays.hrc:199 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right top" msgstr "Kwesokudla phezulu" #. t54wS -#: extensions/inc/stringarrays.hrc:206 +#: extensions/inc/stringarrays.hrc:200 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right centered" msgstr "Kwesokudla phakathi" #. H8u3j -#: extensions/inc/stringarrays.hrc:207 +#: extensions/inc/stringarrays.hrc:201 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Right bottom" msgstr "Kwesokudla ezansi" #. jhRkY -#: extensions/inc/stringarrays.hrc:208 +#: extensions/inc/stringarrays.hrc:202 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above left" msgstr "Phezulu kwesobunxele" #. dmgVh -#: extensions/inc/stringarrays.hrc:209 +#: extensions/inc/stringarrays.hrc:203 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above centered" msgstr "Phezulu phakathi" #. AGtAi -#: extensions/inc/stringarrays.hrc:210 +#: extensions/inc/stringarrays.hrc:204 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Above right" msgstr "Phezulu kwesokudla" #. F2XCu -#: extensions/inc/stringarrays.hrc:211 +#: extensions/inc/stringarrays.hrc:205 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below left" msgstr "Ezansi kwesobunxele" #. 4JdJh -#: extensions/inc/stringarrays.hrc:212 +#: extensions/inc/stringarrays.hrc:206 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below centered" msgstr "Ezansi phakathi" #. chEB2 -#: extensions/inc/stringarrays.hrc:213 +#: extensions/inc/stringarrays.hrc:207 #, fuzzy msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Below right" msgstr "Ezansi kwesokudla" #. GBHDS -#: extensions/inc/stringarrays.hrc:214 +#: extensions/inc/stringarrays.hrc:208 msgctxt "RID_RSC_ENUM_IMAGE_POSITION" msgid "Centered" msgstr "Phakathi nendawo" #. tB6AD -#: extensions/inc/stringarrays.hrc:219 +#: extensions/inc/stringarrays.hrc:213 #, fuzzy msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Preserve" msgstr "Londa" #. CABAr -#: extensions/inc/stringarrays.hrc:220 +#: extensions/inc/stringarrays.hrc:214 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" msgstr "Shintshanisa" #. MQHED -#: extensions/inc/stringarrays.hrc:221 +#: extensions/inc/stringarrays.hrc:215 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Collapse" msgstr "Wisa" #. 2Kaax -#: extensions/inc/stringarrays.hrc:226 +#: extensions/inc/stringarrays.hrc:220 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" msgstr "Cha" #. aKBSe -#: extensions/inc/stringarrays.hrc:227 +#: extensions/inc/stringarrays.hrc:221 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Keep Ratio" msgstr "" #. FHmy6 -#: extensions/inc/stringarrays.hrc:228 +#: extensions/inc/stringarrays.hrc:222 #, fuzzy msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "Fit to Size" msgstr "Linganisa kulayini" #. 9YCAp -#: extensions/inc/stringarrays.hrc:233 +#: extensions/inc/stringarrays.hrc:227 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Left-to-right" msgstr "Ngakwesokunxele kuya ngakwesokudla" #. xGDY3 -#: extensions/inc/stringarrays.hrc:234 +#: extensions/inc/stringarrays.hrc:228 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Right-to-left" msgstr "Kwesokudla kuya kwesokunxele" #. 4qSdq -#: extensions/inc/stringarrays.hrc:235 +#: extensions/inc/stringarrays.hrc:229 msgctxt "RID_RSC_ENUM_WRITING_MODE" msgid "Use superordinate object settings" msgstr "Sebenzisa isilungiselelo selunga eliphakeme" #. LZ36B -#: extensions/inc/stringarrays.hrc:240 +#: extensions/inc/stringarrays.hrc:234 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Never" msgstr "" #. cGY5n -#: extensions/inc/stringarrays.hrc:241 +#: extensions/inc/stringarrays.hrc:235 msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "When focused" msgstr "" #. YXySA -#: extensions/inc/stringarrays.hrc:242 +#: extensions/inc/stringarrays.hrc:236 #, fuzzy msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR" msgid "Always" msgstr "Njalo" #. kFhs9 -#: extensions/inc/stringarrays.hrc:247 +#: extensions/inc/stringarrays.hrc:241 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" msgstr "Endikimbeni" #. WZ2Yp -#: extensions/inc/stringarrays.hrc:248 +#: extensions/inc/stringarrays.hrc:242 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "As Character" msgstr "Njengophawu" #. CXbfQ -#: extensions/inc/stringarrays.hrc:249 +#: extensions/inc/stringarrays.hrc:243 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Page" msgstr "Ekhasini" #. cQn8Y -#: extensions/inc/stringarrays.hrc:250 +#: extensions/inc/stringarrays.hrc:244 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Frame" msgstr "Esakhelweni" #. 5nPDY -#: extensions/inc/stringarrays.hrc:251 +#: extensions/inc/stringarrays.hrc:245 #, fuzzy msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" msgstr "Ophawini" #. SrTFR -#: extensions/inc/stringarrays.hrc:256 +#: extensions/inc/stringarrays.hrc:250 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Page" msgstr "Ekhasini" #. UyCfS -#: extensions/inc/stringarrays.hrc:257 +#: extensions/inc/stringarrays.hrc:251 #, fuzzy msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE" msgid "To Cell" diff -Nru libreoffice-7.3.4/translations/source/zu/fpicker/messages.po libreoffice-7.3.5/translations/source/zu/fpicker/messages.po --- libreoffice-7.3.4/translations/source/zu/fpicker/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/fpicker/messages.po 2022-07-15 19:12:51.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-11-16 12:08+0100\n" +"POT-Creation-Date: 2022-07-01 11:52+0200\n" "PO-Revision-Date: 2018-10-02 16:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -214,61 +214,61 @@ msgstr "" #. vQEZt -#: fpicker/uiconfig/ui/explorerfiledialog.ui:503 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:493 msgctxt "explorerfiledialog|open" msgid "_Open" msgstr "" #. JnE2t -#: fpicker/uiconfig/ui/explorerfiledialog.ui:550 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:540 msgctxt "explorerfiledialog|play" msgid "_Play" msgstr "" #. dWNqZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:588 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:578 #, fuzzy msgctxt "explorerfiledialog|file_name_label" msgid "File _name:" msgstr "Igama lefayela:" #. 9cjFB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:614 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:604 #, fuzzy msgctxt "explorerfiledialog|file_type_label" msgid "File _type:" msgstr "Uhlobo ~lwefayela" #. quCXH -#: fpicker/uiconfig/ui/explorerfiledialog.ui:678 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:668 #, fuzzy msgctxt "explorerfiledialog|readonly" msgid "_Read-only" msgstr "~Funda kuphela" #. hm2xy -#: fpicker/uiconfig/ui/explorerfiledialog.ui:701 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:691 #, fuzzy msgctxt "explorerfiledialog|password" msgid "Save with password" msgstr "Seyva ngephasiwedi" #. 8EYcB -#: fpicker/uiconfig/ui/explorerfiledialog.ui:714 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:704 #, fuzzy msgctxt "explorerfiledialog|extension" msgid "_Automatic file name extension" msgstr "~Isandiso esisenzekelayo segama lefayela" #. 2CgAZ -#: fpicker/uiconfig/ui/explorerfiledialog.ui:727 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:717 #, fuzzy msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" msgstr "Lungisa ~amasethingi okuhluza" #. 6XqLj -#: fpicker/uiconfig/ui/explorerfiledialog.ui:754 +#: fpicker/uiconfig/ui/explorerfiledialog.ui:744 msgctxt "explorerfiledialog|gpgencrypt" msgid "Encrypt with GPG key" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/sc/messages.po libreoffice-7.3.5/translations/source/zu/sc/messages.po --- libreoffice-7.3.4/translations/source/zu/sc/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/sc/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -26223,97 +26223,97 @@ msgstr "" #. dV94w -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 msgctxt "notebookbar_compact|GraphicMenuButton" msgid "Im_age" msgstr "" #. ekWoX -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. 8eQN8 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. FBf68 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" msgstr "" #. DoVwy -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" msgstr "" #. JXKiY -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" msgstr "" #. q8wnS -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" msgstr "" #. 7HDt3 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" msgstr "" #. vSDok -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" msgstr "" #. goiqQ -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" msgstr "" #. EBGs5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" msgstr "" #. EKA8X -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" msgstr "" #. 8SvE5 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. WH5NR -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. 8fhwb -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. kpc43 -#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516 +#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" msgstr "" @@ -26701,156 +26701,156 @@ msgstr "" #. punQr -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrange" msgid "_Arrange" msgstr "Hlela" #. DDTxx -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150 #, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" msgstr "Umbala" #. CHosB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridB" msgid "_Grid" msgstr "Izikwedlana" #. xeUxD -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528 #, fuzzy msgctxt "notebookbar_groupedbar_full|languageb" msgid "_Language" msgstr "Ulimi" #. eBoPL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" msgstr "" #. y4Sg3 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960 #, fuzzy msgctxt "notebookbar_groupedbar_full|commentsb" msgid "_Comments" msgstr "Imibono" #. m9Mxg -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159 msgctxt "notebookbar_groupedbar_full|compareb" msgid "Com_pare" msgstr "" #. ewCjP -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewa" msgid "_View" msgstr "Buka" #. WfzeY -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" msgstr "" #. QNg9L -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143 #, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" msgstr "Lungisa" #. MECyG -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" msgstr "Hlela" #. 9Z4JQ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634 #, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_View" msgstr "Buka" #. 3i55T -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" msgstr "Amaqembu" #. fNGFB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" msgstr "" #. stsit -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277 #, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" msgstr "Ifonti" #. ZDEax -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530 #, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Alignment" msgstr "Ukuqondanisa" #. CVAyh -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewd" msgid "_View" msgstr "Buka" #. h6EHi -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 #, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" msgstr "Faka" #. eLnnF -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" msgstr "" #. dzADL -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252 #, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "F_rame" msgstr "Isakhelo" #. GjFnB -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666 #, fuzzy msgctxt "notebookbar_groupedbar_full|arrageOLE" msgid "_Arrange" msgstr "Hlela" #. DF4U7 -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828 #, fuzzy msgctxt "notebookbar_groupedbar_full|OleGridB" msgid "_Grid" msgstr "Izikwedlana" #. UZ2JJ -#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052 +#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026 #, fuzzy msgctxt "notebookbar_groupedbar_full|viewf" msgid "_View" diff -Nru libreoffice-7.3.4/translations/source/zu/sd/messages.po libreoffice-7.3.5/translations/source/zu/sd/messages.po --- libreoffice-7.3.4/translations/source/zu/sd/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/sd/messages.po 2022-07-15 19:12:51.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-12-21 12:38+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2018-11-12 12:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4252,109 +4252,109 @@ msgstr "" #. EGCcN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "" #. 2eQcW -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. CezAN -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. tAMd5 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "" #. A49xv -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" msgstr "" #. 3gubF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" msgstr "" #. fDRf9 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" msgstr "" #. dAbX4 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" msgstr "" #. SCSH8 -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "" #. vzdXF -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "" #. zEK2o -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. S3huE -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" msgstr "" #. T3Z8R -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" msgstr "" #. ZCuDe -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" msgstr "" #. YpLRj -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. uRrEt -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. L3xmd -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. LhBTk -#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595 +#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "" @@ -7232,109 +7232,109 @@ msgstr "" #. BzXPB -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" msgstr "" #. wD2ow -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" msgstr "" #. ZqPYr -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" msgstr "" #. 78DU3 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" msgstr "" #. uv2FE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" msgstr "" #. FSjqt -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" msgstr "" #. t3Fmv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" msgstr "" #. HbptL -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" msgstr "" #. NNqQ2 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" msgstr "" #. DpFpM -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" msgstr "" #. MNUFm -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" msgstr "" #. NUiWE -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" msgstr "" #. 4f9xG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" msgstr "" #. ntfL7 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" msgstr "" #. ntjaC -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "" #. Tu5f8 -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" msgstr "" #. abvtG -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" msgstr "" #. oKhkv -#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300 +#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/sw/messages.po libreoffice-7.3.5/translations/source/zu/sw/messages.po --- libreoffice-7.3.4/translations/source/zu/sw/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/sw/messages.po 2022-07-15 19:12:51.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: 2022-01-10 12:22+0100\n" +"POT-Creation-Date: 2022-07-01 11:53+0200\n" "PO-Revision-Date: 2019-07-11 19:01+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -10794,20 +10794,20 @@ msgstr "" #. tF4xa -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271 msgctxt "assignstylesdialog|stylecolumn" msgid "Style" msgstr "" #. 3MYjK -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462 #, fuzzy msgctxt "assignstylesdialog|label3" msgid "Styles" msgstr "Izitayela" #. sr78E -#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485 +#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487 msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog" msgid "Creates index entries from specific paragraph styles." msgstr "" @@ -14395,38 +14395,38 @@ msgstr "" #. 9FhYU -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42 #, fuzzy msgctxt "exchangedatabases|define" msgid "Define" msgstr "~Chaza" #. eKsEF -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122 msgctxt "exchangedatabases|label5" msgid "Databases in Use" msgstr "" #. FGFUG -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136 msgctxt "exchangedatabases|label6" msgid "_Available Databases" msgstr "" #. 8KDES -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148 msgctxt "exchangedatabases|browse" msgid "Browse..." msgstr "Cinga..." #. HvR9A -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156 msgctxt "exchangedatabases|extended_tip|browse" msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list." msgstr "" #. ZgGFH -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171 msgctxt "exchangedatabases|label7" msgid "" "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" @@ -14434,31 +14434,31 @@ msgstr "" #. QCPQK -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225 msgctxt "exchangedatabases|extended_tip|inuselb" msgid "Lists the databases that are currently in use." msgstr "" #. FSFCM -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277 msgctxt "exchangedatabases|extended_tip|availablelb" msgid "Lists the databases that are registered in %PRODUCTNAME." msgstr "" #. ZzrDA -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297 msgctxt "exchangedatabases|label1" msgid "Exchange Databases" msgstr "" #. VmBvL -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" msgstr "" #. ZiC8Q -#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364 +#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362 msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog" msgid "Change the data sources for the current document." msgstr "" @@ -20784,111 +20784,111 @@ msgstr "" #. EUVtU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:37 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:38 msgctxt "mmselectpage|extended_tip|currentdoc" msgid "Uses the current Writer document as the base for the mail merge document." msgstr "" #. KUEyG -#: sw/uiconfig/swriter/ui/mmselectpage.ui:48 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:49 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" msgstr "" #. XY8FU -#: sw/uiconfig/swriter/ui/mmselectpage.ui:57 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:58 msgctxt "mmselectpage|extended_tip|newdoc" msgid "Creates a new Writer document to use for the mail merge." msgstr "" #. bATvf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:68 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:69 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" msgstr "" #. MFqCS -#: sw/uiconfig/swriter/ui/mmselectpage.ui:78 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:79 msgctxt "mmselectpage|extended_tip|loaddoc" msgid "Select an existing Writer document to use as the base for the mail merge document." msgstr "" #. GieL3 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:89 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:90 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" msgstr "" #. BxBQF -#: sw/uiconfig/swriter/ui/mmselectpage.ui:99 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:100 msgctxt "mmselectpage|extended_tip|template" msgid "Select the template that you want to create your mail merge document with." msgstr "" #. mSCWL -#: sw/uiconfig/swriter/ui/mmselectpage.ui:110 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:111 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" msgstr "" #. xomYf -#: sw/uiconfig/swriter/ui/mmselectpage.ui:119 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:120 msgctxt "mmselectpage|extended_tip|recentdoc" msgid "Use an existing mail merge document as the base for a new mail merge document." msgstr "" #. JMgbV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:135 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:136 msgctxt "mmselectpage|extended_tip|recentdoclb" msgid "Select the document." msgstr "" #. BUbEr -#: sw/uiconfig/swriter/ui/mmselectpage.ui:146 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:147 #, fuzzy msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." msgstr "Cinga..." #. i7inE -#: sw/uiconfig/swriter/ui/mmselectpage.ui:155 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." msgstr "" #. 3trwP -#: sw/uiconfig/swriter/ui/mmselectpage.ui:166 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:167 #, fuzzy msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." msgstr "Cinga..." #. CdmfM -#: sw/uiconfig/swriter/ui/mmselectpage.ui:175 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:176 msgctxt "mmselectpage|extended_tip|browsetemplate" msgid "Opens a template selector dialog." msgstr "" #. qieQK -#: sw/uiconfig/swriter/ui/mmselectpage.ui:190 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:191 msgctxt "mmselectpage|extended_tip|datasourcewarning" msgid "Data source of the current document is not registered. Please exchange database." msgstr "" #. QcsgV -#: sw/uiconfig/swriter/ui/mmselectpage.ui:199 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:200 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Exchange Database..." msgstr "" #. 8ESAz -#: sw/uiconfig/swriter/ui/mmselectpage.ui:217 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:218 msgctxt "mmselectpage|label1" msgid "Select Starting Document for the Mail Merge" msgstr "" #. Hpca5 -#: sw/uiconfig/swriter/ui/mmselectpage.ui:232 +#: sw/uiconfig/swriter/ui/mmselectpage.ui:233 msgctxt "mmselectpage|extended_tip|MMSelectPage" msgid "Specify the document that you want to use as a base for the mail merge document." msgstr "" @@ -23084,50 +23084,50 @@ msgstr "Into" #. e5VGQ -#: sw/uiconfig/swriter/ui/objectdialog.ui:109 +#: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Type" msgstr "Uhlobo" #. ADJiB -#: sw/uiconfig/swriter/ui/objectdialog.ui:132 +#: sw/uiconfig/swriter/ui/objectdialog.ui:133 msgctxt "objectdialog|options" msgid "Options" msgstr "Izinketho" #. s9Kta -#: sw/uiconfig/swriter/ui/objectdialog.ui:156 +#: sw/uiconfig/swriter/ui/objectdialog.ui:157 #, fuzzy msgctxt "objectdialog|wrap" msgid "Wrap" msgstr "~Goqa" #. vtCHo -#: sw/uiconfig/swriter/ui/objectdialog.ui:180 +#: sw/uiconfig/swriter/ui/objectdialog.ui:181 msgctxt "objectdialog|hyperlink" msgid "Hyperlink" msgstr "Isixhumaniso esiphezulu" #. GquSU -#: sw/uiconfig/swriter/ui/objectdialog.ui:204 +#: sw/uiconfig/swriter/ui/objectdialog.ui:205 msgctxt "objectdialog|borders" msgid "Borders" msgstr "Imingcele" #. L6dGA -#: sw/uiconfig/swriter/ui/objectdialog.ui:228 +#: sw/uiconfig/swriter/ui/objectdialog.ui:229 msgctxt "objectdialog|area" msgid "Area" msgstr "Indawo" #. zJ76x -#: sw/uiconfig/swriter/ui/objectdialog.ui:252 +#: sw/uiconfig/swriter/ui/objectdialog.ui:253 msgctxt "objectdialog|transparence" msgid "Transparency" msgstr "Okubonakalayo" #. FVDe9 -#: sw/uiconfig/swriter/ui/objectdialog.ui:276 +#: sw/uiconfig/swriter/ui/objectdialog.ui:277 msgctxt "objectdialog|macro" msgid "Macro" msgstr "Okukhulu" @@ -28027,7 +28027,7 @@ msgstr "Vuselela" #. LVWDd -#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 +#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." msgstr "" diff -Nru libreoffice-7.3.4/translations/source/zu/vcl/messages.po libreoffice-7.3.5/translations/source/zu/vcl/messages.po --- libreoffice-7.3.4/translations/source/zu/vcl/messages.po 2022-06-01 21:06:16.000000000 +0000 +++ libreoffice-7.3.5/translations/source/zu/vcl/messages.po 2022-07-15 19:12:51.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-11-16 12:10+0100\n" +"POT-Creation-Date: 2022-07-01 11:54+0200\n" "PO-Revision-Date: 2018-11-12 12:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2346,170 +2346,170 @@ msgstr "" #. DKP5g -#: vcl/uiconfig/ui/printdialog.ui:1073 +#: vcl/uiconfig/ui/printdialog.ui:1074 #, fuzzy msgctxt "printdialog|liststore1" msgid "Custom" msgstr "Ukushintsha:" #. duVEo -#: vcl/uiconfig/ui/printdialog.ui:1080 +#: vcl/uiconfig/ui/printdialog.ui:1081 msgctxt "printdialog|extended_tip|pagespersheetbox" msgid "Select how many pages to print per sheet of paper." msgstr "" #. 65WWt -#: vcl/uiconfig/ui/printdialog.ui:1093 +#: vcl/uiconfig/ui/printdialog.ui:1094 msgctxt "printdialog|pagespersheettxt" msgid "Pages:" msgstr "" #. X8bjE -#: vcl/uiconfig/ui/printdialog.ui:1113 +#: vcl/uiconfig/ui/printdialog.ui:1114 msgctxt "printdialog|extended_tip|pagerows" msgid "Select number of rows." msgstr "" #. DM5aX -#: vcl/uiconfig/ui/printdialog.ui:1125 +#: vcl/uiconfig/ui/printdialog.ui:1126 msgctxt "printdialog|by" msgid "by" msgstr "nge" #. Z2EDz -#: vcl/uiconfig/ui/printdialog.ui:1144 +#: vcl/uiconfig/ui/printdialog.ui:1145 msgctxt "printdialog|extended_tip|pagecols" msgid "Select number of columns." msgstr "" #. szcD7 -#: vcl/uiconfig/ui/printdialog.ui:1156 +#: vcl/uiconfig/ui/printdialog.ui:1157 msgctxt "printdialog|pagemargintxt1" msgid "Margin:" msgstr "" #. QxE58 -#: vcl/uiconfig/ui/printdialog.ui:1175 +#: vcl/uiconfig/ui/printdialog.ui:1176 msgctxt "printdialog|extended_tip|pagemarginsb" msgid "Select margin between individual pages on each sheet of paper." msgstr "" #. iGg2m -#: vcl/uiconfig/ui/printdialog.ui:1188 +#: vcl/uiconfig/ui/printdialog.ui:1189 msgctxt "printdialog|pagemargintxt2" msgid "between pages" msgstr "maphakathi namakhasi" #. oryuw -#: vcl/uiconfig/ui/printdialog.ui:1199 +#: vcl/uiconfig/ui/printdialog.ui:1200 msgctxt "printdialog|sheetmargintxt1" msgid "Distance:" msgstr "" #. EDFnW -#: vcl/uiconfig/ui/printdialog.ui:1218 +#: vcl/uiconfig/ui/printdialog.ui:1219 msgctxt "printdialog|extended_tip|sheetmarginsb" msgid "Select margin between the printed pages and paper edge." msgstr "" #. XhfvB -#: vcl/uiconfig/ui/printdialog.ui:1231 +#: vcl/uiconfig/ui/printdialog.ui:1232 msgctxt "printdialog|sheetmargintxt2" msgid "to sheet border" msgstr "kumugqa weshidi" #. AGWe3 -#: vcl/uiconfig/ui/printdialog.ui:1244 +#: vcl/uiconfig/ui/printdialog.ui:1245 msgctxt "printdialog|labelorder" msgid "Order:" msgstr "" #. psAku -#: vcl/uiconfig/ui/printdialog.ui:1261 +#: vcl/uiconfig/ui/printdialog.ui:1262 msgctxt "printdialog|liststore2" msgid "Left to right, then down" msgstr "" #. fnfLt -#: vcl/uiconfig/ui/printdialog.ui:1262 +#: vcl/uiconfig/ui/printdialog.ui:1263 msgctxt "printdialog|liststore2" msgid "Top to bottom, then right" msgstr "" #. y6nZE -#: vcl/uiconfig/ui/printdialog.ui:1263 +#: vcl/uiconfig/ui/printdialog.ui:1264 msgctxt "printdialog|liststore2" msgid "Top to bottom, then left" msgstr "" #. PteTg -#: vcl/uiconfig/ui/printdialog.ui:1264 +#: vcl/uiconfig/ui/printdialog.ui:1265 msgctxt "printdialog|liststore2" msgid "Right to left, then down" msgstr "" #. DvF8r -#: vcl/uiconfig/ui/printdialog.ui:1268 +#: vcl/uiconfig/ui/printdialog.ui:1269 msgctxt "printdialog|extended_tip|orderbox" msgid "Select order in which pages are to be printed." msgstr "" #. QG59F -#: vcl/uiconfig/ui/printdialog.ui:1280 +#: vcl/uiconfig/ui/printdialog.ui:1281 msgctxt "printdialog|bordercb" msgid "Draw a border around each page" msgstr "Dweba umugqa ozungeze ikhasi" #. 8aAGu -#: vcl/uiconfig/ui/printdialog.ui:1289 +#: vcl/uiconfig/ui/printdialog.ui:1290 msgctxt "printdialog|extended_tip|bordercb" msgid "Check to draw a border around each page." msgstr "" #. Yo4xV -#: vcl/uiconfig/ui/printdialog.ui:1301 +#: vcl/uiconfig/ui/printdialog.ui:1302 msgctxt "printdialog|brochure" msgid "Brochure" msgstr "Incwajana yokukhangisa" #. 3zcKq -#: vcl/uiconfig/ui/printdialog.ui:1311 +#: vcl/uiconfig/ui/printdialog.ui:1312 msgctxt "printdialog|extended_tip|brochure" msgid "Select to print the document in brochure format." msgstr "" #. JMA7A -#: vcl/uiconfig/ui/printdialog.ui:1334 +#: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" msgstr "" #. dePkB -#: vcl/uiconfig/ui/printdialog.ui:1339 +#: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." msgstr "" #. fCjdq -#: vcl/uiconfig/ui/printdialog.ui:1361 +#: vcl/uiconfig/ui/printdialog.ui:1362 msgctxt "printdialog|layoutexpander" msgid "M_ore" msgstr "" #. rCBA5 -#: vcl/uiconfig/ui/printdialog.ui:1377 +#: vcl/uiconfig/ui/printdialog.ui:1378 msgctxt "printdialog|label3" msgid "Page Layout" msgstr "" #. A2iC5 -#: vcl/uiconfig/ui/printdialog.ui:1400 +#: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" msgstr "" #. CzGM4 -#: vcl/uiconfig/ui/printdialog.ui:1454 +#: vcl/uiconfig/ui/printdialog.ui:1455 msgctxt "printdialog|extended_tip|PrintDialog" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document." msgstr "" diff -Nru libreoffice-7.3.4/ucb/source/ucp/gio/gio_content.cxx libreoffice-7.3.5/ucb/source/ucp/gio/gio_content.cxx --- libreoffice-7.3.4/ucb/source/ucp/gio/gio_content.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/ucb/source/ucp/gio/gio_content.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -19,6 +19,7 @@ #include +#include #include #include @@ -1090,8 +1091,13 @@ if (!sDest.endsWith("/")) { sDest += "/"; } - if (aTransferInfo.NewTitle.getLength()) - sDest += aTransferInfo.NewTitle; + if (!aTransferInfo.NewTitle.isEmpty()) + { + sDest += rtl::Uri::encode( aTransferInfo.NewTitle, + rtl_UriCharClassPchar, + rtl_UriEncodeIgnoreEscapes, + RTL_TEXTENCODING_UTF8 ); + } else sDest += OUString::createFromAscii(g_file_get_basename(getGFile())); diff -Nru libreoffice-7.3.4/vcl/inc/bitmaps.hlst libreoffice-7.3.5/vcl/inc/bitmaps.hlst --- libreoffice-7.3.4/vcl/inc/bitmaps.hlst 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/inc/bitmaps.hlst 2022-07-15 19:12:51.000000000 +0000 @@ -94,6 +94,41 @@ inline constexpr OUStringLiteral ODB_16_8 = u"res/odb_16_8.png"; inline constexpr OUStringLiteral ODF_16_8 = u"res/odf_16_8.png"; +//start, Throbber::getDefaultImageURLs constructs these dynamically (not unused) +#define SPINNER_16_01 "vcl/res/spinner-16-01.png" +#define SPINNER_16_02 "vcl/res/spinner-16-02.png" +#define SPINNER_16_03 "vcl/res/spinner-16-03.png" +#define SPINNER_16_04 "vcl/res/spinner-16-04.png" +#define SPINNER_16_05 "vcl/res/spinner-16-05.png" +#define SPINNER_16_06 "vcl/res/spinner-16-06.png" + +#define SPINNER_32_01 "vcl/res/spinner-32-01.png" +#define SPINNER_32_02 "vcl/res/spinner-32-02.png" +#define SPINNER_32_03 "vcl/res/spinner-32-03.png" +#define SPINNER_32_04 "vcl/res/spinner-32-04.png" +#define SPINNER_32_05 "vcl/res/spinner-32-05.png" +#define SPINNER_32_06 "vcl/res/spinner-32-06.png" +#define SPINNER_32_07 "vcl/res/spinner-32-07.png" +#define SPINNER_32_08 "vcl/res/spinner-32-08.png" +#define SPINNER_32_09 "vcl/res/spinner-32-09.png" +#define SPINNER_32_10 "vcl/res/spinner-32-10.png" +#define SPINNER_32_11 "vcl/res/spinner-32-11.png" +#define SPINNER_32_12 "vcl/res/spinner-32-12.png" + +#define SPINNER_64_01 "vcl/res/spinner-64-01.png" +#define SPINNER_64_02 "vcl/res/spinner-64-02.png" +#define SPINNER_64_03 "vcl/res/spinner-64-03.png" +#define SPINNER_64_04 "vcl/res/spinner-64-04.png" +#define SPINNER_64_05 "vcl/res/spinner-64-05.png" +#define SPINNER_64_06 "vcl/res/spinner-64-06.png" +#define SPINNER_64_07 "vcl/res/spinner-64-07.png" +#define SPINNER_64_08 "vcl/res/spinner-64-08.png" +#define SPINNER_64_09 "vcl/res/spinner-64-09.png" +#define SPINNER_64_10 "vcl/res/spinner-64-10.png" +#define SPINNER_64_11 "vcl/res/spinner-64-11.png" +#define SPINNER_64_12 "vcl/res/spinner-64-12.png" +//end, Throbber::getDefaultImageURLs + inline constexpr OUStringLiteral IMG_WARN = u"dbaccess/res/exwarning.png"; inline constexpr OUStringLiteral IMG_ERROR = u"dbaccess/res/exerror.png"; inline constexpr OUStringLiteral IMG_INFO = u"dbaccess/res/exinfo.png"; diff -Nru libreoffice-7.3.4/vcl/inc/dndeventdispatcher.hxx libreoffice-7.3.5/vcl/inc/dndeventdispatcher.hxx --- libreoffice-7.3.4/vcl/inc/dndeventdispatcher.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/inc/dndeventdispatcher.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -39,7 +39,7 @@ void designate_currentwindow(vcl::Window *pWindow); DECL_LINK(WindowEventListener, VclWindowEvent&, void); - std::mutex m_aMutex; + std::recursive_mutex m_aMutex; css::uno::Sequence< css::datatransfer::DataFlavor > m_aDataFlavorList; vcl::Window* findTopLevelWindow(Point location); diff -Nru libreoffice-7.3.4/vcl/inc/IconThemeSelector.hxx libreoffice-7.3.5/vcl/inc/IconThemeSelector.hxx --- libreoffice-7.3.4/vcl/inc/IconThemeSelector.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/inc/IconThemeSelector.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -62,7 +62,8 @@ void SetUseHighContrastTheme(bool); - void + /** Returns true if the PreferredIconTheme was changed */ + bool SetPreferredIconTheme(const OUString&, bool bDarkIconTheme); bool diff -Nru libreoffice-7.3.4/vcl/inc/qt5/QtObject.hxx libreoffice-7.3.5/vcl/inc/qt5/QtObject.hxx --- libreoffice-7.3.4/vcl/inc/qt5/QtObject.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/inc/qt5/QtObject.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -24,10 +24,11 @@ #include #include -#include +#include class QtFrame; -class QWidget; +class QtObjectWidget; +class QWindow; class QtObject final : public QObject, public SalObject { @@ -35,17 +36,18 @@ SystemEnvData m_aSystemData; QtFrame* m_pParent; - QWidget* m_pQWidget; // main widget, container - QWindow* m_pQWindow; // contained window, used for opengl rendering + QtObjectWidget* m_pQWidget; QRegion m_pRegion; + bool m_bForwardKey; public: QtObject(QtFrame* pParent, bool bShow); ~QtObject() override; QtFrame* frame() const { return m_pParent; } - QWidget* widget() const { return m_pQWidget; } - QWindow* windowHandle() const { return m_pQWindow; } + inline QWidget* widget() const; + QWindow* windowHandle() const; + bool forwardKey() const { return m_bForwardKey; } virtual void ResetClipRegion() override; virtual void BeginSetClipRegion(sal_uInt32 nRects) override; @@ -60,22 +62,25 @@ virtual void SetForwardKey(bool bEnable) override; virtual const SystemEnvData* GetSystemData() const override { return &m_aSystemData; } + + virtual void Reparent(SalFrame* pFrame) override; }; -class QtObjectWindow final : public QWindow +class QtObjectWidget final : public QWidget { QtObject& m_rParent; - bool event(QEvent*) override; void focusInEvent(QFocusEvent*) override; void focusOutEvent(QFocusEvent*) override; void mousePressEvent(QMouseEvent*) override; void mouseReleaseEvent(QMouseEvent*) override; - // keyPressEvent(QKeyEvent*) is handled via event(QEvent*); see comment in QtWidget::event + void keyPressEvent(QKeyEvent*) override; void keyReleaseEvent(QKeyEvent*) override; public: - explicit QtObjectWindow(QtObject& rParent); + explicit QtObjectWidget(QtObject& rParent); }; +QWidget* QtObject::widget() const { return m_pQWidget; } + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/vcl/inc/unx/gtk/gtkframe.hxx libreoffice-7.3.5/vcl/inc/unx/gtk/gtkframe.hxx --- libreoffice-7.3.4/vcl/inc/unx/gtk/gtkframe.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/inc/unx/gtk/gtkframe.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -185,6 +185,8 @@ GtkEventControllerKey* m_pKeyController; gulong m_nSettingChangedSignalId; #endif + gulong m_nPortalSettingChangedSignalId; + GDBusProxy* m_pSettingsPortal; #if !GTK_CHECK_VERSION(4, 0, 0) GdkWindow* m_pForeignParent; GdkNativeWindow m_aForeignParentWindow; @@ -412,6 +414,8 @@ bool HandleMenubarMnemonic(guint eState, guint nKeyval); + void ListenPortalSettings(); + public: cairo_surface_t* m_pSurface; basegfx::B2IVector m_aFrameSize; @@ -633,6 +637,8 @@ const cairo_font_options_t* get_font_options(); + void SetColorScheme(GVariant* variant); + void DisallowCycleFocusOut(); bool IsCycleFocusOutDisallowed() const; void AllowCycleFocusOut(); diff -Nru libreoffice-7.3.4/vcl/Library_vclplug_kf5.mk libreoffice-7.3.5/vcl/Library_vclplug_kf5.mk --- libreoffice-7.3.4/vcl/Library_vclplug_kf5.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/Library_vclplug_kf5.mk 2022-07-15 19:12:51.000000000 +0000 @@ -63,7 +63,6 @@ $(eval $(call gb_Library_add_exception_objects,vclplug_kf5,\ vcl/unx/kf5/KF5FilePicker \ - vcl/unx/kf5/KF5SalFrame \ vcl/unx/kf5/KF5SalInstance \ )) diff -Nru libreoffice-7.3.4/vcl/Library_vclplug_osx.mk libreoffice-7.3.5/vcl/Library_vclplug_osx.mk --- libreoffice-7.3.4/vcl/Library_vclplug_osx.mk 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/Library_vclplug_osx.mk 2022-07-15 19:12:51.000000000 +0000 @@ -30,10 +30,14 @@ officecfg/registry \ )) +# TODO: arguably the private CoreUI framework should never be used, no matter whether building +# a sandboxed version or a "regular" desktop version $(eval $(call gb_Library_add_libs,vclplug_osx,\ -framework IOKit \ - -F/System/Library/PrivateFrameworks \ - -framework CoreUI \ + $(if $(ENABLE_MACOSX_SANDBOX),,\ + -F/System/Library/PrivateFrameworks \ + -framework CoreUI \ + ) \ -lobjc \ )) diff -Nru libreoffice-7.3.4/vcl/qt5/QtFrame.cxx libreoffice-7.3.5/vcl/qt5/QtFrame.cxx --- libreoffice-7.3.4/vcl/qt5/QtFrame.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/qt5/QtFrame.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -22,6 +22,7 @@ #include #include +#include #include #include #include @@ -67,6 +68,8 @@ #include #include +#include + #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT5_USING_X11 && QT5_HAVE_XCB_ICCCM static bool g_bNeedsWmHintsWindowGroup = true; static xcb_atom_t g_aXcbClientLeaderAtom = 0; @@ -722,8 +725,8 @@ } else { - // geometry() is the drawable area, which is wanted here - QRect rect = scaledQRect(asChild()->geometry(), devicePixelRatioF()); + // we want the frame position and the client area size + QRect rect = scaledQRect({ asChild()->pos(), asChild()->size() }, devicePixelRatioF()); pState->mnX = rect.x(); pState->mnY = rect.y(); pState->mnWidth = rect.width(); @@ -816,14 +819,11 @@ void QtFrame::SetPointer(PointerStyle ePointerStyle) { - QWindow* pWindow = m_pQWidget->window()->windowHandle(); - if (!pWindow) - return; if (ePointerStyle == m_ePointerStyle) return; m_ePointerStyle = ePointerStyle; - pWindow->setCursor(static_cast(GetSalData())->getCursor(ePointerStyle)); + m_pQWidget->setCursor(static_cast(GetSalData())->getCursor(ePointerStyle)); } void QtFrame::CaptureMouse(bool bMouse) @@ -1052,12 +1052,51 @@ return Color(rColor.red(), rColor.green(), rColor.blue()); } +static bool toVclFont(const QFont& rQFont, const css::lang::Locale& rLocale, vcl::Font& rVclFont) +{ + psp::FastPrintFontInfo aInfo; + QFontInfo qFontInfo(rQFont); + + OUString sFamilyName = toOUString(rQFont.family()); + aInfo.m_aFamilyName = sFamilyName; + aInfo.m_eItalic = QtFontFace::toFontItalic(qFontInfo.style()); + aInfo.m_eWeight = QtFontFace::toFontWeight(qFontInfo.weight()); + aInfo.m_eWidth = QtFontFace::toFontWidth(rQFont.stretch()); + + psp::PrintFontManager::get().matchFont(aInfo, rLocale); + SAL_INFO("vcl.qt", "font match result for '" + << sFamilyName << "': " + << (aInfo.m_nID != 0 ? OUString::Concat("'") + aInfo.m_aFamilyName + "'" + : OUString("failed"))); + + if (aInfo.m_nID == 0) + return false; + + int nPointHeight = qFontInfo.pointSize(); + if (nPointHeight <= 0) + nPointHeight = rQFont.pointSize(); + + vcl::Font aFont(aInfo.m_aFamilyName, Size(0, nPointHeight)); + if (aInfo.m_eWeight != WEIGHT_DONTKNOW) + aFont.SetWeight(aInfo.m_eWeight); + if (aInfo.m_eWidth != WIDTH_DONTKNOW) + aFont.SetWidthType(aInfo.m_eWidth); + if (aInfo.m_eItalic != ITALIC_DONTKNOW) + aFont.SetItalic(aInfo.m_eItalic); + if (aInfo.m_ePitch != PITCH_DONTKNOW) + aFont.SetPitch(aInfo.m_ePitch); + + rVclFont = aFont; + return true; +} + void QtFrame::UpdateSettings(AllSettings& rSettings) { if (QtData::noNativeControls()) return; StyleSettings style(rSettings.GetStyleSettings()); + const css::lang::Locale aLocale = rSettings.GetUILanguageTag().getLocale(); // General settings QPalette pal = QApplication::palette(); @@ -1142,9 +1181,6 @@ style.SetHelpTextColor( toColor(QToolTip::palette().color(QPalette::Active, QPalette::ToolTipText))); - const int flash_time = QApplication::cursorFlashTime(); - style.SetCursorBlinkTime(flash_time != 0 ? flash_time / 2 : STYLE_CURSOR_NOBLINKTIME); - // Menu std::unique_ptr pMenuBar = std::make_unique(); QPalette qMenuCG = pMenuBar->palette(); @@ -1180,6 +1216,24 @@ } style.SetMenuBarHighlightTextColor(style.GetMenuHighlightTextColor()); + // Default fonts + vcl::Font aFont; + if (toVclFont(QApplication::font(), aLocale, aFont)) + { + style.BatchSetFonts(aFont, aFont); + aFont.SetWeight(WEIGHT_BOLD); + style.SetTitleFont(aFont); + style.SetFloatTitleFont(aFont); + } + + // Tooltip font + if (toVclFont(QToolTip::font(), aLocale, aFont)) + style.SetHelpFont(aFont); + + // Menu bar font + if (toVclFont(pMenuBar->font(), aLocale, aFont)) + style.SetMenuFont(aFont); + // Icon theme style.SetPreferredIconTheme(toOUString(QIcon::themeName())); @@ -1191,6 +1245,10 @@ style.SetShadowColor(toColor(pal.color(QPalette::Disabled, QPalette::WindowText))); style.SetDarkShadowColor(toColor(pal.color(QPalette::Inactive, QPalette::WindowText))); + // Cursor blink interval + int nFlashTime = QApplication::cursorFlashTime(); + style.SetCursorBlinkTime(nFlashTime != 0 ? nFlashTime / 2 : STYLE_CURSOR_NOBLINKTIME); + rSettings.SetStyleSettings(style); } diff -Nru libreoffice-7.3.4/vcl/qt5/QtGraphics_GDI.cxx libreoffice-7.3.5/vcl/qt5/QtGraphics_GDI.cxx --- libreoffice-7.3.4/vcl/qt5/QtGraphics_GDI.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/qt5/QtGraphics_GDI.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -601,55 +601,24 @@ return false; } -static bool getAlphaImage(const SalBitmap& rSourceBitmap, const SalBitmap& rAlphaBitmap, - QImage& rAlphaImage) +static QImage getAlphaImage(const SalBitmap& rSourceBitmap, const SalBitmap& rAlphaBitmap) { - if (rAlphaBitmap.GetBitCount() != 8 && rAlphaBitmap.GetBitCount() != 1) - { - SAL_WARN("vcl.gdi", "unsupported alpha depth case: " << rAlphaBitmap.GetBitCount()); - return false; - } + assert(rSourceBitmap.GetSize() == rAlphaBitmap.GetSize()); + assert(rAlphaBitmap.GetBitCount() == 8 || rAlphaBitmap.GetBitCount() == 1); - const QImage* pBitmap = static_cast(&rSourceBitmap)->GetQImage(); - const QImage* pAlpha = static_cast(&rAlphaBitmap)->GetQImage(); - rAlphaImage = pBitmap->convertToFormat(Qt_DefaultFormat32); - - if (rAlphaBitmap.GetBitCount() == 8) - { - for (int y = 0; y < rAlphaImage.height(); ++y) - { - uchar* image_line = rAlphaImage.scanLine(y); - const uchar* alpha_line = pAlpha->scanLine(y); - for (int x = 0; x < rAlphaImage.width(); ++x, image_line += 4) - image_line[3] = 255 - alpha_line[x]; - } - } - else - { - for (int y = 0; y < rAlphaImage.height(); ++y) - { - uchar* image_line = rAlphaImage.scanLine(y); - const uchar* alpha_line = pAlpha->scanLine(y); - for (int x = 0; x < rAlphaImage.width(); ++x, image_line += 4) - { - if (x && !(x % 8)) - ++alpha_line; - if (0 != (*alpha_line & (1 << (7 - x % 8)))) - image_line[3] = 0; - } - } - } + QImage aAlphaMask = *static_cast(&rAlphaBitmap)->GetQImage(); + aAlphaMask.invertPixels(); - return true; + const QImage* pBitmap = static_cast(&rSourceBitmap)->GetQImage(); + QImage aImage = pBitmap->convertToFormat(Qt_DefaultFormat32); + aImage.setAlphaChannel(aAlphaMask); + return aImage; } bool QtGraphicsBackend::drawAlphaBitmap(const SalTwoRect& rPosAry, const SalBitmap& rSourceBitmap, const SalBitmap& rAlphaBitmap) { - QImage aImage; - if (!getAlphaImage(rSourceBitmap, rAlphaBitmap, aImage)) - return false; - drawScaledImage(rPosAry, aImage); + drawScaledImage(rPosAry, getAlphaImage(rSourceBitmap, rAlphaBitmap)); return true; } @@ -659,20 +628,17 @@ const SalBitmap& rSourceBitmap, const SalBitmap* pAlphaBitmap, double fAlpha) { - if (fAlpha != 1.0) - return false; QImage aImage; - if (pAlphaBitmap && !getAlphaImage(rSourceBitmap, *pAlphaBitmap, aImage)) - return false; + if (!pAlphaBitmap) + aImage = *static_cast(&rSourceBitmap)->GetQImage(); else - { - const QImage* pBitmap = static_cast(&rSourceBitmap)->GetQImage(); - aImage = pBitmap->convertToFormat(Qt_DefaultFormat32); - } + aImage = getAlphaImage(rSourceBitmap, *pAlphaBitmap); - QtPainter aPainter(*this); const basegfx::B2DVector aXRel = rX - rNull; const basegfx::B2DVector aYRel = rY - rNull; + + QtPainter aPainter(*this); + aPainter.setOpacity(fAlpha); aPainter.setTransform(QTransform(aXRel.getX() / aImage.width(), aXRel.getY() / aImage.width(), aYRel.getX() / aImage.height(), aYRel.getY() / aImage.height(), rNull.getX(), rNull.getY())); diff -Nru libreoffice-7.3.4/vcl/qt5/QtObject.cxx libreoffice-7.3.5/vcl/qt5/QtObject.cxx --- libreoffice-7.3.4/vcl/qt5/QtObject.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/qt5/QtObject.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -24,20 +24,18 @@ #include #include +#include +#include QtObject::QtObject(QtFrame* pParent, bool bShow) : m_pParent(pParent) , m_pQWidget(nullptr) - , m_pQWindow(nullptr) + , m_bForwardKey(false) { if (!m_pParent || !pParent->GetQWidget()) return; - m_pQWindow = new QtObjectWindow(*this); - m_pQWidget = QWidget::createWindowContainer(m_pQWindow, pParent->GetQWidget()); - m_pQWidget->setAttribute(Qt::WA_NoSystemBackground); - connect(m_pQWidget, &QObject::destroyed, this, [this]() { m_pQWidget = nullptr; }); - + m_pQWidget = new QtObjectWidget(*this); if (bShow) m_pQWidget->show(); @@ -53,6 +51,11 @@ } } +QWindow* QtObject::windowHandle() const +{ + return m_pQWidget ? m_pQWidget->windowHandle() : nullptr; +} + void QtObject::ResetClipRegion() { if (m_pQWidget) @@ -90,47 +93,63 @@ m_pQWidget->setVisible(bVisible); } -void QtObject::SetForwardKey(bool /*bEnable*/) {} +void QtObject::SetForwardKey(bool bEnable) { m_bForwardKey = bEnable; } -QtObjectWindow::QtObjectWindow(QtObject& rParent) - : m_rParent(rParent) +void QtObject::Reparent(SalFrame* pFrame) +{ + QtFrame* pNewParent = static_cast(pFrame); + if (m_pParent == pNewParent) + return; + m_pParent = pNewParent; + m_pQWidget->setParent(m_pParent->GetQWidget()); +} + +QtObjectWidget::QtObjectWidget(QtObject& rParent) + : QWidget(rParent.frame()->GetQWidget()) + , m_rParent(rParent) { assert(m_rParent.frame() && m_rParent.frame()->GetQWidget()); + setAttribute(Qt::WA_NoSystemBackground); + setAttribute(Qt::WA_OpaquePaintEvent); } -void QtObjectWindow::focusInEvent(QFocusEvent* pEvent) +void QtObjectWidget::focusInEvent(QFocusEvent*) { + SolarMutexGuard aGuard; m_rParent.CallCallback(SalObjEvent::GetFocus); - QWindow::focusInEvent(pEvent); } -void QtObjectWindow::focusOutEvent(QFocusEvent* pEvent) +void QtObjectWidget::focusOutEvent(QFocusEvent*) { + SolarMutexGuard aGuard; m_rParent.CallCallback(SalObjEvent::LoseFocus); - QWindow::focusOutEvent(pEvent); } -void QtObjectWindow::mousePressEvent(QMouseEvent* pEvent) +void QtObjectWidget::mousePressEvent(QMouseEvent* pEvent) { + SolarMutexGuard aGuard; m_rParent.CallCallback(SalObjEvent::ToTop); - QtWidget::handleMousePressEvent(*m_rParent.frame(), pEvent); + + if (m_rParent.forwardKey()) + pEvent->ignore(); } -void QtObjectWindow::mouseReleaseEvent(QMouseEvent* pEvent) +void QtObjectWidget::mouseReleaseEvent(QMouseEvent* pEvent) { - QtWidget::handleMouseReleaseEvent(*m_rParent.frame(), pEvent); + if (m_rParent.forwardKey()) + pEvent->ignore(); } -bool QtObjectWindow::event(QEvent* pEvent) +void QtObjectWidget::keyReleaseEvent(QKeyEvent* pEvent) { - return QtWidget::handleEvent(*m_rParent.frame(), *m_rParent.widget(), pEvent) - || QWindow::event(pEvent); + if (m_rParent.forwardKey()) + pEvent->ignore(); } -void QtObjectWindow::keyReleaseEvent(QKeyEvent* pEvent) +void QtObjectWidget::keyPressEvent(QKeyEvent* pEvent) { - if (!QtWidget::handleKeyReleaseEvent(*m_rParent.frame(), *m_rParent.widget(), pEvent)) - QWindow::keyReleaseEvent(pEvent); + if (m_rParent.forwardKey()) + pEvent->ignore(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/vcl/source/app/IconThemeSelector.cxx libreoffice-7.3.5/vcl/source/app/IconThemeSelector.cxx --- libreoffice-7.3.4/vcl/source/app/IconThemeSelector.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/app/IconThemeSelector.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -124,13 +124,20 @@ mUseHighContrastTheme = v; } -void +bool IconThemeSelector::SetPreferredIconTheme(const OUString& theme, bool bDarkIconTheme) { // lower case theme name, and (tdf#120175) replace - with _ // see icon-themes/README - mPreferredIconTheme = theme.toAsciiLowerCase().replace('-','_'); - mPreferDarkIconTheme = bDarkIconTheme; + OUString sIconTheme = theme.toAsciiLowerCase().replace('-','_'); + + const bool bChanged = mPreferredIconTheme != sIconTheme || mPreferDarkIconTheme != bDarkIconTheme; + if (bChanged) + { + mPreferredIconTheme = sIconTheme; + mPreferDarkIconTheme = bDarkIconTheme; + } + return bChanged; } bool diff -Nru libreoffice-7.3.4/vcl/source/app/salvtables.cxx libreoffice-7.3.5/vcl/source/app/salvtables.cxx --- libreoffice-7.3.4/vcl/source/app/salvtables.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/app/salvtables.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -4638,6 +4638,8 @@ OUString SalInstanceTreeView::get_id(const weld::TreeIter& rIter) const { const SalInstanceTreeIter& rVclIter = static_cast(rIter); + if (!rVclIter.iter) + return OUString(); const OUString* pStr = static_cast(rVclIter.iter->GetUserData()); if (pStr) return *pStr; diff -Nru libreoffice-7.3.4/vcl/source/app/settings.cxx libreoffice-7.3.5/vcl/source/app/settings.cxx --- libreoffice-7.3.4/vcl/source/app/settings.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/app/settings.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -184,7 +184,7 @@ std::shared_ptr mIconThemeSelector; - OUString mIconTheme; + OUString mIconTheme; bool mbSkipDisabledInMenus; bool mbHideDisabledMenuItems; bool mbPreferredContextMenuShortcuts; @@ -3139,7 +3139,12 @@ void StyleSettings::SetPreferredIconTheme(const OUString& theme, bool bDarkIconTheme) { - mxData->mIconThemeSelector->SetPreferredIconTheme(theme, bDarkIconTheme); + const bool bChanged = mxData->mIconThemeSelector->SetPreferredIconTheme(theme, bDarkIconTheme); + if (bChanged) + { + // clear this so it is recalculated if it was selected as the automatic theme + mxData->mIconTheme.clear(); + } } void diff -Nru libreoffice-7.3.4/vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx libreoffice-7.3.5/vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx --- libreoffice-7.3.4/vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -342,7 +342,7 @@ ScanlineFormat nScanlineFormat; { Bitmap::ScopedReadAccess pReadAccess(bitmapCopy); - nScanlineFormat = pReadAccess->GetScanlineFormat(); + nScanlineFormat = pReadAccess ? pReadAccess->GetScanlineFormat() : ScanlineFormat::NONE; } switch (nScanlineFormat) diff -Nru libreoffice-7.3.4/vcl/source/bitmap/BitmapFilterStackBlur.cxx libreoffice-7.3.5/vcl/source/bitmap/BitmapFilterStackBlur.cxx --- libreoffice-7.3.4/vcl/source/bitmap/BitmapFilterStackBlur.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/bitmap/BitmapFilterStackBlur.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -630,7 +630,7 @@ ScanlineFormat nScanlineFormat; { Bitmap::ScopedReadAccess pReadAccess(bitmapCopy); - nScanlineFormat = pReadAccess->GetScanlineFormat(); + nScanlineFormat = pReadAccess ? pReadAccess->GetScanlineFormat() : ScanlineFormat::NONE; } if (nScanlineFormat == ScanlineFormat::N24BitTcRgb diff -Nru libreoffice-7.3.4/vcl/source/control/fmtfield.cxx libreoffice-7.3.5/vcl/source/control/fmtfield.cxx --- libreoffice-7.3.4/vcl/source/control/fmtfield.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/control/fmtfield.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -922,6 +922,13 @@ { m_rSpinButton.SpinField::Modify(); } + + virtual void UpdateCurrentValue(double dCurrentValue) override + { + Formatter::UpdateCurrentValue(dCurrentValue); + m_rSpinButton.SetUpperEnabled(!m_bHasMax || dCurrentValue < m_dMaxValue); + m_rSpinButton.SetLowerEnabled(!m_bHasMin || dCurrentValue > m_dMinValue); + } }; class DoubleNumericFormatter : public FieldFormatter diff -Nru libreoffice-7.3.4/vcl/source/control/spinfld.cxx libreoffice-7.3.5/vcl/source/control/spinfld.cxx --- libreoffice-7.3.4/vcl/source/control/spinfld.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/control/spinfld.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -298,6 +298,8 @@ mbInitialUp = false; mbInitialDown = false; mbInDropDown = false; + mbUpperEnabled = true; + mbLowerEnabled = true; } void SpinField::ImplInit(vcl::Window* pParent, WinBits nWinStyle) @@ -578,13 +580,38 @@ Edit::FillLayoutData(); } +void SpinField::SetUpperEnabled(bool bEnabled) +{ + if (mbUpperEnabled == bEnabled) + return; + + mbUpperEnabled = bEnabled; + + if (mbSpin) + Invalidate(maUpperRect); +} + +void SpinField::SetLowerEnabled(bool bEnabled) +{ + if (mbLowerEnabled == bEnabled) + return; + + mbLowerEnabled = bEnabled; + + if (mbSpin) + Invalidate(maLowerRect); +} + void SpinField::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) { if (mbSpin) { - bool bEnable = IsEnabled(); + bool bEnabled = IsEnabled(); + bool bUpperEnabled = bEnabled && IsUpperEnabled(); + bool bLowerEnabled = bEnabled && IsLowerEnabled(); ImplDrawSpinButton(rRenderContext, this, maUpperRect, maLowerRect, - mbUpperIn, mbLowerIn, bEnable, bEnable); + mbUpperIn && bUpperEnabled, mbLowerIn && bLowerEnabled, + bUpperEnabled, bLowerEnabled); } if (GetStyle() & WB_DROPDOWN) diff -Nru libreoffice-7.3.4/vcl/source/helper/strhelper.cxx libreoffice-7.3.5/vcl/source/helper/strhelper.cxx --- libreoffice-7.3.4/vcl/source/helper/strhelper.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/helper/strhelper.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -360,9 +360,15 @@ // there might be a space at beginning or end pLeap--; +#if defined(__GNUC__) && __GNUC__ == 12 +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" +#endif if( *pLeap == ' ' ) *pLeap = 0; - +#if defined(__GNUC__) && __GNUC__ == 12 +#pragma GCC diagnostic pop +#endif return *pBuffer == ' ' ? pBuffer+1 : pBuffer; } diff -Nru libreoffice-7.3.4/vcl/source/treelist/treelist.cxx libreoffice-7.3.5/vcl/source/treelist/treelist.cxx --- libreoffice-7.3.4/vcl/source/treelist/treelist.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/source/treelist/treelist.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -101,9 +101,11 @@ sal_uInt16 SvTreeList::GetDepth( const SvTreeListEntry* pEntry ) const { + if (!pEntry) + return 0; DBG_ASSERT(pEntry && pEntry!=pRootItem.get(),"GetDepth:Bad Entry"); sal_uInt16 nDepth = 0; - while( pEntry->pParent != pRootItem.get() ) + while( pEntry && pEntry->pParent != pRootItem.get() ) { nDepth++; pEntry = pEntry->pParent; @@ -1505,6 +1507,8 @@ const SvTreeListEntry* SvTreeList::GetParent( const SvTreeListEntry* pEntry ) const { + if (!pEntry) + return nullptr; const SvTreeListEntry* pParent = pEntry->pParent; if (pParent == pRootItem.get()) pParent = nullptr; @@ -1513,6 +1517,8 @@ SvTreeListEntry* SvTreeList::GetParent( SvTreeListEntry* pEntry ) { + if (!pEntry) + return nullptr; SvTreeListEntry* pParent = pEntry->pParent; if (pParent == pRootItem.get()) pParent = nullptr; diff -Nru libreoffice-7.3.4/vcl/unx/generic/printer/cpdmgr.cxx libreoffice-7.3.5/vcl/unx/generic/printer/cpdmgr.cxx --- libreoffice-7.3.4/vcl/unx/generic/printer/cpdmgr.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/generic/printer/cpdmgr.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -722,7 +722,7 @@ } g_variant_unref(ret); unlink( it->second.getStr() ); - m_aSpoolFiles.erase( pFile ); + m_aSpoolFiles.erase(it); } #else (void)rPrintername; diff -Nru libreoffice-7.3.4/vcl/unx/generic/printer/cupsmgr.cxx libreoffice-7.3.5/vcl/unx/generic/printer/cupsmgr.cxx --- libreoffice-7.3.4/vcl/unx/generic/printer/cupsmgr.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/generic/printer/cupsmgr.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -882,7 +882,7 @@ #endif unlink( it->second.getStr() ); - m_aSpoolFiles.erase( pFile ); + m_aSpoolFiles.erase(it); if( pOptions ) cupsFreeOptions( nNumOptions, pOptions ); } diff -Nru libreoffice-7.3.4/vcl/unx/gtk3/gtkframe.cxx libreoffice-7.3.5/vcl/unx/gtk3/gtkframe.cxx --- libreoffice-7.3.4/vcl/unx/gtk3/gtkframe.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/gtk3/gtkframe.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -76,6 +76,12 @@ static GDBusConnection* pSessionBus = nullptr; +static void EnsureSessionBus() +{ + if (!pSessionBus) + pSessionBus = g_bus_get_sync(G_BUS_TYPE_SESSION, nullptr, nullptr); +} + sal_uInt16 GtkSalFrame::GetKeyModCode( guint state ) { sal_uInt16 nCode = 0; @@ -541,8 +547,7 @@ #if !GTK_CHECK_VERSION(4,0,0) // Get a DBus session connection. - if (!pSessionBus) - pSessionBus = g_bus_get_sync (G_BUS_TYPE_SESSION, nullptr, nullptr); + EnsureSessionBus(); if (!pSessionBus) return; @@ -629,13 +634,9 @@ return; // Get a DBus session connection. - if ( pSessionBus == nullptr ) - { - pSessionBus = g_bus_get_sync( G_BUS_TYPE_SESSION, nullptr, nullptr ); - - if ( pSessionBus == nullptr ) - return; - } + EnsureSessionBus(); + if (!pSessionBus) + return; // Publish the menu only if AppMenu registrar is available. m_nWatcherId = g_bus_watch_name_on_connection( pSessionBus, @@ -698,8 +699,14 @@ { SolarMutexGuard aGuard; - if(m_nWatcherId) + if (m_nWatcherId) g_bus_unwatch_name(m_nWatcherId); + + if (m_nPortalSettingChangedSignalId) + g_signal_handler_disconnect(m_pSettingsPortal, m_nPortalSettingChangedSignalId); + + if (m_pSettingsPortal) + g_object_unref(m_pSettingsPortal); } GtkWidget *pEventWidget = getMouseEventWidget(); @@ -900,6 +907,8 @@ m_pSurface = nullptr; m_nGrabLevel = 0; m_bSalObjectSetPosSize = false; + m_nPortalSettingChangedSignalId = 0; + m_pSettingsPortal = nullptr; m_aDamageHandler.handle = this; m_aDamageHandler.damaged = ::damaged; @@ -1243,6 +1252,91 @@ #endif } +namespace +{ + enum ColorScheme + { + DEFAULT, + PREFER_DARK, + PREFER_LIGHT + }; + + bool ReadColorScheme(GDBusProxy* proxy, GVariant** out) + { + g_autoptr (GVariant) ret = + g_dbus_proxy_call_sync(proxy, "Read", + g_variant_new ("(ss)", "org.freedesktop.appearance", "color-scheme"), + G_DBUS_CALL_FLAGS_NONE, G_MAXINT, nullptr, nullptr); + if (!ret) + return false; + + g_autoptr (GVariant) child = nullptr; + g_variant_get(ret, "(v)", &child); + g_variant_get(child, "v", out); + + return true; + } +} + +void GtkSalFrame::SetColorScheme(GVariant* variant) +{ + if (!m_pWindow) + return; + + guint32 color_scheme = g_variant_get_uint32(variant); + if (color_scheme > PREFER_LIGHT) + color_scheme = DEFAULT; + + bool bDarkIconTheme(color_scheme == PREFER_DARK); + GtkSettings* pSettings = gtk_widget_get_settings(m_pWindow); + g_object_set(pSettings, "gtk-application-prefer-dark-theme", bDarkIconTheme, nullptr); +} + +static void settings_portal_changed_cb(GDBusProxy*, const char*, const char* signal_name, + GVariant* parameters, gpointer frame) +{ + if (g_strcmp0(signal_name, "SettingChanged")) + return; + + g_autoptr (GVariant) value = nullptr; + const char *name_space; + const char *name; + g_variant_get(parameters, "(&s&sv)", &name_space, &name, &value); + + if (g_strcmp0(name_space, "org.freedesktop.appearance") || + g_strcmp0(name, "color-scheme")) + return; + + GtkSalFrame* pThis = static_cast(frame); + pThis->SetColorScheme(value); +} + +void GtkSalFrame::ListenPortalSettings() +{ + EnsureSessionBus(); + + if (!pSessionBus) + return; + + m_pSettingsPortal = g_dbus_proxy_new_sync(pSessionBus, + G_DBUS_PROXY_FLAGS_NONE, + nullptr, + "org.freedesktop.portal.Desktop", + "/org/freedesktop/portal/desktop", + "org.freedesktop.portal.Settings", + nullptr, + nullptr); + if (!m_pSettingsPortal) + return; + + g_autoptr (GVariant) value = nullptr; + + if (!ReadColorScheme(m_pSettingsPortal, &value)) + return; + + SetColorScheme(value); + m_nPortalSettingChangedSignalId = g_signal_connect(m_pSettingsPortal, "g-signal", G_CALLBACK(settings_portal_changed_cb), this); +} void GtkSalFrame::Init( SalFrame* pParent, SalFrameStyleFlags nStyle ) { @@ -1403,6 +1497,9 @@ { // Enable GMenuModel native menu attach_menu_model(this); + + // Listen to portal settings for e.g. prefer dark theme + ListenPortalSettings(); } } diff -Nru libreoffice-7.3.4/vcl/unx/gtk3/gtkinst.cxx libreoffice-7.3.5/vcl/unx/gtk3/gtkinst.cxx --- libreoffice-7.3.4/vcl/unx/gtk3/gtkinst.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/gtk3/gtkinst.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1960,8 +1960,53 @@ glViewport(0, 0, width, height); } + // Use a throw away toplevel to determine the OpenGL version because once + // an GdkGLContext is created for a window then it seems that + // glGenVertexArrays will always be called when the window gets rendered. + static int GetOpenGLVersion() + { + int nMajorGLVersion(0); + + GtkWidget* pWindow; +#if !GTK_CHECK_VERSION(4,0,0) + pWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); +#else + pWindow = gtk_window_new(); +#endif + + gtk_widget_realize(pWindow); + + if (GdkSurface* pSurface = widget_get_surface(pWindow)) + { + if (GdkGLContext* pContext = surface_create_gl_context(pSurface)) + { + if (gdk_gl_context_realize(pContext, nullptr)) + { + gdk_gl_context_make_current(pContext); + gdk_gl_context_get_version(pContext, &nMajorGLVersion, nullptr); + gdk_gl_context_clear_current(); + } + g_object_unref(pContext); + } + } + +#if !GTK_CHECK_VERSION(4,0,0) + gtk_widget_destroy(pWindow); +#else + gtk_window_destroy(GTK_WINDOW(pWindow)); +#endif + return nMajorGLVersion; + } + virtual bool ImplInit() override { + static int nOpenGLVersion = GetOpenGLVersion(); + if (nOpenGLVersion < 3) + { + SAL_WARN("vcl.gtk", "gtk GL requires glGenVertexArrays which is OpenGL 3, while system provides: " << nOpenGLVersion); + return false; + } + const SystemEnvData* pEnvData = m_pChildWindow->GetSystemData(); GtkWidget *pParent = static_cast(pEnvData->pWidget); m_pGLArea = gtk_gl_area_new(); @@ -13861,12 +13906,13 @@ return false; #endif OUString aTooltip = pThis->signal_query_tooltip(GtkInstanceTreeIter(iter)); - if (aTooltip.isEmpty()) - return false; - gtk_tooltip_set_text(tooltip, OUStringToOString(aTooltip, RTL_TEXTENCODING_UTF8).getStr()); - gtk_tree_view_set_tooltip_row(pTreeView, tooltip, pPath); + if (!aTooltip.isEmpty()) + { + gtk_tooltip_set_text(tooltip, OUStringToOString(aTooltip, RTL_TEXTENCODING_UTF8).getStr()); + gtk_tree_view_set_tooltip_row(pTreeView, tooltip, pPath); + } gtk_tree_path_free(pPath); - return true; + return !aTooltip.isEmpty(); } void last_child(GtkTreeModel* pModel, GtkTreeIter* result, GtkTreeIter* pParent, int nChildren) const @@ -21882,6 +21928,7 @@ gulong m_nSignalId; #if !GTK_CHECK_VERSION(4, 0, 0) gulong m_nButtonPressEventSignalId; + gulong m_nMappedSignalId; #endif static void signalExpanded(GtkExpander* pExpander, GParamSpec*, gpointer widget) @@ -21929,6 +21976,31 @@ // doesn't work return true; } + + /* tdf#141186 if the expander is initially collapsed then when mapped all its + children are mapped too. If they are mapped then the mnemonics of the + children are taken into account on shortcuts and non-visible children in a + collapsed expander can be triggered which is confusing. + + If the expander is expanded and collapsed the child is unmapped and the + problem doesn't occur. + + So to avoid the problem of an initially collapsed expander, listen to + the map event and if the expander is mapped but collapsed then unmap the + child of the expander. + + This problem was seen in gtk3-3.24.33 and not with gtk4-4.6.4 so a gtk3 + fix only needed. + */ + static void signalMap(GtkWidget*, gpointer widget) + { + GtkInstanceExpander* pThis = static_cast(widget); + if (!gtk_expander_get_expanded(pThis->m_pExpander)) + { + if (GtkWidget* pChild = gtk_bin_get_child(GTK_BIN(pThis->m_pExpander))) + gtk_widget_unmap(pChild); + } + } #endif public: @@ -21938,6 +22010,7 @@ , m_nSignalId(g_signal_connect(m_pExpander, "notify::expanded", G_CALLBACK(signalExpanded), this)) #if !GTK_CHECK_VERSION(4, 0, 0) , m_nButtonPressEventSignalId(g_signal_connect_after(m_pExpander, "button-press-event", G_CALLBACK(signalButton), this)) + , m_nMappedSignalId(g_signal_connect_after(m_pExpander, "map", G_CALLBACK(signalMap), this)) #endif { } @@ -21965,6 +22038,7 @@ virtual ~GtkInstanceExpander() override { #if !GTK_CHECK_VERSION(4, 0, 0) + g_signal_handler_disconnect(m_pExpander, m_nMappedSignalId); g_signal_handler_disconnect(m_pExpander, m_nButtonPressEventSignalId); #endif g_signal_handler_disconnect(m_pExpander, m_nSignalId); diff -Nru libreoffice-7.3.4/vcl/unx/gtk3/salnativewidgets-gtk.cxx libreoffice-7.3.5/vcl/unx/gtk3/salnativewidgets-gtk.cxx --- libreoffice-7.3.4/vcl/unx/gtk3/salnativewidgets-gtk.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/gtk3/salnativewidgets-gtk.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -2638,16 +2638,17 @@ aStyleSet.SetToolbarIconSize( ToolbarIconSize::Large ); - // finally update the collected settings - rSettings.SetStyleSettings( aStyleSet ); -#if OSL_DEBUG_LEVEL > 1 - gchar* pThemeName = NULL; + gchar* pThemeName = nullptr; g_object_get( pSettings, "gtk-theme-name", &pThemeName, nullptr ); SAL_INFO("vcl.gtk3", "Theme name is \"" << pThemeName << "\"."); + // High contrast + aStyleSet.SetHighContrastMode(g_strcmp0(pThemeName, "HighContrast") == 0); g_free(pThemeName); -#endif + + // finally update the collected settings + rSettings.SetStyleSettings( aStyleSet ); return true; } diff -Nru libreoffice-7.3.4/vcl/unx/kf5/KF5SalFrame.cxx libreoffice-7.3.5/vcl/unx/kf5/KF5SalFrame.cxx --- libreoffice-7.3.4/vcl/unx/kf5/KF5SalFrame.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/kf5/KF5SalFrame.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#include -#include "KF5SalFrame.hxx" - -#include - -#include -#include -#include - -#include - -#include - -#include - -KF5SalFrame::KF5SalFrame(KF5SalFrame* pParent, SalFrameStyleFlags nState, bool bUseCairo) - : QtFrame(pParent, nState, bUseCairo) -{ -} - -/** Helper function to add information to Font from QFont. - - Mostly grabbed from the Gtk+ vclplug (salnativewidgets-gtk.cxx). -*/ -static vcl::Font toFont(const QFont& rQFont, const css::lang::Locale& rLocale) -{ - psp::FastPrintFontInfo aInfo; - QFontInfo qFontInfo(rQFont); - - // set family name - aInfo.m_aFamilyName = OUString(static_cast(rQFont.family().toUtf8()), - strlen(static_cast(rQFont.family().toUtf8())), - RTL_TEXTENCODING_UTF8); - - aInfo.m_eItalic = QtFontFace::toFontItalic(qFontInfo.style()); - aInfo.m_eWeight = QtFontFace::toFontWeight(qFontInfo.weight()); - aInfo.m_eWidth = QtFontFace::toFontWidth(rQFont.stretch()); - - SAL_INFO("vcl.kf5", "font name BEFORE system match: \"" << aInfo.m_aFamilyName << "\""); - - // match font to e.g. resolve "Sans" - psp::PrintFontManager::get().matchFont(aInfo, rLocale); - - SAL_INFO("vcl.kf5", "font match " << (aInfo.m_nID != 0 ? "succeeded" : "failed") - << ", name AFTER: \"" << aInfo.m_aFamilyName << "\""); - - // font height - int nPointHeight = qFontInfo.pointSize(); - if (nPointHeight <= 0) - nPointHeight = rQFont.pointSize(); - - // Create the font - vcl::Font aFont(aInfo.m_aFamilyName, Size(0, nPointHeight)); - if (aInfo.m_eWeight != WEIGHT_DONTKNOW) - aFont.SetWeight(aInfo.m_eWeight); - if (aInfo.m_eWidth != WIDTH_DONTKNOW) - aFont.SetWidthType(aInfo.m_eWidth); - if (aInfo.m_eItalic != ITALIC_DONTKNOW) - aFont.SetItalic(aInfo.m_eItalic); - if (aInfo.m_ePitch != PITCH_DONTKNOW) - aFont.SetPitch(aInfo.m_ePitch); - - return aFont; -} - -/** Implementation of KDE integration's main method. -*/ -void KF5SalFrame::UpdateSettings(AllSettings& rSettings) -{ - QtFrame::UpdateSettings(rSettings); - - StyleSettings style(rSettings.GetStyleSettings()); - bool bSetTitleFont = false; - - // WM settings - /*KConfig *pConfig = KGlobal::config().data(); - if ( pConfig ) - { - const char *pKey; - - { - KConfigGroup aWMGroup = pConfig->group( "WM" ); - - pKey = "titleFont"; - if (aWMGroup.hasKey(pKey)) - { - vcl::Font aFont = toFont(aWMGroup.readEntry(pKey, QFont()), - rSettings.GetUILanguageTag().getLocale()); - style.SetTitleFont( aFont ); - bSetTitleFont = true; - } - } - - KConfigGroup aIconsGroup = pConfig->group("Icons"); - - pKey = "Theme"; - if (aIconsGroup.hasKey(pKey)) - style.SetPreferredIconTheme( readEntryUntranslated(&aIconsGroup, pKey)); - - //toolbar - pKey = "toolbarFont"; - if (aIconsGroup.hasKey(pKey)) - { - vcl::Font aFont = toFont(aIconsGroup.readEntry(pKey, QFont()), - rSettings.GetUILanguageTag().getLocale()); - style.SetToolFont( aFont ); - } - }*/ - - // Font - vcl::Font aFont = toFont(QApplication::font(), rSettings.GetUILanguageTag().getLocale()); - - style.BatchSetFonts(aFont, aFont); - - aFont.SetWeight(WEIGHT_BOLD); - if (!bSetTitleFont) - { - style.SetTitleFont(aFont); - } - style.SetFloatTitleFont(aFont); - style.SetHelpFont(toFont(QToolTip::font(), rSettings.GetUILanguageTag().getLocale())); - - int flash_time = QApplication::cursorFlashTime(); - style.SetCursorBlinkTime(flash_time != 0 ? flash_time / 2 : STYLE_CURSOR_NOBLINKTIME); - - // Menu - std::unique_ptr pMenuBar = std::make_unique(); - aFont = toFont(pMenuBar->font(), rSettings.GetUILanguageTag().getLocale()); - style.SetMenuFont(aFont); - - rSettings.SetStyleSettings(style); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/vcl/unx/kf5/KF5SalFrame.hxx libreoffice-7.3.5/vcl/unx/kf5/KF5SalFrame.hxx --- libreoffice-7.3.4/vcl/unx/kf5/KF5SalFrame.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/kf5/KF5SalFrame.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#pragma once - -#include - -#include -#include - -class QWidget; - -class KF5SalFrame : public QtFrame -{ -public: - KF5SalFrame(KF5SalFrame* pParent, SalFrameStyleFlags nStyle, bool bUseCairo); - - virtual void UpdateSettings(AllSettings& rSettings) override; -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.4/vcl/unx/kf5/KF5SalInstance.cxx libreoffice-7.3.5/vcl/unx/kf5/KF5SalInstance.cxx --- libreoffice-7.3.4/vcl/unx/kf5/KF5SalInstance.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/kf5/KF5SalInstance.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -28,7 +28,6 @@ #include #include "KF5FilePicker.hxx" -#include "KF5SalFrame.hxx" #include "KF5SalInstance.hxx" using namespace com::sun::star; @@ -40,26 +39,6 @@ pSVData->maAppData.mxToolkitName = constructToolkitID(u"kf5"); } -SalFrame* KF5SalInstance::CreateChildFrame(SystemParentData* /*pParent*/, SalFrameStyleFlags nStyle) -{ - SalFrame* pRet(nullptr); - RunInMainThread([&, this]() { pRet = new KF5SalFrame(nullptr, nStyle, useCairo()); }); - assert(pRet); - return pRet; -} - -SalFrame* KF5SalInstance::CreateFrame(SalFrame* pParent, SalFrameStyleFlags nStyle) -{ - assert(!pParent || dynamic_cast(pParent)); - - SalFrame* pRet(nullptr); - RunInMainThread([&, this]() { - pRet = new KF5SalFrame(static_cast(pParent), nStyle, useCairo()); - }); - assert(pRet); - return pRet; -} - bool KF5SalInstance::hasNativeFileSelection() const { if (Application::GetDesktopEnvironment() == "PLASMA5") diff -Nru libreoffice-7.3.4/vcl/unx/kf5/KF5SalInstance.hxx libreoffice-7.3.5/vcl/unx/kf5/KF5SalInstance.hxx --- libreoffice-7.3.4/vcl/unx/kf5/KF5SalInstance.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/vcl/unx/kf5/KF5SalInstance.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -28,9 +28,6 @@ createPicker(css::uno::Reference const& context, QFileDialog::FileMode) override; - SalFrame* CreateFrame(SalFrame* pParent, SalFrameStyleFlags nStyle) override; - SalFrame* CreateChildFrame(SystemParentData* pParent, SalFrameStyleFlags nStyle) override; - public: explicit KF5SalInstance(std::unique_ptr& pQApp, bool bUseCairo); }; diff -Nru libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -372,19 +372,14 @@ if (m_pImpl->GetTopContext()) { m_pImpl->GetTopContext()->Insert(PROP_CHAR_FONT_NAME, uno::makeAny( sStringValue )); - if (m_pImpl->GetTopContextOfType(CONTEXT_PARAGRAPH) && m_pImpl->GetTopContextOfType(CONTEXT_PARAGRAPH)->isSet(PROP_NUMBERING_RULES)) - { - // Font of the paragraph mark should be used for the numbering as well. - uno::Reference xCharStyle(m_pImpl->GetCurrentNumberingCharStyle()); - if (xCharStyle.is()) - xCharStyle->setPropertyValue("CharFontName", uno::makeAny(sStringValue)); - } } break; case NS_ooxml::LN_CT_Fonts_asciiTheme: m_pImpl->appendGrabBag(m_pImpl->m_aSubInteropGrabBag, "asciiTheme", ThemeTable::getStringForTheme(nIntValue)); if (m_pImpl->GetTopContext()) { + // note: overwrite Fonts_ascii with Fonts_asciiTheme *even if* + // theme font is empty - this is apparently what Word 2013 does uno::Any aPropValue = uno::makeAny( m_pImpl->GetThemeTable()->getFontNameForTheme( nIntValue ) ); m_pImpl->GetTopContext()->Insert(PROP_CHAR_FONT_NAME, aPropValue ); m_pImpl->GetTopContext()->Insert(PROP_CHAR_THEME_FONT_NAME_ASCII, aPropValue, true, CHAR_GRAB_BAG ); @@ -1790,9 +1785,6 @@ if( nSprmId != NS_ooxml::LN_EG_RPrBase_bCs ) rContext->Insert(PROP_CHAR_WEIGHT_ASIAN, aBold ); - uno::Reference xCharStyle(m_pImpl->GetCurrentNumberingCharStyle()); - if (xCharStyle.is()) - xCharStyle->setPropertyValue(getPropertyName(PROP_CHAR_WEIGHT), aBold); if (nSprmId == NS_ooxml::LN_EG_RPrBase_b) m_pImpl->appendGrabBag(m_pImpl->m_aInteropGrabBag, "b", OUString::number(nIntValue)); else if (nSprmId == NS_ooxml::LN_EG_RPrBase_bCs) @@ -1870,10 +1862,6 @@ //Asian get the same value as Western rContext->Insert( PROP_CHAR_HEIGHT, aVal ); rContext->Insert( PROP_CHAR_HEIGHT_ASIAN, aVal ); - - uno::Reference xCharStyle(m_pImpl->GetCurrentNumberingCharStyle()); - if (xCharStyle.is()) - xCharStyle->setPropertyValue(getPropertyName(PROP_CHAR_HEIGHT), aVal); } m_pImpl->appendGrabBag(m_pImpl->m_aInteropGrabBag, (nSprmId == NS_ooxml::LN_EG_RPrBase_sz ? OUString("sz") : OUString("szCs")), OUString::number(nIntValue)); } diff -Nru libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1987,8 +1987,7 @@ { aProperties = comphelper::sequenceToContainer< std::vector >(pPropertyMap->GetPropertyValues()); } - // TODO: this *should* work for RTF but there are test failures, maybe rtftok doesn't distinguish between formatting for the paragraph marker and for the paragraph as a whole; needs investigation - if (pPropertyMap && IsOOXMLImport()) + if (pPropertyMap) { // tdf#64222 filter out the "paragraph marker" formatting and // set it as a separate paragraph property, not a empty hint at @@ -4297,7 +4296,7 @@ sal_Int32 nIndex = rCommand.indexOf( ' ', 2); //find last space after 'ASK' if (nIndex == -1) return OUString(); - while(rCommand[nIndex] == ' ') + while (nIndex < rCommand.getLength() && rCommand[nIndex] == ' ') ++nIndex; OUString sShortCommand( rCommand.copy( nIndex ) ); //cut off the " ASK " @@ -7993,70 +7992,6 @@ } return xRet; } - -uno::Reference DomainMapper_Impl::GetCurrentNumberingCharStyle() -{ - uno::Reference xRet; - try - { - sal_Int32 nListLevel = -1; - uno::Reference xLevels; - if ( GetTopContextType() == CONTEXT_PARAGRAPH ) - xLevels = GetCurrentNumberingRules(&nListLevel); - if (!xLevels.is()) - { - if (IsOOXMLImport()) - return xRet; - - PropertyMapPtr pContext = m_pTopContext; - if (IsRTFImport() && !IsOpenField()) - { - // Looking up the paragraph context explicitly (and not just taking - // the top context) is necessary for RTF, where formatting of a run - // and of the paragraph mark is not separated. - // We know that the formatting inside a field won't affect the - // paragraph marker formatting, though. - pContext = GetTopContextOfType(CONTEXT_PARAGRAPH); - if (!pContext) - return xRet; - } - - // In case numbering rules is not found via a style, try the direct formatting instead. - std::optional oProp = pContext->getProperty(PROP_NUMBERING_RULES); - if (oProp) - { - xLevels.set(oProp->second, uno::UNO_QUERY); - // Found the rules, then also try to look up our numbering level. - oProp = pContext->getProperty(PROP_NUMBERING_LEVEL); - if (oProp) - oProp->second >>= nListLevel; - else - nListLevel = 0; - } - - if (!xLevels.is()) - return xRet; - } - uno::Sequence aProps; - xLevels->getByIndex(nListLevel) >>= aProps; - auto pProp = std::find_if(std::cbegin(aProps), std::cend(aProps), - [](const beans::PropertyValue& rProp) { return rProp.Name == "CharStyleName"; }); - if (pProp != std::cend(aProps)) - { - OUString aCharStyle; - pProp->Value >>= aCharStyle; - uno::Reference xCharacterStyles; - uno::Reference< style::XStyleFamiliesSupplier > xStylesSupplier(GetTextDocument(), uno::UNO_QUERY); - uno::Reference< container::XNameAccess > xStyleFamilies = xStylesSupplier->getStyleFamilies(); - xStyleFamilies->getByName("CharacterStyles") >>= xCharacterStyles; - xRet.set(xCharacterStyles->getByName(aCharStyle), uno::UNO_QUERY_THROW); - } - } - catch( const uno::Exception& ) - { - } - return xRet; -} SectionPropertyMap * DomainMapper_Impl::GetSectionContext() { diff -Nru libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper_Impl.hxx libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper_Impl.hxx --- libreoffice-7.3.4/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2022-07-15 19:12:51.000000000 +0000 @@ -1034,8 +1034,6 @@ } SectionPropertyMap * GetSectionContext(); - /// If the current paragraph has a numbering style associated, this method returns its character style (part of the numbering rules) - css::uno::Reference GetCurrentNumberingCharStyle(); /// If the current paragraph has a numbering style associated, this method returns its numbering rules css::uno::Reference GetCurrentNumberingRules(sal_Int32* pListLevel); diff -Nru libreoffice-7.3.4/writerfilter/source/rtftok/rtfdispatchvalue.cxx libreoffice-7.3.5/writerfilter/source/rtftok/rtfdispatchvalue.cxx --- libreoffice-7.3.4/writerfilter/source/rtftok/rtfdispatchvalue.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/writerfilter/source/rtftok/rtfdispatchvalue.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -194,7 +194,14 @@ } if (nSprm > 0) { - m_aStates.top().getCharacterSprms().set(nSprm, pIntValue); + if (m_aStates.top().getDestination() == Destination::LISTLEVEL) + { + m_aStates.top().getTableSprms().set(nSprm, pIntValue); + } + else + { + m_aStates.top().getCharacterSprms().set(nSprm, pIntValue); + } return true; } diff -Nru libreoffice-7.3.4/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-7.3.5/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-7.3.4/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1972,7 +1972,14 @@ } if (nSprm >= 0) { - m_aStates.top().getCharacterSprms().set(nSprm, pBoolValue); + if (m_aStates.top().getDestination() == Destination::LISTLEVEL) + { + m_aStates.top().getTableSprms().set(nSprm, pBoolValue); + } + else + { + m_aStates.top().getCharacterSprms().set(nSprm, pBoolValue); + } return RTFError::OK; } diff -Nru libreoffice-7.3.4/xmloff/source/style/xmlnumfe.cxx libreoffice-7.3.5/xmloff/source/style/xmlnumfe.cxx --- libreoffice-7.3.4/xmloff/source/style/xmlnumfe.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/xmloff/source/style/xmlnumfe.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -1253,6 +1253,37 @@ WriteBooleanElement_Impl(); bAnyContent = true; } + else if (eType == XML_BOOLEAN_STYLE) + { + // may contain only and + // elements. + sal_uInt16 nPos = 0; + bool bEnd = false; + while (!bEnd) + { + const short nElemType = rFormat.GetNumForType( nPart, nPos ); + switch (nElemType) + { + case 0: + bEnd = true; // end of format reached + if (bHasText && sTextContent.isEmpty()) + bHasText = false; // don't write trailing empty text + break; + case NF_SYMBOLTYPE_STRING: + { + const OUString* pElemStr = rFormat.GetNumForString( nPart, nPos ); + if (pElemStr) + AddToTextElement_Impl( *pElemStr ); + } + break; + case NF_KEY_BOOLEAN: + WriteBooleanElement_Impl(); + bAnyContent = true; + break; + } + ++nPos; + } + } else { // first loop to collect attributes diff -Nru libreoffice-7.3.4/xmloff/source/style/xmlnumfi.cxx libreoffice-7.3.5/xmloff/source/style/xmlnumfi.cxx --- libreoffice-7.3.4/xmloff/source/style/xmlnumfi.cxx 2022-06-01 21:06:17.000000000 +0000 +++ libreoffice-7.3.5/xmloff/source/style/xmlnumfi.cxx 2022-07-15 19:12:51.000000000 +0000 @@ -497,8 +497,11 @@ } // see ImpSvNumberformatScan::Next_Symbol + + // All format types except BOOLEAN may contain minus sign or delimiter. if ( cChar == '-' ) - return true; // all format types may content minus sign or delimiter + return nFormatType != SvXMLStylesTokens::BOOLEAN_STYLE; + if ( ( cChar == ' ' || cChar == '/' || cChar == '.' || @@ -528,11 +531,13 @@ { bool bQuote = true; sal_Int32 nLength = rContent.getLength(); + const SvXMLStylesTokens nFormatType = rParent.GetType(); - if ((nLength == 1 && lcl_ValidChar( rContent[0], rParent)) || - (nLength == 2 && - ((rContent[0] == ' ' && rContent[1] == '-') || - (rContent[1] == ' ' && lcl_ValidChar( rContent[0], rParent))))) + if (nFormatType != SvXMLStylesTokens::BOOLEAN_STYLE && + ((nLength == 1 && lcl_ValidChar( rContent[0], rParent)) || + (nLength == 2 && + ((rContent[0] == ' ' && rContent[1] == '-') || + (rContent[1] == ' ' && lcl_ValidChar( rContent[0], rParent)))))) { // Don't quote single separator characters like space or percent, // or separator characters followed by space (used in date formats). @@ -541,7 +546,7 @@ // the difference of quotes. bQuote = false; } - else if ( rParent.GetType() == SvXMLStylesTokens::PERCENTAGE_STYLE && nLength > 1 ) + else if ( nFormatType == SvXMLStylesTokens::PERCENTAGE_STYLE && nLength > 1 ) { // the percent character in percentage styles must be left out of quoting // (one occurrence is enough even if there are several percent characters in the string) @@ -906,7 +911,7 @@ } break; case SvXMLStyleTokens::Boolean: - // ignored - only default boolean format is supported + rParent.AddNfKeyword( NF_KEY_BOOLEAN ); break; case SvXMLStyleTokens::Day: @@ -1533,9 +1538,8 @@ nIndex = pFormatter->GetFormatIndex( NF_NUMBER_SYSTEM, nFormatLang ); } - // boolean is always the builtin boolean format - // (no other boolean formats are implemented) - if ( nType == SvXMLStylesTokens::BOOLEAN_STYLE ) + if ( nType == SvXMLStylesTokens::BOOLEAN_STYLE && !bHasExtraText && + aMyConditions.empty() && sFormat.toChar() != '[' ) nIndex = pFormatter->GetFormatIndex( NF_BOOLEAN, nFormatLang ); // check for default date formats